/* ==========================================================================
   บ้านม่อนมะกอก / Banmonmakok — Design System
   Palette  : pastel sage green + warm white, with a single temple-gold accent
   Type     : Noto Serif Thai (display) + Noto Sans Thai (body) — one family
              pair that renders Thai and Latin glyphs consistently, so the
              TH/EN toggle never causes a jarring font swap.
   Signature: the Buddha's-footprint (รอยพระพุทธบาท) line motif — the site's
              own founding story — used as a watermark, a section divider
              and a list marker, instead of a generic decorative icon.
   ========================================================================== */

:root {
  /* ---- color tokens ---- */
  --paper: #ffffff;
  --cream: #fbfaf4;
  --sage-50: #eef3e6;
  --sage-100: #dfead0;
  --sage-200: #cfe0be;
  --sage-400: #93b877;
  --sage-500: #79a35c;
  --sage-600: #5c8944;
  --sage-800: #3a5528;
  --sage-900: #263c1a;
  --gold-400: #c9a15a;
  --gold-500: #b3873c;
  --ink: #263021;
  --ink-soft: #57624c;
  --line: #dde5d2;

  /* ---- type tokens ---- */
  --font-display: "Noto Serif Thai", "Noto Serif", serif;
  --font-body: "Noto Sans Thai", "Noto Sans", system-ui, sans-serif;

  /* ---- layout tokens ---- */
  --max-w: 1180px;
  --radius-sm: 8px;
  --radius-md: 16px;
  --radius-lg: 28px;
  --shadow-1: 0 2px 10px rgba(38, 60, 26, 0.08);
  --shadow-2: 0 18px 40px rgba(38, 60, 26, 0.14);
  --header-h: 76px;
}

/* ---------------------------------------------------------------------- */
/* Reset & base                                                           */
/* ---------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
button { font: inherit; cursor: pointer; }
h1, h2, h3, h4 { font-family: var(--font-display); color: var(--sage-900); margin: 0 0 0.5em; line-height: 1.3; font-weight: 700; }
p { margin: 0 0 1em; }

:focus-visible {
  outline: 3px solid var(--gold-400);
  outline-offset: 3px;
  border-radius: 4px;
}

.container {
  max-width: var(--max-w);
  margin-inline: auto;
  padding-inline: clamp(1.1rem, 4vw, 2.5rem);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-600);
  font-weight: 700;
  margin-bottom: 0.75em;
}
.eyebrow .footprint-mark { width: 14px; height: 14px; opacity: 0.85; }

.section-head { max-width: 62ch; margin-bottom: clamp(1.75rem, 4vw, 2.75rem); }
.section-head h2 { font-size: clamp(1.55rem, 2.6vw, 2.15rem); }
.section-head p { color: var(--ink-soft); font-size: 1.02rem; }

section { padding-block: clamp(3rem, 7vw, 5.5rem); }
.alt-bg { background: var(--sage-50); }

/* ---------------------------------------------------------------------- */
/* Language toggle logic                                                  */
/* ---------------------------------------------------------------------- */
html[data-lang="th"] .lang-en { display: none !important; }
html[data-lang="en"] .lang-th { display: none !important; }

/* ---------------------------------------------------------------------- */
/* Buttons                                                                 */
/* ---------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55em;
  padding: 0.85em 1.5em;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.96rem;
  border: 1px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background-color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--sage-600); color: var(--paper); box-shadow: var(--shadow-1); }
.btn-primary:hover { background: var(--sage-800); box-shadow: var(--shadow-2); }
.btn-ghost { background: var(--paper); color: var(--sage-800); border-color: var(--sage-200); }
.btn-ghost:hover { background: var(--sage-50); }
.btn-gold { background: var(--gold-400); color: var(--sage-900); box-shadow: var(--shadow-1); }
.btn-gold:hover { background: var(--gold-500); }
.btn-icon { width: 1.1em; height: 1.1em; flex: none; }

/* ---------------------------------------------------------------------- */
/* Header                                                                  */
/* ---------------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(251, 250, 244, 0.9);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
}
.site-header .container { display: flex; align-items: center; justify-content: space-between; gap: 1rem; width: 100%; }

.brand { display: flex; align-items: center; gap: 0.65rem; }
.brand img { height: 42px; width: auto; }
.brand-name { font-family: var(--font-display); font-weight: 700; line-height: 1.15; }
.brand-name .th { display: block; font-size: 1.02rem; color: var(--sage-900); }
.brand-name .sub { display: block; font-size: 0.72rem; color: var(--ink-soft); letter-spacing: 0.06em; font-family: var(--font-body); }

.main-nav { display: none; }
.main-nav ul { display: flex; gap: 1.9rem; }
.main-nav a {
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--sage-800);
  padding-block: 0.3em;
  border-bottom: 2px solid transparent;
  transition: border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover, .main-nav a.active { border-color: var(--gold-400); color: var(--sage-900); }

.header-actions { display: flex; align-items: center; gap: 0.6rem; }

.lang-switch {
  display: flex;
  border: 1px solid var(--sage-200);
  border-radius: 999px;
  overflow: hidden;
  background: var(--paper);
}
.lang-switch button {
  border: none;
  background: transparent;
  padding: 0.4em 0.85em;
  font-weight: 700;
  font-size: 0.82rem;
  color: var(--ink-soft);
}
.lang-switch button[aria-pressed="true"] { background: var(--sage-600); color: var(--paper); }

.nav-toggle {
  display: inline-flex;
  border: 1px solid var(--sage-200);
  background: var(--paper);
  border-radius: var(--radius-sm);
  padding: 0.5em;
}
.nav-toggle span, .nav-toggle span::before, .nav-toggle span::after {
  content: ""; display: block; width: 20px; height: 2px; background: var(--sage-800); position: relative; transition: transform 0.2s ease, opacity 0.2s ease;
}
.nav-toggle span::before { position: absolute; top: -6px; }
.nav-toggle span::after { position: absolute; top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

.mobile-nav {
  display: none;
  position: fixed;
  inset: var(--header-h) 0 0 0;
  background: var(--cream);
  z-index: 40;
  padding: 1.5rem;
  overflow-y: auto;
}
.mobile-nav.open { display: block; }
.mobile-nav ul { display: flex; flex-direction: column; gap: 0.25rem; }
.mobile-nav a { display: block; padding: 0.9rem 0.25rem; font-size: 1.1rem; font-weight: 700; color: var(--sage-900); border-bottom: 1px solid var(--line); }

/* ---------------------------------------------------------------------- */
/* Hero                                                                    */
/* ---------------------------------------------------------------------- */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  isolation: isolate;
}
.hero-track {
  position: absolute; inset: 0; display: flex;
  animation: heroPan 42s linear infinite;
}
@media (prefers-reduced-motion: reduce) { .hero-track { animation: none; } }
.hero-track img { height: 100%; width: auto; min-width: 100%; object-fit: cover; flex: none; }
@keyframes heroPan {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}
.hero::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(38,60,26,0.15) 0%, rgba(38,60,26,0.55) 78%, rgba(38,60,26,0.82) 100%);
  z-index: 1;
}
.hero-footprint {
  position: absolute; z-index: 2; opacity: 0.16; pointer-events: none;
  width: clamp(220px, 34vw, 420px);
  top: 6%; right: -3%;
}
.hero-content {
  position: relative; z-index: 3;
  color: var(--paper);
  padding-block: clamp(2.5rem, 8vw, 4.5rem);
  width: 100%;
}
.hero-content .eyebrow { color: var(--sage-100); }
.hero-content h1 {
  color: var(--paper);
  font-size: clamp(2.1rem, 5.4vw, 3.6rem);
  max-width: 16ch;
  text-wrap: balance;
}
.hero-content .lede { max-width: 52ch; font-size: clamp(1rem, 1.6vw, 1.15rem); color: var(--sage-50); }
.hero-cta { display: flex; flex-wrap: wrap; gap: 0.85rem; margin-top: 1.6rem; }
.hero-note { margin-top: 1.4rem; font-size: 0.9rem; color: var(--sage-100); display: flex; align-items: center; gap: 0.5em; }

/* ---------------------------------------------------------------------- */
/* Facts strip                                                            */
/* ---------------------------------------------------------------------- */
.facts {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  margin-top: -64px;
  position: relative;
  z-index: 5;
}
.fact-card {
  background: var(--paper);
  border-radius: var(--radius-md);
  padding: 1.4rem 1.5rem;
  box-shadow: var(--shadow-2);
  border: 1px solid var(--line);
}
.fact-card .icon { width: 34px; height: 34px; color: var(--sage-600); margin-bottom: 0.6rem; }
.fact-card h3 { font-size: 1.02rem; margin-bottom: 0.3rem; }
.fact-card p { font-size: 0.92rem; color: var(--ink-soft); margin: 0; }

/* ---------------------------------------------------------------------- */
/* Welcome / intro                                                        */
/* ---------------------------------------------------------------------- */
.intro { display: grid; gap: clamp(2rem, 5vw, 3.5rem); grid-template-columns: 1fr; align-items: center; }
.intro-media { position: relative; }
.intro-media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-2); }
.intro-video {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 9;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-2);
}
.intro-video iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
.intro-media .badge {
  position: absolute; left: -14px; bottom: -14px;
  background: var(--gold-400); color: var(--sage-900);
  border-radius: 999px; padding: 0.9em 1.3em; font-weight: 700; font-size: 0.85rem;
  box-shadow: var(--shadow-1); display: flex; align-items: center; gap: 0.5em;
}
.intro-copy h2 { font-size: clamp(1.6rem, 3vw, 2.3rem); }
.intro-copy .quote {
  border-left: 3px solid var(--gold-400);
  padding-left: 1rem; margin: 1.4rem 0; font-family: var(--font-display); font-style: italic; color: var(--sage-800);
}

/* ---------------------------------------------------------------------- */
/* Facilities cards                                                       */
/* ---------------------------------------------------------------------- */
.grid-cards { display: grid; gap: 1.3rem; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); }
.facility-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  padding: 1.6rem; transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.facility-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.facility-card .icon-wrap {
  width: 52px; height: 52px; border-radius: var(--radius-sm); background: var(--sage-50);
  display: flex; align-items: center; justify-content: center; margin-bottom: 1rem;
}
.facility-card .icon-wrap svg { width: 26px; height: 26px; color: var(--sage-600); }
.facility-card h3 { font-size: 1.05rem; }
.facility-card p { color: var(--ink-soft); font-size: 0.93rem; margin: 0; }

/* ---------------------------------------------------------------------- */
/* Section divider — footprint path (signature motif)                    */
/* ---------------------------------------------------------------------- */
.path-divider {
  display: flex; align-items: center; gap: 0.9rem;
  color: var(--sage-400); margin-block: clamp(2.5rem, 6vw, 4rem);
}
.path-divider .line { flex: 1; height: 1px; background: repeating-linear-gradient(90deg, var(--sage-200) 0 8px, transparent 8px 16px); }
.path-divider svg { width: 22px; height: 22px; }

/* ---------------------------------------------------------------------- */
/* About / accordion                                                      */
/* ---------------------------------------------------------------------- */
.about-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); grid-template-columns: 1fr; }
.about-pull {
  background: var(--sage-800); color: var(--sage-50);
  border-radius: var(--radius-lg); padding: clamp(1.75rem, 4vw, 2.5rem);
  position: relative; overflow: hidden;
}
.about-pull .footprint-mark { position: absolute; right: -20px; bottom: -20px; width: 150px; opacity: 0.12; }
.about-pull p { font-family: var(--font-display); font-size: clamp(1.05rem, 2vw, 1.3rem); line-height: 1.6; position: relative; z-index: 1; }
.about-pull cite { display: block; margin-top: 1rem; font-style: normal; font-size: 0.85rem; color: var(--sage-200); font-family: var(--font-body); }

.accordion { border-top: 1px solid var(--line); }
.accordion-item { border-bottom: 1px solid var(--line); }
.accordion-trigger {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  background: none; border: none; text-align: left; padding: 1.25rem 0.2rem; font-family: var(--font-display); font-weight: 700; color: var(--sage-900); font-size: 1.05rem;
}
.accordion-trigger .plus { width: 20px; height: 20px; flex: none; position: relative; }
.accordion-trigger .plus::before, .accordion-trigger .plus::after {
  content: ""; position: absolute; background: var(--sage-600); border-radius: 2px;
}
.accordion-trigger .plus::before { top: 9px; left: 0; width: 20px; height: 2px; }
.accordion-trigger .plus::after { top: 0; left: 9px; width: 2px; height: 20px; transition: transform 0.2s ease; }
.accordion-trigger[aria-expanded="true"] .plus::after { transform: rotate(90deg); }
.accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.accordion-panel[data-open="true"] { max-height: 900px; }
.accordion-panel .inner { padding-bottom: 1.4rem; color: var(--ink-soft); font-size: 0.96rem; }

/* ---------------------------------------------------------------------- */
/* Activities ("Content หลัก")                                            */
/* ---------------------------------------------------------------------- */
.activity-grid { display: grid; gap: 1.2rem; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr)); }
.activity-card {
  background: var(--paper); border-radius: var(--radius-md); border: 1px solid var(--line);
  overflow: hidden; display: flex; flex-direction: column; box-shadow: var(--shadow-1);
}
.activity-card .thumb { aspect-ratio: 4/3; overflow: hidden; background: var(--sage-100); }
.activity-card .thumb img { width: 100%; height: 100%; object-fit: cover; }
.activity-card .body { padding: 1.1rem 1.2rem 1.3rem; display: flex; flex-direction: column; gap: 0.5rem; flex: 1; }
.activity-card h3 { font-size: 1rem; margin: 0; }
.activity-card .tag { font-size: 0.74rem; text-transform: uppercase; letter-spacing: 0.08em; color: var(--sage-600); font-weight: 700; }
.activity-card a.card-link { margin-top: auto; font-weight: 700; font-size: 0.88rem; color: var(--sage-800); display: inline-flex; align-items: center; gap: 0.4em; }

.activity-list { display: grid; gap: 0.6rem; margin-top: 1.5rem; }
.activity-list li { display: flex; gap: 0.65rem; align-items: flex-start; font-size: 0.95rem; }
.activity-list .footprint-mark { width: 16px; height: 16px; flex: none; margin-top: 0.25em; color: var(--sage-500); }
.activity-list a { color: var(--sage-800); font-weight: 600; }
.activity-list a:hover { text-decoration: underline; }

/* ---------------------------------------------------------------------- */
/* Rooms                                                                   */
/* ---------------------------------------------------------------------- */
.room-grid { display: grid; gap: 1.4rem; grid-template-columns: repeat(auto-fit, minmax(270px, 1fr)); }
.room-card {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-md);
  overflow: hidden; box-shadow: var(--shadow-1); display: flex; flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.room-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-2); }
.room-card .thumb { position: relative; aspect-ratio: 4/3; overflow: hidden; background: var(--sage-100); }
.room-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.room-card:hover .thumb img { transform: scale(1.04); }
.price-badge {
  position: absolute; left: 12px; bottom: 12px;
  background: rgba(251, 250, 244, 0.94); color: var(--sage-900);
  border-radius: 999px; padding: 0.4em 1em; font-size: 0.82rem; font-weight: 600;
  box-shadow: var(--shadow-1); display: inline-flex; align-items: baseline; gap: 0.35em;
}
.price-badge strong { font-family: var(--font-display); font-size: 1.25rem; color: var(--sage-800); }
.room-card .body { padding: 1.3rem 1.4rem 1.5rem; display: flex; flex-direction: column; gap: 0.7rem; flex: 1; }
.room-card h3 { font-size: 1.12rem; margin: 0; }
.room-spec { display: grid; gap: 0.4rem; }
.room-spec li {
  position: relative; padding-left: 1.35em; font-size: 0.92rem; color: var(--ink-soft);
}
.room-spec li::before {
  content: ""; position: absolute; left: 0; top: 0.48em; width: 0.7em; height: 0.7em;
  border-radius: 50%; background: var(--sage-200); box-shadow: inset 0 0 0 2px var(--sage-500);
}
.btn-room { margin-top: auto; justify-content: center; }
.room-note {
  margin-top: 1.4rem; font-size: 0.92rem; color: var(--ink-soft);
  display: flex; align-items: flex-start; gap: 0.55em;
  background: var(--sage-50); border: 1px solid var(--line);
  border-radius: var(--radius-sm); padding: 0.85em 1.1em;
}
.room-note svg { flex: none; margin-top: 0.2em; color: var(--sage-600); }

/* Gallery */
.gallery { display: grid; gap: 0.9rem; grid-template-columns: repeat(2, 1fr); margin-top: 1.2rem; }
.gallery figure { margin: 0; border-radius: var(--radius-md); overflow: hidden; aspect-ratio: 4/3; background: var(--sage-100); }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.35s ease; }
.gallery figure:hover img { transform: scale(1.05); }
@media (min-width: 720px) { .gallery { grid-template-columns: repeat(3, 1fr); } }

/* ---------------------------------------------------------------------- */
/* Contact                                                                 */
/* ---------------------------------------------------------------------- */
.contact-grid { display: grid; gap: clamp(2rem, 5vw, 3rem); grid-template-columns: 1fr; }
.contact-card {
  background: var(--paper); border-radius: var(--radius-lg); border: 1px solid var(--line);
  padding: clamp(1.5rem, 4vw, 2.2rem); box-shadow: var(--shadow-1);
}
.contact-info-row { display: flex; gap: 0.9rem; padding-block: 0.75rem; border-bottom: 1px dashed var(--line); }
.contact-info-row:last-child { border-bottom: none; }
.contact-info-row .icon { width: 22px; height: 22px; flex: none; color: var(--sage-600); }
.contact-info-row a { font-weight: 700; color: var(--sage-800); }
.contact-map { border-radius: var(--radius-md); overflow: hidden; margin-top: 1.2rem; border: 1px solid var(--line); }

.tabs { display: flex; gap: 0.4rem; flex-wrap: wrap; margin-bottom: 1.2rem; }
.tab-btn {
  border: 1px solid var(--sage-200); background: var(--paper); color: var(--sage-800);
  padding: 0.6em 1.1em; border-radius: 999px; font-weight: 700; font-size: 0.86rem;
}
.tab-btn[aria-selected="true"] { background: var(--sage-600); color: var(--paper); border-color: var(--sage-600); }
.tab-panel { display: none; font-size: 0.95rem; color: var(--ink-soft); }
.tab-panel.active { display: block; }
.tab-panel .transport-row { display: flex; gap: 0.9rem; padding-block: 0.9rem; border-bottom: 1px solid var(--line); }
.tab-panel .transport-row img { width: 40px; height: 40px; object-fit: contain; flex: none; }
.tab-panel .transport-row:last-child { border-bottom: none; }
.tab-panel strong { color: var(--sage-900); }

.form-grid { display: grid; gap: 1rem; margin-top: 0.5rem; }
.field label { display: block; font-size: 0.86rem; font-weight: 700; color: var(--sage-800); margin-bottom: 0.35rem; }
.field input, .field textarea {
  width: 100%; border: 1px solid var(--sage-200); border-radius: var(--radius-sm);
  padding: 0.75em 0.9em; font: inherit; color: var(--ink); background: var(--cream);
}
.field input:focus, .field textarea:focus { outline: none; border-color: var(--sage-500); background: var(--paper); }
.field-error { color: #b3402c; font-size: 0.8rem; margin-top: 0.3rem; min-height: 1em; }
.form-status { font-size: 0.9rem; margin-top: 0.8rem; padding: 0.7em 1em; border-radius: var(--radius-sm); display: none; }
.form-status.show { display: block; }
.form-status.ok { background: var(--sage-50); color: var(--sage-800); }
.form-status.err { background: #fbeae6; color: #93321f; }

/* ---------------------------------------------------------------------- */
/* Footer                                                                  */
/* ---------------------------------------------------------------------- */
.site-footer { background: var(--sage-900); color: var(--sage-100); }
.footer-grid {
  display: grid; gap: 2.2rem; grid-template-columns: 1fr;
  padding-block: clamp(2.5rem, 6vw, 3.5rem);
}
.footer-brand { display: flex; align-items: center; gap: 0.75rem; }
.footer-brand img { height: 40px; filter: brightness(0) invert(1); opacity: 0.92; }
.footer-brand span { font-family: var(--font-display); font-weight: 700; color: var(--paper); }
.footer-col h4 { color: var(--paper); font-size: 0.92rem; letter-spacing: 0.04em; margin-bottom: 0.8rem; }
.footer-col ul { display: grid; gap: 0.55rem; }
.footer-col a { color: var(--sage-200); font-size: 0.92rem; }
.footer-col a:hover { color: var(--paper); }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.9rem; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2);
  display: flex; align-items: center; justify-content: center;
}
.footer-social a:hover { background: rgba(255,255,255,0.08); }
.footer-social svg { width: 17px; height: 17px; color: var(--sage-100); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-block: 1.1rem; font-size: 0.82rem; color: var(--sage-200);
  display: flex; flex-wrap: wrap; gap: 0.6rem; justify-content: space-between;
}

/* ---------------------------------------------------------------------- */
/* Utility                                                                 */
/* ---------------------------------------------------------------------- */
.visually-hidden {
  position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 1rem; top: -60px; background: var(--sage-800); color: var(--paper);
  padding: 0.7em 1.1em; border-radius: var(--radius-sm); z-index: 100; transition: top 0.2s ease;
}
.skip-link:focus { top: 1rem; }

/* ---------------------------------------------------------------------- */
/* Breakpoints                                                            */
/* ---------------------------------------------------------------------- */
@media (min-width: 720px) {
  .intro { grid-template-columns: 1fr 1fr; }
  .about-grid { grid-template-columns: 0.9fr 1.1fr; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr 1fr; }
}
@media (min-width: 900px) {
  .main-nav { display: block; }
  .nav-toggle { display: none; }
  .mobile-nav { display: none !important; }
}
