/* The Laser & Aesthetics Company: site styles
   Plain CSS, no build step. Add rules to the matching numbered section.
    1. Tokens            8. Trust strip        15. Forms
    2. Reset & base      9. Cards & steps      16. Contact details
    3. Typography       10. Price tables       17. CTA band
    4. Layout           11. Media placeholders 18. Footer
    5. Buttons          12. Reviews            19. Simple pages & prose
    6. Header & nav     13. FAQ                20. Utilities
    7. Hero             14. Notices & lists    21. Motion
                                               22. Responsive */

/* ===== 1. Tokens ======================================================== */
:root {
  --ivory: #FAF6F0;
  --white: #FFFDF9;
  --sand: #EFE6DA;
  --sand-deep: #E4D6C4;
  --stone: #D9CBBB;
  --taupe: #8C7B6B;          /* decorative only: fails AA as body text */
  --text-muted: #6B5D51;     /* AA on ivory, white and sand */
  --espresso: #2E2723;
  --espresso-soft: #4A3F38;
  --bronze: #A67C52;         /* decorative only: rules, stars, icons */
  --bronze-light: #D9B48C;   /* accents on dark bands */
  --accent-deep: #7E5A38;    /* links and buttons: AA both ways */
  --accent-darker: #5F4229;

  --font-display: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial, sans-serif;

  --fs-sm: .875rem;
  --fs-base: 1.0625rem;
  --fs-lead: clamp(1.125rem, 1rem + .5vw, 1.3rem);
  --fs-h1: clamp(2.6rem, 1.8rem + 3.6vw, 4.5rem);
  --fs-h2: clamp(2.1rem, 1.6rem + 2.2vw, 3.2rem);
  --fs-h3: clamp(1.45rem, 1.3rem + .6vw, 1.75rem);
  --fs-h4: 1.2rem;

  --space-1: .5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2rem;
  --space-5: 3rem;
  --space-6: clamp(4rem, 3rem + 4vw, 7rem);

  --radius-sm: 6px;
  --radius: 14px;
  --radius-lg: 24px;
  --radius-arch: 999px 999px 18px 18px;

  --shadow-sm: 0 1px 2px rgba(46, 39, 35, .06);
  --shadow: 0 14px 34px -14px rgba(46, 39, 35, .2);

  --container: 1180px;
  --container-narrow: 760px;
  --header-h: 76px;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ===== 2. Reset & base ================================================== */
*, *::before, *::after { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 16px);
}

body {
  margin: 0;
  background: var(--ivory);
  color: var(--espresso);
  font-family: var(--font-body);
  font-size: var(--fs-base);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--accent-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: .2em;
}
a:hover { color: var(--accent-darker); }

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

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

hr { border: 0; border-top: 1px solid var(--stone); margin: var(--space-5) 0; }

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

table { border-collapse: collapse; width: 100%; }

address { font-style: normal; }

/* ===== 3. Typography ==================================================== */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin: 0 0 .5em;
  color: var(--espresso);
  text-wrap: balance;
}
h1 { font-size: var(--fs-h1); }
h2 { font-size: var(--fs-h2); }
h3 { font-size: var(--fs-h3); font-weight: 600; }
h4 { font-size: var(--fs-h4); font-weight: 600; }
h1 em, h2 em { font-style: italic; color: var(--accent-deep); }

p { margin: 0 0 1.1em; }
p:last-child { margin-bottom: 0; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.eyebrow::before { content: ""; width: 28px; height: 1px; background: var(--bronze); }

.lead { font-size: var(--fs-lead); line-height: 1.6; color: var(--espresso-soft); }
.muted { color: var(--text-muted); }
.small { font-size: var(--fs-sm); }

.rule { width: 56px; height: 1px; border: 0; background: var(--bronze); margin: 1.5rem 0; }
.text-center .rule, .rule--center { margin-inline: auto; }

/* ===== 4. Layout ======================================================== */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}
.container--narrow { max-width: var(--container-narrow); }

.section { padding-block: var(--space-6); }
.section--tight { padding-block: var(--space-5); }
.section--sand { background: var(--sand); }
.section--white { background: var(--white); }

.section__head { max-width: 680px; margin-bottom: var(--space-5); }
.section__head.text-center { margin-inline: auto; }

.grid { display: grid; gap: clamp(1.25rem, 2.5vw, 2rem); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(2rem, 6vw, 5.5rem);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }
.split--top { align-items: start; }

.stack > * + * { margin-top: var(--space-3); }

/* ===== 5. Buttons ======================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: .9375rem;
  font-weight: 500;
  letter-spacing: .02em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  cursor: pointer;
  transition: background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease), transform .25s var(--ease);
}
.btn:hover { transform: translateY(-1px); }
.btn svg { width: 18px; height: 18px; }

.btn--primary { background: var(--accent-deep); color: var(--white); }
.btn--primary:hover { background: var(--espresso); color: var(--white); }

.btn--outline { background: transparent; border-color: var(--accent-deep); color: var(--accent-deep); }
.btn--outline:hover { background: var(--accent-deep); color: var(--white); }

.btn--light { background: var(--ivory); color: var(--espresso); }
.btn--light:hover { background: var(--sand); color: var(--espresso); }

.btn--sm { padding: .65rem 1.15rem; font-size: .875rem; }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: .75rem;
  margin-top: var(--space-4);
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  font-weight: 500;
  text-decoration: none;
  transition: gap .25s var(--ease);
}
.link-arrow::after { content: "\2192"; }
.link-arrow:hover { gap: .65rem; }

/* ===== 6. Header & nav ================================================== */
.skip-link {
  position: absolute;
  left: 1rem;
  top: -100px;
  z-index: 200;
  padding: .6rem 1rem;
  border-radius: var(--radius-sm);
  background: var(--espresso);
  color: var(--white);
}
.skip-link:focus { top: 1rem; color: var(--white); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 240, .92);
  -webkit-backdrop-filter: saturate(1.2) blur(10px);
  backdrop-filter: saturate(1.2) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}
.site-header.is-scrolled {
  border-bottom-color: var(--stone);
  box-shadow: 0 6px 24px -18px rgba(46, 39, 35, .35);
}

.site-header__inner {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2rem);
  min-height: var(--header-h);
}

.site-logo {
  display: inline-flex;
  align-items: center;
  flex: none; /* Safari shrinks the nested column flexbox below its nowrap text width */
  gap: .7rem;
  margin-right: auto;
  color: var(--espresso);
  text-decoration: none;
}
.site-logo:hover { color: var(--espresso); }
.site-logo img { width: 42px; height: 42px; flex: none; }
.site-logo__text { display: flex; flex-direction: column; line-height: 1; }
.site-logo__name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -.005em;
  white-space: nowrap;
}
.site-logo__sub {
  margin-top: .3rem;
  font-size: .6rem;
  font-weight: 600;
  letter-spacing: .24em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav { display: flex; align-items: center; gap: clamp(1rem, 1.8vw, 1.75rem); }
.nav a {
  position: relative;
  padding: .35rem 0;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  white-space: nowrap;
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 1px;
  background: var(--bronze);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}
.nav a:hover::after, .nav a[aria-current="page"]::after { transform: scaleX(1); }
.nav a.nav__cta { display: none; }

.header-cta { display: flex; align-items: center; gap: 1rem; }
.header-phone {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-size: .9375rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
  white-space: nowrap;
}
.header-phone:hover { color: var(--accent-deep); }
.header-phone svg { width: 18px; height: 18px; }

.nav-toggle {
  display: none;
  position: relative;
  width: 44px;
  height: 44px;
  border: 1px solid var(--stone);
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  position: absolute;
  width: 18px;
  height: 1.5px;
  background: var(--espresso);
  transition: transform .3s var(--ease), background-color .3s var(--ease);
}
.nav-toggle span { left: 50%; top: 50%; transform: translate(-50%, -50%); }
.nav-toggle span::before, .nav-toggle span::after { content: ""; left: 0; }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { transform: translateY(-6px) rotate(-45deg); }

/* ===== 7. Hero ========================================================== */
.hero {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3rem, 6vw, 6rem) clamp(4rem, 7vw, 7rem);
  background:
    radial-gradient(ellipse 70% 60% at 85% 20%, var(--sand) 0%, transparent 70%),
    var(--ivory);
}
.hero__inner {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}
.hero__content h1 { margin-bottom: .35em; }
.hero__lead { max-width: 34rem; font-size: var(--fs-lead); line-height: 1.6; color: var(--espresso-soft); }
.hero__points {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem 1.5rem;
  margin: 1.75rem 0 0;
  padding: 0;
  list-style: none;
  font-size: .9rem;
  color: var(--espresso-soft);
}
.hero__points li { display: inline-flex; align-items: center; gap: .55rem; }
.hero__points li::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--bronze); }

.hero__media { position: relative; }
.hero__badge {
  position: absolute;
  left: -1.5rem;
  bottom: 2rem;
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: 1rem 1.25rem;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
  font-size: .875rem;
  line-height: 1.35;
}
.hero__badge strong { display: block; font-family: var(--font-display); font-size: 1.35rem; line-height: 1; }

.hero--page { padding-block: clamp(2.5rem, 5vw, 4.5rem); }
/* Same ground colour as the page hero, so the hero padding already separates them */
.hero--page + .section:not(.section--sand):not(.section--white) { padding-top: 0; }
.hero--page .hero__inner { grid-template-columns: 1fr; }
.hero--page h1 { font-size: clamp(2.4rem, 1.8rem + 2.6vw, 3.75rem); max-width: 20ch; }

.breadcrumb { margin-bottom: 1rem; font-size: .8125rem; color: var(--text-muted); }
.breadcrumb a { color: inherit; }
.breadcrumb span { margin-inline: .5rem; }

/* ===== 8. Trust strip =================================================== */
.trust { background: var(--white); border-block: 1px solid var(--stone); }
.trust__list {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.5rem;
  margin: 0;
  padding: 1.5rem 0;
  list-style: none;
}
.trust__item { display: flex; align-items: center; gap: .85rem; font-size: .9rem; line-height: 1.35; color: var(--espresso-soft); }
.trust__item strong { display: block; font-family: var(--font-display); font-size: 1.25rem; font-weight: 600; color: var(--espresso); }

.icon-circle {
  display: grid;
  place-items: center;
  flex: none;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--sand);
  color: var(--accent-deep);
}
.icon-circle svg { width: 20px; height: 20px; }
a.icon-circle { text-decoration: none; transition: background-color .25s var(--ease), color .25s var(--ease); }
a.icon-circle:hover { background: var(--accent-deep); color: var(--white); }

.stars { color: var(--bronze); letter-spacing: .12em; }

/* ===== 9. Cards & steps ================================================= */
.card {
  display: flex;
  flex-direction: column;
  gap: .75rem;
  height: 100%;
  padding: clamp(1.5rem, 3vw, 2.25rem);
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card--hover:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--sand-deep); }
.card__title { margin: 0; font-size: var(--fs-h3); }
.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: .35rem 1rem;
  font-size: .8125rem;
  letter-spacing: .02em;
  color: var(--text-muted);
}
.card__price { font-family: var(--font-display); font-size: 1.9rem; font-weight: 600; line-height: 1; color: var(--espresso); }
.card__price small {
  margin-right: .35rem;
  font-family: var(--font-body);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.card__tag {
  align-self: flex-start;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--sand);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--accent-deep);
}
.card__actions { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: auto; padding-top: 1rem; }

.steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 2rem;
  margin: 0;
  padding: 0;
  list-style: none;
}
.step { padding-top: 1.25rem; border-top: 1px solid var(--stone); }
.step__num { display: block; margin-bottom: .5rem; font-family: var(--font-display); font-size: 2.75rem; line-height: 1; color: var(--bronze); }
.step h3 { font-size: 1.4rem; }

.pill-nav { display: flex; flex-wrap: wrap; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.pill-nav a {
  display: inline-block;
  padding: .5rem 1rem;
  border: 1px solid var(--stone);
  border-radius: 999px;
  background: var(--white);
  font-size: .875rem;
  font-weight: 500;
  color: var(--espresso);
  text-decoration: none;
}
.pill-nav a:hover { border-color: var(--accent-deep); color: var(--accent-deep); }

/* ===== 10. Price tables ================================================= */
.price-block { min-width: 0; } /* lets .price-table-wrap scroll instead of widening its grid column */
.price-block + .price-block { margin-top: var(--space-5); }
.grid > .price-block + .price-block { margin-top: 0; } /* side by side in a grid, the gap handles spacing */
.price-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
}
.price-table { min-width: 480px; font-size: .9375rem; }
.price-table caption {
  caption-side: top;
  padding: 1.25rem 1.5rem .25rem;
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 600;
  text-align: left;
  color: var(--espresso);
}
.price-table th, .price-table td { padding: .9rem 1.5rem; border-bottom: 1px solid var(--sand); text-align: left; }
.price-table thead th {
  border-bottom-color: var(--stone);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.price-table tbody th { font-weight: 500; }
.price-table tbody tr:last-child > * { border-bottom: 0; }
.price-table tbody tr:hover { background: var(--ivory); }
.price-table .num { text-align: right; white-space: nowrap; font-variant-numeric: tabular-nums; }

.tbc {
  display: inline-block;
  padding: .15rem .55rem;
  border-radius: 999px;
  background: var(--sand);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .08em;
  color: var(--text-muted);
}
.price-note { margin-top: .9rem; font-size: var(--fs-sm); color: var(--text-muted); }

/* ===== 11. Media placeholders =========================================== */
/* Stand-ins until real photos arrive (see images/README.md). Swap for
   <div class="media"><img ...></div> with the same modifier classes. */
.media-placeholder, .media {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  border-radius: var(--radius-lg);
}
.media-placeholder {
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 30% 20%, rgba(255, 253, 249, .75), transparent 55%),
    linear-gradient(150deg, var(--sand) 0%, var(--stone) 100%);
}
.media-placeholder::after {
  content: "";
  position: absolute;
  inset: 12px;
  border: 1px solid rgba(255, 253, 249, .65);
  border-radius: calc(var(--radius-lg) - 8px);
}
.media-placeholder__label {
  position: relative;
  z-index: 1;
  padding: .4rem .8rem;
  border-radius: 999px;
  background: rgba(250, 246, 240, .88);
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.media img { width: 100%; height: 100%; object-fit: cover; }

.media-placeholder--portrait, .media--portrait { aspect-ratio: 4 / 5; }
.media-placeholder--square, .media--square { aspect-ratio: 1 / 1; }
.media-placeholder--wide, .media--wide { aspect-ratio: 16 / 9; }
.media-placeholder--arch, .media--arch { border-radius: var(--radius-arch); }
.media-placeholder--arch::after { border-radius: 999px 999px 10px 10px; }

/* ===== 12. Reviews ====================================================== */
.rating { display: flex; flex-wrap: wrap; align-items: center; gap: 1.25rem; }
.rating__score { font-family: var(--font-display); font-size: 4rem; font-weight: 500; line-height: 1; color: var(--espresso); }
.rating__stars { font-size: 1.25rem; letter-spacing: .12em; color: var(--bronze); }
.rating__text { font-size: .9rem; color: var(--text-muted); }

.review-card {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  height: 100%;
  padding: 2rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius);
  background: var(--white);
}
.review-card::before { content: "\201C"; font-family: var(--font-display); font-size: 4rem; line-height: .6; color: var(--bronze); }
.review-card__quote { margin: 0; font-family: var(--font-display); font-size: 1.3rem; line-height: 1.45; color: var(--espresso); }
.review-card__author { margin-top: auto; font-size: .875rem; font-weight: 500; color: var(--text-muted); }
.review-card--pending { justify-content: center; border-style: dashed; background: transparent; text-align: center; color: var(--text-muted); }
.review-card--pending::before { opacity: .35; }

.review-links { display: flex; flex-wrap: wrap; gap: .6rem; margin-top: 1.5rem; }

/* ===== 13. FAQ ========================================================== */
.faq { border-top: 1px solid var(--stone); }
.faq details { border-bottom: 1px solid var(--stone); }
.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.35rem 0;
  list-style: none;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 1.1rem + .5vw, 1.5rem);
  font-weight: 600;
  line-height: 1.3;
  color: var(--espresso);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary:hover { color: var(--accent-deep); }
.faq summary::after {
  content: "";
  flex: none;
  width: 32px;
  height: 32px;
  border: 1px solid var(--stone);
  border-radius: 50%;
  background:
    linear-gradient(var(--accent-deep), var(--accent-deep)) center / 12px 1.5px no-repeat,
    linear-gradient(var(--accent-deep), var(--accent-deep)) center / 1.5px 12px no-repeat;
  transition: transform .3s var(--ease);
}
.faq details[open] summary::after {
  background: linear-gradient(var(--accent-deep), var(--accent-deep)) center / 12px 1.5px no-repeat;
  transform: rotate(180deg);
}
.faq__answer { padding: 0 3rem 1.5rem 0; color: var(--espresso-soft); }
.faq__answer ul { margin: 0 0 1.1em; padding-left: 1.25rem; }
.faq__answer li { margin-bottom: .35rem; }

/* ===== 14. Notices & lists ============================================== */
.notice {
  display: flex;
  align-items: flex-start;
  gap: .9rem;
  padding: 1rem 1.25rem;
  border-left: 3px solid var(--bronze);
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  background: var(--sand);
  font-size: .9375rem;
  color: var(--espresso-soft);
}
.notice strong { color: var(--espresso); }
.notice--white { background: var(--white); }

.checklist { display: grid; gap: .65rem; margin: 0 0 1.1em; padding: 0; list-style: none; }
.checklist li { position: relative; padding-left: 1.9rem; }
.checklist li::before {
  content: "";
  position: absolute;
  left: .15rem;
  top: .55em;
  width: .9rem;
  height: .45rem;
  border-left: 1.5px solid var(--bronze);
  border-bottom: 1.5px solid var(--bronze);
  transform: rotate(-45deg);
}

/* ===== 15. Forms ======================================================== */
.form-card {
  padding: clamp(1.5rem, 4vw, 3rem);
  border: 1px solid var(--stone);
  border-radius: var(--radius-lg);
  background: var(--white);
  box-shadow: var(--shadow-sm);
}
.form { display: grid; gap: 1.25rem; }
.form__row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }

.field { display: flex; flex-direction: column; gap: .45rem; min-width: 0; margin: 0; padding: 0; border: 0; }
.field > label, .field > legend { padding: 0; font-size: .875rem; font-weight: 500; color: var(--espresso); }
.field > legend { margin-bottom: .45rem; }
.req { margin-left: .15rem; color: var(--accent-deep); }

.field input:not([type="radio"]):not([type="checkbox"]),
.field select,
.field textarea {
  width: 100%;
  padding: .85rem 1rem;
  border: 1px solid var(--stone);
  border-radius: var(--radius-sm);
  background: var(--ivory);
  font-size: 1rem;
  line-height: 1.4;
  -webkit-appearance: none;
  appearance: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease), background-color .2s var(--ease);
}
.field select {
  padding-right: 2.75rem;
  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='%237E5A38' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
}
.field textarea { min-height: 140px; resize: vertical; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-color: var(--accent-deep);
  background-color: var(--white);
  box-shadow: 0 0 0 3px rgba(166, 124, 82, .2);
}
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-color: #A6452F; }
.field__hint { margin: 0; font-size: .8125rem; color: var(--text-muted); }

.choice-group { display: flex; flex-wrap: wrap; gap: .6rem; }
.choice { position: relative; }
.choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.choice span {
  display: inline-block;
  padding: .6rem 1.1rem;
  border: 1px solid var(--stone);
  border-radius: 999px;
  background: var(--ivory);
  font-size: .9rem;
  cursor: pointer;
  transition: background-color .2s var(--ease), border-color .2s var(--ease), color .2s var(--ease);
}
.choice input:checked + span { border-color: var(--accent-deep); background: var(--accent-deep); color: var(--white); }
.choice input:focus-visible + span { outline: 2px solid var(--accent-deep); outline-offset: 2px; }

.checkbox { display: flex; align-items: flex-start; gap: .75rem; font-size: .9rem; line-height: 1.5; color: var(--espresso-soft); }
.checkbox input { flex: none; width: 1.15rem; height: 1.15rem; margin: .15rem 0 0; accent-color: var(--accent-deep); }

.form__actions { display: flex; flex-wrap: wrap; align-items: center; gap: 1rem 1.5rem; }
.form__small { margin: 0; font-size: .8125rem; color: var(--text-muted); }

/* Netlify honeypot: off-screen, not display:none, so bots still fill it */
.hp { position: absolute; left: -5000px; width: 1px; height: 1px; overflow: hidden; }

/* ===== 16. Contact details ============================================== */
.contact-list { display: grid; gap: 1.25rem; margin: 0; padding: 0; list-style: none; }
.contact-list li { display: flex; align-items: flex-start; gap: 1rem; }
.contact-list__label {
  display: block;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.contact-list a { font-weight: 500; color: var(--espresso); text-decoration: none; overflow-wrap: anywhere; }
.contact-list a:hover { color: var(--accent-deep); text-decoration: underline; }

.social-links { display: flex; gap: .6rem; }

/* ===== 17. CTA band ===================================================== */
.cta-band {
  position: relative;
  overflow: hidden;
  padding-block: clamp(3.5rem, 7vw, 6rem);
  background: var(--espresso);
  color: #D8CABB;
}
.cta-band::before {
  content: "";
  position: absolute;
  right: -10%;
  top: -60%;
  width: 60%;
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 124, 82, .28) 0%, transparent 65%);
  pointer-events: none;
}
.cta-band__inner {
  position: relative;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.cta-band h2 { max-width: 18ch; margin: 0 0 .35em; color: var(--ivory); }
.cta-band p { max-width: 40rem; }
.cta-band .eyebrow { color: var(--bronze-light); }
.cta-band .eyebrow::before { background: var(--bronze-light); }
.cta-band a:not(.btn) { color: var(--ivory); }
.cta-band .btn-row { margin-top: 0; }
.cta-band .btn--primary { background: var(--ivory); color: var(--espresso); }
.cta-band .btn--primary:hover { background: var(--sand); color: var(--espresso); }
.cta-band .btn--outline { border-color: rgba(250, 246, 240, .5); color: var(--ivory); }
.cta-band .btn--outline:hover { background: var(--ivory); color: var(--espresso); }

/* ===== 18. Footer ======================================================= */
.site-footer {
  padding-top: clamp(3.5rem, 6vw, 5rem);
  background: var(--sand);
  font-size: .9375rem;
  color: var(--espresso-soft);
}
.site-footer__grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
.site-footer h2 {
  margin: 0 0 1rem;
  font-family: var(--font-body);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--espresso);
}
.site-footer a { color: var(--espresso-soft); text-decoration: none; }
.site-footer a:hover { color: var(--accent-deep); text-decoration: underline; }
.site-footer .site-logo { margin-bottom: 1rem; }
.footer-brand p { max-width: 30ch; }
.footer-brand .social-links { margin-top: 1.25rem; }
.footer-brand a.icon-circle { background: var(--ivory); color: var(--accent-deep); text-decoration: none; }
.footer-brand a.icon-circle:hover { background: var(--accent-deep); color: var(--white); }
.footer-links { display: grid; gap: .5rem; margin: 0; padding: 0; list-style: none; }
.footer-address { line-height: 1.8; }
.footer-address a { overflow-wrap: anywhere; }
.footer-legal {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .5rem 2rem;
  padding-block: 1.5rem;
  border-top: 1px solid var(--stone);
  font-size: .8125rem;
  color: var(--text-muted);
}
.footer-legal p { margin: 0; }

/* ===== 19. Simple pages & prose ========================================= */
.page-simple { display: grid; place-items: center; min-height: 60vh; padding-block: var(--space-6); text-align: center; }
.page-simple .container { max-width: 640px; }
.page-simple .btn-row { justify-content: center; }
.success-mark {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  background: var(--sand);
  color: var(--accent-deep);
}
.success-mark svg { width: 30px; height: 30px; }

.prose { max-width: 720px; }
.prose h2 { margin-top: 2.5rem; font-size: clamp(1.6rem, 1.3rem + 1vw, 2.1rem); }
.prose h3 { margin-top: 1.75rem; font-size: 1.35rem; }
.prose ul, .prose ol { margin: 0 0 1.1em; padding-left: 1.25rem; }
.prose li { margin-bottom: .4rem; }
.prose table { margin: 0 0 1.5em; font-size: .9375rem; }
.prose th, .prose td { padding: .65rem .9rem; border: 1px solid var(--stone); text-align: left; vertical-align: top; }
.prose th { background: var(--sand); font-weight: 600; }

/* ===== 20. Utilities ==================================================== */
.sr-only {
  position: absolute !important;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}
.text-center { text-align: center; }
.max-prose { max-width: 62ch; }
.text-center.max-prose, .text-center .max-prose { margin-inline: auto; }
.mt-0 { margin-top: 0 !important; }
.mb-0 { margin-bottom: 0 !important; }
.mt-3 { margin-top: var(--space-3); }
.mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); }

/* ===== 21. Motion ======================================================= */
/* .js is set by an inline script in <head>, so with JS off nothing is hidden */
.js .reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.js .reveal.is-visible { opacity: 1; transform: none; }

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

/* ===== 22. Responsive =================================================== */
@media (max-width: 1320px) {
  .header-phone__text { display: none; }
}

/* Keep in sync with NAV_BREAKPOINT in js/main.js */
@media (max-width: 1120px) {
  /* backdrop-filter would make the fixed nav panel position against the header */
  .site-header { background: var(--ivory); -webkit-backdrop-filter: none; backdrop-filter: none; }
  .nav-toggle { display: inline-block; }
  .nav {
    position: fixed;
    inset: var(--header-h) 0 0 0;
    flex-direction: column;
    align-items: flex-start;
    gap: .25rem;
    padding: 2rem clamp(1.25rem, 4vw, 2rem) 3rem;
    overflow-y: auto;
    background: var(--ivory);
    border-top: 1px solid var(--stone);
    visibility: hidden;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity .25s var(--ease), transform .25s var(--ease), visibility 0s linear .25s;
  }
  .nav.is-open {
    visibility: visible;
    opacity: 1;
    transform: none;
    transition: opacity .25s var(--ease), transform .25s var(--ease);
  }
  .nav a { padding: .4rem 0; font-family: var(--font-display); font-size: 1.9rem; }
  .nav a.nav__cta { display: inline-flex; margin-top: 1.5rem; padding: .9rem 1.6rem; font-family: var(--font-body); font-size: 1rem; color: var(--white); }
  .nav a.nav__cta::after { display: none; }
}

@media (max-width: 960px) {
  .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .split, .hero__inner { grid-template-columns: minmax(0, 1fr); }
  .split--reverse > :first-child { order: 0; }
  .hero__media { max-width: 440px; }
  .hero__badge { left: 1rem; bottom: 1rem; }
  .steps { grid-template-columns: minmax(0, 1fr); }
  .trust__list { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .site-footer__grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 640px) {
  /* minmax(0, 1fr), not 1fr: a bare 1fr column grows to fit wide children like price tables */
  .grid--2, .grid--3, .grid--4, .form__row { grid-template-columns: minmax(0, 1fr); }
  .header-cta__btn { display: none; }
  .site-logo__name { font-size: 1.15rem; }
  .site-logo img { width: 36px; height: 36px; }
  .trust__list, .site-footer__grid { grid-template-columns: minmax(0, 1fr); }
  .faq__answer { padding-right: 0; }
  .cta-band__inner { flex-direction: column; align-items: flex-start; }
}
