/* Tuba Mantı — Kurumsal Tasarım Sistemi */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,500;9..144,600;9..144,700&family=Outfit:wght@300;400;500;600;700&display=swap');

:root {
  --ink: #1c1412;
  --ink-soft: #3d322e;
  --muted: #6e615a;
  --paper: #f7f3ee;
  --paper-deep: #ebe4db;
  --line: rgba(28, 20, 18, 0.1);
  --wine: #6b1f28;
  --wine-deep: #4a1219;
  --wine-soft: #8a3a42;
  --sage: #5a6b52;
  --gold: #a67c52;
  --white: #fffdfb;
  --shadow: 0 18px 50px rgba(28, 20, 18, 0.12);
  --radius: 4px;
  --nav-h: 104px;
  --max: 1200px;
  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Outfit", sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background:
    radial-gradient(ellipse 80% 50% at 10% -10%, rgba(107, 31, 40, 0.06), transparent 55%),
    radial-gradient(ellipse 60% 40% at 100% 0%, rgba(90, 107, 82, 0.07), transparent 50%),
    linear-gradient(180deg, #faf7f3 0%, var(--paper) 40%, #f3eee7 100%);
  line-height: 1.65;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

.container {
  width: min(100% - 2.5rem, var(--max));
  margin-inline: auto;
}

/* ——— Nav ——— */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--nav-h);
  background: rgba(255, 253, 251, 0.97);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(12px);
}

.nav {
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}

.logo {
  display: flex;
  align-items: center;
  z-index: 101;
  flex-shrink: 0;
}

.logo img {
  width: 92px;
  height: 92px;
  object-fit: contain;
  display: block;
}

.footer-brand .logo img {
  width: 120px;
  height: 120px;
  background: var(--white);
  border-radius: 50%;
  padding: 6px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.1rem 1.55rem;
  justify-content: flex-end;
  flex-wrap: nowrap;
}

.nav-links a {
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  color: var(--ink-soft);
  position: relative;
  padding: 0.4rem 0;
  white-space: nowrap;
  transition: color 0.25s;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0.15rem;
  width: 100%;
  height: 1px;
  background: var(--wine);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s var(--ease);
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--wine-deep);
}

.nav-links a:hover::after,
.nav-links a.active::after {
  transform: scaleX(1);
}

.nav-links a[href="iletisim.html"] {
  margin-left: 0.35rem;
  padding: 0.55rem 1.1rem;
  border: 1px solid var(--wine);
  color: var(--wine);
  border-radius: var(--radius);
}

.nav-links a[href="iletisim.html"]::after {
  display: none;
}

.nav-links a[href="iletisim.html"]:hover,
.nav-links a[href="iletisim.html"].active {
  background: var(--wine);
  color: var(--white);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  place-items: center;
  gap: 5px;
  flex-direction: column;
  z-index: 101;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
  transition: transform 0.3s, opacity 0.3s;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ——— Buttons ——— */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.6rem;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s, color 0.25s, border-color 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--wine);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--wine-deep);
}

.btn-ghost {
  background: transparent;
  border-color: rgba(255, 253, 251, 0.55);
  color: var(--white);
}

.btn-ghost:hover {
  background: rgba(255, 253, 251, 0.12);
}

.btn-outline {
  background: transparent;
  border-color: var(--wine);
  color: var(--wine);
}

.btn-outline:hover {
  background: var(--wine);
  color: var(--white);
}

.btn-dark {
  background: var(--ink);
  color: var(--white);
}

/* ——— Hero ——— */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  min-height: calc(100dvh - var(--nav-h));
  margin-top: var(--nav-h);
  display: grid;
  align-items: end;
  color: var(--white);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: heroZoom 18s var(--ease) forwards;
}

@keyframes heroZoom {
  to {
    transform: scale(1);
  }
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(28, 20, 18, 0.35) 0%, rgba(28, 20, 18, 0.2) 35%, rgba(28, 20, 18, 0.78) 100%),
    linear-gradient(90deg, rgba(74, 18, 25, 0.45) 0%, transparent 55%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4.5rem 0 5.5rem;
  max-width: 720px;
}

.hero-logo {
  width: clamp(160px, 22vw, 220px);
  height: auto;
  margin: 0 0 1.5rem;
  background: rgba(255, 253, 251, 0.96);
  border-radius: 50%;
  padding: 0.55rem;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease) 0.1s forwards;
}

.brand-hero {
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 6.4rem);
  font-weight: 700;
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin: 0 0 1.25rem;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease) 0.15s forwards;
}

.hero-title {
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3.2vw, 2.15rem);
  font-weight: 500;
  line-height: 1.25;
  margin: 0 0 1rem;
  max-width: 18ch;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease) 0.35s forwards;
}

.hero-lead {
  font-size: 1.08rem;
  font-weight: 300;
  color: rgba(255, 253, 251, 0.88);
  max-width: 38ch;
  margin: 0 0 2rem;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease) 0.5s forwards;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  opacity: 0;
  transform: translateY(28px);
  animation: rise 1s var(--ease) 0.65s forwards;
}

@keyframes rise {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.scroll-hint {
  position: absolute;
  right: 2rem;
  bottom: 2rem;
  z-index: 2;
  writing-mode: vertical-rl;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255, 253, 251, 0.7);
  opacity: 0;
  animation: rise 1s var(--ease) 1s forwards;
}

/* ——— Sections ——— */
.section {
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
}

.section-head {
  max-width: 640px;
  margin-bottom: 3rem;
}

.section-head.center {
  margin-inline: auto;
  text-align: center;
}

.eyebrow {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--wine);
  margin-bottom: 0.85rem;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 1rem;
  letter-spacing: -0.02em;
}

.section-lead {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
  max-width: 52ch;
}

.section-head.center .section-lead {
  margin-inline: auto;
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.split.reverse {
  grid-template-columns: 0.95fr 1.05fr;
}

.split-visual {
  position: relative;
  min-height: 420px;
  overflow: hidden;
  border-radius: var(--radius);
}

.split-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
}

.split-copy p {
  color: var(--ink-soft);
  margin: 0 0 1.1rem;
}

/* ——— About band (homepage) ——— */
.about-band {
  position: relative;
  padding: clamp(4.5rem, 9vw, 7.5rem) 0;
  overflow: hidden;
  background:
    linear-gradient(105deg, #f3ebe3 0%, #faf6f1 42%, #f7f3ee 100%);
}

.about-band::before {
  content: "";
  position: absolute;
  left: -8%;
  top: 10%;
  width: 42%;
  height: 80%;
  background:
    radial-gradient(ellipse at center, rgba(107, 31, 40, 0.07), transparent 70%);
  pointer-events: none;
}

.about-band::after {
  content: "TUBA";
  position: absolute;
  right: -1%;
  top: 50%;
  transform: translateY(-50%) rotate(90deg);
  font-family: var(--font-display);
  font-size: clamp(4rem, 10vw, 8rem);
  font-weight: 700;
  letter-spacing: 0.12em;
  color: rgba(107, 31, 40, 0.045);
  pointer-events: none;
  line-height: 1;
}

.about-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 4.5rem);
  align-items: center;
}

.about-media {
  position: relative;
}

.about-figure {
  margin: 0;
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  max-height: 640px;
  box-shadow: 0 28px 60px rgba(28, 20, 18, 0.14);
}

.about-figure::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 253, 251, 0.45);
  z-index: 1;
  pointer-events: none;
}

.about-figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.1s var(--ease);
}

.about-media:hover .about-figure img {
  transform: scale(1.04);
}

.about-caption {
  margin: 1rem 0 0;
  color: var(--wine-deep);
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: 0.02em;
}

.about-caption em {
  font-style: italic;
  font-weight: 500;
}

.about-copy {
  padding: clamp(0.5rem, 2vw, 1.5rem) 0;
}

.about-copy .section-title {
  max-width: 12ch;
  margin-bottom: 1.25rem;
}

.about-lead {
  font-size: 1.15rem;
  color: var(--ink);
  font-weight: 400;
  line-height: 1.55;
  margin: 0 0 1rem;
  max-width: 36ch;
}

.about-copy > p:not(.about-lead) {
  color: var(--muted);
  margin: 0 0 1.75rem;
  max-width: 40ch;
}

.about-points {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.75rem;
  margin: 0 0 2rem;
  padding: 1.1rem 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.about-points li {
  position: relative;
  padding-left: 1rem;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink-soft);
  letter-spacing: 0.02em;
}

.about-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--wine);
}

.feature-list {
  display: grid;
  gap: 0.85rem;
  margin-top: 1.75rem;
}

.feature-list li {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 0.85rem;
  align-items: start;
  padding-bottom: 0.85rem;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
  font-weight: 500;
}

.feature-list li::before {
  content: "";
  width: 8px;
  height: 8px;
  margin-top: 0.55rem;
  border-radius: 50%;
  background: var(--wine);
}

/* ——— Why strip ——— */
.why-strip {
  background:
    linear-gradient(135deg, var(--wine-deep), var(--wine) 55%, #7a2d36);
  color: var(--white);
  padding: clamp(3.5rem, 7vw, 5rem) 0;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem 2rem;
}

.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  margin: 0 0 0.5rem;
}

.why-item p {
  margin: 0;
  color: rgba(255, 253, 251, 0.8);
  font-size: 0.95rem;
  font-weight: 300;
}

/* ——— Products ——— */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.product-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
}

.product-card figure {
  margin: 0;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--paper-deep);
}

.product-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}

.product-card:hover img {
  transform: scale(1.05);
}

.product-body {
  padding: 1.35rem 1.4rem 1.5rem;
  display: flex;
  flex-direction: column;
  flex: 1;
  gap: 0.65rem;
}

.product-body h3 {
  font-family: var(--font-display);
  font-size: 1.45rem;
  margin: 0;
  font-weight: 600;
}

.product-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
  flex: 1;
}

.product-meta {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 600;
}

.product-link {
  color: var(--wine);
  font-weight: 600;
  font-size: 0.92rem;
}

/* ——— Page hero (inner) ——— */
.page-hero {
  padding: calc(var(--nav-h) + 3.5rem) 0 3rem;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(107, 31, 40, 0.08), transparent 45%),
    url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%236b1f28' fill-opacity='0.03'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  pointer-events: none;
}

.page-hero .container {
  position: relative;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.8rem);
  margin: 0 0 0.85rem;
  line-height: 1.1;
}

.page-hero p {
  margin: 0;
  max-width: 50ch;
  color: var(--muted);
  font-size: 1.08rem;
}

/* ——— Gallery ——— */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery-item {
  position: relative;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: var(--radius);
  cursor: pointer;
  border: 0;
  padding: 0;
  background: var(--paper-deep);
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.55s var(--ease), filter 0.35s;
}

.gallery-item:hover img {
  transform: scale(1.06);
  filter: brightness(0.92);
}

.gallery-item.wide {
  grid-column: span 2;
  aspect-ratio: 2 / 1;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: rgba(20, 14, 12, 0.92);
  display: none;
  place-items: center;
  padding: 2rem;
}

.lightbox.open {
  display: grid;
}

.lightbox img {
  max-width: min(920px, 100%);
  max-height: 85vh;
  object-fit: contain;
  border-radius: var(--radius);
}

.lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: transparent;
  color: white;
  font-size: 1.4rem;
  cursor: pointer;
  border-radius: var(--radius);
}

/* ——— Video ——— */
.video-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
}

.video-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
}

.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  background: #1c1412;
}

.video-frame iframe,
.video-frame video {
  width: 100%;
  height: 100%;
  border: 0;
}

.video-placeholder {
  width: 100%;
  height: 100%;
  display: grid;
  place-items: center;
  color: rgba(255, 253, 251, 0.75);
  background:
    linear-gradient(135deg, rgba(74, 18, 25, 0.9), rgba(28, 20, 18, 0.85)),
    center / cover no-repeat;
  text-align: center;
  padding: 2rem;
}

.video-placeholder strong {
  display: block;
  font-family: var(--font-display);
  font-size: 1.4rem;
  margin-bottom: 0.35rem;
  color: var(--white);
}

.video-body {
  padding: 1.15rem 1.25rem 1.35rem;
}

.video-body h3 {
  margin: 0 0 0.35rem;
  font-family: var(--font-display);
  font-size: 1.25rem;
}

.video-body p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

/* ——— Catalog ——— */
.catalog-panel {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 2.5rem;
  align-items: center;
  padding: clamp(2rem, 4vw, 3rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.catalog-visual {
  min-height: 360px;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--paper-deep);
}

.catalog-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 360px;
}

.catalog-list {
  margin: 1.5rem 0 2rem;
  display: grid;
  gap: 0.65rem;
}

.catalog-list li {
  padding-left: 1.1rem;
  position: relative;
  color: var(--ink-soft);
}

.catalog-list li::before {
  content: "–";
  position: absolute;
  left: 0;
  color: var(--wine);
}

/* ——— Dealers ——— */
.dealer-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.dealer-card {
  padding: 1.6rem 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: border-color 0.25s, transform 0.25s var(--ease);
}

.dealer-card:hover {
  border-color: rgba(107, 31, 40, 0.35);
  transform: translateY(-3px);
}

.dealer-region {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--wine);
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.dealer-card h3 {
  font-family: var(--font-display);
  font-size: 1.35rem;
  margin: 0 0 0.5rem;
}

.dealer-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.dealer-cta {
  margin-top: 3.5rem;
  padding: clamp(2rem, 4vw, 3rem);
  background:
    linear-gradient(135deg, rgba(107, 31, 40, 0.06), rgba(90, 107, 82, 0.08)),
    var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 1.5rem;
  align-items: center;
}

/* ——— Contact ——— */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 2.5rem;
}

.contact-info {
  display: grid;
  gap: 1.35rem;
}

.contact-block h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.35rem;
}

.contact-block p,
.contact-block a {
  margin: 0;
  color: var(--ink-soft);
}

.contact-block a:hover {
  color: var(--wine);
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.5rem, 3vw, 2.25rem);
  display: grid;
  gap: 1rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.field {
  display: grid;
  gap: 0.4rem;
}

.field label {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--ink-soft);
}

.field input,
.field textarea,
.field select {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  border-radius: var(--radius);
  padding: 0.85rem 0.95rem;
  color: var(--ink);
  outline: none;
  transition: border-color 0.25s, background 0.25s;
}

.field input:focus,
.field textarea:focus,
.field select:focus {
  border-color: var(--wine-soft);
  background: var(--white);
}

.field textarea {
  min-height: 140px;
  resize: vertical;
}

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin: 0;
}

.map-embed {
  margin-top: 3rem;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 360px;
  background: var(--paper-deep);
}

.map-embed iframe {
  width: 100%;
  height: 360px;
  border: 0;
  filter: grayscale(0.15) contrast(1.05);
}

/* ——— Nutrition table ——— */
.detail-block {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid var(--line);
}

.detail-block h4 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
}

.nutri-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.nutri-table th,
.nutri-table td {
  text-align: left;
  padding: 0.65rem 0.4rem;
  border-bottom: 1px solid var(--line);
}

.nutri-table th {
  color: var(--muted);
  font-weight: 500;
}

/* ——— CTA band ——— */
.cta-band {
  padding: clamp(3.5rem, 7vw, 5rem) 0;
  background:
    linear-gradient(120deg, rgba(28, 20, 18, 0.78), rgba(74, 18, 25, 0.72)),
    center / cover no-repeat
      url("../assets/images/manti-3.jpg");
  color: var(--white);
  text-align: center;
}

.cta-band h2 {
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 4vw, 2.8rem);
  margin: 0 0 0.85rem;
}

.cta-band p {
  margin: 0 auto 1.75rem;
  max-width: 42ch;
  color: rgba(255, 253, 251, 0.85);
  font-weight: 300;
}

.cta-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0.85rem;
}

/* ——— Footer ——— */
.site-footer {
  background: var(--ink);
  color: rgba(255, 253, 251, 0.78);
  padding: 4rem 0 2rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 3rem;
}

.footer-brand p {
  margin: 1.1rem 0 0;
  max-width: 36ch;
  font-size: 0.95rem;
  font-weight: 300;
}

.footer-col h4 {
  margin: 0 0 1rem;
  color: var(--white);
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-col a,
.footer-col p {
  display: block;
  margin: 0 0 0.55rem;
  font-size: 0.95rem;
  color: rgba(255, 253, 251, 0.7);
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  font-size: 0.85rem;
  color: rgba(255, 253, 251, 0.5);
}

/* ——— Reveal ——— */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ——— Responsive ——— */
@media (max-width: 980px) {
  .why-grid,
  .product-grid,
  .gallery-grid,
  .dealer-grid,
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .split,
  .split.reverse,
  .catalog-panel,
  .contact-grid,
  .dealer-cta,
  .about-layout {
    grid-template-columns: 1fr;
  }

  .about-figure {
    aspect-ratio: 16 / 11;
    max-height: none;
  }

  .about-band::after {
    display: none;
  }

  .gallery-item.wide {
    grid-column: span 1;
    aspect-ratio: 1;
  }
}

@media (max-width: 1100px) {
  .nav-links {
    gap: 0.1rem 1.1rem;
  }

  .nav-links a {
    font-size: 0.84rem;
  }

  .logo img {
    width: 82px;
    height: 82px;
  }
}

@media (max-width: 900px) {
  :root {
    --nav-h: 88px;
  }

  .nav-toggle {
    display: grid;
  }

  .logo img {
    width: 74px;
    height: 74px;
  }

  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(255, 253, 251, 0.98);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.35rem;
    flex-wrap: wrap;
    transform: translateY(-100%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.4s var(--ease), opacity 0.4s;
  }

  .nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    font-size: 1.15rem;
  }

  .nav-links a[href="iletisim.html"] {
    margin-left: 0;
  }

  .scroll-hint {
    display: none;
  }
}

@media (max-width: 640px) {
  .why-grid,
  .product-grid,
  .gallery-grid,
  .video-grid,
  .dealer-grid,
  .footer-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding-bottom: 4rem;
  }

  .hero-logo {
    width: 150px;
  }

  .brand-hero {
    font-size: clamp(2.8rem, 14vw, 3.8rem);
  }
}
