/* ============================================
   VAYA — Design System
   Clean. Calm. Connected.
   ============================================ */

/* Satoshi — Self-hosted font */
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi/Satoshi-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi/Satoshi-Regular.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi/Satoshi-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi/Satoshi-Medium.otf') format('opentype');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi/Satoshi-Bold.otf') format('opentype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'Satoshi';
    src: url('fonts/satoshi/Satoshi-Black.otf') format('opentype');
    font-weight: 900;
    font-style: normal;
    font-display: swap;
}

*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Brand Palette */
    --charcoal:   #2F3130;
    --sage:       #6B7A6E;
    --sage-light: #8A9C8E;
    --cream:      #E7E2DA;
    --soft-white: #F4F2EF;
    --greige:     #D9D3C7;
    --white:      #FFFFFF;

    /* Semantic Text */
    --text-dark:  #2F3130;
    --text-mid:   #5C605D;
    --text-light: #8A908B;

    /* Shadows */
    --shadow:       0 2px 16px rgba(47, 49, 48, 0.07);
    --shadow-hover: 0 8px 32px rgba(47, 49, 48, 0.13);

    /* Radii */
    --radius:    8px;
    --radius-lg: 12px;

    /* Motion */
    --transition: 0.25s ease;

    /* Compatibility aliases for legacy inline styles */
    --deep-warmth: var(--charcoal);
    --warm-amber:  var(--sage);
    --light-amber: var(--greige);
    --light-bg:    var(--soft-white);
}

html {
    scroll-behavior: smooth;
}

img, video {
    max-width: 100%;
    height: auto;
}

/* Typography */
h1 {
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--charcoal);
}

h3 {
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: -0.01em;
    color: var(--charcoal);
    margin-bottom: 0.5rem;
}

p {
    color: var(--text-mid);
    line-height: 1.75;
}

strong {
    color: var(--charcoal);
    font-weight: 600;
}

.brand-lockup {
    width: min(240px, 55vw);
    height: auto;
    display: block;
    margin-bottom: 1.75rem;
}

.section-lead {
    max-width: 760px;
    margin: 0 auto 2rem;
    text-align: center;
    color: var(--text-mid);
    font-size: 0.98rem;
    line-height: 1.8;
}

.section-lead--narrow {
    max-width: 600px;
}

.section-lead--left {
    margin-left: 0;
    margin-right: 0;
    text-align: left;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 0.9rem;
    color: var(--sage);
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.8px;
}

.hero-note,
.support-note,
.muted-note {
    color: var(--text-light);
    font-size: 0.92rem;
}

.hero-note {
    margin-top: 1.5rem;
}

.soft-panel {
    background: var(--soft-white);
    border: 1px solid var(--greige);
    border-radius: var(--radius-lg);
    padding: 1.8rem 2rem;
    text-align: center;
}

.soft-panel p:last-child {
    margin-bottom: 0;
}

.announcement-banner {
    background: linear-gradient(180deg, var(--soft-white) 0%, var(--cream) 100%);
    border-top: 1px solid var(--greige);
    padding: 1.75rem 0;
}

.announcement-banner .container {
    text-align: center;
}

.announcement-link {
    color: var(--charcoal);
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid currentColor;
    transition: color var(--transition), border-color var(--transition);
}

.announcement-link:hover {
    color: var(--sage);
    border-bottom-color: var(--sage);
}

.footer-links-muted {
    margin-top: 1rem;
    font-size: 0.85rem;
    opacity: 0.8;
}

.pricing-summary {
    background: var(--soft-white);
    border-bottom: 1px solid var(--greige);
    padding: 2.5rem 0;
}

.pricing-summary-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 1rem;
    margin: 0 auto 1.25rem;
}

.pricing-summary-card {
    background: var(--white);
    border: 1px solid var(--greige);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow);
}

.pricing-summary-card.featured {
    background: var(--soft-white);
    border-width: 2px;
    border-color: var(--sage);
}

.pricing-summary-card small {
    font-size: 0.9rem;
    font-weight: 400;
    color: var(--text-light);
}

.order-message {
    margin: 0 auto 1.5rem;
    max-width: 600px;
    padding: 0.9rem 1rem;
    border-radius: var(--radius);
    border: 1px solid rgba(107, 122, 110, 0.3);
    background: #f6f8f6;
    color: #4f6253;
    font-weight: 500;
    text-align: center;
}

.page-spacer {
    min-height: 10vh;
    display: flex;
    align-items: center;
}

.legal-page {
    padding: 7rem 0 4.5rem;
}

.legal-shell {
    max-width: 780px;
}

.legal-page h1 {
    font-size: clamp(1.85rem, 4vw, 2.7rem);
    margin-bottom: 0.45rem;
    color: var(--charcoal);
}

.legal-page .updated {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2.5rem;
}

.legal-page h2 {
    font-size: 1.15rem;
    margin: 2rem 0 0.6rem;
    color: var(--charcoal);
    text-align: left;
}

.legal-page p,
.legal-page li {
    color: var(--text-mid);
    line-height: 1.8;
    margin-bottom: 0.85rem;
}

.legal-page ul {
    padding-left: 1.35rem;
    margin-bottom: 0.85rem;
}

.legal-page a {
    color: var(--sage);
    text-decoration: none;
    border-bottom: 1px solid transparent;
}

.legal-page a:hover {
    border-bottom-color: var(--sage);
}

.legal-nav {
    margin-bottom: 2rem;
}

.legal-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-size: 0.9rem;
}

.legal-nav a:hover {
    color: var(--charcoal);
}

.rights-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.25rem;
    margin: 1.5rem 0 2rem;
}

.rights-card {
    background: var(--soft-white);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.4rem;
    border: 1px solid var(--greige);
    border-left: 3px solid var(--sage);
    box-shadow: var(--shadow);
}

.rights-card h3 {
    font-size: 1rem;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}

.rights-card p {
    font-size: 0.92rem;
    margin-bottom: 0;
}

.contact-box {
    background: var(--soft-white);
    border: 1px solid var(--greige);
    border-radius: var(--radius-lg);
    padding: 1.5rem 1.75rem;
    margin-top: 2rem;
}

.contact-box h2 {
    margin-top: 0;
}

body {
    font-family: 'Satoshi', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;
    line-height: 1.7;
    color: var(--text-dark);
    background-color: var(--white);
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Navigation */
nav {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(244, 242, 239, 0.95);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--greige);
    z-index: 1000;
    transition: background var(--transition);
}

nav .container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 64px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-decoration: none;
    line-height: 1;
    gap: 3px;
}

.logo img {
    height: 26px;
    width: auto;
    display: block;
}

.logo-sub {
    font-size: 0.68rem;
    font-weight: 400;
    color: var(--text-light);
    letter-spacing: 0.03em;
}

.logo .unofficial {
    display: none;
}



nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
    margin: 0;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: var(--text-mid);
    font-weight: 500;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
    transition: color var(--transition);
}

nav a:hover {
    color: var(--charcoal);
}

nav a.nav-cta {
    color: var(--white);
    background: var(--charcoal);
    padding: 0.45rem 1.2rem;
    border-radius: 999px;
    font-size: 0.85rem;
    transition: background var(--transition);
}

nav a.nav-cta:hover {
    background: var(--sage);
    color: var(--white);
}

@media (max-width: 768px) {
    nav ul {
        display: none;
    }
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section layout */
section {
    padding: 5.5rem 2rem;
}

section.light {
    background-color: var(--soft-white);
}

/* Hero Section */
.hero {
    margin-top: 64px;
    padding: 6.5rem 2rem 5rem;
    background: var(--soft-white);
}

/* Single-column hero (sub-pages) */
.hero--text .container {
    display: block;
    text-align: center;
    max-width: 760px;
    margin: 0 auto;
}

.hero--text h1 { margin-bottom: 1.25rem; }

.hero--text p {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 600px;
    margin: 0 auto;
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.hero--order .container {
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
}

.hero--order .hero-image img {
    max-width: 400px;
    margin: 0 auto;
}

.hero-content h1 {
    margin-bottom: 1.5rem;
}

.hero-content .subheading {
    font-size: 1.1rem;
    color: var(--text-mid);
    margin-bottom: 2.5rem;
    font-weight: 400;
    line-height: 1.75;
}

.btn {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--charcoal);
    color: var(--white);
    text-decoration: none;
    border-radius: 999px;
    font-weight: 600;
    transition: all var(--transition);
    border: 1.5px solid var(--charcoal);
    cursor: pointer;
    font-size: 0.92rem;
    text-align: center;
    font-family: inherit;
    letter-spacing: 0.01em;
}

.btn:hover {
    background: var(--sage);
    border-color: var(--sage);
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(107, 122, 110, 0.28);
}

.btn-secondary {
    background: transparent;
    color: var(--charcoal);
    border-color: var(--greige);
    margin-left: 1rem;
}

.btn-secondary:hover {
    background: var(--soft-white);
    border-color: var(--sage);
    color: var(--charcoal);
    box-shadow: none;
    transform: none;
}

.hero-image {
    text-align: center;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.hero-dual-media {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.hero-media-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
    border: 1px solid var(--greige);
    transition: transform var(--transition), box-shadow var(--transition);
}

.hero-media-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.hero-media-card img {
    width: 100%;
    aspect-ratio: 1;
    object-fit: cover;
    display: block;
}

.hero-media-card figcaption {
    padding: 0.65rem 1rem;
    font-size: 0.8rem;
    color: var(--text-mid);
    text-align: center;
    font-weight: 500;
    letter-spacing: 0.02em;
    background: var(--soft-white);
    border-top: 1px solid var(--greige);
}

.metrics-included-banner {
    padding-top: 0;
}

.metrics-included-card {
    max-width: 900px;
    margin: -1rem auto 1rem;
    padding: 2rem 2.5rem;
    border-radius: var(--radius-lg);
    background: var(--white);
    border: 1px solid var(--greige);
    box-shadow: var(--shadow);
    text-align: center;
}

.metrics-included-kicker {
    color: var(--sage);
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    font-weight: 600;
    margin-bottom: 0.75rem;
}

.metrics-included-card h2 {
    margin-bottom: 0.75rem;
    font-size: 1.4rem;
}

.metrics-included-card p {
    color: var(--text-mid);
    max-width: 760px;
    margin: 0 auto;
}

.metrics-device-tags {
    margin-top: 1.25rem;
    display: flex;
    gap: 0.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.metrics-device-tags span {
    border: 1px solid var(--greige);
    background: var(--soft-white);
    color: var(--text-mid);
    padding: 0.3rem 0.85rem;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

@media (max-width: 768px) {
    .hero .container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .hero-content h1 {
        font-size: 2rem;
    }

    .hero-content .subheading {
        font-size: 1.2rem;
    }

    .btn-secondary {
        display: block;
        margin: 1rem 0 0 0;
    }

    .hero-dual-media {
        grid-template-columns: 1fr;
    }

    .metrics-included-card {
        margin-top: 0;
        padding: 1.2rem;
    }
}

/* How It Works */
.how-it-works {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
}

.step {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--greige);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.step:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.step-number {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    background: var(--sage);
    color: var(--white);
    border-radius: 50%;
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 1.25rem;
}

.step h3 {
    font-size: 0.95rem;
    margin-bottom: 0.6rem;
}

.step p {
    color: var(--text-light);
    font-size: 0.92rem;
    line-height: 1.75;
}

/* Features Grid */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 1.5rem;
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.product-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--greige);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.product-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.product-card h3 {
    font-size: 1rem;
    margin-bottom: 0.6rem;
}

.product-card p {
    font-size: 0.92rem;
    color: var(--text-mid);
}

.product-card .eyebrow {
    margin-bottom: 0.7rem;
}

.product-card-link {
    display: inline-flex;
    margin-top: 1rem;
    color: var(--sage);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
}

.product-card-link:hover {
    color: var(--charcoal);
    border-bottom-color: var(--charcoal);
}

.feature-card {
    background: var(--white);
    padding: 2rem 1.75rem;
    border-radius: var(--radius-lg);
    text-align: left;
    border: 1px solid var(--greige);
    border-top: 2px solid var(--sage);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.feature-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.feature-icon {
    font-size: 1.4rem;
    margin-bottom: 0.85rem;
    display: block;
}

.feature-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
}

.feature-card p {
    color: var(--text-light);
    font-size: 0.9rem;
    line-height: 1.65;
}

/* Placeholder grid */
.placeholder-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.placeholder-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 1rem;
    border: 1px solid var(--greige);
    box-shadow: var(--shadow);
}

.placeholder-image {
    border: 1.5px dashed var(--greige);
    border-radius: var(--radius);
    min-height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-light);
    background: var(--soft-white);
    font-weight: 500;
    font-size: 0.88rem;
}

.placeholder-card h3 {
    font-size: 0.95rem;
    margin: 0.85rem 0 0.4rem;
}

.placeholder-file {
    color: var(--text-light);
    font-size: 0.83rem;
    word-break: break-word;
}

.placeholder-file code {
    background: var(--soft-white);
    padding: 0.15rem 0.35rem;
    border-radius: 4px;
    color: var(--sage);
}

/* Product Details */
.product-details {
    background: var(--white);
    padding: 2.5rem;
    border-radius: var(--radius-lg);
    margin: 3rem 0 0;
    border: 1px solid var(--greige);
    box-shadow: var(--shadow);
}

.details-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.details-image {
    text-align: center;
}

.details-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

.details-list {
    list-style: none;
}

.details-list li {
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--greige);
    color: var(--text-dark);
    font-size: 0.93rem;
    display: flex;
    align-items: flex-start;
    gap: 0.85rem;
    line-height: 1.5;
}

.details-list li::before {
    content: "—";
    color: var(--sage);
    font-weight: 600;
    flex-shrink: 0;
    margin-top: 0.05rem;
}

.details-list li:last-child {
    border-bottom: none;
}

@media (max-width: 768px) {
    .details-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
}

/* Pricing */
.pricing-cards {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.price-card {
    background: var(--white);
    padding: 2.5rem 2rem;
    border-radius: var(--radius-lg);
    text-align: center;
    border: 1px solid var(--greige);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
}

.price-card.featured {
    border-color: var(--sage);
    border-width: 2px;
    background: var(--soft-white);
    transform: scale(1.03);
}

.price-label {
    color: var(--sage);
    font-weight: 600;
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    font-size: 0.75rem;
    letter-spacing: 1.8px;
}

.price-amount {
    font-size: 2.4rem;
    color: var(--charcoal);
    font-weight: 700;
    margin-bottom: 0.5rem;
    letter-spacing: -0.03em;
    line-height: 1.15;
}

.price-description {
    color: var(--text-light);
    margin-bottom: 1.75rem;
    font-size: 0.9rem;
    line-height: 1.5;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Timeline Section */
.timeline {
    position: relative;
    padding: 2rem 0;
    max-width: 900px;
    margin: 3rem auto;
}

.timeline-item {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    align-items: center;
}

.timeline-item:nth-child(even) .timeline-content {
    grid-column: 1;
    text-align: right;
}

.timeline-item:nth-child(even) .timeline-marker {
    grid-column: 2;
}

.timeline-item:nth-child(even) .timeline-details {
    grid-column: 3;
}

.timeline-content {
    grid-column: 1;
}

.timeline-marker {
    grid-column: 2;
    width: 36px;
    height: 36px;
    background: var(--sage);
    border: 3px solid var(--white);
    border-radius: 50%;
    position: relative;
    z-index: 10;
    box-shadow: 0 0 0 3px var(--sage);
}

.timeline-details {
    grid-column: 3;
}

.timeline-title {
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 0.4rem;
    font-size: 0.93rem;
}

.timeline-description {
    color: var(--text-light);
    font-size: 0.88rem;
}

@media (max-width: 768px) {
    .timeline-item {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .timeline-item .timeline-content,
    .timeline-item .timeline-marker,
    .timeline-item .timeline-details,
    .timeline-item:nth-child(even) .timeline-content,
    .timeline-item:nth-child(even) .timeline-marker,
    .timeline-item:nth-child(even) .timeline-details {
        grid-column: 1;
        text-align: left;
    }

    .timeline-marker {
        margin-left: 0;
        margin-bottom: 0.5rem;
    }
}

/* Form Section */
.form-section {
    max-width: 600px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 1.5rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 600;
    font-size: 0.87rem;
    color: var(--charcoal);
    letter-spacing: 0.01em;
}

input,
select,
textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    border: 1px solid var(--greige);
    border-radius: var(--radius);
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--white);
    color: var(--text-dark);
    transition: border-color var(--transition), box-shadow var(--transition);
}

input:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--sage);
    box-shadow: 0 0 0 3px rgba(107, 122, 110, 0.12);
}

textarea {
    resize: vertical;
    min-height: 100px;
}

/* Testimonials */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.testimonial {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--greige);
    box-shadow: var(--shadow);
    border-left: 3px solid var(--sage);
}

.testimonial-text {
    font-style: italic;
    color: var(--text-mid);
    margin-bottom: 1.25rem;
    line-height: 1.8;
    font-size: 0.95rem;
}

.testimonial-author {
    color: var(--sage);
    font-weight: 600;
    font-size: 0.85rem;
    letter-spacing: 0.02em;
}

/* Footer */
footer {
    background: var(--charcoal);
    color: var(--cream);
    padding: 4rem 2rem 3rem;
    text-align: center;
}

footer .container {
    max-width: 760px;
}

footer .footer-logo {
    height: 22px;
    width: auto;
    margin-bottom: 2rem;
    filter: brightness(0) invert(1);
    opacity: 0.8;
    display: inline-block;
}

footer h3 {
    color: var(--cream);
    margin-bottom: 0.75rem;
    font-size: 1.05rem;
    font-weight: 500;
    text-align: center;
}

footer p {
    color: rgba(231, 226, 218, 0.7);
    font-size: 0.9rem;
}

footer a {
    color: var(--cream);
    text-decoration: none;
    transition: opacity var(--transition);
    opacity: 0.75;
}

footer a:hover {
    opacity: 1;
}

.footer-links {
    margin: 1.75rem 0;
    display: flex;
    gap: 2rem;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 0.87rem;
}

.footer-note {
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(231, 226, 218, 0.12);
    font-size: 0.8rem;
    color: rgba(231, 226, 218, 0.45);
    line-height: 1.75;
}

/* Utilities */
.text-center {
    text-align: center;
}

.mt-4 {
    margin-top: 2rem;
}

.mb-4 {
    margin-bottom: 2rem;
}

/* Success Message */
.success-message {
    display: none;
    background: #ebf4ee;
    color: #2a7a3c;
    padding: 1.5rem;
    border-radius: var(--radius);
    margin-bottom: 1.5rem;
    text-align: center;
    border: 1px solid #c0dfc5;
}

.success-message.show {
    display: block;
}

/* Order Card */
.order-card,
.reserve-box {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2rem 2.5rem;
    border: 1px solid var(--greige);
    box-shadow: var(--shadow);
}

.order-card h3,
.reserve-box h3 {
    text-align: center;
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
}

.order-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--greige);
}

.order-row:last-of-type {
    border-bottom: none;
}

.order-label {
    font-weight: 500;
    color: var(--text-light);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.8px;
}

.order-value {
    font-weight: 600;
    color: var(--text-dark);
    text-align: right;
    font-size: 0.93rem;
}

.order-note {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--greige);
    text-align: center;
    color: var(--text-light);
    font-size: 0.87rem;
}

/* Status Badges */
.status-badge {
    display: inline-block;
    padding: 0.25rem 0.8rem;
    border-radius: 999px;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.status-order_created      { background: #eef4fb; color: #2563a8; }
.status-deposit_link_sent  { background: #fdf8ec; color: #92721a; }
.status-deposit_paid       { background: #ebf4ee; color: #2a7a3c; }
.status-in_progress        { background: #f2f4f2; color: #4a5e4d; }
.status-ready_to_dispatch  { background: #e8f5f1; color: #1a6b58; }
.status-dispatched         { background: #ebf4ee; color: #2a7a3c; }
.status-completed          { background: #d6edd9; color: #1a5c28; }
.status-cancelled          { background: #fde8e8; color: #8c2424; }

.reserve-notice {
    text-align: center;
    color: var(--text-light);
    font-size: 0.87rem;
    margin-bottom: 1rem;
}

.reserve-intro {
    text-align: center;
    color: var(--text-mid);
    margin-bottom: 1.5rem;
    font-size: 0.92rem;
}

.reserve-terms {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Animation */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(24px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in {
    animation: fadeInUp 0.5s ease-out both;
}

/* Gallery Grid */
.gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
    gap: 1.5rem;
}

.gallery-item {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--white);
    border: 1px solid var(--greige);
    box-shadow: var(--shadow);
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: auto;
    display: block;
    transition: transform 0.35s ease;
}

.gallery-item p {
    margin: 0;
    font-size: 0.88rem;
    color: var(--charcoal);
    font-weight: 600;
}

.gallery-item:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
}

.gallery-item:hover img {
    transform: scale(1.03);
}

.gallery-caption {
    padding: 0.9rem 1.1rem 1.25rem;
    text-align: left;
    border-top: 1px solid var(--greige);
}

.gallery-caption h3 {
    margin: 0 0 0.3rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--charcoal);
}

.gallery-caption p {
    margin: 0;
    font-size: 0.85rem;
    color: var(--text-light);
    line-height: 1.6;
}

#successMessage,
#errorMessage {
    scroll-margin-top: 80px;
}

/* Demo Cards - Videos & Images */
.demo-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.demo-card {
    background: var(--white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--greige);
    border-top: 2px solid var(--sage);
    box-shadow: var(--shadow);
    transition: all var(--transition);
}

.demo-card:hover {
    box-shadow: var(--shadow-hover);
    transform: translateY(-3px);
}

.demo-media {
    width: 100%;
    height: 200px;
    background: var(--soft-white);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.demo-card video,
.demo-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.demo-content {
    padding: 1.5rem;
}

.demo-card h3 {
    font-size: 0.95rem;
    margin-bottom: 0.4rem;
    color: var(--charcoal);
}

.demo-card p {
    color: var(--text-light);
    font-size: 0.88rem;
    line-height: 1.6;
}

.demo-rail {
    display: flex;
    flex-direction: column;
    gap: 4rem;
    max-width: 800px;
    margin: 0 auto;
}

.demo-row {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2rem;
    align-items: center;
}

.demo-video video {
    width: 100%;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-hover);
}

.demo-text h3 {
    margin-bottom: 0.5rem;
}

@media (max-width: 768px) {
    .demo-row {
        grid-template-columns: 1fr;
    }
}


/* FAQ Accordion */
.faq-list {
    max-width: 860px;
    margin: 3rem auto 0;
}

.faq-item {
    margin-bottom: 0.6rem;
    border: 1px solid var(--greige);
    border-radius: var(--radius);
    overflow: hidden;
    transition: border-color var(--transition);
}

.faq-item:hover {
    border-color: var(--sage);
}

.faq-item details {
    background: var(--white);
}

.faq-item details[open] {
    border-color: var(--sage);
}

.faq-item summary {
    padding: 1.2rem 1.5rem;
    font-weight: 600;
    font-size: 0.93rem;
    color: var(--charcoal);
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    list-style: none;
    transition: background var(--transition);
}

.faq-item summary::-webkit-details-marker {
    display: none;
}

.faq-item summary:hover {
    background: var(--soft-white);
}

.faq-item summary::after {
    content: "+";
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--sage);
    margin-left: 1.5rem;
    flex-shrink: 0;
    line-height: 1;
}

.faq-item details[open] summary::after {
    content: "−";
}

.faq-answer {
    padding: 1.25rem 1.5rem 1.5rem;
    color: var(--text-mid);
    font-size: 0.92rem;
    line-height: 1.8;
    border-top: 1px solid var(--greige);
}

.faq-answer p {
    margin-bottom: 0.75rem;
    color: var(--text-mid);
}

.faq-answer strong {
    color: var(--charcoal);
}

/* ============================================
   Announcements Page
   ============================================ */

.announcements-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: flex-start;
}

@media (max-width: 900px) {
    .announcements-layout {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Table of Contents sidebar */
.contents-list {
    position: sticky;
    top: 80px;
    background: var(--white);
    border: 1px solid var(--greige);
    border-left: 3px solid var(--sage);
    border-radius: var(--radius-lg);
    padding: 1.4rem 1.5rem;
    box-shadow: var(--shadow);
}

.contents-list h3 {
    font-size: 0.68rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
    margin-bottom: 0.4rem;
}

.contents-list p {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-bottom: 1rem;
}

.contents-list ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.contents-list ul li a {
    display: block;
    padding: 0.65rem 0;
    color: var(--text-mid);
    text-decoration: none;
    font-size: 0.87rem;
    font-weight: 500;
    border-bottom: 1px solid transparent;
    transition: color var(--transition), border-color var(--transition);
    line-height: 1.4;
}

.announcement-toc-date {
    display: block;
    margin-bottom: 0.15rem;
    font-size: 0.68rem;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    color: var(--sage);
}

.announcement-toc-title {
    display: block;
    color: var(--charcoal);
    font-size: 0.9rem;
    line-height: 1.45;
}

.contents-list ul li a:hover {
    color: var(--charcoal);
}

.contents-list ul li a:hover .announcement-toc-title {
    color: var(--charcoal);
}

.contents-list ul li + li a {
    border-top: 1px solid var(--greige);
}

/* Announcement cards */
.announcements-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
}

.announcement-item {
    background: var(--white);
    border: 1px solid var(--greige);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    overflow: hidden;
    scroll-margin-top: 84px;
    transition: box-shadow var(--transition);
}

.announcement-item:hover {
    box-shadow: var(--shadow-hover);
}

.announcement-header {
    padding: 1.5rem 2rem 1.25rem;
    border-bottom: 1px solid var(--greige);
    background: var(--soft-white);
}

.announcement-date {
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--sage);
    margin-bottom: 0.35rem;
}

.announcement-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--charcoal);
    line-height: 1.3;
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.announcement-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.announcement-tag {
    display: inline-block;
    background: var(--cream);
    border: 1px solid var(--greige);
    color: var(--text-mid);
    font-size: 0.71rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    padding: 0.2rem 0.65rem;
    border-radius: 999px;
}

.announcement-content {
    padding: 1.75rem 2rem;
    color: var(--text-mid);
    line-height: 1.8;
    font-size: 0.95rem;
}

.announcement-content p {
    margin-bottom: 1rem;
}

.announcement-content p:last-child {
    margin-bottom: 0;
}

.announcement-content ul,
.announcement-content ol {
    padding-left: 1.35rem;
    margin-bottom: 1rem;
}

.announcement-content li {
    color: var(--text-mid);
    margin-bottom: 0.4rem;
    line-height: 1.75;
}

.announcement-content strong {
    color: var(--charcoal);
    font-weight: 600;
}

.announcement-content a {
    color: var(--sage);
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color var(--transition);
}

.announcement-content a:hover {
    border-bottom-color: var(--sage);
}

@media (max-width: 768px) {
    .announcement-header,
    .announcement-content {
        padding-left: 1.25rem;
        padding-right: 1.25rem;
    }

    .announcement-title {
        font-size: 1.05rem;
    }
}

/* Updates/Announcements */
.updates-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 1.5rem;
    margin: 3rem 0;
}

.update-card {
    background: var(--white);
    padding: 2rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    border: 1px solid var(--greige);
    border-left: 3px solid var(--sage);
    transition: transform var(--transition), box-shadow var(--transition);
}

.update-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-hover);
}

.update-date {
    color: var(--sage);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 1.8px;
    margin-bottom: 0.5rem;
}

.update-title {
    color: var(--charcoal);
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.update-text {
    color: var(--text-mid);
    font-size: 0.9rem;
    line-height: 1.65;
    margin-bottom: 1rem;
}

.update-link {
    color: var(--sage);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.88rem;
    transition: color var(--transition);
    border-bottom: 1px solid transparent;
}

.update-link:hover {
    color: var(--charcoal);
    border-bottom-color: var(--charcoal);
}

@media (max-width: 768px) {
    .demo-media {
        height: 150px;
    }
}