/* ============================================================
   Atılğan Hukuk Bürosu — design tokens
   Dark charcoal + brass/gold palette, in the register of established
   corporate law-firm sites: dark header/hero, warm white content,
   a single restrained gold accent carried through the whole page.
   ============================================================ */

:root {
  --paper:      #FAF8F3;
  --paper-dim:  #F1ECE1;
  --paper-gold: #F3EADA;
  --ink:        #17161A;
  --ink-soft:   #55545B;
  --dark:       #131217;
  --dark-2:     #1C1B21;
  --stone:      #4B4034;
  --stone-2:    #6B5B44;
  --gold:       #A9835A;
  --gold-deep:  #8A6A45;
  --gold-light: #CBAB80;
  --whatsapp:   #25D366;
  --whatsapp-deep: #1DAF57;
  --line:       rgba(23, 22, 26, 0.12);
  --line-dark:  rgba(250, 248, 243, 0.14);

  --forest:     #0C1712;
  --forest-2:   #14261D;
  --forest-line: rgba(203, 171, 128, 0.22);

  --font-display: "Fraunces", "Georgia", serif;
  --font-body:    "Inter", "Segoe UI", sans-serif;

  --container: 1180px;
  --container-wide: 1280px;
  --radius: 2px;
  --shadow-soft: 0 14px 32px -24px rgba(23,22,26,0.3);
  --shadow-lift: 0 18px 36px -22px rgba(12,23,18,0.38);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-weight: 600;
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  color: var(--ink);
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 4.6vw, 4rem); line-height: 1.04; font-weight: 500; }
h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); font-weight: 500; }
h3 { font-size: 1.25rem; font-weight: 600; }

p { color: var(--ink-soft); margin: 0 0 1em; }

.section {
  padding: 96px 0;
  border-top: 1px solid var(--line);
}
.section--tight { padding: 72px 0; }
.section--dim { background: var(--paper-dim); position: relative; }
.section--dim::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  width: 64px;
  height: 3px;
  background: linear-gradient(90deg, var(--forest-2), var(--gold));
}

.section-head {
  max-width: 620px;
  margin-bottom: 48px;
  border-left: 3px solid var(--forest-2);
  padding-left: 22px;
}
.section-head p { margin-top: 14px; }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 26px;
  font-family: var(--font-body);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  text-decoration: none;
  border-radius: var(--radius);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.2s ease, color 0.2s ease, border-color .2s ease;
}
.btn:hover { transform: translateY(-1px); }
.btn:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

.btn--primary { background: var(--gold); color: var(--forest); box-shadow: 0 14px 28px -14px rgba(169,131,90,0.55); }
.btn--primary:hover { background: var(--gold-light); box-shadow: 0 18px 34px -14px rgba(169,131,90,0.65); }

.btn--ghost { background: transparent; color: var(--ink); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.btn--whatsapp { background: var(--whatsapp); color: #fff; }
.btn--whatsapp:hover { background: var(--whatsapp-deep); }

/* ---------- header — dark, integrated with the hero on every page ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: var(--dark);
  border-bottom: 1px solid rgba(203,171,128,0.16);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 84px;
}
.brand {
  font-family: var(--font-display);
  font-size: 1.28rem;
  font-weight: 600;
  text-decoration: none;
  color: var(--paper);
  letter-spacing: -0.01em;
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}
.brand small {
  font-family: var(--font-body);
  font-size: 0.62rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold-light);
  font-weight: 600;
  margin-top: 2px;
}
.brand--name-only { font-size: 1.05rem; }

.main-nav { display: flex; align-items: center; gap: 34px; }
.main-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: rgba(250,248,243,0.86);
  position: relative;
  padding: 4px 0;
}
.main-nav > a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width 0.2s ease;
}
.main-nav a:hover { color: var(--paper); }
.main-nav > a:hover::after { width: 100%; }

.lang-switch {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}
.lang-switch a {
  text-decoration: none;
  color: rgba(250,248,243,0.65);
  padding: 3px 7px;
  border-radius: var(--radius);
}
.lang-switch a.active { color: var(--forest); background: var(--gold); }
.lang-switch span { color: rgba(250,248,243,0.3); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--paper);
  margin: 5px 0;
}

.cover-bg {
  background:
    radial-gradient(ellipse 800px 520px at 92% -8%, rgba(169,131,90,0.16), transparent 60%),
    radial-gradient(ellipse 720px 520px at -5% 108%, rgba(15,58,46,0.13), transparent 62%),
    linear-gradient(160deg, var(--paper) 0%, var(--paper-gold) 100%);
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: calc(100vh - 84px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 90px 0;
  text-align: center;
  background: var(--dark);
}
/* left — deep forest geometric wedge */
.hero::before {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  width: 46%;
  height: 100%;
  clip-path: polygon(0 0, 78% 0, 34% 100%, 0 100%);
  background:
    repeating-linear-gradient(100deg, rgba(203,171,128,0.05) 0px, rgba(203,171,128,0.05) 1px, transparent 1px, transparent 14px),
    linear-gradient(200deg, var(--forest-2) 0%, var(--forest) 100%);
}
/* right — dark marbled wedge, faint gold veining */
.hero::after {
  content: "";
  position: absolute;
  z-index: 0;
  inset: 0;
  left: 54%;
  width: 46%;
  height: 100%;
  clip-path: polygon(38% 0, 100% 0, 100% 100%, 4% 100%);
  background:
    repeating-linear-gradient(115deg, rgba(203,171,128,0.045) 0px, rgba(203,171,128,0.045) 1px, transparent 1px, transparent 14px),
    linear-gradient(160deg, var(--dark-2) 0%, var(--dark) 100%);
}
.hero-columns { display: none; }
.hero-arcs {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 1;
  pointer-events: none;
}
.hero-arcs circle { stroke: var(--forest-line); }
.hero .container {
  position: relative;
  z-index: 2;
  max-width: 760px;
}
.hero-wordmark {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 7vw, 5rem);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--paper);
  margin: 0;
  line-height: 1;
}
.hero-wordmark small {
  display: block;
  font-family: var(--font-body);
  font-size: clamp(0.68rem, 1.1vw, 0.82rem);
  font-weight: 500;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-top: 14px;
}
.hero-rule {
  width: 64px;
  height: 1px;
  background: var(--gold);
  margin: 32px auto;
  border: none;
}
.hero-copy .eyebrow { display: block; margin-bottom: 18px; color: var(--gold-light); font-weight: 700; }
.hero-copy h1 { margin-bottom: 22px; color: var(--paper); font-size: clamp(2.1rem, 3.8vw, 3.1rem); font-weight: 600; letter-spacing: -0.01em; }
.hero-copy .lede {
  font-size: 1.1rem;
  max-width: 54ch;
  margin: 0 auto 36px;
  color: rgba(250,248,243,0.8);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
/* WhatsApp stays only as the fixed floating icon, not a hero button */
.hero .hero-actions .btn--ghost { display: none; }

.hero-foot {
  margin-top: 56px;
  padding-top: 24px;
  border-top: 1px solid var(--line-dark);
  font-size: 0.76rem;
  letter-spacing: 0.06em;
  color: rgba(250,248,243,0.5);
}

/* ---------- hero entrance animation ---------- */
@keyframes fadeUpIn {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-wordmark { animation: fadeUpIn .8s cubic-bezier(.2,.7,.2,1) both; }
.hero-rule          { animation: fadeUpIn .7s cubic-bezier(.2,.7,.2,1) .12s both; }
.hero-copy .eyebrow { animation: fadeUpIn .7s cubic-bezier(.2,.7,.2,1) .18s both; }
.hero-copy h1       { animation: fadeUpIn .8s cubic-bezier(.2,.7,.2,1) .24s both; }
.hero-copy .lede    { animation: fadeUpIn .8s cubic-bezier(.2,.7,.2,1) .32s both; }
.hero-actions        { animation: fadeUpIn .8s cubic-bezier(.2,.7,.2,1) .4s both; }
.hero-foot            { animation: fadeUpIn .8s cubic-bezier(.2,.7,.2,1) .48s both; }

/* ---------- portrait (about section) ---------- */
.portrait-frame {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 300px;
  aspect-ratio: 3 / 4;
  background: linear-gradient(160deg, var(--gold) 0%, var(--gold-deep) 100%);
  border-radius: 6px;
  padding: 4px;
  overflow: hidden;
  box-shadow: var(--shadow-lift);
  margin-bottom: 28px;
}
.portrait-frame img,
.portrait-frame .photo-placeholder {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  background: var(--paper-dim);
  border-radius: 3px;
}
.photo-placeholder {
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  font-family: var(--font-body);
  font-size: 0.8rem;
  color: var(--ink-soft);
  padding: 20px;
  letter-spacing: 0.02em;
}

/* ---------- about ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.about-figure {}
.about-quote-mark {
  display: block;
  font-family: var(--font-display);
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
  margin-bottom: -10px;
}
.about-pullquote {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: 1.15rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 24px;
}
.about-credentials {
  list-style: none;
  margin: 0;
  padding: 24px 0 0;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.about-credentials li {
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  color: var(--ink-soft);
}
.about-body p { margin-bottom: 1.1em; }

/* ---------- practice areas ---------- */
.areas-grid {
  display: flex;
  flex-direction: column;
}
.area-card {
  background: var(--paper);
  padding: 36px 0;
  position: relative;
  border-top: 1px solid var(--line);
  max-width: 780px;
}
.area-card:last-child { padding-bottom: 0; }
.area-card::before {
  content: "";
  display: block;
  width: 34px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold) 55%, var(--forest-2) 55%, var(--forest-2) 100%);
  margin-bottom: 16px;
  transition: width 0.2s ease;
}
.area-card:hover::before { width: 50px; }
.area-card h3 { margin-bottom: 10px; font-size: 1.2rem; }
.area-card > p { font-size: 0.92rem; margin: 0 0 16px; max-width: 68ch; }
.area-card ul {
  margin: 0;
  padding: 0;
  list-style: none;
}
.area-card li {
  font-size: 0.88rem;
  color: var(--ink);
  padding-left: 16px;
  position: relative;
  margin-bottom: 9px;
  line-height: 1.45;
}
.area-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 5px;
  height: 5px;
  background: var(--gold);
  border-radius: 50%;
}

/* ---------- international / corporate panels ---------- */
.panel-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border: 1px solid var(--line);
}
.panel {
  padding: 44px 40px;
  border-top: 3px solid transparent;
}
.panel--wine { background: var(--paper); border-top-color: var(--forest-2); }
.panel--teal { background: var(--paper-dim); border-top-color: var(--gold); }
.panel h3 { color: var(--gold-deep); font-size: 1.4rem; margin-bottom: 14px; }
.panel p { color: var(--ink-soft); }
.panel ul { margin: 18px 0 0; padding: 0; list-style: none; }
.panel li {
  padding: 10px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
  color: var(--ink);
}
.panel li:first-child { border-top: none; }

/* ---------- appointment ---------- */
.appointment-wrap {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 56px;
}
.appointment-info .info-row {
  display: flex;
  gap: 14px;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  font-size: 0.92rem;
}
.appointment-info .info-row:first-child { border-top: none; }
.appointment-info .info-row b { display: block; font-weight: 600; color: var(--ink); }
.appointment-info .info-row span { color: var(--ink-soft); }

.appointment-note {
  margin-top: 24px;
  padding: 16px 18px;
  background: var(--paper-dim);
  border-left: 3px solid var(--gold);
  font-size: 0.82rem;
  color: var(--ink-soft);
}

form.appointment-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.field { display: flex; flex-direction: column; gap: 6px; }
.field--full { grid-column: 1 / -1; }
.field label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  color: var(--ink);
}
.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: 0.94rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: #fff;
  border-radius: var(--radius);
  color: var(--ink);
}
.field textarea { resize: vertical; min-height: 96px; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: 2px solid var(--gold);
  outline-offset: 1px;
}

.meeting-type-group {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}
.meeting-type-group label {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-size: 0.86rem;
  font-weight: 500;
  cursor: pointer;
  color: var(--ink-soft);
}
.meeting-type-group input { accent-color: var(--gold); }
.meeting-type-group input:checked + span { color: var(--ink); font-weight: 600; }

.form-consent {
  font-size: 0.78rem;
  color: var(--ink-soft);
  display: flex;
  gap: 8px;
  align-items: flex-start;
}
.form-consent a { color: var(--gold-deep); }
.form-consent input { margin-top: 3px; accent-color: var(--gold); }

.form-status {
  font-size: 0.86rem;
  padding: 10px 0;
  min-height: 1.4em;
}
.form-status.ok { color: var(--whatsapp-deep); }
.form-status.err { color: #A6392E; }

/* ---------- subpage hero ---------- */
.page-hero {
  position: relative;
  padding: 64px 0 48px;
  background: linear-gradient(165deg, var(--forest-2) 0%, var(--forest) 100%);
  border-bottom: 1px solid var(--gold-deep);
}
.page-hero .breadcrumb {
  font-size: 0.8rem;
  color: rgba(250,248,243,0.6);
  margin-bottom: 14px;
}
.page-hero .breadcrumb a { color: var(--gold-light); text-decoration: none; }
.page-hero .breadcrumb a:hover { text-decoration: underline; }
.page-hero .eyebrow { color: var(--gold-light); }
.page-hero h1 { margin-bottom: 10px; font-size: clamp(2rem, 3.4vw, 2.8rem); color: var(--paper); }
.page-hero p { color: rgba(250,248,243,0.78); max-width: 62ch; margin: 0; }

/* ---------- teaser links / tags / CTA ---------- */
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-deep);
  text-decoration: none;
}
.text-link:hover { text-decoration: underline; }
.text-link .arrow { transition: transform 0.15s ease; }
.text-link:hover .arrow { transform: translateX(3px); }

.area-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 28px 0 32px;
}
.area-tag {
  font-size: 0.82rem;
  font-weight: 500;
  padding: 8px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  color: var(--ink-soft);
  background: var(--paper);
  transition: border-color 0.2s ease, color 0.2s ease;
}
.area-tag:hover { border-color: var(--gold-deep); color: var(--gold-deep); }

.cta-banner {
  background: linear-gradient(165deg, var(--forest-2) 0%, var(--forest) 100%);
  border-top: 1px solid var(--gold-deep);
  padding: 56px 0;
  text-align: center;
}
.cta-banner .eyebrow { color: var(--gold-light); }
.cta-banner h2 { color: var(--paper); margin-bottom: 14px; }
.cta-banner p { color: rgba(250,248,243,0.72); max-width: 52ch; margin: 0 auto 28px; }
.cta-banner .hero-actions { justify-content: center; }

/* ---------- footer ---------- */
.site-footer {
  background: linear-gradient(165deg, var(--dark) 0%, var(--forest) 130%);
  color: rgba(246,242,236,0.72);
  padding: 56px 0 28px;
  font-size: 0.86rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 34px;
  border-bottom: 1px solid rgba(203,171,128,0.16);
}
.footer-grid h4 {
  color: var(--gold-light);
  font-size: 0.98rem;
  margin-bottom: 14px;
}
.footer-brand {
  font-family: var(--font-display);
  color: var(--paper);
  font-size: 1.15rem;
  margin-bottom: 10px;
}
.footer-grid a { color: rgba(246,242,236,0.72); text-decoration: none; }
.footer-grid a:hover { color: var(--gold-light); }
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 8px; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  padding-top: 22px;
}
.footer-bottom a { text-decoration: underline; text-underline-offset: 3px; }
.disclaimer {
  max-width: 760px;
  margin: 0 auto 0;
  padding-top: 22px;
  font-size: 0.76rem;
  color: rgba(246,242,236,0.55);
  line-height: 1.6;
}
.credit-line {
  margin: 18px auto 0;
  padding-top: 16px;
  border-top: 1px solid rgba(203,171,128,0.14);
  text-align: center;
  font-size: 0.74rem;
  color: rgba(246,242,236,0.4);
}
.credit-line a { color: var(--gold-light); text-decoration: none; }
.credit-line a:hover { text-decoration: underline; }

/* ---------- whatsapp float ---------- */
.whatsapp-float {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 50;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  background: var(--whatsapp);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  box-shadow: 0 12px 24px -10px rgba(29,175,87,0.6);
  transition: transform .15s ease;
}
.whatsapp-float:hover { transform: translateY(-2px) scale(1.04); }
.whatsapp-float svg { width: 28px; height: 28px; }

/* ---------- legal pages ---------- */
.legal-page { padding: 64px 0 96px; }
.legal-page .container { max-width: 820px; }
.legal-page h2 { margin-top: 1.6em; }
.legal-page h2:first-of-type { margin-top: 0; }
.legal-page ol, .legal-page ul { color: var(--ink-soft); padding-left: 1.2em; }
.legal-page li { margin-bottom: 0.5em; }
.legal-updated { font-size: 0.8rem; color: var(--ink-soft); margin-bottom: 2.4em; }

/* ---------- cookie banner ---------- */
.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  z-index: 60;
  max-width: 620px;
  margin: 0 auto;
  background: linear-gradient(165deg, var(--dark) 0%, var(--forest) 130%);
  color: var(--paper);
  padding: 20px 22px;
  border-radius: var(--radius);
  box-shadow: 0 20px 40px -18px rgba(0,0,0,0.5);
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  justify-content: space-between;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner p { color: rgba(246,242,236,0.82); font-size: 0.84rem; margin: 0; flex: 1 1 320px; }
.cookie-banner a { color: var(--gold-light); }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions button {
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  padding: 9px 16px;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid rgba(246,242,236,0.3);
  background: transparent;
  color: var(--paper);
}
.cookie-actions button.accept { background: var(--gold); border-color: var(--gold); color: var(--dark); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-figure { justify-self: center; margin-top: 40px; }
  .hero::before, .hero::after { opacity: 0.55; }
  .about-grid { grid-template-columns: 1fr; }
  .panel-split { grid-template-columns: 1fr; }
  .appointment-wrap { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .hero::before, .hero::after { display: none; }
  .hero { background: linear-gradient(200deg, var(--forest-2) 0%, var(--dark) 55%); }
}

@media (max-width: 720px) {
  .main-nav { position: fixed; top: 84px; left: 0; right: 0; bottom: 0; width: 100%; background: var(--dark); flex-direction: column; align-items: flex-start; padding: 28px; gap: 22px; transform: translateX(100%); transition: transform .25s ease; z-index: 39; }
  .main-nav.open { transform: translateX(0); }
  .nav-toggle { display: block; }
  form.appointment-form { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

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