  body { background: var(--paper); }

  /* ─── Page head ─── */
  .page-head {
    background: var(--orange-soft);
    padding: 72px 0 88px;
    position: relative;
    overflow: hidden;
  }
  .page-head .container { position: relative; z-index: 2; }
  .page-head .grid {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 56px;
    align-items: end;
  }
  .page-head h1 {
    font-size: clamp(40px, 5.4vw, 76px);
    line-height: 1;
    letter-spacing: -0.035em;
  }
  .page-head h1 .script {
    display: block;
    font-size: 1.05em;
    color: var(--orange-deep);
    margin-top: -4px;
  }
  .page-head .lede {
    color: var(--ink);
    font-size: 18px;
    line-height: 1.55;
    margin-top: 24px;
    max-width: 520px;
    opacity: .82;
  }
  .head-summary {
    background: white;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px 24px;
  }
  .head-summary .num {
    font-size: 36px;
    font-weight: 700;
    color: var(--green-deep);
    letter-spacing: -0.03em;
    line-height: 1;
  }
  .head-summary .num span { color: var(--orange); }
  .head-summary .lbl {
    font-size: 13px;
    color: var(--muted);
    margin-top: 6px;
    line-height: 1.4;
  }
  .head-summary .row { padding: 4px 0; }

  /* ─── Section intro ─── */
  .section-intro {
    padding: 80px 0 24px;
    text-align: center;
  }
  .section-intro h2 {
    font-size: clamp(28px, 3.2vw, 40px);
    line-height: 1.1;
    max-width: 720px;
    margin: 0 auto;
  }
  .section-intro p {
    color: var(--muted);
    font-size: 17px;
    max-width: 580px;
    margin: 16px auto 0;
  }

  /* ─── Amenity rows ─── */
  .amenity-rows {
    padding: 48px 0 96px;
  }
  .amenity-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    padding: 56px 0;
    border-bottom: 1px solid var(--line);
  }
  .amenity-row:last-child { border-bottom: none; }
  .amenity-row.reverse .amenity-photo { order: 2; }
  .amenity-row .amenity-photo {
    aspect-ratio: 5/4;
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--cream);
    position: relative;
    box-shadow: var(--shadow-md);
  }
  .amenity-row .amenity-photo img {
    width: 100%; height: 100%; object-fit: cover;
    transition: transform .6s ease;
  }
  .amenity-row:hover .amenity-photo img { transform: scale(1.03); }
  .amenity-row .amenity-photo .badge {
    position: absolute;
    top: 20px; left: 20px;
    background: rgba(0,0,0,.55);
    color: white;
    padding: 6px 14px;
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .04em;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
  }
  .amenity-row .amenity-photo .badge.green { background: var(--green-deep); }
  .amenity-row .amenity-photo .badge.orange { background: var(--orange); }

  .amenity-text .num {
    font-family: "Yellowtail", cursive;
    font-size: 64px;
    color: var(--orange);
    line-height: 1;
    margin-bottom: 4px;
    padding-bottom: 0.05em;
  }
  .amenity-text h3 {
    font-size: clamp(28px, 3vw, 38px);
    line-height: 1.05;
    letter-spacing: -0.025em;
    margin-bottom: 18px;
  }
  .amenity-text p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    max-width: 480px;
    margin-bottom: 14px;
  }
  .amenity-text p strong { color: var(--ink); font-weight: 600; }

  .amenity-facts {
    margin-top: 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    max-width: 480px;
  }
  .amenity-facts .fact {
    padding: 12px 0;
    border-top: 1px solid var(--line);
  }
  .amenity-facts .fact-label {
    font-size: 11px;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: .1em;
    font-weight: 600;
    margin-bottom: 4px;
  }
  .amenity-facts .fact-value {
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
  }

  /* ─── Honesty section ─── */
  .honesty {
    background: var(--ink);
    color: white;
    padding: 80px 0;
    position: relative;
    overflow: hidden;
  }
  .honesty::before {
    content: "";
    position: absolute;
    right: -200px; top: -200px;
    width: 500px; height: 500px;
    border-radius: 50%;
    background: rgba(233, 78, 27, .08);
  }
  .honesty .grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 56px;
    align-items: start;
  }
  .honesty .eyebrow { color: var(--orange); }
  .honesty h2 {
    color: white;
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.05;
    margin-top: 16px;
  }
  .honesty h2 .script { color: var(--orange); display: inline-block; font-size: 1.1em; vertical-align: -4px; }
  .honesty .intro {
    color: rgba(255,255,255,.7);
    font-size: 17px;
    line-height: 1.55;
    margin-top: 18px;
    max-width: 440px;
  }
  .honesty-list {
    display: flex;
    flex-direction: column;
    gap: 2px;
  }
  .honesty-list .item {
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    padding: 18px 0;
    border-bottom: 1px solid rgba(255,255,255,.08);
    gap: 16px;
  }
  .honesty-list .item:last-child { border-bottom: none; }
  .honesty-list .name {
    font-size: 18px;
    font-weight: 600;
    color: white;
  }
  .honesty-list .why {
    color: rgba(255,255,255,.55);
    font-size: 14px;
    margin-top: 2px;
    line-height: 1.4;
  }
  .honesty-list .mark {
    width: 36px; height: 36px;
    border-radius: 50%;
    border: 1px solid rgba(255,255,255,.15);
    color: rgba(255,255,255,.5);
    display: grid; place-items: center;
    flex-shrink: 0;
  }

  /* ─── Pets section ─── */
  .pets {
    padding: 96px 0;
    background: var(--cream);
  }
  .pets .grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: center;
  }
  .pets-photo {
    aspect-ratio: 4/5;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
  }
  .pets-photo img { width: 100%; height: 100%; object-fit: cover; }
  .pets-text h2 {
    font-size: clamp(30px, 3.4vw, 44px);
    line-height: 1.05;
    margin: 12px 0 20px;
  }
  .pets-text h2 .script { color: var(--orange); display: inline-block; font-size: 1.1em; vertical-align: -4px; }
  .pets-text p {
    color: var(--muted);
    font-size: 17px;
    line-height: 1.6;
    margin-bottom: 16px;
    max-width: 540px;
  }
  .policy-table {
    margin-top: 28px;
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    overflow: hidden;
  }
  .policy-table .pol-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    padding: 16px 22px;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
    align-items: center;
  }
  .policy-table .pol-row:last-child { border-bottom: none; }
  .policy-table .pol-row .k { color: var(--muted); font-size: 13px; text-transform: uppercase; letter-spacing: .08em; font-weight: 600; }
  .policy-table .pol-row .v { font-weight: 600; color: var(--ink); }

  /* ─── Hours / access ─── */
  .access {
    padding: 88px 0;
  }
  .access .grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
  }
  .access-card {
    background: white;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 28px;
  }
  .access-card .icon {
    width: 44px; height: 44px;
    border-radius: 12px;
    background: var(--green-soft);
    color: var(--green-deep);
    display: grid; place-items: center;
    margin-bottom: 16px;
  }
  .access-card h4 { font-size: 18px; font-weight: 700; margin-bottom: 10px; letter-spacing: -0.01em; }
  .access-card .schedule {
    display: flex; flex-direction: column;
    gap: 6px;
    font-size: 14px;
    color: var(--muted);
  }
  .access-card .schedule .line {
    display: flex; justify-content: space-between;
    padding: 4px 0;
  }
  .access-card .schedule .line strong { color: var(--ink); font-weight: 600; }

  /* ─── CTA ─── */
  .cta-strip {
    background: var(--green-deep);
    color: white;
    border-radius: var(--radius-lg);
    padding: 56px 64px;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 32px;
    align-items: center;
    position: relative;
    overflow: hidden;
    margin-bottom: 80px;
  }
  .cta-strip::before {
    content: "";
    position: absolute;
    right: -120px; top: -120px;
    width: 360px; height: 360px;
    border-radius: 50%;
    background: rgba(233, 78, 27, .12);
  }
  .cta-strip h2 { color: white; font-size: 36px; line-height: 1.1; }
  .cta-strip h2 .script { color: var(--orange); display: inline-block; font-size: 1.05em; vertical-align: -3px; }
  .cta-strip p { color: rgba(255,255,255,.78); margin-top: 14px; font-size: 16px; max-width: 480px; }
  .cta-strip .actions { display: flex; flex-direction: column; gap: 10px; position: relative; z-index: 1; }
  .cta-strip .actions .btn { width: 100%; justify-content: center; }
  .cta-strip .btn-primary { background: var(--orange); }
  .cta-strip .btn-ghost-light { background: transparent; color: white; border-color: rgba(255,255,255,.3); }
  .cta-strip .btn-ghost-light:hover { background: rgba(255,255,255,.08); border-color: white; }

  @media (max-width: 980px) {
    .page-head .grid, .honesty .grid, .pets .grid, .amenity-row, .cta-strip { grid-template-columns: 1fr; gap: 32px; }
    .amenity-row.reverse .amenity-photo { order: 0; }
    .access .grid { grid-template-columns: 1fr; }
    .head-summary { grid-template-columns: 1fr 1fr; }
    .cta-strip { padding: 36px; }
  }
