:root {
    --bg: #fafaf8;
    --surface: #f3f0eb;
    --text-primary: #1d1d1f;
    --text-secondary: #6e6e73;
    --border: #e5e0d8;
    --max-width: 1440px;
    --H: 700px;
  }

  * { margin: 0; padding: 0; box-sizing: border-box; }

  body {
    font-family: -apple-system, BlinkMacSystemFont, "Helvetica Neue", Helvetica, Arial, sans-serif;
    background: #d8d3ca;
  }

  .page {
    max-width: var(--max-width);
    margin: 0 auto;
    background: var(--bg);
    overflow: hidden;
  }

  /* NAV */
  nav {
    position: sticky;
    top: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    padding: 0 48px;
    height: 52px;
    background: rgba(250,250,248,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: transform 200ms ease;
  }

  .wordmark {
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
  }

  .wordmark-mobile { display: none; }

  .nav-spacer { flex: 1; }

  .nav-links {
    display: flex;
    gap: 32px;
    align-items: center;
    list-style: none;
  }

  .nav-links a {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    color: var(--text-secondary);
    text-decoration: none;
    transition: opacity 160ms ease;
  }

  .nav-links a:hover { opacity: 0.6; }

  .nav-book { color: var(--text-primary) !important; }

  .nav-icons {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-left: 28px;
  }

  .nav-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    color: var(--text-secondary);
    text-decoration: none;
    cursor: pointer;
    transition: opacity 160ms ease;
  }

  .nav-icon svg {
    display: block;
    width: 18px;
    height: 18px;
    stroke: currentColor;
  }

  .nav-icon:hover { opacity: 0.6; }

  /* MOBILE NAV — hamburger & full-screen menu */
  .hamburger {
    display: none;
    align-items: center;
    justify-content: center;
    background: none;
    border: none;
    cursor: pointer;
    padding: 12px;
    margin-right: -12px;
  }

  .hamburger-icon {
    width: 18px;
    height: 9px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }

  .hamburger-icon span {
    width: 100%;
    height: 1.5px;
    background: var(--text-primary);
    transition: all 0.3s;
  }

  .mobile-menu {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: var(--bg);
    z-index: 1000;
    overflow-y: auto;
    padding-top: 52px;
  }

  .mobile-menu.active { display: block; }

  .mobile-menu-close {
    position: absolute;
    top: 16px;
    right: 20px;
    background: none;
    border: none;
    font-size: 28px;
    color: var(--text-primary);
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    z-index: 1001;
  }

  .mobile-menu ul {
    list-style: none;
    padding: 24px;
  }

  .mobile-menu li { margin-bottom: 20px; }

  .mobile-menu a {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    text-decoration: none;
    display: block;
    line-height: 1.4;
    letter-spacing: 0;
    text-transform: none;
  }

  .mobile-menu .nav-book {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
  }

  .mobile-menu-contacts-top {
    display: flex;
    gap: 20px;
    padding: 24px;
    border-bottom: 1px solid var(--border);
  }

  .contact-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    color: var(--text-primary);
    text-decoration: none;
    cursor: pointer;
    opacity: 0.8;
    transition: opacity 0.2s;
  }

  .contact-icon svg {
    display: block;
    width: 28px;
    height: 28px;
    stroke: currentColor;
  }

  .contact-icon:hover { opacity: 0.6; }

  /* ══════════════════════════════
     SECTION PATTERN (v8)
     Text → Hero → Grid

     1. TEXT  — fixed height, warm bg
     2. HERO  — full-bleed, tall
     3. GRID  — 2x2 square cells
  ══════════════════════════════ */

  /* 1. TEXT — padding-driven, no fixed height */
  .s-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 72px;
    background: var(--bg);
  }

  /* TEXT on surface bg — used for What It Is Not */
  .s-text-surface {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 100px 72px;
    background: var(--surface);
  }

  .s-text .inner,
  .s-text-surface .inner { max-width: 640px; }

  /* Photo placeholder — for sections awaiting real images */
  .ph-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    background: var(--border);
  }
  .ph-cell {
    aspect-ratio: 1 / 1;
    background: #d4cfc8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px;
    text-align: center;
  }
  .ph-cell .ph-icon { font-size: 28px; opacity: 0.4; }
  .ph-cell .ph-label {
    font-size: 11px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.03em;
    line-height: 1.4;
  }
  .ph-hero {
    width: 100%;
    height: 65vh;
    background: #d4cfc8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 10px;
  }
  .ph-hero .ph-icon { font-size: 36px; opacity: 0.4; }
  .ph-hero .ph-label {
    font-size: 12px;
    font-weight: 500;
    color: #888;
    letter-spacing: 0.03em;
  }

  /* TAG — Apple spec: 21px · 600 · 0.011em · sentence case */
  .tag {
    display: block;
    font-size: 21px;
    font-weight: 600;
    letter-spacing: 0.011em;
    text-transform: none;
    color: var(--text-secondary);
    margin-bottom: 20px;
  }

  /* H2 — 56px Title 1 per design.md */
  .s-text h2,
  .s-text-surface h2 {
    font-size: 56px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.06;
    color: var(--text-primary);
    margin-bottom: 20px;
  }

  /* H3 — subheadline, Apple Title 3 (28px) */
  .s-text .sub-head,
  .s-text-surface .sub-head {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-primary);
    line-height: 1.4;
    margin-bottom: 20px;
    max-width: 580px;
  }

  /* Body */
  .s-text p,
  .s-text-surface p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 560px;
    margin-bottom: 10px;
  }

  /* CTA — Label style, text-primary, border-bottom. Not blue. */
  .cta {
    display: inline-block;
    margin-top: 28px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-primary);
    text-decoration: none;
    border-bottom: 1px solid var(--border);
    padding-bottom: 2px;
    transition: border-color 0.15s;
  }
  .cta:hover { border-color: var(--text-primary); }

  /* 2. HERO IMAGE — full bleed, section height */
  .s-hero {
    height: 65vh;
    width: 100%;
    overflow: hidden;
    position: relative;
  }

  .s-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    display: block;
  }

  /* 3. GRID — 2x2, square cells */
  .s-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3px;
    background: var(--border);
  }

  .s-grid .cell {
    aspect-ratio: 1 / 1;   /* square — shows maximum photo */
    overflow: hidden;
    position: relative;
  }

  .s-grid .cell img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
  }

  /* photo filename label — strip before developer handover */
  .ph {
    position: absolute;
    bottom: 8px;
    right: 10px;
    font-size: 9px;
    color: rgba(255,255,255,0.6);
    background: rgba(0,0,0,0.35);
    padding: 2px 6px;
    letter-spacing: 0.03em;
  }

  /* SECTION DIVIDER — between text sections */
  .divider {
    height: 1px;
    background: var(--border);
    margin: 0 72px;
  }

  /* PHOTO GAP — thin white line between hero and grid */
  .photo-gap {
    height: 4px;
    background: var(--bg);
  }

  /* ══════════════════════════════
     PAGE INTRO — full-wide hero
     Full-bleed photo, text below
  ══════════════════════════════ */

  .intro-hero {
    position: relative;
    width: 100%;
    height: 56.25vw;
    max-height: 860px;
    min-height: 500px;
    overflow: hidden;
  }

  .intro-hero img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 38%;
    display: block;
  }

  /* Subtle dark gradient at bottom so nav brand stays legible */
  .intro-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to bottom,
      rgba(0,0,0,0.18) 0%,
      transparent 30%,
      transparent 65%,
      rgba(0,0,0,0.25) 100%
    );
    pointer-events: none;
  }

  .intro-text {
    display: grid;
    grid-template-columns: 3fr 1.5fr;
    gap: 0;
    padding: 100px 72px;
    background: var(--bg);
    align-items: stretch;
  }

  .intro-left {
    padding-right: 80px;
  }

  .intro-right {
    padding-left: 64px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
  }

  .intro-text h1 {
    font-size: 80px;
    font-weight: 600;
    letter-spacing: -0.025em;
    line-height: 1.04;
    color: var(--text-primary);
    margin-bottom: 16px;
  }

  .intro-text .hero-h2 {
    font-size: 28px;
    font-weight: 500;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
    line-height: 1.4;
    margin-bottom: 0;
  }

  .intro-text .intro-sub {
    font-size: 19px;
    font-weight: 400;
    letter-spacing: -0.01em;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-top: 20px;
    margin-bottom: 0;
  }

  .intro-john {
    font-size: 17px;
    font-style: normal;
    font-weight: 400;
    letter-spacing: 0;
    color: var(--text-secondary);
    line-height: 1.85;
  }
  .intro-john-attr {
    display: block;
    font-size: 13px;
    font-style: normal;
    font-weight: 500;
    color: var(--text-primary);
    margin-top: 16px;
    letter-spacing: 0;
  }

  /* Price strip — caption below hero image, centered, acts as a filter */
  .price-strip {
    background: var(--bg);
    padding: 18px 72px;
    font-size: 14px;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--text-secondary);
    text-align: center;
  }

  .photo-note {
    position: absolute;
    bottom: 12px;
    left: 12px;
    right: 12px;
    background: rgba(0,0,0,0.55);
    color: rgba(255,255,255,0.85);
    font-size: 10px;
    letter-spacing: 0.08em;
    padding: 6px 10px;
    line-height: 1.5;
    z-index: 2;
  }

  /* ══════════════════════════════
     REVIEWS
  ══════════════════════════════ */

  .reviews {
    padding: 100px 72px;
    background: var(--surface);
  }

  .reviews h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
    margin-bottom: 10px;
  }

  .reviews-stat {
    display: block;
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 56px;
  }

  /* Stacked review blocks — each one has section-level weight */
  .review-block {
    padding: 80px 72px;
    border-top: 1px solid var(--border);
    max-width: 900px;
  }

  .review-block blockquote {
    font-size: 32px;
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.01em;
    line-height: 1.5;
    color: var(--text-primary);
    margin-bottom: 28px;
  }

  /* Full review variant — paragraph-length text */
  .review-block.full blockquote {
    font-size: 19px;
    line-height: 1.75;
  }

  .review-block cite {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--text-secondary);
    font-style: normal;
  }

  /* ══════════════════════════════
     SCROLL STRIP
  ══════════════════════════════ */

  .strip-section {
    padding: 80px 0 80px 72px;
    background: var(--bg);
  }

  .strip-header {
    padding-right: 72px;
    margin-bottom: 32px;
  }

  .strip-header h2 {
    font-size: 40px;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--text-primary);
    margin-top: 8px;
  }

  .strip-scroll {
    display: flex;
    gap: 12px;
    overflow-x: scroll;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    padding-right: 72px;
    padding-bottom: 4px;
  }

  .strip-scroll::-webkit-scrollbar { display: none; }
  .strip-scroll { scrollbar-width: none; }

  .strip-card {
    flex: 0 0 660px;
    height: 420px;
    border-radius: 0;
    overflow: hidden;
    position: relative;
    scroll-snap-align: start;
  }

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

  .strip-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
      to top,
      rgba(0,0,0,0.38) 0%,
      rgba(0,0,0,0.1) 40%,
      transparent 65%
    );
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
  }

  .strip-card-caption {
    font-size: 20px;
    font-weight: 400;
    letter-spacing: -0.01em;
    line-height: 1.4;
    color: #ffffff;
    max-width: 380px;
  }

  /* Review card — text only, no image */
  .strip-review {
    flex: 0 0 680px;
    height: 420px;
    border-radius: 0;
    overflow: hidden;
    scroll-snap-align: start;
    background: var(--surface);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 44px 52px;
  }

  .strip-review blockquote {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 18px;
    font-weight: 400;
    font-style: normal;
    line-height: 1.7;
    color: var(--text-primary);
    margin-bottom: 20px;
  }

  .strip-review cite {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0;
    color: #1a1a1a;
    font-style: normal;
  }

  /* Scroll indicator dots */
  .strip-dots {
    display: flex;
    gap: 6px;
    padding: 20px 72px 0;
  }

  .strip-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--border);
    transition: background 0.25s;
  }

  .strip-dot.active {
    background: var(--text-primary);
  }

  /* MOBILE */
  @media (max-width: 768px) {
    nav { padding: 0 20px; }
    .nav-links { display: none; }
    .wordmark-desktop { display: none; }
    .wordmark-mobile { display: inline; }
    .nav-icons { gap: 16px; margin-left: 0; margin-right: 18px; }
    .hamburger { display: flex; }

    .intro-hero { height: 56.25vw; min-height: 280px; max-height: 500px; }
    .intro-text { padding: 48px 24px 56px; }
    .intro-text h1 { font-size: 48px; }
    .intro-text .hero-h2 { font-size: 20px; }
    .intro-text .sub { font-size: 16px; }

    .s-text,
    .s-text-surface { height: auto; padding: 60px 24px; }
    .s-text h2,
    .s-text-surface h2 { font-size: 36px; }
    .s-text .sub-head,
    .s-text-surface .sub-head { font-size: 22px; }

    .s-hero { height: 75vw; min-height: 300px; }

    /* On mobile grid cells stay square — same aspect-ratio rule applies */

    .reviews { padding: 60px 24px; }
    .reviews h2 { font-size: 28px; }
    .review-block { padding: 56px 24px; }
    .review-block blockquote { font-size: 22px; }
    .divider { margin: 0 24px; }

    .strip-section { padding: 56px 0 56px 24px; }
    .strip-header { padding-right: 24px; }
    .strip-header h2 { font-size: 28px; }
    .strip-scroll { padding-right: 24px; }
    .strip-card { flex: 0 0 300px; height: 210px; }
    .strip-card-caption { font-size: 18px; }
    .strip-dots { padding: 16px 24px 0; }
  }
