:root {
      --bg: #efe3ca;
      --paper: rgba(255,252,246,0.76);
      --paper-strong: #fffdf8;
      --primary: #2f3a2f;
      --accent: #526b50;
      --accent-soft: #95ab8d;
      --border: rgba(79,111,82,0.12);
      --muted: #5f655d;
      --shadow: 0 20px 42px rgba(45, 40, 28, 0.08);
      --shadow-soft: 0 12px 28px rgba(45, 40, 28, 0.05);
    }

    * { box-sizing: border-box; }
    html { scroll-behavior: smooth; }
    body {
      margin: 0;
      font-family: 'Inter', sans-serif;
      color: var(--primary);
      line-height: 1.65;
      background:
        radial-gradient(circle at top left, rgba(255,255,255,0.44), transparent 30%),
        radial-gradient(circle at bottom right, rgba(143,168,137,0.08), transparent 28%),
        linear-gradient(180deg, #f4ead6 0%, var(--bg) 42%, #ebdec0 100%);
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -1;
      pointer-events: none;
      opacity: 0.28;
      background-image:
        linear-gradient(rgba(47,58,47,0.035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(47,58,47,0.025) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: linear-gradient(180deg, rgba(0,0,0,0.42), rgba(0,0,0,0.08) 58%, transparent);
    }

    h1, h2 {
      font-family: 'Playfair Display', serif;
      letter-spacing: 0.3px;
      line-height: 1.1;
      margin: 0 0 14px;
    }

    h3 {
      margin: 0 0 10px;
      font-size: 1.05rem;
    }

    p { margin: 0 0 14px; }
    figure { margin: 0; }
    a { color: var(--primary); }
    strong { font-weight: 700; }

    .site-shell {
      width: min(1120px, calc(100% - 32px));
      margin: 0 auto;
    }

    header {
      padding: 26px 0 10px;
    }

    .topbar {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 16px;
      min-height: 180px;
      padding: 12px 22px;
      background: linear-gradient(180deg, rgba(255,255,255,0.58), rgba(255,250,243,0.52));
      border: 1px solid rgba(79,111,82,0.12);
      border-radius: 26px;
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(10px);
      overflow: hidden;
    }

    .topbar img {
      width: min(100%, 860px);
      max-width: none;
      display: block;
      transform: scale(1.35);
      transform-origin: center;
    }

    .home-page .topbar {
      min-height: 118px;
      padding: 18px 22px;
      background: linear-gradient(180deg, rgba(255,255,255,0.48), rgba(255,250,243,0.38));
    }

    .home-page .topbar img {
      width: min(100%, 520px);
      height: auto;
      object-fit: contain;
      transform: none;
    }

    .wordmark-topbar {
      min-height: 132px;
      padding: 18px 26px;
    }

    .text-wordmark {
      display: inline-flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      text-align: center;
      line-height: 1;
      text-decoration: none;
      color: var(--primary);
    }

    .text-wordmark-main {
      font-size: clamp(2.4rem, 7vw, 4.9rem);
      font-weight: 800;
      letter-spacing: 0.13em;
      text-indent: 0.13em;
    }

    .text-wordmark-sub {
      margin-top: 10px;
      font-size: clamp(0.88rem, 2vw, 1.35rem);
      font-weight: 700;
      letter-spacing: 0.72em;
      text-indent: 0.72em;
      color: var(--accent);
    }

    .interior-header {
      padding: 18px 0 8px;
    }

    .interior-header .topbar {
      min-height: 132px;
      padding: 18px 26px;
      border-radius: 22px;
      background: linear-gradient(180deg, rgba(255,255,255,0.64), rgba(255,250,243,0.5));
    }

    .interior-header .topbar img {
      width: min(100%, 560px);
      transform: scale(1.12);
    }

    .interior-header nav {
      gap: 14px 18px;
      margin-top: 14px;
    }

    .interior-header nav a {
      font-size: 0.91rem;
      padding: 6px 10px;
    }

    nav {
      display: flex;
      justify-content: center;
      gap: 22px;
      margin: 20px 0 0;
      flex-wrap: wrap;
    }

    nav a {
      text-decoration: none;
      color: var(--primary);
      font-weight: 600;
      font-size: 0.95rem;
      position: relative;
      padding: 7px 12px;
      border-radius: 999px;
    }

    nav a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: 0;
      width: 0;
      height: 2px;
      background: var(--accent);
      transition: width 0.24s ease;
    }

    nav a:hover {
      background: rgba(255,255,255,0.56);
    }

    nav a.current {
      background: rgba(255,255,255,0.72);
    }

    nav a.current::after {
      width: 100%;
    }

    nav a:hover::after { width: 100%; }

    .menu-toggle {
      display: none;
    }

    .jump-nav-wrap {
      position: sticky;
      top: 10px;
      z-index: 20;
      width: min(1040px, calc(100% - 32px));
      margin: 22px auto 0;
      display: flex;
      justify-content: center;
    }

    .jump-nav {
      display: flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      width: fit-content;
      max-width: 100%;
      padding: 9px 12px;
      overflow-x: auto;
      scrollbar-width: none;
      border: 1px solid rgba(79,111,82,0.16);
      border-radius: 999px;
      background: linear-gradient(180deg, rgba(255,253,248,0.96), rgba(245,237,220,0.94));
      box-shadow: 0 14px 34px rgba(45,40,28,0.11);
      backdrop-filter: blur(14px);
    }

    .jump-nav::-webkit-scrollbar { display: none; }

    .jump-nav-label {
      flex: 0 0 auto;
      padding: 6px 12px 6px 10px;
      border-right: 1px solid rgba(79,111,82,0.16);
      color: var(--muted);
      font-size: 0.76rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .jump-nav a {
      flex: 0 0 auto;
      padding: 8px 13px;
      border: 1px solid transparent;
      border-radius: 999px;
      color: var(--primary);
      font-size: 0.84rem;
      font-weight: 700;
      text-decoration: none;
      transition: background-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
    }

    .jump-nav a:hover {
      border-color: rgba(79,111,82,0.16);
      background: rgba(255,255,255,0.76);
      transform: translateY(-1px);
    }

    .jump-nav a.active {
      color: #fff;
      background: var(--accent);
      box-shadow: 0 6px 16px rgba(45,63,43,0.18);
    }

    section[id] {
      scroll-margin-top: 94px;
    }

    .faq-list {
      display: grid;
      gap: 14px;
    }

    .faq-item {
      overflow: hidden;
      border: 1px solid rgba(79,111,82,0.14);
      border-radius: 18px;
      background: rgba(255,252,246,0.76);
      box-shadow: var(--shadow-soft);
    }

    .faq-item summary {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 20px 22px;
      cursor: pointer;
      color: var(--primary);
      font-weight: 700;
      list-style: none;
    }

    .faq-item summary::-webkit-details-marker { display: none; }

    .faq-item summary::after {
      content: "+";
      flex: 0 0 auto;
      width: 28px;
      height: 28px;
      border-radius: 50%;
      color: var(--accent);
      background: rgba(79,111,82,0.1);
      display: grid;
      place-items: center;
      font-size: 1.2rem;
      line-height: 1;
    }

    .faq-item[open] summary::after { content: "–"; }

    .faq-item p {
      margin: 0;
      padding: 0 22px 22px;
      color: var(--muted);
    }

    section {
      width: min(1040px, calc(100% - 32px));
      margin: 64px auto 0;
      position: relative;
    }

    section + section::before {
      content: "";
      position: absolute;
      top: -32px;
      left: 50%;
      width: min(760px, 82%);
      height: 1px;
      transform: translateX(-50%);
      background: linear-gradient(90deg, transparent, rgba(79,111,82,0.34), transparent);
    }

    body > section:not(.panel):not(.hero):not(.process-section):not(.local-seo-panel):not(.cta-panel):not(.grid) {
      padding-top: 8px;
      padding-bottom: 8px;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(79,111,82,0.09);
      color: var(--accent);
      font-size: 0.84rem;
      font-weight: 700;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .hero {
      position: relative;
      overflow: hidden;
      padding: 78px 38px;
      border-radius: 34px;
      background:
        radial-gradient(circle at right top, rgba(143,168,137,0.24), transparent 32%),
        linear-gradient(135deg, rgba(255,253,248,0.8), rgba(255,248,238,0.62)),
        url('logo-header-fill.webp') center right 18% / 500px no-repeat;
      border: 1px solid rgba(79,111,82,0.14);
      box-shadow: var(--shadow);
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(90deg, rgba(244,235,216,0.95) 0%, rgba(244,235,216,0.88) 44%, rgba(244,235,216,0.4) 100%);
      pointer-events: none;
    }

    .hero::after {
      content: "";
      position: absolute;
      right: clamp(18px, 6vw, 88px);
      top: clamp(18px, 4vw, 60px);
      width: clamp(120px, 18vw, 230px);
      aspect-ratio: 1;
      border: 1px solid rgba(82,107,80,0.18);
      border-radius: 42% 58% 48% 52%;
      background:
        radial-gradient(circle at 32% 28%, rgba(255,255,255,0.58), transparent 38%),
        linear-gradient(145deg, rgba(149,171,141,0.18), rgba(255,255,255,0.05));
      opacity: 0.75;
      pointer-events: none;
      animation: shellDrift 12s ease-in-out infinite alternate;
    }

    .hero-inner {
      position: relative;
      z-index: 1;
      max-width: 660px;
    }

    .hero.hero-split .hero-inner {
      max-width: none;
    }

    .hero-top {
      display: grid;
      grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.85fr);
      gap: 26px;
      align-items: center;
    }

    .hero-copy {
      max-width: 660px;
    }

    .hero-side-photo {
      position: relative;
      overflow: hidden;
      height: 460px;
      border-radius: 28px;
      border: 1px solid rgba(79,111,82,0.14);
      background: rgba(255,255,255,0.72);
      box-shadow: 0 24px 40px rgba(34, 36, 30, 0.14);
    }

    .hero-side-photo img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.8s ease, filter 0.8s ease;
    }

    .hero-side-photo:hover img {
      transform: scale(1.035);
      filter: saturate(1.03) contrast(1.02);
    }

    .hero-side-photo::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26,29,24,0.04), rgba(26,29,24,0.4));
      pointer-events: none;
    }

    .hero-side-photo figcaption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 18px;
      z-index: 1;
      color: #fff;
    }

    .hero-side-photo strong {
      display: block;
      margin-bottom: 3px;
      font-size: 1.02rem;
    }

    .hero-side-photo span {
      display: block;
      font-size: 0.94rem;
      line-height: 1.45;
      color: rgba(255,255,255,0.9);
    }

    .hero h1 {
      font-size: clamp(2.5rem, 4.4vw, 4.3rem);
      margin-top: 16px;
      margin-bottom: 14px;
    }

    .hero p {
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 620px;
      margin-bottom: 0;
    }

    .cta-row {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-top: 24px;
    }

    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 48px;
      padding: 0 22px;
      border-radius: 999px;
      text-decoration: none;
      font-weight: 700;
      transition: transform 0.24s ease, background-color 0.24s ease, box-shadow 0.24s ease;
      box-shadow: 0 10px 18px rgba(55, 73, 51, 0.1);
    }

    .button:hover { transform: translateY(-2px); }
    .button.primary {
      position: relative;
      overflow: hidden;
      background: var(--accent);
      color: #fff;
    }

    .button.primary::after {
      content: "";
      position: absolute;
      inset: 0;
      transform: translateX(-120%);
      background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
      transition: transform 0.62s ease;
    }

    .button.primary:hover::after {
      transform: translateX(120%);
    }

    .button.primary:hover { background: var(--primary); }
    .button.secondary {
      background: rgba(255,255,255,0.76);
      color: var(--primary);
      border: 1px solid rgba(79,111,82,0.16);
      box-shadow: var(--shadow-soft);
    }

    .hero-highlights {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      justify-content: start;
      gap: 16px 18px;
      margin-top: 30px;
      max-width: 100%;
    }

    .highlight {
      position: relative;
      overflow: hidden;
      background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,250,242,0.68));
      border: 1px solid rgba(79,111,82,0.1);
      border-radius: 20px;
      min-height: 118px;
      padding: 18px;
      text-align: left;
      box-shadow: var(--shadow-soft);
      transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
    }

    .highlight:hover {
      transform: translateY(-3px);
      border-color: rgba(82,107,80,0.24);
      box-shadow: 0 18px 34px rgba(45,40,28,0.1);
    }

    .highlight strong {
      display: block;
      margin-bottom: 4px;
      font-size: 0.96rem;
    }

    .highlight span {
      color: var(--muted);
      font-size: 0.94rem;
    }

    .hero-visual-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 24px;
      max-width: 100%;
    }

    .visual-card {
      position: relative;
      overflow: hidden;
      aspect-ratio: 4 / 3;
      min-height: 0;
      border-radius: 20px;
      border: 1px solid rgba(79,111,82,0.14);
      box-shadow: 0 18px 34px rgba(34, 36, 30, 0.12);
      background: #d9d1bf;
    }

    .visual-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.72s ease, filter 0.72s ease;
    }

    .visual-card:hover img,
    .mosaic-card:hover img,
    .activity-card:hover img {
      transform: scale(1.045);
      filter: saturate(1.04) contrast(1.03);
    }

    .visual-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26, 29, 24, 0.04), rgba(26, 29, 24, 0.72));
      pointer-events: none;
    }

    .visual-card figcaption {
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 16px;
      z-index: 1;
      color: #fff;
    }

    .visual-card strong {
      display: block;
      margin-bottom: 3px;
      font-size: 1rem;
      letter-spacing: 0.02em;
    }

    .visual-card span {
      display: block;
      font-size: 0.92rem;
      line-height: 1.45;
      color: rgba(255,255,255,0.88);
    }

    .process-section,
    .local-seo-panel {
      background: linear-gradient(180deg, rgba(255,255,255,0.82), rgba(255,250,243,0.7));
      border: 1px solid rgba(79,111,82,0.18);
      border-radius: 30px;
      padding: 32px;
      box-shadow: 0 18px 42px rgba(45, 40, 28, 0.09);
      backdrop-filter: blur(8px);
    }

    .process-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
    }

    .process-step {
      position: relative;
      overflow: hidden;
      min-height: 205px;
      border-radius: 24px;
      padding: 24px;
      background: linear-gradient(160deg, rgba(47,58,47,0.08), rgba(255,252,246,0.9));
      border: 1px solid rgba(79,111,82,0.13);
      box-shadow: var(--shadow-soft);
    }

    .process-step span {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: 44px;
      height: 44px;
      margin-bottom: 18px;
      border-radius: 50%;
      background: var(--accent);
      color: #fff;
      font-weight: 800;
      letter-spacing: 0.04em;
    }

    .process-step h3 {
      font-size: 1.18rem;
      margin-bottom: 8px;
    }

    .process-step p {
      color: var(--muted);
      margin-bottom: 0;
    }

    .local-seo-panel {
      display: grid;
      grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
      gap: 26px;
      align-items: center;
    }

    .local-seo-panel p:last-child,
    .local-seo-list p:last-child {
      margin-bottom: 0;
    }

    .local-seo-list {
      padding: 22px;
      border-radius: 22px;
      background: rgba(255,255,255,0.76);
      border: 1px solid rgba(79,111,82,0.12);
      box-shadow: var(--shadow-soft);
    }

    .range-callout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(210px, 0.34fr);
      gap: 24px;
      align-items: center;
      background:
        radial-gradient(circle at right center, rgba(82,107,80,0.18), transparent 34%),
        linear-gradient(135deg, rgba(255,253,248,0.9), rgba(255,250,243,0.74));
    }

    .range-callout h2 {
      max-width: 760px;
    }

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

    .range-stat {
      display: grid;
      place-items: center;
      min-height: 190px;
      padding: 22px;
      text-align: center;
      border-radius: 26px;
      background: linear-gradient(160deg, rgba(47,58,47,0.92), rgba(82,107,80,0.88));
      color: #fff;
      box-shadow: 0 20px 34px rgba(45, 63, 43, 0.16);
    }

    .range-stat strong {
      display: block;
      margin-bottom: 8px;
      font-family: 'Playfair Display', serif;
      font-size: clamp(2.2rem, 5vw, 3.45rem);
      line-height: 1;
      color: #fff;
    }

    .range-stat span {
      display: block;
      max-width: 230px;
      color: rgba(255,255,255,0.88);
      font-size: 0.96rem;
      line-height: 1.45;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 18px;
      margin-bottom: 22px;
    }

    .section-head p {
      max-width: 620px;
      color: var(--muted);
      margin-bottom: 0;
    }

    .page-intro {
      text-align: center;
      max-width: 760px;
      margin: 0 auto 8px;
    }

    .page-intro p {
      color: var(--muted);
      font-size: 1.02rem;
      margin-bottom: 0;
    }

    .page-banner {
      display: grid;
      grid-template-columns: minmax(300px, 0.95fr) minmax(0, 1.05fr);
      gap: 24px;
      align-items: center;
      margin-top: 26px;
      padding: 16px;
      border-radius: 28px;
      background: linear-gradient(180deg, rgba(255,255,255,0.86), rgba(255,250,243,0.78));
      border: 1px solid rgba(79,111,82,0.12);
      box-shadow: var(--shadow-soft);
    }

    .page-banner.reverse {
      grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
    }

    .page-banner img {
      width: 100%;
      min-height: 280px;
      display: block;
      object-fit: cover;
      border-radius: 20px;
      box-shadow: 0 18px 34px rgba(34, 36, 30, 0.1);
    }

    .page-banner-copy {
      padding: 8px 6px;
    }

    .page-banner-copy p:last-child {
      margin-bottom: 0;
    }

    .panel,
    .card,
    .legal-box {
      background: rgba(255,252,246,0.84);
      border: 1px solid rgba(79,111,82,0.16);
      box-shadow: var(--shadow);
      backdrop-filter: blur(8px);
    }

    .panel {
      border-radius: 30px;
      padding: 34px;
      box-shadow: 0 22px 48px rgba(45, 40, 28, 0.1);
      position: relative;
      overflow: hidden;
    }

    .panel::after {
      content: "";
      position: absolute;
      inset: 0 0 auto;
      height: 4px;
      background: linear-gradient(90deg, transparent, rgba(82,107,80,0.28), transparent);
      opacity: 0;
      transition: opacity 0.35s ease;
      pointer-events: none;
    }

    .panel:hover::after {
      opacity: 1;
    }

    .grid {
      display: grid;
      gap: 22px;
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
    .grid.service-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
    .grid.info-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }

    .card {
      border-radius: 22px;
      padding: 24px;
      position: relative;
      overflow: hidden;
      transition: transform 0.24s ease, box-shadow 0.24s ease, border-color 0.24s ease;
    }

    .card::before,
    .highlight::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at top right, rgba(149,171,141,0.14), transparent 34%);
      opacity: 0;
      transition: opacity 0.3s ease;
      pointer-events: none;
    }

    .card:hover {
      transform: translateY(-3px);
      border-color: rgba(82,107,80,0.26);
      box-shadow: 0 22px 38px rgba(45, 40, 28, 0.1);
    }

    .card:hover::before,
    .highlight:hover::before {
      opacity: 1;
    }

    .about-layout {
      display: grid;
      grid-template-columns: minmax(280px, 360px) 1fr;
      gap: 34px;
      align-items: start;
    }

    .about-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,250,243,0.82));
      border: 1px solid rgba(79,111,82,0.14);
      border-radius: 26px;
      padding: 16px;
      box-shadow: 0 18px 36px rgba(45, 40, 28, 0.08);
    }

    .photo-feature {
      display: grid;
      grid-template-columns: minmax(320px, 1.05fr) minmax(0, 0.95fr);
      gap: 24px;
      align-items: center;
    }

    .photo-feature img {
      width: 100%;
      display: block;
      border-radius: 22px;
      object-fit: cover;
      box-shadow: 0 20px 36px rgba(34, 36, 30, 0.12);
      transition: transform 0.72s ease, box-shadow 0.72s ease;
    }

    .photo-feature:hover img {
      transform: translateY(-3px) scale(1.018);
      box-shadow: 0 26px 44px rgba(34, 36, 30, 0.16);
    }

    .lifestyle-panel {
      display: grid;
      grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
      gap: 24px;
      align-items: center;
    }

    .mosaic-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 16px;
    }

    .mosaic-card {
      position: relative;
      overflow: hidden;
      min-height: 230px;
      border-radius: 18px;
      box-shadow: 0 16px 30px rgba(34, 36, 30, 0.1);
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(79,111,82,0.12);
    }

    .mosaic-card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .mosaic-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26,29,24,0.02), rgba(26,29,24,0.6));
      pointer-events: none;
    }

    .mosaic-card figcaption {
      position: absolute;
      left: 16px;
      right: 16px;
      bottom: 14px;
      z-index: 1;
      color: #fff;
      font-weight: 700;
      font-size: 0.95rem;
    }

    .about-photo {
      display: block;
      width: 100%;
      border-radius: 16px;
      object-fit: cover;
    }

    .about-caption {
      margin-top: 14px;
      text-align: center;
      font-weight: 700;
    }

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

    .activity-gallery {
      display: grid;
      grid-template-columns: repeat(4, minmax(0, 1fr));
      gap: 14px;
      margin-top: 30px;
      align-items: stretch;
    }

    .activity-card {
      position: relative;
      overflow: hidden;
      border-radius: 24px;
      min-height: 320px;
      background: #d9d1bf;
      border: 1px solid rgba(79,111,82,0.12);
      box-shadow: 0 18px 34px rgba(45, 40, 28, 0.08);
    }

    .activity-card.feature {
      grid-column: auto;
    }

    .activity-card img {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
    }

    .activity-card::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(180deg, rgba(26,29,24,0.02), rgba(26,29,24,0.72));
      pointer-events: none;
    }

    .activity-card div {
      position: absolute;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
      padding: 18px 18px 20px;
    }

    .activity-card h3 {
      margin-bottom: 8px;
      font-size: 1.08rem;
      color: #fff;
    }

    .activity-card p {
      margin-bottom: 0;
      color: rgba(255,255,255,0.88);
      font-size: 0.95rem;
      line-height: 1.45;
    }

    .list-clean {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .list-clean li {
      padding-left: 18px;
      position: relative;
      margin-bottom: 10px;
    }

    .list-clean li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 11px;
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--accent);
    }

    .availability-block p:last-child,
    .card p:last-child,
    .legal-box p:last-child { margin-bottom: 0; }

    .home-availability-panel {
      padding: 30px 34px;
    }

    .home-page section {
      margin-top: 48px;
    }

    .home-page section + section::before {
      top: -24px;
    }

    .home-page .hero {
      padding: 56px 34px 42px;
    }

    .home-page .hero-top {
      gap: 22px;
    }

    .home-page .hero-side-photo {
      min-height: 410px;
    }

    .home-page .hero-highlights {
      margin-top: 24px;
    }

    .home-page .hero-visual-strip {
      margin-top: 18px;
    }

    .home-page .photo-feature img {
      aspect-ratio: 16 / 10;
      max-height: 360px;
    }

    .home-page .range-callout,
    .home-page .local-seo-panel,
    .home-page .panel {
      padding: 28px;
    }

    .home-link-grid {
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
      margin-top: 22px;
    }

    .home-link-grid .card {
      padding: 22px;
    }

    .home-availability-panel .availability-block {
      display: grid;
      grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
      gap: 24px;
      align-items: center;
    }

    .home-availability-panel h2 {
      margin-top: 12px;
      margin-bottom: 0;
    }

    .preference-panel {
      overflow: hidden;
      background:
        radial-gradient(circle at right center, rgba(82,107,80,0.2), transparent 36%),
        linear-gradient(135deg, rgba(47,58,47,0.08), rgba(255,252,246,0.9));
      border-color: rgba(82,107,80,0.24);
    }

    .preference-panel h2 {
      max-width: 780px;
    }

    .preference-panel p {
      max-width: 880px;
    }

    .partner-panel {
      background:
        radial-gradient(circle at left top, rgba(149,171,141,0.18), transparent 34%),
        linear-gradient(135deg, rgba(255,253,248,0.9), rgba(255,250,243,0.74));
    }

    .partner-cta {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 22px;
      padding: 18px 20px;
      border-radius: 20px;
      background: rgba(255,255,255,0.72);
      border: 1px solid rgba(79,111,82,0.12);
      box-shadow: var(--shadow-soft);
    }

    .partner-cta p {
      margin-bottom: 0;
    }

    .availability-wrap {
      display: grid;
      gap: 18px;
    }

    .availability-group {
      border-radius: 22px;
      padding: 20px;
      border: 1px solid rgba(79,111,82,0.14);
      box-shadow: var(--shadow-soft);
    }

    .availability-group h3 {
      margin-bottom: 10px;
    }

    .availability-group p {
      margin-bottom: 10px;
    }

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

    .availability-group.in-home-group {
      background: linear-gradient(180deg, rgba(79,111,82,0.12), rgba(255,252,246,0.8));
    }

    .availability-group.location-group {
      background: linear-gradient(180deg, rgba(47,58,47,0.05), rgba(255,252,246,0.9));
      border-left: 4px solid var(--accent);
    }

    .card.subtle-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,250,243,0.76));
    }

    .card.featured-rate {
      background: linear-gradient(135deg, rgba(79,111,82,0.16), rgba(255,252,246,0.94));
      border: 1px solid rgba(79,111,82,0.26);
      box-shadow: 0 22px 42px rgba(45, 63, 43, 0.14);
    }

    .featured-rate h3 {
      font-size: 1.28rem;
      margin-bottom: 12px;
    }

    .first-visit-panel {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
      gap: 24px;
      align-items: center;
      background:
        radial-gradient(circle at right center, rgba(82,107,80,0.18), transparent 34%),
        linear-gradient(135deg, rgba(255,253,248,0.94), rgba(255,250,243,0.8));
    }

    .first-visit-copy p {
      max-width: 680px;
      color: var(--muted);
      margin-bottom: 0;
    }

    .first-visit-options {
      display: grid;
      gap: 14px;
    }

    .first-visit-rate {
      padding: 18px;
      border-radius: 22px;
      background: rgba(255,255,255,0.82);
      border: 1px solid rgba(79,111,82,0.14);
      box-shadow: var(--shadow-soft);
    }

    .first-visit-rate span {
      display: block;
      color: var(--accent);
      font-size: 0.82rem;
      font-weight: 800;
      letter-spacing: 0.05em;
      text-transform: uppercase;
    }

    .first-visit-rate strong {
      display: block;
      margin: 7px 0 5px;
      font-family: 'Playfair Display', serif;
      font-size: 2.45rem;
      line-height: 1;
      color: var(--primary);
    }

    .first-visit-rate p {
      color: var(--muted);
      font-size: 0.94rem;
      line-height: 1.45;
      margin-bottom: 0;
    }

    .first-visit-actions {
      grid-column: 1 / -1;
      margin-top: 0;
    }

    .quick-pricing-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 18px;
    }

    .quick-price-card {
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .quick-price-card .button {
      width: 100%;
      margin-top: auto;
    }

    .quick-price-line {
      margin-bottom: 8px;
      color: var(--muted);
      font-weight: 700;
    }

    .quick-price-line span {
      display: inline-block;
      min-width: 70px;
      color: var(--accent);
      font-size: 1.45rem;
      line-height: 1;
      font-weight: 800;
    }

    .rate-amount {
      display: block;
      margin: 10px 0 6px;
      font-size: 2rem;
      line-height: 1;
      font-weight: 700;
      color: var(--accent);
    }

    .rate-label {
      display: inline-flex;
      align-items: center;
      min-height: 30px;
      padding: 0 12px;
      border-radius: 999px;
      background: rgba(255,255,255,0.8);
      color: var(--primary);
      font-size: 0.8rem;
      font-weight: 700;
      letter-spacing: 0.03em;
      text-transform: uppercase;
    }

    .card.wide-card {
      grid-column: 1 / -1;
    }

    .service-card h3,
    .policy-card h3 {
      margin-bottom: 8px;
    }

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

    .policy-list {
      display: grid;
      gap: 18px;
    }

    .policy-card {
      border-left: 5px solid rgba(82,107,80,0.55);
    }

    .price-note {
      display: inline-block;
      margin-top: 10px;
      padding: 7px 10px;
      border-radius: 999px;
      background: rgba(79,111,82,0.08);
      color: var(--accent);
      font-size: 0.85rem;
      font-weight: 700;
    }

    .package-block {
      margin-top: 24px;
      padding: 22px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(255,255,255,0.78), rgba(255,250,243,0.7));
      border: 1px solid rgba(79,111,82,0.12);
      box-shadow: var(--shadow-soft);
    }

    .package-block h3 {
      margin-bottom: 14px;
      font-size: 1.2rem;
    }

    .table-wrap {
      width: 100%;
      overflow-x: auto;
      border-radius: 18px;
      border: 1px solid rgba(79,111,82,0.12);
      background: rgba(255,253,248,0.9);
    }

    .pricing-table {
      width: 100%;
      min-width: 720px;
      border-collapse: collapse;
    }

    .pricing-table th,
    .pricing-table td {
      padding: 14px 16px;
      text-align: left;
      border-bottom: 1px solid rgba(79,111,82,0.1);
      vertical-align: top;
    }

    .pricing-table th {
      background: rgba(79,111,82,0.1);
      color: var(--primary);
      font-size: 0.82rem;
      letter-spacing: 0.04em;
      text-transform: uppercase;
    }

    .pricing-table td:not(:first-child),
    .pricing-table th:not(:first-child) {
      text-align: right;
      white-space: nowrap;
    }

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

    .testimonial {
      font-style: italic;
      font-size: 1.04rem;
    }

    .small-note {
      margin-top: 12px;
      color: var(--muted);
      font-size: 0.94rem;
    }

    .metric-strip {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 16px;
      margin-top: 22px;
    }

    .metric {
      border-radius: 20px;
      padding: 20px;
      background: linear-gradient(180deg, rgba(255,255,255,0.9), rgba(255,250,243,0.78));
      border: 1px solid rgba(79,111,82,0.12);
      box-shadow: var(--shadow-soft);
    }

    .metric strong {
      display: block;
      color: var(--accent);
      font-size: clamp(1.8rem, 3vw, 2.55rem);
      line-height: 1;
      margin-bottom: 8px;
      font-family: 'Playfair Display', serif;
    }

    .metric span {
      display: block;
      color: var(--muted);
      font-size: 0.95rem;
      line-height: 1.45;
    }

    .science-note {
      margin-top: 22px;
      margin-bottom: 22px;
      padding: 18px 20px;
      border-left: 4px solid var(--accent);
      border-radius: 18px;
      background: rgba(255,255,255,0.64);
      color: var(--muted);
    }

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

    .cta-panel {
      display: grid;
      grid-template-columns: 1.2fr 0.8fr;
      gap: 18px;
      align-items: stretch;
    }

    .cta-box {
      border-radius: 26px;
      padding: 28px;
      background: linear-gradient(160deg, rgba(79,111,82,0.1), rgba(255,252,246,0.82));
      border: 1px solid rgba(79,111,82,0.14);
      box-shadow: var(--shadow);
    }

    .legal-box {
      border-radius: 26px;
      padding: 30px;
    }

    .sticky-book {
      position: fixed;
      right: 20px;
      bottom: 20px;
      z-index: 1000;
      padding: 14px 20px;
      border-radius: 999px;
      background: var(--accent);
      color: #fff;
      text-decoration: none;
      font-weight: 700;
      box-shadow: 0 14px 30px rgba(45, 63, 43, 0.2);
      transition: transform 0.24s ease, background-color 0.24s ease;
    }

    .sticky-book:hover {
      transform: translateY(-2px);
      background: var(--primary);
    }

    footer {
      margin-top: 52px;
      padding: 0 0 100px;
    }

    .footer-panel {
      width: min(1040px, calc(100% - 32px));
      margin: 0 auto;
      border-radius: 28px;
      padding: 28px;
      background: linear-gradient(180deg, rgba(255,250,243,0.76), rgba(233,223,197,0.7));
      border: 1px solid rgba(79,111,82,0.14);
      box-shadow: var(--shadow-soft);
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 24px;
    }

    .footer-grid > div:last-child {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding-top: 18px;
      border-top: 1px solid rgba(79,111,82,0.14);
    }

    .footer-grid > div:last-child .footer-links {
      display: flex;
      gap: 18px;
      flex-wrap: wrap;
    }

    .footer-links {
      list-style: none;
      padding: 0;
      margin: 0;
    }

    .footer-links li { margin-bottom: 10px; }
    .footer-grid p:last-child { margin-bottom: 0; }

    @keyframes shellDrift {
      from {
        transform: translate3d(0, 0, 0) rotate(0deg);
      }
      to {
        transform: translate3d(-12px, 14px, 0) rotate(8deg);
      }
    }

    @keyframes pageRise {
      from {
        opacity: 0;
        transform: translateY(14px);
      }
      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .topbar,
    nav,
    .hero {
      animation: pageRise 0.7s ease both;
    }

    nav { animation-delay: 0.08s; }
    .hero { animation-delay: 0.14s; }

    .reveal-on-scroll {
      opacity: 0;
      transform: translateY(24px);
      transition: opacity 0.72s ease, transform 0.72s ease;
      will-change: opacity, transform;
    }

    .reveal-on-scroll.is-visible {
      opacity: 1;
      transform: translateY(0);
    }

    .reveal-on-scroll.reveal-delay-1 { transition-delay: 0.08s; }
    .reveal-on-scroll.reveal-delay-2 { transition-delay: 0.16s; }
    .reveal-on-scroll.reveal-delay-3 { transition-delay: 0.24s; }

    @media (prefers-reduced-motion: reduce) {
      html { scroll-behavior: auto; }

      *,
      *::before,
      *::after {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
        scroll-behavior: auto !important;
        transition-duration: 0.001ms !important;
      }

      .reveal-on-scroll {
        opacity: 1;
        transform: none;
      }
    }

    @media (max-width: 920px) {
      .grid,
      .grid.two,
      .grid.service-grid,
      .grid.info-grid,
      .first-visit-panel,
      .quick-pricing-grid,
      .process-strip,
      .local-seo-panel,
      .range-callout,
      .home-availability-panel .availability-block,
      .metric-strip,
      .cta-panel,
      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-grid > div:last-child {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
      }

      .footer-grid > div:last-child .footer-links {
        display: flex;
        gap: 16px;
        flex-wrap: wrap;
      }

      .hero-highlights {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        max-width: 100%;
      }

      .hero-visual-strip,
      .mosaic-grid {
        grid-template-columns: 1fr;
      }

      .home-page .hero-visual-strip {
        grid-template-columns: repeat(3, minmax(230px, 1fr));
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
      }

      .home-page .hero-visual-strip::-webkit-scrollbar {
        display: none;
      }

      .home-page .hero-visual-strip .visual-card {
        scroll-snap-align: start;
      }

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

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

      .hero-top,
      .page-banner,
      .page-banner.reverse,
      .photo-feature {
        grid-template-columns: 1fr;
      }

      .lifestyle-panel {
        grid-template-columns: 1fr;
      }

      .hero-side-photo {
        height: 320px;
      }

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

      .activity-card {
        min-height: 290px;
      }

      .hero {
        background:
          radial-gradient(circle at right top, rgba(143,168,137,0.18), transparent 34%),
          linear-gradient(135deg, rgba(255,255,255,0.82), rgba(255,255,255,0.64));
        padding-top: 46px;
        padding-bottom: 50px;
      }

      .hero::before {
        background: linear-gradient(180deg, rgba(242,231,207,0.96) 0%, rgba(242,231,207,0.9) 100%);
      }

      .about-card { max-width: 380px; margin: 0 auto; }
      .section-head { display: block; }
      .section-head p { margin-top: 8px; }
    }

    @media (max-width: 640px) {
      .site-shell,
      section,
      .footer-panel {
        width: min(100% - 20px, 1040px);
      }

      section {
        margin-top: 48px;
      }

      .home-page section {
        margin-top: 36px;
      }

      section + section::before {
        top: -24px;
        width: 88%;
      }

      .topbar { padding: 16px; }
      .topbar img { transform: scale(1.1); }
      .home-page .topbar {
        min-height: 96px;
        padding: 12px 14px;
        border-radius: 18px;
      }
      .home-page .topbar img {
        width: min(100%, 340px);
        height: auto;
        transform: none;
      }
      .menu-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 6px;
        width: min(220px, 100%);
        margin-left: auto;
        margin-right: auto;
        margin-top: 12px;
        padding: 12px 18px;
        border: 1px solid rgba(79,111,82,0.16);
        border-radius: 999px;
        background: linear-gradient(180deg, rgba(255,253,248,0.96), rgba(242,233,213,0.9));
        color: var(--primary);
        font: inherit;
        cursor: pointer;
        box-shadow: 0 8px 20px rgba(45,40,28,0.08);
      }
      .menu-toggle span {
        width: 4px;
        height: 4px;
        border-radius: 50%;
        background: var(--accent);
      }
      .menu-toggle strong {
        margin-left: 5px;
        font-size: 0.85rem;
      }
      header.site-shell nav {
        display: none;
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 8px;
        max-width: 480px;
        margin: 10px auto 0;
        padding: 12px;
        border: 1px solid rgba(79,111,82,0.14);
        border-radius: 22px;
        background: linear-gradient(180deg, rgba(255,253,248,0.96), rgba(242,233,213,0.92));
        box-shadow: 0 16px 34px rgba(45,40,28,0.12);
      }
      header.site-shell.menu-open nav { display: grid; }
      header.site-shell nav a {
        width: 100%;
        padding: 11px 10px;
        border: 1px solid rgba(79,111,82,0.1);
        background: rgba(255,255,255,0.48);
        text-align: center;
      }
      header.site-shell nav a.current {
        color: #fff;
        background: var(--accent);
      }
      .jump-nav-wrap {
        top: 6px;
        width: min(100% - 20px, 1040px);
        margin-top: 14px;
      }
      .jump-nav {
        justify-content: flex-start;
        width: auto;
        max-width: 100%;
        padding: 8px;
        border-radius: 18px;
      }
      .jump-nav-label {
        display: none;
      }
      .interior-header { padding-top: 14px; }
      .interior-header .topbar {
        min-height: 104px;
        padding: 10px 14px;
        border-radius: 18px;
      }
      .text-wordmark-main {
        font-size: clamp(2rem, 12vw, 3.15rem);
        letter-spacing: 0.08em;
        text-indent: 0.08em;
      }
      .text-wordmark-sub {
        font-size: 0.78rem;
        letter-spacing: 0.42em;
        text-indent: 0.42em;
      }
      .interior-header .topbar img {
        width: min(100%, 360px);
        transform: scale(1.05);
      }
      .interior-header nav {
        gap: 10px 12px;
        margin-top: 12px;
      }
      .hero { padding-left: 22px; padding-right: 22px; border-radius: 24px; }
      .home-page .hero { padding: 28px 18px 26px; }
      .hero h1 { font-size: 2.25rem; }
      .hero-top { gap: 18px; }
      .hero-side-photo { height: 280px; }
      .home-page .hero-side-photo { height: 230px; }
      .home-page .hero-highlights,
      .home-page .hero-visual-strip {
        margin-top: 14px;
      }
      .home-page .visual-card { aspect-ratio: 16 / 11; }
      .home-link-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
        gap: 14px;
        margin-top: 18px;
      }
      .home-page .range-callout,
      .home-page .local-seo-panel,
      .home-page .panel {
        padding: 22px 18px;
      }
      .hero-highlights { grid-template-columns: 1fr; }
      .home-page .hero-highlights {
        grid-template-columns: repeat(3, minmax(230px, 1fr));
        overflow-x: auto;
        padding-bottom: 4px;
        scroll-snap-type: x proximity;
        scrollbar-width: none;
      }
      .home-page .hero-highlights::-webkit-scrollbar { display: none; }
      .home-page .highlight {
        min-height: 0;
        scroll-snap-align: start;
      }
      .activity-gallery { grid-template-columns: 1fr; }
      .activity-card { min-height: 280px; }
      .button { width: 100%; }
      .sticky-book {
        left: 12px;
        right: 12px;
        bottom: 12px;
        text-align: center;
      }
      .panel,
      .legal-box,
      .card {
        padding-left: 20px;
        padding-right: 20px;
      }
    }

    @media (max-width: 480px) {
      .home-link-grid {
        grid-template-columns: 1fr;
      }
    }
