/* ============================================
   PSAC — Shared Stylesheet
   palmspringsadventureclub.com
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,600;0,700;1,400;1,700&family=Montserrat:wght@400;500;600;700&display=swap');

:root {
    --mountain-pink: #F58271;
    --desert-green: #7ABD91;
    --sunset-red: #E76F51;
    --sand-beige: #F8F1E9;
    --dark-pine: #2A4747;
}

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

body {
    background-color: var(--sand-beige);
    color: var(--dark-pine);
    line-height: 1.6;
    font-family: 'Montserrat', sans-serif;
}

.container { width: 100%; max-width: 1160px; margin: 0 auto; padding: 0 28px; }

/* ── HEADER ── */
header {
    background-color: var(--dark-pine);
    padding: 1rem 0;
    position: sticky;
    top: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 16px rgba(0,0,0,0.18);
}

nav { display: flex; justify-content: space-between; align-items: center; }

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

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

.nav-links a {
    color: rgba(255,255,255,0.82);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    transition: color 0.2s;
    white-space: nowrap;
}

.nav-links a:hover { color: var(--desert-green); }

.nav-cta {
    background: var(--desert-green);
    color: white !important;
    padding: 0.55rem 1.2rem;
    border-radius: 30px;
    font-weight: 600 !important;
    transition: background 0.2s, transform 0.2s !important;
}

.nav-cta:hover {
    background: #63a677 !important;
    color: white !important;
    transform: translateY(-1px);
}

.hamburger {
    display: none;
    background: none;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
}

/* ── BUTTONS ── */
.btn {
    display: inline-block;
    background-color: var(--desert-green);
    color: white;
    padding: 1rem 2.4rem;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.76rem;
    letter-spacing: 0.13em;
    text-transform: uppercase;
    transition: all 0.25s;
    border: none;
    cursor: pointer;
}

.btn:hover { background-color: #63a677; transform: translateY(-2px); box-shadow: 0 8px 22px rgba(0,0,0,0.2); }
.btn-pine { background-color: var(--dark-pine); }
.btn-pine:hover { background-color: #1e3535; }
.btn-pink { background-color: var(--mountain-pink); }
.btn-pink:hover { background-color: #e06a5a; }

/* ── SHARED ── */
section { padding: 6rem 0; }

.section-eyebrow {
    display: block;
    font-size: 0.67rem;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--mountain-pink);
    margin-bottom: 0.7rem;
}

.section-title { text-align: center; margin-bottom: 3.5rem; }

.section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.9rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 0.9rem;
}

.section-title p {
    font-size: 0.97rem;
    max-width: 580px;
    margin: 0 auto;
    color: #666;
    line-height: 1.85;
}

/* ── HERO ── */
.hero {
    min-height: 92vh;
    background:
        linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
        url('images/hero.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    color: white;
}

.hero-content { max-width: 820px; padding: 2rem; }

.hero-eyebrow {
    font-size: 0.68rem;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    font-weight: 600;
    color: var(--desert-green);
    margin-bottom: 1.2rem;
}

.hero h1 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 4.6rem;
    font-weight: 700;
    line-height: 1.06;
    margin-bottom: 1.4rem;
    text-shadow: 2px 3px 10px rgba(0,0,0,0.4);
}

.hero p {
    font-size: 1.05rem;
    margin-bottom: 2.4rem;
    line-height: 1.85;
    opacity: 0.9;
    max-width: 660px;
    margin-left: auto;
    margin-right: auto;
}

/* secondary hero link — "How does this work?" */
.hero-hiw-link {
    display: block;
    margin-top: 1.2rem;
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    color: rgba(248,241,233,0.5);
    text-decoration: none;
    transition: color 0.2s;
}
.hero-hiw-link:hover { color: rgba(248,241,233,0.85); text-decoration: underline; }

/* ── THE OTHER SIDE ── */
.other-side {
    background: var(--dark-pine);
    color: white;
    padding: 5rem 0;
    text-align: center;
}

.other-side-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.9rem;
    font-weight: 400;
    font-style: italic;
    color: var(--desert-green) !important;
    margin-bottom: 1.5rem;
    line-height: 1.3;
}

.other-side p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    line-height: 1.8;
    max-width: 720px;
    margin: 0 auto;
    color: rgba(255,255,255,0.82);
}

/* ── EVERYONE ARRIVES DIFFERENTLY ── */
.everyone-arrives {
    background: var(--sand-beige);
    padding: 6rem 0;
}

.everyone-arrives .section-title { margin-bottom: 3rem; }

.everyone-arrives .section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2.9rem;
    font-weight: 700;
    font-style: normal;
    color: var(--dark-pine);
}

.segment-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.segment-card {
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    display: flex;
    flex-direction: column;
}

.segment-card-body { padding: 1.6rem; flex: 1; }

.segment-card-header {
    padding: 1.4rem 1.6rem;
    border-bottom: 3px solid;
}

.segment-card:nth-child(1) .segment-card-header { border-color: var(--sunset-red); }
.segment-card:nth-child(2) .segment-card-header { border-color: var(--desert-green); }
.segment-card:nth-child(3) .segment-card-header { border-color: var(--mountain-pink); }

.segment-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
}

.segment-card:nth-child(1) .segment-label { color: var(--sunset-red); }
.segment-card:nth-child(2) .segment-label { color: var(--desert-green); }
.segment-card:nth-child(3) .segment-label { color: var(--mountain-pink); }

.segment-card-body p { font-size: 1rem; line-height: 1.85; color: #555; }

.segment-trail-label {
    font-size: 0.62rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    font-weight: 700;
    display: block;
    margin-bottom: 0.6rem;
}

.segment-card:nth-child(1) .segment-trail-label { color: var(--sunset-red); }
.segment-card:nth-child(2) .segment-trail-label { color: var(--desert-green); }
.segment-card:nth-child(3) .segment-trail-label { color: var(--mountain-pink); }

.segment-trail-moment {
    border-top: 1px solid rgba(42,71,71,0.08);
    padding: 1.2rem 1.6rem 1.6rem;
}

.segment-trail-moment p { font-size: 0.9rem; line-height: 1.85; color: #555; font-style: italic; }

/* ── YOUR ADVENTURE STARTS HERE ── */
.consultations { background: white; }

.consult-intro {
    max-width: 600px;
    margin: 0 auto 3.5rem;
    text-align: center;
    font-size: 0.97rem;
    line-height: 1.9;
    color: #666;
}

.consult-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
}

.consult-card {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.08);
    transition: transform 0.25s;
    display: flex;
    flex-direction: column;
}

.consult-card:hover { transform: translateY(-5px); }

.consult-header {
    padding: 2rem 1.6rem;
    text-align: center;
    color: white;
}

.consult-card:nth-child(1) .consult-header { background: var(--mountain-pink); }
.consult-card:nth-child(2) .consult-header { background: var(--sunset-red); }
.consult-card:nth-child(3) .consult-header { background: var(--dark-pine); }

.consult-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}

.consult-tagline { font-size: 0.78rem; opacity: 0.85; font-style: italic; }

.consult-body {
    padding: 1.6rem;
    background: var(--sand-beige);
    flex: 1;
    display: flex;
    flex-direction: column;
}

.consult-body p {
    font-size: 0.87rem;
    line-height: 1.85;
    color: #555;
    margin-bottom: 1.4rem;
    flex: 1;
}

/* ── GEAR HANDLED ── */
.gear-rental { background: var(--sand-beige); }

.gear-intro {
    max-width: 600px;
    margin: 0 auto 3.5rem;
    text-align: center;
    font-size: 0.97rem;
    line-height: 1.9;
    color: #666;
}

.gear-packages {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1rem;
    max-width: 760px;
    margin: 0 auto;
}

.gear-card {
    background: white;
    border-radius: 8px;
    padding: 2rem;
    box-shadow: 0 4px 16px rgba(0,0,0,0.07);
    transition: transform 0.25s;
}

.gear-card:hover { transform: translateY(-4px); }

.gear-top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 1rem; }

.gear-name {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--dark-pine);
}

.gear-price {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--mountain-pink);
    white-space: nowrap;
}

.gear-price span { font-size: 0.75rem; font-weight: 400; color: #999; }

.gear-desc { font-size: 0.87rem; line-height: 1.82; color: #666; margin-bottom: 1rem; }

.gear-best {
    font-size: 0.67rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--desert-green);
}

.gear-addon {
    max-width: 760px;
    margin: 1.2rem auto 0;
    background: white;
    border-radius: 8px;
    padding: 1.1rem 1.6rem;
    display: flex;
    align-items: baseline;
    gap: 1rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
}

.gear-addon-label {
    font-size: 0.62rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--mountain-pink);
    white-space: nowrap;
}

.gear-addon p { font-size: 0.87rem; line-height: 1.7; color: #666; margin: 0; }

/* ── AFTER THE TRAIL ── */
.after-trail { background: var(--dark-pine); color: white; }
.after-trail .section-eyebrow { color: var(--desert-green); }

.after-trail .section-title h2 {
    color: white;
}

.after-trail .after-subhead {
    font-family: 'Montserrat', sans-serif;
    font-size: 1rem;
    font-style: normal;
    font-weight: 400;
    line-height: 1.85;
    color: rgba(255,255,255,0.82);
    max-width: 640px;
    margin: 1rem auto 0;
}

.after-intro {
    text-align: center;
    margin-top: 2rem;
    margin-bottom: 2.8rem;
}

.after-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-bottom: 1.4rem;
}

.after-card {
    background: rgba(255,255,255,0.06);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s;
    border: 1px solid rgba(255,255,255,0.1);
}

.after-card:hover { transform: translateY(-4px); }

.after-card-img {
    height: 210px;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.after-card-body { padding: 1.25rem 1.5rem 1.6rem; }

.after-card-label {
    font-size: 0.62rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 700;
    color: var(--desert-green);
    margin-bottom: 0.5rem;
}

.after-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    font-weight: 700;
    color: white;
    line-height: 1.25;
    margin-bottom: 0.6rem;
}

.after-card-desc {
    font-size: 0.85rem;
    line-height: 1.82;
    color: rgba(255,255,255,0.62);
    margin: 0;
}

.after-cta {
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 8px;
    padding: 2.8rem 3rem;
    text-align: center;
}

.after-cta p {
    font-size: 1rem;
    line-height: 1.85;
    color: rgba(255,255,255,0.72);
    max-width: 520px;
    margin: 0 auto;
}

.after-cta-link {
    display: inline-block;
    color: var(--desert-green);
    text-decoration: none;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.07em;
    border-bottom: 1px solid rgba(122, 189, 145, 0.45);
    padding-bottom: 1px;
    transition: color 0.2s, border-color 0.2s;
}

.after-cta-link:hover {
    color: #a8d8b5;
    border-color: rgba(122, 189, 145, 0.85);
}

/* ── THE CLUB ── */
.the-club { background: white; }
.the-club .section-eyebrow { color: var(--mountain-pink); }

.club-statement {
    max-width: 680px;
    margin: 0 auto 1.5rem;
    text-align: center;
}

.club-statement p {
    font-size: 0.97rem;
    line-height: 1.9;
    color: #555;
    margin-bottom: 0.75rem;
}

.club-tagline {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-style: italic;
    color: var(--dark-pine);
    text-align: center;
    max-width: 600px;
    margin: 0 auto 3.5rem;
    line-height: 1.5;
}

.membership-tiers {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.4rem;
    margin-bottom: 1.4rem;
}

.tier-card {
    background: var(--sand-beige);
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 18px rgba(0,0,0,0.07);
    transition: transform 0.25s;
    display: flex;
    flex-direction: column;
}

.tier-card:hover { transform: translateY(-5px); }

.tier-header {
    padding: 1.8rem 1.6rem;
    text-align: center;
    color: white;
}

.tier-card:nth-child(1) .tier-header { background: var(--mountain-pink); }
.tier-card:nth-child(2) .tier-header { background: var(--desert-green); }
.tier-card:nth-child(3) .tier-header { background: var(--sunset-red); }

.tier-header h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.3rem;
}

.tier-tagline { font-size: 0.76rem; opacity: 0.85; font-style: italic; }

.tier-body { padding: 1.6rem; flex: 1; display: flex; flex-direction: column; }

.tier-features { list-style: none; margin-bottom: 1.4rem; flex: 1; }

.tier-features li {
    font-size: 0.85rem;
    line-height: 1.7;
    color: #555;
    padding: 0.4rem 0 0.4rem 1.4rem;
    position: relative;
    border-bottom: 1px solid rgba(42,71,71,0.07);
}

.tier-features li:last-child { border-bottom: none; }

.tier-features li::before {
    content: "✓";
    color: var(--desert-green);
    position: absolute;
    left: 0;
    font-weight: 700;
    font-size: 0.8rem;
}

.founding-banner {
    background: var(--dark-pine);
    border-radius: 8px;
    padding: 2.4rem 2.8rem;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: 2rem;
    margin-top: 1.4rem;
}

.founding-banner h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--mountain-pink);
    margin-bottom: 0.4rem;
}

.founding-banner p {
    font-size: 0.87rem;
    line-height: 1.8;
    color: rgba(255,255,255,0.72);
}

/* ── GALLERY ── */
.gallery { background: var(--sand-beige); }

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: 280px 240px;
    gap: 1rem;
}

.gallery-item {
    background-position: center;
    background-size: cover;
    border-radius: 6px;
    transition: transform 0.3s;
    cursor: pointer;
}

.gallery-item:hover { transform: scale(1.02); }
.gallery-item:nth-child(1) { grid-column: span 2; }

/* ── NEWSLETTER ── */
.newsletter { background: var(--mountain-pink); color: white; text-align: center; }

.newsletter-message {
  margin-top: 1rem;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.9rem;
  font-weight: 400;
  min-height: 1.4rem;
}
 
.newsletter-message--success {
  color: white;
}
 
.newsletter-message--error {
  color: rgba(255, 255, 255, 0.75);
}

.newsletter .section-title h2 {
    font-family: 'Cormorant Garamond', serif;
    color: white;
}

.newsletter .section-title p { color: rgba(255,255,255,0.88); }

.newsletter-form {
    max-width: 500px;
    margin: 2rem auto 0;
    display: flex;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0,0,0,0.15);
}

.newsletter-form input {
    flex: 1;
    padding: 1rem 1.4rem;
    border: none;
    outline: none;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.88rem;
    color: var(--dark-pine);
}

.newsletter-form button {
    background: var(--sunset-red);
    border: none;
    color: white;
    padding: 0 1.6rem;
    cursor: pointer;
    font-weight: 700;
    font-size: 0.74rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-family: 'Montserrat', sans-serif;
    white-space: nowrap;
}

.newsletter-form button:hover { background: #d45e40; }

@media (max-width: 480px) {
  .newsletter-form {
    flex-direction: column;
    border-radius: 16px;
    overflow: hidden;
  }
  .newsletter-form input {
    border-radius: 0;
    text-align: center;
    padding: 1.1rem 1.4rem;
  }
  .newsletter-form button {
    padding: 1.1rem 1.4rem;
    font-size: 0.78rem;
  }
}

/* ── FOOTER ── */
footer { background: var(--dark-pine); color: white; padding: 4rem 0 2rem; }

.footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 2rem; margin-bottom: 2.5rem; }

.footer-column { min-width: 180px; }

.footer-column h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    color: var(--desert-green);
}

.footer-column p { color: rgba(255,255,255,0.62); font-size: 0.86rem; line-height: 1.9; }

.footer-column ul { list-style: none; }
.footer-column ul li { margin-bottom: 0.55rem; }
.footer-column ul li a { color: rgba(255,255,255,0.62); text-decoration: none; font-size: 0.86rem; transition: color 0.2s; }
.footer-column ul li a:hover { color: var(--mountain-pink); }

.social-links { display: flex; gap: 0.6rem; margin-bottom: 1.1rem; }

.social-links a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: rgba(255,255,255,0.1);
    border-radius: 50%;
    color: white;
    text-decoration: none;
    font-size: 0.7rem;
    font-weight: 700;
    transition: background 0.2s;
}

.social-links a:hover { background: var(--mountain-pink); }

.footer-tagline {
    text-align: center;
    padding: 1.5rem 0;
    border-top: 1px solid rgba(255,255,255,0.08);
    margin-bottom: 1rem;
}

.footer-tagline p {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    font-weight: 400;
    color: rgba(255,255,255,0.5);
}

.footer-bottom {
    text-align: center;
    color: rgba(255,255,255,0.28);
    font-size: 0.8rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
    .nav-links {
        display: none;
        position: fixed;
        top: 60px;
        left: 0;
        width: 100%;
        height: calc(100vh - 60px);
        background: var(--dark-pine);
        flex-direction: column;
        align-items: center;
        justify-content: flex-start;
        padding-top: 2rem;
        gap: 1.5rem;
    }
    .nav-links.active { display: flex; }
    .hamburger { display: block; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.8rem; }
    .segment-grid { grid-template-columns: 1fr; }
    .consult-tiers { grid-template-columns: 1fr; }
    .after-cards { grid-template-columns: 1fr; }
    .after-card-img { height: 200px; }
    .membership-tiers { grid-template-columns: 1fr; }
    .founding-banner { grid-template-columns: 1fr; text-align: center; }
    .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
    .gallery-item { height: 200px; }
    .gallery-item:nth-child(1) { grid-column: span 2; }
    .footer-content { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    * { transition: none !important; animation: none !important; }
}

/* ============================================
   PLAN YOUR DAY — custom adventure intake form
   ============================================ */

.paf-progress-bar { height: 4px; background: rgba(42,71,71,0.1); border-radius: 4px; overflow: hidden; margin-bottom: 0.9rem; flex-shrink: 0; }
.paf-progress-fill { height: 100%; background: var(--mountain-pink); transition: width 0.3s ease; }

.paf-progress-labels { display: flex; flex-wrap: nowrap; gap: 1.1rem; margin-bottom: 1.8rem; overflow-x: auto; -ms-overflow-style: none; scrollbar-width: none; flex-shrink: 0; }
.paf-progress-labels::-webkit-scrollbar { display: none; }
.paf-progress-section { font-size: 0.62rem; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(42,71,71,0.4); font-weight: 600; white-space: nowrap; flex-shrink: 0; }
.paf-progress-section.is-active { color: var(--mountain-pink); }

.paf-card-body { flex: 1 1 auto; min-height: 200px; overflow-y: auto; padding-right: 0.4rem; }

.paf-q { font-family: 'Cormorant Garamond', serif; font-size: 1.55rem; font-weight: 700; color: var(--dark-pine); line-height: 1.25; margin-bottom: 0.5rem; }
.paf-req { color: var(--mountain-pink); }
.paf-sub { font-size: 0.83rem; color: rgba(42,71,71,0.65); margin-bottom: 1.2rem; line-height: 1.55; }
.paf-transition { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1rem; color: var(--mountain-pink); margin-bottom: 1.2rem; }

.paf-options { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0.8rem; }
.paf-starters { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 1rem; }

.paf-option-btn, .paf-starter-btn {
    text-align: left;
    background: white;
    border: 1px solid rgba(42,71,71,0.15);
    color: var(--dark-pine);
    padding: 0.85rem 1.1rem;
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    cursor: pointer;
    transition: border-color 0.2s, background 0.2s, color 0.2s;
}
.paf-option-btn:hover, .paf-starter-btn:hover { border-color: var(--mountain-pink); }
.paf-option-btn.is-selected, .paf-starter-btn.is-selected { background: var(--mountain-pink); border-color: var(--mountain-pink); color: white; }

.paf-stitch-line { font-family: 'Cormorant Garamond', serif; font-size: 1.15rem; color: var(--dark-pine); padding-top: 1rem; border-top: 1px solid rgba(42,71,71,0.1); display: flex; flex-wrap: wrap; align-items: baseline; gap: 0.3rem; }
.paf-stitch-prefix { font-style: italic; color: rgba(42,71,71,0.45); flex-shrink: 0; }
.paf-stitch-prefix.is-active { font-style: normal; color: var(--dark-pine); }
.paf-stitch-input { border: none; border-bottom: 2px solid var(--mountain-pink); background: transparent; font-family: inherit; font-size: inherit; color: var(--dark-pine); outline: none; flex: 1 1 220px; min-width: 220px; padding: 2px 4px; font-style: italic; resize: none; overflow: hidden; line-height: 1.4; }

.paf-textarea, .paf-text-input, .paf-date-trigger {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(42,71,71,0.2);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark-pine);
    background: white;
}
.paf-textarea { min-height: 110px; resize: vertical; }

.paf-time-note { font-size: 0.78rem; font-style: italic; color: rgba(42,71,71,0.55); margin-top: 0.9rem; }

/* Custom calendar dropdown — native <input type=date> popups can't be
   restyled across browsers (Safari's is a native OS control), so this
   replaces it with a fully brand-styled widget. */
.paf-date-picker { position: relative; }
.paf-date-trigger { text-align: left; cursor: pointer; }
.paf-date-trigger:hover { border-color: var(--mountain-pink); }
.paf-date-trigger.is-placeholder { color: rgba(42,71,71,0.4); }

.paf-calendar {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    z-index: 20;
    width: 300px;
    max-width: 90vw;
    background: white;
    border: 1px solid rgba(42,71,71,0.15);
    border-radius: 10px;
    box-shadow: 0 14px 34px rgba(42,71,71,0.2);
    padding: 1rem 1.1rem 1.2rem;
}
.paf-cal-header { display: flex; align-items: center; justify-content: space-between; margin-bottom: 0.8rem; }
.paf-cal-month { font-family: 'Cormorant Garamond', serif; font-size: 1.2rem; font-weight: 600; color: var(--dark-pine); }
.paf-cal-nav { background: none; border: none; font-size: 1.3rem; line-height: 1; color: var(--dark-pine); cursor: pointer; padding: 0.25rem 0.6rem; border-radius: 6px; }
.paf-cal-nav:hover { background: var(--sand-beige); color: var(--mountain-pink); }
.paf-cal-weekdays { display: grid; grid-template-columns: repeat(7, 1fr); text-align: center; font-size: 0.66rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(42,71,71,0.45); margin-bottom: 0.35rem; }
.paf-cal-days { display: grid; grid-template-columns: repeat(7, 1fr); gap: 3px; }
.paf-cal-day { aspect-ratio: 1; display: flex; align-items: center; justify-content: center; background: none; border: none; border-radius: 50%; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; color: var(--dark-pine); cursor: pointer; }
.paf-cal-day:hover:not(.is-disabled):not(.is-empty) { background: var(--sand-beige); }
.paf-cal-day.is-selected { background: var(--mountain-pink); color: white; font-weight: 600; }
.paf-cal-day.is-disabled { color: rgba(42,71,71,0.22); cursor: default; }
.paf-cal-day.is-empty { cursor: default; }

.paf-headcount-select {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid rgba(42,71,71,0.2);
    border-radius: 8px;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9rem;
    color: var(--dark-pine);
    background-color: white;
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='%232A4747' d='M5.5 7.5l4.5 5 4.5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    background-size: 12px;
    padding-right: 2.4rem;
    cursor: pointer;
}
.paf-headcount-select:hover { border-color: var(--mountain-pink); }

.paf-roster { margin-top: 1.3rem; padding-top: 1.2rem; border-top: 1px dashed rgba(42,71,71,0.2); }
.paf-roster-sub { font-size: 0.78rem; color: rgba(42,71,71,0.6); margin-bottom: 0.9rem; }
.paf-roster-row { display: flex; gap: 8px; margin-bottom: 10px; align-items: center; }
.paf-roster-input { border: 1px solid rgba(42,71,71,0.18); border-radius: 6px; padding: 0.6rem 0.7rem; font-family: 'Montserrat', sans-serif; font-size: 0.82rem; background: var(--sand-beige); color: var(--dark-pine); }
.paf-roster-name { flex: 2; }
.paf-roster-age { width: 110px; flex-shrink: 0; }
.paf-roster-fit { flex: 2; }
select.paf-roster-input {
    -webkit-appearance: none;
    -moz-appearance: none;
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'><path fill='%232A4747' d='M5.5 7.5l4.5 5 4.5-5z'/></svg>");
    background-repeat: no-repeat;
    background-position: right 0.65rem center;
    background-size: 12px;
    padding-right: 1.9rem;
}
.paf-kit-disclosure { background: none; border: none; color: var(--mountain-pink); font-family: 'Montserrat', sans-serif; font-size: 0.8rem; font-weight: 600; text-decoration: underline; cursor: pointer; padding: 0.3rem 0; margin-top: 0.2rem; }
.paf-kit-details { background: var(--sand-beige); border-radius: 8px; padding: 1rem 1.1rem; margin-top: 0.7rem; font-size: 0.82rem; color: var(--dark-pine); line-height: 1.6; }
.paf-kit-details-row { margin-bottom: 0.4rem; }
.paf-kit-details-row:last-child { margin-bottom: 0; }
.paf-kit-details-row strong { color: var(--mountain-pink); }

.paf-gear-list { margin-top: 1.4rem; }
.paf-gear-row { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 0.85rem 0; border-bottom: 1px solid rgba(42,71,71,0.1); }
.paf-gear-row:last-child { border-bottom: none; }
.paf-gear-row-info { display: flex; align-items: baseline; gap: 10px; }
.paf-gear-row-name { font-family: 'Montserrat', sans-serif; font-size: 0.92rem; font-weight: 600; color: var(--dark-pine); }
.paf-gear-row-age { font-size: 0.76rem; color: rgba(42,71,71,0.5); }
.paf-gear-row-excluded { font-size: 0.76rem; color: rgba(42,71,71,0.45); font-style: italic; }
.paf-gear-toggle { display: flex; gap: 6px; }
.paf-gear-toggle-btn { border: 1px solid rgba(42,71,71,0.2); background: white; color: var(--dark-pine); font-family: 'Montserrat', sans-serif; font-size: 0.76rem; font-weight: 600; padding: 0.4rem 0.85rem; border-radius: 20px; cursor: pointer; }
.paf-gear-toggle-btn.is-selected { background: var(--desert-green); border-color: var(--desert-green); color: white; }
.paf-gear-toggle-btn:disabled { opacity: 0.3; cursor: not-allowed; }

.paf-price-card { background: var(--sand-beige); border-radius: 10px; padding: 1.4rem 1.5rem; margin-bottom: 1.2rem; border: 1px solid rgba(42,71,71,0.1); }
.paf-price-tier { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--mountain-pink); margin-bottom: 0.7rem; }
.paf-price-line { display: flex; justify-content: space-between; font-size: 0.85rem; color: var(--dark-pine); padding: 0.3rem 0; }
.paf-price-total { display: flex; justify-content: space-between; font-weight: 700; font-size: 1.15rem; color: var(--dark-pine); border-top: 1px solid rgba(42,71,71,0.15); margin-top: 0.5rem; padding-top: 0.6rem; }
.paf-price-switch { font-size: 0.76rem; color: rgba(42,71,71,0.6); margin-bottom: 1.3rem; }
.paf-price-switch a { color: var(--mountain-pink); text-decoration: underline; cursor: pointer; }
.paf-policy-agree { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.78rem; color: rgba(42,71,71,0.75); line-height: 1.5; margin: 1.1rem 0; cursor: pointer; }
.paf-policy-agree input[type="checkbox"] { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--desert-green); cursor: pointer; }
.paf-policy-agree a { color: var(--mountain-pink); text-decoration: underline; }

.paf-sms-consent { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.78rem; color: rgba(42,71,71,0.75); line-height: 1.5; margin-top: 0.9rem; cursor: pointer; }
.paf-sms-consent input[type="checkbox"] { flex-shrink: 0; width: 16px; height: 16px; margin-top: 2px; accent-color: var(--desert-green); cursor: pointer; }
.paf-sms-fineprint { display: block; margin-top: 0.3rem; color: rgba(42,71,71,0.6); }
.paf-sms-fineprint a { color: var(--mountain-pink); text-decoration: underline; }

.paf-reserve-btn { width: 100%; background: var(--desert-green); color: white; padding: 0.95rem 1.6rem; border-radius: 30px; font-weight: 600; font-size: 0.76rem; letter-spacing: 0.13em; text-transform: uppercase; border: none; cursor: pointer; }
.paf-reserve-btn:hover:not(:disabled) { background: #63a677; }
.paf-reserve-btn:disabled { opacity: 0.6; cursor: not-allowed; }
.paf-price-note { font-size: 0.72rem; color: rgba(42,71,71,0.55); margin-top: 0.9rem; line-height: 1.6; }

/* Deliberately styled distinct from .paf-price-card (outlined, not filled)
   so it doesn't read as part of the amount being charged today — this is
   a hold, released after gear return, never money that changes hands. */
.paf-deposit-card { border: 1px dashed rgba(42,71,71,0.3); border-radius: 10px; padding: 1rem 1.3rem; margin-bottom: 1.2rem; }
.paf-deposit-line { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 700; color: var(--dark-pine); }
.paf-deposit-explain { font-size: 0.72rem; color: rgba(42,71,71,0.65); margin-top: 0.5rem; line-height: 1.6; }

.paf-price-nav { margin-top: 1.3rem; }

.paf-payment-section { margin-top: 1.2rem; }
.paf-payment-element { background: white; border: 1px solid rgba(42,71,71,0.15); border-radius: 8px; padding: 1rem 1.1rem; margin-bottom: 1rem; }
.paf-payment-error { font-size: 0.8rem; color: var(--sunset-red); background: rgba(231,111,81,0.1); border-radius: 8px; padding: 0.7rem 0.9rem; margin-bottom: 1rem; line-height: 1.5; }

.paf-closing-eyebrow { font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--mountain-pink); margin-bottom: 0.6rem; }
.paf-closing-headline { font-family: 'Cormorant Garamond', serif; font-size: 2rem; color: var(--dark-pine); line-height: 1.15; margin-bottom: 1.2rem; }
.paf-closing-dynamic { font-size: 0.92rem; color: var(--dark-pine); line-height: 1.75; background: var(--sand-beige); padding: 1.2rem 1.3rem; border-radius: 8px; margin-bottom: 1.5rem; }
.paf-closing-dynamic em { font-style: italic; color: var(--mountain-pink); }
.paf-closing-sub { font-size: 0.85rem; color: rgba(42,71,71,0.65); margin-bottom: 0.7rem; }

.paf-value-list { margin-bottom: 0.4rem; }
.paf-value-item { display: flex; align-items: flex-start; gap: 10px; font-size: 0.85rem; color: var(--dark-pine); line-height: 1.5; padding: 0.5rem 0; border-bottom: 1px solid rgba(42,71,71,0.08); }
.paf-value-item:last-child { border-bottom: none; }
.paf-value-check { color: var(--desert-green); font-weight: 700; flex-shrink: 0; margin-top: 0.05rem; }

.paf-after-trail { margin-top: 1.6rem; }
.paf-link-btn { background: none; border: none; font-family: 'Montserrat', sans-serif; font-size: 0.78rem; color: rgba(42,71,71,0.5); text-decoration: underline; cursor: pointer; padding: 0.3rem 0; }
.paf-link-btn:hover { color: var(--dark-pine); }
.paf-link-btn-confirm { color: var(--sunset-red); font-weight: 600; }
.paf-inline-confirm { background: var(--sand-beige); border-radius: 8px; padding: 1rem 1.1rem; }
.paf-inline-confirm-text { font-size: 0.82rem; color: var(--dark-pine); line-height: 1.55; margin-bottom: 0.8rem; }
.paf-inline-confirm-actions { display: flex; gap: 1.4rem; }
.paf-rating { display: flex; gap: 8px; }
.paf-star { background: none; border: none; font-size: 1.9rem; color: rgba(42,71,71,0.22); cursor: pointer; line-height: 1; padding: 0; }
.paf-star.is-filled { color: var(--mountain-pink); }

.paf-footer { display: flex; justify-content: space-between; align-items: center; padding-top: 1.1rem; margin-top: 0.8rem; border-top: 1px solid rgba(42,71,71,0.1); flex-shrink: 0; }
.paf-nav-btn { font-family: 'Montserrat', sans-serif; cursor: pointer; }
.paf-nav-prev { background: none; border: none; color: var(--dark-pine); opacity: 0.7; font-weight: 600; font-size: 0.8rem; letter-spacing: 0.04em; padding: 0.6rem 0.4rem; }
.paf-nav-next { background: var(--desert-green); color: white; border: none; border-radius: 30px; padding: 0.75rem 1.7rem; font-weight: 600; font-size: 0.76rem; letter-spacing: 0.1em; text-transform: uppercase; }
.paf-nav-next:hover:not(:disabled) { background: #63a677; }
.paf-nav-next:disabled { opacity: 0.35; cursor: not-allowed; }

@media (max-width: 600px) {
    .paf-roster-row { flex-wrap: wrap; }
    .paf-roster-name { flex: 1 1 100%; }
    .paf-roster-age { flex: 1 1 32%; width: auto; }
    .paf-roster-fit { flex: 1 1 48%; }
}

/* ── LEGAL / POLICY PAGES ── */
.legal-hero { background: var(--dark-pine); padding: 5.5rem 0 3rem; }
.legal-hero .container { max-width: 780px; }
.legal-eyebrow { display: block; font-size: 0.67rem; letter-spacing: 0.22em; text-transform: uppercase; font-weight: 700; color: var(--mountain-pink); margin-bottom: 0.8rem; }
.legal-hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 400; color: var(--sand-beige); line-height: 1.2; }
.legal-updated { margin-top: 0.9rem; font-size: 0.78rem; color: rgba(248,241,233,0.6); }

.legal-body { padding: 3.5rem 0 5rem; background: white; }
.legal-body .container { max-width: 780px; }
.legal-body h2 { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; font-weight: 600; color: var(--dark-pine); margin: 2.4rem 0 0.9rem; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p { font-size: 0.92rem; line-height: 1.8; color: #444; margin-bottom: 1rem; }
.legal-body ul { margin: 0 0 1rem 1.3rem; }
.legal-body li { font-size: 0.92rem; line-height: 1.8; color: #444; margin-bottom: 0.4rem; }
.legal-body a { color: var(--mountain-pink); }
.legal-body strong { color: var(--dark-pine); }
.legal-contact { margin-top: 2.5rem; padding: 1.3rem 1.5rem; background: var(--sand-beige); border-radius: 8px; font-size: 0.88rem; }
.legal-contact a { font-weight: 600; }


/* ============================================
   /how-it-works — Page-specific styles
   ============================================ */

/* Hero */
.hiw-hero {
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 10rem 0 7rem;
  background:
    linear-gradient(rgba(0,0,0,0.50), rgba(0,0,0,0.50)),
    url('/images/hero-trail-sunset.jpg') no-repeat center 60% / cover;
  position: relative;
  overflow: hidden;
}

.hiw-hero-content {
  max-width: 820px;
  padding: 2rem;
}

.hiw-hero-content .btn {
  margin-top: 2rem;
}

.hiw-eyebrow {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--desert-green);
  margin-bottom: 1.2rem;
}

.hiw-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3rem, 6.5vw, 4.6rem);
  font-weight: 700;
  line-height: 1.06;
  color: var(--sand-beige);
  margin-bottom: 1.4rem;
  text-shadow: 2px 3px 10px rgba(0,0,0,0.4);
}

.hiw-hero-sub {
  font-size: 1.05rem;
  font-weight: 300;
  color: rgba(248,241,233,0.9);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.85;
}

/* Shared section */
.hiw-section { padding: 5rem 0; }

.hiw-section-eyebrow {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  color: var(--mountain-pink);
}

.hiw-section-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 2.8rem);
  font-weight: 400;
  line-height: 1.12;
  margin-bottom: 2.5rem;
  color: var(--dark-pine);
}

.hiw-section-headline.light { color: var(--sand-beige); }

/* Section 1 — Problem */
.hiw-problem { background: var(--sand-beige); }

.hiw-problem-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hiw-problem-text p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--dark-pine);
  margin-bottom: 1.4rem;
}

.hiw-problem-text p:last-child { margin-bottom: 0; }

.hiw-problem-image {
  aspect-ratio: 3/4;
  border-radius: 3px;
  overflow: hidden;
  background: var(--dark-pine);
}

.hiw-problem-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}

/* Section 2 — Steps */
.hiw-steps { background: var(--dark-pine); }

.hiw-steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(248,241,233,0.08);
  margin-top: 1rem;
}

.hiw-step {
  padding: 2.5rem 2rem 2.5rem 0;
  border-bottom: 1px solid rgba(248,241,233,0.08);
  border-right: 1px solid rgba(248,241,233,0.08);
}

.hiw-step:nth-child(3n) { border-right: none; }
.hiw-step:nth-child(4),
.hiw-step:nth-child(5),
.hiw-step:nth-child(6) { border-bottom: none; }

.hiw-step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  color: var(--mountain-pink);
  opacity: 0.45;
  line-height: 1;
  margin-bottom: 1rem;
}

.hiw-step-title {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--sand-beige);
  margin-bottom: 0.8rem;
}

.hiw-step-body {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(248,241,233,0.55);
  line-height: 1.85;
}

/* Section 3 — Gear Kit */
.hiw-gear { background: var(--sand-beige); }

.hiw-gear-header {
  text-align: center;
  margin-bottom: 0.6rem;
}

.hiw-gear-header .hiw-section-eyebrow { margin-bottom: 1rem; }
.hiw-gear-header .hiw-section-headline { margin-bottom: 0; }

.hiw-gear-subtext {
  text-align: center;
  font-size: 1rem;
  font-weight: 300;
  color: rgba(42,71,71,0.75);
  margin-bottom: 3rem;
}

.hiw-gear-subtext strong {
  font-weight: 600;
  color: var(--dark-pine);
}

.hiw-gear-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.hiw-gear-image {
  aspect-ratio: 3/4;
  border-radius: 3px;
  overflow: hidden;
}

.hiw-gear-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hiw-gear-right {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hiw-gear-cols {
  display: flex;
  flex-direction: column;
  gap: 2.5rem;
}

.hiw-gear-col h3 {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mountain-pink);
  margin-bottom: 1rem;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid rgba(42,71,71,0.1);
}

.hiw-gear-col p {
  font-size: 0.92rem;
  line-height: 1.9;
  color: var(--dark-pine);
  margin-bottom: 1rem;
}

.hiw-gear-col p:last-child { margin-bottom: 0; }

/* Section 4 — Route */
.hiw-route { background: white; }

.hiw-route-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hiw-route-text p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: var(--dark-pine);
  margin-bottom: 1.2rem;
}

.hiw-route-text p:last-child { margin-bottom: 0; }

.hiw-route-text p.hiw-section-eyebrow {
  font-size: 0.6rem;
  line-height: 1;
  color: var(--mountain-pink);
  margin-bottom: 1rem;
}

.hiw-pull {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.45;
  color: var(--dark-pine);
  border-left: 2px solid var(--mountain-pink);
  padding-left: 1.5rem;
  margin: 2rem 0;
}

.hiw-route-image {
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
  background: var(--dark-pine);
}

.hiw-route-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Section 5 — Who It's For */
.hiw-who {
  background: var(--dark-pine);
}

.hiw-who-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}

.hiw-who-text { text-align: left; }

.hiw-who-text .hiw-section-eyebrow { text-align: left; }

.hiw-who p {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(248,241,233,0.65);
  line-height: 1.85;
  margin-bottom: 1.2rem;
}

.hiw-who-image {
  width: 100%;
  aspect-ratio: 4/5;
  border-radius: 3px;
  overflow: hidden;
}

.hiw-who-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

.hiw-who-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-style: italic;
  font-weight: 400;
  color: var(--mountain-pink);
  margin-top: 2rem;
  display: block;
}

/* Section 6 — FAQ */
.hiw-faq { background: var(--sand-beige); }

.hiw-faq-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem 5rem;
  margin-top: 0.5rem;
}

.hiw-faq-q {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--dark-pine);
  margin-bottom: 0.5rem;
  line-height: 1.5;
}

.hiw-faq-a {
  font-size: 0.88rem;
  font-weight: 300;
  color: rgba(42,71,71,0.65);
  line-height: 1.85;
}

/* Section 7 — CTA */
.hiw-cta {
  background: white;
  text-align: center;
  padding: 8rem 0;
}

.hiw-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  color: var(--dark-pine);
  margin-bottom: 0.8rem;
}

.hiw-cta-sub {
  font-size: 1rem;
  font-weight: 300;
  color: rgba(42,71,71,0.5);
  margin-bottom: 3rem;
}

.hiw-cta-secondary {
  display: block;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: rgba(42,71,71,0.45);
}

.hiw-cta-secondary a { color: var(--mountain-pink); text-decoration: none; }
.hiw-cta-secondary a:hover { text-decoration: underline; }

/* /how-it-works mobile */
@media (max-width: 768px) {
  .hiw-problem-grid,
  .hiw-route-grid { grid-template-columns: 1fr; gap: 3rem; }

  .hiw-problem-image,
  .hiw-route-image { aspect-ratio: 4/3; }

  .hiw-steps-grid { grid-template-columns: 1fr; }

  .hiw-step { border-right: none; padding-right: 0; }
  .hiw-step:nth-child(4),
  .hiw-step:nth-child(5) { border-bottom: 1px solid rgba(248,241,233,0.08); }
  .hiw-step:nth-child(6) { border-bottom: none; }

  .hiw-gear-layout { grid-template-columns: 1fr; gap: 3rem; }
  .hiw-gear-image { aspect-ratio: 4/3; }

  .hiw-who-grid { grid-template-columns: 1fr; gap: 3rem; }
  .hiw-who-text { text-align: center; }
  .hiw-who-text .hiw-section-eyebrow { text-align: center; }

  .hiw-faq-grid { grid-template-columns: 1fr; gap: 2rem; }
}


/* ============================================
   /membership — Page-specific styles
   ============================================ */

.mem-container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.mem-eyebrow {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mountain-pink);
  margin-bottom: 1.2rem;
  display: block;
}

/* HERO */
.mem-hero {
  min-height: 92vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 120px 24px 80px;
  overflow: hidden;
}

.mem-hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
}

.mem-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.50);
  z-index: 1;
}

.mem-hero .mem-container {
  position: relative;
  z-index: 2;
}

.mem-hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 4.6rem);
  font-weight: 700;
  color: white;
  line-height: 1.06;
  max-width: 820px;
  margin: 0 auto 1.5rem;
  text-shadow: 2px 3px 10px rgba(0,0,0,0.4);
}

.mem-hero h1 em {
  font-style: italic;
  color: var(--mountain-pink);
}

.mem-hero-body {
  max-width: 480px;
  margin: 0 auto;
}

.mem-hero-body p {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.88);
}

/* WHY + TRANSFORMATION */
.mem-why {
  padding: 100px 24px;
  background: var(--sand-beige);
}

.mem-why-inner {
  max-width: 860px;
  margin: 0 auto;
}

.mem-why-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark-pine);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.mem-why p {
  font-size: 1rem;
  line-height: 1.9;
  color: var(--dark-pine);
  margin-bottom: 1.6rem;
}

.mem-why p:last-child {
  margin-bottom: 0;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 400;
  font-style: italic;
  color: var(--dark-pine);
}

/* COMMUNITY HEADER */
.mem-community-header {
  padding: 100px 24px 24px;
  text-align: center;
  background: var(--sand-beige);
}

.mem-community-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 400;
  line-height: 1.2;
  color: var(--dark-pine);
}

.mem-community-header h2 span {
  display: block;
  color: var(--mountain-pink);
  font-style: italic;
}

.mem-community-sub {
  margin-top: 1.5rem;
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42,71,71,0.5);
}

/* VIGNETTES */
.mem-vignettes {
  padding: 0 0 80px;
  background: var(--sand-beige);
}

.mem-vignettes-inner-label {
  padding: 0 48px 20px;
  font-size: 0.67rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--mountain-pink);
}

.mem-vignettes-scroll {
  display: flex;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-padding-left: 48px;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: none;
  padding: 0 48px 32px;
  cursor: grab;
  gap: 12px;
}

.mem-vignettes-scroll::before,
.mem-vignettes-scroll::after {
  content: '';
  flex: 0 0 1px;
}

.mem-vignettes-scroll::-webkit-scrollbar { display: none; }
.mem-vignettes-scroll.is-dragging { cursor: grabbing; user-select: none; }

.mem-vignette-card {
  flex: 0 0 min(380px, 72vw);
  scroll-snap-align: start;
  background: var(--dark-pine);
  padding: 44px 36px 44px;
  position: relative;
  border-radius: 6px;
  display: flex;
  flex-direction: column;
}

.mem-vignette-card:first-child { border-radius: 6px; }
.mem-vignette-card:last-child  { border-radius: 6px; }

.mem-vignette-card .card-label {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mountain-pink);
  margin-bottom: 2rem;
  display: block;
}

.mem-vignette-card h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 400;
  color: var(--sand-beige);
  line-height: 1.2;
  margin-bottom: 1.8rem;
}

.mem-vignette-card p {
  font-size: 0.88rem;
  line-height: 1.85;
  color: rgba(248,241,233,0.72);
  margin-bottom: 1rem;
}

.mem-vignette-card p.card-closer {
  color: var(--sand-beige);
  font-weight: 500;
  margin-top: 0.5rem;
  margin-bottom: 0;
}

.mem-scroll-hint {
  text-align: center;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--mountain-pink);
  opacity: 0.7;
  padding: 0 0 20px;
  transition: opacity 0.4s;
}

/* TIER TABLE */
.mem-tiers {
  padding: 80px 24px;
  background: white;
}

.mem-tiers-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.mem-tiers-header {
  max-width: 700px;
  margin: 0 auto 48px;
  text-align: center;
}

.mem-tiers-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 2.5vw, 2.2rem);
  font-weight: 400;
  color: var(--dark-pine);
  line-height: 1.25;
  margin-bottom: 1.2rem;
}

.mem-tiers-heading {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark-pine);
  line-height: 1.2;
  margin-bottom: 1.5rem;
}

.mem-tiers-header p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: #555;
  margin-bottom: 1.2rem;
}

.mem-tiers-header p:last-child { margin-bottom: 0; }
.mem-tiers-header p strong { color: var(--dark-pine); }

.mem-tier-table-wrap {
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
}

.mem-tier-table {
  width: 100%;
  border-collapse: collapse;
}

.mem-tier-table caption {
  font-size: 0;
  height: 0;
  visibility: hidden;
}

.mem-tier-table thead th {
  padding: 20px 16px 16px;
  text-align: center;
  vertical-align: bottom;
}

.mem-tier-table thead th:first-child {
  text-align: left;
  width: 22%;
  min-width: 160px;
}

.tier-col-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--dark-pine);
  display: block;
  margin-bottom: 3px;
}

.tier-col-price {
  font-size: 0.75rem;
  font-weight: 500;
  color: #999;
  letter-spacing: 0.04em;
  display: block;
}

.tier-col-founding .tier-col-name  { color: var(--mountain-pink); }
.tier-col-founding .tier-col-price { color: var(--mountain-pink); opacity: 0.85; }

.mem-tier-table tbody tr { border-top: 1px solid rgba(42,71,71,0.1); }
.mem-tier-table tbody tr:last-child { border-bottom: 1px solid rgba(42,71,71,0.1); }

.mem-tier-table tbody th {
  padding: 14px 16px;
  text-align: left;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42,71,71,0.5);
  vertical-align: top;
}

.mem-tier-table tbody td {
  padding: 14px 16px;
  text-align: center;
  font-size: 0.84rem;
  color: var(--dark-pine);
  vertical-align: top;
  line-height: 1.5;
}

.mem-tier-table tbody td.founding-col {
  color: var(--dark-pine);
  font-weight: 600;
}

.mem-tier-table thead th.founding-col,
.mem-tier-table tbody td.founding-col {
  background: rgba(245,130,113,0.07);
}

.mem-tier-table .tier-cta-row td {
  padding: 20px 16px 24px;
  border-top: 2px solid rgba(42,71,71,0.1);
  border-bottom: none;
}

.tier-cta-btn {
  display: inline-block;
  font-family: 'Montserrat', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 10px 20px;
  border-radius: 30px;
  transition: all 0.2s;
  white-space: nowrap;
}

.tier-cta-btn-outline {
  color: var(--dark-pine);
  border: 1.5px solid rgba(42,71,71,0.3);
  background: transparent;
}

.tier-cta-btn-outline:hover {
  border-color: var(--dark-pine);
  background: var(--dark-pine);
  color: white;
}

.tier-cta-btn-pink {
  color: white;
  background: var(--mountain-pink);
  border: 1.5px solid var(--mountain-pink);
}

.tier-cta-btn-pink:hover { background: #e06a5a; border-color: #e06a5a; }

.tier-founding-badge {
  display: inline-block;
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mountain-pink);
  border: 1px solid var(--mountain-pink);
  padding: 2px 8px;
  border-radius: 20px;
  margin-top: 4px;
}

.tier-avail-open    { color: var(--desert-green); font-size: 0.82rem; font-weight: 500; }
.tier-avail-limited { color: var(--mountain-pink); font-size: 0.82rem; font-weight: 600; }

/* Mobile tier cards */
.mem-tier-cards { display: none; }

.mem-tier-card {
  background: var(--sand-beige);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 16px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.07);
}

.mem-tier-card-header {
  padding: 20px 24px;
  background: var(--dark-pine);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}

.mem-tier-card-header.founding { background: var(--mountain-pink); }

.mem-tier-card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: white;
}

.mem-tier-card-price {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.7);
  font-weight: 500;
}

.mem-tier-card-body { padding: 20px 24px 24px; }

.mem-tier-card-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  padding: 10px 0;
  border-bottom: 1px solid rgba(42,71,71,0.08);
  font-size: 0.84rem;
}

.mem-tier-card-row:last-of-type { border-bottom: none; }

.mem-tier-card-label {
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(42,71,71,0.5);
  flex: 0 0 40%;
}

.mem-tier-card-value {
  color: var(--dark-pine);
  text-align: right;
  flex: 1;
  line-height: 1.4;
}

/* FOUNDING MEMBER */
.mem-founding {
  padding: 100px 24px;
  background: var(--dark-pine);
}

.mem-founding-inner {
  max-width: 860px;
  margin: 0 auto;
}

.mem-founding h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--sand-beige);
  line-height: 1.2;
  margin-bottom: 2rem;
}

.mem-founding p {
  font-size: 0.95rem;
  line-height: 1.9;
  color: rgba(248,241,233,0.82);
  margin-bottom: 1.4rem;
}

.mem-founding p.founding-pivot { font-size: 1.05rem; font-weight: 600; color: var(--sand-beige); }

.mem-founding p.founding-close {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
  font-style: italic;
  color: rgba(248,241,233,0.65);
}

.mem-founding-rule {
  width: 48px;
  height: 2px;
  background: var(--mountain-pink);
  margin: 2.4rem 0;
}

.mem-founding-cta { margin-top: 2.4rem; }

/* CTA */
.mem-cta {
  padding: 100px 24px;
  background: var(--sand-beige);
  text-align: center;
}

.mem-cta h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 400;
  color: var(--dark-pine);
  margin-bottom: 1.5rem;
}

.mem-cta p {
  font-size: 0.9rem;
  line-height: 1.8;
  color: #666;
  max-width: 560px;
  margin: 0 auto 1rem;
}

.mem-cta p.cta-founding-note { font-size: 0.82rem; color: var(--mountain-pink); }

.mem-cta p.cta-upgrade-note {
  font-size: 0.78rem;
  color: rgba(42,71,71,0.45);
  font-style: italic;
  max-width: 480px;
}

.mem-cta-buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
  margin: 2.4rem 0 1.6rem;
}

/* Membership-specific buttons */
.btn-mem-primary {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  background: var(--mountain-pink);
  color: #fff;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-mem-primary:hover { opacity: 0.88; }

.btn-mem-secondary {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  background: transparent;
  color: var(--sand-beige);
  border: 1px solid rgba(248,241,233,0.35);
  cursor: pointer;
  transition: border-color 0.2s;
}

.btn-mem-secondary:hover { border-color: var(--sand-beige); }

.btn-mem-dark {
  display: inline-block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-decoration: none;
  padding: 16px 36px;
  background: var(--dark-pine);
  color: var(--sand-beige);
  border: 1px solid var(--dark-pine);
  cursor: pointer;
  transition: opacity 0.2s;
}

.btn-mem-dark:hover { opacity: 0.85; }

/* /membership mobile */
@media (max-width: 768px) {
  .mem-hero { padding: 120px 24px 80px; }
  .mem-hero h1 { font-size: 2rem; }
  .mem-hero-body p { font-size: 0.88rem; line-height: 1.7; }
  .mem-founding-cta .btn { font-size: 0.68rem; padding: 0.9rem 1.8rem; }
  .mem-community-sub { font-size: 0.75rem; letter-spacing: 0.06em; }
  .mem-vignettes { padding: 0 0 40px; }
  .mem-tier-table-wrap { display: none; }
  .mem-tier-cards { display: block; }
  .mem-vignettes-scroll { padding: 0 20px 32px; scroll-padding-left: 20px; gap: 10px; }
  .mem-vignette-card { flex: 0 0 82vw; padding: 36px 28px 32px; box-shadow: 0 4px 20px rgba(0,0,0,0.18); }
  .mem-cta-buttons { flex-direction: column; align-items: center; }
  .btn-mem-primary,
  .btn-mem-secondary,
  .btn-mem-dark { width: 100%; max-width: 320px; text-align: center; }
}
