/* ===== Keyf-i Alâ — "Ege mavisi & beyaz" teması ===== */

:root {
  --bg:        #f7f4ee;   /* kum beyazı */
  --bg-alt:    #efe9dd;   /* hafif koyu kum (section-alt, mobil menü) */
  --surface:   #ffffff;   /* kartlar */
  --line:      #e3ddcd;   /* açık, sıcak kenarlık */
  --text:      #16283a;   /* gece mavisi */
  --text-dim:  #5f6f7a;   /* mat mavi-gri */
  --gold:      #c85a3c;   /* vurgu — terrakota (eyebrow, etiket, hover) */
  --gold-soft: #1f5673;   /* deniz mavisi (başlık, fiyat, link) */
  --ink:       #16324a;   /* koyu mavi blok (hero) */
  --ink-2:     #1f4a63;
  --black:     #0a0f15;   /* neredeyse siyah — derinlik/vinyet */
  --cream:     #f7f4ee;   /* koyu bloklarda metin */
  --radius:    14px;
  --maxw:      1120px;
  --ease:      cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--bg);
  color: var(--text);
  font-family: "Jost", "Segoe UI", system-ui, sans-serif;
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* İnce kumlanma dokusu — degrade bantlanmasını (yırtılma) engeller */
.grain {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: .04;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  background-size: 140px 140px;
}

.container {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: 24px;
}

h1, h2, h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: .5px;
}

h2 { font-size: clamp(2rem, 4vw, 3rem); }
h3 { font-size: 1.4rem; }

a { color: inherit; text-decoration: none; transition: color .3s var(--ease), border-color .3s var(--ease), opacity .3s var(--ease); }

.muted { color: var(--text-dim); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-transform: uppercase;
  letter-spacing: 4px;
  font-size: .75rem;
  color: var(--gold);
  margin-bottom: 12px;
}
.eyebrow::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}
.section-head .eyebrow::before {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: .5;
}

code {
  background: var(--bg-alt);
  border: 1px solid var(--line);
  border-radius: 5px;
  padding: 1px 6px;
  font-size: .85em;
}

/* ===== Header / Nav ===== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 244, 238, .85);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
}

.brand { display: flex; align-items: center; gap: 12px; }

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px; height: 34px;
  border: 1px solid var(--gold);
  border-radius: 50%;
  color: var(--gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 1.2rem;
}

.brand-name {
  font-family: "Cormorant Garamond", serif;
  font-size: 1.35rem;
  letter-spacing: 2px;
}

.nav-links {
  display: flex;
  gap: 34px;
  list-style: none;
}

.nav-links a {
  font-size: .95rem;
  letter-spacing: 1px;
  color: var(--text-dim);
  transition: color .25s var(--ease);
}
.nav-links a:hover { color: var(--gold); }
.nav-links a[aria-current="page"] { color: var(--gold); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--text);
  transition: .3s var(--ease);
}

/* ===== Hero ===== */
.hero {
  position: relative;
  min-height: 92vh;
  padding: 128px 0 178px;
  display: flex;
  align-items: center;
  text-align: center;
  color: var(--cream);
  background:
    radial-gradient(860px 500px at 80% 8%, rgba(46,125,166,.32), rgba(46,125,166,0) 60%),
    radial-gradient(1100px 640px at 50% -14%, rgba(224,122,95,.20), rgba(224,122,95,0) 62%),
    radial-gradient(900px 900px at 8% 96%, rgba(10,15,21,.75), rgba(10,15,21,0) 60%),
    linear-gradient(180deg,
      #0e2233 0%,
      var(--ink) 20%,
      var(--ink-2) 46%,
      #163d52 66%,
      #0d2231 84%,
      var(--black) 100%);
  background-size: 200% 200%, 200% 200%, 200% 200%, 100% 100%;
  box-shadow: inset 0 -120px 160px -70px rgba(7, 11, 16, .85);
  overflow: hidden;
  animation: heroDrift 26s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { background-position: 0% 0%, 100% 0%, 0% 100%, 0 0; }
  to   { background-position: 22% 12%, 78% 22%, 12% 88%, 0 0; }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(247,244,238,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247,244,238,.07) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: radial-gradient(circle at 50% 40%, #000 0%, transparent 70%);
  pointer-events: none;
}

/* Hero → içerik yumuşak dalga geçişi */
.hero::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 130px;
  z-index: 3;
  background: var(--bg);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,66 C230,128 430,2 720,40 C1030,80 1250,130 1440,52 L1440,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,66 C230,128 430,2 720,40 C1030,80 1250,130 1440,52 L1440,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
  filter: drop-shadow(0 -7px 16px rgba(247, 244, 238, .12));
  pointer-events: none;
}

.hero-inner { position: relative; z-index: 1; }

.hero-kicker {
  text-transform: uppercase;
  letter-spacing: 6px;
  font-size: .8rem;
  color: #e8917a;
  margin-bottom: 20px;
}

.hero-title {
  font-size: clamp(3.5rem, 12vw, 8rem);
  font-weight: 500;
  letter-spacing: 2px;
  background: linear-gradient(175deg, #ffffff 12%, #e2edf0 55%, #b9d4dd 115%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  text-shadow: 0 8px 44px rgba(198, 219, 227, .18);
}

.hero-tagline {
  margin-top: 10px;
  text-transform: uppercase;
  letter-spacing: 5px;
  font-size: .8rem;
  color: rgba(247, 244, 238, .7);
}

.hero-sub {
  margin: 22px auto 34px;
  max-width: 520px;
  color: rgba(247, 244, 238, .8);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-hours {
  margin-top: 40px;
  letter-spacing: 8px;
  font-size: .8rem;
  color: rgba(247, 244, 238, .7);
}
.hero-hours::before,
.hero-hours::after {
  content: "—";
  margin: 0 14px;
  color: rgba(247, 244, 238, .3);
}

.hero-scroll {
  position: absolute;
  bottom: 116px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 4;
  font-size: .7rem;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(247, 244, 238, .6);
  animation: bob 2.4s ease-in-out infinite;
}
@keyframes bob { 0%,100%{ transform: translate(-50%,0);} 50%{ transform: translate(-50%,8px);} }

/* ===== Buttons ===== */
.btn {
  display: inline-block;
  padding: 13px 30px;
  border-radius: 999px;
  font-size: .9rem;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  transition:
    transform .35s var(--ease),
    background .35s var(--ease),
    color .35s var(--ease),
    box-shadow .35s var(--ease),
    border-color .35s var(--ease);
}
.btn:hover { transform: translateY(-3px) scale(1.03); }

.btn-primary {
  background: var(--gold);
  color: #fff;
  font-weight: 500;
}
.btn-primary:hover {
  background: #e07a5f;
  box-shadow: 0 16px 34px -12px rgba(224, 122, 95, .55);
}

.btn-ghost {
  border: 1px solid rgba(247, 244, 238, .4);
  color: var(--cream);
}
.btn-ghost:hover { border-color: var(--cream); background: rgba(247, 244, 238, .1); }

/* Açık zeminli bölümde ghost buton (ör. iletişim) */
.section .btn-ghost {
  border-color: var(--line);
  color: var(--text);
}
.section .btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: transparent; }

/* ===== Sections ===== */
.section { padding: clamp(70px, 12vw, 130px) 0; }
.section-alt {
  background: var(--bg-alt);
  position: relative;
}
.section-alt::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 130px;
  background: linear-gradient(
    rgba(247, 244, 238, 1) 0%,
    rgba(247, 244, 238, .72) 38%,
    rgba(247, 244, 238, .32) 68%,
    rgba(247, 244, 238, 0) 100%);
  pointer-events: none;
}

.section-head {
  text-align: center;
  max-width: 620px;
  margin: 0 auto 60px;
}

.grid-2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.section-text h2 { margin-bottom: 20px; }
.section-text p + p { margin-top: 16px; }

/* Görselsiz, tek kolon Hakkımızda bloğu */
.section-text--wide { max-width: 760px; }

.feature-list {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.feature-list li {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 18px;
  font-size: .85rem;
  letter-spacing: 1px;
  color: var(--text-dim);
}

/* ===== Harita çerçevesi ===== */
.map-frame {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-alt);
}

/* ===== Menü sayfası banner ===== */
.menu-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(720px 420px at 82% 0%, rgba(46,125,166,.30), rgba(46,125,166,0) 60%),
    radial-gradient(640px 380px at 6% 100%, rgba(224,122,95,.16), rgba(224,122,95,0) 62%),
    linear-gradient(180deg,
      #0e2233 0%,
      var(--ink) 26%,
      var(--ink-2) 58%,
      #0d2231 84%,
      var(--black) 100%);
  color: var(--cream);
  padding: clamp(60px, 11vw, 110px) 0 clamp(96px, 13vw, 148px);
  text-align: center;
}
.menu-hero.no-wave::after { display: none; }
.menu-hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 104px;
  background: var(--bg);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,66 C230,128 430,2 720,40 C1030,80 1250,130 1440,52 L1440,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 1440 120' preserveAspectRatio='none'%3E%3Cpath d='M0,66 C230,128 430,2 720,40 C1030,80 1250,130 1440,52 L1440,120 L0,120 Z' fill='%23000'/%3E%3C/svg%3E") bottom / 100% 100% no-repeat;
  pointer-events: none;
}
.menu-hero .eyebrow { color: #e8917a; }
.menu-hero h1 {
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  font-size: clamp(2.4rem, 6vw, 4rem);
  letter-spacing: 1px;
  line-height: 1.1;
}
.menu-hero p {
  margin-top: 10px;
  color: rgba(247, 244, 238, .72);
  font-size: .95rem;
  letter-spacing: 1px;
}

.menu-page { padding-top: clamp(46px, 8vw, 80px); }

/* ===== Menu (iki kolonlu ızgara, okuma sırasına göre akar) ===== */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 26px;
  align-items: start;
}

.menu-card {
  position: relative;
  width: 100%;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 28px;
  box-shadow: 0 1px 2px rgba(22, 40, 58, .04);
  overflow: hidden;
  transition: border-color .4s var(--ease), box-shadow .4s var(--ease), transform .4s var(--ease);
}
.menu-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), var(--gold-soft));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease);
}
.menu-card:hover {
  border-color: var(--gold-soft);
  box-shadow: 0 16px 40px -12px rgba(22, 40, 58, .16);
  transform: translateY(-4px);
}
.menu-card:hover::before { transform: scaleX(1); }

.menu-card h3 {
  color: var(--gold-soft);
  margin-bottom: 18px;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line);
  letter-spacing: 1px;
}

.menu-list { list-style: none; }
.menu-list li {
  display: flex;
  align-items: baseline;
  gap: 8px;
  padding: 8px 0;
  font-size: .98rem;
}
.menu-list .dots {
  flex: 1;
  border-bottom: 1px dotted var(--line);
  transform: translateY(-3px);
}
.menu-list .price {
  color: var(--gold-soft);
  letter-spacing: .5px;
  white-space: nowrap;
}
.menu-list .price.tbd {
  color: var(--text-dim);
  font-style: italic;
  letter-spacing: 2px;
}

.menu-note {
  margin-top: 14px;
  text-align: center;
  font-size: .85rem;
}
.menu-note a { color: var(--gold-soft); border-bottom: 1px solid var(--line); }
.menu-note a:hover { border-color: var(--gold); }

@media (max-width: 720px) {
  .menu-grid { grid-template-columns: 1fr; }
}

/* ===== İletişim ===== */
.info-row {
  display: flex;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.info-label {
  flex: 0 0 90px;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: .72rem;
  color: var(--gold);
  padding-top: 3px;
}
.info-value { font-size: 1rem; }
.info-value a { color: var(--gold-soft); border-bottom: 1px solid var(--line); transition: border-color .25s var(--ease); }
.info-value a:hover { border-color: var(--gold); }

.section-text .btn { margin-top: 30px; }

.map-frame {
  aspect-ratio: 4 / 3;
  box-shadow: 0 24px 60px -24px rgba(22, 40, 58, .28);
  transition: box-shadow .5s var(--ease), transform .5s var(--ease);
}
.map-frame:hover {
  box-shadow: 0 30px 70px -22px rgba(22, 40, 58, .34);
  transform: translateY(-3px);
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ===== Footer ===== */
.site-footer {
  border-top: 1px solid var(--line);
  background: var(--bg-alt);
  padding: 50px 0;
  text-align: center;
}
.footer-inner .brand-name { display: block; color: var(--gold-soft); margin-bottom: 10px; }
.footer-inner p { font-size: .85rem; color: var(--text-dim); }

/* ===== Reveal on scroll ===== */
.reveal {
  opacity: 0;
  transform: translateY(40px) scale(.95);
  filter: blur(7px);
  transition:
    opacity 1.3s var(--ease),
    transform 1.3s var(--ease),
    filter 1.3s var(--ease);
  will-change: opacity, transform, filter;
}
.reveal.in {
  opacity: 1;
  transform: none;
  filter: none;
}

/* İki kolonlu bloklar yanlardan kayarak gelsin */
.grid-2 > .section-text.reveal  { transform: translateX(-52px) scale(.97); }
.grid-2 > .section-media.reveal { transform: translateX(52px) scale(.97); }
.grid-2 > .reveal.in { transform: none; }

/* Menü kartları belirgin şekilde sırayla belirsin */
.menu-card.reveal:nth-child(2) { transition-delay: .09s; }
.menu-card.reveal:nth-child(3) { transition-delay: .18s; }
.menu-card.reveal:nth-child(4) { transition-delay: .27s; }
.menu-card.reveal:nth-child(5) { transition-delay: .36s; }
.menu-card.reveal:nth-child(6) { transition-delay: .45s; }

/* Alt öğeler, kapsayıcı görünür olunca kademeli açılsın */
.section-text .feature-list li,
.section-text .info-row {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}
.section-text.in .feature-list li,
.section-text.in .info-row {
  opacity: 1;
  transform: none;
}
.section-text.in .feature-list li:nth-child(1),
.section-text.in .info-row:nth-child(1) { transition-delay: .15s; }
.section-text.in .feature-list li:nth-child(2),
.section-text.in .info-row:nth-child(2) { transition-delay: .25s; }
.section-text.in .feature-list li:nth-child(3),
.section-text.in .info-row:nth-child(3) { transition-delay: .35s; }
.section-text.in .feature-list li:nth-child(4),
.section-text.in .info-row:nth-child(4) { transition-delay: .45s; }
.section-text.in .info-row:nth-child(5) { transition-delay: .55s; }
.section-text.in .info-row:nth-child(6) { transition-delay: .65s; }

/* ===== Hero: yüklenince kademeli giriş ===== */
@keyframes riseIn {
  from { opacity: 0; transform: translateY(30px); filter: blur(8px); }
  to   { opacity: 1; transform: none; filter: blur(0); }
}
.hero-kicker,
.hero-title,
.hero-tagline,
.hero-sub,
.hero-actions,
.hero-hours {
  animation: riseIn 1s var(--ease) both;
}
.hero-kicker  { animation-delay: .10s; }
.hero-title   { animation-delay: .22s; }
.hero-tagline { animation-delay: .38s; }
.hero-sub     { animation-delay: .52s; }
.hero-actions { animation-delay: .66s; }
.hero-hours   { animation-delay: .80s; }
.hero-scroll  { animation: riseIn .8s var(--ease) 1s both, bob 2.4s ease-in-out 1.8s infinite; }

/* ===== Nav: altı çizili hover geçişi ===== */
.nav-links a { position: relative; }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 1.5px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform .4s var(--ease);
}
.nav-links a:hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

/* ===== Kullanışlılık: menü hızlı gezinme, mobil bar, yukarı çık ===== */

/* Menü sayfası: yapışkan kategori çubuğu */
.menu-nav {
  position: sticky;
  top: 67px;
  z-index: 40;
  background: rgba(247, 244, 238, .92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.menu-nav-inner {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  padding: 12px 24px;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.menu-nav-inner::-webkit-scrollbar { display: none; }
.menu-nav a {
  flex-shrink: 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 7px 16px;
  font-size: .78rem;
  letter-spacing: .5px;
  white-space: nowrap;
  color: var(--text-dim);
  transition: background .3s var(--ease), color .3s var(--ease), border-color .3s var(--ease);
}
.menu-nav a:hover { color: var(--gold); border-color: var(--gold); }
.menu-nav a.is-active {
  background: var(--gold-soft);
  border-color: transparent;
  color: #fff;
}

.menu-card { scroll-margin-top: 132px; }

/* Mobil alt eylem çubuğu */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 60;
  display: none;
  grid-template-columns: repeat(3, 1fr);
  background: rgba(247, 244, 238, .96);
  backdrop-filter: blur(12px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -10px 28px -14px rgba(22, 40, 58, .3);
}
.mobile-bar a {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  padding: 9px 6px 11px;
  font-size: .66rem;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--text-dim);
}
.mobile-bar a + a { border-left: 1px solid var(--line); }
.mobile-bar a svg { width: 20px; height: 20px; }
.mobile-bar a:active { color: var(--gold); background: var(--bg-alt); }

/* Yukarı çık düğmesi */
.to-top {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 55;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: var(--gold-soft);
  color: #fff;
  cursor: pointer;
  opacity: 0;
  transform: translateY(14px);
  pointer-events: none;
  box-shadow: 0 12px 28px -10px rgba(22, 40, 58, .4);
  transition: opacity .35s var(--ease), transform .35s var(--ease), background .3s var(--ease);
}
.to-top svg { width: 18px; height: 18px; }
.to-top.show { opacity: 1; transform: none; pointer-events: auto; }
.to-top:hover { background: var(--gold); }

/* İletişim eylem satırı */
.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}
.btn-row .btn { margin-top: 0; }

/* ===== Responsive ===== */
@media (max-width: 780px) {
  .mobile-bar { display: grid; }
  body { padding-bottom: 62px; }
  .to-top { bottom: 76px; }
  .menu-nav { top: 67px; }
}

@media (max-width: 780px) {
  .nav-toggle { display: flex; }

  .nav-links {
    position: absolute;
    top: 68px; left: 0; right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--bg);
    border-bottom: 1px solid var(--line);
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease);
  }
  .nav-links.open { max-height: 320px; }
  .nav-links li { border-top: 1px solid var(--line); }
  .nav-links a { display: block; padding: 16px 24px; }

  .grid-2 { grid-template-columns: 1fr; }
  .section-media { order: -1; }
  .info-label { flex-basis: 74px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; transition: none !important; }
  html { scroll-behavior: auto; }
}
