/* ══════════════════════════════════════════════════════════════
   Self-hosted fonts (latin subset, variable weight files).
   ══════════════════════════════════════════════════════════════ */
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(fonts/cormorant-garamond.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 300 400;
  font-display: swap;
  src: url(fonts/cormorant-garamond-italic.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

@font-face {
  font-family: 'DM Sans';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url(fonts/dm-sans.woff2) format('woff2');
  unicode-range: U+0000-00FF, U+0131, U+0152-0153, U+02BB-02BC, U+02C6, U+02DA, U+02DC, U+0304, U+0308, U+0329, U+2000-206F, U+20AC, U+2122, U+2191, U+2193, U+2212, U+2215, U+FEFF, U+FFFD;
}

/* ══════════════════════════════════════════════════════════════
   Design stylesheet — the rendered look is frozen; do not edit.
   ══════════════════════════════════════════════════════════════ */
  :root {
    --cream: #faf8f4;
    --warm-white: #f5f2ec;
    --blush: #e8d5c4;
    --rose: #c49a82;
    --deep-rose: #9a6e58;
    --bark: #4a3728;
    --text: #2a1f18;
    --muted: #8a7a72;
    --border: rgba(74,55,40,0.12);
    --serif: 'Cormorant Garamond', Georgia, serif;
    --sans: 'DM Sans', sans-serif;
  }

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

  html { scroll-behavior: smooth; }

  body {
    font-family: var(--sans);
    background: var(--cream);
    color: var(--text);
    font-size: 16px;
    line-height: 1.7;
    overflow-x: hidden;
  }

  /* ── NAV ── */
  nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 22px 52px;
    background: rgba(250,248,244,0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: padding 0.3s;
  }

  .nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    cursor: pointer;
  }

  .nav-logo span { color: var(--rose); font-style: italic; }

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

  .nav-links a {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.2s;
    cursor: pointer;
  }

  .nav-links a:hover, .nav-links a.active { color: var(--text); }

  .nav-cta {
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cream) !important;
    background: var(--bark);
    padding: 10px 24px;
    border-radius: 2px;
    text-decoration: none;
    transition: background 0.2s !important;
    cursor: pointer;
  }

  .nav-cta:hover { background: var(--deep-rose) !important; }

  /* ── PAGE SYSTEM ── */
  .page { display: none; padding-top: 80px; }
  .page.active { display: block; }

  /* ── HOME ── */
  .hero {
    min-height: calc(100vh - 80px);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
  }

  .hero-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 80px 64px 80px 52px;
  }

  .hero-eyebrow {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 24px;
  }

  .hero-title {
    font-family: var(--serif);
    font-size: clamp(48px, 5vw, 72px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--text);
    margin-bottom: 28px;
  }

  .hero-title em {
    font-style: italic;
    color: var(--rose);
  }

  .hero-sub {
    font-size: 16px;
    color: var(--muted);
    max-width: 400px;
    margin-bottom: 44px;
    line-height: 1.75;
  }

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

  .btn-primary {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--bark);
    padding: 16px 36px;
    border-radius: 2px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: background 0.2s;
  }
  .btn-primary:hover { background: var(--deep-rose); }

  .btn-ghost {
    display: inline-block;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--bark);
    text-decoration: none;
    border-bottom: 1px solid var(--bark);
    padding-bottom: 2px;
    cursor: pointer;
    transition: color 0.2s, border-color 0.2s;
  }
  .btn-ghost:hover { color: var(--rose); border-color: var(--rose); }

  .hero-right {
    position: relative;
    background: var(--warm-white);
    overflow: hidden;
  }

  .hero-img-placeholder {
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg, #e8d5c4 0%, #d4b8a4 40%, #c49a82 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    padding-bottom: 40px;
  }

  .hero-img-placeholder::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.06'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .hero-img-text {
    position: relative;
    font-family: var(--serif);
    font-size: 14px;
    color: rgba(255,255,255,0.7);
    letter-spacing: 0.06em;
    text-align: center;
  }

  .hero-badge {
    position: absolute;
    bottom: 40px;
    left: -20px;
    background: var(--cream);
    padding: 20px 28px;
    box-shadow: 0 8px 40px rgba(74,55,40,0.12);
    border-radius: 2px;
    min-width: 200px;
  }

  .hero-badge-num {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    color: var(--bark);
    line-height: 1;
  }

  .hero-badge-label {
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--muted);
    margin-top: 4px;
  }

  /* TRUST STRIP */
  .trust-strip {
    background: var(--bark);
    padding: 20px 52px;
    display: flex;
    gap: 52px;
    justify-content: center;
    align-items: center;
    overflow: hidden;
  }

  /* left-align below the width where the centered row still fits */
  @media (max-width: 1300px) {
    .trust-strip { justify-content: flex-start; }
  }

  .trust-item {
    display: flex;
    align-items: center;
    gap: 12px;
    white-space: nowrap;
    flex-shrink: 0;
  }

  .trust-dot {
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--rose);
    flex-shrink: 0;
  }

  .trust-item span {
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250,248,244,0.7);
  }

  /* INTRO SECTION */
  .section { padding: 100px 52px; }

  .section-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 20px;
  }

  .section-title {
    font-family: var(--serif);
    font-size: clamp(32px, 3.5vw, 52px);
    font-weight: 300;
    line-height: 1.15;
    margin-bottom: 24px;
  }

  .section-title em { font-style: italic; color: var(--rose); }

  .intro-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

  .intro-body {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.85;
  }

  .intro-body p + p { margin-top: 20px; }

  .intro-img {
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--blush), var(--rose));
    border-radius: 2px;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
  }

  .img-label {
    font-family: var(--serif);
    font-size: 13px;
    color: rgba(255,255,255,0.6);
    letter-spacing: 0.06em;
  }

  /* SERVICES PREVIEW */
  .services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
    margin-top: 52px;
  }

  .service-card {
    background: var(--cream);
    padding: 40px 36px;
    cursor: pointer;
    transition: background 0.2s;
    position: relative;
    overflow: hidden;
  }

  .service-card::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 2px;
    background: var(--rose);
    transform: scaleX(0);
    transition: transform 0.3s;
    transform-origin: left;
  }

  .service-card:hover { background: var(--warm-white); }
  .service-card:hover::after { transform: scaleX(1); }

  .service-num {
    font-family: var(--serif);
    font-size: 48px;
    font-weight: 300;
    color: var(--blush);
    line-height: 1;
    margin-bottom: 20px;
  }

  .service-name {
    font-family: var(--serif);
    font-size: 22px;
    font-weight: 400;
    margin-bottom: 12px;
  }

  .service-desc {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  /* BOOKING BAND */
  .booking-band {
    background: var(--warm-white);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 80px 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .booking-text .label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 12px;
  }

  .booking-text h2 {
    font-family: var(--serif);
    font-size: 42px;
    font-weight: 300;
    line-height: 1.15;
  }

  .booking-text h2 em { font-style: italic; color: var(--rose); }

  .booking-details {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 280px;
  }

  .booking-detail {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 14px;
    color: var(--muted);
  }

  .booking-detail-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--rose);
    flex-shrink: 0;
  }

  /* ── SERVICES PAGE ── */
  .page-hero {
    padding: 80px 52px 60px;
    border-bottom: 1px solid var(--border);
    background: var(--warm-white);
  }

  .page-hero-inner {
    max-width: 640px;
  }

  .services-list {
    padding: 0 52px 100px;
  }

  .service-full {
    display: grid;
    grid-template-columns: 200px 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding: 60px 0;
    border-bottom: 1px solid var(--border);
  }

  .service-full:last-child { border-bottom: none; }

  .service-full-num {
    font-family: var(--serif);
    font-size: 80px;
    font-weight: 300;
    color: var(--blush);
    line-height: 0.9;
  }

  .service-full-name {
    font-family: var(--serif);
    font-size: 32px;
    font-weight: 300;
    margin-bottom: 16px;
  }

  .service-full-desc {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.8;
    margin-bottom: 24px;
  }

  .service-tag {
    display: inline-block;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--deep-rose);
    background: rgba(196,154,130,0.15);
    padding: 4px 12px;
    border-radius: 20px;
    margin-right: 6px;
    margin-bottom: 6px;
  }

  .service-full-details {
    padding-top: 8px;
  }

  .detail-row {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
  }

  .detail-row:last-child { border-bottom: none; }

  .detail-label { color: var(--muted); }
  .detail-value { font-weight: 500; color: var(--text); }

  /* ── ABOUT PAGE ── */
  .about-hero {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 600px;
  }

  .about-hero-img {
    background: linear-gradient(145deg, var(--blush), var(--rose));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--serif);
    font-size: 14px;
    color: rgba(255,255,255,0.5);
    letter-spacing: 0.06em;
  }

  .about-hero-text {
    padding: 80px 64px 80px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .about-body {
    font-size: 16px;
    color: var(--muted);
    line-height: 1.85;
  }

  .about-body p + p { margin-top: 20px; }

  .credentials {
    padding: 80px 52px;
    background: var(--warm-white);
    border-top: 1px solid var(--border);
  }

  .cred-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    margin-top: 52px;
  }

  .cred-item {
    padding: 32px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 2px;
  }

  .cred-icon {
    font-family: var(--serif);
    font-size: 36px;
    font-weight: 300;
    color: var(--rose);
    margin-bottom: 16px;
  }

  .cred-title {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    margin-bottom: 8px;
  }

  .cred-body {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
  }

  .philosophy {
    padding: 80px 52px;
    display: grid;
    grid-template-columns: 1fr 1fr 1.5fr;
    gap: 60px;
    align-items: start;
  }

  .philosophy-quote {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 300;
    font-style: italic;
    line-height: 1.4;
    color: var(--bark);
  }

  .philosophy-body {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.85;
  }

  .philosophy-body p + p { margin-top: 20px; }

  /* ── CONTACT PAGE ── */
  .contact-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: calc(100vh - 80px);
  }

  .contact-left {
    padding: 80px 52px;
    background: var(--warm-white);
    border-right: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .contact-info-block {
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    gap: 28px;
  }

  .contact-info-item {}
  .contact-info-label {
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--rose);
    margin-bottom: 6px;
  }

  .contact-info-val {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 300;
    color: var(--text);
  }

  .contact-info-val a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
  }
  .contact-info-val a:hover {
    color: var(--rose);
  }

  .contact-info-sub {
    font-size: 13px;
    color: var(--muted);
    margin-top: 2px;
  }

  .contact-right {
    padding: 80px 64px 80px 52px;
    display: flex;
    flex-direction: column;
    justify-content: center;
  }

  .form-group {
    margin-bottom: 24px;
  }

  .form-label {
    display: block;
    font-size: 11px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 8px;
  }

  .form-input, .form-select, .form-textarea {
    width: 100%;
    font-family: var(--sans);
    font-size: 15px;
    color: var(--text);
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 2px;
    padding: 14px 16px;
    outline: none;
    transition: border-color 0.2s;
    -webkit-appearance: none;
  }

  .form-input:focus, .form-select:focus, .form-textarea:focus {
    border-color: var(--rose);
  }

  .form-textarea { resize: vertical; min-height: 120px; }

  .form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
  }

  .form-submit {
    width: 100%;
    font-family: var(--sans);
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--cream);
    background: var(--bark);
    border: none;
    border-radius: 2px;
    padding: 18px 36px;
    cursor: pointer;
    transition: background 0.2s;
    margin-top: 8px;
  }

  .form-submit:hover { background: var(--deep-rose); }

  .form-note {
    font-size: 12px;
    color: var(--muted);
    margin-top: 12px;
    text-align: center;
  }

  /* SUCCESS STATE */
  .form-success {
    display: none;
    text-align: center;
    padding: 60px 40px;
  }

  .form-success.show { display: block; }
  .form-fields.hide { display: none; }

  .success-icon {
    font-family: var(--serif);
    font-size: 64px;
    color: var(--rose);
    margin-bottom: 24px;
  }

  /* FOOTER */
  footer {
    background: var(--bark);
    padding: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
  }

  .footer-logo {
    font-family: var(--serif);
    font-size: 18px;
    font-weight: 400;
    color: rgba(250,248,244,0.7);
    letter-spacing: 0.04em;
  }

  .footer-logo span { font-style: italic; color: var(--rose); }

  .footer-links {
    display: flex;
    gap: 28px;
    list-style: none;
  }

  .footer-links a {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250,248,244,0.45);
    text-decoration: none;
    cursor: pointer;
    transition: color 0.2s;
  }

  .footer-links a:hover { color: rgba(250,248,244,0.8); }

  .footer-copy {
    font-size: 12px;
    color: rgba(250,248,244,0.35);
  }

  /* FILLER AREA CARDS */
  .filler-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--border);
    border: 1px solid var(--border);
  }

  .filler-card {
    background: var(--cream);
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    transition: background 0.2s;
  }

  .filler-card:hover { background: var(--warm-white); }

  .filler-card-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 14px;
  }

  .filler-area-label {
    font-family: var(--serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--text);
  }

  .filler-popular {
    font-size: 10px;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--deep-rose);
    background: rgba(196,154,130,0.2);
    padding: 3px 10px;
    border-radius: 20px;
  }

  .filler-desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.75;
    flex: 1;
    margin-bottom: 20px;
  }

  .filler-meta {
    border-top: 1px solid var(--border);
    padding-top: 4px;
  }

  .filler-meta .detail-row {
    padding: 8px 0;
    font-size: 13px;
  }

  @media (max-width: 900px) {
    .filler-grid { grid-template-columns: 1fr; }
    .service-full[style] { grid-template-columns: 1fr !important; }
  }

  /* ANIMATIONS */
  @keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
  }

  .fade-up {
    animation: fadeUp 0.6s ease forwards;
  }

  .fade-up-2 { animation: fadeUp 0.6s 0.12s ease forwards; opacity: 0; }
  .fade-up-3 { animation: fadeUp 0.6s 0.24s ease forwards; opacity: 0; }
  .fade-up-4 { animation: fadeUp 0.6s 0.36s ease forwards; opacity: 0; }

  /* RESPONSIVE */
  @media (max-width: 900px) {
    nav { padding: 18px 24px; }
    .nav-links { gap: 16px; }
    .hero { grid-template-columns: 1fr; }
    .hero-right { display: none; }
    .hero-left { padding: 60px 24px; }
    .section { padding: 60px 24px; }
    .intro-grid, .about-hero, .contact-layout { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .cred-grid { grid-template-columns: 1fr; }
    .service-full { grid-template-columns: 1fr; gap: 24px; }
    .service-full-num { font-size: 48px; }
    .booking-band { flex-direction: column; align-items: flex-start; padding: 60px 24px; }
    .philosophy { grid-template-columns: 1fr; gap: 40px; }
    .trust-strip { padding: 16px 24px; }
    footer { flex-direction: column; gap: 24px; text-align: center; padding: 40px 24px; }
    .footer-links { flex-wrap: wrap; justify-content: center; }
    .page-hero { padding: 60px 24px 40px; }
    .services-list { padding: 0 24px 60px; }
    .credentials { padding: 60px 24px; }
    .about-hero-text { padding: 60px 24px; }
    .contact-left, .contact-right { padding: 60px 24px; }
    .form-row { grid-template-columns: 1fr; }
    .hero-badge { display: none; }
  }

  /* Phone nav: shrink the logo and tighten the row so it stays one line
     down to 320px without overflowing. */
  @media (max-width: 560px) {
    nav { padding: 12px 20px; gap: 12px; }
    .nav-logo { flex-shrink: 0; }
    .nav-logo img { height: 60px !important; }
    .nav-links { gap: 14px; }
    .nav-links a { font-size: 12px; letter-spacing: 0.04em; }
    .nav-cta { padding: 9px 15px; letter-spacing: 0.06em; white-space: nowrap; }
  }

  @media (max-width: 360px) {
    nav { padding: 12px 12px; gap: 8px; }
    .nav-links { gap: 10px; }
    .nav-links a { letter-spacing: 0.01em; }
    .nav-logo img { height: 52px !important; }
    .nav-cta { padding: 8px 12px; }
  }

/* ══════════════════════════════════════════════════════════════
   Structural and accessibility rules.
   ══════════════════════════════════════════════════════════════ */

picture { display: contents; }
a.service-card { display: block; color: inherit; text-decoration: none; }
form.form-fields { margin: 0; }

/* keyboard focus indicator for links/buttons */
a:focus-visible, button:focus-visible {
  outline: 2px solid var(--deep-rose);
  outline-offset: 3px;
}

/* scripted focus targets — suppress the outline that would flash on nav */
main:focus, .page h1:focus { outline: none; }

/* skip link — invisible until keyboard-focused */
.skip-link {
  position: fixed;
  top: 12px; left: 12px;
  z-index: 300;
  transform: translateY(-300%);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--cream);
  background: var(--bark);
  padding: 12px 20px;
  border-radius: 2px;
  text-decoration: none;
}
.skip-link:focus { transform: none; }

/* off-screen field, kept in the DOM and out of the tab order */
.field-offscreen {
  position: absolute;
  left: -9999px;
  width: 1px; height: 1px;
  overflow: hidden;
}

/* form submission error (deep-rose darkened to #8f6249 to meet
   WCAG AA 4.5:1 on cream) */
.form-error {
  display: none;
  font-size: 13px;
  color: #8f6249;
  margin-top: 12px;
  text-align: center;
}
.form-error.show { display: block; }

/* links inside the consent note (same AA-passing tone as .form-error) */
.form-note a {
  color: #8f6249;
  text-decoration: underline;
}

.form-submit:disabled { opacity: 0.7; cursor: default; }

.form-turnstile {
  margin: 20px 0 4px;
}

/* ── PRIVACY PAGE (pseudo-page, same visual system) ── */
.privacy-body {
  max-width: 680px;
  font-size: 15px;
  color: var(--muted);
  line-height: 1.85;
}

.privacy-body h2 {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--text);
  margin: 40px 0 12px;
}

.privacy-body h2:first-child { margin-top: 0; }

.privacy-body p + p { margin-top: 16px; }

.privacy-body ul {
  list-style: none;
  margin-top: 12px;
  margin-bottom: 16px;
}

.privacy-body li {
  position: relative;
  padding-left: 20px;
}

.privacy-body li + li { margin-top: 8px; }

.privacy-body li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.75em;
  width: 5px; height: 5px;
  border-radius: 50%;
  background: var(--rose);
}

.privacy-body a { color: var(--deep-rose); }
