/* =========================================================
   {{BUSINESS_NAME}} — brand stylesheet
   Navy / warm off-white / restrained gold
   Display serif (Playfair Display) + clean sans (Hanken Grotesk)
   ========================================================= */

:root {
  /* Brand */
  --navy:        #1E3A5F;
  --navy-deep:   #14283F;
  --navy-700:    #16304C;
  --navy-line:   rgba(255, 255, 255, 0.12);
  --cream:       #FAFAF8;
  --cream-2:     #F3F1EA;
  --gold:        #B7962D;
  --gold-soft:   #C9AC4E;

  /* Ink */
  --ink:         #1A2230;
  --ink-soft:    #44505F;
  --muted:       #6B7585;
  --hairline:    #E4E1D8;

  /* Type */
  --serif: "Playfair Display", "Iowan Old Style", Georgia, serif;
  --sans:  "Hanken Grotesk", system-ui, -apple-system, "Segoe UI", sans-serif;

  /* Rhythm */
  --container: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --section-y: clamp(64px, 9vw, 140px);

  --radius: 4px;
  --shadow-sm: 0 1px 2px rgba(20, 40, 63, 0.06), 0 4px 18px rgba(20, 40, 63, 0.06);
  --shadow-md: 0 12px 40px rgba(20, 40, 63, 0.14);

  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ----- reset ----- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; transition-duration: 0.001ms !important; }
}

body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }
ul { list-style: none; padding: 0; }

/* ----- type helpers ----- */
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 600; line-height: 1.1; letter-spacing: -0.01em; color: var(--navy); }
.serif { font-family: var(--serif); }

.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.7em;
}
.eyebrow::before {
  content: "";
  width: 30px; height: 1px;
  background: currentColor;
  opacity: 0.85;
}
.eyebrow.center::before { display: none; }

.section-head { max-width: 720px; }
.section-head .eyebrow { margin-bottom: 18px; }
.section-head h2 { font-size: clamp(2rem, 4.4vw, 3.25rem); }
.section-head p { margin-top: 18px; color: var(--ink-soft); font-size: 1.075rem; }

/* ----- layout ----- */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}
section { padding-block: var(--section-y); }

/* ----- buttons ----- */
.btn {
  --b: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 15px 26px;
  border-radius: var(--radius);
  transition: transform 0.4s var(--ease), background-color 0.3s var(--ease), color 0.3s var(--ease), box-shadow 0.4s var(--ease), border-color 0.3s var(--ease);
  will-change: transform;
}
.btn svg { width: 17px; height: 17px; transition: transform 0.4s var(--ease); }
.btn-gold {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 24px rgba(183, 150, 45, 0.28);
}
.btn-gold:hover { background: var(--gold-soft); transform: translateY(-2px); box-shadow: 0 14px 32px rgba(183, 150, 45, 0.34); }
.btn-gold:hover svg { transform: translateX(3px); }
.btn-outline {
  border: 1px solid var(--navy-line);
  color: #fff;
}
.btn-outline:hover { border-color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.06); transform: translateY(-2px); }
.btn-ink {
  border: 1px solid var(--hairline);
  color: var(--navy);
  background: #fff;
}
.btn-ink:hover { border-color: var(--navy); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

/* ----- star rating ----- */
.stars { display: inline-flex; gap: 3px; color: var(--gold); }
.stars svg { width: 17px; height: 17px; }
.rating-line { display: inline-flex; align-items: center; gap: 12px; flex-wrap: wrap; }
.rating-line .score { font-weight: 700; }
.rating-line .count { color: var(--muted); font-size: 0.92rem; }
.rating-line .count a { color: inherit; border-bottom: 1px solid transparent; transition: border-color .2s; }
.rating-line .count a:hover { border-color: var(--muted); }

/* =========================================================
   HEADER
   ========================================================= */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  transition: background-color 0.45s var(--ease), box-shadow 0.45s var(--ease), padding 0.45s var(--ease);
  padding-block: 22px;
}
.site-header.scrolled {
  background: rgba(20, 40, 63, 0.96);
  backdrop-filter: blur(10px);
  box-shadow: 0 1px 0 var(--navy-line), 0 10px 30px rgba(0,0,0,0.18);
  padding-block: 14px;
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; gap: 13px; color: #fff; }
.brand-mark {
  width: 40px; height: 40px;
  border: 1px solid rgba(255,255,255,0.35);
  display: grid; place-items: center;
  flex: none;
  position: relative;
  overflow: hidden;
}
.brand-mark::after { content: ""; position: absolute; inset: 4px; border: 1px solid var(--gold); }
.brand-mark span { font-family: var(--serif); font-size: 1.1rem; font-weight: 700; color: var(--gold); line-height: 1; }
.brand-name { font-family: var(--serif); font-size: 1.32rem; font-weight: 600; letter-spacing: 0.01em; line-height: 1; }
.brand-sub { display: block; font-family: var(--sans); font-size: 0.62rem; letter-spacing: 0.26em; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 5px; }

.nav { display: flex; align-items: center; gap: 34px; }
.nav-links { display: flex; gap: 30px; }
.nav-links a {
  color: rgba(255,255,255,0.82);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  position: relative;
  padding-block: 4px;
  transition: color 0.25s;
}
.nav-links a::after {
  content: ""; position: absolute; left: 0; bottom: 0;
  width: 100%; height: 1px; background: var(--gold);
  transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease);
}
.nav-links a:hover { color: #fff; }
.nav-links a:hover::after { transform: scaleX(1); }

.nav-cta { display: inline-flex; align-items: center; gap: 9px; color: #fff; font-weight: 600; font-size: 0.95rem; }
.nav-cta svg { width: 16px; height: 16px; color: var(--gold); }
.nav-cta .num { transition: color .25s; }
.nav-cta:hover .num { color: var(--gold-soft); }

.nav-toggle { display: none; width: 44px; height: 44px; color: #fff; align-items: center; justify-content: center; }
.nav-toggle svg { width: 26px; height: 26px; }

/* =========================================================
   HERO
   ========================================================= */
.hero {
  position: relative;
  background: var(--navy-deep);
  color: #fff;
  padding-top: clamp(130px, 18vh, 200px);
  padding-bottom: clamp(70px, 9vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(120% 90% at 85% -10%, rgba(183,150,45,0.16), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-deep) 100%);
}
.hero::after {
  content: ""; position: absolute; inset: 0; opacity: 0.5;
  background-image: linear-gradient(rgba(255,255,255,0.035) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
  background-size: 64px 64px;
  -webkit-mask-image: radial-gradient(120% 120% at 50% 0, #000, transparent 75%);
          mask-image: radial-gradient(120% 120% at 50% 0, #000, transparent 75%);
}
.hero .container { position: relative; z-index: 1; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.hero-eyebrow { margin-bottom: 26px; }
.hero h1 {
  color: #fff;
  font-size: clamp(2.6rem, 6vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.02em;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero-cat { margin-top: 22px; font-size: 1.18rem; color: rgba(255,255,255,0.74); }
.hero-cat strong { color: #fff; font-weight: 600; }
.hero-rating { margin-top: 24px; }
.hero-rating .rating-line { color: rgba(255,255,255,0.9); }
.hero-rating .count { color: rgba(255,255,255,0.62); }
.hero-rating .count a { color: inherit; }
.hero-desc {
  margin-top: 26px;
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  max-width: 30em;
  border-left: 2px solid var(--gold);
  padding-left: 22px;
}
.hero-actions { margin-top: 38px; display: flex; flex-wrap: wrap; gap: 14px; }

/* hero media */
.hero-media { position: relative; }
.hero-media .frame {
  position: relative;
  aspect-ratio: 4 / 5;
  border: 1px solid rgba(255,255,255,0.16);
}
.hero-media .frame .media { position: absolute; inset: 0; border: 0; }
.hero-media .frame::before {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid var(--gold); z-index: -1;
}
.hero-badge {
  position: absolute;
  left: -26px; bottom: 34px;
  background: var(--cream);
  color: var(--navy);
  padding: 18px 22px;
  box-shadow: var(--shadow-md);
  max-width: 215px;
}
.hero-badge .k { font-family: var(--serif); font-size: 2.1rem; font-weight: 700; line-height: 1; }
.hero-badge .l { font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); margin-top: 6px; }

/* =========================================================
   TRUST / CREDENTIALS BAR
   ========================================================= */
.trust {
  background: var(--navy);
  color: #fff;
  padding-block: 0;
  position: relative;
  z-index: 2;
}
.trust-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--navy-line);
}
.trust-item {
  padding: 34px 30px;
  border-left: 1px solid var(--navy-line);
  display: flex;
  align-items: center;
  gap: 16px;
}
.trust-item:first-child { border-left: none; }
.trust-item svg { width: 30px; height: 30px; color: var(--gold); flex: none; }
.trust-item .t { font-family: var(--serif); font-size: 1.18rem; color: #fff; line-height: 1.15; }
.trust-item .d { font-size: 0.84rem; color: rgba(255,255,255,0.6); margin-top: 3px; }

/* =========================================================
   SERVICES
   ========================================================= */
.services { background: var(--cream); }
.services-grid {
  margin-top: clamp(40px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1px;
  background: var(--hairline);
  border: 1px solid var(--hairline);
}
.service {
  background: var(--cream);
  padding: clamp(30px, 3.4vw, 48px);
  transition: background-color 0.4s var(--ease), transform 0.4s var(--ease);
  position: relative;
}
.service:hover { background: #fff; }
.service .num { font-family: var(--serif); font-size: 0.95rem; color: var(--gold); font-weight: 600; letter-spacing: 0.08em; }
.service h3 { font-size: 1.5rem; margin-top: 14px; }
.service p { margin-top: 14px; color: var(--ink-soft); font-size: 1rem; }
.service .more {
  margin-top: 22px;
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 600; font-size: 0.9rem; color: var(--navy);
  letter-spacing: 0.02em;
}
.service .more svg { width: 16px; height: 16px; color: var(--gold); transition: transform 0.4s var(--ease); }
.service:hover .more svg { transform: translateX(4px); }

/* =========================================================
   ABOUT
   ========================================================= */
.about { background: var(--cream-2); }
.about-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: clamp(40px, 6vw, 88px);
  align-items: center;
}
.about-media { position: relative; }
.about-media .media { aspect-ratio: 4 / 5; border: 1px solid var(--hairline); box-shadow: var(--shadow-md); }
.about-media .tag {
  position: absolute; right: -22px; top: 34px;
  writing-mode: vertical-rl;
  background: var(--navy); color: #fff;
  padding: 18px 12px;
  font-size: 0.7rem; letter-spacing: 0.24em; text-transform: uppercase;
}
.about-body h2 { font-size: clamp(2rem, 4.2vw, 3rem); margin-top: 20px; }
.about-body .lead { font-size: 1.2rem; color: var(--ink); margin-top: 22px; font-family: var(--serif); font-style: italic; line-height: 1.45; }
.about-body p { margin-top: 18px; color: var(--ink-soft); }
.about-points { margin-top: 30px; display: grid; gap: 16px; }
.about-points li { display: flex; gap: 14px; align-items: flex-start; }
.about-points svg { width: 22px; height: 22px; color: var(--gold); flex: none; margin-top: 2px; }
.about-points .pt { font-weight: 600; color: var(--navy); }
.about-points .pd { color: var(--ink-soft); font-size: 0.96rem; }

/* =========================================================
   GALLERY
   ========================================================= */
.gallery { background: var(--cream); }
.gallery-grid {
  margin-top: clamp(40px, 5vw, 60px);
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 1fr;
  gap: 16px;
}
.gallery-grid .g {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--hairline);
}
.gallery-grid .g .media { position: absolute; inset: 0; border: 0; }
.gallery-grid .g img { transition: transform 0.9s var(--ease); }
.gallery-grid .g:hover img { transform: scale(1.05); }
.gallery-grid .g::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(20,40,63,0.35), transparent 45%);
  opacity: 0; transition: opacity 0.5s var(--ease);
}
.gallery-grid .g:hover::after { opacity: 1; }
.g1 { grid-column: span 2; grid-row: span 2; }
.g2 { grid-column: span 2; }
.g3 { grid-column: span 1; }
.g4 { grid-column: span 1; }
.g5 { grid-column: span 2; }

/* =========================================================
   TESTIMONIALS
   ========================================================= */
.testimonials { background: var(--navy-deep); color: #fff; position: relative; overflow: hidden; }
.testimonials::before {
  content: "\201C";
  position: absolute; top: -0.18em; right: 4%;
  font-family: var(--serif); font-size: 26rem; line-height: 1;
  color: rgba(255,255,255,0.04);
}
.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head .eyebrow { color: var(--gold-soft); }
.tst-grid {
  margin-top: clamp(44px, 5vw, 64px);
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
  position: relative;
  z-index: 1;
}
.tst {
  background: var(--navy-700);
  border: 1px solid var(--navy-line);
  padding: clamp(30px, 3.4vw, 46px);
  display: flex; flex-direction: column;
}
.tst .stars { margin-bottom: 22px; }
.tst blockquote {
  font-family: var(--serif);
  font-size: clamp(1.25rem, 2.1vw, 1.6rem);
  line-height: 1.45;
  color: #fff;
  font-weight: 500;
}
.tst .by { margin-top: auto; padding-top: 26px; display: flex; align-items: center; gap: 14px; }
.tst .avatar {
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--gold); color: var(--navy-deep);
  display: grid; place-items: center;
  font-family: var(--serif); font-weight: 700; font-size: 1.15rem;
  flex: none;
}
.tst .who { font-weight: 600; }
.tst .role { font-size: 0.86rem; color: rgba(255,255,255,0.58); margin-top: 1px; }

/* =========================================================
   CONTACT / HOURS / DIRECTIONS
   ========================================================= */
.contact { background: var(--cream); }
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 70px);
  align-items: start;
}
.contact-info .eyebrow { margin-bottom: 18px; }
.contact-info h2 { font-size: clamp(2rem, 4vw, 2.9rem); }
.contact-list { margin-top: 34px; display: grid; gap: 4px; }
.cl-row {
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px 0;
  border-top: 1px solid var(--hairline);
}
.cl-row:last-child { border-bottom: 1px solid var(--hairline); }
.cl-ico {
  width: 46px; height: 46px;
  border: 1px solid var(--hairline);
  display: grid; place-items: center;
  color: var(--navy);
}
.cl-ico svg { width: 20px; height: 20px; }
.cl-k { font-size: 0.74rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.cl-v { font-size: 1.12rem; color: var(--ink); margin-top: 4px; font-weight: 500; }
.cl-v a { transition: color .2s; }
.cl-v a:hover { color: var(--gold); }
.cl-v .hours-list { font-size: 1rem; font-weight: 400; color: var(--ink-soft); line-height: 1.7; }

/* directions card */
.contact-card {
  background: var(--navy-deep);
  color: #fff;
  padding: clamp(30px, 3.6vw, 48px);
  position: relative;
  overflow: hidden;
}
.contact-card .map {
  position: relative;
  aspect-ratio: 16 / 11;
  margin: -8px -8px 28px;
  border: 1px solid var(--navy-line);
  background:
    radial-gradient(circle at 62% 42%, rgba(183,150,45,0.35), transparent 8%),
    linear-gradient(0deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.05) 1px, transparent 1px),
    var(--navy-700);
  background-size: auto, 38px 38px, 38px 38px, auto;
  display: grid; place-items: center;
  overflow: hidden;
}
.contact-card .map::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(115deg, rgba(255,255,255,0.06) 0 14px, transparent 14px 60px);
  background-size: 120px 120px;
  opacity: 0.5;
}
.map-pin {
  position: relative; z-index: 1; text-align: center;
}
.map-pin svg { width: 40px; height: 40px; color: var(--gold); filter: drop-shadow(0 6px 12px rgba(0,0,0,0.4)); }
.map-pin .mp { margin-top: 8px; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; color: rgba(255,255,255,0.75); }
.contact-card h3 { color: #fff; font-size: 1.55rem; }
.contact-card p { color: rgba(255,255,255,0.72); margin-top: 12px; }
.contact-card .btn { margin-top: 24px; width: 100%; justify-content: center; }
.contact-card .note {
  margin-top: 20px; padding-top: 20px; border-top: 1px solid var(--navy-line);
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 0.92rem; color: rgba(255,255,255,0.74);
}
.contact-card .note svg { width: 18px; height: 18px; color: var(--gold); flex: none; margin-top: 2px; }

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer { background: var(--navy); color: #fff; padding-top: clamp(56px, 7vw, 90px); }
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 44px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--navy-line);
}
.footer-brand .brand { margin-bottom: 20px; }
.footer-brand p { color: rgba(255,255,255,0.66); max-width: 34ch; font-size: 0.98rem; }
.footer-col h4 { color: #fff; font-family: var(--sans); font-size: 0.76rem; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(255,255,255,0.55); font-weight: 600; margin-bottom: 18px; }
.footer-col li { margin-bottom: 12px; }
.footer-col a, .footer-col span { color: rgba(255,255,255,0.82); font-size: 0.98rem; transition: color .2s; }
.footer-col a:hover { color: var(--gold-soft); }
.footer-bottom {
  display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 14px;
  padding-block: 28px;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-bottom .stars { transform: scale(0.85); transform-origin: left; }

/* =========================================================
   IMAGE PLACEHOLDER (shown if token/asset missing)
   ========================================================= */
.media { position: relative; overflow: hidden; background: var(--cream-2); }
.media img { width: 100%; height: 100%; object-fit: cover; }
.media .ph {
  position: absolute; inset: 0;
  display: none;
  flex-direction: column; align-items: center; justify-content: center; gap: 10px;
  background:
    repeating-linear-gradient(135deg, rgba(30,58,95,0.05) 0 12px, rgba(30,58,95,0.09) 12px 24px);
  color: var(--navy);
}
.media .ph svg { width: 30px; height: 30px; opacity: 0.5; }
.media .ph code {
  font-family: ui-monospace, "SF Mono", Menlo, Consolas, monospace;
  font-size: 0.72rem; letter-spacing: 0.04em;
  color: var(--ink-soft);
  background: rgba(255,255,255,0.7);
  padding: 4px 9px; border-radius: 3px;
}
.media.is-missing img { display: none; }
.media.is-missing .ph { display: flex; }
/* dark-context placeholders */
.on-dark .media .ph { background: repeating-linear-gradient(135deg, rgba(255,255,255,0.05) 0 12px, rgba(255,255,255,0.09) 12px 24px); color: #fff; }
.on-dark .media .ph svg { opacity: 0.55; }
.on-dark .media .ph code { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.85); }

/* =========================================================
   SCROLL REVEAL
   ========================================================= */
.reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 440px; }
  .hero-badge { left: auto; right: 0; }
  .trust-inner { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-left: 1px solid var(--navy-line); }
  .trust-item:nth-child(3) { border-left: none; }
  .trust-item { border-top: 1px solid var(--navy-line); }
  .trust-item:nth-child(1), .trust-item:nth-child(2) { border-top: none; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .nav-links, .nav-cta { display: none; }
  .nav-toggle { display: inline-flex; }
  .site-header.menu-open { background: var(--navy-deep); }

  /* mobile nav panel */
  .mobile-nav {
    position: fixed; inset: 0;
    background: var(--navy-deep);
    z-index: 99;
    transform: translateY(-100%);
    transition: transform 0.5s var(--ease);
    display: flex; flex-direction: column;
    padding: 110px var(--gutter) 40px;
    visibility: hidden;
  }
  .mobile-nav.open { transform: none; visibility: visible; }
  .mobile-nav a { color: #fff; font-family: var(--serif); font-size: 1.7rem; padding: 16px 0; border-bottom: 1px solid var(--navy-line); display: flex; justify-content: space-between; align-items: center; }
  .mobile-nav a svg { width: 20px; height: 20px; color: var(--gold); }
  .mobile-nav .btn { margin-top: 30px; justify-content: center; }

  .services-grid { grid-template-columns: 1fr; }
  .tst-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .g1 { grid-column: span 2; grid-row: span 1; }
  .g2, .g5 { grid-column: span 2; }
  .g3, .g4 { grid-column: span 1; }
  .gallery-grid .g { aspect-ratio: 4 / 3; }
  .footer-top { grid-template-columns: 1fr; }
  .hero-desc { padding-left: 18px; }
  .about-media .tag { right: 0; }
}

@media (min-width: 761px) { .mobile-nav { display: none; } }
