/* ============================================
   MERA OVASI — Premium Design System
   Cormorant Garamond + DM Sans
   ============================================ */

:root {
    --c-forest: #1B2B1B;
    --c-pine: #2D3B2D;
    --c-pine-light: #3D4F3D;
    --c-sage: #4A5A3A;
    --c-moss: #5A6B4A;
    --c-gold: #C5B964;
    --c-gold-light: #D4CA7E;
    --c-gold-dark: #A89B4A;
    --c-gold-pale: #E8E2C8;
    --c-cream: #F8F5EC;
    --c-ivory: #FDFBF5;
    --c-white: #FFFFFF;
    --c-text: #2D3B2D;
    --c-text-soft: #5A6B5A;
    --c-text-muted: #8A9B8A;

    --f-display: 'Cormorant Garamond', 'Georgia', serif;
    --f-body: 'DM Sans', 'Helvetica Neue', sans-serif;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
    --transition: all 0.35s var(--ease-out);

    --shadow-sm: 0 2px 12px rgba(27, 43, 27, 0.06);
    --shadow-md: 0 8px 30px rgba(27, 43, 27, 0.1);
    --shadow-lg: 0 16px 50px rgba(27, 43, 27, 0.14);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* ============================================
   RESET
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--f-body);
    color: var(--c-text);
    background: var(--c-ivory);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul { list-style: none; }

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

/* ============================================
   TYPOGRAPHY
   ============================================ */

h1, h2, h3, h4 {
    font-family: var(--f-display);
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-pine);
}

h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.3rem, 2.5vw, 1.8rem); }
h4 { font-size: clamp(1.1rem, 2vw, 1.4rem); }

.section-label {
    display: inline-block;
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--c-gold-dark);
    margin-bottom: 16px;
}

.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 72px;
}

.section-header p {
    margin-top: 20px;
    color: var(--c-text-soft);
    font-size: 1.05rem;
    line-height: 1.8;
}

.section-cta {
    text-align: center;
    margin-top: 56px;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 15px 36px;
    border-radius: 50px;
    font-family: var(--f-body);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.8px;
    cursor: pointer;
    transition: all 0.4s var(--ease-out);
    border: 1.5px solid transparent;
    text-transform: uppercase;
}

.btn-gold {
    background: var(--c-gold);
    color: var(--c-pine);
    border-color: var(--c-gold);
}

.btn-gold:hover {
    background: var(--c-gold-light);
    border-color: var(--c-gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(197, 185, 100, 0.3);
}

.btn-ghost {
    background: transparent;
    color: var(--c-white);
    border-color: rgba(255,255,255,0.35);
}

.btn-ghost:hover {
    background: rgba(255,255,255,0.1);
    border-color: rgba(255,255,255,0.6);
    transform: translateY(-2px);
}

.btn-primary {
    background: var(--c-pine);
    color: var(--c-white);
    border-color: var(--c-pine);
}

.btn-primary:hover {
    background: var(--c-pine-light);
    border-color: var(--c-pine-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline {
    background: transparent;
    color: var(--c-white);
    border-color: var(--c-white);
}

.btn-outline:hover {
    background: var(--c-white);
    color: var(--c-pine);
    transform: translateY(-2px);
}

.btn-secondary {
    background: transparent;
    color: var(--c-pine);
    border-color: var(--c-pine);
}

.btn-secondary:hover {
    background: var(--c-pine);
    color: var(--c-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 18px 48px;
    font-size: 0.9rem;
}

/* ============================================
   NAVIGATION
   ============================================ */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 24px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(253, 251, 245, 0.96);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(45, 59, 45, 0.08);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 14px;
    color: var(--c-white);
    z-index: 1001;
}

.nav.scrolled .nav-logo {
    color: var(--c-pine);
}

.nav-logo-img {
    height: 34px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: filter 0.4s var(--ease-out);
}

.nav.scrolled .nav-logo-img {
    filter: none;
}

/* Legacy inline SVG support for inner pages */
.nav-logo-icon {
    width: 48px;
    height: 32px;
}

.nav-logo-text {
    display: flex;
    flex-direction: column;
}

.nav-brand {
    font-family: var(--f-display);
    font-size: 1.3rem;
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: 0.5px;
}

.nav-tagline {
    font-size: 0.6rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    opacity: 0.7;
    font-weight: 300;
}

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

.nav-menu a {
    font-size: 0.8rem;
    font-weight: 400;
    color: rgba(255,255,255,0.75);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--c-gold);
    transition: width 0.4s var(--ease-out);
}

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

.nav-menu a:hover,
.nav-menu a.active {
    color: var(--c-white);
}

.nav.scrolled .nav-menu a {
    color: var(--c-text-muted);
}

.nav.scrolled .nav-menu a:hover,
.nav.scrolled .nav-menu a.active {
    color: var(--c-pine);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
    z-index: 1001;
}

.nav-toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--c-white);
    transition: var(--transition);
    border-radius: 1px;
}

.nav.scrolled .nav-toggle span {
    background: var(--c-pine);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(74, 90, 58, 0.3) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(197, 185, 100, 0.08) 0%, transparent 40%),
        radial-gradient(ellipse at 50% 50%, rgba(45, 59, 45, 0.1) 0%, transparent 70%),
        linear-gradient(160deg, #1B2B1B 0%, #2D3B2D 40%, #1B2B1B 100%);
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('https://i.ytimg.com/vi/8DMq93SqCms/maxresdefault.jpg') center/cover no-repeat;
    opacity: 0.12;
    pointer-events: none;
}

.hero-content {
    text-align: center;
    color: var(--c-white);
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: 0 24px;
}

.hero-emblem {
    height: 100px;
    width: auto;
    margin: 0 auto 40px;
    filter: brightness(0) invert(1) opacity(0.85);
    animation: heroReveal 1.2s var(--ease-out) 0.2s both;
}

.hero-title {
    font-size: clamp(3.5rem, 9vw, 7rem);
    font-weight: 300;
    font-style: italic;
    color: var(--c-white);
    letter-spacing: 2px;
    line-height: 1;
    margin-bottom: 24px;
    animation: heroReveal 1.2s var(--ease-out) 0.4s both;
}

.hero-line {
    width: 60px;
    height: 1.5px;
    background: var(--c-gold);
    margin: 0 auto 24px;
    animation: lineGrow 1s var(--ease-out) 0.7s both;
}

.hero-tagline {
    font-family: var(--f-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 6px;
    text-transform: uppercase;
    color: var(--c-gold-light);
    margin-bottom: 28px;
    animation: heroReveal 1.2s var(--ease-out) 0.9s both;
}

.hero-desc {
    font-size: 1rem;
    line-height: 1.9;
    color: rgba(255,255,255,0.6);
    max-width: 520px;
    margin: 0 auto 44px;
    font-weight: 300;
    animation: heroReveal 1.2s var(--ease-out) 1.1s both;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
    animation: heroReveal 1.2s var(--ease-out) 1.3s both;
}

.hero-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 40px 40px;
    z-index: 2;
    animation: heroReveal 1.2s var(--ease-out) 1.6s both;
}

.hero-location {
    font-size: 0.65rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.hero-scroll-indicator {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.hero-scroll-indicator span {
    font-size: 0.6rem;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

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

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

@keyframes lineGrow {
    from { width: 0; opacity: 0; }
    to { width: 60px; opacity: 1; }
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.3; transform: scaleY(0.6); transform-origin: top; }
}

/* ============================================
   FEATURES
   ============================================ */

.features {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--c-ivory);
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: var(--c-gold-pale);
    border: 1px solid var(--c-gold-pale);
    border-radius: var(--radius-lg);
    overflow: hidden;
}

.feature-card {
    text-align: center;
    padding: 48px 28px;
    background: var(--c-ivory);
    transition: var(--transition);
}

.feature-card:hover {
    background: var(--c-white);
}

.feature-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 24px;
    color: var(--c-gold-dark);
}

.feature-icon svg {
    width: 100%;
    height: 100%;
}

.feature-card h3 {
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.feature-card p {
    font-size: 0.85rem;
    color: var(--c-text-soft);
    line-height: 1.7;
}

/* ============================================
   STORY PREVIEW
   ============================================ */

.story-preview {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--c-cream);
}

.story-grid {
    display: grid;
    grid-template-columns: 1.1fr 1fr;
    gap: 72px;
    align-items: center;
}

.story-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.story-image img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    transition: transform 0.8s var(--ease-out);
}

.story-image:hover img {
    transform: scale(1.03);
}

.story-image-badge {
    position: absolute;
    bottom: 20px;
    left: 20px;
    background: rgba(27, 43, 27, 0.8);
    color: var(--c-white);
    padding: 8px 20px;
    border-radius: 50px;
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    backdrop-filter: blur(8px);
}

.story-text .section-label {
    display: block;
}

.story-text h2 {
    margin-bottom: 28px;
    font-weight: 500;
}

.story-text p {
    color: var(--c-text-soft);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.85;
}

.story-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 20px;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-pine);
    border-bottom: 1.5px solid var(--c-gold);
    padding-bottom: 4px;
}

.story-link span {
    transition: transform 0.3s var(--ease-out);
}

.story-link:hover span {
    transform: translateX(4px);
}

.story-link:hover {
    color: var(--c-sage);
}

/* ============================================
   PRODUCT PREVIEW
   ============================================ */

.product-preview {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--c-ivory);
}

.product-showcase {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 72px;
    align-items: center;
    background: var(--c-white);
    border-radius: var(--radius-xl);
    padding: 64px;
    box-shadow: var(--shadow-sm);
    border: 1px solid rgba(197, 185, 100, 0.15);
}

.product-visual {
    display: flex;
    justify-content: center;
    align-items: center;
}

.bottle-svg {
    width: 180px;
    height: 360px;
    filter: drop-shadow(0 20px 40px rgba(45, 59, 45, 0.12));
}

.product-details .product-tag {
    display: inline-block;
    background: var(--c-gold);
    color: var(--c-pine);
    padding: 5px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.product-details h3 {
    font-size: 2.2rem;
    font-weight: 500;
    margin-bottom: 20px;
}

.product-details > p {
    color: var(--c-text-soft);
    font-size: 1rem;
    margin-bottom: 28px;
    line-height: 1.85;
}

.product-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 36px;
}

.product-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    color: var(--c-text-soft);
}

.product-features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-gold-dark);
    flex-shrink: 0;
}

/* Alias for inner pages */
.product-card-large {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    background: var(--c-white);
    border-radius: var(--radius-xl);
    padding: 60px;
    box-shadow: var(--shadow-sm);
}

.product-image-wrapper {
    display: flex;
    justify-content: center;
    align-items: center;
}

.product-info .product-tag {
    display: inline-block;
    background: var(--c-gold);
    color: var(--c-pine);
    padding: 6px 16px;
    border-radius: 50px;
    font-size: 0.65rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 16px;
}

.product-info h3 {
    font-size: 2rem;
    margin-bottom: 16px;
}

.product-info p {
    color: var(--c-text-soft);
    font-size: 1.05rem;
    margin-bottom: 24px;
}

/* ============================================
   BENEFITS
   ============================================ */

.benefits {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--c-forest);
    color: var(--c-white);
}

.benefits .section-label {
    color: var(--c-gold-light);
}

.benefits .section-header h2 {
    color: var(--c-white);
}

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

.benefit-item {
    padding: 36px;
    border-radius: var(--radius-lg);
    border: 1px solid rgba(197, 185, 100, 0.1);
    transition: all 0.4s var(--ease-out);
}

.benefit-item:hover {
    border-color: rgba(197, 185, 100, 0.3);
    background: rgba(197, 185, 100, 0.04);
    transform: translateY(-3px);
}

.benefit-number {
    font-family: var(--f-display);
    font-size: 2.5rem;
    font-weight: 300;
    font-style: italic;
    color: var(--c-gold);
    margin-bottom: 16px;
    opacity: 0.5;
    line-height: 1;
}

.benefit-item h4 {
    color: var(--c-white);
    font-size: 1.15rem;
    font-weight: 500;
    margin-bottom: 12px;
}

.benefit-item p {
    color: rgba(255,255,255,0.55);
    font-size: 0.85rem;
    line-height: 1.75;
}

/* ============================================
   VIDEO PREVIEW
   ============================================ */

.video-preview {
    padding: clamp(80px, 12vw, 140px) 0;
    background: var(--c-cream);
}

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

.video-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: all 0.4s var(--ease-out);
    cursor: pointer;
    background: var(--c-white);
    box-shadow: var(--shadow-sm);
}

.video-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-thumbnail {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
}

.video-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.video-card:hover .video-thumbnail img {
    transform: scale(1.05);
}

.video-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 52px;
    height: 52px;
    opacity: 0.8;
    transition: all 0.4s var(--ease-out);
}

.video-card:hover .video-play {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1.1);
}

.video-duration {
    position: absolute;
    bottom: 10px;
    right: 10px;
    background: rgba(0,0,0,0.75);
    color: var(--c-white);
    padding: 3px 10px;
    border-radius: 4px;
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.5px;
}

.video-card h4,
.video-card-body h4 {
    padding: 18px 22px 6px;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.4;
}

.video-meta {
    padding: 0 22px 18px;
    font-size: 0.75rem;
    color: var(--c-text-muted);
    letter-spacing: 0.3px;
}

.video-card-body {
    padding: 0;
}

.video-card-body h4 {
    padding: 18px 22px 6px;
}

.video-card-body .video-meta {
    padding: 0 22px 18px;
}

/* ============================================
   CTA
   ============================================ */

.cta {
    padding: clamp(100px, 14vw, 180px) 0;
    background:
        radial-gradient(ellipse at 50% 50%, rgba(74, 90, 58, 0.2) 0%, transparent 60%),
        linear-gradient(160deg, #1B2B1B 0%, #2D3B2D 50%, #1B2B1B 100%);
    text-align: center;
    position: relative;
}

.cta-content {
    position: relative;
    z-index: 2;
}

.cta-emblem {
    height: 56px;
    width: auto;
    margin: 0 auto 32px;
    filter: brightness(0) invert(1);
    opacity: 0.25;
}

.cta-content h2 {
    color: var(--c-white);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 20px;
}

.cta-content p {
    color: rgba(255,255,255,0.55);
    font-size: 1.05rem;
    margin-bottom: 40px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.8;
}

.cta .btn-gold:hover {
    box-shadow: 0 8px 32px rgba(197, 185, 100, 0.35);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    padding: 80px 0 40px;
    background: #141E14;
    color: rgba(255,255,255,0.55);
}

.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

/* Legacy footer-grid support */
.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.footer-logo {
    height: 40px;
    width: auto;
    filter: brightness(0) invert(1);
    opacity: 0.5;
    margin-bottom: 16px;
}

.footer-brand h3 {
    font-family: var(--f-display);
    color: var(--c-white);
    font-size: 1.5rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.footer-brand-tag,
.footer-brand > p:first-of-type {
    color: var(--c-gold);
    font-size: 0.7rem;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer-location {
    font-size: 0.85rem;
    line-height: 1.7;
}

.footer-links h4,
.footer-contact h4 {
    color: var(--c-white);
    font-family: var(--f-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.footer-links li {
    margin-bottom: 12px;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.45);
}

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

.footer-contact p {
    font-size: 0.85rem;
    margin-bottom: 6px;
}

.footer-bottom {
    padding-top: 32px;
    text-align: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.25);
    letter-spacing: 0.5px;
}

/* ============================================
   INNER PAGES: PAGE HEADER
   ============================================ */

.page-header {
    padding: 180px 0 80px;
    background:
        radial-gradient(ellipse at 30% 50%, rgba(197, 185, 100, 0.06) 0%, transparent 60%),
        linear-gradient(160deg, #1B2B1B 0%, #2D3B2D 50%, #1B2B1B 100%);
    text-align: center;
    position: relative;
}

.page-header .section-label {
    color: var(--c-gold-light);
}

.page-header h1 {
    color: var(--c-white);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 400;
    font-style: italic;
    margin-bottom: 16px;
}

.page-header p {
    color: rgba(255,255,255,0.5);
    font-size: 1.05rem;
    max-width: 560px;
    margin: 0 auto;
    line-height: 1.8;
}

/* ============================================
   INNER PAGES: CONTENT SECTIONS
   ============================================ */

.content-section {
    padding: 80px 0;
}

.content-section:nth-child(even) {
    background: var(--c-cream);
}

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

.content-grid.reverse {
    direction: rtl;
}

.content-grid.reverse > * {
    direction: ltr;
}

.content-image {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

.content-image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.content-image:hover img {
    transform: scale(1.03);
}

.content-text h2 {
    margin-bottom: 24px;
    font-weight: 500;
}

.content-text h3 {
    margin-bottom: 16px;
    margin-top: 36px;
    font-weight: 500;
}

.content-text p {
    color: var(--c-text-soft);
    margin-bottom: 16px;
    font-size: 1rem;
    line-height: 1.85;
}

.content-text ul {
    margin: 16px 0;
}

.content-text ul li {
    padding: 8px 0 8px 24px;
    position: relative;
    color: var(--c-text-soft);
    font-size: 0.95rem;
}

.content-text ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 16px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--c-gold-dark);
}

/* ============================================
   COMPONENTS: VIDEO PAGE
   ============================================ */

.video-page-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.video-page-card {
    border-radius: var(--radius-lg);
    overflow: hidden;
    background: var(--c-white);
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
}

.video-page-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.video-page-card .video-embed {
    aspect-ratio: 16/9;
}

.video-page-card iframe {
    width: 100%;
    height: 100%;
    border: none;
}

.video-page-card .video-info {
    padding: 22px 24px;
}

.video-page-card .video-info h4 {
    font-size: 1rem;
    margin-bottom: 8px;
    line-height: 1.4;
    padding: 0;
}

.video-page-card .video-info p {
    font-size: 0.8rem;
    color: var(--c-text-muted);
}

/* ============================================
   COMPONENTS: PRODUCT CARDS
   ============================================ */

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

.product-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
    border: 1px solid rgba(197, 185, 100, 0.1);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(197, 185, 100, 0.25);
}

.product-card-image {
    height: 280px;
    background: var(--c-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px;
}

.product-card-image .bottle-svg {
    width: 120px;
    height: 240px;
}

.product-card-body {
    padding: 28px;
}

.product-card-body h3 {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px;
}

.product-card-body .product-volume {
    font-size: 0.75rem;
    color: var(--c-gold-dark);
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    margin-bottom: 14px;
}

.product-card-body p {
    font-size: 0.85rem;
    color: var(--c-text-soft);
    line-height: 1.7;
}

/* ============================================
   COMPONENTS: TIMELINE
   ============================================ */

.timeline {
    max-width: 700px;
    margin: 0 auto;
    position: relative;
    padding-left: 44px;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 15px;
    top: 0;
    bottom: 0;
    width: 1px;
    background: var(--c-gold);
    opacity: 0.25;
}

.timeline-item {
    position: relative;
    padding-bottom: 44px;
}

.timeline-item::before {
    content: '';
    position: absolute;
    left: -36px;
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--c-gold-dark);
    border: 3px solid var(--c-ivory);
    z-index: 1;
}

.timeline-item h4 {
    font-weight: 500;
    margin-bottom: 10px;
}

.timeline-item p {
    color: var(--c-text-soft);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ============================================
   COMPONENTS: CONTACT
   ============================================ */

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
}

.contact-info-item {
    display: flex;
    gap: 18px;
    margin-bottom: 36px;
}

.contact-info-icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--c-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    color: var(--c-gold-dark);
}

.contact-info-icon svg {
    width: 20px;
    height: 20px;
}

.contact-info-item h4 {
    font-size: 1rem;
    font-weight: 500;
    margin-bottom: 4px;
}

.contact-info-item p {
    color: var(--c-text-soft);
    font-size: 0.85rem;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--c-text);
}

.form-group input,
.form-group textarea {
    padding: 15px 20px;
    border: 1.5px solid var(--c-gold-pale);
    border-radius: var(--radius);
    font-family: var(--f-body);
    font-size: 0.9rem;
    color: var(--c-text);
    background: var(--c-white);
    transition: var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group textarea:focus {
    border-color: var(--c-gold-dark);
    box-shadow: 0 0 0 4px rgba(197, 185, 100, 0.1);
}

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

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

/* ============================================
   COMPONENTS: TOPIC CARDS
   ============================================ */

.topic-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 28px;
}

.topic-card {
    background: var(--c-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-sm);
    transition: all 0.4s var(--ease-out);
    border-left: 3px solid var(--c-gold);
}

.topic-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.topic-card h3 {
    margin-bottom: 14px;
    font-size: 1.25rem;
    font-weight: 500;
}

.topic-card p {
    color: var(--c-text-soft);
    font-size: 0.9rem;
    line-height: 1.8;
}

/* ============================================
   ANIMATIONS
   ============================================ */

.fade-up,
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.fade-up.visible,
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* Stagger children */
.reveal.visible:nth-child(2) { transition-delay: 0.1s; }
.reveal.visible:nth-child(3) { transition-delay: 0.2s; }
.reveal.visible:nth-child(4) { transition-delay: 0.3s; }
.reveal.visible:nth-child(5) { transition-delay: 0.4s; }
.reveal.visible:nth-child(6) { transition-delay: 0.5s; }

/* ============================================
   RESPONSIVE: TABLET (968px)
   ============================================ */

@media (max-width: 968px) {
    .nav-toggle {
        display: flex;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(27, 43, 27, 0.97);
        backdrop-filter: blur(16px);
        flex-direction: column;
        justify-content: center;
        gap: 20px;
        opacity: 0;
        pointer-events: none;
        transition: opacity 0.4s var(--ease-out);
    }

    .nav-menu.open {
        opacity: 1;
        pointer-events: all;
    }

    .nav-menu a {
        font-size: 1.2rem !important;
        color: rgba(255,255,255,0.75) !important;
        letter-spacing: 3px;
    }

    .nav-menu a:hover,
    .nav-menu a.active {
        color: var(--c-gold-light) !important;
    }

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

    .story-grid,
    .content-grid,
    .content-grid.reverse {
        grid-template-columns: 1fr;
        direction: ltr;
        gap: 40px;
    }

    .product-showcase,
    .product-card-large {
        grid-template-columns: 1fr;
        padding: 40px;
    }

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

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

    .footer-top,
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 36px;
    }

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

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

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

    .hero-bottom {
        padding: 0 24px 32px;
    }

    .hero-location {
        display: none;
    }
}

/* ============================================
   RESPONSIVE: MOBILE (640px)
   ============================================ */

@media (max-width: 640px) {
    .features-grid {
        grid-template-columns: 1fr;
        gap: 0;
    }

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

    .video-grid,
    .video-page-grid {
        grid-template-columns: 1fr;
    }

    .footer-top,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

    .hero-title {
        font-size: clamp(2.8rem, 12vw, 5rem);
    }

    .hero-emblem {
        height: 70px;
    }

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

    .btn {
        width: 100%;
        justify-content: center;
        max-width: 300px;
    }

    .product-showcase,
    .product-card-large {
        padding: 28px;
    }

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

    .form-row {
        grid-template-columns: 1fr;
    }

    .page-header {
        padding: 140px 0 60px;
    }

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