/* ==========================================================================
   Rangeway — Premium EV Charging Meets Luxury Hospitality
   Brand Colors: Charcoal #2d2d2d, Warm #f4a855, Cream #f5f1eb, Sage #4a5d52
   Typography: Raleway (headlines), Source Sans 3 (body)
   ========================================================================== */

:root {
    --charcoal: #2d2d2d;
    --warm: #f4a855;
    --warm-dark: #e8923a;
    --cream: #f5f1eb;
    --sage: #4a5d52;
    --white: #ffffff;
    --gray-100: #f8f7f5;
    --gray-200: #e5e5e5;
    --gray-400: #999999;
    --gray-600: #666666;

    --font-heading: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;

    --nav-height: 80px;
    --container-max: 1200px;
    --section-padding: 120px;
}

/* Reset & Base
   ========================================================================== */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--charcoal);
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

img {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

/* Utility
   ========================================================================== */
.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
}

.section {
    padding: var(--section-padding) 0;
}

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2.5px;
    color: var(--warm);
    margin-bottom: 16px;
}

.section-eyebrow--light {
    color: var(--warm);
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 18px;
    color: var(--gray-600);
    max-width: 640px;
    line-height: 1.7;
}

.section-subtitle--light {
    color: rgba(255, 255, 255, 0.7);
}

.section-header {
    margin-bottom: 64px;
}

/* Buttons
   ========================================================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    padding: 14px 32px;
    border-radius: 8px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.3px;
}

.btn--primary {
    background: var(--warm);
    color: var(--charcoal);
}

.btn--primary:hover {
    background: var(--warm-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(244, 168, 85, 0.4);
}

.btn--outline {
    background: transparent;
    color: var(--white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
}

.btn--outline:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.btn--large {
    padding: 18px 40px;
    font-size: 16px;
}

.btn--full {
    width: 100%;
}

/* Navigation
   ========================================================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    z-index: 1000;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(45, 45, 45, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06);
}

.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 24px;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    z-index: 10;
}

.nav-logo-mark {
    color: var(--white);
}

.nav-logo-wordmark {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 24px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.75);
    padding: 8px 16px;
    border-radius: 6px;
    transition: all 0.2s ease;
}

.nav-link:hover {
    color: var(--white);
}

.nav-link--cta {
    background: var(--warm);
    color: var(--charcoal);
    font-weight: 600;
    margin-left: 8px;
}

.nav-link--cta:hover {
    background: var(--warm-dark);
    color: var(--charcoal);
}

.nav-social {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 8px;
}

.nav-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.55);
    font-size: 16px;
    border-radius: 6px;
    transition: color 0.2s ease;
}

.nav-social a:hover {
    color: var(--warm);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 32px;
    height: 32px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 10;
}

.nav-toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 1px;
    transition: all 0.3s ease;
}

.nav-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* Hero
   ========================================================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    background: var(--charcoal);
}

.hero-bg-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 40%;
    opacity: 0.35;
}

.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(15, 15, 15, 0.4) 0%, rgba(15, 15, 15, 0.2) 40%, rgba(15, 15, 15, 0.7) 100%),
        radial-gradient(ellipse at 20% 50%, rgba(244, 168, 85, 0.06) 0%, transparent 50%);
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 800px;
    padding: 0 24px;
}

.hero-eyebrow {
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 3px;
    color: var(--warm);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.2s;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(48px, 8vw, 80px);
    font-weight: 700;
    color: var(--white);
    line-height: 1.05;
    letter-spacing: -0.02em;
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.4s;
}

.hero-subtitle {
    font-size: clamp(17px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.6s;
}

.hero-actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease forwards;
    animation-delay: 0.8s;
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    z-index: 2;
    opacity: 0;
    animation: fadeIn 1s ease forwards;
    animation-delay: 1.2s;
}

.hero-scroll span {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: rgba(255, 255, 255, 0.35);
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.3), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

/* About
   ========================================================================== */
.about {
    background: var(--white);
}

.about-image-banner {
    margin-bottom: 64px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.about-image-banner.visible {
    opacity: 1;
    transform: translateY(0);
}

.about-image-banner img {
    width: 100%;
    height: 360px;
    object-fit: cover;
    object-position: center 60%;
}

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

.about-text {
    font-size: 17px;
    color: var(--gray-600);
    margin-bottom: 20px;
    line-height: 1.8;
}

.about-text em {
    color: var(--charcoal);
    font-style: italic;
}

.about-stats {
    display: flex;
    flex-direction: column;
    gap: 32px;
    padding-top: 16px;
}

.stat {
    padding: 28px 32px;
    background: var(--gray-100);
    border-radius: 12px;
    border-left: 3px solid var(--warm);
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.6s ease;
}

.stat.visible {
    opacity: 1;
    transform: translateX(0);
}

.stat-number {
    display: block;
    font-family: var(--font-heading);
    font-size: 40px;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1;
    margin-bottom: 8px;
}

.stat-label {
    display: block;
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.5;
}

.stat-source {
    display: block;
    font-size: 12px;
    color: var(--gray-400);
    margin-top: 6px;
}

/* Indoor Comfort Guarantee
   ========================================================================== */
.comfort {
    background: var(--charcoal);
    color: var(--white);
}

.comfort-inner {
    text-align: center;
}

.comfort-title {
    font-family: var(--font-heading);
    font-size: clamp(32px, 4vw, 44px);
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 20px;
}

.comfort-text {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.65);
    max-width: 640px;
    margin: 0 auto 48px;
    line-height: 1.7;
}

.comfort-image {
    margin-bottom: 64px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.comfort-image.visible {
    opacity: 1;
    transform: translateY(0);
}

.comfort-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center center;
}

.comfort-features {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.comfort-feature {
    text-align: center;
    padding: 32px 20px;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.comfort-feature.visible {
    opacity: 1;
    transform: translateY(0);
}

.comfort-feature:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(244, 168, 85, 0.2);
    transform: translateY(-2px);
}

.comfort-feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    border-radius: 12px;
    background: rgba(244, 168, 85, 0.12);
    color: var(--warm);
}

.comfort-feature h3 {
    font-family: var(--font-heading);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.comfort-feature p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
}

/* Network Formats
   ========================================================================== */
.network {
    background: var(--cream);
}

.formats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.format-card {
    background: var(--white);
    border-radius: 16px;
    position: relative;
    border: 1px solid var(--gray-200);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.format-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.format-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(45, 45, 45, 0.1);
    border-color: transparent;
}

.format-card-image {
    position: relative;
    width: 100%;
    height: 220px;
    overflow: hidden;
}

.format-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.format-card:hover .format-card-image img {
    transform: scale(1.04);
}

.format-card-body {
    padding: 32px 28px;
    flex: 1;
}

.format-card--basecamp .format-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--warm);
}

.format-card--waystation .format-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sage);
}

.format-card--trailhead .format-card-image::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--charcoal);
}

.format-card-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--white);
    background: rgba(45, 45, 45, 0.75);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    padding: 5px 14px;
    border-radius: 20px;
    z-index: 1;
}

.format-card-title {
    font-family: var(--font-heading);
    font-size: 26px;
    font-weight: 700;
    margin-bottom: 4px;
}

.format-card-tagline {
    font-size: 14px;
    font-weight: 600;
    color: var(--warm-dark);
    margin-bottom: 16px;
}

.format-card-description {
    font-size: 15px;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 24px;
}

.format-card-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.format-card-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 14px;
    color: var(--charcoal);
    line-height: 1.4;
}

.format-card-features svg {
    flex-shrink: 0;
    color: var(--warm);
    margin-top: 2px;
}

/* Experience
   ========================================================================== */
.experience {
    background: var(--white);
}

.experience-hero {
    margin-bottom: 64px;
    border-radius: 16px;
    overflow: hidden;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.8s ease;
}

.experience-hero.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-hero img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    object-position: center 55%;
}

.experience-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
}

.experience-item {
    padding: 32px 24px;
    border-radius: 12px;
    background: var(--gray-100);
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.experience-item.visible {
    opacity: 1;
    transform: translateY(0);
}

.experience-item:hover {
    background: var(--cream);
}

.experience-number {
    font-family: var(--font-heading);
    font-size: 36px;
    font-weight: 700;
    color: var(--warm);
    opacity: 0.5;
    line-height: 1;
    margin-bottom: 16px;
}

.experience-item h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 10px;
}

.experience-item p {
    font-size: 14px;
    color: var(--gray-600);
    line-height: 1.7;
}

/* Pathfinder Rewards
   ========================================================================== */
.pathfinder {
    background: var(--charcoal);
    color: var(--white);
}

.tiers {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin-bottom: 40px;
}

.tier-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
    opacity: 0;
    transform: translateY(20px);
}

.tier-card.visible {
    opacity: 1;
    transform: translateY(0);
}

.tier-card:hover {
    border-color: rgba(244, 168, 85, 0.25);
    transform: translateY(-2px);
}

.tier-card--featured {
    border-color: var(--warm);
    background: rgba(244, 168, 85, 0.06);
}

.tier-card-header {
    padding: 24px 20px 16px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-card-header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 4px;
}

.tier-qualifier {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.5);
}

.tier-card--explorer .tier-card-header h3 { color: #B87333; }
.tier-card--voyager .tier-card-header h3 { color: #a8c4d8; }
.tier-card--pioneer .tier-card-header h3 { color: #FFD700; }
.tier-card--trailblazer .tier-card-header h3 { color: var(--warm); }

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

.tier-perk-highlight {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 700;
    color: var(--warm);
    padding: 8px 14px;
    background: rgba(244, 168, 85, 0.1);
    border-radius: 6px;
    margin-bottom: 16px;
    text-align: center;
    letter-spacing: 0.02em;
}

.tier-card-body ul {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.tier-card-body li {
    font-size: 13px;
    color: rgba(255, 255, 255, 0.6);
    padding-left: 16px;
    position: relative;
}

.tier-card-body li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 8px;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--warm);
    opacity: 0.5;
}

.pathfinder-note {
    text-align: center;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.4);
}

/* Founder
   ========================================================================== */
.founder {
    background: var(--cream);
}

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

.founder-text {
    font-size: 16px;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.founder-text strong {
    color: var(--charcoal);
}

.founder-quote blockquote {
    padding: 40px;
    background: var(--charcoal);
    border-radius: 16px;
    position: relative;
}

.founder-quote blockquote::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--warm), var(--warm-dark));
    border-radius: 16px 16px 0 0;
}

.founder-quote blockquote p {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
    line-height: 1.5;
    margin-bottom: 20px;
}

.founder-quote cite {
    font-size: 14px;
    font-style: normal;
    color: var(--warm);
    font-weight: 600;
}

/* Locations
   ========================================================================== */
.locations {
    position: relative;
    text-align: center;
    overflow: hidden;
}

.locations-bg {
    position: absolute;
    inset: 0;
}

.locations-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center center;
    opacity: 0.2;
}

.locations-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(45, 45, 45, 0.92), rgba(45, 45, 45, 0.96));
}

.locations .container {
    position: relative;
    z-index: 1;
}

.locations-inner {
    max-width: 600px;
    margin: 0 auto;
}

.locations .section-eyebrow {
    color: var(--warm);
}

.locations .section-title {
    color: var(--white);
}

.locations-text {
    font-size: 17px;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: 16px;
}

.locations .btn {
    margin-top: 16px;
}

/* Contact
   ========================================================================== */
.contact {
    background: var(--gray-100);
}

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

.contact-text {
    font-size: 17px;
    color: var(--gray-600);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    font-weight: 600;
    color: var(--charcoal);
    transition: color 0.2s;
}

.contact-link:hover {
    color: var(--warm-dark);
}

.contact-link svg {
    color: var(--warm);
}

.contact-form-wrapper {
    background: var(--white);
    border-radius: 16px;
    padding: 40px;
    box-shadow: 0 4px 24px rgba(45, 45, 45, 0.06);
}

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

.form-group label {
    display: block;
    font-size: 13px;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 6px;
    letter-spacing: 0.3px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    font-family: var(--font-body);
    font-size: 15px;
    padding: 12px 16px;
    border: 1.5px solid var(--gray-200);
    border-radius: 8px;
    background: var(--white);
    color: var(--charcoal);
    transition: border-color 0.2s;
    outline: none;
}

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

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

.form-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23999' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

/* Footer
   ========================================================================== */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 32px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 64px;
    margin-bottom: 48px;
}

.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-logo-wordmark {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 22px;
    color: var(--white);
    letter-spacing: -0.01em;
}

.footer-tagline {
    font-size: 17px;
    font-style: italic;
    color: rgba(255, 255, 255, 0.4);
}

.footer-social {
    display: flex;
    gap: 8px;
    margin-top: 16px;
}

.footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 18px;
    border-radius: 6px;
    transition: color 0.2s ease;
}

.footer-social a:hover {
    color: var(--warm);
}

.footer-links h4 {
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 16px;
    color: var(--white);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-links a {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.5);
    transition: color 0.2s;
}

.footer-links a:hover {
    color: var(--warm);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding-top: 24px;
    font-size: 15px;
    color: rgba(255, 255, 255, 0.3);
}

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

@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* Responsive
   ========================================================================== */
@media (max-width: 1024px) {
    :root {
        --section-padding: 80px;
    }

    .about-grid,
    .founder-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .formats {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .format-card-image {
        height: 200px;
    }

    .about-image-banner img,
    .comfort-image img,
    .experience-hero img {
        height: 280px;
    }

    .comfort-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .experience-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .tiers {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }

    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 64px;
        --nav-height: 64px;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(45, 45, 45, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        gap: 8px;
        padding: 24px;
        transform: translateX(100%);
        visibility: hidden;
        transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1), visibility 0.35s;
    }

    .nav-menu.active {
        transform: translateX(0);
        visibility: visible;
    }

    .nav-menu .nav-link {
        font-size: 22px;
        padding: 12px 16px;
        text-align: center;
    }

    .nav-menu .nav-link--cta {
        margin-left: 0;
        margin-top: 24px;
    }

    .nav-social {
        justify-content: center;
        margin-left: 0;
        margin-top: 16px;
        gap: 8px;
    }

    .nav-social a {
        width: 44px;
        height: 44px;
        font-size: 20px;
        color: rgba(255, 255, 255, 0.6);
    }

    .nav-toggle {
        display: flex;
    }

    .hero-title {
        font-size: clamp(36px, 10vw, 56px);
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }

    .comfort-features {
        grid-template-columns: 1fr;
    }

    .experience-grid {
        grid-template-columns: 1fr;
    }

    .tiers {
        grid-template-columns: 1fr;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }
}

@media (max-width: 480px) {
    :root {
        --section-padding: 48px;
    }

    .section-title {
        font-size: 28px;
    }

    .stat-number {
        font-size: 32px;
    }

    .comfort-title {
        font-size: 28px;
    }
}

/* ==========================================================================
   Design Refresh Overrides (2026-02)
   Keeps brand colors while modernizing layout, typography, and atmosphere.
   ========================================================================== */

:root {
    --font-heading: 'Raleway', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-body: 'Source Sans 3', -apple-system, BlinkMacSystemFont, sans-serif;
    --radius-lg: 14px;
    --radius-md: 8px;
    --soft-shadow: 0 30px 80px rgba(45, 45, 45, 0.13);
    --card-shadow: 0 18px 44px rgba(45, 45, 45, 0.08);
}

body {
    background:
        radial-gradient(circle at 18% -10%, rgba(244, 168, 85, 0.08), transparent 36%),
        radial-gradient(circle at 96% 12%, rgba(74, 93, 82, 0.08), transparent 32%),
        var(--white);
}

.section {
    position: relative;
}

.section::before {
    content: '';
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.nav {
    height: 86px;
}

.nav.scrolled {
    background: rgba(45, 45, 45, 0.82);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.nav-container {
    max-width: 1380px;
}

.nav-menu {
    gap: 2px;
    background: transparent;
    border: 0;
    border-radius: 0;
    padding: 0;
}

.nav-link {
    font-weight: 500;
    border-radius: 6px;
    position: relative;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    font-size: 14px;
}

.nav-link:hover {
    background: rgba(255, 255, 255, 0.04);
    color: var(--white);
    box-shadow: inset 0 -1px 0 rgba(244, 168, 85, 0.75);
}

.nav-link--cta {
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(244, 168, 85, 0.34);
}

.hero {
    min-height: 100svh;
    align-items: center;
    padding: 0;
}

.hero-bg-image {
    opacity: 0.42;
    animation: heroDrift 18s ease-in-out infinite alternate;
}

.hero-bg::after {
    background:
        linear-gradient(to bottom, rgba(18, 18, 18, 0.28), rgba(18, 18, 18, 0.68)),
        radial-gradient(circle at 18% 45%, rgba(244, 168, 85, 0.18), transparent 45%),
        linear-gradient(110deg, rgba(45, 45, 45, 0.2) 0%, transparent 55%);
}

.hero-content {
    max-width: 1380px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
    padding: 0 24px;
}

.hero-title {
    max-width: 10.5ch;
    text-wrap: balance;
    font-size: clamp(54px, 9vw, 106px);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 0.96;
    margin-left: auto;
    margin-right: auto;
}

.hero-subtitle {
    margin: 0 auto 40px;
    max-width: 52ch;
    font-size: clamp(18px, 1.95vw, 25px);
    color: rgba(255, 255, 255, 0.76);
}

.hero-actions {
    justify-content: center;
}

.hero-scroll {
    left: auto;
    right: 36px;
    transform: none;
}

.section-header {
    margin-bottom: 72px;
}

.section-eyebrow {
    letter-spacing: 3.5px;
    font-size: 11px;
}

.section-title {
    letter-spacing: -0.018em;
    font-size: clamp(36px, 4.2vw, 62px);
    line-height: 1.04;
}

.btn {
    border-radius: 10px;
    padding: 15px 32px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
    font-weight: 700;
}

.btn--primary {
    box-shadow: 0 12px 30px rgba(244, 168, 85, 0.36);
}

.btn--outline {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.02);
}

.about::before {
    background:
        linear-gradient(180deg, rgba(245, 241, 235, 0.56), transparent 42%),
        repeating-linear-gradient(120deg, rgba(45, 45, 45, 0.018), rgba(45, 45, 45, 0.018) 1px, transparent 1px, transparent 20px);
}

.about-image-banner,
.comfort-image,
.experience-hero,
.contact-form-wrapper {
    border-radius: var(--radius-lg);
    box-shadow: var(--soft-shadow);
}

.about-image-banner,
.comfort-image,
.experience-hero {
    border: 1px solid rgba(45, 45, 45, 0.1);
}

.about-image-banner {
    margin-bottom: 84px;
    transform: translateY(26px) scale(0.985);
}

.about-grid {
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    gap: clamp(44px, 5vw, 90px);
}

.about-content .section-title {
    max-width: 16ch;
}

.about-text {
    font-size: 19px;
    line-height: 1.8;
    max-width: 62ch;
}

.stat {
    border-left: 0;
    border: 1px solid rgba(244, 168, 85, 0.26);
    background: linear-gradient(160deg, var(--gray-100), #fdfcf9);
    box-shadow: var(--card-shadow);
    border-radius: 6px;
    padding: 30px 34px;
}

.comfort {
    background:
        radial-gradient(circle at 90% 10%, rgba(244, 168, 85, 0.14), transparent 38%),
        linear-gradient(160deg, #222222 0%, var(--charcoal) 52%, #1f1f1f 100%);
}

.comfort .container {
    max-width: 1320px;
}

.comfort-feature {
    border-radius: var(--radius-md);
    background: linear-gradient(170deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    text-align: left;
    padding: 34px 24px;
    border-color: rgba(255, 255, 255, 0.14);
}

.comfort-feature-icon {
    margin: 0 0 20px;
}

.network {
    background:
        linear-gradient(to bottom, #f5f1eb, #f8f4ef);
}

.formats {
    gap: 26px;
    grid-template-columns: repeat(3, 1fr);
    align-items: start;
}

.format-card {
    border-radius: var(--radius-lg);
    border-color: rgba(45, 45, 45, 0.12);
    box-shadow: var(--card-shadow);
}

.format-card:hover {
    box-shadow: var(--soft-shadow);
}

.format-card-body {
    padding: 30px 28px 32px;
}

.formats .format-card:nth-child(1) {
    margin-top: -26px;
}

.formats .format-card:nth-child(2) {
    margin-top: 24px;
}

.formats .format-card:nth-child(3) {
    margin-top: 72px;
}

.format-card-title {
    font-size: 30px;
    letter-spacing: -0.02em;
}

.format-card-tagline {
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 11px;
}

.format-card-description {
    font-size: 16px;
    line-height: 1.75;
}

.experience::before {
    background:
        radial-gradient(circle at 5% 16%, rgba(74, 93, 82, 0.09), transparent 25%),
        radial-gradient(circle at 92% 82%, rgba(244, 168, 85, 0.08), transparent 28%);
}

.experience .section-header {
    display: grid;
    grid-template-columns: 0.85fr 1.15fr;
    gap: 36px;
    align-items: end;
}

.experience .section-title {
    margin-bottom: 0;
}

.experience-item {
    border-radius: var(--radius-md);
    border: 1px solid rgba(45, 45, 45, 0.1);
    background: linear-gradient(180deg, #faf9f7, #f4f2ee);
    min-height: 100%;
}

.experience-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--card-shadow);
}

.experience-number {
    font-size: 42px;
    font-weight: 800;
}

.experience-item h3 {
    font-size: 24px;
}

.experience-item p {
    font-size: 15px;
}

.pathfinder {
    background:
        linear-gradient(155deg, #252525 0%, var(--charcoal) 65%, #1f1f1f 100%);
}

.tier-card {
    border-radius: var(--radius-md);
    border-color: rgba(255, 255, 255, 0.12);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-top: 3px solid rgba(255, 255, 255, 0.12);
}

.tier-card--explorer { border-top-color: #B87333; }
.tier-card--voyager { border-top-color: #a8c4d8; }
.tier-card--pioneer { border-top-color: #FFD700; }
.tier-card--trailblazer { border-top-color: var(--warm); }

.tier-card-header h3 {
    letter-spacing: -0.02em;
    font-size: 22px;
}

.tier-card-credit {
    padding: 20px 20px 16px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.tier-credit-value {
    display: block;
    font-family: var(--font-heading);
    font-size: 44px;
    font-weight: 800;
    line-height: 1;
    margin-bottom: 4px;
    letter-spacing: -0.03em;
}

.tier-card--explorer .tier-credit-value { color: #B87333; }
.tier-card--voyager .tier-credit-value { color: #a8c4d8; }
.tier-card--pioneer .tier-credit-value { color: #FFD700; }
.tier-card--trailblazer .tier-credit-value { color: var(--warm); }

.tier-card--explorer .tier-credit-value {
    font-size: 0;
}

.tier-card--explorer .tier-credit-value svg {
    width: 36px;
    height: 36px;
    color: #B87333;
}

.tier-credit-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.4);
}

.tier-card--featured {
    border-color: rgba(255, 215, 0, 0.25);
    background: rgba(255, 215, 0, 0.03);
    box-shadow: 0 0 0 1px rgba(255, 215, 0, 0.18), 0 14px 40px rgba(10, 10, 10, 0.28);
}

.tier-card--featured .tier-card-header h3 {
    color: #FFD700;
}

.pathfinder-bottom {
    text-align: center;
    margin-top: 48px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.founder {
    background:
        linear-gradient(175deg, #f5f1eb 0%, #f9f5f0 100%);
}

.founder-grid {
    grid-template-columns: minmax(0, 1.1fr) minmax(300px, 0.9fr);
    align-items: start;
}

.founder-quote blockquote {
    border-radius: var(--radius-lg);
    box-shadow: var(--soft-shadow);
    margin-top: 36px;
}

.locations-bg img {
    opacity: 0.28;
}

.locations-bg::after {
    background:
        linear-gradient(to bottom, rgba(45, 45, 45, 0.88), rgba(45, 45, 45, 0.95)),
        radial-gradient(circle at 50% 10%, rgba(244, 168, 85, 0.18), transparent 45%);
}

.contact {
    background:
        linear-gradient(to bottom, #f7f6f3, #f3f2ef);
}

.contact-grid {
    grid-template-columns: 0.95fr 1.05fr;
    gap: clamp(48px, 6vw, 100px);
}

.contact-form-wrapper {
    background: linear-gradient(180deg, #ffffff, #fdfcf9);
    border: 1px solid rgba(45, 45, 45, 0.08);
}

.form-group input,
.form-group select,
.form-group textarea {
    border-radius: 12px;
}

.footer {
    background:
        linear-gradient(160deg, #262626 0%, #1f1f1f 100%);
}

.footer-grid {
    gap: 84px;
}

.footer-links h4 {
    letter-spacing: 0.16em;
}

@keyframes heroDrift {
    from { transform: scale(1.02) translateX(-1%); }
    to { transform: scale(1.1) translateX(1%); }
}

@media (max-width: 1024px) {
    .nav-menu {
        background: none;
        border: 0;
        padding: 0;
    }

    .hero {
        align-items: center;
        padding-bottom: 0;
    }

    .hero-content {
        text-align: center;
        padding: 0 24px;
    }

    .hero-title,
    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-scroll {
        left: 50%;
        right: auto;
        transform: translateX(-50%);
    }

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

    .about-image-banner {
        transform: none;
    }

    .section-title {
        max-width: none;
    }

    .formats {
        grid-template-columns: 1fr;
        max-width: 520px;
    }

    .formats .format-card:nth-child(1),
    .formats .format-card:nth-child(2),
    .formats .format-card:nth-child(3) {
        margin-top: 0;
    }

    .experience .section-header {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .contact-grid,
    .founder-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav {
        height: var(--nav-height);
    }

    .nav.menu-open {
        backdrop-filter: none;
        -webkit-backdrop-filter: none;
        /* Only transition these properties — NOT backdrop-filter.
           backdrop-filter must change instantly to avoid creating a
           containing block that traps the fixed-position nav-menu
           inside the 64px-tall nav bar. */
        transition: background 0.3s ease, box-shadow 0.3s ease, border-bottom 0.3s ease;
    }

    .nav-menu {
        background: rgba(45, 45, 45, 0.98);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        border: 0;
        padding: 24px;
        gap: 8px;
        z-index: 5;
        overscroll-behavior: contain;
    }

    .hero-bg-image {
        animation-duration: 12s;
    }

    .hero-title {
        font-size: clamp(42px, 14vw, 70px);
    }

    .section-title {
        font-size: clamp(30px, 8vw, 44px);
    }

    .section::before {
        display: none;
    }
}

/* Accessibility: Focus-visible styles for keyboard navigation
   ========================================================================== */
:focus-visible {
    outline: 2px solid var(--warm);
    outline-offset: 3px;
    border-radius: 4px;
}

.nav-link:focus-visible {
    outline-offset: 2px;
}

.btn:focus-visible {
    outline-offset: 4px;
}

/* Accessibility: Reduced motion
   ========================================================================== */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    [data-animate] {
        opacity: 1 !important;
        transform: none !important;
    }

    .hero-bg-image {
        animation: none !important;
    }
}
