/* ==========================================================================
   The Sound Engine — site-v2 stylesheet
   Design tokens lifted from the original Wix theme; components follow
   "V2 Build Notes.md" (direction 1a). The replica in site/ has its own copy
   of the older stylesheet and is not affected by anything here.
   ========================================================================== */

@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/quicksand-latin.woff2') format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA,
    U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193,
    U+2212, U+2215, U+FEFF, U+FFFD;
}
@font-face {
  font-family: 'Quicksand';
  font-style: normal;
  font-weight: 300 700;
  font-display: swap;
  src: url('../fonts/quicksand-latin-ext.woff2') format('woff2');
  unicode-range: U+0100-02BA, U+02BD-02C5, U+02C7-02CC, U+02CE-02D7, U+02DD-02FF,
    U+0304, U+0308, U+0329, U+1D00-1DBF, U+1E00-1E9F, U+1EF2-1EFF, U+2020,
    U+20A0-20AB, U+20AD-20C0, U+2113, U+2C60-2C7F, U+A720-A7FF;
}

:root {
  /* Brand palette (from Wix --color_* tokens) */
  --teal:        #114b5f;
  --teal-deep:   #0d3a49;
  --cyan:        #61dee6;
  --cyan-soft:   #d5f5f8;
  --amber:       #ffb800;
  --amber-soft:  #fff3cc;
  --amber-ink:   #7a5200;
  --sage:        #465a58;
  --sage-light:  #bfc6c5;
  --forest:      #092421;
  --off-white:   #fcfcfc;
  --white:       #ffffff;
  --ink:         #1c2b2a;
  --ink-muted:   #566462;

  /* Wix laid the site out on a 980px content grid with a 795px prose measure. */
  --shell: 980px;
  --measure: 795px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --section-y: clamp(3.5rem, 8vw, 8rem);
  --radius: 4px;
  --radius-lg: 8px;
  --header-h: 104px;
  --header-h-compact: 64px;
  --header-h-mobile: 72px;
  --tap: 44px;

  --hairline: rgba(17, 75, 95, .12);
  --shadow-sm: 0 1px 3px rgba(9, 36, 33, .08);
  --shadow-md: 0 6px 24px rgba(9, 36, 33, .10);
  --shadow-lg: 0 18px 48px rgba(9, 36, 33, .16);

  --ease: cubic-bezier(.4, 0, .2, 1);
}

/* --------------------------------------------------------------- reset --- */

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

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

body {
  margin: 0;
  font-family: 'Quicksand', 'Trebuchet MS', system-ui, sans-serif;
  font-size: clamp(1rem, .95rem + .4vw, 1.1875rem);
  line-height: 1.45;
  font-weight: 400;
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; }
button { font: inherit; }
picture { display: contents; }

/* ---------------------------------------------------------------- type --- */

h1, h2, h3, h4, h5, h6 {
  margin: 0 0 .5em;
  font-weight: 500;
  line-height: 1.12;
  letter-spacing: .01em;
  color: var(--teal);
}
h1, .t-display { font-size: clamp(2.25rem, 1.6rem + 2.6vw, 3.75rem); line-height: 1.06; }
h2, .t-h2      { font-size: clamp(1.75rem, 1.3rem + 1.5vw, 2.375rem); line-height: 1.15; }
h3, .t-h3      { font-size: clamp(1.5rem, 1.2rem + 1.1vw, 2rem); line-height: 1.2; }
h4, .t-h4      { font-size: clamp(1.35rem, 1.15rem + .7vw, 1.75rem); line-height: 1.22; }
h5, .t-h5      { font-size: clamp(1.15rem, 1.05rem + .35vw, 1.25rem); line-height: 1.3; }
h6, .t-h6      { font-size: clamp(1.05rem, 1rem + .2vw, 1.1875rem); line-height: 1.35; }

.t-lead  { font-size: clamp(1.0625rem, 1rem + .4vw, 1.3125rem); line-height: 1.5; color: var(--ink); }
.t-small { font-size: .875rem; line-height: 1.45; }

.align-center { text-align: center; }
.align-right  { text-align: right; }

p { margin: 0 0 1.15em; }
p:last-child { margin-bottom: 0; }
strong { font-weight: 600; }

.eyebrow {
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  opacity: .75;
  margin-bottom: .5rem;
}

/* ------------------------------------------------------------- layout --- */

.shell {
  width: min(100% - (var(--gutter) * 2), var(--shell));
  margin-inline: auto;
}
.shell--narrow { width: min(100% - (var(--gutter) * 2), 820px); }

.section {
  position: relative;
  padding-block: var(--section-y);
  background: var(--white);
}
.section > .shell { position: relative; z-index: 1; }

.section--white    { background: var(--white); }
.section--offwhite { background: var(--off-white); }
.section--teal     { background: var(--teal); }
.section--cyan     { background: var(--cyan); }
.section--sage     { background: var(--sage-light); }
.section--forest   { background: var(--forest); }

.section--teal, .section--forest, .section--hero { color: var(--white); }
.section--teal :is(h1,h2,h3,h4,h5,h6),
.section--forest :is(h1,h2,h3,h4,h5,h6),
.section--hero :is(h1,h2,h3,h4,h5,h6) { color: var(--white); }
.section--teal .t-lead, .section--forest .t-lead { color: var(--white); }

.section--cyan :is(h1,h2,h3,h4,h5,h6) { color: var(--teal); }
.section--cyan { color: var(--teal-deep); }
.section--cyan .t-lead { color: var(--teal-deep); }

/* White panels keep their own type colours whatever band they sit on. */
:is(.card, .num-card, .price-panel, .price-card, .callout, .quote, .form-panel) { color: var(--ink); }
:is(.card, .num-card, .price-panel, .price-card, .callout, .quote, .form-panel) :is(h1,h2,h3,h4,h5,h6) { color: var(--teal); }

/* Prose runs in the 795px measure, centred inside the 980px grid. */
.rich > :is(h1, h2, h3, h4, h5, h6, p, ul, ol, blockquote, form) {
  max-width: var(--measure);
  margin-inline: auto;
}

.section-head { max-width: var(--measure); margin-bottom: clamp(2rem, 4vw, 3.25rem); }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head > :last-child { margin-bottom: 0; }

.stack > * + * { margin-top: 1.15em; }

/* Two-column prose: heading left, copy right. */
.prose { display: grid; gap: 2rem; }
.prose > h2 { margin-bottom: 0; }
.prose__body > p:first-child { font-size: clamp(1.0625rem, 1rem + .4vw, 1.3125rem); line-height: 1.5; }
.prose__body > p { color: var(--ink-muted); }
.prose__body > p:first-child { color: var(--ink); }
.section--teal .prose__body > p { color: rgba(255, 255, 255, .85); }
.section--teal .prose__body > p:first-child { color: var(--white); }
.section--cyan .prose__body > p { color: var(--teal-deep); }
@media (min-width: 900px) {
  .prose { grid-template-columns: 300px 1fr; gap: 4rem; align-items: start; }
  .prose > h2 { position: sticky; top: calc(var(--header-h) + 1.5rem); }
}

/* The opening section of every content page. */
.page-intro { padding-block: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3rem); }
.page-intro h1 { margin-bottom: .75em; }
.page-intro .figure { margin-top: 2.5rem; }
.grid-tail { margin-top: 2rem; }
.grid-tail > p { max-width: var(--measure); margin-inline: auto; }
.grid-tail .callout { max-width: var(--measure); margin: 2rem auto 0; }

/* About: the portrait shows whole at the top, then the story in the prose grid. */
.page-intro--about .prose > h1 { margin-bottom: 0; }

/* ------------------------------------------------------------- figures --- */

.figure {
  margin: 2.5rem auto 0;
  max-width: var(--shell);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.figure img { width: 100%; aspect-ratio: 2.2 / 1; object-fit: cover; object-position: center 30%; }
@media (max-width: 899px) { .figure img { aspect-ratio: 3 / 2; } }
/* A near-square or portrait photograph shows whole, capped in height. */
.figure--natural { width: fit-content; max-width: 100%; margin-inline: auto; }
.figure--natural img { width: auto; max-width: 100%; max-height: 640px; aspect-ratio: auto; object-fit: contain; }
.page-intro .figure:first-child { margin-top: 0; margin-bottom: clamp(2rem, 4vw, 3rem); }

/* --------------------------------------------------------------- hero --- */

.hero {
  position: relative;
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: clamp(400px, 50vw, 700px);
  padding-block: 0 clamp(1.5rem, 4.5vw, 3.5rem);
  color: var(--white);
  overflow: hidden;
}
.hero__bgwrap { display: contents; }
.hero__bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}
.hero > .shell { position: relative; z-index: 1; }

.hero__panel {
  background: var(--teal);
  color: var(--white);
  padding: 1.5rem 1.5rem 1.375rem;
  width: min(100%, 520px);
  margin-inline: auto;
  text-align: center;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}
.hero__panel :is(h1,h2,h3,h4,h5,h6) { color: var(--white); }
.hero__panel img { margin-inline: auto; width: min(100%, 170px); height: auto; }
.hero__panel .rule {
  width: 100%;
  max-width: 300px;
  height: 1px;
  background: rgba(255, 255, 255, .4);
  margin: .75rem auto;
  border: 0;
}
.hero__tagline {
  font-size: clamp(1.125rem, .95rem + .9vw, 1.5rem);
  line-height: 1.25;
  margin: 0;
  text-wrap: balance;
}
/* The location line doubles as the homepage h1; it reads as an eyebrow. */
.hero__where {
  margin: .65rem 0 0;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
  line-height: 1.4;
  color: var(--cyan);
}
.hero__panel .btn-row { margin-top: 1.25rem; }
@media (max-width: 899px) {
  .hero { min-height: 520px; }
  .hero__bg { object-position: 40% 30%; }
  .hero__panel { width: calc(100% - 32px); }
}
@media (max-width: 479px) {
  .hero__panel { padding: 1.25rem 1rem; }
  .hero__panel img { width: min(100%, 150px); }
  .hero__tagline { font-size: 1.25rem; }
}

/* -------------------------------------------------------------- header --- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--teal);
  color: var(--white);
  border-bottom: 1px solid rgba(255, 255, 255, .12);
  transition: box-shadow .2s var(--ease);
}
.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 3vw, 2.5rem);
  min-height: var(--header-h);
  width: min(100% - 2rem, 1440px);
  margin-inline: auto;
  padding-block: .5rem;
  transition: min-height .2s var(--ease);
}
.site-logo { flex: 0 0 auto; display: block; }
.site-logo img { height: clamp(58px, 7vw, 88px); width: auto; transition: height .2s var(--ease); }

/* Compact after 80px of scroll (desktop only, set by JS). */
.site-header.is-compact { --header-h: var(--header-h-compact); box-shadow: var(--shadow-md); }
.site-header.is-compact .site-logo img { height: 44px; }
.site-header.is-compact .nav__link { font-size: 1rem; }

.nav { margin-left: auto; }
.nav__list {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 2.75rem);
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__link {
  display: inline-block;
  padding: .4rem 0;
  color: var(--white);
  text-decoration: none;
  font-size: clamp(.95rem, .88rem + .3vw, 1.25rem);
  font-weight: 500;
  letter-spacing: .04em;
  white-space: nowrap;
  border-bottom: 2px solid transparent;
  transition: border-color .2s var(--ease), color .2s var(--ease), font-size .2s var(--ease);
}
.nav__link:hover,
.nav__link:focus-visible { border-bottom-color: var(--cyan); }
.nav__link[aria-current='page'],
.nav__link.is-active { border-bottom-color: var(--cyan); }

/* The one thing in the nav that is a button rather than a link. */
.nav__link--cta {
  background: var(--cyan);
  color: var(--teal) !important;
  border-radius: 999px;
  padding: .55em 1.25em;
  border-bottom: 0 !important;
  font-weight: 600;
  text-decoration: none;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.nav__link--cta:hover, .nav__link--cta:focus-visible { background: var(--white); transform: translateY(-1px); }
.nav__link--cta.is-here { background: var(--white); }
.site-header__cta { display: none; font-size: .875rem; padding: .5em 1em; white-space: nowrap; }

/* -- dropdowns -- */
.nav__item { position: relative; display: flex; align-items: center; gap: .3rem; }
.nav__caret {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.4rem;
  height: 1.4rem;
  padding: 0;
  background: none;
  border: 0;
  color: inherit;
  cursor: pointer;
  border-radius: 3px;
}
.nav__caret svg { width: 10px; height: 6px; transition: transform .2s var(--ease); }
.nav__item[data-open='true'] .nav__caret svg { transform: rotate(180deg); }

.nav__sub {
  position: absolute;
  top: 100%;
  left: -1rem;
  min-width: 260px;
  margin: 0;
  padding: .5rem;
  list-style: none;
  background: var(--teal-deep);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  opacity: 0;
  visibility: hidden;
  transform: translateY(-6px);
  transition: opacity .18s var(--ease), transform .18s var(--ease), visibility .18s;
  z-index: 20;
}
.nav__item:hover > .nav__sub,
.nav__item:focus-within > .nav__sub,
.nav__item[data-open='true'] > .nav__sub { opacity: 1; visibility: visible; transform: translateY(0); }
.nav__sublink {
  display: block;
  padding: .6rem .9rem;
  color: var(--white);
  text-decoration: none;
  font-size: 1rem;
  white-space: nowrap;
  border-radius: var(--radius);
  transition: background .18s var(--ease), color .18s var(--ease);
}
.nav__sublink:hover,
.nav__sublink:focus-visible,
.nav__sublink[aria-current='page'] { background: rgba(97, 222, 230, .18); color: var(--cyan); }

/* -- toggle (phones) -- */
.nav-toggle {
  display: none;
  align-items: center;
  gap: .5rem;
  min-width: var(--tap);
  min-height: var(--tap);
  margin-left: auto;
  padding: 0 .6rem;
  background: none;
  border: 0;
  color: var(--white);
  border-radius: var(--radius);
  cursor: pointer;
  line-height: 1;
  font-weight: 500;
}
.nav-toggle:hover, .nav-toggle:focus-visible { background: rgba(255, 255, 255, .1); }
.nav-toggle__icon { display: inline-flex; flex-direction: column; gap: 5px; width: 20px; }
.nav-toggle__icon i {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  transition: transform .2s var(--ease), opacity .2s var(--ease);
  transform-origin: center;
}
.nav-toggle[aria-expanded='true'] .nav-toggle__icon i:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded='true'] .nav-toggle__icon i:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded='true'] .nav-toggle__icon i:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav__more, .nav__contact { display: none; }

@media (max-width: 899px) {
  .site-header { --header-h: var(--header-h-mobile); }
  .site-header__inner { gap: .75rem; }
  .site-logo { margin-right: auto; }
  .site-logo img { height: 44px; }
  .site-header__cta { display: inline-block; }
  .nav-toggle { display: inline-flex; margin-left: 0; }

  /* The menu is a full-height sheet under the bar, not a drop-down. */
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    margin: 0;
    background: var(--teal);
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    padding: .5rem var(--gutter) calc(1.5rem + env(safe-area-inset-bottom));
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: opacity .2s var(--ease), transform .2s var(--ease), visibility .2s;
  }
  .nav[data-open='true'] { opacity: 1; visibility: visible; transform: none; }
  html.has-menu, html.has-menu body { overflow: hidden; }

  .nav__list { flex-direction: column; align-items: stretch; gap: 0; }
  .nav__item { flex-wrap: wrap; justify-content: space-between; border-bottom: 1px solid rgba(255, 255, 255, .12); }
  .nav__link {
    display: flex;
    align-items: center;
    flex: 1;
    min-height: 56px;
    padding: 1rem 0;
    font-size: 1.125rem;
    letter-spacing: .02em;
    border-bottom: 0;
    white-space: normal;
  }
  .nav__link[aria-current='page'], .nav__link.is-active { color: var(--cyan); font-weight: 600; }
  .nav__link[aria-current='page']::before, .nav__link.is-active::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--cyan);
    margin-right: .6rem;
    flex: 0 0 auto;
  }
  .nav__caret {
    width: var(--tap);
    height: var(--tap);
    margin-right: calc(var(--gutter) * -1 + .5rem);
    border-radius: var(--radius);
  }
  .nav__caret svg { width: 12px; height: 7px; }
  .nav__caret:hover, .nav__caret:focus-visible { background: rgba(255, 255, 255, .1); }

  /* Submenus become inline accordions. */
  .nav__sub {
    position: static;
    width: 100%;
    min-width: 0;
    box-shadow: none;
    background: var(--teal-deep);
    border-radius: var(--radius-lg);
    margin: 0 0 .75rem;
    padding: .25rem 0;
    opacity: 1;
    visibility: visible;
    transform: none;
    display: none;
  }
  .nav__item[data-open='true'] > .nav__sub { display: block; }
  .nav__item:hover > .nav__sub,
  .nav__item:focus-within > .nav__sub { display: none; }
  .nav__item[data-open='true']:hover > .nav__sub,
  .nav__item[data-open='true']:focus-within > .nav__sub { display: block; }
  .nav__sublink {
    min-height: 48px;
    display: flex;
    align-items: center;
    padding: .7rem 1rem;
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, .88);
    white-space: normal;
    border-radius: 0;
  }
  .nav__sublink[aria-current='page'] { background: none; color: var(--cyan); }

  /* Foot of the sheet: More, then contact. */
  .nav__more { display: block; margin-top: 1.25rem; }
  .nav__more-title {
    font-size: .8125rem;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: var(--cyan);
    font-weight: 600;
    margin: 0 0 .25rem;
  }
  .nav__more-list { list-style: none; margin: 0; padding: 0; }
  .nav__more-list a {
    display: flex;
    align-items: center;
    min-height: var(--tap);
    color: var(--white);
    opacity: .85;
    text-decoration: none;
    font-size: .9375rem;
  }
  .nav__contact { display: grid; margin-top: 1rem; padding-top: 1rem; border-top: 1px solid rgba(255, 255, 255, .12); }
  .nav__contact a {
    display: flex;
    align-items: center;
    min-height: var(--tap);
    color: var(--cyan);
    font-size: .9375rem;
    text-decoration: none;
  }
}
@media (max-width: 359px) {
  .site-header__cta { display: none; }
  .nav__item--cta { display: block; border-bottom: 0; margin-top: 1rem; }
  .nav__item--cta .nav__link {
    display: flex;
    justify-content: center;
    min-height: 0;
    padding: .8em 1.25em;
    font-size: 1rem;
  }
}
@media (max-width: 359px) {
  .nav-toggle__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .nav-toggle { padding: 0 .75rem; }
}
@media (min-width: 360px) and (max-width: 899px) {
  .nav__item--cta { display: none; }
}

/* ------------------------------------------------------------ buttons --- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .6em;
  padding: .85em 1.9em;
  border: 1px solid var(--teal);
  border-radius: var(--radius);
  background: var(--teal);
  color: var(--white);
  font-weight: 500;
  font-size: clamp(.95rem, .9rem + .25vw, 1.125rem);
  letter-spacing: .03em;
  text-decoration: none;
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease),
    border-color .2s var(--ease), transform .2s var(--ease);
}
.btn:hover, .btn:focus-visible {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--teal);
  transform: translateY(-1px);
}
.btn::after { content: '→'; font-size: .95em; line-height: 1; }
.btn:disabled { opacity: .6; cursor: progress; transform: none; }

.btn--ghost { background: transparent; color: var(--teal); }
.btn--ghost:hover, .btn--ghost:focus-visible { background: var(--teal); color: var(--white); border-color: var(--teal); }

/* Dark grounds */
.section--teal .btn, .section--forest .btn, .hero .btn {
  background: var(--cyan);
  border-color: var(--cyan);
  color: var(--teal);
}
.section--teal .btn:hover, .section--forest .btn:hover, .hero .btn:hover,
.section--teal .btn:focus-visible, .section--forest .btn:focus-visible, .hero .btn:focus-visible {
  background: var(--white);
  border-color: var(--white);
  color: var(--teal);
}
.section--teal .btn--ghost, .section--forest .btn--ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255, 255, 255, .55);
}
.section--teal .btn--ghost:hover, .section--forest .btn--ghost:hover,
.section--teal .btn--ghost:focus-visible, .section--forest .btn--ghost:focus-visible {
  background: rgba(255, 255, 255, .12);
  border-color: var(--white);
  color: var(--white);
}
/* Cyan ground: the default hover would turn the button cyan and lose it. */
.section--cyan .btn:hover, .section--cyan .btn:focus-visible {
  background: var(--teal-deep);
  border-color: var(--teal-deep);
  color: var(--white);
}
.section--cyan :focus-visible { outline-color: var(--teal); }

.btn-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.btn-row--center { justify-content: center; }
@media (max-width: 479px) {
  .btn-row .btn { width: 100%; justify-content: center; }
}

/* --------------------------------------------------------------- chips --- */

.chip,
.chips li {
  display: inline-flex;
  align-items: center;
  gap: .35em;
  font-size: .8125rem;
  font-weight: 600;
  letter-spacing: .02em;
  padding: .3em .8em;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--teal-deep);
  white-space: nowrap;
  text-decoration: none;
  border: 0;
  cursor: default;
}
.chip--amber { background: var(--amber-soft); color: var(--amber-ink); }
.chip--current { background: var(--teal); color: var(--white); }
a.chip, button.chip { cursor: pointer; min-height: var(--tap); padding-inline: 1em; font-size: .9375rem; }
a.chip:hover, button.chip:hover { background: var(--cyan); color: var(--teal-deep); }
.chip--current:hover, a.chip--current:hover, button.chip--current:hover { background: var(--teal); color: var(--white); }
.chips { list-style: none; margin: 0; padding: 0; display: flex; flex-wrap: wrap; gap: .4rem .5rem; }

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

.cards {
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 280px), 1fr));
}
.cards--2 {
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  max-width: var(--measure);
  margin-inline: auto;
}
/* The homepage offer: four cards in two columns, full width. */
.cards--offer { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 2rem; }
@media (max-width: 699px) { .cards--offer { grid-template-columns: 1fr; } }
.cards--services { align-items: start; }

.card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.card:has(.card__link):hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.card__media { aspect-ratio: 1.8; overflow: hidden; background: var(--sage-light); }
.card__media img { width: 100%; height: 100%; object-fit: cover; }
.card__body {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
}
.card__body > .chip { align-self: flex-start; }
.card__title { font-size: 1.375rem; font-weight: 600; line-height: 1.25; margin: 0; color: var(--teal); }
.card__text { margin: 0; font-size: 1rem; line-height: 1.5; color: var(--ink-muted); }
.card__link {
  margin-top: auto;
  padding-top: .5rem;
  color: var(--teal);
  font-weight: 600;
  text-decoration: none;
  align-self: flex-start;
}
.card__link::after { content: ' →'; }
.card__link:hover, .card__link:focus-visible { text-decoration: underline; }
.card:not(:has(.card__media)) .card__body { padding-top: 2rem; }

/* Services catalogue: title left, price right. */
.service__head { display: flex; flex-wrap: wrap; justify-content: space-between; align-items: baseline; gap: .25rem 1rem; }
.service__head .card__title { flex: 1 1 150px; }
.service__price { font-size: 1.25rem; font-weight: 600; color: var(--teal); white-space: nowrap; }
.services-filter { display: flex; flex-wrap: wrap; justify-content: center; gap: .5rem; margin-bottom: 2.5rem; }
.service[hidden] { display: none; }

/* ------------------------------------------------------ numbered cards --- */

.num-cards {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 380px), 1fr));
}
.num-card {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 1.25rem;
  padding: 2rem;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}
.num-card__n {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--teal);
  font-weight: 700;
  font-size: 1.25rem;
  display: grid;
  place-items: center;
}
.num-card__title { font-size: 1.375rem; font-weight: 600; margin: .35rem 0 .5rem; color: var(--teal); }
.num-card__text { margin: 0; font-size: 1rem; line-height: 1.5; color: var(--ink-muted); }
@media (max-width: 699px) { .num-cards { grid-template-columns: 1fr; } }

/* ----------------------------------------------------- definition rows --- */

.defs { margin: 1.5rem 0; border-top: 1px solid var(--hairline); }
.defs > div {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--hairline);
}
.defs dt { font-weight: 600; color: var(--teal); }
.defs dd { margin: 0; font-size: 1.0625rem; line-height: 1.5; color: var(--ink-muted); }
.section--teal .defs { border-color: rgba(255, 255, 255, .18); }
.section--teal .defs > div { border-color: rgba(255, 255, 255, .18); }
.section--teal .defs dt { color: var(--white); }
.section--teal .defs dd { color: rgba(255, 255, 255, .85); }
.section--cyan .defs dd { color: var(--teal-deep); }
@media (max-width: 699px) {
  .defs > div { grid-template-columns: 1fr; gap: .35rem; }
}

/* --------------------------------------------------------- testimonial --- */

.quotes {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
  align-items: start;
}
.quote {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem 1.75rem;
  box-shadow: var(--shadow-sm);
  border-top: 4px solid var(--cyan);
  margin: 0;
  text-align: left;
}
.quote::before {
  content: '\201C';
  display: block;
  font-size: 3.5rem;
  line-height: .6;
  height: 28px;
  color: var(--cyan);
  font-weight: 700;
}
.quote__text { margin: 0 0 1rem; font-size: 1.0625rem; line-height: 1.55; color: var(--ink); }
.quote--short .quote__text { font-size: 1.375rem; font-weight: 500; line-height: 1.35; color: var(--teal); }
.quote__cite { font-style: normal; font-weight: 600; font-size: .9375rem; color: var(--teal); }
.quote__cite::before { content: '\2014 '; }
.prose__body > .quote { margin-top: 1.5rem; }
.section--teal .quote, .section--cyan .quote { color: var(--ink); }

/* -------------------------------------------------------------- steps --- */

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 260px), 1fr));
}
.step { display: flex; flex-direction: column; gap: .75rem; }
.step__media {
  position: relative;
  aspect-ratio: 1.6;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--sage-light);
}
.step__media img { width: 100%; height: 100%; object-fit: cover; }
.step__head { display: flex; align-items: center; gap: .75rem; margin-top: .5rem; }
.step__n {
  flex: 0 0 auto;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--amber);
  color: var(--teal);
  font-weight: 700;
  font-size: 1.125rem;
  display: grid;
  place-items: center;
}
.step__title { margin: 0; font-size: 1.375rem; font-weight: 600; }
.step__text { margin: 0; font-size: 1rem; line-height: 1.5; }
.section--teal .step__title { color: var(--white); }
.section--teal .step__text { color: rgba(255, 255, 255, .85); }

/* ------------------------------------------------------------ pricing --- */

/* One panel per page: the photograph once, a row per price. */
.price-panel {
  display: grid;
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  max-width: var(--shell);
  margin-inline: auto;
}
.price-panel__media { background: var(--sage-light); }
.price-panel__media img { width: 100%; height: 100%; object-fit: cover; aspect-ratio: 3 / 2; }
.price-panel__rows { padding: clamp(1.5rem, 3vw, 2.5rem); display: flex; flex-direction: column; }
.price-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--hairline);
}
.price-row:first-child { padding-top: 0; }
.price-row__label { font-size: .9375rem; font-weight: 600; letter-spacing: .04em; text-transform: uppercase; color: var(--ink-muted); }
.price-row__price { font-size: 2rem; font-weight: 500; line-height: 1; color: var(--teal); }
.price-row__price--text { font-size: 1.25rem; font-weight: 600; }
.price-row__per { font-size: .9375rem; font-weight: 500; color: var(--ink-muted); white-space: nowrap; }
.price-panel__link { margin-top: auto; padding-top: 1.25rem; font-size: .9375rem; font-weight: 600; color: var(--teal); text-decoration: none; align-self: flex-start; }
.price-panel__link::after { content: ' →'; }
.price-panel__link:hover { text-decoration: underline; }
@media (min-width: 700px) {
  .price-panel { grid-template-columns: minmax(260px, 2fr) 3fr; }
  .price-panel__media img { aspect-ratio: auto; }
  .price-panel--text { grid-template-columns: 1fr; max-width: var(--measure); }
}

/* Membership panels on the services page. */
.price-cards {
  display: grid;
  gap: 1.75rem;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 320px), 1fr));
  max-width: var(--measure);
  margin-inline: auto;
}
.price-card {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  border-top: 4px solid var(--cyan);
  box-shadow: var(--shadow-sm);
  padding: 1.75rem 1.75rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}
.price-card--amber { border-top-color: var(--amber); }
.price-card > .chip { align-self: flex-start; }
.price-card__title { font-size: 1.25rem; font-weight: 600; margin: 0; color: var(--teal); }
.price-card__price { font-size: 2.75rem; font-weight: 500; line-height: 1; color: var(--teal); margin: .25rem 0; }
.price-card__price small { font-size: 1rem; font-weight: 500; color: var(--ink-muted); }
.price-card__note { margin: 0; font-size: 1rem; line-height: 1.5; color: var(--ink-muted); }
.price-card .card__link { margin-top: .75rem; }

/* ------------------------------------------------------------ callout --- */

.callout {
  background: var(--white);
  color: var(--ink);
  border-left: 4px solid var(--amber);
  border-radius: var(--radius-lg);
  padding: 1.25rem 1.5rem;
  box-shadow: var(--shadow-sm);
  margin: 1.5rem 0;
}
.callout > p { color: var(--ink-muted); }
.callout > p:last-child { margin-bottom: 0; }
.callout__title {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  font-size: .9375rem;
  text-transform: uppercase;
  letter-spacing: .06em;
  font-weight: 600;
  color: var(--teal);
  margin: 0 0 .5rem;
}
.callout--section { padding: 2rem clamp(1.5rem, 3vw, 2.5rem); margin: 0; max-width: var(--measure); margin-inline: auto; }
.callout__title--section { font-size: 1.375rem; text-transform: none; letter-spacing: .01em; margin-bottom: .75rem; }
.callout--section > p { color: var(--ink); }

/* --------------------------------------------------------- credentials --- */

.stats-band { padding-block: clamp(2.5rem, 5vw, 4rem); }
.stats {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 2rem;
  grid-template-columns: repeat(4, 1fr);
  text-align: center;
}
.stat__n { display: block; font-size: 2.75rem; font-weight: 500; line-height: 1; color: var(--cyan); margin-bottom: .5rem; }
.stat__label { font-size: .9375rem; line-height: 1.4; color: rgba(255, 255, 255, .85); }
@media (max-width: 699px) { .stats { grid-template-columns: 1fr 1fr; } }

/* ---------------------------------------------------------- CTA band --- */

.cta-band .btn-row { margin-top: 2rem; }
.cta-band p { max-width: var(--measure); }

/* --------------------------------------------------------------- lists --- */

.rich ul, .rich ol { margin: 0 0 1.15em; padding-left: 1.4em; }
.rich li { margin-bottom: .5em; }
.rich li::marker { color: var(--cyan); }
.section--cyan .rich li::marker { color: var(--teal); }
/* Component lists are not prose lists: no indent, no measure, full width. */
.rich .steps, .rich .num-cards, .rich .price-cards, .rich .chips,
.rich .nav__more-list { padding: 0; margin: 0; max-width: none; }
.rich .steps > li, .rich .num-cards > li, .rich .chips > li { margin-bottom: 0; }
.rich .price-cards { margin-inline: auto; }

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

.form { display: grid; gap: 1.125rem; }
.form--center { margin-inline: auto; }

.form-panel {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--radius-lg);
  padding: 2.25rem;
  box-shadow: var(--shadow-sm);
}
.section--white .form-panel { background: var(--off-white); box-shadow: var(--shadow-md); }
.form-panel--inline { max-width: 560px; margin-inline: auto; }
.form-notes { margin-top: 1rem; }

.form-grid { display: grid; gap: 2.5rem; align-items: start; }
.form-grid__copy > p { color: var(--ink-muted); }
.form-grid__copy > p.t-lead { color: var(--ink); }
.form-grid__copy .form__note { margin-top: 1.5rem; }
@media (min-width: 900px) {
  .form-grid { grid-template-columns: 1fr 1.3fr; gap: 4rem; }
  .form-grid__copy > * { margin-inline: 0; }
  .form-grid__copy > h2 { position: sticky; top: calc(var(--header-h) + 1.5rem); }
  .form-grid--enquiry { grid-template-columns: 1fr 1.2fr; }
  .form-grid--enquiry .form-grid__copy > h1 { position: static; }
}

.form__row { display: grid; gap: 1.125rem; grid-template-columns: 1fr 1fr; }
.form__inline { display: grid; gap: .75rem; grid-template-columns: 1fr auto; align-items: end; }
.form__inline .btn { padding-block: .8em; }
@media (max-width: 599px) {
  .form__row, .form__inline { grid-template-columns: 1fr; }
  .form-panel { padding: 1.5rem; }
}

.field { display: grid; gap: .4rem; }
.field__label { font-size: .9rem; font-weight: 600; letter-spacing: .03em; }
.field__label .req { color: #c0392b; }

.field input[type='text'],
.field input[type='email'],
.field input[type='tel'],
.field input[type='number'],
.field input[type='date'],
.field select,
.field textarea {
  width: 100%;
  min-height: 50px;
  padding: .85em 1em;
  font: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: var(--white);
  border: 1px solid rgba(17, 75, 95, .25);
  border-radius: var(--radius);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field select {
  appearance: none;
  -webkit-appearance: none;
  padding-right: 2.5em;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' fill='none' stroke='%23114b5f' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1em center;
}
.field textarea { min-height: 140px; resize: vertical; }
.field :is(input, select, textarea):focus-visible {
  outline: none;
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(97, 222, 230, .45);
}

.field--check { grid-template-columns: auto 1fr; align-items: start; gap: .7rem; }
.field--check input { margin-top: .3em; width: 20px; height: 20px; accent-color: var(--teal); }
.field--check .field__label { font-weight: 400; font-size: .9375rem; line-height: 1.5; color: var(--ink-muted); }

/* Radio chips (the enquiry form's "interested in"). */
.chip-radio { border: 0; padding: 0; margin: 0; min-width: 0; }
.chip-radio legend { padding: 0; margin-bottom: .5rem; }
.chip-radio__list { display: flex; flex-wrap: wrap; gap: .5rem; }
.chip--radio { position: relative; padding: 0; background: none; min-height: 0; cursor: pointer; }
.chip--radio input { position: absolute; opacity: 0; width: 1px; height: 1px; }
.chip--radio span {
  display: inline-flex;
  align-items: center;
  min-height: var(--tap);
  padding: .5em 1em;
  border-radius: 999px;
  background: var(--cyan-soft);
  color: var(--teal-deep);
  font-size: .9375rem;
  font-weight: 500;
  transition: background .15s var(--ease), color .15s var(--ease);
}
.chip--radio:hover span { background: var(--cyan); }
.chip--radio input:checked + span { background: var(--teal); color: var(--white); }
.chip--radio input:focus-visible + span { outline: 3px solid var(--cyan); outline-offset: 2px; }

.section--teal .field__label, .section--forest .field__label { color: var(--white); }
.section--cyan .field__label { color: var(--teal-deep); }
.form-panel .field__label { color: var(--ink); }
.form-panel .field--check .field__label { color: var(--ink-muted); }

.form__note { font-size: .8125rem; line-height: 1.5; color: var(--ink-muted); margin: 0; }
.section--cyan .form__note, .quote .form__note { color: var(--teal-deep); }
.section--teal .form__note { color: rgba(255, 255, 255, .8); }
.form-panel .form__note { color: var(--ink-muted); margin-top: .25rem; }

/* 1.1 - the honeypot: a real field where no human will find it. */
.hp { position: absolute; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.form__ok {
  background: var(--cyan-soft);
  border-left: 4px solid var(--cyan);
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
}
.form__ok p { margin: 0; color: var(--teal-deep); }
.form.is-sent { display: none; }
.form__error {
  background: #fdecea;
  border-left: 4px solid #c0392b;
  color: #a33a2a !important;
  padding: .85rem 1.1rem;
  border-radius: var(--radius);
}

/* Contact details beside the enquiry form. */
.contact-block { margin-top: 2rem; display: grid; gap: .5rem; }
.contact-block__line {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  border-bottom: 2px solid var(--cyan);
  justify-self: start;
  padding-bottom: .1em;
}
.contact-block__line:hover { border-bottom-color: var(--teal); }
.contact-block p { margin: .75rem 0 0; font-size: 1rem; color: var(--ink-muted); }

/* The three form-only pages: one teal band, the photograph faint behind it. */
.photo-band { overflow: hidden; }
.photo-band__bg { position: absolute; inset: 0; z-index: 0; }
.photo-band__img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; opacity: .18; }
.form-page.shell { max-width: 600px; }
.form-page h1 { margin-bottom: .5rem; }
.form-page .strapline { font-size: 1.375rem; font-weight: 500; color: var(--cyan); margin: 0 0 1.75rem; }
.form-page .t-lead { color: rgba(255, 255, 255, .9); margin-bottom: 1.75rem; }
.form-page .form-panel { margin-top: 1.5rem; box-shadow: var(--shadow-lg); }

/* -------------------------------------------------------------- legal --- */

.legal .section-head { margin-bottom: 1.25rem; }
.legal .section-head h1 { margin-bottom: .35em; }
.legal-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.legal__body { font-size: 1.0625rem; line-height: 1.55; }
.legal__body > * { margin-inline: 0; max-width: 680px; }
.legal__body h2 { margin-top: 2.25rem; margin-bottom: .6em; }
.legal__body ul { margin-bottom: 1.5em; }
.legal__body li::marker { color: var(--teal); }
.legal-contact { font-style: normal; line-height: 1.7; margin-top: .5rem; }

/* ------------------------------------------------------------- gallery --- */

.gallery {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 280px), 1fr));
}
.gallery__item { margin: 0; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); }
.gallery__item img { width: 100%; height: 100%; aspect-ratio: 4 / 3; object-fit: cover; transition: transform .35s var(--ease); }
.gallery__item:hover img { transform: scale(1.03); }
.gallery__credit { margin-top: 1.5rem; font-size: .875rem; color: var(--ink-muted); }
@media (min-width: 900px) { .gallery__item:first-child { grid-column: span 2; } }

/* ------------------------------------------------------------- utility --- */

.index-list { list-style: none; margin: 0 0 1.5rem; padding: 0; columns: 2; column-gap: 2.5rem; }
.index-list li { break-inside: avoid; }
.index-list a { display: inline-flex; align-items: center; min-height: var(--tap); text-decoration: none; }
.index-list a:hover { text-decoration: underline; }
@media (max-width: 599px) { .index-list { columns: 1; } }

/* -------------------------------------------------------------- footer --- */

.site-footer {
  background: var(--teal);
  color: var(--white);
  padding-block: clamp(3rem, 6vw, 4.5rem) 2rem;
}
.site-footer a { color: var(--white); }
.site-footer__grid {
  display: grid;
  gap: clamp(2rem, 5vw, 4rem);
  grid-template-columns: 1fr;
  align-items: start;
}
@media (min-width: 760px) {
  .site-footer__grid { grid-template-columns: 1.2fr 1fr 1fr; }
}
@media (min-width: 480px) and (max-width: 759px) {
  .site-footer__grid { grid-template-columns: 1fr 1fr; }
  .site-footer__grid > :first-child { grid-column: 1 / -1; }
}
.site-footer__logo { width: 200px; margin-bottom: 1.5rem; }
.site-footer__tagline {
  font-size: clamp(1.5rem, 1.2rem + 1.4vw, 2rem);
  line-height: 1.15;
  margin: 0 0 1rem;
  color: var(--white);
}
.site-footer__where { margin: 0 0 1.25rem; font-size: 1rem; line-height: 1.5; color: rgba(255, 255, 255, .85); }
.site-footer h2, .site-footer h3 { color: var(--white); }

.footer-title {
  font-size: .8125rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--cyan);
  margin: 0 0 1rem;
  font-weight: 600;
}
.footer-title--gap { margin-top: 1.75rem; }
.footer-list { list-style: none; margin: 0; padding: 0; display: grid; gap: .65rem; }
.footer-list a { text-decoration: none; opacity: .92; }
.footer-list a:hover { opacity: 1; text-decoration: underline; }

.site-footer__bottom {
  margin-top: clamp(2.5rem, 5vw, 3.5rem);
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  justify-content: space-between;
  align-items: center;
  font-size: .85rem;
  opacity: .85;
}
@media (max-width: 479px) { .site-footer__bottom { justify-content: center; text-align: center; } }

.social { display: flex; gap: .5rem; align-items: center; margin-left: -.6rem; }
.social a { display: inline-flex; padding: .6rem; border-radius: var(--radius); }
.social a:hover, .social a:focus-visible { background: rgba(255, 255, 255, .1); }
.social img { height: 24px; width: auto; }

/* ------------------------------------------------------------ helpers --- */

.center { text-align: center; }
.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: -100%;
  background: var(--white); color: var(--teal);
  padding: .75rem 1.25rem; z-index: 200; border-radius: var(--radius);
  transition: top .2s var(--ease);
}
.skip-link:focus { top: 1rem; }

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

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
    scroll-behavior: auto !important;
  }
  .gallery__item img, .gallery__item:hover img { transform: none; }
}
