/* ==========================================================================
   [BUSINESS NAME] — design system
   --------------------------------------------------------------------------
   1. Fonts
   2. Tokens
   3. Reset & base
   4. Typography
   5. Layout primitives
   6. Buttons & links
   7. Header & navigation
   8. Hero
   9. Sections & components
   10. Footer
   11. Motion
   12. Utilities
   ========================================================================== */

/* 1. Fonts ================================================================= */

@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "Fraunces";
  src: url("../fonts/fraunces-latin-ext.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02AF, U+1E00-1EFF;
}
@font-face {
  font-family: "InterVar";
  src: url("../fonts/inter-latin.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+2000-206F, U+2074, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215,
    U+FEFF, U+FFFD;
}
@font-face {
  font-family: "InterVar";
  src: url("../fonts/inter-latin-ext.woff2") format("woff2-variations");
  font-weight: 300 700;
  font-style: normal;
  font-display: swap;
  unicode-range: U+0100-02AF, U+1E00-1EFF;
}

/* 2. Tokens ================================================================ */

:root {
  /* Colour — drawn from Kauai's north-shore palette.
     Contrast pairings are annotated; keep them if you re-theme. */
  --cream: #faf7f1; /* page background                            */
  --shell: #f2ede3; /* alternate section background               */
  --sand: #e6dbc9; /* warm accent surface                        */
  --sand-deep: #d8c9b1;

  --ink: #16221b; /* body text on cream — 15.6:1                 */
  --ink-soft: #3f4c44; /* secondary text on cream — 8.2:1             */
  --ink-faint: #56655c; /* meta text — 5.8:1 on cream, 4.5:1 on sand   */

  --forest: #14291f; /* darkest surface                            */
  --forest-mid: #1e3a2c; /* primary dark surface                       */
  --forest-line: #2c4d3b;
  --sage: #8fa392;
  --sage-pale: #c6d0c3;

  --teal: #1c5c5c; /* accent — used sparingly                    */
  --clay: #6d4c39; /* earth accent                               */
  --sun: #c2854a; /* warm accent — used very sparingly          */

  --on-dark: #f2efe7; /* text on --forest-mid — 12.9:1               */
  --on-dark-soft: #c3cec4; /* secondary text on --forest-mid — 7.9:1      */

  /* Type */
  --font-display: "Fraunces", "Iowan Old Style", "Palatino Linotype", Georgia,
    "Times New Roman", serif;
  --font-body: "InterVar", -apple-system, BlinkMacSystemFont, "Segoe UI",
    Roboto, "Helvetica Neue", Arial, sans-serif;

  --fs-display: clamp(2.9rem, 1.55rem + 5.2vw, 5.4rem);
  --fs-h1: clamp(2.35rem, 1.5rem + 3.4vw, 4.1rem);
  --fs-h2: clamp(1.95rem, 1.36rem + 2.3vw, 3.05rem);
  --fs-h3: clamp(1.3rem, 1.14rem + 0.62vw, 1.65rem);
  --fs-h4: clamp(1.08rem, 1.02rem + 0.25vw, 1.22rem);
  --fs-lead: clamp(1.14rem, 1.04rem + 0.42vw, 1.4rem);
  --fs-body: clamp(1.02rem, 0.99rem + 0.14vw, 1.11rem);
  --fs-sm: 0.945rem;
  --fs-xs: 0.82rem;

  /* Space */
  --gutter: clamp(1.35rem, 4.5vw, 3rem);
  --container: 76rem;
  --container-wide: 88rem;
  --measure: 60ch;
  --section-y: clamp(4.5rem, 9vw, 8.5rem);
  --section-y-lg: clamp(5.5rem, 11vw, 11rem);

  /* Form */
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 20px;
  --radius-organic: 46% 54% 52% 48% / 44% 42% 58% 56%;

  --shadow-sm: 0 1px 2px rgba(20, 41, 31, 0.05),
    0 6px 18px -10px rgba(20, 41, 31, 0.16);
  --shadow: 0 2px 4px rgba(20, 41, 31, 0.04),
    0 18px 48px -22px rgba(20, 41, 31, 0.28);

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

/* 3. Reset & base ========================================================== */

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

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: 6rem;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: var(--fs-body);
  font-weight: 400;
  line-height: 1.68;
  letter-spacing: -0.002em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

img,
svg,
picture,
video {
  display: block;
  max-width: 100%;
  height: auto;
}

img {
  background: linear-gradient(180deg, var(--shell), var(--sand));
}

button,
input,
select,
textarea {
  font: inherit;
  color: inherit;
}

/* Visible, on-brand focus for keyboard users. */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
  border-radius: var(--radius-sm);
}
.on-dark :focus-visible,
.footer :focus-visible {
  outline-color: var(--sage-pale);
}

::selection {
  background: var(--sand-deep);
  color: var(--forest);
}

.skip-link {
  position: absolute;
  left: 50%;
  top: 0;
  transform: translate(-50%, -120%);
  z-index: 200;
  background: var(--forest-mid);
  color: var(--on-dark);
  padding: 0.75rem 1.35rem;
  border-radius: 0 0 var(--radius) var(--radius);
  font-size: var(--fs-sm);
  text-decoration: none;
  transition: transform 0.2s var(--ease);
}
.skip-link:focus {
  transform: translate(-50%, 0);
}

/* 4. Typography ============================================================ */

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--forest);
  margin: 0 0 0.5em;
  text-wrap: balance;
}

h1 {
  font-size: var(--fs-h1);
  font-variation-settings: "opsz" 100;
}
h2 {
  font-size: var(--fs-h2);
  font-variation-settings: "opsz" 72;
}
h3 {
  font-size: var(--fs-h3);
  line-height: 1.24;
  font-variation-settings: "opsz" 30;
}
h4 {
  font-size: var(--fs-h4);
  line-height: 1.3;
  font-variation-settings: "opsz" 20;
}

p {
  margin: 0 0 1.15em;
  max-width: var(--measure);
  text-wrap: pretty;
}
p:last-child {
  margin-bottom: 0;
}

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.22em;
  text-decoration-color: color-mix(in srgb, currentColor 40%, transparent);
  transition: color 0.25s var(--ease), text-decoration-color 0.25s var(--ease);
}
a:hover {
  text-decoration-color: currentColor;
}

strong {
  font-weight: 600;
}

.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.17em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin: 0 0 1.15rem;
}
.eyebrow--light {
  color: var(--sage);
}
.eyebrow::before {
  content: "";
  display: inline-block;
  width: 1.6rem;
  height: 1px;
  background: currentColor;
  vertical-align: 0.28em;
  margin-right: 0.7rem;
  opacity: 0.7;
}

.lead {
  font-size: var(--fs-lead);
  line-height: 1.58;
  color: var(--ink-soft);
  letter-spacing: -0.008em;
}

.display {
  font-size: var(--fs-display);
  font-variation-settings: "opsz" 144;
  letter-spacing: -0.028em;
  line-height: 1.02;
}

.serif-accent {
  font-style: italic;
  font-variation-settings: "opsz" 144;
}

.meta {
  font-size: var(--fs-sm);
  color: var(--ink-faint);
}

/* 5. Layout primitives ===================================================== */

.container {
  width: min(100% - (var(--gutter) * 2), var(--container));
  margin-inline: auto;
}
.container--wide {
  width: min(100% - (var(--gutter) * 2), var(--container-wide));
}
.container--narrow {
  width: min(100% - (var(--gutter) * 2), 52rem);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}
.section--lg {
  padding-block: var(--section-y-lg);
}
.section--tight {
  padding-block: clamp(3rem, 6vw, 5rem);
}

.section--shell {
  background: var(--shell);
}
.section--sand {
  background: linear-gradient(180deg, var(--shell) 0%, var(--sand) 100%);
}
.section--dark {
  background: var(--forest-mid);
  color: var(--on-dark-soft);
}
.section--dark h1,
.section--dark h2,
.section--dark h3,
.section--dark h4 {
  color: var(--on-dark);
}
.section--dark .lead {
  color: var(--on-dark-soft);
}
.section--dark a:not(.btn) {
  color: var(--sage-pale);
}

/* Faint topographic contour texture — a nod to the island's ridgelines.
   Purely decorative and very low contrast. */
.section--topo::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("../img/topo.svg") center / cover no-repeat;
  opacity: 0.5;
  pointer-events: none;
}
.section--topo > * {
  position: relative;
}

.section-head {
  max-width: 46rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.section-head--center {
  margin-inline: auto;
  text-align: center;
}
.section-head--center .eyebrow::before {
  display: none;
}
.section-head--center p {
  margin-inline: auto;
}

.grid {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.grid--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 21rem), 1fr));
}
.grid--3 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 18rem), 1fr));
}

.split {
  display: grid;
  gap: clamp(2.25rem, 5vw, 4.5rem);
  align-items: center;
}
@media (min-width: 62rem) {
  .split {
    grid-template-columns: 1fr 1fr;
  }
  .split--media-first > :first-child {
    order: -1;
  }
  .split--wide-text {
    grid-template-columns: 1.15fr 0.85fr;
  }
}

.stack > * + * {
  margin-top: 1.15rem;
}
.stack-lg > * + * {
  margin-top: 2rem;
}

.hairline {
  border: 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  margin: 0;
}

/* Figures ------------------------------------------------------------------ */

.figure {
  position: relative;
  margin: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sand);
}
.figure picture {
  display: block;
  width: 100%;
  height: 100%;
}
.figure img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.figure--portrait {
  aspect-ratio: 4 / 5;
}
.figure--landscape {
  aspect-ratio: 3 / 2;
}
.figure--square {
  aspect-ratio: 1 / 1;
}
.figure--arch {
  border-radius: 50vw 50vw var(--radius-lg) var(--radius-lg);
}

/* Soft organic blob used as a background flourish. Decorative only. */
.blob {
  position: absolute;
  border-radius: var(--radius-organic);
  filter: blur(2px);
  pointer-events: none;
  z-index: 0;
}

/* 6. Buttons & links ======================================================= */

.btn {
  --btn-bg: var(--forest-mid);
  --btn-fg: var(--on-dark);
  --btn-border: var(--forest-mid);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  padding: 0.95rem 1.75rem;
  min-height: 3rem;
  background: var(--btn-bg);
  color: var(--btn-fg);
  border: 1px solid var(--btn-border);
  border-radius: 999px;
  font-size: var(--fs-sm);
  font-weight: 500;
  letter-spacing: 0.01em;
  text-decoration: none;
  cursor: pointer;
  transition: background 0.3s var(--ease), color 0.3s var(--ease),
    border-color 0.3s var(--ease), transform 0.3s var(--ease),
    box-shadow 0.3s var(--ease);
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow-sm);
}
.btn:active {
  transform: translateY(0);
}

.btn--primary:hover {
  --btn-bg: var(--forest);
  --btn-border: var(--forest);
}

.btn--outline {
  --btn-bg: transparent;
  --btn-fg: var(--forest);
  --btn-border: color-mix(in srgb, var(--forest) 28%, transparent);
}
.btn--outline:hover {
  --btn-bg: var(--forest-mid);
  --btn-fg: var(--on-dark);
  --btn-border: var(--forest-mid);
}

.btn--light {
  --btn-bg: var(--cream);
  --btn-fg: var(--forest);
  --btn-border: var(--cream);
}
.btn--light:hover {
  --btn-bg: var(--sand);
  --btn-border: var(--sand);
}

.btn--ghost-light {
  --btn-bg: transparent;
  --btn-fg: var(--on-dark);
  --btn-border: color-mix(in srgb, #ffffff 40%, transparent);
}
.btn--ghost-light:hover {
  --btn-bg: rgba(255, 255, 255, 0.12);
  --btn-border: rgba(255, 255, 255, 0.7);
}

.btn--sm {
  padding: 0.68rem 1.25rem;
  min-height: 2.6rem;
  font-size: var(--fs-xs);
}

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  align-items: center;
}

/* Understated inline "more" link with a sliding rule. */
.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--forest);
  text-decoration: none;
}
.link-arrow::after {
  content: "";
  width: 1.4rem;
  height: 1px;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.link-arrow:hover::after {
  width: 2.2rem;
}
.section--dark .link-arrow {
  color: var(--on-dark);
}

/* 7. Header & navigation =================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: color-mix(in srgb, var(--cream) 88%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 8%, transparent);
  transition: background 0.35s var(--ease), border-color 0.35s var(--ease),
    color 0.35s var(--ease);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 4.6rem;
  padding-block: 0.7rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
  color: var(--forest);
  flex-shrink: 0;
}
.brand__mark {
  width: 2.1rem;
  height: 2.1rem;
  flex: none;
}
.brand__name {
  font-family: var(--font-display);
  font-size: 1.16rem;
  font-variation-settings: "opsz" 24;
  letter-spacing: -0.015em;
  line-height: 1.05;
}
.brand__tag {
  display: block;
  font-family: var(--font-body);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 0.22rem;
}

.nav {
  display: none;
}
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1.1rem, 2.2vw, 2rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  position: relative;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  text-decoration: none;
  padding-block: 0.4rem;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 1px;
  width: 0;
  background: currentColor;
  transition: width 0.3s var(--ease);
}
.nav__link:hover,
.nav__link[aria-current="page"] {
  color: var(--forest);
}
.nav__link:hover::after,
.nav__link[aria-current="page"]::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}
.header__phone {
  display: none;
  font-size: var(--fs-sm);
  color: var(--ink-soft);
  text-decoration: none;
  white-space: nowrap;
}
.header__phone:hover {
  color: var(--forest);
}
.header__cta {
  display: none;
}

/* Menu toggle */
.menu-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  background: none;
  border: 1px solid color-mix(in srgb, var(--ink) 18%, transparent);
  border-radius: 999px;
  padding: 0.55rem 0.95rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--forest);
  cursor: pointer;
}
.menu-toggle__bars {
  position: relative;
  width: 1rem;
  height: 0.6rem;
  flex: none;
}
.menu-toggle__bars span {
  position: absolute;
  left: 0;
  width: 100%;
  height: 1.5px;
  background: currentColor;
  border-radius: 2px;
  transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.menu-toggle__bars span:nth-child(1) {
  top: 0;
}
.menu-toggle__bars span:nth-child(2) {
  top: 50%;
  transform: translateY(-50%);
}
.menu-toggle__bars span:nth-child(3) {
  bottom: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(1) {
  transform: translateY(0.29rem) rotate(45deg);
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(2) {
  opacity: 0;
}
.menu-toggle[aria-expanded="true"] .menu-toggle__bars span:nth-child(3) {
  transform: translateY(-0.29rem) rotate(-45deg);
}

/* Mobile drawer */
.drawer {
  position: fixed;
  inset: 0;
  z-index: 150;
  display: grid;
  grid-template-rows: auto 1fr auto;
  background: var(--forest-mid);
  color: var(--on-dark);
  padding: 1.35rem var(--gutter) calc(2rem + env(safe-area-inset-bottom));
  transform: translateY(-100%);
  visibility: hidden;
  transition: transform 0.45s var(--ease), visibility 0.45s;
  overflow-y: auto;
  overscroll-behavior: contain;
}
.drawer[data-open="true"] {
  transform: translateY(0);
  visibility: visible;
}
.drawer__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 3.2rem;
}
.drawer__top .brand,
.drawer__top .brand__name {
  color: var(--on-dark);
}
.drawer__top .brand__tag {
  color: var(--sage);
}
.drawer__close {
  background: none;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  color: var(--on-dark);
  width: 2.6rem;
  height: 2.6rem;
  font-size: 1.1rem;
  line-height: 1;
  cursor: pointer;
}
.drawer__list {
  list-style: none;
  margin: 2.5rem 0 0;
  padding: 0;
}
.drawer__list li + li {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.drawer__link {
  display: block;
  padding: 1.05rem 0;
  font-family: var(--font-display);
  font-size: 1.75rem;
  font-variation-settings: "opsz" 60;
  letter-spacing: -0.02em;
  color: var(--on-dark);
  text-decoration: none;
}
.drawer__link[aria-current="page"] {
  color: var(--sage);
}
.drawer__foot {
  display: grid;
  gap: 0.85rem;
  margin-top: 2.5rem;
}
.drawer__foot .btn {
  width: 100%;
}
.drawer__meta {
  font-size: var(--fs-sm);
  color: var(--on-dark-soft);
  text-align: center;
}
.drawer__meta a {
  color: var(--on-dark-soft);
}

body[data-nav-open="true"] {
  overflow: hidden;
}

@media (min-width: 56rem) {
  .nav {
    display: block;
  }
  .header__cta {
    display: inline-flex;
  }
  .menu-toggle {
    display: none;
  }
  .drawer {
    display: none;
  }
}
@media (min-width: 72rem) {
  .header__phone {
    display: inline;
  }
}

/* Overlay header (homepage: sits on top of the hero image) */
.header--overlay {
  position: fixed;
  left: 0;
  right: 0;
  background: transparent;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border-bottom-color: transparent;
}
.header--overlay .brand,
.header--overlay .brand__name,
.header--overlay .nav__link,
.header--overlay .header__phone,
.header--overlay .menu-toggle {
  color: #fff;
}
.header--overlay .brand__tag,
.header--overlay .nav__link {
  color: rgba(255, 255, 255, 0.82);
}
.header--overlay .brand__mark {
  color: #fff;
}
.header--overlay .menu-toggle {
  border-color: rgba(255, 255, 255, 0.42);
}
.header--overlay .header__cta.btn {
  --btn-bg: rgba(255, 255, 255, 0.14);
  --btn-fg: #fff;
  --btn-border: rgba(255, 255, 255, 0.5);
}
.header--overlay .header__cta.btn:hover {
  --btn-bg: #fff;
  --btn-fg: var(--forest);
  --btn-border: #fff;
}
/* …and turns solid once the user scrolls past the hero. */
.header--overlay.is-stuck {
  background: color-mix(in srgb, var(--cream) 90%, transparent);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom-color: color-mix(in srgb, var(--ink) 8%, transparent);
}
.header--overlay.is-stuck .brand,
.header--overlay.is-stuck .brand__name,
.header--overlay.is-stuck .menu-toggle,
.header--overlay.is-stuck .brand__mark {
  color: var(--forest);
}
.header--overlay.is-stuck .nav__link,
.header--overlay.is-stuck .header__phone,
.header--overlay.is-stuck .brand__tag {
  color: var(--ink-soft);
}
.header--overlay.is-stuck .nav__link:hover,
.header--overlay.is-stuck .nav__link[aria-current="page"] {
  color: var(--forest);
}
.header--overlay.is-stuck .menu-toggle {
  border-color: color-mix(in srgb, var(--ink) 18%, transparent);
}
.header--overlay.is-stuck .header__cta.btn {
  --btn-bg: var(--forest-mid);
  --btn-fg: var(--on-dark);
  --btn-border: var(--forest-mid);
}

/* 8. Hero ================================================================== */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  min-height: min(92svh, 54rem);
  padding-top: 8rem;
  padding-bottom: clamp(3rem, 7vw, 6rem);
  isolation: isolate;
  color: #fff;
  overflow: hidden;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: -2;
}
.hero__media picture {
  display: block;
  width: 100%;
  height: 100%;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.06);
  animation: hero-drift 22s var(--ease) forwards;
}
.hero__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      100deg,
      rgba(9, 20, 15, 0.68) 0%,
      rgba(9, 20, 15, 0.42) 34%,
      rgba(9, 20, 15, 0.05) 62%,
      rgba(9, 20, 15, 0) 100%
    ),
    linear-gradient(
      180deg,
      rgba(11, 24, 18, 0.5) 0%,
      rgba(11, 24, 18, 0.1) 30%,
      rgba(11, 24, 18, 0.45) 74%,
      rgba(11, 24, 18, 0.72) 100%
    );
}
.hero__content {
  max-width: 44rem;
}
.hero h1 {
  color: #fff;
  margin-bottom: 0.55em;
  text-shadow: 0 1px 30px rgba(9, 20, 15, 0.35);
}
.hero .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}
.hero__lead {
  font-size: var(--fs-lead);
  line-height: 1.55;
  color: rgba(255, 255, 255, 0.92);
  max-width: 34rem;
  margin-bottom: 2rem;
  text-shadow: 0 1px 22px rgba(9, 20, 15, 0.4);
}
.hero__note {
  margin-top: 2rem;
  font-size: var(--fs-sm);
  color: rgba(255, 255, 255, 0.78);
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.5rem;
}
.hero__note span {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.hero__note span::before {
  content: "";
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--sage);
  flex: none;
}

@media (max-width: 47.99rem) {
  .hero__media::after {
    background: linear-gradient(
      180deg,
      rgba(11, 24, 18, 0.62) 0%,
      rgba(11, 24, 18, 0.4) 26%,
      rgba(11, 24, 18, 0.55) 62%,
      rgba(11, 24, 18, 0.78) 100%
    );
  }
  .hero {
    padding-top: 6.5rem;
    min-height: min(88svh, 46rem);
  }
  .hero .eyebrow {
    font-size: 0.7rem;
    letter-spacing: 0.13em;
  }
  .hero .eyebrow::before {
    display: none;
  }
  .hero .btn {
    flex: 1 1 100%;
  }
}

@keyframes hero-drift {
  from {
    transform: scale(1.06);
  }
  to {
    transform: scale(1);
  }
}

/* Compact page hero for interior pages */
.page-hero {
  position: relative;
  padding-top: clamp(3.5rem, 8vw, 6rem);
  padding-bottom: clamp(2.25rem, 4.5vw, 3.25rem);
  background: linear-gradient(180deg, var(--shell), var(--cream));
  overflow: hidden;
}
.page-hero__inner {
  max-width: 46rem;
  position: relative;
}
.page-hero .lead {
  margin-top: 1.25rem;
}

.breadcrumb {
  font-size: var(--fs-xs);
  color: var(--ink-faint);
  margin-bottom: 1.4rem;
}
.breadcrumb ol {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.breadcrumb li + li::before {
  content: "/";
  margin-right: 0.5rem;
  opacity: 0.5;
}
.breadcrumb a {
  color: inherit;
  text-decoration: none;
}
.breadcrumb a:hover {
  color: var(--forest);
  text-decoration: underline;
}

/* 9. Sections & components ================================================= */

/* Service card ------------------------------------------------------------ */

.card {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.15rem);
  transition: border-color 0.35s var(--ease), transform 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}
.card:hover {
  border-color: color-mix(in srgb, var(--forest) 30%, transparent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
}
.card__icon {
  width: 2.2rem;
  height: 2.2rem;
  color: var(--teal);
  margin-bottom: 1.25rem;
}
.card h3 {
  margin-bottom: 0.5rem;
}
.card p {
  color: var(--ink-soft);
  font-size: var(--fs-sm);
  margin-bottom: 1.35rem;
}
.card__foot {
  margin-top: auto;
  padding-top: 1.15rem;
  border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}
.card__price {
  font-size: var(--fs-sm);
  color: var(--ink-faint);
}
.card__price b {
  display: block;
  color: var(--forest);
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.15rem;
  font-variation-settings: "opsz" 20;
}
.card--feature {
  background: var(--forest-mid);
  border-color: var(--forest-mid);
  color: var(--on-dark-soft);
}
.card--feature h3 {
  color: var(--on-dark);
}
.card--feature p {
  color: var(--on-dark-soft);
}
.card--feature .card__icon {
  color: var(--sage);
}
.card--feature .card__foot {
  border-top-color: rgba(255, 255, 255, 0.18);
}
.card--feature .card__price {
  color: var(--sage-pale);
}
.card--feature .card__price b {
  color: var(--on-dark);
}
.card--feature .link-arrow {
  color: var(--on-dark);
}

/* Numbered differentiator list -------------------------------------------- */

.reasons {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
}
.reasons li {
  display: grid;
  grid-template-columns: 3.4rem 1fr;
  gap: 0 1.25rem;
  padding: clamp(1.5rem, 3vw, 2rem) 0;
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.reasons li:last-child {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.reasons__num {
  font-family: var(--font-display);
  font-size: 0.92rem;
  font-variation-settings: "opsz" 14;
  color: var(--ink-faint);
  letter-spacing: 0.06em;
  padding-top: 0.4rem;
}
.reasons h3 {
  margin-bottom: 0.35rem;
  font-size: var(--fs-h4);
}
.reasons p {
  color: var(--ink-soft);
  font-size: var(--fs-sm);
  margin: 0;
}
.section--dark .reasons li {
  border-color: rgba(255, 255, 255, 0.16);
}
.section--dark .reasons__num {
  color: var(--sage);
}
.section--dark .reasons p {
  color: var(--on-dark-soft);
}

/* Stat / trust strip ------------------------------------------------------- */

.strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 12rem), 1fr));
  gap: clamp(1.5rem, 3vw, 2.5rem);
  text-align: center;
}
.strip__item b {
  display: block;
  font-family: var(--font-display);
  font-weight: 400;
  font-size: clamp(1.6rem, 1.2rem + 1.4vw, 2.35rem);
  font-variation-settings: "opsz" 60;
  color: var(--forest);
  line-height: 1.1;
  margin-bottom: 0.35rem;
}
.strip__item span {
  font-size: var(--fs-xs);
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--ink-faint);
}

/* Testimonials ------------------------------------------------------------- */

.quote {
  display: flex;
  flex-direction: column;
  background: var(--cream);
  border-radius: var(--radius-lg);
  padding: clamp(1.75rem, 3.2vw, 2.5rem);
  border: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
}
.quote blockquote {
  margin: 0 0 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(1.1rem, 1rem + 0.5vw, 1.35rem);
  font-variation-settings: "opsz" 40;
  line-height: 1.45;
  letter-spacing: -0.012em;
  color: var(--forest);
}
.quote blockquote p {
  max-width: none;
}
.quote figcaption {
  margin-top: auto;
  font-size: var(--fs-xs);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.quote--empty blockquote {
  color: var(--ink-faint);
  font-style: italic;
}

/* Accordion FAQ ------------------------------------------------------------ */

.faq {
  border-top: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  max-width: 52rem;
}
.faq__item {
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
}
.faq__q {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1.5rem;
  width: 100%;
  padding: 1.35rem 0;
  background: none;
  border: 0;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: var(--fs-h4);
  font-variation-settings: "opsz" 20;
  line-height: 1.3;
  color: var(--forest);
}
.faq__q:hover {
  color: var(--teal);
}
.faq__icon {
  position: relative;
  flex: none;
  width: 1rem;
  height: 1rem;
  margin-top: 0.35rem;
}
.faq__icon::before,
.faq__icon::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  background: currentColor;
  transition: transform 0.35s var(--ease), opacity 0.25s var(--ease);
}
.faq__icon::before {
  width: 1rem;
  height: 1.5px;
  transform: translate(-50%, -50%);
}
.faq__icon::after {
  width: 1.5px;
  height: 1rem;
  transform: translate(-50%, -50%);
}
.faq__q[aria-expanded="true"] .faq__icon::after {
  transform: translate(-50%, -50%) rotate(90deg);
  opacity: 0;
}
.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.4s var(--ease);
}
.faq__a > div {
  overflow: hidden;
}
.faq__item[data-open="true"] .faq__a {
  grid-template-rows: 1fr;
}
.faq__a p {
  color: var(--ink-soft);
  font-size: var(--fs-sm);
  padding-bottom: 1.5rem;
  max-width: 46rem;
}
.faq__a p:first-child {
  padding-top: 0.15rem;
}

/* Service-area chips ------------------------------------------------------- */

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  list-style: none;
  margin: 0;
  padding: 0;
}
.chips li {
  border: 1px solid color-mix(in srgb, var(--ink) 16%, transparent);
  border-radius: 999px;
  padding: 0.42rem 0.95rem;
  font-size: var(--fs-xs);
  letter-spacing: 0.03em;
  color: var(--ink-soft);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.chips a {
  display: block;
  margin: -0.42rem -0.95rem;
  padding: 0.42rem 0.95rem;
  border-radius: 999px;
  color: inherit;
  text-decoration: none;
}
.chips li:hover:has(a) {
  border-color: color-mix(in srgb, var(--forest) 45%, transparent);
  background: color-mix(in srgb, var(--forest) 5%, transparent);
}
.section--dark .chips li {
  border-color: rgba(255, 255, 255, 0.22);
  color: var(--on-dark-soft);
}

/* Form ---------------------------------------------------------------------- */

.form {
  display: grid;
  gap: 1.15rem;
  max-width: 34rem;
}
.field {
  display: grid;
  gap: 0.4rem;
}
.field > label {
  font-size: var(--fs-sm);
  font-weight: 500;
  color: var(--forest);
}
.field > label .meta {
  font-weight: 400;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 0.8rem 1rem;
  background: var(--cream);
  border: 1px solid color-mix(in srgb, var(--ink) 20%, transparent);
  border-radius: var(--radius);
  font-size: var(--fs-sm);
  transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}
.field textarea {
  resize: vertical;
  min-height: 8rem;
  line-height: 1.6;
}
.field select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, currentColor 50%),
    linear-gradient(135deg, currentColor 50%, transparent 50%);
  background-position: right 1.15rem center, right 0.85rem center;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
  padding-right: 2.5rem;
}
.field input:hover,
.field select:hover,
.field textarea:hover {
  border-color: color-mix(in srgb, var(--ink) 34%, transparent);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px color-mix(in srgb, var(--teal) 16%, transparent);
  outline: none;
}
.form button {
  justify-self: start;
}
.form .meta {
  margin: 0;
}

/* Definition rows (contact details, hours) -------------------------------- */

.deflist {
  margin: 0;
  display: grid;
  gap: 0;
}
.deflist > div {
  display: grid;
  grid-template-columns: minmax(7rem, 9rem) 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid color-mix(in srgb, var(--ink) 12%, transparent);
  align-items: baseline;
}
.deflist dt {
  font-size: var(--fs-xs);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-faint);
}
.deflist dd {
  margin: 0;
  font-size: var(--fs-sm);
}
.deflist dd a {
  color: var(--forest);
}

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

.cta-final {
  position: relative;
  text-align: center;
  overflow: hidden;
}
.cta-final .container {
  position: relative;
}
.cta-final h2 {
  max-width: 18ch;
  margin-inline: auto;
}
.cta-final p {
  margin-inline: auto;
  max-width: 40ch;
}
.cta-final .btn-row {
  justify-content: center;
  margin-top: 2.25rem;
}

/* Sticky mobile booking bar ------------------------------------------------ */

.sticky-cta {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 90;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.6rem;
  padding: 0.7rem var(--gutter) calc(0.7rem + env(safe-area-inset-bottom));
  background: color-mix(in srgb, var(--cream) 94%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-top: 1px solid color-mix(in srgb, var(--ink) 10%, transparent);
  transform: translateY(110%);
  transition: transform 0.4s var(--ease);
}
.sticky-cta.is-visible {
  transform: translateY(0);
}
.sticky-cta .btn {
  width: 100%;
  padding-inline: 0.75rem;
}
body {
  padding-bottom: 0;
}
@media (max-width: 55.99rem) {
  body.has-sticky-cta {
    padding-bottom: 4.6rem;
  }
}
@media (min-width: 56rem) {
  .sticky-cta {
    display: none;
  }
}

/* 10. Footer =============================================================== */

.footer {
  background: var(--forest);
  color: var(--on-dark-soft);
  padding-block: clamp(3.5rem, 7vw, 5.5rem) 2rem;
  font-size: var(--fs-sm);
}
.footer a {
  color: var(--on-dark-soft);
  text-decoration: none;
}
.footer a:hover {
  color: #fff;
  text-decoration: underline;
  text-underline-offset: 0.22em;
}
.footer__grid {
  display: grid;
  gap: clamp(2.25rem, 4vw, 3.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 13rem), 1fr));
}
.footer__brand {
  grid-column: 1 / -1;
}
@media (min-width: 56rem) {
  .footer__brand {
    grid-column: span 2;
    padding-right: 3rem;
  }
}
.footer__brand .brand__name,
.footer__brand .brand {
  color: #fff;
}
.footer__brand p {
  margin-top: 1.15rem;
  color: var(--on-dark-soft);
  max-width: 32ch;
}
.footer h2 {
  font-family: var(--font-body);
  font-size: var(--fs-xs);
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage);
  margin-bottom: 1.15rem;
}
.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.65rem;
}
.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 5vw, 4rem);
  padding-top: 1.75rem;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: var(--fs-xs);
  color: var(--sage);
}
.footer__bottom ul {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
}
.social {
  display: flex;
  gap: 0.6rem;
  margin-top: 1.5rem;
}
.social a {
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}
.social a:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.5);
}
.social svg {
  width: 1.05rem;
  height: 1.05rem;
}

/* 11. Motion =============================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
  transition-delay: var(--reveal-delay, 0s);
}
[data-reveal].is-in {
  opacity: 1;
  transform: none;
}

@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;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
  .hero__media img {
    transform: none;
  }
}

/* 12. Utilities ============================================================ */

.visually-hidden {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  clip-path: inset(50%);
  white-space: nowrap;
  border: 0;
}

.text-center {
  text-align: center;
}
.text-center,
.text-center > p {
  margin-inline: auto;
}
.mt-0 {
  margin-top: 0;
}
.mt-lg {
  margin-top: clamp(2rem, 4vw, 3rem);
}
.mb-lg {
  margin-bottom: clamp(2rem, 4vw, 3rem);
}
.measure-wide {
  max-width: 68ch;
}

@media print {
  .header,
  .drawer,
  .sticky-cta,
  .hero__media,
  .social {
    display: none !important;
  }
  body {
    color: #000;
    background: #fff;
  }
}
