@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;500;600;700&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============ DESIGN TOKENS ============ */
:root {
    --c-bg: #FAF7F2;
    --c-bg-alt: #F3EDE4;
    --c-bg-card: #FFFFFF;
    --c-dark: #1A1210;
    --c-brown: #3B2A1A;
    --c-mid: #6B5744;
    --c-body: #5E4E3C;
    --c-muted: #9A8A78;
    --c-border: rgba(59, 42, 26, 0.08);
    --c-gold: #C4912E;
    --c-gold-light: #D4A84A;
    --c-gold-dark: #A57520;
    --c-tan: #CCAA7A;
    --c-cream: #FFF8EE;
    --shadow-sm: 0 1px 3px rgba(26, 18, 16, 0.06);
    --shadow-md: 0 4px 20px rgba(26, 18, 16, 0.08);
    --shadow-lg: 0 12px 40px rgba(26, 18, 16, 0.12);
    --shadow-xl: 0 24px 60px rgba(26, 18, 16, 0.16);
    --r: 12px;
    --r-lg: 20px;
    --ease: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
}

/* ============ RESET & BASE ============ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    color: var(--c-brown);
    background: var(--c-bg);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    font-size: 16px;
}

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

h1, h2, h3 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 600;
    line-height: 1.15;
    color: var(--c-dark);
    letter-spacing: -0.01em;
}

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

/* ============ SCROLL ANIMATIONS ============ */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
    will-change: opacity, transform;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
/* Stagger children */
.reveal-group .reveal:nth-child(1) { transition-delay: 0s; }
.reveal-group .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-group .reveal:nth-child(3) { transition-delay: 0.2s; }
.reveal-group .reveal:nth-child(4) { transition-delay: 0.3s; }
.reveal-group .reveal:nth-child(5) { transition-delay: 0.4s; }

/* ============ NAVBAR ============ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 247, 242, 0.65);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid var(--c-border);
    transition: background 0.4s, box-shadow 0.4s;
}
.navbar.scrolled {
    background: rgba(250, 247, 242, 0.95);
    box-shadow: 0 1px 12px rgba(26, 18, 16, 0.06);
}
.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
}
.logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
    z-index: 1001;
}
.main-logo { height: 38px; }

/* Desktop nav */
.nav-links {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.nav-links a {
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--c-mid);
    transition: color 0.25s;
    position: relative;
    padding: 4px 0;
}
.nav-links a::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -2px;
    width: 0;
    height: 2px;
    background: var(--c-gold);
    border-radius: 1px;
    transition: width 0.3s var(--ease);
}
.nav-links a:hover,
.nav-links a.is-active { color: var(--c-dark); }
.nav-links a:hover::after,
.nav-links a.is-active::after { width: 100%; }

.nav-cta {
    background: var(--c-dark) !important;
    color: #fff !important;
    padding: 10px 22px !important;
    border-radius: 100px;
    font-weight: 600 !important;
    font-size: 0.8rem !important;
    letter-spacing: 0.02em;
    transition: all 0.3s !important;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover {
    background: var(--c-gold) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.hamburger {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    width: 44px;
    height: 44px;
    position: relative;
    z-index: 1001;
    -webkit-tap-highlight-color: transparent;
}
.hamburger span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--c-dark);
    border-radius: 2px;
    position: absolute;
    left: 11px;
    transition: all 0.35s var(--ease);
}
.hamburger span:nth-child(1) { top: 16px; }
.hamburger span:nth-child(2) { top: 22px; }
.hamburger span:nth-child(3) { top: 28px; }
.hamburger.open span:nth-child(1) { top: 22px; transform: rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { top: 22px; transform: rotate(-45deg); }

/* Mobile nav overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: var(--c-bg);
    z-index: 999;
    padding: 100px 24px 40px;
    opacity: 0;
    transform: translateY(-8px);
    transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
    overflow-y: auto;
}
.mobile-nav.open {
    opacity: 1;
    transform: translateY(0);
}
.mobile-nav a {
    display: block;
    text-decoration: none;
    font-family: 'Playfair Display', serif;
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--c-dark);
    padding: 16px 0;
    border-bottom: 1px solid var(--c-border);
    transition: color 0.2s;
}
.mobile-nav a:last-child { border-bottom: none; }
.mobile-nav a:active { color: var(--c-gold); }

/* ============ HERO ============ */
.hero {
    position: relative;
    min-height: 100svh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding-top: 64px;
}
.hero-bg {
    position: absolute;
    inset: 0;
    background: url('/images/lifestyle-hero.jpg') center/cover no-repeat;
    z-index: 0;
}
.hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(26, 18, 16, 0.72) 0%,
        rgba(26, 18, 16, 0.45) 50%,
        rgba(26, 18, 16, 0.55) 100%
    );
}
.hero .container { position: relative; z-index: 1; }
.hero-body {
    max-width: 620px;
    color: #fff;
    padding: 3rem 0;
}
.hero-tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-tan);
    margin-bottom: 1.5rem;
    padding: 8px 16px;
    border: 1px solid rgba(204, 170, 122, 0.35);
    border-radius: 100px;
    backdrop-filter: blur(8px);
}
.hero-body h1 {
    font-size: clamp(2.4rem, 6.5vw, 4.2rem);
    color: #fff;
    margin-bottom: 1.25rem;
    line-height: 1.1;
}
.hero-body p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    font-weight: 300;
    line-height: 1.75;
    color: rgba(255,255,255,0.85);
    max-width: 480px;
    margin-bottom: 2rem;
}
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}
.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    color: rgba(255,255,255,0.4);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}
.hero-scroll-bar {
    width: 1px;
    height: 32px;
    background: rgba(255,255,255,0.3);
    position: relative;
    overflow: hidden;
}
.hero-scroll-bar::after {
    content: '';
    position: absolute;
    top: -100%;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(255,255,255,0.8);
    animation: scrollDown 2s ease-in-out infinite;
}
@keyframes scrollDown {
    0% { top: -100%; }
    50% { top: 100%; }
    100% { top: 100%; }
}

/* ============ PAGE HERO (inner pages) ============ */
.page-hero {
    padding: 7rem 0 3.5rem;
    margin-top: 64px;
    color: #fff;
    position: relative;
    overflow: hidden;
    background-size: cover;
    background-position: center;
}
.page-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,18,16,0.7), rgba(26,18,16,0.5));
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero--products { background-image: url('/images/bg-camp.jpg'); }
.page-hero--about { background-image: url('/images/bg-forest.jpg'); }
.page-hero--gallery { background-image: url('/images/bg-lake.jpg'); }
.page-hero h1 {
    font-size: clamp(2rem, 5vw, 3.2rem);
    color: #fff;
    margin-bottom: 0.75rem;
    max-width: 600px;
}
.page-hero p {
    font-size: clamp(0.95rem, 2vw, 1.1rem);
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    line-height: 1.7;
    font-weight: 300;
}

/* ============ BUTTONS ============ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    font-family: 'Inter', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.03em;
    text-decoration: none;
    border: none;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    min-height: 48px;
    -webkit-tap-highlight-color: transparent;
    background: var(--c-gold);
    color: #fff;
}
.btn:hover {
    background: var(--c-gold-dark);
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(196, 145, 46, 0.35);
}
.btn:active { transform: translateY(0); }

.btn--outline {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255,255,255,0.4);
}
.btn--outline:hover {
    background: rgba(255,255,255,0.12);
    border-color: rgba(255,255,255,0.7);
    box-shadow: none;
}

.btn--dark {
    background: transparent;
    color: var(--c-dark);
    border: 1.5px solid var(--c-dark);
}
.btn--dark:hover {
    background: var(--c-dark);
    color: #fff;
    box-shadow: var(--shadow-md);
}

.btn--sm { padding: 10px 24px; font-size: 0.8rem; min-height: 40px; }

/* ============ SECTION HELPERS ============ */
.section { padding: 5rem 0; }
.section--alt { background: var(--c-bg-alt); }

.section-top {
    text-align: center;
    max-width: 560px;
    margin: 0 auto 3rem;
}
.section-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 0.75rem;
    display: block;
}
.section-heading {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    margin-bottom: 0.75rem;
}
.section-desc {
    font-size: 1rem;
    color: var(--c-muted);
    line-height: 1.7;
}
.section-cta { text-align: center; margin-top: 2.5rem; }

/* ============ STATS ============ */
.stats {
    background: var(--c-dark);
    color: #fff;
}
.stats-row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    text-align: center;
}
.stats-item {
    padding: 2rem 1rem;
    position: relative;
}
.stats-item + .stats-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 25%;
    height: 50%;
    width: 1px;
    background: rgba(255,255,255,0.08);
}
.stats-item strong {
    display: block;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--c-tan);
    margin-bottom: 2px;
}
.stats-item span {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    opacity: 0.45;
    font-weight: 500;
}

/* ============ PRODUCT CARDS (Homepage) ============ */
.products-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
}
.pcard {
    background: var(--c-bg-card);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.pcard:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}
.pcard-img {
    aspect-ratio: 1 / 1;
    padding: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(145deg, #fff, var(--c-bg));
    overflow: hidden;
}
.pcard-img img {
    width: 85%;
    height: 85%;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}
.pcard:hover .pcard-img img { transform: scale(1.06); }
.pcard-body { padding: 16px 20px 20px; }
.pcard-body h3 {
    font-size: 1.1rem;
    margin-bottom: 2px;
}
.pcard-body p {
    font-size: 0.8rem;
    color: var(--c-muted);
    font-weight: 500;
}

/* ============ LIFESTYLE BREAK ============ */
.lifestyle-break {
    position: relative;
    padding: 6rem 0;
    overflow: hidden;
    text-align: center;
    color: #fff;
}
.lifestyle-break-bg {
    position: absolute;
    inset: 0;
    background: url('/images/bg-mtn.jpg') center/cover no-repeat;
}
.lifestyle-break-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(26,18,16,0.6), rgba(26,18,16,0.45));
}
.lifestyle-break .container { position: relative; z-index: 1; }
.lifestyle-break h2 {
    font-size: clamp(1.75rem, 4vw, 2.8rem);
    color: #fff;
    margin-bottom: 0.75rem;
}
.lifestyle-break p {
    font-size: 1.05rem;
    font-weight: 300;
    color: rgba(255,255,255,0.8);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

/* ============ FEATURES ============ */
.features-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.fcard {
    background: var(--c-bg-card);
    padding: 2rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.fcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.fcard-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--c-bg-alt), var(--c-bg));
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
    color: var(--c-gold);
}
.fcard h3 { font-size: 1.15rem; margin-bottom: 0.5rem; }
.fcard p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.65; }

/* ============ TESTIMONIALS ============ */
.testimonials-wrap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.tcard {
    background: var(--c-bg-card);
    padding: 2rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    display: flex;
    flex-direction: column;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.tcard:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.tcard-stars {
    color: var(--c-gold);
    font-size: 0.85rem;
    letter-spacing: 3px;
    margin-bottom: 1rem;
}
.tcard-quote {
    font-size: 0.95rem;
    line-height: 1.75;
    color: var(--c-body);
    font-style: italic;
    flex: 1;
    margin-bottom: 1.25rem;
}
.tcard-who {
    display: flex;
    align-items: center;
    gap: 10px;
    padding-top: 1rem;
    border-top: 1px solid var(--c-border);
}
.tcard-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--c-gold);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
    flex-shrink: 0;
}
.tcard-who strong { display: block; font-size: 0.85rem; }
.tcard-who span { font-size: 0.75rem; color: var(--c-muted); }

/* ============ STORY (homepage) ============ */
.split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.split-text .section-label { text-align: left; }
.split-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    margin-bottom: 1rem;
}
.split-text p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.split-img {
    border-radius: var(--r-lg);
    overflow: hidden;
}
.split-img img {
    width: 100%;
    transition: transform 0.6s var(--ease);
}
.split-img:hover img { transform: scale(1.03); }

.specs-list {
    list-style: none;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 8px;
    margin: 1.5rem 0;
}
.specs-list li {
    font-size: 0.9rem;
    color: var(--c-body);
    display: flex;
    align-items: center;
    gap: 8px;
}
.specs-list li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--c-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* ============ CTA BANNER ============ */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(145deg, var(--c-dark), #2C1E12);
    text-align: center;
    color: #fff;
}
.cta-banner h2 {
    font-size: clamp(1.75rem, 4vw, 2.6rem);
    color: #fff;
    margin-bottom: 0.75rem;
}
.cta-banner p {
    font-size: 1rem;
    color: rgba(255,255,255,0.7);
    max-width: 480px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
.cta-banner .hero-actions { justify-content: center; }

/* ============ CONTACT ============ */
.contact-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}
.contact-left h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}
.contact-left p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.contact-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    color: var(--c-body);
    padding: 10px 16px;
    background: var(--c-bg);
    border-radius: var(--r);
}
.contact-email-icon {
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--c-bg-alt);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    flex-shrink: 0;
}
.form-card {
    background: var(--c-bg-card);
    padding: 2rem;
    border-radius: var(--r-lg);
    box-shadow: var(--shadow-md);
    border: 1px solid var(--c-border);
}
.field { margin-bottom: 1.25rem; }
.field label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 6px;
    color: var(--c-dark);
    letter-spacing: 0.02em;
}
.field input, .field textarea {
    width: 100%;
    padding: 13px 14px;
    background: var(--c-bg);
    border: 1.5px solid var(--c-border);
    border-radius: var(--r);
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--c-dark);
    transition: border-color 0.25s, box-shadow 0.25s, background 0.25s;
    min-height: 48px;
}
.field input::placeholder, .field textarea::placeholder { color: var(--c-muted); }
.field input:focus, .field textarea:focus {
    border-color: var(--c-gold);
    outline: none;
    background: #fff;
    box-shadow: 0 0 0 3px rgba(196, 145, 46, 0.12);
}
.field textarea { resize: vertical; min-height: 120px; }
.form-submit {
    width: 100%;
    padding: 15px;
    border-radius: var(--r);
}
.result-msg {
    margin-top: 1rem;
    font-weight: 600;
    font-size: 0.9rem;
    padding: 12px 14px;
    border-radius: var(--r);
    display: none;
}
.result-msg.success { display: block; color: #1B6B3D; background: #D8F3DC; }
.result-msg.error { display: block; color: #922; background: #FDE2E4; }

/* ============ FOOTER ============ */
.site-footer {
    padding: 4rem 0 1.5rem;
    background: var(--c-dark);
    color: rgba(255,255,255,0.6);
}
.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}
.footer-brand p {
    font-size: 0.85rem;
    line-height: 1.65;
    margin-top: 1rem;
    opacity: 0.5;
    max-width: 260px;
}
.footer-logo { height: 36px; filter: invert(1); }
.footer-cols {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.footer-col h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.7rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: rgba(255,255,255,0.3);
    margin-bottom: 1rem;
}
.footer-col a {
    display: block;
    text-decoration: none;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.55);
    margin-bottom: 0.5rem;
    transition: color 0.25s;
}
.footer-col a:hover { color: var(--c-tan); }
.footer-bar {
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: 0.75rem;
    opacity: 0.35;
    text-align: center;
}

/* ============ PRODUCTS PAGE ============ */
.product-showcase { padding: 4rem 0; }
.product-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    background: var(--c-bg-card);
    border-radius: var(--r-lg);
    overflow: hidden;
    border: 1px solid var(--c-border);
    margin-bottom: 2.5rem;
}
.product-row--flip .product-row-img { order: 2; }
.product-row--flip .product-row-info { order: 1; }
.product-row-img {
    aspect-ratio: 1 / 0.85;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2.5rem;
    background: linear-gradient(145deg, #fff, var(--c-bg));
}
.product-row-img img {
    max-width: 90%;
    max-height: 320px;
    object-fit: contain;
    transition: transform 0.5s var(--ease);
}
.product-row:hover .product-row-img img { transform: scale(1.04); }
.product-row-info { padding: 2.5rem; }
.product-row-info h3 { font-size: 1.75rem; margin-bottom: 0.25rem; }
.product-row-tag {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--c-gold);
    margin-bottom: 1.25rem;
    display: block;
}
.product-row-desc {
    font-size: 0.95rem;
    color: var(--c-body);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}
.product-row-specs {
    list-style: none;
    margin-bottom: 1.5rem;
}
.product-row-specs li {
    font-size: 0.85rem;
    color: var(--c-body);
    padding: 7px 0;
    border-bottom: 1px solid var(--c-border);
    display: flex;
    align-items: center;
    gap: 8px;
}
.product-row-specs li::before {
    content: '';
    width: 5px;
    height: 5px;
    background: var(--c-gold);
    border-radius: 50%;
    flex-shrink: 0;
}

/* Engraving section */
.engrave-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.engrave-img { border-radius: var(--r-lg); overflow: hidden; }
.engrave-img img { width: 100%; }
.engrave-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    margin-bottom: 1rem;
}
.engrave-text > p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}
.engrave-list { list-style: none; margin-bottom: 2rem; }
.engrave-list li {
    padding: 1rem 0;
    border-bottom: 1px solid var(--c-border);
}
.engrave-list li strong {
    display: block;
    font-size: 0.9rem;
    color: var(--c-dark);
    margin-bottom: 2px;
}
.engrave-list li span {
    font-size: 0.85rem;
    color: var(--c-muted);
    line-height: 1.6;
}

/* Spec numbers */
.spec-nums {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}
.spec-num-card {
    text-align: center;
    padding: 2rem 1rem;
    background: var(--c-bg-card);
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.spec-num-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}
.spec-big {
    font-family: 'Playfair Display', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 0.4rem;
}
.spec-num-card h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.5rem;
}
.spec-num-card p {
    font-size: 0.8rem;
    color: var(--c-muted);
    line-height: 1.5;
}

/* ============ ABOUT PAGE ============ */
.about-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}
.about-text h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.4rem);
    margin-bottom: 1.25rem;
}
.about-text p {
    font-size: 1rem;
    color: var(--c-body);
    line-height: 1.75;
    margin-bottom: 1rem;
}
.about-img { border-radius: var(--r-lg); overflow: hidden; }
.about-img img { width: 100%; }

/* Values */
.values-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.vcard {
    background: var(--c-bg-card);
    padding: 2.5rem 2rem;
    border-radius: var(--r-lg);
    border: 1px solid var(--c-border);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.vcard:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.vcard-num {
    font-family: 'Playfair Display', serif;
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--c-gold);
    line-height: 1;
    margin-bottom: 0.75rem;
}
.vcard h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.vcard p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.65; }

/* Timeline */
.timeline-wrap {
    max-width: 640px;
    margin: 0 auto;
    position: relative;
    padding-left: 36px;
}
.timeline-wrap::before {
    content: '';
    position: absolute;
    left: 6px;
    top: 8px;
    bottom: 8px;
    width: 2px;
    background: linear-gradient(to bottom, var(--c-gold), var(--c-bg-alt));
    border-radius: 1px;
}
.tl-item { position: relative; padding-bottom: 2.5rem; }
.tl-item:last-child { padding-bottom: 0; }
.tl-dot {
    position: absolute;
    left: -36px;
    top: 5px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    background: var(--c-gold);
    border: 3px solid var(--c-bg);
    box-shadow: 0 0 0 2px var(--c-gold);
}
.tl-year {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--c-gold);
    margin-bottom: 0.4rem;
    display: block;
}
.tl-item h3 { font-size: 1.2rem; margin-bottom: 0.35rem; }
.tl-item p { font-size: 0.9rem; color: var(--c-muted); line-height: 1.65; }

/* ============ GALLERY PAGE ============ */
.gallery-masonry {
    columns: 3;
    column-gap: 16px;
    padding: 3rem 0 5rem;
}
.gal-item {
    break-inside: avoid;
    margin-bottom: 16px;
    border-radius: var(--r-lg);
    overflow: hidden;
    position: relative;
    cursor: pointer;
}
.gal-item img {
    width: 100%;
    display: block;
    transition: transform 0.6s var(--ease);
}
.gal-item:hover img { transform: scale(1.04); }
.gal-cap {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    background: linear-gradient(0deg, rgba(0,0,0,0.55) 0%, transparent 50%);
    color: #fff;
    opacity: 0;
    transition: opacity 0.35s;
}
.gal-item:hover .gal-cap { opacity: 1; }
.gal-cap span {
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}

/* ============ RESPONSIVE ============ */

/* Tablet */
@media (max-width: 992px) {
    .split, .contact-split, .about-split, .engrave-split, .product-row {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .product-row--flip .product-row-img { order: 0; }
    .product-row--flip .product-row-info { order: 0; }
    .features-row, .testimonials-wrap, .values-row {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .stats-row { grid-template-columns: repeat(2, 1fr); }
    .stats-item + .stats-item::before { display: none; }
    .spec-nums { grid-template-columns: repeat(2, 1fr); }
    .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
    .gallery-masonry { columns: 2; }
    .specs-list { grid-template-columns: 1fr; }
}

/* Mobile */
@media (max-width: 768px) {
    .container { padding: 0 16px; }

    /* Nav */
    .nav-links { display: none; }
    .hamburger { display: block; }
    .mobile-nav { display: block; pointer-events: none; }
    .mobile-nav.open { pointer-events: auto; }

    /* Hero */
    .hero { min-height: 100svh; }
    .hero-body { padding: 2rem 0; }
    .hero-body h1 { font-size: 2.2rem; }
    .hero-body p { font-size: 0.95rem; }
    .hero-scroll { display: none; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }

    /* Page hero */
    .page-hero { padding: 5rem 0 2.5rem; }
    .page-hero h1 { font-size: 1.8rem; }

    /* Sections */
    .section { padding: 3.5rem 0; }
    .section-heading { font-size: 1.6rem; }
    .section-top { margin-bottom: 2rem; }

    /* Products grid */
    .products-grid { grid-template-columns: 1fr; gap: 12px; }
    .pcard-img { aspect-ratio: 4 / 3; padding: 20px; }

    /* Stats */
    .stats-row { grid-template-columns: 1fr 1fr; }
    .stats-item { padding: 1.5rem 0.75rem; }

    /* Cards */
    .fcard, .tcard, .vcard { padding: 1.5rem; }

    /* Lifestyle */
    .lifestyle-break { padding: 4rem 0; }
    .lifestyle-break h2 { font-size: 1.6rem; }

    /* Product page rows */
    .product-row-img { aspect-ratio: 4 / 3; padding: 1.5rem; }
    .product-row-info { padding: 1.5rem; }
    .product-row-info h3 { font-size: 1.4rem; }

    /* Engrave */
    .engrave-split { grid-template-columns: 1fr; gap: 2rem; }

    /* Specs */
    .spec-nums { grid-template-columns: 1fr 1fr; gap: 12px; }
    .spec-num-card { padding: 1.5rem 0.75rem; }
    .spec-big { font-size: 2rem; }

    /* About */
    .about-split { grid-template-columns: 1fr; gap: 2rem; }

    /* Footer */
    .footer-cols { grid-template-columns: 1fr 1fr; }
    .footer-grid { grid-template-columns: 1fr; }

    /* Contact */
    .form-card { padding: 1.5rem; }

    /* Gallery */
    .gallery-masonry { columns: 2; column-gap: 10px; padding: 2rem 0 4rem; }
    .gal-item { margin-bottom: 10px; border-radius: var(--r); }

    /* CTA */
    .cta-banner { padding: 3.5rem 0; }
    .cta-banner h2 { font-size: 1.6rem; }
}

/* Small phones */
@media (max-width: 420px) {
    .hero-body h1 { font-size: 1.9rem; }
    .gallery-masonry { columns: 1; }
    .stats-row { grid-template-columns: 1fr; }
    .stats-item + .stats-item { border-top: 1px solid rgba(255,255,255,0.04); }
    .footer-cols { grid-template-columns: 1fr; }
    .spec-nums { grid-template-columns: 1fr; }
}
