@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,900;1,400&family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Crimson+Pro:wght@300;400;500&display=swap');

:root {
  --cream-light:   #fef9f3;
  --cream-base:    #f5ede0;
  --cream-medium:  #ede3d6;
  --cream-dark:    #dfd4c2;
  --green-primary: #2d7f3e;
  --green-light:   #4db858;
  --green-dark:    #1f5a2c;
  --brown-dark:    #4a3728;
  --brown-light:   #7a6254;
  --accent-dark:   #2c1810;
  --gold:          #b8943c;
  --gold-light:    #d4ae55;
  --sidebar-w:     280px;
  --nav-h:         68px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Cormorant Garamond', serif; background: var(--cream-base); color: var(--brown-dark); overflow-x: hidden; min-height: 100vh; }
body::before { content: ''; position: fixed; inset: 0; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3CfeColorMatrix type='saturate' values='0'/%3E%3C/filter%3E%3Crect width='300' height='300' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E"); pointer-events: none; z-index: 900; opacity: 0.5; }
img { max-width: 100%; display: block; }
a { text-decoration: none; }

/* TOP BAR */
.top-bar { background: var(--green-primary); color: white; text-align: center; padding: 9px 16px; font-size: 12px; letter-spacing: 1.8px; font-family: 'Crimson Pro', serif; line-height: 1.4; position: relative; z-index: 200; }

/* DESKTOP NAV */
nav { background: var(--cream-light); border-bottom: 2px solid var(--cream-dark); padding: 0 40px; height: var(--nav-h); display: flex; align-items: center; justify-content: space-between; position: sticky; top: 0; z-index: 200; box-shadow: 0 2px 20px rgba(74,55,40,.08); }
.nav-brand { display: flex; flex-direction: column; line-height: 1; gap: 3px; }
.nav-brand .logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 900; color: var(--green-primary); }
.nav-brand .tagline { font-size: 10px; letter-spacing: 2.5px; color: var(--brown-light); text-transform: uppercase; }
.nav-links { display: flex; gap: 0; align-items: center; }
.nav-links a { display: block; padding: 0 18px; height: var(--nav-h); line-height: var(--nav-h); font-family: 'Crimson Pro', serif; font-size: 13px; letter-spacing: 2px; text-transform: uppercase; color: var(--brown-dark); transition: color .3s; border-bottom: 3px solid transparent; white-space: nowrap; }
.nav-links a:hover, .nav-links a.active { color: var(--green-primary); border-bottom-color: var(--green-primary); }

/* HAMBURGER */
.hamburger { display: none; flex-direction: column; justify-content: center; gap: 5px; width: 42px; height: 42px; background: none; border: none; cursor: pointer; padding: 6px; border-radius: 4px; transition: background .2s; flex-shrink: 0; }
.hamburger:hover { background: var(--cream-medium); }
.hamburger span { display: block; height: 2px; background: var(--brown-dark); border-radius: 2px; transition: all .35s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* MOBILE OVERLAY */
.mob-overlay { display: none; position: fixed; inset: 0; background: rgba(20,12,8,.55); z-index: 300; opacity: 0; transition: opacity .35s ease; }
.mob-overlay.visible { opacity: 1; }

/* MOBILE LEFT SIDEBAR */
.mob-sidebar { position: fixed; top: 0; left: 0; width: var(--sidebar-w); height: 100%; background: var(--accent-dark); z-index: 400; transform: translateX(-100%); transition: transform .38s cubic-bezier(.4,0,.2,1); overflow-y: auto; display: flex; flex-direction: column; }
.mob-sidebar.open { transform: translateX(0); }
.mob-sidebar-head { padding: 36px 28px 28px; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; }
.mob-sidebar-head .sb-logo { font-family: 'Playfair Display', serif; font-size: 24px; font-weight: 900; color: white; margin-bottom: 4px; }
.mob-sidebar-head .sb-tagline { font-size: 10px; letter-spacing: 2px; text-transform: uppercase; color: var(--gold-light); }
.mob-sidebar-close { position: absolute; top: 16px; right: 16px; background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.15); color: white; width: 34px; height: 34px; border-radius: 50%; font-size: 18px; cursor: pointer; display: flex; align-items: center; justify-content: center; transition: background .2s; }
.mob-sidebar-close:hover { background: rgba(255,255,255,.2); }
.mob-sidebar-nav { flex: 1; padding: 16px 0; display: flex; flex-direction: column; align-items: stretch; height: auto; justify-content: flex-start; background: transparent; border-bottom: none; box-shadow: none; position: static; }
.mob-sidebar-nav a { display: flex; align-items: center; gap: 14px; padding: 15px 28px; font-family: 'Crimson Pro', serif; font-size: 16px; letter-spacing: 2px; text-transform: uppercase; color: rgba(255,255,255,.72); border-left: 3px solid transparent; transition: all .25s; width: 100%; }
.mob-sidebar-nav a:hover, .mob-sidebar-nav a.active { color: white; border-left-color: var(--gold-light); background: rgba(255,255,255,.06); }
.mob-sidebar-nav a .sb-icon { font-size: 17px; width: 22px; text-align: center; opacity: .7; }
.mob-sidebar-nav a.active .sb-icon { opacity: 1; }
.mob-sidebar-footer { padding: 22px 28px; border-top: 1px solid rgba(255,255,255,.1); font-size: 11px; color: rgba(255,255,255,.3); letter-spacing: 1px; }

/* HERO */
.hero { position: relative; height: 88vh; min-height: 440px; overflow: hidden; display: flex; align-items: center; justify-content: center; }
.hero-slider { position: absolute; inset: 0; }
.hero-slide { position: absolute; inset: 0; background-size: cover; background-position: center; opacity: 0; transition: opacity 1.2s ease; }
.hero-slide.active { opacity: 1; }
.hero-overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(44,24,16,.65) 0%, rgba(31,90,44,.3) 100%); }
.hero-content { position: relative; z-index: 2; text-align: center; color: white; padding: 0 24px; animation: heroFadeUp .9s ease both; }
@keyframes heroFadeUp { from { transform: translateY(28px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.hero-content .eyebrow { font-family: 'Crimson Pro', serif; letter-spacing: 5px; font-size: 12px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 16px; }
.hero-content h1 { font-family: 'Playfair Display', serif; font-size: clamp(32px, 7vw, 72px); font-weight: 900; line-height: 1.1; margin-bottom: 18px; text-shadow: 0 2px 20px rgba(0,0,0,.3); }
.hero-content p { font-size: clamp(15px, 2.5vw, 20px); font-weight: 300; max-width: 540px; margin: 0 auto 30px; opacity: .9; line-height: 1.7; }
.hero-btns { display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }

/* BUTTONS */
.btn-primary { display: inline-block; padding: 13px 36px; background: var(--green-primary); color: white; font-family: 'Crimson Pro', serif; font-size: 14px; letter-spacing: 2.5px; text-transform: uppercase; border: 2px solid var(--green-primary); transition: all .3s; white-space: nowrap; }
.btn-primary:hover { background: transparent; color: white; border-color: white; }
.btn-outline { display: inline-block; padding: 13px 36px; border: 2px solid rgba(255,255,255,.6); color: white; font-family: 'Crimson Pro', serif; font-size: 14px; letter-spacing: 2.5px; text-transform: uppercase; transition: all .3s; white-space: nowrap; }
.btn-outline:hover { background: rgba(255,255,255,.15); border-color: white; }
.btn-green { display: inline-block; padding: 13px 36px; border: 2px solid var(--green-primary); color: var(--green-primary); font-family: 'Crimson Pro', serif; font-size: 14px; letter-spacing: 2.5px; text-transform: uppercase; transition: all .3s; }
.btn-green:hover { background: var(--green-primary); color: white; }

/* SECTION HEADERS */
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .eyebrow { font-family: 'Crimson Pro', serif; letter-spacing: 4px; font-size: 11px; text-transform: uppercase; color: var(--green-primary); margin-bottom: 12px; }
.section-header h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4.5vw, 46px); color: var(--accent-dark); line-height: 1.2; margin-bottom: 14px; }
.section-header p { font-size: 17px; color: var(--brown-light); font-weight: 300; max-width: 560px; margin: 0 auto; line-height: 1.75; }
.divider { width: 56px; height: 2px; background: var(--gold); margin: 18px auto; }

/* FEATURES */
.features-section { padding: 64px 40px; background: var(--cream-light); border-top: 1px solid var(--cream-dark); border-bottom: 1px solid var(--cream-dark); }
.features-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr)); gap: 36px; max-width: 1100px; margin: 0 auto; text-align: center; }
.feature-item .icon { font-size: 34px; margin-bottom: 14px; display: block; }
.feature-item h4 { font-family: 'Playfair Display', serif; font-size: 17px; color: var(--accent-dark); margin-bottom: 8px; }
.feature-item p { font-size: 14px; color: var(--brown-light); line-height: 1.7; font-weight: 300; }

/* PRODUCTS GRID */
.products-section { padding: 72px 40px; }
.products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(290px, 1fr)); gap: 28px; max-width: 1300px; margin: 0 auto; }
.product-card { background: var(--cream-light); border: 1px solid var(--cream-dark); overflow: hidden; transition: all .4s ease; cursor: pointer; }
.product-card:hover { transform: translateY(-5px); box-shadow: 0 18px 48px rgba(74,55,40,.14); border-color: var(--gold); }
.product-card-img { position: relative; height: 260px; overflow: hidden; }
.product-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.product-card:hover .product-card-img img { transform: scale(1.08); }
.product-card-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(44,24,16,.5) 0%, transparent 55%); opacity: 0; transition: opacity .4s; display: flex; align-items: flex-end; justify-content: center; padding-bottom: 22px; }
.product-card:hover .product-card-overlay { opacity: 1; }
.product-card-overlay span { color: white; font-family: 'Crimson Pro', serif; letter-spacing: 3px; font-size: 12px; text-transform: uppercase; border-bottom: 1px solid rgba(255,255,255,.6); padding-bottom: 2px; }
.product-card-body { padding: 22px 22px 16px; }
.product-card-body h3 { font-family: 'Playfair Display', serif; font-size: 21px; color: var(--accent-dark); margin-bottom: 10px; line-height: 1.3; }
.product-card-body p { font-size: 15px; color: var(--brown-light); line-height: 1.7; font-weight: 300; }
.product-card-footer { display: flex; justify-content: space-between; align-items: center; padding: 14px 22px; border-top: 1px solid var(--cream-dark); background: var(--cream-base); }
.product-count { font-size: 12px; color: var(--brown-light); letter-spacing: 1px; }
.view-btn { padding: 8px 18px; background: var(--green-primary); color: white; font-family: 'Crimson Pro', serif; font-size: 12px; letter-spacing: 2px; text-transform: uppercase; transition: background .3s; }
.view-btn:hover { background: var(--green-dark); }

/* PRODUCT PAGE HERO */
.product-page-hero { background: linear-gradient(135deg, var(--accent-dark) 0%, var(--green-dark) 100%); padding: 72px 24px; text-align: center; color: white; }
.product-page-hero h1 { font-family: 'Playfair Display', serif; font-size: clamp(28px, 6vw, 60px); margin-bottom: 14px; font-style: italic; }
.product-page-hero p { font-size: 18px; opacity: .85; max-width: 580px; margin: 0 auto; font-weight: 300; line-height: 1.7; }

/* GALLERY */
.gallery-section { padding: 56px 32px; max-width: 1400px; margin: 0 auto; }
.gallery-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr)); gap: 10px; }
.gallery-item { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; background: var(--cream-medium); }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; display: block; }
.gallery-item:hover img { transform: scale(1.07); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(44,24,16,.35); opacity: 0; transition: opacity .3s; display: flex; align-items: center; justify-content: center; }
.gallery-item:hover .gallery-item-overlay { opacity: 1; }
.gallery-item-overlay svg { width: 38px; height: 38px; fill: white; }

/* LIGHTBOX */
.lightbox { display: none; position: fixed; inset: 0; z-index: 9999; background: rgba(8,6,4,.96); align-items: center; justify-content: center; }
.lightbox.open { display: flex; }
.lightbox-inner { position: relative; max-width: 94vw; max-height: 90vh; display: flex; align-items: center; justify-content: center; }
.lightbox-img { max-width: 92vw; max-height: 85vh; object-fit: contain; border: 1px solid rgba(255,255,255,.1); animation: lbIn .3s ease; }
@keyframes lbIn { from { transform: scale(.92); opacity: 0; } to { transform: scale(1); opacity: 1; } }
.lightbox-close { position: fixed; top: 18px; right: 22px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); color: white; width: 44px; height: 44px; border-radius: 50%; font-size: 22px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10000; transition: background .2s; }
.lightbox-close:hover { background: rgba(255,255,255,.25); }
.lightbox-nav { position: fixed; top: 50%; transform: translateY(-50%); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); color: white; width: 50px; height: 50px; border-radius: 50%; font-size: 24px; cursor: pointer; display: flex; align-items: center; justify-content: center; z-index: 10000; transition: background .2s; }
.lightbox-nav:hover { background: rgba(255,255,255,.25); }
.lightbox-prev { left: 14px; }
.lightbox-next { right: 14px; }
.lightbox-counter { position: fixed; bottom: 20px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.55); font-family: 'Crimson Pro', serif; letter-spacing: 2px; font-size: 13px; white-space: nowrap; }

/* ABOUT STRIP */
.about-strip { padding: 72px 40px; display: grid; grid-template-columns: 1fr 1fr; gap: 72px; max-width: 1200px; margin: 0 auto; align-items: center; }
.about-strip img { width: 100%; height: 360px; object-fit: cover; border: 4px solid var(--cream-dark); }
.about-text .eyebrow { font-family: 'Crimson Pro', serif; letter-spacing: 4px; font-size: 11px; text-transform: uppercase; color: var(--green-primary); margin-bottom: 12px; }
.about-text h2 { font-family: 'Playfair Display', serif; font-size: clamp(26px, 4vw, 38px); color: var(--accent-dark); line-height: 1.25; margin-bottom: 18px; }
.about-text p { font-size: 16px; color: var(--brown-light); line-height: 1.85; font-weight: 300; margin-bottom: 12px; }

/* BREADCRUMB */
.breadcrumb { padding: 13px 32px; background: var(--cream-medium); border-bottom: 1px solid var(--cream-dark); font-size: 13px; letter-spacing: .8px; }
.breadcrumb a { color: var(--green-primary); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--brown-light); margin: 0 8px; }

/* FOOTER */
footer { background: var(--accent-dark); color: rgba(255,255,255,.65); padding: 48px 32px 28px; text-align: center; }
footer .footer-logo { font-family: 'Playfair Display', serif; font-size: 30px; font-weight: 900; color: white; margin-bottom: 6px; }
footer .footer-tagline { font-size: 11px; letter-spacing: 3px; text-transform: uppercase; color: var(--gold-light); margin-bottom: 28px; }
footer .footer-links { margin-bottom: 28px; display: flex; flex-wrap: wrap; justify-content: center; gap: 6px 24px; }
footer .footer-links a { color: rgba(255,255,255,.55); font-size: 13px; letter-spacing: 2px; text-transform: uppercase; transition: color .3s; }
footer .footer-links a:hover { color: var(--gold-light); }
footer .footer-copy { font-size: 12px; opacity: .4; border-top: 1px solid rgba(255,255,255,.1); padding-top: 18px; margin-top: 8px; }

/* LIST ITEMS */
.product-card-body ul li, section ul li { font-size: 15px; color: var(--brown-dark); line-height: 1.6; padding: 6px 0; border-bottom: 1px dotted var(--cream-dark); font-family: 'Cormorant Garamond', serif; }
section ul li:last-child { border-bottom: none; }

/* TABLET */
@media (max-width: 1024px) {
  nav { padding: 0 24px; }
  .nav-links a { padding: 0 13px; font-size: 12px; }
  .about-strip { gap: 40px; }
}

/* MOBILE */
@media (max-width: 768px) {
  .hamburger { display: flex; }
  .nav-links { display: none; }
  nav { padding: 0 16px; }
  .top-bar { font-size: 10px; letter-spacing: 1px; padding: 8px 12px; }
  .hero { height: 75vh; min-height: 380px; }
  .hero-btns { flex-direction: column; align-items: center; }
  .btn-primary, .btn-outline { width: 100%; max-width: 260px; text-align: center; }
  .features-section { padding: 48px 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); gap: 24px; }
  .products-section { padding: 48px 16px; }
  .products-grid { grid-template-columns: 1fr; gap: 20px; }
  .gallery-section { padding: 36px 16px; }
  .gallery-grid { grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 7px; }
  .about-strip { grid-template-columns: 1fr; gap: 28px; padding: 48px 20px; }
  .about-strip img { height: 240px; }
  .breadcrumb { padding: 11px 16px; font-size: 12px; }
  .product-page-hero { padding: 52px 20px; }
  .product-page-hero p { font-size: 16px; }
  .product-info-grid { grid-template-columns: 1fr !important; gap: 28px !important; }
  .lightbox-prev { left: 8px; }
  .lightbox-next { right: 8px; }
  .lightbox-nav { width: 40px; height: 40px; font-size: 20px; }
  footer { padding: 40px 20px 24px; }
  .timeline { padding: 0 16px !important; }
  .timeline::before { left: 22px !important; }
  .timeline-step { grid-template-columns: 46px 1fr !important; margin-bottom: 48px !important; }
  .timeline-step .step-center { order: 1 !important; padding-top: 16px !important; }
  .timeline-step .step-card { order: 2 !important; grid-column: 2 !important; }
  .timeline-step .step-empty { display: none !important; }
  .timeline-step:nth-child(even) .step-center { order: 1 !important; }
  .timeline-step:nth-child(even) .step-card { order: 2 !important; grid-column: 2 !important; }
  .timeline-step:nth-child(odd) .step-card::after,
  .timeline-step:nth-child(even) .step-card::after { left: -14px !important; right: auto !important; border: 7px solid transparent !important; border-right-color: var(--cream-dark) !important; border-left-color: transparent !important; top: 22px !important; }
  .flow-section { padding: 48px 16px !important; }
  .flow-arrow { display: none !important; }
  .flow-node { min-width: 80px !important; padding: 12px 6px !important; }
  .flow-circle { width: 52px !important; height: 52px !important; font-size: 20px !important; }
  .flow-label { font-size: 10px !important; letter-spacing: 0 !important; }
  .values-grid { grid-template-columns: repeat(2, 1fr) !important; gap: 16px !important; }
  .value-card { padding: 24px 16px !important; }
  .cta-strip { padding: 52px 20px !important; }
  .cta-strip h2 { font-size: 28px !important; }
  .cta-strip a { display: block !important; margin: 6px auto !important; max-width: 260px; text-align: center; }
}

@media (max-width: 480px) {
  .features-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); gap: 5px; }
  .values-grid { grid-template-columns: 1fr !important; }
  .flow-row { flex-wrap: wrap !important; justify-content: center !important; }
  .flow-node { min-width: 70px !important; }
}
