@import url("https://fonts.googleapis.com/css2?family=Lora:wght@400;500&family=Manrope:wght@400;500;600&display=swap");

/* ==========================================================================
   1. Template Design Controls
   Edit this section when adapting the template for a new business.
   The HTML skeleton and JS composer can stay the same.
   ========================================================================== */

:root {
  /* Colors */
  --color-page: #f7f9fc;
  --color-section-alt: #eef3f8;
  --color-surface: #ffffff;
  --color-surface-2: #f2f6fa;
  --color-ink: #172033;
  --color-muted: #657184;
  --color-line: #d8e0ea;

  --color-brand: #2563eb;
  --color-brand-dark: #111827;
  --color-brand-hover: #1d4ed8;
  --color-accent: #0f766e;
  --color-accent-soft: rgba(15, 118, 110, 0.12);
  --color-blue: var(--color-accent);
  --color-blue-soft: var(--color-accent-soft);
  --color-on-brand: #ffffff;

  /* Typography */
  --font-display: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Segoe UI", Roboto, Helvetica, Arial, sans-serif;

  /* Layout */
  --site-width: 1120px;
  --gutter: 24px;
  --section-space: 88px;
  --header-space: 16px;

  /* Shape */
  --radius: 8px;
  --button-radius: 6px;
}

/* ==========================================================================
   2. Base Defaults
   Browser-level defaults and document-wide behavior.
   ========================================================================== */

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  background: var(--color-page);
  color: var(--color-ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
}

body.modal-open {
  overflow: hidden;
}

a {
  color: inherit;
}

/* ==========================================================================
   3. Layout Primitives
   Reusable structure used by headers, footers, and sections.
   ========================================================================== */

.inner {
  width: min(var(--site-width), 100%);
  margin: 0 auto;
}

.site-header,
.site-footer,
.section,
.hero {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
}

.section {
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--color-page);
}

.section:nth-of-type(even) {
  background: var(--color-section-alt);
}

.section + .section {
  border-top: 1px solid var(--color-line);
}

/* ==========================================================================
   4. Typography
   Shared heading and copy rules across page sections.
   ========================================================================== */

.hero h1,
.section h1,
.section h2 {
  max-width: 720px;
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-weight: 760;
  line-height: 1.08;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 980px;
  font-size: clamp(2.7rem, 4.4vw, 4.75rem);
}

.section h1,
.section h2 {
  font-size: clamp(2.15rem, 4.2vw, 3.65rem);
}

.hero p,
.section p {
  max-width: 680px;
  margin: 0;
  color: var(--color-muted);
}

.text-accent {
  color: var(--color-accent);
}

.section-eyebrow {
  margin-bottom: 10px;
  color: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero p + p,
.section p + p {
  margin-top: 12px;
}

.section-list {
  max-width: 680px;
  margin: 16px 0 0;
  padding-left: 22px;
  color: var(--color-muted);
}

.section-list li::marker,
.service-bullets li::marker {
  color: var(--color-blue);
}

.section-list + p {
  margin-top: 16px;
}

.section-heading-row {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(24px, 5vw, 64px);
}

.section-heading-row h2 {
  margin-bottom: 0;
}

.section-heading-row .section-lede {
  max-width: 520px;
  justify-self: end;
}

.section-heading-stack {
  max-width: none;
}

.section-heading-stack h2 {
  max-width: 1040px;
  font-size: clamp(2.8rem, 5vw, 4.85rem);
}

.section-heading-stack .section-lede {
  margin-top: 18px;
  max-width: 680px;
}

.section-heading-center {
  margin-right: auto;
  margin-left: auto;
  text-align: center;
}

.section-heading-center h2,
.section-heading-center .section-eyebrow {
  margin-right: auto;
  margin-left: auto;
}

.section-copy-stack {
  display: grid;
  gap: 12px;
}

.section-copy-stack p {
  max-width: none;
}

.section-outro {
  max-width: 720px;
  margin: 28px auto 0;
  text-align: center;
}

.card-kicker {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--color-blue);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

/* ==========================================================================
   5. Site Header
   Top navigation and brand treatment.
   ========================================================================== */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  padding-top: var(--header-space);
  padding-bottom: var(--header-space);
  background: rgba(255, 255, 255, 0.94);
  border-bottom: 1px solid var(--color-line);
  box-shadow: 0 10px 28px rgba(23, 32, 51, 0.06);
  backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--color-ink);
  font-size: 0.9rem;
  font-weight: 700;
  text-decoration: none;
}

.brand-mark {
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  display: inline-grid;
  place-items: center;
  background: var(--color-brand);
  border-radius: var(--radius);
  color: var(--color-on-brand);
  font-size: 0.68rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: 54px;
  display: block;
}

.isolated-nav {
  justify-content: center;
}

.isolated-nav .brand {
  margin: 0 auto;
}

.nav-links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
  margin-left: auto;
}

.nav-links a,
.nav-dropdown summary {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.nav-links a:hover,
.nav-dropdown summary:hover,
.nav-dropdown[open] summary {
  color: var(--color-blue);
}

.nav-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
}

.nav-dropdown summary {
  gap: 8px;
  cursor: pointer;
  list-style: none;
}

.nav-dropdown summary::-webkit-details-marker {
  display: none;
}

.nav-dropdown summary::after {
  content: "";
  width: 6px;
  height: 6px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: rotate(45deg);
  transform-origin: center;
  margin-top: -4px;
}

.nav-dropdown-menu {
  position: absolute;
  top: calc(100% + 18px);
  left: 0;
  z-index: 80;
  min-width: 230px;
  display: grid;
  gap: 2px;
  padding: 8px;
  background: rgba(255, 255, 255, 0.98);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 46px rgba(23, 32, 51, 0.14);
}

.nav-dropdown-menu a {
  padding: 10px 12px;
  border-radius: 4px;
  white-space: nowrap;
}

.nav-dropdown-menu a:hover {
  color: var(--color-blue);
  background: var(--color-accent-soft);
}

.nav-action .button {
  margin-top: 0;
  padding: 9px 12px;
  font-size: 0.72rem;
}

.nav-toggle {
  width: 42px;
  height: 42px;
  display: none;
  place-items: center;
  padding: 0;
  background: transparent;
  border: 1px solid var(--color-line);
  border-radius: 4px;
  color: var(--color-ink);
  cursor: pointer;
}

.nav-toggle span {
  width: 18px;
  height: 2px;
  display: block;
  grid-area: 1 / 1;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.nav-toggle span:nth-child(1) {
  transform: translateY(-6px);
}

.nav-toggle span:nth-child(3) {
  transform: translateY(6px);
}

.nav.nav-open .nav-toggle span:nth-child(1) {
  transform: rotate(45deg);
}

.nav.nav-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .nav-toggle span:nth-child(3) {
  transform: rotate(-45deg);
}

/* ==========================================================================
   6. Hero
   First major page section.
   ========================================================================== */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: var(--section-space);
  padding-bottom: var(--section-space);
  background: var(--color-section-alt);
}

.hero-image-ready {
  --hero-image: none;
  --hero-image-position: center;
  --hero-overlay:
    linear-gradient(90deg, rgba(17, 24, 39, 0.82), rgba(17, 24, 39, 0.5) 48%, rgba(17, 24, 39, 0.7));
}

.hero-image-ready.hero-with-image {
  min-height: clamp(620px, 88vh, 860px);
  display: flex;
  align-items: center;
  background-color: var(--color-brand-dark);
  color: var(--color-on-brand);
}

.hero-image-ready.hero-with-image::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: var(--hero-overlay);
  pointer-events: none;
}

.hero-background-image {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: var(--hero-image-position);
}

.hero-image-ready.hero-with-image .inner {
  position: relative;
  z-index: 2;
}

.hero-image-ready.hero-with-image h1 {
  text-shadow: 0 4px 24px rgba(0, 0, 0, 0.28);
}

.hero-image-ready.hero-with-image p {
  color: rgba(255, 255, 255, 0.82);
}

.home-hero .inner {
  padding-top: 52px;
  padding-bottom: 52px;
}

.home-hero p:not(.section-eyebrow) {
  max-width: 600px;
  font-size: 0.98rem;
  line-height: 1.5;
}

.hero:not(.home-hero) h1 {
  max-width: 1040px;
  font-size: clamp(2.55rem, 4.6vw, 4.65rem);
}

.hero:not(.home-hero) p:not(.section-eyebrow) {
  max-width: 640px;
  font-size: 1rem;
  line-height: 1.55;
}

.hero-title-line {
  display: block;
  max-width: 100%;
  white-space: nowrap;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.text-link {
  margin-top: 24px;
  color: var(--color-ink);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.06em;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link:hover {
  color: var(--color-blue);
}

/* ==========================================================================
   7. Trust Strip
   Compact proof points that can move independently from the hero.
   ========================================================================== */

.trust-strip {
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  border-bottom: 1px solid var(--color-line);
}

.trust-strip-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  padding-top: 18px;
  padding-bottom: 18px;
  color: var(--color-muted);
  font-size: 0.74rem;
  font-weight: 760;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.trust-strip-grid span::before {
  content: "";
  width: 6px;
  height: 6px;
  display: inline-block;
  margin-right: 8px;
  background: var(--color-blue);
  border-radius: 50%;
}

/* ==========================================================================
   8. Buttons
   Reusable call-to-action styling.
   ========================================================================== */

.button {
  display: inline-block;
  margin-top: 24px;
  padding: 13px 18px;
  background: var(--color-brand);
  border: 0;
  border-radius: var(--button-radius);
  color: var(--color-on-brand);
  cursor: pointer;
  font: 760 0.78rem/1 var(--font-body);
  letter-spacing: 0.05em;
  text-decoration: none;
  text-transform: uppercase;
  box-shadow: 0 12px 28px rgba(37, 99, 235, 0.22);
}

.button:hover {
  background: var(--color-brand-hover);
}

.button-secondary {
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  color: var(--color-ink);
  box-shadow: none;
}

.button-secondary:hover {
  background: var(--color-surface-2);
  border-color: var(--color-brand);
  color: var(--color-brand);
}

/* ==========================================================================
   9. Service Cards
   Default service-grid component.
   ========================================================================== */

.service-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 28px;
}

.service-item {
  display: block;
  overflow: hidden;
  padding: 0 0 28px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
  color: inherit;
  text-decoration: none;
  box-shadow: 0 14px 34px rgba(23, 32, 51, 0.08);
}

.service-card-media {
  position: relative;
  overflow: hidden;
  margin-bottom: 24px;
}

.service-card-image {
  width: 100%;
  height: clamp(240px, 27vw, 340px);
  display: block;
  object-fit: cover;
}

.section-image {
  width: 100%;
  display: block;
  object-fit: cover;
  border-radius: var(--radius);
}

.section-image-large {
  min-height: clamp(360px, 46vw, 560px);
  height: 100%;
}

.section-image-portrait {
  object-position: center;
}

.service-card-placeholder {
  min-height: clamp(240px, 27vw, 340px);
  border: 0;
  border-radius: 0;
}

.service-card-badge {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  padding: 7px 12px;
  background: rgba(255, 255, 255, 0.92);
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-ink);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.service-item:hover {
  border-color: var(--color-brand);
  transform: translateY(-2px);
}

.service-item h3 {
  margin: 0 24px 14px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  line-height: 1.2;
}

.service-item p {
  margin-right: 24px;
  margin-left: 24px;
  font-size: 1rem;
  line-height: 1.65;
}

.service-bullets {
  display: grid;
  gap: 8px;
  margin: 20px 24px 0;
  padding: 0;
  color: var(--color-ink);
  list-style: none;
}

.service-bullets li::before {
  content: "";
  width: 7px;
  height: 7px;
  display: inline-block;
  margin-right: 10px;
  background: var(--color-accent);
  border-radius: 50%;
}

.card-link {
  display: inline-block;
  margin: 22px 24px 0;
  color: var(--color-blue);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.card-link::after {
  content: " ->";
}

.service-item:hover .card-link {
  color: var(--color-ink);
}

.section-lede {
  margin-top: 12px;
}

.section-media {
  max-width: 820px;
  margin: 28px 0 0;
}

.split-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  align-items: center;
  gap: clamp(36px, 6vw, 80px);
}

.split-copy {
  min-width: 0;
}

.split-media-right .split-copy {
  order: 1;
}

.split-media-right .media-collage {
  order: 2;
}

.split-copy h2 {
  max-width: 680px;
  font-size: clamp(2rem, 3.6vw, 3rem);
}

.service-detail-layout {
  align-items: center;
}

.service-detail-media img {
  width: 100%;
  max-height: 620px;
  object-fit: cover;
}

.detail-card {
  margin: 24px 0;
  padding: 22px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.detail-card .section-list {
  max-width: none;
  margin-top: 0;
}

.detail-card .section-list li + li {
  margin-top: 6px;
}

.media-collage {
  position: relative;
  min-height: 0;
}

.media-collage img {
  display: block;
  height: auto;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: 0 18px 42px rgba(23, 32, 51, 0.1);
}

.media-collage-main {
  width: 100%;
}

.service-note-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
  margin-top: 24px;
}

.service-note-grid article,
.faq-list details {
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.service-note-grid article {
  padding: 18px;
}

.service-note-grid h3 {
  margin: 0 0 12px;
  color: var(--color-blue);
  font-family: var(--font-body);
  font-size: 0.9rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.home-services h2 {
  max-width: 780px;
  font-size: clamp(2.35rem, 4.3vw, 4rem);
}

.home-services .section-list {
  margin-top: 0;
}

.section-media img {
  width: 100%;
  display: block;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

/* ==========================================================================
   10. Business Showcase
   Slogan section with a simple CSS-only carousel.
   ========================================================================== */

.home-business-showcase {
  overflow: hidden;
  background: var(--color-surface);
}

.home-business-showcase .inner {
  margin-bottom: 32px;
}

.showcase-title {
  width: 100%;
  max-width: 1040px;
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
}

.showcase-title span {
  display: block;
  white-space: nowrap;
}

.showcase-carousel {
  width: 100%;
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.showcase-track {
  width: max-content;
  display: flex;
  gap: 18px;
  padding-right: 18px;
  animation: showcase-scroll 34s linear infinite;
}

.showcase-slide {
  width: clamp(260px, 32vw, 430px);
  height: clamp(190px, 23vw, 310px);
  flex: 0 0 auto;
  display: grid;
  object-fit: cover;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

@keyframes showcase-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(calc(-50% - 9px));
  }
}

@media (prefers-reduced-motion: reduce) {
  .showcase-track {
    animation: none;
    overflow-x: auto;
  }
}

/* ==========================================================================
   11. Why Us
   Reason cards for trust-building points.
   ========================================================================== */

.benefit-list,
.reason-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 24px;
  padding: 0;
  list-style: none;
}

.benefit-card,
.reason-card {
  min-height: 190px;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.benefit-card h3,
.reason-card h3 {
  margin: 0 0 8px;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.benefit-card p,
.reason-card p {
  max-width: none;
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-benefit-list,
.about-reason-list {
  margin-top: 34px;
}

.service-benefit-list .benefit-card,
.about-reason-list .reason-card {
  min-height: 170px;
}

.home-benefits .section-heading-stack {
  max-width: none;
}

.home-benefits h2 {
  max-width: 1040px;
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
}

.home-benefits h2 .text-accent {
  white-space: nowrap;
}

.profile-layout {
  align-items: center;
}

.profile-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin-top: 28px;
}

.profile-stat-grid div {
  padding: 18px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 8px;
}

.profile-stat-grid strong {
  display: block;
  color: var(--color-ink);
  font-family: var(--font-display);
  font-size: 1.85rem;
  font-weight: 760;
  line-height: 1;
}

.profile-stat-grid span {
  display: block;
  margin-top: 8px;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 760;
  line-height: 1.25;
  text-transform: uppercase;
}

.home-why-us .reason-list {
  margin-top: 34px;
}

.home-why-us .section-heading-stack {
  max-width: none;
}

.home-why-us h2 {
  max-width: 1040px;
}

.home-why-us .section-outro {
  max-width: 980px;
  gap: 0;
}

.home-why-us .section-outro p + p {
  margin-top: 0;
}

/* ==========================================================================
   12. Reviews
   Placeholder area for a review integration embed.
   ========================================================================== */

.reviews-placeholder {
  margin-top: 34px;
}

.reviews-placeholder:has(.integration-placeholder) {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.reviews h2 {
  max-width: 1040px;
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
}

.reviews h2 .text-accent {
  white-space: nowrap;
}

.reviews-placeholder p {
  margin: 0;
  color: var(--color-muted);
}

/* ==========================================================================
   13. Availability
   Placeholder area for an interactive calendar embed.
   ========================================================================== */

.calendar-placeholder {
  margin-top: 34px;
}

.calendar-placeholder:has(.integration-placeholder) {
  min-height: 360px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.calendar-placeholder [data-vektor-scheduler],
.reviews-placeholder > * {
  width: 100%;
}

.schedule .schedule-subtext,
.schedule-modal .schedule-subtext {
  width: min(620px, 100%);
  margin: 22px auto 0;
  text-align: center;
  font-size: 0.95rem;
  line-height: 1.55;
}

.calendar-placeholder p {
  margin: 0;
  color: var(--color-muted);
}

.contact-layout {
  align-items: center;
}

.location-contact h2 {
  max-width: 560px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.map-placeholder {
  min-height: 420px;
  display: grid;
  place-items: center;
  margin-top: 0;
  padding: 0;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.map-placeholder iframe {
  width: 100%;
  min-height: 420px;
  border: 0;
  border-radius: calc(var(--radius) - 2px);
}

.contact-card {
  margin-top: 28px;
  padding: 22px;
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.media-placeholder {
  min-height: 280px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--color-surface-2);
  border: 1px dashed var(--color-line);
  border-radius: var(--radius);
  color: var(--color-muted);
  text-align: center;
}

.media-placeholder-large {
  min-height: clamp(360px, 46vw, 560px);
}

.media-placeholder span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.1em;
  line-height: 1;
  text-transform: uppercase;
}

.integration-placeholder {
  min-height: inherit;
  display: grid;
  place-items: center;
  width: 100%;
  padding: 24px;
  color: var(--color-muted);
}

.integration-placeholder-code {
  align-content: center;
  gap: 12px;
  text-align: center;
}

.integration-placeholder p {
  margin: 0;
}

.integration-placeholder code {
  max-width: 760px;
  display: block;
  padding: 12px;
  overflow-wrap: anywhere;
  background: var(--color-surface-2);
  border: 1px solid var(--color-line);
  border-radius: 6px;
  color: var(--color-muted);
  font-size: 0.74rem;
  line-height: 1.5;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
}

.contact-actions .button {
  margin-top: 24px;
}

.contact-details {
  display: grid;
  gap: 6px;
  margin-top: 0;
  color: var(--color-muted);
  font-style: normal;
}

.contact-details a {
  color: var(--color-blue);
}

.faq-layout {
  align-items: start;
}

.faq h2 {
  max-width: 560px;
  font-size: clamp(2.15rem, 4vw, 3.5rem);
}

.faq-list {
  display: grid;
  gap: 0;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  overflow: hidden;
}

.faq-list details {
  border: 0;
  border-radius: 0;
  border-bottom: 1px solid var(--color-line);
}

.faq-list details:last-child {
  border-bottom: 0;
}

.faq-list summary {
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--color-ink);
  font-weight: 760;
}

.faq-list summary::after {
  content: "+";
  flex: 0 0 auto;
  color: var(--color-blue);
  font-size: 1rem;
  font-weight: 760;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin-top: 12px;
}

.final-cta {
  position: relative;
  overflow: hidden;
  min-height: clamp(440px, 60vh, 660px);
  display: flex;
  align-items: center;
  text-align: center;
  background: var(--color-brand-dark);
  color: var(--color-on-brand);
}

.final-cta .hero-background-image {
  filter: brightness(0.42) saturate(0.82);
}

.final-cta::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: rgba(17, 24, 39, 0.9);
}

.final-cta .inner {
  position: relative;
  z-index: 2;
}

.final-cta h2,
.final-cta p {
  margin-right: auto;
  margin-left: auto;
}

.final-cta p {
  color: rgba(255, 255, 255, 0.78);
}

.final-cta h2 {
  max-width: 1040px;
  font-size: clamp(2.35rem, 4.5vw, 4.35rem);
}

.final-cta h2 .text-accent {
  white-space: nowrap;
}

.final-cta-content {
  text-align: center;
}

/* ==========================================================================
   14. Legal Pages
   Long-form legal documents that live directly inside page files.
   ========================================================================== */

.legal-page {
  padding: var(--section-space) var(--gutter);
  background: var(--color-page);
}

.legal-document {
  width: min(820px, 100%);
  margin: 0 auto;
  padding: clamp(24px, 5vw, 56px);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.legal-document h1 {
  margin: 0 0 24px;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.2vw, 3.2rem);
  line-height: 1.1;
}

.legal-document h2 {
  margin: 40px 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.25rem, 3vw, 1.65rem);
  line-height: 1.2;
}

.legal-document p,
.legal-document li {
  color: var(--color-muted);
}

.legal-document p {
  margin: 0 0 12px;
}

.legal-document ul {
  margin: 0 0 16px;
  padding-left: 22px;
}

.legal-meta {
  display: grid;
  gap: 12px;
  margin: 0 0 40px;
  padding: 20px;
  background: var(--color-surface-2);
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
}

.legal-meta div {
  display: grid;
  grid-template-columns: minmax(140px, 0.35fr) 1fr;
  gap: 12px;
}

.legal-meta dt {
  color: var(--color-ink);
  font-weight: 700;
}

.legal-meta dd {
  margin: 0;
  color: var(--color-muted);
}

/* ==========================================================================
   15. Site Footer
   Bottom site area.
   ========================================================================== */

.site-footer {
  padding-top: 54px;
  padding-bottom: 0;
  background: var(--color-surface);
  border-top: 1px solid var(--color-line);
  color: var(--color-ink);
}

.site-footer p {
  max-width: 520px;
  margin: 0;
}

.footer-content {
  display: grid;
  grid-template-columns: minmax(280px, 1.45fr) minmax(150px, 0.55fr) minmax(220px, 0.75fr);
  align-items: start;
  gap: clamp(36px, 8vw, 96px);
  padding-bottom: 68px;
}

.footer-brand {
  display: grid;
  gap: 24px;
}

.footer-lockup {
  width: fit-content;
  display: inline-flex;
  align-items: center;
  gap: 13px;
  color: var(--color-ink);
  text-decoration: none;
}

.footer-brand-mark {
  width: 52px;
  height: 52px;
}

.footer-logo {
  width: min(250px, 100%);
  height: auto;
  display: block;
}

.footer-lockup span {
  display: grid;
  gap: 2px;
}

.footer-lockup strong {
  font-family: var(--font-display);
  font-size: 1.15rem;
  font-weight: 760;
  letter-spacing: 0.02em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-lockup em {
  color: var(--color-muted);
  font-size: 0.76rem;
  font-style: normal;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-brand p {
  color: var(--color-muted);
  font-size: 1rem;
  line-height: 1.6;
}

.footer-column {
  display: grid;
  align-content: start;
  gap: 9px;
}

.footer-column h2 {
  margin: 0 0 8px;
  color: var(--color-muted);
  font-size: 0.72rem;
  font-weight: 760;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
}

.footer-links {
  display: grid;
  gap: 8px;
}

.footer-links a,
.footer-link-button,
.footer-visit a {
  color: var(--color-muted);
  font: inherit;
  font-size: 1rem;
  line-height: 1.35;
  text-align: left;
  text-decoration: none;
}

.footer-link-button {
  width: fit-content;
  padding: 0;
  background: transparent;
  border: 0;
  cursor: pointer;
}

.footer-links a:hover,
.footer-link-button:hover,
.footer-visit a:hover,
.footer-legal-links a:hover {
  color: var(--color-blue);
}

.footer-visit address {
  display: grid;
  gap: 8px;
  color: var(--color-muted);
  font-style: normal;
  font-size: 1rem;
  line-height: 1.35;
}

.social-links {
  display: flex;
  align-items: center;
  gap: 14px;
}

.social-links a {
  display: inline-flex;
  color: inherit;
  opacity: 0.88;
  color: var(--color-muted);
  font-size: 0.78rem;
  font-weight: 760;
  letter-spacing: 0.08em;
  line-height: 1;
  text-decoration: none;
  text-transform: uppercase;
}

.social-links a:hover {
  opacity: 1;
  color: var(--color-blue);
}

.footer-bottom-wrap {
  margin-right: calc(var(--gutter) * -1);
  margin-left: calc(var(--gutter) * -1);
  padding-right: var(--gutter);
  padding-left: var(--gutter);
  border-top: 1px solid var(--color-line);
}

.footer-bottom {
  min-height: 62px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  color: var(--color-muted);
  font-size: 0.82rem;
}

.footer-bottom p:last-child {
  justify-self: end;
}

.footer-legal-links {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.footer-legal-links a {
  color: var(--color-muted);
  text-decoration: none;
}

.isolated-footer {
  padding-top: 0;
}

.isolated-footer-content {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-top: 1px solid var(--color-line);
  color: var(--color-muted);
  font-size: 0.82rem;
  text-align: center;
}

/* ==========================================================================
   16. Lead Capture Modal
   Shared popup for lead capture providers.
   ========================================================================== */

.lead-modal,
.schedule-modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  padding: 24px;
}

.lead-modal[hidden],
.schedule-modal[hidden] {
  display: none;
}

.lead-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 24, 39, 0.48);
}

.lead-modal-panel {
  position: relative;
  width: min(640px, 100%);
  max-height: calc(100vh - 48px);
  overflow: auto;
  padding: 32px;
  background: var(--color-surface);
  border-radius: var(--radius);
  box-shadow: 0 24px 80px rgba(23, 32, 51, 0.22);
}

.schedule-modal-panel {
  width: min(920px, 100%);
}

.lead-modal-panel h2 {
  margin: 0 0 12px;
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 4vw, 2.75rem);
  line-height: 1.1;
}

.schedule-modal-panel h2 {
  max-width: 680px;
  font-size: clamp(2.25rem, 5vw, 4.2rem);
  line-height: 1.08;
}

.lead-modal-panel p {
  margin: 0;
  color: var(--color-muted);
}

.lead-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: 1px solid var(--color-line);
  border-radius: 999px;
  background: var(--color-surface);
  color: var(--color-ink);
  cursor: pointer;
}

.lead-capture-placeholder {
  margin-top: 24px;
}

.lead-capture-placeholder:has(.integration-placeholder),
.lead-capture-placeholder:has(.lead-capture-form) {
  min-height: 420px;
  display: grid;
  place-items: center;
  padding: 24px;
  background: var(--color-page);
  border: 1px dashed var(--color-line);
  border-radius: var(--radius);
}

.lead-capture-placeholder [data-vektor-scheduler] {
  width: 100%;
}

.lead-capture-form {
  width: 100%;
  display: grid;
  gap: 16px;
}

.lead-form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-field {
  display: grid;
  gap: 8px;
  color: var(--color-ink);
  font-size: 0.95rem;
  font-weight: 700;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  background: var(--color-surface);
  color: var(--color-ink);
  font: inherit;
}

.form-field textarea {
  resize: vertical;
}

.form-help {
  margin: -8px 0 0;
  color: var(--color-muted);
  font-size: 0.88rem;
  line-height: 1.4;
}

.lead-form-status {
  margin: 0;
  padding: 12px 14px;
  border: 1px solid var(--color-line);
  border-radius: var(--radius);
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.45;
}

.lead-form-status[hidden],
.lead-form-status[data-status="pending"] {
  display: none;
}

.lead-form-status[data-status="success"] {
  background: rgba(15, 118, 110, 0.1);
  border-color: rgba(15, 118, 110, 0.34);
  color: var(--color-accent);
}

.lead-form-status[data-status="error"] {
  background: rgba(185, 28, 28, 0.08);
  border-color: rgba(185, 28, 28, 0.28);
  color: #991b1b;
}

.lead-capture-form .button:disabled {
  cursor: wait;
  opacity: 0.72;
}

/* ==========================================================================
   17. Optional Utilities
   Small reusable modifiers that components can opt into.
   ========================================================================== */

.section-dark {
  background: var(--color-brand-dark);
  color: var(--color-on-brand);
}

.section-dark p {
  color: rgba(255, 255, 255, 0.78);
}

.error {
  padding: 24px;
}

/* ==========================================================================
   18. Responsive Rules
   Small-screen layout adjustments.
   ========================================================================== */

@media (max-width: 720px) {
  .footer-content {
    grid-template-columns: 1fr;
    gap: 34px;
    padding-bottom: 44px;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 10px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .footer-bottom p:last-child {
    justify-self: start;
  }

  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 10px;
  }

  .brand {
    min-width: 0;
  }

  .brand span {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .nav-toggle {
    grid-column: 3;
    display: grid;
  }

  .nav-action {
    grid-column: 2;
    grid-row: 1;
    width: auto;
    display: block;
  }

  .nav-links {
    grid-column: 1 / -1;
    width: 100%;
    display: none;
    grid-template-columns: 1fr;
    justify-items: end;
    gap: 0;
    overflow: visible;
    padding-top: 8px;
    padding-bottom: 0;
    border-top: 1px solid var(--color-line);
    text-align: right;
  }

  .nav.nav-open .nav-links {
    display: grid;
  }

  .nav-links a,
  .nav-dropdown summary {
    min-height: 44px;
    justify-content: flex-end;
    white-space: nowrap;
  }

  .nav-dropdown {
    position: static;
    display: grid;
    justify-items: end;
  }

  .nav-dropdown-menu {
    position: static;
    min-width: 0;
    justify-items: end;
    margin-top: 0;
    margin-bottom: 8px;
    padding: 6px;
    background: var(--color-surface);
    box-shadow: none;
  }

  .nav-dropdown-menu a {
    justify-content: flex-end;
    text-align: right;
  }

  .nav-action .button {
    width: auto;
    min-height: 42px;
    padding: 9px 12px;
    font-size: 0.66rem;
    text-align: center;
  }

  .hero h1 {
    font-size: clamp(2.55rem, 10.8vw, 2.95rem);
  }

  .hero-title-line {
    white-space: normal;
  }

  .hero-title-line.text-accent {
    font-size: 0.92em;
    white-space: normal;
  }

  .showcase-title span {
    white-space: normal;
  }

  .home-benefits h2 .text-accent {
    white-space: normal;
  }

  .reviews h2 .text-accent {
    white-space: normal;
  }

  .final-cta h2 .text-accent {
    white-space: normal;
  }

  .split-section,
  .section-heading-row,
    .profile-stat-grid,
    .service-note-grid,
  .trust-strip-grid,
  .home-benefits .section-list {
    grid-template-columns: 1fr;
  }

  .section-heading-row .section-lede {
    justify-self: start;
  }

  .split-media-right .split-copy,
  .split-media-right .media-collage {
    order: initial;
  }

  .legal-meta div {
    grid-template-columns: 1fr;
  }

  .benefit-list,
  .service-list {
    grid-template-columns: 1fr;
  }

  .reason-list {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 520px) {
  .brand span {
    display: none;
  }
}

/* ==========================================================================
   19. Papro Visual Direction
   Adapted from the approved Papro mock-site art direction.
   ========================================================================== */

:root {
  --color-page: #f3f0e9;
  --color-section-alt: #ece6dc;
  --color-surface: #f8f5ee;
  --color-surface-2: #eee9df;
  --color-ink: #1b1b19;
  --color-muted: #77736c;
  --color-line: #d6d0c5;
  --color-brand: #6e2633;
  --color-brand-dark: #171716;
  --color-brand-hover: #571d28;
  --color-accent: #a78d62;
  --color-heading-accent: #c29a78;
  --color-accent-soft: rgba(167, 141, 98, 0.14);
  --color-blue: #6e2633;
  --color-blue-soft: rgba(110, 38, 51, 0.1);
  --font-display: "Lora", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;
  --site-width: 1280px;
  --gutter: clamp(24px, 6vw, 96px);
  --section-space: clamp(90px, 10vw, 150px);
  --header-space: 12px;
  --radius: 1px;
  --button-radius: 1px;
}

body {
  line-height: 1.65;
}

.section:nth-of-type(even) {
  background: var(--color-page);
}

.section + .section {
  border-top-color: rgba(27, 27, 25, 0.08);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  padding-top: 16px;
  padding-bottom: 16px;
  background: rgba(17, 17, 16, 0.9);
  border-bottom-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 10px 32px rgba(0, 0, 0, 0.14);
  -webkit-backdrop-filter: none;
  backdrop-filter: none;
  transition: padding 280ms ease, background-color 280ms ease;
}

.site-header.header-scrolled {
  padding-top: 7px;
  padding-bottom: 7px;
}

body[data-page="schedule"] #site-main,
body[data-page="terms"] #site-main,
body[data-page="privacy"] #site-main,
body[data-page="not-found"] #site-main {
  padding-top: 110px;
}

.brand-logo {
  height: 76px;
}

.nav-links {
  gap: clamp(18px, 3vw, 40px);
}

.nav-links a,
.nav-dropdown summary {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.nav-toggle {
  border-color: rgba(255, 255, 255, 0.3);
  color: #fff;
}

.nav-links a {
  position: relative;
}

.nav-links > a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.nav-links > a:hover::after {
  transform: scaleX(1);
}

.button {
  min-height: 50px;
  padding: 14px 26px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-color: var(--color-brand);
  background: var(--color-brand);
  box-shadow: none;
  filter: none;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1;
  text-align: center;
  text-transform: uppercase;
}

.button:hover {
  border-color: var(--color-brand-hover);
  background: var(--color-brand-hover);
  box-shadow: none;
  filter: none;
  transform: none;
}

.hero h1,
.section h1,
.section h2,
.benefit-card h3,
.reason-card h3,
.service-item h3,
.lead-modal-panel h2 {
  font-weight: 400;
  letter-spacing: -0.025em;
  text-transform: none;
}

.hero h1 {
  font-size: clamp(3.35rem, 5.6vw, 5rem);
  line-height: 0.96;
  text-transform: none;
}

.section h2 {
  font-size: clamp(3.05rem, 5.2vw, 4.75rem);
  line-height: 0.98;
}

.section-eyebrow {
  display: flex;
  align-items: center;
  gap: 15px;
  margin-bottom: 24px;
  color: var(--color-brand);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.section-eyebrow::before {
  content: "";
  width: 36px;
  height: 1px;
  flex: 0 0 auto;
  background: var(--color-accent);
}

.text-accent {
  color: var(--color-heading-accent);
  font-style: italic;
}

.hero-image-ready.hero-with-image {
  min-height: min(860px, calc(100vh - 90px));
  padding-top: clamp(70px, 9vw, 120px);
  padding-bottom: clamp(70px, 9vw, 120px);
  color: var(--color-ink);
}

.hero-image-ready {
  --hero-overlay: linear-gradient(90deg, rgba(20, 18, 15, 0.14), transparent 60%);
}

.hero-image-ready.hero-with-image .inner {
  width: min(680px, calc(100% - (var(--gutter) * 2)));
  margin-right: auto;
  margin-left: var(--gutter);
  padding: clamp(40px, 5vw, 74px);
  background: rgba(248, 245, 238, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 24px 70px rgba(29, 24, 18, 0.18);
}

.hero-image-ready.hero-with-image h1 {
  text-shadow: none;
}

.hero-image-ready.hero-with-image p {
  color: #4f4c47;
}

.split-section {
  gap: clamp(45px, 8vw, 110px);
}

.section-image,
.service-item,
.showcase-slide,
.detail-card,
.contact-card,
.faq-list,
.map-placeholder {
  border-radius: 1px;
}

.section-image {
  box-shadow: 0 20px 55px rgba(29, 24, 18, 0.12);
}

.trust-strip {
  padding: 38px var(--gutter);
  background: #ece6dc;
  border-top: 1px solid #cfc5b7;
  border-bottom: 1px solid #cfc5b7;
}

.trust-strip-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
}

.trust-stat {
  min-height: 64px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 8px clamp(18px, 3vw, 38px);
  border-right: 1px solid #bfb4a4;
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat strong {
  flex: 0 0 auto;
  color: var(--color-brand);
  font-family: var(--font-display);
  font-size: clamp(2rem, 3vw, 2.75rem);
  font-weight: 400;
  line-height: 1;
}

.trust-stat span {
  max-width: 175px;
  color: #37342f;
  font-size: 0.67rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  line-height: 1.45;
  text-transform: uppercase;
}

.service-list {
  gap: 18px;
}

.service-item {
  border-color: transparent;
  box-shadow: 0 14px 34px rgba(34, 28, 21, 0.08);
}

.service-card-image {
  transition: transform 700ms ease;
}

.service-item:hover .service-card-image {
  transform: scale(1.035);
}

.service-card-badge {
  border: 0;
  border-radius: 1px;
  background: rgba(248, 245, 238, 0.94);
  color: var(--color-brand);
  font-weight: 600;
}

.card-link,
.text-link {
  color: var(--color-brand);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.home-business-showcase {
  color: var(--color-page);
  background: var(--color-brand-dark) !important;
}

.home-business-showcase p {
  color: #aaa69e;
}

.home-business-showcase .section-eyebrow,
.home-business-showcase .text-accent {
  color: #d6b89e;
}

.showcase-slide {
  border: 0;
  filter: saturate(0.88);
  transition: transform 700ms ease, filter 300ms ease;
}

.showcase-slide:hover {
  filter: saturate(1);
  transform: scale(1.015);
}

.native-reviews {
  display: grid;
  grid-template-columns: minmax(260px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(48px, 8vw, 110px);
  margin-top: clamp(70px, 9vw, 120px);
  padding-top: clamp(60px, 7vw, 90px);
  border-top: 1px solid #4a4843;
}

.native-reviews-heading h3 {
  margin: 0 0 24px;
  color: var(--color-page);
  font-family: var(--font-display);
  font-size: clamp(2.3rem, 4vw, 3.7rem);
  font-weight: 400;
  letter-spacing: -0.025em;
  line-height: 1.02;
}

.native-reviews-heading h3 span {
  display: block;
  color: #d6b89e;
  font-style: italic;
}

.native-reviews-heading > p:last-child {
  max-width: 390px;
}

.review-rating-summary {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 30px;
}

.review-rating-summary > strong {
  color: var(--color-page);
  font-family: var(--font-display);
  font-size: 3.6rem;
  font-weight: 400;
  line-height: 1;
}

.review-rating-summary > span {
  display: grid;
  gap: 5px;
  color: #8f8b84;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.review-rating-summary b {
  color: #d6a144;
  font-size: 0.78rem;
  letter-spacing: 0.1em;
}

.review-controls {
  position: absolute;
  top: 50%;
  right: -66px;
  left: -66px;
  z-index: 3;
  display: flex;
  justify-content: space-between;
  pointer-events: none;
  transform: translateY(-50%);
}

.review-controls button {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid #5a5751;
  border-radius: 50%;
  background: transparent;
  color: var(--color-page);
  cursor: pointer;
  font-size: 1.15rem;
  pointer-events: auto;
  transition: border-color 180ms ease, background-color 180ms ease;
}

.review-controls button:hover {
  border-color: #d6b89e;
  background: rgba(214, 184, 158, 0.1);
}

.native-review-carousel {
  position: relative;
  min-width: 0;
  touch-action: pan-y;
}

.native-review-viewport {
  overflow: hidden;
  border-top: 1px solid #4a4843;
  border-bottom: 1px solid #4a4843;
}

.native-review-track {
  width: 100%;
  display: flex;
  align-items: stretch;
  transition: transform 520ms cubic-bezier(0.22, 1, 0.36, 1);
}

.native-review-track.review-track-resetting {
  transition: none;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 700ms ease var(--reveal-delay, 0ms),
    transform 700ms cubic-bezier(0.22, 1, 0.36, 1) var(--reveal-delay, 0ms);
}

.reveal-ready.reveal-visible {
  opacity: 1;
  transform: translateY(0);
}

.mobile-project-cta {
  display: none;
}

.native-review-card {
  width: calc(100% / 3);
  flex: 0 0 calc(100% / 3);
  display: flex;
  flex-direction: column;
  padding: 32px 24px;
  border-right: 1px solid #4a4843;
}

.review-stars {
  min-height: 22px;
  color: #d6a144;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.native-review-card blockquote {
  flex: 1;
  display: -webkit-box;
  margin: 20px 0 34px;
  overflow: hidden;
  color: #e9e5dd;
  font-family: var(--font-body);
  font-size: 0.94rem;
  line-height: 1.75;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 9;
}

.native-review-card:nth-child(10n + 1) blockquote,
.native-review-card:nth-child(10n + 5) blockquote {
  font-size: 0.88rem;
  line-height: 1.62;
}

.native-review-card.review-expanded blockquote {
  display: block;
  overflow: visible;
  -webkit-line-clamp: unset;
}

.review-toggle {
  display: none;
  width: fit-content;
  margin: -18px 0 28px;
  padding: 0 0 5px;
  border: 0;
  border-bottom: 1px solid currentColor;
  background: transparent;
  color: #d6b89e;
  cursor: pointer;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.native-review-card.is-collapsible .review-toggle {
  display: inline-block;
}

.native-review-card footer {
  display: grid;
  gap: 5px;
}

.native-review-card strong {
  color: var(--color-page);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}

.native-review-card footer span {
  color: #8f8b84;
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.home-why-us {
  color: var(--color-page);
  background: var(--color-brand-dark) !important;
}

.home-why-us p {
  color: #aaa69e;
}

.home-why-us .section-eyebrow,
.home-why-us .text-accent {
  color: #d6b89e;
}

.home-why-us h2 {
  color: #d6b89e;
}

.home-why-us h2 .text-accent {
  color: var(--color-page);
}

.home-why-us .section-outro {
  max-width: 820px;
  text-align: left;
}

.why-us-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
}

.why-us-image {
  position: relative;
  min-height: clamp(620px, 65vw, 820px);
  margin: 0;
  overflow: hidden;
}

.why-us-image::after {
  content: "";
  position: absolute;
  inset: 55% 0 0;
  background: linear-gradient(transparent, rgba(0, 0, 0, 0.72));
  pointer-events: none;
}

.why-us-image img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.why-us-image figcaption {
  position: absolute;
  right: 26px;
  bottom: 24px;
  left: 26px;
  z-index: 1;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.58rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.why-us-content .section-outro {
  margin-right: 0;
  margin-left: 0;
}

.home-find-us {
  color: var(--color-page);
  background: var(--color-brand-dark) !important;
}

.home-find-us h2,
.home-find-us .contact-card {
  color: var(--color-page);
}

.home-find-us p,
.home-find-us .contact-details,
.home-find-us .contact-details a {
  color: #aaa69e;
}

.home-find-us .section-eyebrow,
.home-find-us .text-accent,
.home-find-us .card-kicker {
  color: #d6b89e;
}

.home-find-us .contact-card,
.home-find-us .map-placeholder {
  background: #1f1f1d;
  border-color: #3a3936;
}

.faq-list details {
  padding: 24px 26px;
  background: var(--color-surface);
}

.faq-list summary {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 400;
}

.final-cta {
  min-height: 690px;
  background-color: var(--color-surface);
  background-image: none;
  color: var(--color-ink);
}

.final-cta::before {
  display: none;
}

.final-cta .section-eyebrow {
  justify-content: center;
  color: var(--color-brand);
}

.final-cta .text-accent {
  color: var(--color-heading-accent);
}

.final-cta p {
  color: var(--color-muted);
}

.final-cta h2 {
  font-size: clamp(3.7rem, 7vw, 6rem);
  font-weight: 400;
  line-height: 0.98;
}

.site-footer {
  padding-top: 82px;
  background: #111110;
  border-top: 0;
  color: #d8d4cc;
}

.footer-lockup,
.footer-column h2 {
  color: #fff;
}

.footer-brand p,
.footer-links a,
.footer-link-button,
.footer-visit address,
.footer-visit a,
.social-links a,
.footer-bottom,
.footer-legal-links a {
  color: #8e8b85;
}

.footer-logo {
  width: 195px;
}

.footer-bottom-wrap,
.footer-bottom {
  border-color: #2f2e2b;
}

.lead-modal-backdrop {
  background: rgba(0, 0, 0, 0.76);
  backdrop-filter: blur(8px);
}

.lead-modal-panel {
  border-radius: 1px;
  background: var(--color-surface);
  box-shadow: 0 30px 90px rgba(0, 0, 0, 0.4);
}

.form-field {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  border-width: 0 0 1px;
  border-radius: 0;
  background: transparent;
}

@media (max-width: 720px) {
  .brand-logo {
    height: 58px;
  }

  .hero-image-ready.hero-with-image {
    align-items: end;
    min-height: 760px;
    padding: 0;
  }

  .hero-image-ready.hero-with-image .inner {
    width: calc(100% - 28px);
    margin: 0 14px 14px;
    padding: 32px 24px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(2.35rem, 11vw, 3.35rem);
    overflow-wrap: anywhere;
  }

  .section h2 {
    font-size: clamp(2.65rem, 11vw, 3.7rem);
  }

  .trust-strip-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-stat {
    justify-content: flex-start;
    border-bottom: 1px solid #bfb4a4;
  }

  .trust-stat:nth-child(2) {
    border-right: 0;
  }

  .trust-stat:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .native-reviews {
    grid-template-columns: 1fr;
  }

  .native-review-card {
    width: 100%;
    flex-basis: 100%;
  }

  .why-us-layout {
    grid-template-columns: 1fr;
  }

  .why-us-image {
    min-height: 520px;
  }

  .review-controls {
    right: 10px;
    left: 10px;
  }

  body.has-mobile-project-cta {
    padding-bottom: 78px;
  }

  .mobile-project-cta {
    position: fixed;
    right: 14px;
    bottom: 14px;
    left: 14px;
    z-index: 90;
    display: inline-flex;
    min-height: 52px;
    margin: 0;
    opacity: 0;
    pointer-events: none;
    transform: translateY(calc(100% + 24px));
    transition: opacity 220ms ease, transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
  }

  .mobile-project-cta.mobile-project-cta-visible {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }
}

@media (min-width: 721px) and (max-width: 1050px) {
  .native-review-card {
    width: 50%;
    flex-basis: 50%;
  }
}

@media (max-width: 520px) {
  .nav-action {
    display: none;
  }

  .nav-toggle {
    grid-column: 2;
  }

  .trust-strip-grid {
    grid-template-columns: 1fr;
  }

  .trust-stat,
  .trust-stat:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid #bfb4a4;
  }

  .trust-stat:last-child {
    border-bottom: 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  .reveal-ready,
  .reveal-ready.reveal-visible {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .mobile-project-cta {
    transition: none;
  }

  .native-review-viewport {
    overflow-x: auto;
  }

  .native-review-track {
    transition: none;
  }
}

/* ==========================================================================
   20. Wine Cellar Considerations Planner
   ========================================================================== */

body[data-page="wine-cellar-checklist"] { background: #11110f; }
body[data-page="wine-cellar-checklist"] #site-header,
body[data-page="wine-cellar-checklist"] #site-footer { display: none; }

.cellar-planner { min-height: 100vh; background: var(--color-page); color: var(--color-ink); }
.planner-shell { min-height: 100vh; }
.planner-intro {
  min-height: 100vh; display: flex; flex-direction: column; align-items: flex-start; justify-content: center;
  padding: clamp(110px, 14vw, 190px) max(var(--gutter), calc((100vw - 1280px) / 2)); color: #f4f0e8;
  background: linear-gradient(90deg, rgba(13,12,10,.92) 0%, rgba(13,12,10,.74) 46%, rgba(13,12,10,.18) 100%), url("/_assets/media/images/luxury-glass-wine-cellar-toronto.jpg") center/cover;
}
.planner-intro[hidden], .planner-form[hidden] { display: none; }
.planner-back-home { position: absolute; top: 34px; color: #fff; font-family: var(--font-display); font-size: 1.2rem; text-decoration: none; }
.planner-intro .section-eyebrow { color: #d6b89e; }
.planner-intro h1 { max-width: 780px; margin: 0; font-family: var(--font-display); font-size: clamp(3.4rem, 6.6vw, 6.7rem); font-weight: 400; letter-spacing: -.045em; line-height: .94; }
.planner-intro > p:not(.section-eyebrow) { max-width: 630px; margin: 30px 0 0; color: #c6c0b7; font-size: clamp(.96rem, 1.4vw, 1.08rem); }
.planner-intro-meta { display: flex; flex-wrap: wrap; gap: 0; margin-top: 42px; border-top: 1px solid rgba(255,255,255,.24); border-bottom: 1px solid rgba(255,255,255,.24); }
.planner-intro-meta span { padding: 13px 22px; border-right: 1px solid rgba(255,255,255,.24); color: #d8d1c8; font-size: .6rem; font-weight: 600; letter-spacing: .13em; text-transform: uppercase; }
.planner-intro-meta span:first-child { padding-left: 0; }
.planner-start { min-height: 58px; margin-top: 40px; padding: 0 28px; border: 1px solid #d6b89e; background: #d6b89e; color: #1a1815; cursor: pointer; font: 600 .68rem var(--font-body); letter-spacing: .11em; text-transform: uppercase; }
.planner-start span { margin-left: 24px; font-size: 1rem; }

.planner-form { min-height: 100vh; padding-bottom: 54px; }
.planner-topbar { position: sticky; top: 0; z-index: 20; height: 92px; display: grid; grid-template-columns: 1fr auto minmax(180px, 24vw) 1fr; align-items: center; gap: 28px; padding: 0 var(--gutter); background: rgba(243,240,233,.96); border-bottom: 1px solid var(--color-line); backdrop-filter: blur(14px); }
.planner-wordmark { padding: 0; border: 0; background: transparent; color: var(--color-brand); cursor: pointer; font: 500 1.35rem var(--font-display); text-align: left; }
.planner-wordmark span { color: var(--color-muted); font: 600 .54rem var(--font-body); letter-spacing: .12em; text-transform: uppercase; }
.planner-progress-copy { display: grid; min-width: 132px; }
.planner-progress-copy span:first-child { color: var(--color-brand); font: 600 .62rem var(--font-body); letter-spacing: .12em; }
.planner-progress-copy span:last-child { color: var(--color-muted); font-size: .62rem; }
.planner-progress { height: 2px; overflow: hidden; background: #d7d0c5; }
.planner-progress span { height: 100%; display: block; background: var(--color-brand); transition: width 450ms ease; }
.planner-save { justify-self: end; padding: 7px 0; border: 0; border-bottom: 1px solid currentColor; background: transparent; color: var(--color-muted); cursor: pointer; font: 600 .6rem var(--font-body); letter-spacing: .1em; text-transform: uppercase; }

.planner-stage { width: min(1160px, calc(100% - (var(--gutter) * 2))); margin: 0 auto; padding: clamp(60px, 8vw, 105px) 0 34px; }
.planner-step { display: none; margin: 0; padding: 0; border: 0; animation: plannerIn 500ms cubic-bezier(.22,1,.36,1); }
.planner-step.is-active { display: block; }
@keyframes plannerIn { from { opacity: 0; transform: translateY(18px); } }
.planner-step legend { max-width: 850px; padding: 0; font: 400 clamp(2.6rem, 5vw, 4.8rem)/1 var(--font-display); letter-spacing: -.035em; }
.planner-step legend small, .review-heading small, .planner-contact small { display: block; margin-bottom: 18px; color: var(--color-brand); font: 600 .64rem var(--font-body); letter-spacing: .17em; text-transform: uppercase; }
.planner-prompt { max-width: 650px; margin: 20px 0 42px; color: var(--color-muted); }
.choice-grid { display: grid; gap: 16px; }
.choice-grid--visual { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.choice-grid--three { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.visual-choice, .text-choice { position: relative; display: block; cursor: pointer; }
.visual-choice input, .text-choice input { position: absolute; width: 1px; height: 1px; opacity: 0; }
.visual-choice { min-height: 370px; overflow: hidden; background: #191917; color: #fff; transition: box-shadow 220ms ease, transform 220ms ease; }
.visual-choice::after { content: ""; position: absolute; inset: 0; border: 2px solid transparent; pointer-events: none; transition: border-color 180ms ease; }
.visual-choice img { width: 100%; height: 100%; position: absolute; inset: 0; object-fit: cover; opacity: .76; transition: transform 650ms ease, opacity 250ms ease; }
.visual-choice > span { position: absolute; right: 0; bottom: 0; left: 0; z-index: 1; padding: 70px 22px 22px; background: linear-gradient(transparent, rgba(9,9,8,.92)); }
.visual-choice b, .text-choice b { display: block; font: 400 1.28rem var(--font-display); }
.visual-choice small, .text-choice small { display: block; margin-top: 5px; color: rgba(255,255,255,.68); font-size: .68rem; }
.visual-choice:hover { box-shadow: 0 12px 30px rgba(35, 28, 21, .13); transform: translateY(-2px); }
.visual-choice:hover::after { border-color: rgba(214, 184, 158, .58); }
.visual-choice:hover img { opacity: .9; transform: scale(1.035); }
.visual-choice:has(input:checked)::after { border-color: #d6b89e; }
.visual-choice:has(input:checked) img { opacity: 1; }
.visual-choice:has(input:checked) > span::after { content: "✓"; position: absolute; right: 22px; bottom: 27px; width: 28px; height: 28px; display: grid; place-items: center; border-radius: 50%; background: #d6b89e; color: #211e1a; }
.choice-grid--text { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.choice-grid--compact { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.text-choice > span { min-height: 112px; display: flex; flex-direction: column; justify-content: center; padding: 20px 56px 20px 25px; background: var(--color-surface); border: 1px solid var(--color-line); transition: border-color 180ms ease, background-color 180ms ease, box-shadow 220ms ease, transform 220ms ease; }
.text-choice small { color: var(--color-muted); }
.text-choice > span::after { content: ""; position: absolute; top: 50%; right: 25px; width: 20px; height: 20px; border: 1px solid #bbb3a7; border-radius: 50%; transform: translateY(-50%); }
.text-choice:hover > span { border-color: rgba(110, 38, 51, .42); background: #fbf8f2; box-shadow: 0 9px 24px rgba(35, 28, 21, .07); transform: translateY(-2px); }
.text-choice:has(input:checked) > span { border-color: var(--color-brand); background: rgba(110,38,51,.045); }
.text-choice:has(input:checked) > span::after { border: 6px solid var(--color-brand); }
.choice-grid--features .text-choice > span::after, .choice-grid--material .visual-choice > span::after { border-radius: 0; }
.choice-grid--features .text-choice:has(input:checked) > span::after { content: "✓"; display: grid; place-items: center; border: 0; background: var(--color-brand); color: white; font-size: .7rem; }
.choice-grid--material { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.choice-grid--material .visual-choice { min-height: 410px; }
.has-error { animation: plannerShake 350ms ease; }
@keyframes plannerShake { 25% { transform: translateX(-6px); } 75% { transform: translateX(6px); } }

.planner-step--contact { max-width: 940px; }
.planner-first-contact { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 32px 42px; margin-top: 48px; }
.planner-first-contact label { color: var(--color-muted); font-size: .6rem; font-weight: 600; letter-spacing: .11em; text-transform: uppercase; }
.planner-first-contact label:first-child { grid-column: 1 / -1; }
.planner-first-contact input { width: 100%; padding: 12px 0; border: 0; border-bottom: 1px solid #aaa196; outline: 0; background: transparent; color: var(--color-ink); font: 400 1.15rem var(--font-body); text-transform: none; }
.planner-first-contact input:focus { border-bottom-color: var(--color-brand); }
.planner-privacy-note { margin-top: 22px; color: var(--color-muted); font-size: .7rem; }

.planner-step--budget { max-width: 900px; }
.budget-input { display: grid; grid-template-columns: auto 1fr; align-items: end; margin-top: 62px; border-bottom: 1px solid #9e9589; }
.budget-input > span { padding: 0 20px 21px 0; color: var(--color-brand); font: 500 1rem var(--font-body); letter-spacing: .1em; }
.budget-input input { width: 100%; padding: 0 0 8px; border: 0; outline: 0; background: transparent; color: var(--color-ink); font: 400 clamp(3.2rem, 8vw, 6.4rem)/1 var(--font-display); }
.budget-input input::placeholder { color: #c6c0b6; }
.budget-input small { grid-column: 1 / -1; padding: 14px 0; color: var(--color-muted); }

.planner-controls { width: min(1160px, calc(100% - (var(--gutter) * 2))); min-height: 72px; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; margin: 0 auto; padding: 11px 0; color: var(--color-ink); }
.planner-controls button { border: 0; background: transparent; color: var(--color-ink); cursor: pointer; font: 600 .65rem var(--font-body); letter-spacing: .11em; text-transform: uppercase; }
.planner-prev { justify-self: start; }.planner-prev span { margin-right: 14px; }
.planner-next { justify-self: end; min-width: 165px; height: 48px; padding: 0 20px !important; background: var(--color-brand) !important; color: #fff !important; }
.planner-next:disabled { opacity: .55; cursor: wait; }
.planner-error { margin: 0; color: #e1b8af; font-size: .7rem; }

.planner-review { padding-bottom: 40px; }
.review-heading { display: grid; grid-template-columns: 1.3fr .7fr; align-items: end; gap: 50px; padding-bottom: 45px; border-bottom: 1px solid var(--color-line); }
.review-heading h2 { max-width: 750px; margin: 0; font: 400 clamp(2.8rem, 5vw, 4.8rem)/1 var(--font-display); letter-spacing: -.035em; }
.review-heading p { color: var(--color-muted); }
.planner-summary { display: grid; grid-template-columns: repeat(2, 1fr); border-bottom: 1px solid var(--color-line); }
.summary-item { position: relative; min-height: 118px; display: grid; align-content: center; gap: 5px; padding: 20px 70px 20px 0; border: 0; border-bottom: 1px solid var(--color-line); background: transparent; color: var(--color-ink); cursor: pointer; text-align: left; }
.summary-item:nth-child(odd) { border-right: 1px solid var(--color-line); }
.summary-item:nth-child(even) { padding-left: 34px; }
.summary-item small { color: var(--color-muted); font-size: .56rem; letter-spacing: .12em; text-transform: uppercase; }
.summary-item strong { font: 400 1.22rem var(--font-display); }
.summary-item span { position: absolute; right: 24px; color: var(--color-brand); font-size: .58rem; letter-spacing: .1em; text-transform: uppercase; }
.planner-contact { display: grid; grid-template-columns: .8fr 1.2fr; gap: 70px; margin-top: 70px; padding: clamp(30px, 5vw, 60px); background: #e9e3d9; }
.planner-consultation-note { display: grid; grid-template-columns: .5fr 1.5fr; gap: 28px; margin-top: 48px; padding: 30px 0; border-top: 1px solid var(--color-line); border-bottom: 1px solid var(--color-line); }
.planner-consultation-note span { color: var(--color-brand); font: 400 1.3rem var(--font-display); }
.planner-consultation-note p { margin: 0; color: var(--color-muted); }
.planner-contact h3, .planner-success h3 { margin: 0; font: 400 clamp(2rem, 4vw, 3.4rem)/1 var(--font-display); }
.planner-contact p { margin-top: 18px; color: var(--color-muted); }
.planner-contact-fields { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.planner-contact-fields label:not(.planner-consent) { color: var(--color-muted); font-size: .58rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }
.planner-contact-fields input:not([type="checkbox"]) { width: 100%; padding: 11px 0; border: 0; border-bottom: 1px solid #aba297; outline: 0; background: transparent; color: var(--color-ink); font: 400 1rem var(--font-body); }
.planner-consent { grid-column: 1 / -1; display: flex; align-items: flex-start; gap: 10px; color: var(--color-muted); font-size: .7rem; }
.planner-success { padding: 80px 20px; text-align: center; }
.planner-success > span { width: 54px; height: 54px; display: grid; place-items: center; margin: 0 auto 28px; border-radius: 50%; background: var(--color-brand); color: white; }
.planner-success p { margin: 18px auto; color: var(--color-muted); }
.planner-success a { color: var(--color-brand); font-size: .68rem; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; }

@media (max-width: 900px) {
  .choice-grid--visual, .choice-grid--three, .choice-grid--compact { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .planner-topbar { grid-template-columns: 1fr auto; gap: 8px 20px; height: 92px; }
  .planner-progress-copy { display: none; }.planner-progress { grid-row: 2; grid-column: 1 / -1; }.planner-save { grid-column: 2; grid-row: 1; }
  .review-heading, .planner-contact { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .planner-intro { justify-content: flex-end; min-height: 100svh; padding: 110px 22px 52px; background-image: linear-gradient(0deg, rgba(13,12,10,.96) 0%, rgba(13,12,10,.62) 62%, rgba(13,12,10,.3) 100%), url("/_assets/media/images/luxury-glass-wine-cellar-toronto.jpg"); }
  .planner-back-home { top: 25px; }.planner-intro h1 { font-size: clamp(2.7rem, 13vw, 4rem); }.planner-intro > p:not(.section-eyebrow) { margin-top: 22px; }
  .planner-intro-meta span { width: 50%; padding: 10px 12px 10px 0; border: 0; }.planner-intro-meta span:last-child { width: 100%; }
  .planner-start { width: 100%; margin-top: 28px; }.planner-wordmark span { display: none; }
  .planner-topbar { padding: 0 18px; }.planner-stage { width: calc(100% - 36px); min-height: auto; padding: 45px 0 26px; }
  .planner-step legend { font-size: clamp(2.25rem, 11vw, 3.2rem); }.planner-prompt { margin: 16px 0 28px; }
  .choice-grid--visual, .choice-grid--three, .choice-grid--compact, .choice-grid--text { grid-template-columns: 1fr; }
  .visual-choice, .choice-grid--material .visual-choice { min-height: 280px; }
  .text-choice > span { min-height: 90px; }.planner-controls { width: calc(100% - 36px); min-height: 70px; padding: 10px 12px; }.planner-error { position: fixed; right: 18px; bottom: 82px; left: 18px; z-index: 30; padding: 9px; background: var(--color-brand); color: #fff; text-align: center; }
  .planner-next { min-width: 130px; }.budget-input { margin-top: 42px; }.budget-input input { font-size: 3.4rem; }
  .review-heading { padding-bottom: 32px; }.planner-summary { grid-template-columns: 1fr; }.summary-item:nth-child(odd) { border-right: 0; }.summary-item:nth-child(even) { padding-left: 0; }
  .planner-contact { margin-top: 45px; padding: 28px 22px; }.planner-contact-fields { grid-template-columns: 1fr; }.planner-consent { grid-column: 1; }
  .planner-first-contact { grid-template-columns: 1fr; gap: 24px; }.planner-first-contact label:first-child { grid-column: 1; }
  .planner-consultation-note { grid-template-columns: 1fr; gap: 10px; }
}

/* Full sitemap navigation, including keyboard and tablet layouts. */
@media (min-width: 721px) and (max-width: 1000px) {
  .profile-stat-grid { grid-template-columns: 1fr; }
  .review-controls { left: -40px; right: -40px; }
  .site-footer .footer-content { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 36px; }
  .site-footer .footer-brand { grid-column: 1 / -1; max-width: 520px; }
  .site-footer .footer-column { min-width: 0; }
  .site-footer .footer-visit a { overflow-wrap: anywhere; }
}
.site-header .nav-links { flex-wrap: nowrap; gap: clamp(16px, 2vw, 30px); }
.site-header .nav-mobile-cta { display: none; }
.site-header .nav-dropdown:not([open]) .nav-dropdown-menu { display: none; }
@media (min-width: 1101px) and (hover: hover) and (pointer: fine) {
  .site-header .nav-dropdown[open]::before { content: ""; position: absolute; top: 100%; left: 0; width: 100%; height: 18px; }
}
.site-header .nav-dropdown-menu { min-width: 270px; max-height: calc(100dvh - 160px); overflow-y: auto; background: #24211d; border: 1px solid #52483b; padding: 12px; }
.site-header .nav-dropdown-menu a { display: flex; color: #eee7dc; white-space: normal; line-height: 1.5; padding: 12px; min-height: 44px; font-size: .64rem; }
.site-header .nav-dropdown-menu a:hover { color: #fff; background: #3b3028; }
.site-header .nav-dropdown:last-of-type .nav-dropdown-menu { left: auto; right: 0; }
.site-header :is(a, summary, button):focus-visible { outline: 2px solid #c5ab84; outline-offset: 4px; }
@media (max-width: 1100px) {
  .site-header .nav { display: grid; grid-template-columns: minmax(0, 1fr) auto auto; gap: 16px; }
  .site-header .nav-toggle { display: grid; grid-column: 3; grid-row: 1; }
  .site-header .nav-action { grid-column: 2; grid-row: 1; }
  .site-header .nav-links { display: none; grid-column: 1 / -1; grid-template-columns: 1fr; width: 100%; max-height: calc(100dvh - 130px); overflow-y: auto; justify-items: stretch; text-align: left; gap: 0; border-top: 1px solid #4f4538; padding-block: 10px; }
  .site-header .nav.nav-open .nav-links { display: grid; }
  .site-header .nav-links > a, .site-header .nav-dropdown summary { min-height: 46px; justify-content: flex-start; }
  .site-header .nav-dropdown { display: block; position: static; width: 100%; }
  .site-header .nav-dropdown-menu { position: static; min-width: 0; max-height: none; box-shadow: none; margin: 0 0 10px; justify-items: stretch; }
  .site-header .nav-dropdown-menu a { justify-content: flex-start; text-align: left; }
  .site-header .nav-mobile-cta { display: inline-flex; color: #d8b790; }
}
@media (max-width: 520px) {
  .site-header .nav { grid-template-columns: minmax(0, 1fr) auto; }
  .site-header .nav-toggle { grid-column: 2; }
  .site-header .nav-action { display: none; }
  .site-header .brand-logo { max-width: 190px; height: 60px; object-fit: contain; }
}
