/* ============================================
   HOUSE OF HALO — Shared Stylesheet
   Forest Green & Champagne · Warm Linen Palette
   ============================================ */

:root {
    /* Core palette */
    --primary-green: #0d2e24;
    --green-dark: #081f19;
    --green-mid: #143529;
    --green-light: #1a4034;
    --green-whisper: #D8DDD4;
    --emerald: #0d2e24;

    /* Accents */
    --champagne: #D4C3A8;
    --champagne-light: #E0D5C0;
    --champagne-dark: #B8A68B;
    --gold-leaf: #C9A96E;

    /* Warm Linen text colours for dark backgrounds — NEW */
    --linen-heading: #F4F1EC;       /* Ivory — ONLY for headings on dark */
    --linen-body: #C9BFA8;          /* Warm oat — body copy on dark */
    --linen-muted: #A89775;         /* Muted gold — small text, captions */
    --linen-whisper: #9C927C;       /* Whisper — disclaimers, metadata */

    /* Neutrals (unchanged — for light backgrounds) */
    --warm-ivory: #F4F1EC;
    --soft-white: #EFEDE8;
    --pearl: #FAF8F3;
    --stone-grey: #C7C4BE;
    --text-dark: #2C3730;
    --text-medium: #5A6560;
    --text-light: #8B8F8A;
    --border-soft: rgba(13, 46, 36, 0.08);
    --border-medium: rgba(13, 46, 36, 0.18);

    /* Type scale */
    --font-display: 'Cormorant Garamond', 'Cormorant', serif;
    --font-body: 'Montserrat', sans-serif;
    --font-accent: 'Cormorant Garamond', serif;
    --tracking-wide: 0.18em;
    --tracking-xwide: 0.32em;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text-dark);
    background: var(--pearl);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-weight: 300;
    line-height: 1.7;
}

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

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

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ============================================
   Utility
   ============================================ */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 1.2s cubic-bezier(0.25, 0.8, 0.25, 1),
                transform 1.2s cubic-bezier(0.25, 0.8, 0.25, 1);
}

.reveal.active {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger > * {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 1s ease-out, transform 1s ease-out;
}

.reveal-stagger.active > *:nth-child(1) { opacity: 1; transform: translateY(0); transition-delay: 0.1s; }
.reveal-stagger.active > *:nth-child(2) { opacity: 1; transform: translateY(0); transition-delay: 0.25s; }
.reveal-stagger.active > *:nth-child(3) { opacity: 1; transform: translateY(0); transition-delay: 0.4s; }
.reveal-stagger.active > *:nth-child(4) { opacity: 1; transform: translateY(0); transition-delay: 0.55s; }

.eyebrow {
    font-size: 0.7rem;
    letter-spacing: var(--tracking-xwide);
    text-transform: uppercase;
    color: var(--champagne-dark);
    font-weight: 400;
    margin-bottom: 24px;
    display: inline-block;
}

.eyebrow.on-dark {
    color: var(--linen-muted);
}

/* ============================================
   Announcement Bar
   ============================================ */
.announcement-bar {
    background: var(--pearl);
    text-align: center;
    padding: 5px 60px;
    position: relative;
    z-index: 1001;
    border-bottom: 1px solid var(--border-soft);
}

.announcement-bar ul {
    display: flex;
    gap: 28px;
    list-style: none;
    justify-content: center;
    flex-wrap: wrap;
}

.announcement-bar a {
    color: var(--text-medium);
    font-size: 0.58rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
}

.announcement-bar a:hover {
    color: var(--emerald);
}

/* ============================================
   Navigation
   ============================================ */
.navbar {
    position: sticky;
    top: 0;
    left: 0;
    right: 0;
    background: var(--primary-green);
    z-index: 1000;
    padding: 0;
    border-bottom: 1px solid rgba(212, 195, 168, 0.15);
    transition: padding 0.3s ease;
}

.navbar-top {
    display: flex;
    align-items: center;
    justify-content: center;
    max-width: 1600px;
    margin: 0 auto;
    position: relative;
    background: var(--green-dark);
    padding: 16px 60px 14px;
}

/* Stretch the deep-green band edge-to-edge across the full viewport */
.navbar-top::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    left: calc(-50vw + 50%);
    right: calc(-50vw + 50%);
    background: var(--green-dark);
    z-index: -1;
}

.nav-left, .nav-right {
    flex: 1;
    display: flex;
    align-items: center;
    gap: 28px;
}

.nav-left {
    padding-left: 85px;
}

.nav-right {
    justify-content: flex-end;
    padding-right: 85px;
}

.nav-link-small {
    color: var(--linen-body);
    font-size: 0.7rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-weight: 400;
    opacity: 0.9;
    transition: color 0.3s ease, opacity 0.3s ease;
}

.nav-link-small:hover {
    opacity: 1;
    color: var(--champagne);
}

.logo-container {
    text-align: center;
    flex-shrink: 0;
}

.logo {
    font-family: var(--font-display);
    font-size: 1.85rem;
    font-weight: 300;
    letter-spacing: 0.5em;
    color: var(--linen-heading);
    text-transform: uppercase;
    display: inline-block;
    padding-left: 0.5em;
}

.logo-mark {
    display: block;
    font-size: 0.58rem;
    letter-spacing: var(--tracking-xwide);
    color: var(--linen-muted);
    margin-top: 4px;
    padding-left: 0.32em;
}

.nav-menu {
    display: flex;
    gap: 44px;
    list-style: none;
    justify-content: center;
    margin-top: 18px;
    padding-top: 16px;
    border-top: 1px solid rgba(212, 195, 168, 0.1);
}

/* Burger toggle on the left of the wordmark band */
.collections-toggle {
    position: absolute;
    left: 40px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
    background: none;
    border: none;
    z-index: 5;
}

.collections-toggle span {
    width: 22px;
    height: 1px;
    background: var(--champagne);
    transition: transform 0.3s ease, opacity 0.3s ease;
    display: block;
}

/* X icon when drawer is open */
.collections-toggle.active span:nth-child(1) {
    transform: translateY(6px) rotate(45deg);
}
.collections-toggle.active span:nth-child(2) {
    opacity: 0;
}
.collections-toggle.active span:nth-child(3) {
    transform: translateY(-6px) rotate(-45deg);
}

/* Categories drawer — slides down from beneath the wordmark band */
.nav-menu-primary {
    background: var(--primary-green);
    padding: 0 60px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s cubic-bezier(0.22, 1, 0.36, 1), padding 0.5s ease;
    list-style: none;
    margin: 0;
    box-shadow: inset 0 8px 12px -8px rgba(0, 0, 0, 0.25);
}

.nav-menu-primary.open {
    max-height: 240px;
    padding: 30px 60px 36px;
}

/* Inner grid for the categories */
.nav-menu-primary {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    justify-items: center;
}

.nav-menu-primary li {
    text-align: center;
    opacity: 0;
    transform: translateY(-10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.nav-menu-primary.open li {
    opacity: 1;
    transform: translateY(0);
}

.nav-menu-primary.open li:nth-child(1) { transition-delay: 0.1s; }
.nav-menu-primary.open li:nth-child(2) { transition-delay: 0.18s; }
.nav-menu-primary.open li:nth-child(3) { transition-delay: 0.26s; }
.nav-menu-primary.open li:nth-child(4) { transition-delay: 0.34s; }
.nav-menu-primary.open li:nth-child(5) { transition-delay: 0.42s; }

.nav-menu-primary a {
    color: var(--linen-heading);
    font-family: var(--font-display);
    font-size: 1.2rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
    display: inline-block;
    padding: 3px 0 5px;
    position: relative;
}

.nav-menu-primary a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--champagne);
    transition: width 0.4s ease;
}

.nav-menu-primary a:hover::after {
    width: 80%;
}

.nav-menu-primary a:hover {
    color: var(--champagne);
}

.nav-menu-primary .cat-tagline {
    display: block;
    margin-top: 8px;
    font-family: var(--font-body);
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: none;
    color: var(--linen-muted);
    font-weight: 300;
    line-height: 1.5;
}

.nav-menu-primary .cat-eyebrow {
    grid-column: 1 / -1;
    text-align: center;
    font-size: 0.62rem;
    letter-spacing: var(--tracking-xwide);
    text-transform: uppercase;
    color: var(--linen-muted);
    margin-bottom: 10px;
}

.nav-menu a {
    color: var(--linen-body);
    font-size: 0.72rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-weight: 400;
    transition: color 0.3s ease;
    position: relative;
    padding: 4px 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 1px;
    background: var(--champagne);
    transition: width 0.4s ease;
}

.nav-menu a:hover::after {
    width: 100%;
}

.nav-menu a:hover {
    color: var(--linen-heading);
}

.mobile-menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    cursor: pointer;
    padding: 8px;
}

.mobile-menu-toggle span {
    width: 24px;
    height: 1px;
    background: var(--champagne);
    transition: 0.3s;
    display: block;
}

/* ============================================
   Video Hero
   ============================================ */
.video-hero {
    position: relative;
    width: 100%;
    height: calc(100vh - 110px);
    min-height: 600px;
    overflow: hidden;
    background: var(--primary-green);
}

.hero-video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    will-change: transform;
    background: var(--primary-green);
    opacity: 0;
    transition: opacity 0.8s ease;
}
.hero-video.loaded {
    opacity: 1;
}

.video-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to bottom, rgba(13, 46, 36, 0.35) 0%, rgba(13, 46, 36, 0.2) 40%, rgba(13, 46, 36, 0.55) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
}

.video-overlay::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.025'/%3E%3C/svg%3E");
    pointer-events: none;
    mix-blend-mode: overlay;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    color: var(--linen-heading);
    max-width: 900px;
    padding: 0 40px;
}

.hero-eyebrow {
    font-size: 0.7rem;
    letter-spacing: var(--tracking-xwide);
    text-transform: uppercase;
    color: var(--linen-muted);
    margin-bottom: 30px;
    opacity: 0;
    animation: fadeInUp 1s 0.3s forwards;
}

.hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 5.2rem);
    font-weight: 300;
    letter-spacing: 0.04em;
    margin-bottom: 30px;
    line-height: 1.05;
    text-shadow: 0 2px 40px rgba(0,0,0,0.3);
    opacity: 0;
    animation: fadeInUp 1.4s 0.5s forwards;
    color: var(--champagne);
}

.hero-content h1 em {
    font-style: italic;
    color: var(--champagne);
    display: inline-block;
}

.hero-subtitle {
    font-size: 0.85rem;
    letter-spacing: var(--tracking-wide);
    opacity: 0;
    font-weight: 300;
    text-transform: uppercase;
    color: var(--linen-body);
    animation: fadeInUp 1.2s 0.9s forwards;
    animation-fill-mode: forwards;
}

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(30px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero-subtitle {
    animation: fadeInUp 1.2s 0.9s forwards, subtitleFade 0s 2.1s forwards;
}

@keyframes subtitleFade {
    to { opacity: 0.9; }
}

.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    color: var(--linen-muted);
    font-size: 0.65rem;
    letter-spacing: var(--tracking-xwide);
    text-transform: uppercase;
    opacity: 0;
    animation: fadeIn 1s 2s forwards, float 2.5s ease-in-out 2s infinite;
    z-index: 2;
}

.scroll-indicator::after {
    content: '';
    display: block;
    width: 1px;
    height: 30px;
    background: linear-gradient(to bottom, var(--champagne), transparent);
    margin: 10px auto 0;
}

@keyframes fadeIn {
    to { opacity: 0.8; }
}

@keyframes float {
    0%, 100% { transform: translate(-50%, 0); }
    50% { transform: translate(-50%, 8px); }
}

/* ============================================
   Value Proposition Strip
   ============================================ */
.value-strip {
    background: var(--warm-ivory);
    padding: 50px 40px;
    border-bottom: 1px solid var(--border-soft);
}

.value-strip-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    align-items: start;
    text-align: center;
}

.value-item {
    position: relative;
}

.value-item:not(:last-child)::after {
    content: '';
    position: absolute;
    right: -20px;
    top: 10%;
    height: 80%;
    width: 1px;
    background: var(--border-soft);
}

.value-item-title {
    font-family: var(--font-display);
    font-size: 1.1rem;
    letter-spacing: 0.1em;
    color: var(--emerald);
    margin-bottom: 6px;
    font-weight: 400;
}

.value-item-sub {
    font-size: 0.7rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-light);
}

/* ============================================
   Sections — Common
   ============================================ */
section {
    padding: 140px 60px;
}

.section-header {
    text-align: center;
    margin-bottom: 100px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.section-header h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--emerald);
    margin-bottom: 20px;
    line-height: 1.1;
}

.section-header h2 em {
    font-style: italic;
    color: var(--champagne-dark);
}

.section-header .subtitle {
    font-size: 1rem;
    color: var(--text-medium);
    line-height: 1.7;
    font-weight: 300;
    max-width: 550px;
    margin: 0 auto;
}

.section-header-left {
    text-align: left;
    max-width: 600px;
    margin-bottom: 80px;
}

.section-header-left h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 300;
    color: var(--emerald);
    margin-bottom: 20px;
    line-height: 1.1;
}

/* ============================================
   Engagement Rings — Editorial Asymmetric Grid
   ============================================ */
.collections-section {
    background: var(--pearl);
}

.engagement-layout {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}

.engagement-layout .ring-card:nth-child(1) {
    grid-row: span 2;
    aspect-ratio: 4/7;
}

.engagement-layout .ring-card:nth-child(2),
.engagement-layout .ring-card:nth-child(3) {
    aspect-ratio: 4/3.4;
}

.engagement-layout .ring-card:nth-child(4) {
    grid-column: span 2;
    aspect-ratio: 16/8;
}

.ring-card {
    position: relative;
    overflow: hidden;
    background: var(--green-mid);
    cursor: pointer;
    transition: transform 0.9s cubic-bezier(0.22, 1, 0.36, 1);
    display: block;
}

.ring-card-inner {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    transition: transform 1.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.ring-card:hover .ring-card-inner {
    transform: scale(1.06);
}

.ring-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(8, 31, 25, 0.85) 0%, rgba(8, 31, 25, 0.15) 45%, transparent 70%);
    z-index: 1;
    transition: opacity 0.6s ease;
}

.ring-card:hover::before {
    opacity: 0.9;
}

.ring-card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 44px 46px;
    z-index: 2;
    color: var(--linen-heading);
    transform: translateY(0);
    transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.ring-card-content h3 {
    font-family: var(--font-display);
    font-size: clamp(1.6rem, 2.2vw, 2.4rem);
    font-weight: 300;
    letter-spacing: 0.05em;
    margin-bottom: 8px;
    line-height: 1.1;
    color: var(--linen-heading);
}

.ring-card-content .subtitle {
    font-size: 0.75rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--linen-body);
    margin-bottom: 14px;
}

.ring-card-content .view-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.7rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--champagne);
    opacity: 0;
    transform: translateY(8px);
    transition: opacity 0.4s ease, transform 0.4s ease;
}

.ring-card:hover .view-link {
    opacity: 1;
    transform: translateY(0);
}

.view-link::after {
    content: '→';
    transition: transform 0.3s ease;
}

.ring-card:hover .view-link::after {
    transform: translateX(4px);
}

/* ============================================
   Brand Story — Split Layout
   ============================================ */
.brand-story {
    background: var(--warm-ivory);
    padding: 160px 60px;
}

.brand-story-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    gap: 100px;
    align-items: center;
}

.brand-story-image {
    aspect-ratio: 4/5;
    background: var(--green-light);
    position: relative;
    overflow: hidden;
}

.brand-story-image::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-light) 50%, var(--green-mid) 100%);
}

/* When a real photo is set inline, hide the placeholder gradient */
.brand-story-image[style*="background-image"]::before {
    display: none;
}

.brand-story-image::after {
    content: '';
    position: absolute;
    inset: 30px;
    border: 1px solid rgba(212, 195, 168, 0.25);
    pointer-events: none;
}

.brand-story-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.2rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--emerald);
    margin-bottom: 30px;
}

.brand-story-content h2 em {
    font-style: italic;
    color: var(--champagne-dark);
}

.brand-story-content p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 22px;
}

.brand-story-content .signature {
    margin-top: 40px;
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--emerald);
}

/* ============================================
   Horizontal Process Timeline — Warm Linen
   ============================================ */
.process-section {
    background: var(--primary-green);
    color: var(--linen-body);
    padding: 140px 60px;
    overflow: hidden;
}

.process-section .section-header h2 {
    color: var(--linen-heading);
}

.process-section .section-header h2 em {
    color: var(--champagne);
}

.process-section .section-header .subtitle {
    color: var(--linen-body);
}

.process-timeline {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    position: relative;
}

.process-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 6%;
    right: 6%;
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(212, 195, 168, 0.3) 5%,
        rgba(212, 195, 168, 0.3) 95%,
        transparent 100%);
    z-index: 0;
}

.process-node {
    position: relative;
    z-index: 1;
    text-align: center;
    padding-top: 0;
}

.process-number {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid rgba(212, 195, 168, 0.4);
    background: var(--primary-green);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--champagne);
    font-weight: 400;
    transition: all 0.4s ease;
}

.process-node:hover .process-number {
    background: var(--champagne);
    color: var(--emerald);
    border-color: var(--champagne);
}

.process-node h4 {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
    color: var(--linen-heading);
    min-height: 2.8em;
}

.process-node p {
    font-size: 0.78rem;
    line-height: 1.6;
    color: var(--linen-muted);
    padding: 0 6px;
}

/* ============================================
   Bands / Tennis Alternating Sections
   ============================================ */
.feature-section {
    padding: 140px 60px;
}

.feature-section.on-green {
    background: var(--green-light);
    color: var(--linen-body);
}

.feature-section.on-green .feature-content h2 {
    color: var(--linen-heading);
}

.feature-section.on-green .feature-content p {
    color: var(--linen-body);
    opacity: 1;
}

.feature-section.on-ivory {
    background: var(--warm-ivory);
}

.feature-container {
    max-width: 1500px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.feature-container.reverse {
    direction: rtl;
}

.feature-container.reverse > * {
    direction: ltr;
}

.feature-content h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.6vw, 3.4rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    margin-bottom: 30px;
    line-height: 1.1;
    color: var(--emerald);
}

.feature-content h2 em {
    font-style: italic;
    color: var(--champagne-dark);
}

.feature-section.on-green .feature-content h2 em {
    color: var(--champagne);
}

.feature-content p {
    font-size: 1.02rem;
    line-height: 1.9;
    margin-bottom: 40px;
    color: var(--text-medium);
}

.feature-image {
    aspect-ratio: 4/5;
    background: var(--green-mid);
    position: relative;
    overflow: hidden;
}

.feature-image::after {
    content: '';
    position: absolute;
    inset: 24px;
    border: 1px solid rgba(212, 195, 168, 0.2);
    pointer-events: none;
}

/* ============================================
   CTA Buttons
   ============================================ */
.cta-button, .cta-button-dark, .cta-button-primary {
    display: inline-flex;
    align-items: center;
    gap: 14px;
    padding: 17px 40px;
    font-size: 0.72rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-weight: 500;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    font-family: var(--font-body);
}

.cta-button {
    background: transparent;
    color: var(--linen-heading);
    border: 1px solid var(--champagne);
}

.cta-button:hover {
    background: var(--champagne);
    color: var(--emerald);
    gap: 18px;
}

.cta-button-dark {
    background: transparent;
    color: var(--emerald);
    border: 1px solid var(--emerald);
}

.cta-button-dark:hover {
    background: var(--emerald);
    color: var(--linen-heading);
    gap: 18px;
}

.cta-button-primary {
    background: var(--champagne);
    color: var(--emerald);
    border: 1px solid var(--champagne);
}

.cta-button-primary:hover {
    background: var(--champagne-light);
    border-color: var(--champagne-light);
    gap: 18px;
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
}

.cta-button::after,
.cta-button-dark::after,
.cta-button-primary::after {
    content: '→';
    transition: transform 0.4s ease;
}

.cta-button:hover::after,
.cta-button-dark:hover::after,
.cta-button-primary:hover::after {
    transform: translateX(4px);
}

/* ============================================
   Diamond Education / 4Cs
   ============================================ */
.diamond-education {
    background: var(--pearl);
    padding: 140px 60px;
}

.education-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2px;
    background: var(--border-soft);
    border: 1px solid var(--border-soft);
}

.education-card {
    background: var(--pearl);
    padding: 50px 36px;
    text-align: center;
    transition: background 0.4s ease;
}

.education-card:hover {
    background: var(--warm-ivory);
}

.education-card-icon {
    width: 44px;
    height: 44px;
    margin: 0 auto 24px;
    color: var(--champagne-dark);
}

.education-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    color: var(--emerald);
    margin-bottom: 14px;
    font-weight: 400;
}

.education-card p {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--text-medium);
}

/* ============================================
   Press Strip
   ============================================ */
.press-strip {
    background: var(--warm-ivory);
    padding: 60px 40px;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
}

.press-label {
    text-align: center;
    font-size: 0.68rem;
    letter-spacing: var(--tracking-xwide);
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 30px;
}

.press-logos {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
    align-items: center;
    justify-items: center;
}

.press-logo {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 400;
    color: var(--text-medium);
    opacity: 0.55;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    transition: opacity 0.3s ease;
    text-align: center;
}

.press-logo:hover {
    opacity: 1;
}

.press-logo em {
    font-style: italic;
}

/* ============================================
   Testimonials — Warm Linen
   ============================================ */
.testimonials {
    background: var(--primary-green);
    color: var(--linen-body);
    padding: 140px 60px;
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '"';
    position: absolute;
    top: 40px;
    left: 50%;
    transform: translateX(-50%);
    font-family: var(--font-display);
    font-size: 14rem;
    color: var(--champagne);
    opacity: 0.15;
    line-height: 1;
    font-style: italic;
}

.testimonial-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    position: relative;
    z-index: 1;
}

.testimonial {
    text-align: center;
    padding: 20px;
}

.testimonial-stars {
    color: var(--champagne);
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    margin-bottom: 24px;
}

.testimonial-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    line-height: 1.6;
    margin-bottom: 32px;
    color: var(--linen-heading);
    font-weight: 300;
}

.testimonial-author {
    font-size: 0.72rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--champagne);
    font-weight: 500;
}

.testimonial-role {
    font-size: 0.68rem;
    color: var(--linen-muted);
    margin-top: 4px;
    letter-spacing: 0.05em;
}

/* ============================================
   Instagram / Follow Us
   ============================================ */
.instagram-section {
    background: var(--pearl);
    padding: 120px 60px 40px;
}

.instagram-grid {
    max-width: 1500px;
    margin: 50px auto 0;
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 2px;
}

.insta-tile {
    aspect-ratio: 1;
    background: var(--green-mid);
    position: relative;
    overflow: hidden;
    cursor: pointer;
    transition: transform 0.4s ease;
}

.insta-tile:hover {
    transform: scale(0.98);
}

.insta-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-mid) 100%);
    transition: opacity 0.3s ease;
}

.insta-tile:nth-child(2)::before {
    background: linear-gradient(135deg, var(--champagne-light) 0%, var(--champagne-dark) 100%);
}

.insta-tile:nth-child(3)::before {
    background: linear-gradient(135deg, var(--green-mid) 0%, var(--green-dark) 100%);
}

.insta-tile:nth-child(4)::before {
    background: linear-gradient(135deg, var(--warm-ivory) 0%, var(--stone-grey) 100%);
}

.insta-tile:nth-child(5)::before {
    background: linear-gradient(135deg, var(--green-light) 0%, var(--green-dark) 100%);
}

.insta-tile:nth-child(6)::before {
    background: linear-gradient(135deg, var(--champagne-dark) 0%, var(--green-mid) 100%);
}

.insta-tile::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(13, 46, 36, 0);
    transition: background 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.insta-tile:hover::after {
    background: rgba(13, 46, 36, 0.5);
}

.insta-handle {
    text-align: center;
    margin-top: 40px;
    font-size: 0.85rem;
    letter-spacing: var(--tracking-wide);
}

.insta-handle a {
    color: var(--emerald);
    font-weight: 500;
    border-bottom: 1px solid var(--champagne);
    padding-bottom: 2px;
    transition: color 0.3s ease;
}

.insta-handle a:hover {
    color: var(--champagne-dark);
}

/* ============================================
   FAQ preview
   ============================================ */
.faq-preview {
    background: var(--warm-ivory);
    padding: 120px 60px;
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--border-soft);
    padding: 24px 0;
    cursor: pointer;
}

.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--emerald);
    font-weight: 400;
    transition: color 0.3s ease;
}

.faq-item:hover .faq-question {
    color: var(--champagne-dark);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    color: var(--champagne-dark);
    transition: transform 0.4s ease;
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s ease, padding 0.5s ease;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.faq-item.active .faq-answer {
    max-height: 400px;
    padding-top: 16px;
}

/* ============================================
   Contact / Consultation — Warm Linen
   ============================================ */
.consultation-section {
    background: var(--green-dark);
    color: var(--linen-body);
    padding: 160px 60px;
    position: relative;
    overflow: hidden;
}

.consultation-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at top left, rgba(212, 195, 168, 0.08) 0%, transparent 60%),
        radial-gradient(ellipse at bottom right, rgba(212, 195, 168, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.consultation-grid {
    max-width: 1300px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: start;
    position: relative;
    z-index: 1;
}

.consultation-left h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 4vw, 3.5rem);
    font-weight: 300;
    line-height: 1.1;
    margin-bottom: 30px;
    color: var(--linen-heading);
}

.consultation-left h2 em {
    font-style: italic;
    color: var(--champagne);
}

.consultation-left p {
    font-size: 1.02rem;
    line-height: 1.9;
    color: var(--linen-body);
    margin-bottom: 40px;
}

.consultation-methods {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-top: 40px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 22px 28px;
    background: rgba(244, 241, 236, 0.04);
    border: 1px solid rgba(212, 195, 168, 0.15);
    color: var(--linen-body);
    transition: all 0.4s ease;
}

.contact-method:hover {
    background: rgba(244, 241, 236, 0.08);
    border-color: rgba(212, 195, 168, 0.35);
    transform: translateX(6px);
}

.contact-method-icon {
    width: 42px;
    height: 42px;
    border: 1px solid rgba(212, 195, 168, 0.3);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1rem;
    color: var(--champagne);
}

.contact-method-text .label {
    font-size: 0.65rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--linen-muted);
    margin-bottom: 4px;
}

.contact-method-text .value {
    font-size: 0.95rem;
    color: var(--linen-heading);
}

/* Consultation form */
.consultation-form {
    background: rgba(244, 241, 236, 0.03);
    border: 1px solid rgba(212, 195, 168, 0.15);
    padding: 50px;
}

.consultation-form h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    margin-bottom: 8px;
    font-weight: 400;
    color: var(--linen-heading);
}

.consultation-form .form-sub {
    font-size: 0.85rem;
    color: var(--linen-muted);
    margin-bottom: 32px;
}

.form-row {
    margin-bottom: 22px;
}

.form-row label {
    display: block;
    font-size: 0.68rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--linen-muted);
    margin-bottom: 8px;
}

.form-row input,
.form-row textarea,
.form-row select {
    width: 100%;
    padding: 14px 16px;
    background: transparent;
    border: 1px solid rgba(212, 195, 168, 0.3);
    color: var(--linen-heading);
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: border-color 0.3s ease;
}

.form-row input:focus,
.form-row textarea:focus,
.form-row select:focus {
    outline: none;
    border-color: var(--champagne);
}

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

.form-submit {
    margin-top: 16px;
    width: 100%;
    padding: 18px;
    background: var(--champagne);
    color: var(--emerald);
    font-size: 0.72rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-weight: 500;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: var(--font-body);
}

.form-submit:hover {
    background: var(--champagne-light);
    transform: translateY(-1px);
}

/* ============================================
   Newsletter
   ============================================ */
.newsletter-section {
    background: var(--warm-ivory);
    padding: 100px 40px;
    text-align: center;
    border-bottom: 1px solid var(--border-soft);
}

.newsletter-container {
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-container h3 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 300;
    color: var(--emerald);
    margin-bottom: 16px;
    line-height: 1.2;
}

.newsletter-container h3 em {
    font-style: italic;
    color: var(--champagne-dark);
}

.newsletter-container p {
    font-size: 0.95rem;
    color: var(--text-medium);
    margin-bottom: 40px;
    line-height: 1.7;
}

.newsletter-form {
    display: flex;
    max-width: 480px;
    margin: 0 auto;
    border-bottom: 1px solid var(--emerald);
}

.newsletter-form input {
    flex: 1;
    padding: 14px 0;
    background: transparent;
    border: none;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--emerald);
    outline: none;
}

.newsletter-form input::placeholder {
    color: var(--text-light);
}

.newsletter-form button {
    padding: 14px 20px;
    background: transparent;
    border: none;
    color: var(--emerald);
    font-size: 0.7rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.3s ease;
}

.newsletter-form button:hover {
    color: var(--champagne-dark);
}

/* ============================================
   Footer — Warm Linen
   ============================================ */
.site-footer {
    background: var(--green-dark);
    color: var(--linen-body);
    padding: 100px 60px 30px;
}

.footer-grid {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.8fr 1fr 1fr 1fr;
    gap: 70px;
    margin-bottom: 80px;
}

.footer-brand .logo {
    display: block;
    margin-bottom: 20px;
    font-size: 1.5rem;
    letter-spacing: 0.35em;
    padding-left: 0;
    color: var(--linen-heading);
}

.footer-brand .logo-mark {
    padding-left: 0;
    color: var(--linen-muted);
}

.footer-brand p {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--linen-body);
    max-width: 320px;
    margin-top: 20px;
}

.footer-col h4 {
    font-size: 0.68rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--linen-muted);
    margin-bottom: 24px;
    font-weight: 500;
}

.footer-col ul {
    list-style: none;
    padding: 0;
}

.footer-col li {
    margin-bottom: 14px;
}

.footer-col a {
    color: var(--linen-body);
    font-size: 0.87rem;
    transition: color 0.3s ease;
}

.footer-col a:hover {
    color: var(--champagne);
}

.footer-bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding-top: 40px;
    border-top: 1px solid rgba(212, 195, 168, 0.12);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-bottom p {
    font-size: 0.75rem;
    color: var(--linen-whisper);
}

.footer-social {
    display: flex;
    gap: 28px;
}

.footer-social a {
    color: var(--linen-muted);
    transition: color 0.3s ease;
    font-size: 0.72rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
}

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

.footer-legal {
    display: flex;
    gap: 28px;
}

.footer-legal a {
    font-size: 0.72rem;
    color: var(--linen-whisper);
    letter-spacing: 0.08em;
    transition: color 0.3s ease;
}

.footer-legal a:hover {
    color: var(--champagne);
}

/* ============================================
   Live Chat — Warm Linen
   ============================================ */
.live-chat {
    position: fixed;
    bottom: 36px;
    right: 36px;
    background: var(--primary-green);
    color: var(--linen-heading);
    padding: 15px 26px;
    border-radius: 60px;
    cursor: pointer;
    z-index: 999;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 8px 24px rgba(13, 46, 36, 0.25);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    font-size: 0.72rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border: 1px solid rgba(212, 195, 168, 0.2);
    font-weight: 500;
}

.live-chat:hover {
    background: var(--champagne);
    color: var(--emerald);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(13, 46, 36, 0.3);
}

.chat-icon {
    font-size: 1rem;
}

/* ============================================
   Modals
   ============================================ */
.modal-overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(8, 31, 25, 0.85);
    backdrop-filter: blur(10px);
    z-index: 2000;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.4s ease;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
}

.modal-content {
    background: var(--pearl);
    max-width: 520px;
    width: 90%;
    padding: 60px 50px;
    position: relative;
    text-align: center;
    animation: modalSlideUp 0.5s cubic-bezier(0.22, 1, 0.36, 1);
    border: 1px solid rgba(212, 195, 168, 0.4);
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}

.modal-close {
    position: absolute;
    top: 22px;
    right: 28px;
    background: none;
    border: none;
    font-size: 1.6rem;
    color: var(--text-light);
    cursor: pointer;
    transition: color 0.3s ease;
    line-height: 1;
    font-weight: 300;
}

.modal-close:hover {
    color: var(--emerald);
}

.modal-content h3 {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--emerald);
    margin-bottom: 12px;
}

.modal-content .modal-subtitle {
    font-size: 0.9rem;
    color: var(--text-medium);
    margin-bottom: 36px;
    line-height: 1.6;
}

.modal-contact-option {
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 20px 24px;
    margin-bottom: 12px;
    background: var(--warm-ivory);
    color: var(--text-dark);
    transition: all 0.3s ease;
    border: 1px solid transparent;
    text-align: left;
}

.modal-contact-option:hover {
    border-color: var(--champagne);
    transform: translateX(5px);
}

.modal-contact-option .option-icon {
    font-size: 1.3rem;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border: 1px solid var(--champagne);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modal-contact-option .option-label {
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--emerald);
    margin-bottom: 4px;
}

.modal-contact-option .option-detail {
    font-size: 0.82rem;
    color: var(--text-medium);
}

/* ============================================
   Product Pages
   ============================================ */
.product-section {
    padding: 80px 60px 140px;
    max-width: 1500px;
    margin: 0 auto;
}

.product-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 100px;
    align-items: start;
    margin-top: 40px;
}

.product-image {
    aspect-ratio: 1;
    background: var(--green-mid);
    position: relative;
    overflow: hidden;
    position: sticky;
    top: 140px;
}

.product-image::after {
    content: '';
    position: absolute;
    inset: 20px;
    border: 1px solid rgba(212, 195, 168, 0.2);
    pointer-events: none;
}

.product-info .eyebrow {
    color: var(--champagne-dark);
    margin-bottom: 20px;
}

.product-info h1 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.5vw, 3.4rem);
    font-weight: 300;
    letter-spacing: 0.02em;
    color: var(--emerald);
    margin-bottom: 16px;
    line-height: 1.1;
}

.product-subtitle {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.2rem;
    color: var(--champagne-dark);
    margin-bottom: 40px;
    font-weight: 400;
}

.product-description {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 40px;
    padding-bottom: 40px;
    border-bottom: 1px solid var(--border-soft);
}

.product-details {
    margin-bottom: 40px;
}

.product-details h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    margin-bottom: 20px;
    color: var(--emerald);
}

.product-details ul {
    list-style: none;
    padding: 0;
}

.product-details li {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-soft);
    font-size: 0.9rem;
    color: var(--text-medium);
}

.product-details li strong {
    color: var(--emerald);
    font-weight: 500;
    letter-spacing: 0.05em;
}

.note-box {
    background: var(--warm-ivory);
    padding: 28px 30px;
    border-left: 2px solid var(--champagne);
    margin: 40px 0;
}

.note-box p {
    font-size: 0.92rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.note-box strong {
    color: var(--emerald);
    font-weight: 500;
}

.price-row {
    padding: 32px 0;
    border-top: 1px solid var(--border-soft);
    border-bottom: 1px solid var(--border-soft);
    margin: 40px 0;
}

.price-label {
    font-size: 0.68rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 6px;
}

.price {
    font-family: var(--font-display);
    font-size: 2.4rem;
    color: var(--emerald);
    font-weight: 300;
    letter-spacing: 0.02em;
}

.cta-button-purchase {
    display: block;
    width: 100%;
    padding: 22px;
    background: var(--emerald);
    color: var(--linen-heading);
    font-size: 0.75rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    font-weight: 500;
    font-family: var(--font-body);
    text-align: center;
}

.cta-button-purchase:hover {
    background: var(--green-dark);
}

.product-next-steps {
    margin-top: 30px;
    padding: 28px 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    border-top: 1px solid var(--border-soft);
    text-align: center;
}

.next-step .num {
    font-family: var(--font-display);
    font-size: 0.95rem;
    color: var(--champagne-dark);
    margin-bottom: 6px;
}

.next-step .label {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    color: var(--text-medium);
    line-height: 1.4;
}

.back-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    color: var(--champagne-dark);
    font-size: 0.72rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    transition: color 0.3s ease;
}

.back-link:hover {
    color: var(--emerald);
}

/* ============================================
   Content Pages (Privacy, Terms, FAQ, Size Guide)
   ============================================ */
.content-page {
    padding: 80px 60px 140px;
    max-width: 900px;
    margin: 0 auto;
}

.content-page h1 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4vw, 3.6rem);
    font-weight: 300;
    color: var(--emerald);
    margin-bottom: 20px;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.content-page .lead {
    font-size: 1.1rem;
    color: var(--text-medium);
    margin-bottom: 60px;
    line-height: 1.8;
    font-weight: 300;
}

.content-page h2 {
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 400;
    color: var(--emerald);
    margin-top: 60px;
    margin-bottom: 20px;
}

.content-page h3 {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--emerald);
    margin-top: 36px;
    margin-bottom: 14px;
    font-weight: 500;
}

.content-page p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 20px;
}

.content-page ul {
    margin-bottom: 24px;
    padding-left: 0;
    list-style: none;
}

.content-page ul li {
    position: relative;
    padding-left: 28px;
    margin-bottom: 12px;
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--text-medium);
}

.content-page ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 14px;
    width: 14px;
    height: 1px;
    background: var(--champagne-dark);
}

/* ============================================
   Size Guide Chart
   ============================================ */
.size-chart {
    width: 100%;
    border-collapse: collapse;
    margin: 40px 0;
    font-size: 0.9rem;
}

.size-chart th {
    background: var(--green-mid);
    color: var(--linen-heading);
    padding: 14px 16px;
    text-align: left;
    font-size: 0.72rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    font-weight: 500;
}

.size-chart td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border-soft);
    color: var(--text-dark);
}

.size-chart tr:nth-child(even) td {
    background: var(--warm-ivory);
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1100px) {
    .navbar { padding: 0; }
    .navbar-top { padding: 12px 30px 10px; }
    .nav-menu-primary { padding: 0 30px; }
    .nav-menu-primary.open { padding: 40px 30px 50px; gap: 20px; }
    .nav-menu-primary a { font-size: 1.1rem; }
    .announcement-bar { padding: 7px 30px; }
    .announcement-bar ul { gap: 20px; }
    .collections-toggle { left: 20px; }
    section { padding: 100px 30px; }
    .feature-section { padding: 100px 30px; }
    .process-timeline { grid-template-columns: repeat(4, 1fr); gap: 30px; row-gap: 50px; }
    .process-timeline::before { display: none; }
    .testimonial-grid { grid-template-columns: 1fr; gap: 40px; }
    .education-grid { grid-template-columns: repeat(2, 1fr); }
    .press-logos { grid-template-columns: repeat(3, 1fr); gap: 30px; }
    .instagram-grid { grid-template-columns: repeat(3, 1fr); }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
    .consultation-grid { grid-template-columns: 1fr; gap: 60px; }
    .brand-story-grid { grid-template-columns: 1fr; gap: 50px; }
    .feature-container { grid-template-columns: 1fr; gap: 50px; }
    .feature-container.reverse { direction: ltr; }
    .product-grid { grid-template-columns: 1fr; gap: 60px; }
    .product-image { position: relative; top: 0; }
    .value-strip-grid { grid-template-columns: repeat(2, 1fr); gap: 30px; }
    .value-item:not(:last-child)::after { display: none; }
}

@media (max-width: 768px) {
    .announcement-bar { font-size: 0.62rem; padding: 8px 16px; }
    .announcement-bar .divider, .announcement-bar .hide-mobile { display: none; }
    .navbar { padding: 0; }
    .navbar-top { padding: 14px 20px; }
    .nav-link-small { display: none; }
    .nav-left, .nav-right { padding-left: 0; padding-right: 0; }
    .logo { font-size: 1.3rem; letter-spacing: 0.3em; padding-left: 0.3em; }
    .logo-mark { font-size: 0.5rem; }
    .nav-menu-primary {
        grid-template-columns: 1fr;
        padding: 0 20px;
        gap: 0;
    }
    .nav-menu-primary.open {
        padding: 30px 20px 40px;
        max-height: 600px;
    }
    .nav-menu-primary li {
        padding: 16px 0;
        border-bottom: 1px solid rgba(212, 195, 168, 0.1);
    }
    .nav-menu-primary li.cat-eyebrow {
        padding: 0 0 6px;
        border-bottom: none;
    }
    .nav-menu-primary li:last-child {
        border-bottom: none;
    }
    .nav-menu-primary a {
        font-size: 1rem;
    }
    .nav-menu-primary .cat-tagline {
        font-size: 0.65rem;
        margin-top: 6px;
    }
    .announcement-bar { padding: 6px 16px; }
    .announcement-bar ul { gap: 14px; }
    .announcement-bar a { font-size: 0.56rem; }
    .collections-toggle { left: 12px; }
    .collections-toggle span { width: 18px; }

    .nav-menu {
        display: none;
        width: 100%;
        flex-direction: column;
        gap: 0;
        padding: 20px 0 10px;
        margin-top: 14px;
    }
    .nav-menu.active { display: flex; }
    .nav-menu a {
        padding: 18px 0;
        border-bottom: 1px solid rgba(212, 195, 168, 0.08);
        text-align: center;
    }
    .mobile-menu-toggle { display: flex; }

    .video-hero { height: 75vh; min-height: 500px; }

    section, .feature-section, .brand-story, .process-section, .consultation-section, .testimonials, .diamond-education, .instagram-section, .faq-preview, .newsletter-section {
        padding: 70px 24px;
    }

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

    .engagement-layout {
        grid-template-columns: 1fr;
    }
    .engagement-layout .ring-card:nth-child(1),
    .engagement-layout .ring-card:nth-child(2),
    .engagement-layout .ring-card:nth-child(3),
    .engagement-layout .ring-card:nth-child(4) {
        grid-row: auto;
        grid-column: auto;
        aspect-ratio: 4/4.5;
    }

    .ring-card-content { padding: 28px; }

    .process-timeline { grid-template-columns: 1fr; gap: 30px; }

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

    .press-logos { grid-template-columns: repeat(2, 1fr); gap: 24px; }

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

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

    .footer-bottom { flex-direction: column; text-align: center; gap: 14px; }

    .consultation-form { padding: 36px 26px; }

    .product-section { padding: 40px 20px 80px; }
    .product-next-steps { grid-template-columns: 1fr; gap: 18px; }

    .content-page { padding: 60px 24px 100px; }

    .modal-content { padding: 40px 28px; }

    .live-chat { bottom: 20px; right: 20px; padding: 12px 20px; font-size: 0.7rem; }

    .value-strip-grid { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
    .value-strip { padding: 34px 20px; }

    .testimonials::before { font-size: 8rem; top: 20px; }
}

/* ============ THREE-PATH CHOOSER ============ */
.paths-section {
    padding: 100px 60px;
    background: var(--warm-ivory);
    text-align: center;
}
.paths-section .section-header { margin-bottom: 56px; }
.paths-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
    max-width: 760px;
    margin: 0 auto;
}
.path-card {
    background: #fff;
    border: 1px solid var(--border-soft);
    padding: 52px 36px;
    display: flex;
    flex-direction: column;
    align-items: center;
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    text-decoration: none;
}
.path-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px -30px rgba(13,46,36,0.4);
    border-color: var(--champagne-dark);
}
.path-icon {
    width: 52px; height: 52px;
    margin-bottom: 26px;
    color: var(--emerald);
}
.path-card h3 {
    font-family: var(--font-display);
    font-size: 1.7rem;
    font-weight: 400;
    color: var(--emerald);
    margin-bottom: 14px;
}
.path-card p {
    font-size: 0.9rem;
    color: var(--text-medium);
    line-height: 1.7;
    margin-bottom: 26px;
    flex-grow: 1;
}
.path-link {
    font-size: 0.68rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--champagne-dark);
    font-weight: 500;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: gap 0.3s ease;
}
.path-card:hover .path-link { gap: 14px; }

@media (max-width: 880px) {
    .paths-grid { grid-template-columns: 1fr; max-width: 440px; }
    .paths-section { padding: 70px 24px; }
}

/* ============ RING CONFIGURATOR ============ */
.configurator {
    margin: 32px 0;
    border-top: 1px solid var(--border-soft);
    padding-top: 30px;
}
.configurator h3 {
    font-family: var(--font-body);
    font-size: 0.7rem;
    letter-spacing: var(--tracking-wide);
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 20px;
    font-weight: 500;
}
.config-field { margin-bottom: 20px; }
.config-field label {
    display: block;
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-medium);
    margin-bottom: 8px;
}
.config-select {
    width: 100%;
    padding: 14px 16px;
    font-family: var(--font-body);
    font-size: 0.92rem;
    color: var(--emerald);
    background: #fff;
    border: 1px solid var(--border-medium);
    border-radius: 0;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%230d2e24' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    transition: border-color 0.3s ease;
}
.config-select:hover { border-color: var(--champagne-dark); }
.config-select:focus { outline: none; border-color: var(--emerald); }
.config-select:disabled { background-color: var(--warm-ivory); color: var(--stone-grey); cursor: not-allowed; opacity: 0.6; }
.config-note {
    font-size: 0.72rem;
    color: var(--text-light);
    font-style: italic;
    margin-top: 6px;
    line-height: 1.5;
    min-height: 0;
}

/* ============ JOURNEY SPLIT SECTION ============ */
.journey-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: stretch;
    min-height: 560px;
    background: var(--warm-ivory);
}
.journey-text {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 90px 8% 90px 10%;
}
.journey-text .eyebrow { color: var(--champagne-dark); margin-bottom: 18px; }
.journey-text h2 {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 3.6vw, 3.4rem);
    font-weight: 300;
    color: var(--emerald);
    line-height: 1.1;
    margin-bottom: 26px;
}
.journey-text h2 em { font-style: italic; color: var(--champagne-dark); }
.journey-text p {
    font-size: 1rem;
    line-height: 1.9;
    color: var(--text-medium);
    margin-bottom: 36px;
    max-width: 460px;
}
.journey-text .cta-button-dark { align-self: flex-start; }
.journey-image {
    background-size: cover;
    background-position: center;
    min-height: 400px;
}
@media (max-width: 900px) {
    .journey-split { grid-template-columns: 1fr; }
    .journey-text { padding: 64px 24px 48px; order: 2; }
    .journey-image { order: 1; min-height: 340px; }
    .journey-text p { max-width: none; }
}

/* ============ CONFIG COMMITMENT LINE ============ */
.config-commitment {
    margin: 0 0 4px;
    padding: 18px 20px;
    background: var(--warm-ivory);
    border-left: 2px solid var(--champagne-dark);
}
.config-commitment p {
    font-size: 0.78rem;
    line-height: 1.65;
    color: var(--text-medium);
    margin: 0;
}
.config-commitment strong {
    color: var(--emerald);
    font-weight: 500;
}

/* Tighten configurator text a touch */
.configurator .config-field label {
    font-size: 0.66rem;
}
.config-select {
    font-size: 0.86rem;
    padding: 12px 16px;
}

/* Make the whole configure → commitment → price read as one connected block */
.configurator { margin-bottom: 18px; }
.price-row { margin-top: 18px; }
