@charset "UTF-8";
/* =====================================================================
   Compassion Marijuana Clinic — Design System
   Aesthetic: green + white editorial, matched to the clinic's existing
   brand. Deep green (#0f1914) + bright leaf lime (#68b42d) + mint whites,
   sharp corners. Single typeface: Rethink Sans (matched to leafwell.com)
   across display, body, and kicker labels. A division of Premium Medical Clinic.

   This is the Sass entry point. It compiles to ../css/style.css.
   Edit the partials below — never edit css/style.css directly, it is
   generated. See README.md for the build command.
   ===================================================================== */
:root {
  /* Structural green ramp (was teal) */
  --teal-900: #0f1914; /* deepest green-black — dark sections, footer, headings */
  --teal-800: #14311e; /* dark green — panels, info card, price side, cta band */
  --teal-700: #1c5f38; /* deep green — links, headings accent (7.6:1 on white) */
  --teal-600: #2e7d46; /* primary green (5.1:1 on white) */
  --teal-500: #3f9a5c;
  --teal-300: #8fce9f;
  --teal-100: #d7ecdd;
  --teal-50: #eef7f1; /* mint tint */
  /* Accent green (was coral) — text-safe on white for links/icons/labels */
  --coral-600: #2f7d4f; /* accent green (5.0:1 on white) */
  --coral-500: #3f9a5c;
  --coral-400: #7cc06a;
  --coral-50: #eaf5ee;
  --red-700: #1c5f38; /* deep green — hover/pressed */
  /* Bright brand lime — solid fills with dark ink text (6.97:1) */
  --lime: #68b42d;
  --lime-600: #5aa524;
  /* Repurposed "gold" tokens — now green so the theme stays green + white */
  --gold-600: #2f7d4f;
  --gold-500: #2e7d46;
  --gold-200: #cfe9d6;
  /* Neutrals — faintly green-tinted whites to match the brand */
  --ink: #10221a;
  --slate: #4a5f54;
  --slate-400:#5d746a;
  --line: #dde7e0;
  --line-soft:#eef4ef;
  --paper: #ffffff;
  --mist: #f5f8f6;
  --shell: #f8fbfb;
  /* Type — single family, matched to leafwell.com (Rethink Sans).
     One typeface across display, body, and uppercase kicker labels;
     hierarchy comes from weight, size, and letter-spacing. */
  --font-display: "Rethink Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-body: "Rethink Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  --font-mono: "Rethink Sans", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, sans-serif;
  /* Shape — sharp, editorial corners */
  --radius-sm: 4px;
  --radius: 8px;
  --radius-lg: 12px;
  --radius-xl: 18px;
  /* Shadow — cast in deep green */
  --shadow-sm: 0 1px 2px rgba(15, 25, 20, .06), 0 1px 3px rgba(15, 25, 20, .06);
  --shadow: 0 12px 30px -14px rgba(15, 25, 20, .28);
  --shadow-lg: 0 30px 60px -26px rgba(15, 25, 20, .4);
  --shadow-teal: 0 16px 38px -16px rgba(28, 95, 56, .45);
  --shadow-coral: 0 16px 34px -14px rgba(104, 180, 45, .5);
  /* Layout */
  --maxw: 1200px;
  --gutter: clamp(1.1rem, 4vw, 2.4rem);
  --bar-h: 44px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--shell);
  line-height: 1.65;
  font-size: 1.02rem;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

a {
  color: var(--teal-700);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover {
  color: var(--coral-600);
}

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

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--teal-900);
  margin: 0 0 0.5em;
  font-optical-sizing: auto;
}

h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
}

h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
}

p {
  margin: 0 0 1.1rem;
}

strong {
  font-weight: 700;
}

.container-x {
  width: 100%;
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: clamp(3.6rem, 8vw, 6.5rem);
  position: relative;
}

.section--tight {
  padding-block: clamp(2.6rem, 5vw, 4rem);
}

.bg-mist {
  background: var(--mist);
}

.bg-teal {
  background: var(--teal-900);
  color: #dcecdf;
}

.bg-shell {
  background: var(--shell);
}

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

.mx-auto {
  margin-inline: auto;
}

.measure {
  max-width: 62ch;
}

.measure-sm {
  max-width: 48ch;
}

.hairline {
  height: 3px;
  width: 44px;
  background: var(--lime);
  border: 0;
  border-radius: 0;
  margin: 0 0 1.4rem;
}

.text-center .hairline {
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--teal-700);
  margin-bottom: 1rem;
}
.eyebrow__num {
  font-family: var(--font-mono);
  font-weight: 700;
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  color: var(--teal-900);
  background: var(--lime);
  padding: 0.16rem 0.42rem;
  border-radius: 3px;
  line-height: 1;
}

.btn-x {
  --btn-bg: var(--teal-600);
  --btn-fg: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.96rem;
  letter-spacing: 0.01em;
  padding: 0.9rem 1.5rem;
  border-radius: var(--radius-sm);
  border: 1.5px solid transparent;
  background: var(--btn-bg);
  color: var(--btn-fg);
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.25s ease, background 0.2s ease, color 0.2s ease;
  white-space: nowrap;
  line-height: 1;
}
.btn-x svg {
  width: 1.05em;
  height: 1.05em;
}
.btn-x:hover {
  transform: translateY(-2px);
  color: var(--btn-fg);
}

.btn-urgent {
  --btn-bg: var(--lime);
  --btn-fg: var(--teal-900);
  box-shadow: var(--shadow-coral);
}

.btn-urgent:hover {
  --btn-bg: var(--lime-600);
  box-shadow: 0 20px 38px -14px rgba(104, 180, 45, 0.6);
}

.btn-teal {
  --btn-bg: var(--teal-600);
  box-shadow: var(--shadow-teal);
}

.btn-teal:hover {
  --btn-bg: var(--teal-700);
}

.btn-ghost {
  --btn-bg: transparent;
  --btn-fg: var(--teal-800);
  border-color: var(--teal-300);
}

.btn-ghost:hover {
  --btn-fg: var(--teal-900);
  border-color: var(--teal-600);
  background: var(--teal-50);
}

.btn-light {
  --btn-bg: #fff;
  --btn-fg: var(--teal-800);
  box-shadow: var(--shadow);
}

.btn-light:hover {
  --btn-fg: var(--coral-600);
}

.btn-x--lg {
  padding: 1.02rem 1.8rem;
  font-size: 1.01rem;
}

.btn-x--block {
  width: 100%;
}

.topbar {
  background: var(--teal-900);
  color: #cfe9d6;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  min-height: var(--bar-h);
}
.topbar .container-x {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--bar-h);
}
.topbar__msg {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.topbar__msg .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #57d08a;
  box-shadow: 0 0 0 3px rgba(87, 208, 138, 0.22);
  flex: none;
}
.topbar__links {
  display: inline-flex;
  align-items: center;
  gap: 1.4rem;
}
.topbar__links a {
  color: #eef7f1;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-weight: 600;
}
.topbar__links a:hover {
  color: #fff;
}
.topbar__links svg {
  width: 14px;
  height: 14px;
  opacity: 0.8;
}

@media (max-width: 720px) {
  .topbar__msg span.hide-sm {
    display: none;
  }
  .topbar__links a.hide-sm {
    display: none;
  }
}
.nav-x {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: saturate(1.4) blur(12px);
  -webkit-backdrop-filter: saturate(1.4) blur(12px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}
.nav-x.is-scrolled {
  box-shadow: var(--shadow-sm);
  background: rgba(255, 255, 255, 0.95);
}
.nav-x .container-x {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 76px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}

.brand img, .brand svg {
  height: 44px;
  width: auto;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-links a {
  display: inline-block;
  padding: 0.55rem 0.85rem;
  border-radius: 999px;
  color: var(--ink);
  font-weight: 600;
  font-size: 0.96rem;
  position: relative;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--teal-700);
  background: var(--teal-50);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.nav-phone {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-weight: 700;
  color: var(--teal-800);
}

.nav-phone svg {
  width: 18px;
  height: 18px;
  color: var(--coral-600);
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--teal-900);
}

.nav-toggle svg {
  width: 28px;
  height: 28px;
}

@media (max-width: 992px) {
  .nav-toggle {
    display: inline-flex;
  }
  /* backdrop-filter creates a containing block that would trap the fixed
     menu inside the header — disable it on mobile so the panel anchors to
     the viewport and renders fully opaque. */
  .nav-x {
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
    background: rgba(255, 255, 255, 0.97);
  }
  .nav-x.is-scrolled {
    background: #fff;
  }
  .nav-links {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(86vw, 360px);
    flex-direction: column;
    align-items: stretch;
    gap: 0.2rem;
    background: #fff;
    padding: 5.5rem 1.4rem 2rem;
    box-shadow: var(--shadow-lg);
    transform: translateX(100%);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  }
  .nav-links.open {
    transform: translateX(0);
  }
  .nav-links a {
    padding: 0.85rem 1rem;
    font-size: 1.05rem;
    border-radius: var(--radius-sm);
  }
  .nav-links .nav-mobile-cta {
    margin-top: 1rem;
  }
  .nav-phone span {
    display: none;
  }
  body.nav-open {
    overflow: hidden;
  }
  .nav-scrim {
    position: fixed;
    inset: 0;
    background: rgba(8, 47, 55, 0.4);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s;
    z-index: 999;
  }
  .nav-scrim.show {
    opacity: 1;
    pointer-events: auto;
  }
}
@media (min-width: 993px) {
  .nav-mobile-cta, .nav-mobile-only {
    display: none !important;
  }
}
.to-top {
  position: fixed;
  right: clamp(1rem, 3vw, 2rem);
  bottom: clamp(1rem, 3vw, 2rem);
  z-index: 900;
  width: 46px;
  height: 46px;
  border-radius: 50%;
  border: 0;
  cursor: pointer;
  background: var(--teal-600);
  color: #fff;
  box-shadow: var(--shadow);
  display: grid;
  place-items: center;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s ease;
}
.to-top svg {
  width: 22px;
  height: 22px;
}
.to-top.show {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
.to-top:hover {
  background: var(--teal-700);
}

.hero {
  position: relative;
  background: var(--teal-900);
  color: #eaf7ee;
  overflow: clip;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  background: radial-gradient(55% 60% at 88% 8%, rgba(104, 180, 45, 0.18), transparent 60%), radial-gradient(50% 70% at 0% 100%, rgba(46, 125, 70, 0.35), transparent 60%);
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(1.5rem, 4vw, 3.5rem);
  align-items: center;
  padding-block: clamp(2.6rem, 6vw, 5rem) clamp(1.6rem, 3vw, 2.4rem);
}

.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  padding: 0.35rem 0.7rem 0.35rem 0.4rem;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-sm);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #eaf7ee;
  margin-bottom: 1.4rem;
}

.hero__eyebrow .pill {
  background: var(--lime);
  color: var(--teal-900);
  font-weight: 700;
  font-size: 0.68rem;
  padding: 0.22rem 0.5rem;
  border-radius: 3px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero h1 {
  color: #fff;
  margin-bottom: 0.9rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--lime);
}

.hero__lead {
  font-size: 1.16rem;
  color: #cfe9d6;
  max-width: 46ch;
  margin-bottom: 1.8rem;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  align-items: center;
}

.hero__media {
  position: relative;
}

.hero__media img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  width: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
  position: relative;
}

.hero__media::after {
  content: "";
  position: absolute;
  inset: auto auto -16px -16px;
  width: 46%;
  height: 56%;
  background: var(--lime);
  border-radius: var(--radius);
  z-index: -1;
}

.hero__stats {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-bottom: clamp(2.4rem, 5vw, 4rem);
}

.hero__stats > div {
  padding: 1.3rem 1.1rem 0;
  border-left: 1px solid rgba(255, 255, 255, 0.1);
}

.hero__stats > div:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero__stats strong {
  display: block;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.5rem, 2.6vw, 2.1rem);
  color: #fff;
  line-height: 1;
}

.hero__stats strong span {
  color: var(--lime);
}

.hero__stats em {
  display: block;
  margin-top: 0.5rem;
  font-style: normal;
  font-family: var(--font-mono);
  font-size: 0.68rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: #a9d3b6;
  line-height: 1.4;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
  }
  .hero__media {
    order: -1;
    max-width: 460px;
  }
  .hero__media img {
    aspect-ratio: 16/11;
  }
}
@media (max-width: 620px) {
  .hero__stats {
    grid-template-columns: 1fr 1fr;
    gap: 1px 0;
  }
  .hero__stats > div {
    padding: 1.1rem 1rem;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }
  .hero__stats > div:nth-child(odd) {
    border-left: 0;
    padding-left: 0;
  }
}
.stats {
  background: #fff;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}

.stats__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--line-soft);
}

.stat {
  background: #fff;
  padding: 1.8rem var(--gutter);
  text-align: center;
}

.stat__num {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: clamp(1.8rem, 3vw, 2.5rem);
  color: var(--teal-700);
  line-height: 1;
  margin-bottom: 0.35rem;
}

.stat__num span {
  color: var(--lime-600);
}

.stat__label {
  font-family: var(--font-mono);
  font-size: 0.72rem;
  color: var(--slate);
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

@media (max-width: 760px) {
  .stats__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.section-head {
  margin-bottom: clamp(2rem, 4vw, 3.2rem);
}

.section-head.center {
  text-align: center;
  max-width: 720px;
  margin-inline: auto;
}

.section-head p {
  color: var(--slate);
  font-size: 1.08rem;
  margin-bottom: 0;
}

.section-head.center .eyebrow::before {
  display: none;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 1rem;
}

@media (max-width: 900px) {
  .trust-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}
@media (max-width: 520px) {
  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
.trust-badge {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 0.7rem;
  padding: 1.3rem 0.8rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

.trust-badge:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.trust-badge .ic {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  transition: background 0.25s, color 0.25s;
}

.trust-badge:hover .ic {
  background: var(--teal-600);
  color: #fff;
}

.trust-badge .ic svg {
  width: 25px;
  height: 25px;
}

.trust-badge span {
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--teal-900);
  line-height: 1.3;
}

.svc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .svc-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 600px) {
  .svc-grid {
    grid-template-columns: 1fr;
  }
}
.svc-grid--2 {
  grid-template-columns: repeat(2, 1fr);
  max-width: 880px;
  margin-inline: auto;
}

@media (max-width: 600px) {
  .svc-grid--2 {
    grid-template-columns: 1fr;
  }
}
.svc-photobg {
  position: relative;
  background: #fff;
  isolation: isolate;
}

.svc-photobg::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: url("/images/office/marijuana-clinic-reception.webp") center/cover no-repeat;
  opacity: 0.5;
}

@media (max-width: 767px) {
  .svc-photobg::before {
    display: none;
  }
}
.svc-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
  overflow: hidden;
}

.svc-card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 4px;
  background: var(--lime);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}

.svc-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
  border-color: transparent;
}

.svc-card:hover::before {
  transform: scaleX(1);
}

.svc-card__ic {
  width: 54px;
  height: 54px;
  border-radius: var(--radius-sm);
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  transition: background 0.25s, color 0.25s;
}

.svc-card:hover .svc-card__ic {
  background: var(--teal-600);
  color: #fff;
}

.svc-card__ic svg {
  width: 28px;
  height: 28px;
}

.svc-card h3 {
  font-size: 1.28rem;
  margin-bottom: 0.5rem;
}

.svc-card p {
  color: var(--slate);
  font-size: 0.97rem;
  margin-bottom: 0;
}

.svc-card .tag {
  position: absolute;
  top: 1.2rem;
  right: 1.2rem;
  font-family: var(--font-mono);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-700);
  background: var(--teal-50);
  padding: 0.22rem 0.5rem;
  border-radius: 3px;
}

.chips {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  background: #fff;
  border: 1px solid var(--line);
  padding: 0.55rem 1rem;
  border-radius: 999px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--teal-800);
}

.chip svg {
  width: 15px;
  height: 15px;
  color: var(--coral-500);
}

.chip:hover {
  border-color: var(--teal-300);
  background: var(--teal-50);
}

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.6rem;
  counter-reset: step;
}

.steps--4 {
  grid-template-columns: repeat(4, 1fr);
}

@media (max-width: 1000px) {
  .steps--4 {
    grid-template-columns: repeat(2, 1fr);
  }
}
@media (max-width: 820px) {
  .steps {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
}
@media (max-width: 560px) {
  .steps--4 {
    grid-template-columns: 1fr;
  }
}
.step {
  position: relative;
  padding: 1.8rem 1.6rem 1.6rem;
  background: #fff;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}

.step__n {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 2.6rem;
  color: var(--teal-100);
  line-height: 1;
  position: absolute;
  top: 1rem;
  right: 1.3rem;
}

.step__ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--coral-50);
  color: var(--coral-600);
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
}

.step__ic svg {
  width: 26px;
  height: 26px;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 0.4rem;
}

.step p {
  color: var(--slate);
  font-size: 0.95rem;
  margin-bottom: 0;
}

.price-card {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  border: 1px solid var(--line);
}

@media (max-width: 760px) {
  .price-card {
    grid-template-columns: 1fr;
  }
}
.price-amount-side {
  position: relative;
  background: var(--teal-800);
  color: #eaf7ee;
  padding: clamp(2rem, 4vw, 3rem);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.price-amount-side::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(70% 80% at 50% 0%, rgba(104, 180, 45, 0.2), transparent 60%);
}

.price-badge {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--lime);
  color: var(--teal-900);
  font-family: var(--font-mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 0.32rem 0.7rem;
  border-radius: 3px;
  margin-bottom: 1.1rem;
}

.price-amount {
  position: relative;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 0.95;
  font-size: clamp(3.6rem, 8vw, 5.4rem);
  color: #fff;
}

.price-amount sup {
  font-size: 0.42em;
  vertical-align: 0.9em;
  font-weight: 500;
  margin-right: 0.04em;
}

.price-per {
  position: relative;
  font-family: var(--font-mono);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #a9d3b6;
  margin-top: 0.4rem;
}

.price-sub {
  position: relative;
  margin-top: 1rem;
  font-size: 0.96rem;
  color: #d3ecdb;
  max-width: 26ch;
}

.price-body {
  padding: clamp(1.8rem, 4vw, 2.6rem);
}

.price-body h3 {
  font-size: 1.5rem;
  margin-bottom: 1.1rem;
}

.price-list {
  list-style: none;
  margin: 0 0 1.4rem;
  padding: 0;
  display: grid;
  gap: 0.85rem;
}

.price-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  font-size: 1.02rem;
}

.price-list li .tick {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--coral-50);
  color: var(--coral-600);
  display: grid;
  place-items: center;
  flex: none;
  margin-top: 0.1rem;
}

.price-list li .tick svg {
  width: 14px;
  height: 14px;
}

.price-list li b {
  color: var(--teal-900);
}

.price-fine {
  font-size: 0.88rem;
  color: var(--slate);
  border-top: 1px solid var(--line-soft);
  padding-top: 1.1rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 150px;
  gap: 14px;
}

.gallery a {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  display: block;
  box-shadow: var(--shadow-sm);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.gallery a:hover img {
  transform: scale(1.07);
}

.gallery a::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(8, 47, 55, 0.35), transparent 55%);
  opacity: 0;
  transition: opacity 0.3s;
}

.gallery a:hover::after {
  opacity: 1;
}

.g-tall {
  grid-row: span 2;
}

.g-wide {
  grid-column: span 2;
}

.g-feat {
  grid-column: span 2;
  grid-row: span 2;
}

@media (max-width: 900px) {
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 120px;
  }
  .g-feat {
    grid-column: span 2;
    grid-row: span 2;
  }
}
@media (max-width: 560px) {
  .gallery {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 130px;
  }
  .g-feat, .g-wide {
    grid-column: span 2;
    grid-row: span 1;
  }
  .g-tall {
    grid-row: span 1;
  }
}
.tcards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

@media (max-width: 900px) {
  .tcards {
    grid-template-columns: 1fr;
    max-width: 620px;
    margin-inline: auto;
  }
}
.tcard {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.7rem;
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.tcard:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.tcard__stars {
  display: flex;
  gap: 0.18rem;
  color: var(--gold-500);
}

.tcard__stars svg {
  width: 18px;
  height: 18px;
}

.tcard__quote {
  color: var(--ink);
  font-size: 1.02rem;
  line-height: 1.6;
  margin: 0;
}

.tcard__who {
  display: flex;
  align-items: center;
  gap: 0.8rem;
  margin-top: auto;
  padding-top: 0.3rem;
}

.tcard__avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: var(--teal-600);
  color: #fff;
  display: grid;
  place-items: center;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
  flex: none;
}

.tcard__name {
  font-weight: 700;
  color: var(--teal-900);
  line-height: 1.2;
}

.tcard__meta {
  font-size: 0.82rem;
  color: var(--slate-400);
}

.faq {
  max-width: 820px;
  margin-inline: auto;
  display: grid;
  gap: 0.9rem;
}

.faq__item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq__item[open] {
  border-color: var(--teal-300);
  box-shadow: var(--shadow-sm);
}

.faq__q {
  list-style: none;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.15rem 1.4rem;
  font-family: var(--font-display);
  font-weight: 500;
  font-size: 1.12rem;
  color: var(--teal-900);
}

.faq__q::-webkit-details-marker {
  display: none;
}

.faq__q:hover {
  color: var(--teal-700);
}

.faq__q .chev {
  width: 22px;
  height: 22px;
  color: var(--coral-600);
  flex: none;
  transition: transform 0.25s ease;
}

.faq__item[open] .faq__q .chev {
  transform: rotate(180deg);
}

.faq__a {
  padding: 0 1.4rem 1.3rem;
  color: var(--slate);
}

.faq__a p {
  margin: 0 0 0.8rem;
}

.faq__a p:last-child {
  margin-bottom: 0;
}

.faq__a a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.faq__a a:hover {
  color: var(--coral-600);
}

.locate {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  background: #fff;
}

@media (max-width: 880px) {
  .locate {
    grid-template-columns: 1fr;
  }
}
.locate__info {
  padding: clamp(1.8rem, 4vw, 3rem);
}

.locate__map {
  min-height: 360px;
}

.locate__map iframe {
  width: 100%;
  height: 100%;
  min-height: 360px;
  border: 0;
  display: block;
  filter: saturate(1.05);
}

.info-row {
  display: flex;
  gap: 0.9rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line-soft);
}

.info-row:last-child {
  border-bottom: 0;
}

.info-row .ic {
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  flex: none;
}

.info-row .ic svg {
  width: 22px;
  height: 22px;
}

.info-row .lbl {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--slate-400);
  font-weight: 700;
  margin-bottom: 0.15rem;
}

.info-row .val {
  font-weight: 600;
  color: var(--teal-900);
}

.info-row .val a {
  color: var(--teal-900);
}

.info-row .val a:hover {
  color: var(--coral-600);
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 0.4rem;
}

.hours-table td {
  padding: 0.5rem 0;
  font-size: 0.95rem;
  border-bottom: 1px dashed var(--line);
}

.hours-table tr:last-child td {
  border-bottom: 0;
}

.hours-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--teal-800);
}

.hours-table .closed td:last-child {
  color: var(--slate-400);
  font-weight: 600;
}

.affil {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
  text-align: center;
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
}

.affil__txt {
  color: var(--teal-800);
  font-weight: 600;
}

.affil__txt b {
  color: var(--teal-900);
}

.affil-note {
  text-align: center;
  font-size: 0.82rem;
  line-height: 1.6;
  color: var(--slate-400);
  max-width: 62ch;
  margin: 1.6rem auto 0;
}

.affil-note strong {
  color: var(--slate);
  font-weight: 600;
}

.cta-band {
  position: relative;
  background: var(--teal-800);
  color: #e6f3ea;
  overflow: hidden;
  border-radius: var(--radius-xl);
}

.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(50% 80% at 100% 0%, rgba(104, 180, 45, 0.22), transparent 60%), radial-gradient(60% 90% at 0% 100%, rgba(46, 125, 70, 0.45), transparent 60%);
}

.cta-band__inner {
  position: relative;
  padding: clamp(2.4rem, 5vw, 4rem);
  display: grid;
  grid-template-columns: 1.4fr auto;
  gap: 2rem;
  align-items: center;
}

@media (max-width: 800px) {
  .cta-band__inner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .cta-band .hero__cta {
    justify-content: center;
  }
}
.cta-band h2 {
  color: #fff;
  margin-bottom: 0.6rem;
}

.cta-band p {
  color: #c8e6cf;
  margin-bottom: 0;
  font-size: 1.08rem;
}

.footer {
  background: var(--teal-900);
  color: #aecdb6;
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.5rem;
}

.footer a {
  color: #cfe9d6;
}

.footer a:hover {
  color: #fff;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 2.2rem;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

@media (max-width: 820px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 1.8rem;
  }
}
@media (max-width: 480px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand img, .footer__brand svg {
  height: 48px;
  margin-bottom: 1rem;
}

.footer__brand p {
  font-size: 0.94rem;
  color: #9ec3a6;
  max-width: 32ch;
}

.footer h4 {
  color: #fff;
  font-family: var(--font-body);
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 1.1rem;
}

.footer ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0.6rem;
}

.footer ul a {
  font-size: 0.96rem;
}

.footer__contact .row {
  display: flex;
  gap: 0.6rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
  font-size: 0.95rem;
}

.footer__contact svg {
  width: 17px;
  height: 17px;
  color: var(--gold-500);
  margin-top: 0.2rem;
  flex: none;
}

.footer__bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding-top: 1.5rem;
  font-size: 0.85rem;
  color: #7fa389;
}

.footer__bottom a {
  color: #a2c5a9;
}

.footer__legal {
  display: flex;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.footer__disclaimer {
  font-size: 0.8rem;
  color: #7fa389;
  max-width: 70ch;
  margin-top: 1rem;
  line-height: 1.6;
}

.footer__credit {
  text-align: center;
  font-size: 0.8rem;
  color: #7fa389;
  margin: 1.2rem 0 0;
  padding-top: 1.2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__credit a {
  color: #a2c5a9;
  font-weight: 600;
}

.form-wrap {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.6rem);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.1rem 1.2rem;
}

.form-grid .full {
  grid-column: 1/-1;
}

@media (max-width: 560px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}
.field label {
  display: block;
  font-size: 0.86rem;
  font-weight: 700;
  color: var(--teal-900);
  margin-bottom: 0.4rem;
}

.field label .req {
  color: var(--coral-500);
}

.field .form-control, .field .form-select {
  width: 100%;
  padding: 0.85rem 1rem;
  border: 1.5px solid var(--line);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--ink);
  background: var(--shell);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.field .form-control:focus, .field .form-select:focus {
  outline: none;
  border-color: var(--teal-500);
  box-shadow: 0 0 0 3px rgba(46, 125, 70, 0.18);
  background: #fff;
}

.field textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.field .help-block {
  font-size: 0.82rem;
  color: var(--coral-600);
  margin-top: 0.35rem;
}

.form-note {
  font-size: 0.84rem;
  color: var(--slate);
  margin-top: 1rem;
  display: flex;
  gap: 0.5rem;
  align-items: flex-start;
}

.form-note svg {
  width: 16px;
  height: 16px;
  color: var(--teal-500);
  margin-top: 0.15rem;
  flex: none;
}

.has-error .form-control, .has-error .form-select {
  border-color: var(--coral-400);
}

.contact-split {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  align-items: start;
}

@media (max-width: 900px) {
  .contact-split {
    grid-template-columns: 1fr;
  }
}
.contact-aside .info-card {
  background: var(--teal-900);
  color: #cfe9d6;
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 4vw, 2.4rem);
}

.contact-aside .info-card h3 {
  color: #fff;
}

.contact-aside .info-card .info-row {
  border-color: rgba(255, 255, 255, 0.12);
}

.contact-aside .info-card .info-row .ic {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
}

.contact-aside .info-card .info-row .lbl {
  color: #9ec3a6;
}

.contact-aside .info-card .info-row .val, .contact-aside .info-card .info-row .val a {
  color: #fff;
}

.ty {
  min-height: 64vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding-block: 4rem;
}

.ty__badge {
  width: 92px;
  height: 92px;
  border-radius: 50%;
  background: var(--teal-50);
  color: var(--teal-600);
  display: grid;
  place-items: center;
  margin: 0 auto 1.6rem;
  box-shadow: 0 0 0 10px rgba(14, 108, 126, 0.06);
}

.ty__badge svg {
  width: 48px;
  height: 48px;
}

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
    scroll-behavior: auto !important;
  }
}
.legal-hero {
  background: var(--teal-50);
  border-bottom: 1px solid var(--teal-100);
}

.legal-hero .container-x {
  padding-block: clamp(2.4rem, 5vw, 3.6rem);
}

.legal-hero h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.4rem;
}

.legal-meta {
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 600;
}

.legal-meta span {
  color: var(--teal-700);
}

.draft-banner {
  display: flex;
  gap: 0.8rem;
  align-items: flex-start;
  background: var(--coral-50);
  border: 1px solid #f5cfca;
  border-left: 4px solid var(--coral-500);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: #7a2c23;
}

.draft-banner svg {
  width: 20px;
  height: 20px;
  color: var(--coral-600);
  flex: none;
  margin-top: 0.15rem;
}

.draft-banner b {
  color: var(--coral-600);
}

.prose {
  max-width: 78ch;
  margin-inline: auto;
}

.prose > p:first-of-type {
  font-size: 1.1rem;
  color: var(--slate);
}

.prose h2 {
  font-size: clamp(1.4rem, 2.6vw, 1.7rem);
  margin-top: 2.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--line-soft);
}

.prose h2:first-of-type {
  border-top: 0;
  padding-top: 0;
  margin-top: 1.6rem;
}

.prose h3 {
  font-size: 1.18rem;
  margin-top: 1.6rem;
  color: var(--teal-800);
}

.prose p, .prose li {
  color: var(--ink);
}

.prose ul, .prose ol {
  padding-left: 1.3rem;
  margin-bottom: 1.1rem;
}

.prose li {
  margin-bottom: 0.5rem;
}

.prose a {
  color: var(--teal-700);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.prose a:hover {
  color: var(--coral-600);
}

.prose .ph {
  background: #fff7e9;
  border-bottom: 1px dashed var(--gold-500);
  padding: 0 0.25rem;
  font-weight: 600;
  color: var(--gold-600);
  border-radius: 3px;
}

.prose .callout {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.2rem;
  margin: 1.2rem 0;
}

.prose .callout.emergency {
  background: var(--coral-50);
  border-color: #f5cfca;
  color: #7a2c23;
}

.prose .callout.emergency b {
  color: var(--coral-600);
}

.legal-toc {
  background: var(--mist);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.3rem 1.5rem;
  margin-bottom: 2.2rem;
}

.legal-toc h2 {
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--slate-400);
  margin: 0 0 0.8rem;
  border: 0 !important;
  padding: 0 !important;
  font-family: var(--font-body);
}

.legal-toc ol {
  columns: 2;
  column-gap: 2rem;
  margin: 0;
  padding-left: 1.2rem;
}

@media (max-width: 560px) {
  .legal-toc ol {
    columns: 1;
  }
}
.legal-toc li {
  margin-bottom: 0.4rem;
}

.lead {
  font-size: 1.16rem;
  color: var(--slate);
}

.mt-0 {
  margin-top: 0;
}

.mb-0 {
  margin-bottom: 0;
}

.stack > * + * {
  margin-top: 1rem;
}

.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: 0;
}

.badge-soft {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8rem;
  font-weight: 700;
  color: var(--teal-700);
  background: var(--teal-50);
  border: 1px solid var(--teal-100);
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
}

.badge-soft svg {
  width: 14px;
  height: 14px;
}

.text-coral {
  color: var(--coral-600);
}

.text-teal {
  color: var(--teal-700);
}

.ilink {
  color: var(--coral-600);
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.ilink:hover {
  color: var(--red-700);
  text-decoration: none;
}

.skip-nav {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 2000;
  background: var(--teal-900);
  color: #fff;
  padding: 0.75rem 1.15rem;
  border-radius: 0 0 8px 0;
  font-weight: 700;
  box-shadow: var(--shadow);
}

.skip-nav:focus {
  left: 0;
}
