/* ==========================================================================
   Natural Beauty by Donna
   Design system — forest green, ivory and brushed gold.
   Written mobile-first; larger layouts are added at the breakpoints below.
   ========================================================================== */

:root {
  /* Brand colour, taken from the olive-branch logo */
  --forest:       #14603A;
  --forest-deep:  #0D3F26;
  --forest-soft:  #2F7A54;
  --forest-wash:  #EDF3EF;

  /* Warm neutrals */
  --cream:        #FAF7F1;
  --sand:         #F2ECE2;
  --sand-deep:    #E4DACA;
  --paper:        #FFFFFF;

  /* Accent */
  --gold:         #A9853F;
  --gold-soft:    #C9A96A;
  --gold-wash:    #F6EFE1;

  /* Text */
  --ink:          #1B2620;
  --ink-soft:     #3E4C45;
  --muted:        #6E7C74;

  /* Type */
  --display: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --body:    "Jost", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;

  /* Rhythm */
  --gutter:  clamp(1.25rem, 5vw, 2.5rem);
  --section: clamp(3.5rem, 9vw, 7rem);
  --measure: 68ch;
  --radius:  3px;

  --shadow-sm: 0 2px 10px rgba(20, 60, 40, .05);
  --shadow-md: 0 12px 34px rgba(20, 60, 40, .09);
  --shadow-lg: 0 26px 70px rgba(20, 60, 40, .13);

  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------------------------------------------------------------- Reset -- */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1.0625rem;
  font-weight: 300;
  line-height: 1.72;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

a { color: var(--forest); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--forest-deep); }

:focus-visible {
  outline: 2px solid var(--forest);
  outline-offset: 3px;
  border-radius: 2px;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 200;
  padding: .9rem 1.5rem;
  background: var(--forest);
  color: #fff;
  font-size: .9rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  text-decoration: none;
}
.skip-link:focus { left: 0; color: #fff; }

/* ----------------------------------------------------------- Typography -- */

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.14;
  letter-spacing: .002em;
  color: var(--forest-deep);
  margin: 0 0 .6em;
  text-wrap: balance;
}

h1 { font-size: clamp(2.5rem, 7vw, 4.4rem); font-weight: 300; letter-spacing: -.012em; }
h2 { font-size: clamp(1.85rem, 4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.4vw, 1.6rem); }

p { margin: 0 0 1.25rem; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }

.eyebrow,
.kicker,
.card-eyebrow {
  display: block;
  margin: 0 0 1.1rem;
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
}

.kicker { margin-bottom: .85rem; }

/* A thin gold rule beneath section headings */
.block > h2::after,
.closing-cta h2::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin-top: 1.1rem;
  background: var(--gold-soft);
}

.hero-intro {
  font-size: clamp(1.05rem, 1.9vw, 1.2rem);
  line-height: 1.75;
  color: var(--ink-soft);
  max-width: 54ch;
}

/* -------------------------------------------------------------- Buttons -- */

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .55rem;
  padding: 1rem 2.1rem;
  min-height: 48px;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  background: var(--forest);
  color: #fff;
  font-family: var(--body);
  font-size: .82rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  transition: background .35s var(--ease), color .35s var(--ease),
              border-color .35s var(--ease), transform .35s var(--ease);
}
.button:hover {
  background: var(--forest-deep);
  border-color: var(--forest-deep);
  color: #fff;
  transform: translateY(-1px);
}

.button.ghost {
  background: transparent;
  border-color: rgba(255, 255, 255, .55);
  color: #fff;
}
.button.ghost:hover {
  background: rgba(255, 255, 255, .12);
  border-color: #fff;
}

.button.secondary {
  background: transparent;
  border-color: var(--forest);
  color: var(--forest);
  width: 100%;
}
.button.secondary:hover { background: var(--forest); color: #fff; }

/* --------------------------------------------------------------- Header -- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 247, 241, .93);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: box-shadow .4s var(--ease), border-color .4s var(--ease),
              background .4s var(--ease);
}
.site-header.is-stuck {
  border-bottom-color: var(--sand-deep);
  box-shadow: var(--shadow-sm);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  max-width: 1360px;
  margin: 0 auto;
  padding: .85rem var(--gutter);
}

.brand { display: block; flex: none; line-height: 0; }
.brand img {
  width: auto;
  height: 58px;
  transition: height .4s var(--ease);
}
.site-header.is-stuck .brand img { height: 46px; }

.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .6rem .4rem;
  min-height: 44px;
  border: 0;
  background: none;
  color: var(--forest-deep);
  font-family: var(--body);
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  cursor: pointer;
}

.menu-bars {
  display: block;
  position: relative;
  width: 24px;
  height: 14px;
}
.menu-bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: var(--forest-deep);
  transition: transform .35s var(--ease), opacity .25s var(--ease);
}
.menu-bars span:nth-child(1) { top: 0; }
.menu-bars span:nth-child(2) { top: 6px; }
.menu-bars span:nth-child(3) { top: 12px; }

.menu-toggle[aria-expanded="true"] .menu-bars span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] .menu-bars span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] .menu-bars span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

/* Mobile navigation drawer */
.site-nav {
  position: fixed;
  inset: 0 0 0 auto;
  width: min(88vw, 360px);
  padding: 6.5rem 2rem 2.5rem;
  background: var(--paper);
  box-shadow: var(--shadow-lg);
  display: flex;
  flex-direction: column;
  gap: .25rem;
  transform: translateX(102%);
  visibility: hidden;
  /* Visibility flips instantly when opening, and is held back until the panel
     has slid away when closing. Stepping it like this means the menu never
     depends on a transition finishing in order to be usable. */
  transition: transform .45s var(--ease), visibility 0s linear .45s;
  overflow-y: auto;
}
.site-nav.is-open {
  transform: translateX(0);
  visibility: visible;
  transition: transform .45s var(--ease), visibility 0s linear 0s;
}

.site-nav a {
  padding: .9rem 0;
  border-bottom: 1px solid var(--sand);
  color: var(--ink);
  font-family: var(--display);
  font-size: 1.35rem;
  text-decoration: none;
  transition: color .3s var(--ease);
}
.site-nav a:hover,
.site-nav a[aria-current="page"] { color: var(--gold); }

.site-nav .nav-cta {
  margin-top: 1.5rem;
  padding: .95rem 1.5rem;
  border: 1px solid var(--forest);
  border-radius: var(--radius);
  background: var(--forest);
  color: #fff;
  font-family: var(--body);
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  text-align: center;
}
.site-nav .nav-cta:hover { background: var(--forest-deep); color: #fff; }

.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(13, 40, 26, .35);
  opacity: 0;
  visibility: hidden;
  transition: opacity .4s var(--ease), visibility .4s;
}
.nav-backdrop.is-visible { opacity: 1; visibility: visible; }

body.nav-open { overflow: hidden; }

/* ---------------------------------------------------------------- Heros -- */

/* Full-bleed homepage hero */
.hero-full {
  position: relative;
  display: flex;
  align-items: flex-end;
  min-height: clamp(30rem, 82vh, 46rem);
  padding: var(--gutter);
  padding-bottom: clamp(3rem, 9vw, 6rem);
  overflow: hidden;
  isolation: isolate;
}

.hero-media { position: absolute; inset: 0; z-index: -2; }
.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroDrift 22s var(--ease) forwards;
}
@keyframes heroDrift {
  from { transform: scale(1.09); }
  to   { transform: scale(1); }
}

/* Two overlays: one weighted to the left so the copy always has a dark ground
   to sit on whatever the photograph behind it looks like, and one vertical to
   anchor the heading and settle the foot of the section. */
.hero-full::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(11, 34, 22, .78) 0%, rgba(11, 34, 22, .58) 38%, rgba(11, 34, 22, .10) 78%, rgba(11, 34, 22, 0) 100%),
    linear-gradient(180deg, rgba(11, 34, 22, .42) 0%, rgba(11, 34, 22, .14) 40%, rgba(11, 34, 22, .72) 100%);
}

.hero-content {
  position: relative;
  max-width: 1360px;
  width: 100%;
  margin: 0 auto;
  color: #fff;
}
.hero-content .eyebrow { color: var(--gold-soft); }
.hero-content h1 { color: #fff; max-width: 16ch; }
.hero-content .hero-intro { color: rgba(255, 255, 255, .9); }

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .85rem;
  margin-top: 2.25rem;
}

.hero-scroll {
  position: absolute;
  left: 50%;
  bottom: 1.5rem;
  width: 1px;
  height: 52px;
  overflow: hidden;
  background: rgba(255, 255, 255, .25);
}
.hero-scroll span {
  position: absolute;
  inset: 0;
  background: var(--gold-soft);
  animation: scrollHint 2.6s var(--ease) infinite;
}
@keyframes scrollHint {
  0%   { transform: translateY(-100%); }
  60%  { transform: translateY(100%); }
  100% { transform: translateY(100%); }
}

/* Split hero used on inner pages */
.hero-split {
  display: grid;
  gap: clamp(2rem, 5vw, 3.5rem);
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(2.5rem, 6vw, 5rem) var(--gutter) clamp(2rem, 5vw, 4rem);
}

.hero-split .hero-copy { align-self: center; }
.hero-split .button { margin-top: 1.75rem; }

.hero-figure {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.hero-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.crumbs {
  display: flex;
  gap: .55rem;
  margin-bottom: 1.5rem;
  font-size: .78rem;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--muted);
}
.crumbs a { color: var(--muted); text-decoration: none; }
.crumbs a:hover { color: var(--forest); }

/* --------------------------------------------------------------- Layout -- */

.page-flow {
  max-width: 1360px;
  margin: 0 auto;
  padding: 0 var(--gutter);
}
.page-flow.narrow { max-width: 860px; }

.page-flow > .block { margin-bottom: var(--section); }
.page-flow > .block:first-child { margin-top: var(--section); }

.page-grid {
  display: grid;
  gap: clamp(2.5rem, 5vw, 4rem);
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(1rem, 3vw, 2rem) var(--gutter) var(--section);
}

.page-body > .block + .block { margin-top: clamp(2.75rem, 6vw, 4.5rem); }
.page-body { min-width: 0; }

/* -------------------------------------------------------------- Sidebar -- */

.booking-card {
  padding: clamp(1.6rem, 3vw, 2.1rem);
  background: var(--paper);
  border: 1px solid var(--sand-deep);
  border-top: 2px solid var(--gold);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.booking-card h2 {
  font-size: 1.5rem;
  margin-bottom: .75rem;
}
.booking-card h2::after { display: none; }
.booking-card p { font-size: .95rem; color: var(--ink-soft); }
.booking-card .button { margin-top: 1.25rem; }

.booking-note {
  margin-top: 1.1rem !important;
  padding-top: 1.1rem;
  border-top: 1px solid var(--sand);
  font-size: .82rem !important;
  color: var(--muted) !important;
}

.sidebar-nav {
  margin-top: 1.75rem;
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: var(--forest-wash);
  border-radius: var(--radius);
}
.sidebar-nav h2 { font-size: 1.25rem; margin-bottom: .9rem; }
.sidebar-nav h2::after { display: none; }
.sidebar-nav ul { list-style: none; margin: 0; padding: 0; }
.sidebar-nav li + li { border-top: 1px solid rgba(20, 96, 58, .12); }
.sidebar-nav a {
  display: block;
  padding: .7rem 0;
  font-size: .95rem;
  text-decoration: none;
  color: var(--ink-soft);
  transition: color .25s var(--ease), padding-left .25s var(--ease);
}
.sidebar-nav a:hover { color: var(--forest); padding-left: .35rem; }

.contact-list { margin: 0; }
.contact-list dt {
  margin-top: 1.1rem;
  font-size: .7rem;
  font-weight: 500;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-list dt:first-child { margin-top: 0; }
.contact-list dd {
  margin: .3rem 0 0;
  font-size: .96rem;
  color: var(--ink-soft);
}

/* ---------------------------------------------------------- Price panel -- */

.price-panel {
  padding: clamp(1.75rem, 4vw, 2.75rem);
  background: var(--paper);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}
.price-panel h2 { margin-bottom: .5rem; }
.price-note {
  margin-bottom: 1.75rem;
  font-size: .94rem;
  color: var(--muted);
}

.prices { margin: 0; }

/* Each row reads: treatment — dotted leader — price, all on one baseline.
   The leader is the row's own ::after, ordered to sit between the two so it
   absorbs whatever space is left rather than wrapping onto its own line. */
.prices > div {
  display: flex;
  align-items: baseline;
  padding: .8rem 0;
}
.prices > div + div { border-top: 1px solid var(--sand); }

.prices dt {
  order: 1;
  flex: 0 1 auto;
  font-size: 1rem;
  color: var(--ink);
}

.prices > div::after {
  content: "";
  order: 2;
  flex: 1 1 1.5rem;
  min-width: 1.5rem;
  margin: 0 .7rem;
  border-bottom: 1px dotted var(--sand-deep);
  transform: translateY(-.3em);
}

.prices dd {
  order: 3;
  flex: none;
  margin: 0;
  font-family: var(--display);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--forest);
  font-variant-numeric: tabular-nums;
}

/* ------------------------------------------------------- Service cards -- */

.services-block > h2 { max-width: 20ch; }

.service-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(2rem, 4vw, 3rem);
}

.service-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: transform .45s var(--ease), box-shadow .45s var(--ease),
              border-color .45s var(--ease);
}
.service-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-soft);
  box-shadow: var(--shadow-md);
}

.service-card-media { overflow: hidden; background: var(--sand); }
.service-card-media img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform .8s var(--ease);
}
.service-card:hover .service-card-media img { transform: scale(1.055); }

.service-card-body {
  display: flex;
  flex-direction: column;
  flex: 1;
  padding: clamp(1.4rem, 3vw, 1.9rem);
}
.service-card .card-eyebrow { margin-bottom: .7rem; font-size: .68rem; }

/* Cards use h2 or h3 depending on the surrounding headings, so both are
   styled identically here. */
.service-card h2,
.service-card h3 {
  margin-bottom: .7rem;
  font-size: clamp(1.3rem, 2.4vw, 1.6rem);
  color: var(--forest-deep);
}
.service-card h2::after { display: none; }
.service-card p {
  flex: 1;
  margin-bottom: 1.4rem;
  font-size: .95rem;
  color: var(--ink-soft);
}

.card-link {
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--forest);
}
.card-link::after {
  content: "→";
  display: inline-block;
  margin-left: .5rem;
  transition: transform .35s var(--ease);
}
.service-card:hover .card-link::after { transform: translateX(5px); }

/* ------------------------------------------------------------ Locations -- */

.locations-band {
  padding: clamp(2.25rem, 5vw, 3.5rem);
  background: var(--forest);
  border-radius: var(--radius);
  color: #fff;
}
.locations-band h2 { color: #fff; }
.locations-band h2::after { background: var(--gold-soft); }
.locations-band .kicker { color: var(--gold-soft); }

.location-grid {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2rem);
  margin-top: clamp(1.75rem, 4vw, 2.5rem);
}

.location-card {
  padding: clamp(1.4rem, 3vw, 1.9rem);
  background: rgba(255, 255, 255, .07);
  border: 1px solid rgba(255, 255, 255, .16);
  border-radius: var(--radius);
}
.location-card h3 {
  margin-bottom: .5rem;
  color: #fff;
  font-size: 1.4rem;
}
.location-card p {
  margin: 0;
  font-size: .95rem;
  color: rgba(255, 255, 255, .82);
}

/* ------------------------------------------------------------- Text/FAQ -- */

.block-text h2 { margin-top: 0; }
.block-text p { color: var(--ink-soft); }

.faq h2 { margin-bottom: 1.5rem; }

.faq details {
  border-bottom: 1px solid var(--sand-deep);
  transition: background .3s var(--ease);
}
.faq details[open] { background: var(--forest-wash); }

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.15rem clamp(.5rem, 2vw, 1.1rem);
  font-family: var(--display);
  font-size: 1.2rem;
  color: var(--forest-deep);
  cursor: pointer;
  list-style: none;
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--body);
  font-size: 1.35rem;
  font-weight: 300;
  color: var(--gold);
  transition: transform .35s var(--ease);
}
.faq details[open] summary::after { transform: rotate(45deg); }

.faq .faq-answer {
  padding: 0 clamp(.5rem, 2vw, 1.1rem) 1.35rem;
}
.faq .faq-answer p { font-size: .98rem; color: var(--ink-soft); margin-bottom: 0; }

/* -------------------------------------------------------------- Callout -- */

.callout {
  padding: clamp(1.5rem, 3.5vw, 2.25rem);
  background: var(--gold-wash);
  border-left: 2px solid var(--gold);
  border-radius: 0 var(--radius) var(--radius) 0;
}
.callout h2 { font-size: 1.4rem; }
.callout h2::after { display: none; }
.callout p { font-size: .98rem; color: var(--ink-soft); }

/* -------------------------------------------------------------- Gallery -- */

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}
.gallery-grid figure { margin: 0; overflow: hidden; border-radius: var(--radius); }
.gallery-grid img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .7s var(--ease);
}
.gallery-grid figure:hover img { transform: scale(1.06); }

/* --------------------------------------------------------- Contact form -- */

.contact-form { max-width: 34rem; margin-top: 1.75rem; }

.contact-form label {
  display: block;
  margin-bottom: .45rem;
  font-size: .74rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  margin-bottom: 1.4rem;
  padding: .9rem 1rem;
  border: 1px solid var(--sand-deep);
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
  font-family: var(--body);
  font-size: 1rem;
  font-weight: 300;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--forest);
  box-shadow: 0 0 0 3px rgba(20, 96, 58, .1);
}
.contact-form textarea { resize: vertical; min-height: 9rem; }

/* Honeypot — hidden from people, visible to bots */
.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-success,
.form-errors {
  padding: 1rem 1.35rem;
  border-radius: var(--radius);
  font-size: .96rem;
}
.form-success {
  background: var(--forest-wash);
  border-left: 2px solid var(--forest);
  color: var(--forest-deep);
}
.form-errors {
  margin-bottom: 1.5rem;
  background: #FCEFEE;
  border-left: 2px solid #B3261E;
  color: #7A1B15;
}
.form-errors ul { margin: 0; padding-left: 1.1rem; }

.map-frame {
  margin-top: 1.75rem;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}
.map-frame iframe { display: block; width: 100%; min-height: 22rem; border: 0; }

/* ---------------------------------------------------------- Closing CTA -- */

.closing-cta {
  max-width: 1360px;
  margin: 0 auto var(--section);
  padding: clamp(3rem, 7vw, 5rem) var(--gutter);
  background: var(--sand);
  border-radius: var(--radius);
  text-align: center;
}
.closing-cta h2 { margin-bottom: .75rem; }
.closing-cta h2::after { margin-left: auto; margin-right: auto; }
.closing-cta p {
  max-width: 46ch;
  margin-left: auto;
  margin-right: auto;
  color: var(--ink-soft);
}
.closing-cta .button { margin-top: 1.75rem; }
.cta-note {
  margin-top: 1.5rem !important;
  font-size: .84rem;
  color: var(--muted);
}

/* --------------------------------------------------------------- Footer -- */

.site-footer {
  background: var(--forest-deep);
  color: rgba(255, 255, 255, .76);
  font-size: .95rem;
}

.footer-inner {
  display: grid;
  gap: clamp(2.25rem, 5vw, 3.5rem);
  max-width: 1360px;
  margin: 0 auto;
  padding: clamp(3rem, 7vw, 4.5rem) var(--gutter);
}

.footer-brand img {
  width: 190px;
  margin-bottom: 1.25rem;
  padding: .65rem;
  background: rgba(255, 255, 255, .95);
  border-radius: var(--radius);
}
.footer-brand p { font-size: .95rem; max-width: 34ch; }

.site-footer h2 {
  margin-bottom: 1.1rem;
  color: #fff;
  font-size: .76rem;
  font-family: var(--body);
  font-weight: 500;
  letter-spacing: .2em;
  text-transform: uppercase;
}

.footer-col ul { list-style: none; margin: 0; padding: 0; }
.footer-col li { margin-bottom: .55rem; }
.footer-col a,
.site-footer a {
  color: rgba(255, 255, 255, .82);
  text-decoration: none;
  transition: color .25s var(--ease);
}
.footer-col a:hover,
.site-footer a:hover { color: var(--gold-soft); }

.footer-hours { font-size: .9rem; }
.footer-note {
  margin-top: 1.1rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255, 255, 255, .14);
  font-size: .84rem;
  color: rgba(255, 255, 255, .6);
}

.footer-base {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: .75rem;
  max-width: 1360px;
  margin: 0 auto;
  padding: 1.5rem var(--gutter);
  border-top: 1px solid rgba(255, 255, 255, .12);
  font-size: .82rem;
  color: rgba(255, 255, 255, .55);
}
.footer-base p { margin: 0; }

/* ------------------------------------------------------ WhatsApp button -- */

.whatsapp-float {
  position: fixed;
  right: 1rem;
  bottom: 1rem;
  z-index: 90;
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  padding: .85rem 1.1rem;
  border-radius: 100px;
  background: #25D366;
  color: #fff;
  font-size: .8rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-decoration: none;
  box-shadow: 0 8px 26px rgba(37, 211, 102, .38);
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
}
.whatsapp-float:hover {
  transform: translateY(-2px);
  color: #fff;
  box-shadow: 0 12px 32px rgba(37, 211, 102, .48);
}
.whatsapp-float svg { flex: none; }
.whatsapp-float span { display: none; }

/* ==========================================================================
   Breakpoints
   ========================================================================== */

@media (min-width: 34rem) {
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .location-grid { grid-template-columns: repeat(2, 1fr); }
  .whatsapp-float span { display: inline; }
}

@media (min-width: 48rem) {
  .hero-split { grid-template-columns: 1fr 1fr; align-items: center; }
  .footer-inner { grid-template-columns: 1.4fr 1fr 1fr; }
  .whatsapp-float { right: 1.75rem; bottom: 1.75rem; }
}

@media (min-width: 62rem) {
  body { font-size: 1.09rem; }

  /* Desktop navigation — the drawer becomes an inline menu */
  .menu-toggle { display: none; }

  .site-nav {
    position: static;
    width: auto;
    padding: 0;
    background: none;
    box-shadow: none;
    flex-direction: row;
    align-items: center;
    gap: 2rem;
    transform: none;
    visibility: visible;
    overflow: visible;
  }
  .site-nav a {
    position: relative;
    padding: .35rem 0;
    border: 0;
    font-family: var(--body);
    font-size: .8rem;
    font-weight: 400;
    letter-spacing: .13em;
    text-transform: uppercase;
    color: var(--ink-soft);
  }
  .site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width .35s var(--ease);
  }
  .site-nav a:hover::after,
  .site-nav a[aria-current="page"]::after { width: 100%; }
  .site-nav a[aria-current="page"] { color: var(--forest); }

  .site-nav .nav-cta {
    margin-top: 0;
    padding: .75rem 1.4rem;
    color: #fff;
  }
  .site-nav .nav-cta::after { display: none; }

  .nav-backdrop { display: none; }

  /* Sidebar layout */
  .page-grid { grid-template-columns: 20rem minmax(0, 1fr); }
  .sidebar { align-self: start; position: sticky; top: 7.5rem; }

  .service-grid { grid-template-columns: repeat(3, 1fr); }

  /* On the services index, give the first card more presence */
  .page-services .service-grid > .service-card:first-child {
    grid-column: span 3;
    flex-direction: row;
    align-items: stretch;
  }
  .page-services .service-grid > .service-card:first-child .service-card-media { flex: 1 1 52%; }
  .page-services .service-grid > .service-card:first-child .service-card-media img {
    height: 100%;
    aspect-ratio: auto;
    min-height: 22rem;
  }
  .page-services .service-grid > .service-card:first-child .service-card-body {
    flex: 1 1 48%;
    justify-content: center;
    padding: clamp(2rem, 4vw, 3.25rem);
  }
  .page-services .service-grid > .service-card:first-child :is(h2, h3) {
    font-size: clamp(1.8rem, 3vw, 2.4rem);
  }
}

@media (min-width: 75rem) {
  .service-grid { gap: 2rem; }
}

/* --------------------------------------------------------------- Print -- */

@media print {
  .site-header, .site-footer, .whatsapp-float, .hero-actions,
  .closing-cta, .sidebar, .skip-link { display: none !important; }
  body { background: #fff; font-size: 11pt; }
  .hero-full { min-height: auto; }
  .page-grid { display: block; }
  a { text-decoration: none; color: inherit; }
}
