*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --gold: #A6862D; /* Darker gold for accessibility on light backgrounds */
  --gold-light: #C8A84B; 
  --gold-dark: #7A601A;
  --dark: #FFFFFF; /* Pure white main background */
  --dark-2: #F9F9F7; /* Very light section background */
  --dark-3: #F0EFEA; /* Card/hover background */
  --mid: #E5E4DE;
  --text-primary: #1A1916; /* Near black text */
  --text-secondary: #4A4840; /* Charcoal secondary text */
  --text-muted: #8A8880; /* Gray muted text */
  --border: rgba(166, 134, 45, 0.18);
  --border-strong: rgba(166, 134, 45, 0.4);
}
html { scroll-behavior: smooth; }
body { background: var(--dark); color: var(--text-primary); font-family: 'Barlow', sans-serif; font-weight: 400; line-height: 1.7; overflow-x: hidden; }

nav { position: fixed; top: 0; left: 0; right: 0; z-index: 100; display: flex; align-items: center; justify-content: space-between; padding: 1.2rem 3rem; background: rgba(255, 255, 255, 0.9); backdrop-filter: blur(12px); border-bottom: 0.5px solid var(--border); }
.nav-brand { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); letter-spacing: 0.04em; text-decoration: none; }
.nav-brand span { color: var(--text-secondary); font-weight: 400; font-style: italic; }
.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a { color: var(--text-secondary); text-decoration: none; font-size: 0.78rem; letter-spacing: 0.12em; text-transform: uppercase; transition: color 0.2s; font-weight: 500; }
.nav-links a:hover { color: var(--gold); }

.hero { min-height: 100vh; display: flex; align-items: center; position: relative; padding: 8rem 3rem 5rem; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: radial-gradient(ellipse 60% 60% at 70% 50%, rgba(166,134,45,0.08) 0%, transparent 70%), radial-gradient(ellipse 40% 80% at 20% 80%, rgba(166,134,45,0.05) 0%, transparent 60%), var(--dark); }
.hero-line { position: absolute; top: 0; left: 3rem; bottom: 0; width: 0.5px; background: linear-gradient(to bottom, transparent, var(--border-strong) 30%, var(--border-strong) 70%, transparent); }
.hero-content { position: relative; max-width: 700px; padding-left: 2.5rem; }
.hero-eyebrow { display: inline-block; font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1.5rem; border-left: 2.5px solid var(--gold); padding-left: 1rem; font-weight: 600; }
.hero h1 { font-family: 'Cormorant Garamond', serif; font-size: clamp(3rem, 7vw, 5.5rem); font-weight: 500; line-height: 1.08; margin-bottom: 1.8rem; letter-spacing: -0.01em; color: var(--text-primary); }
.hero h1 em { color: var(--gold); font-style: italic; }
.hero-desc { font-size: 1rem; color: var(--text-secondary); max-width: 480px; margin-bottom: 2.8rem; line-height: 1.8; }
.hero-cta { display: flex; gap: 1.2rem; align-items: center; flex-wrap: wrap; }
.btn-primary { background: var(--gold); color: #FFF; padding: 0.85rem 2.2rem; font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: none; cursor: pointer; text-decoration: none; transition: background 0.2s, transform 0.15s; display: inline-block; }
.btn-primary:hover { background: var(--gold-light); transform: translateY(-1px); }
.btn-outline { background: transparent; color: var(--gold); padding: 0.85rem 2.2rem; font-family: 'Barlow', sans-serif; font-size: 0.78rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; border: 1.5px solid var(--gold); cursor: pointer; text-decoration: none; display: inline-block; transition: background 0.2s, color 0.2s; }
.btn-outline:hover { background: var(--gold); color: #FFF; }
.hero-stats { position: absolute; right: 3rem; bottom: 4rem; display: flex; flex-direction: column; gap: 2rem; }
.stat-item { text-align: right; }
.stat-number { font-family: 'Cormorant Garamond', serif; font-size: 2.4rem; font-weight: 500; color: var(--gold); line-height: 1; }
.stat-label { font-size: 0.68rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--text-muted); margin-top: 0.3rem; font-weight: 500; }

section { padding: 8rem 3rem; }
.section-label { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--gold); margin-bottom: 1rem; font-weight: 600; }
.section-title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 500; line-height: 1.15; margin-bottom: 1rem; color: var(--text-primary); }
.divider { width: 48px; height: 1px; background: var(--gold); margin: 1.5rem 0; }

#about { background: var(--dark-2); }
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; max-width: 1100px; margin: 0 auto; }
.about-text p { color: var(--text-secondary); margin-bottom: 1.2rem; font-size: 0.98rem; }
.about-details { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.detail-card { border: 0.5px solid var(--border); padding: 1.8rem; background: var(--dark-3); transition: border-color 0.3s; }
.detail-card:hover { border-color: var(--gold); }
.detail-card-label { font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.5rem; font-weight: 500; }
.detail-card-value { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); }

/* PRODUCTS ENHANCED */
#products { background: var(--dark); }
.products-header { max-width: 1100px; margin: 0 auto 3.5rem; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1.5rem; }
.prod-tabs { display: flex; border: 0.5px solid var(--border); border-radius: 4px; overflow: hidden; }
.prod-tab { padding: 0.8rem 1.8rem; font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); cursor: pointer; background: #FFF; border: none; font-family: 'Barlow', sans-serif; border-right: 0.5px solid var(--border); transition: all 0.2s; font-weight: 500; }
.prod-tab:last-child { border-right: none; }
.prod-tab.active { background: var(--gold); color: #FFF; font-weight: 600; }
.prod-tab:hover:not(.active) { background: var(--dark-3); color: var(--gold); }

.prod-panel { display: none; max-width: 1100px; margin: 0 auto; box-shadow: 0 10px 40px rgba(0,0,0,0.03); }
.prod-panel.active { display: grid; grid-template-columns: 1fr 1.1fr; border: 0.5px solid var(--border); background: #FFF; }
.prod-visual { background: var(--dark-3); position: relative; overflow: hidden; min-height: 440px; display: flex; align-items: center; justify-content: center; }
.prod-badge { position: absolute; top: 1.5rem; left: 1.5rem; font-size: 0.62rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); border: 1px solid var(--gold); padding: 0.35rem 0.85rem; background: rgba(255,255,255,0.9); z-index: 2; font-weight: 600; }
.prod-info { background: #FFF; padding: 3.5rem; }
.prod-info-num { font-family: 'Cormorant Garamond', serif; font-size: 5rem; font-weight: 400; color: rgba(166,134,45,0.08); line-height: 1; margin-bottom: -1rem; }
.prod-info h3 { font-family: 'Cormorant Garamond', serif; font-size: 2.2rem; font-weight: 600; line-height: 1.2; margin-bottom: 1.2rem; color: var(--text-primary); }
.prod-info-desc { font-size: 0.96rem; color: var(--text-secondary); line-height: 1.8; margin-bottom: 2rem; }
.prod-specs { border-top: 0.5px solid var(--border); padding-top: 1.5rem; margin-bottom: 2rem; }
.prod-spec-row { display: flex; justify-content: space-between; padding: 0.65rem 0; border-bottom: 0.5px solid rgba(0,0,0,0.04); font-size: 0.88rem; }
.prod-spec-row:last-child { border-bottom: none; }
.prod-spec-key { color: var(--text-muted); font-size: 0.7rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 500; }
.prod-spec-val { color: var(--text-primary); font-weight: 500; }
.prod-features { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-bottom: 2rem; }
.prod-feature-tag { font-size: 0.68rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold-dark); background: rgba(166,134,45,0.08); border: 0.5px solid var(--border); padding: 0.35rem 0.85rem; font-weight: 600; }
.prod-cta-row { display: flex; gap: 1rem; flex-wrap: wrap; }

/* GALLERY */
#gallery { background: var(--dark-2); }
.gallery-header { max-width: 1100px; margin: 0 auto 3.5rem; display: flex; justify-content: space-between; align-items: flex-end; flex-wrap: wrap; gap: 1rem; }
.gallery-filter { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.gfil-btn { font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase; padding: 0.5rem 1.2rem; border: 0.5px solid var(--border); background: #FFF; color: var(--text-muted); cursor: pointer; font-family: 'Barlow', sans-serif; transition: all 0.2s; font-weight: 500; }
.gfil-btn.active, .gfil-btn:hover { border-color: var(--gold); color: var(--gold); background: rgba(166,134,45,0.05); }
.gallery-masonry { max-width: 1100px; margin: 0 auto; columns: 3; column-gap: 1.2rem; }
.gallery-item { break-inside: avoid; margin-bottom: 1.2rem; position: relative; overflow: hidden; cursor: pointer; border-radius: 2px; }
.gallery-item svg { display: block; width: 100%; transition: transform 0.6s ease; filter: grayscale(5%); }
.gallery-item:hover svg { transform: scale(1.04); filter: grayscale(0); }
.gallery-item-overlay { position: absolute; inset: 0; background: rgba(26,25,22,0); transition: background 0.4s; display: flex; align-items: flex-end; padding: 1.5rem; }
.gallery-item:hover .gallery-item-overlay { background: rgba(26,25,22,0.45); }
.gallery-item-caption { opacity: 0; transform: translateY(12px); transition: all 0.4s ease; }
.gallery-item:hover .gallery-item-caption { opacity: 1; transform: none; }
.gallery-item-caption-title { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: #FFF; }
.gallery-item-caption-sub { font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold-light); margin-top: 0.3rem; font-weight: 500; }

.lightbox { position: fixed; inset: 0; z-index: 500; background: rgba(255,255,255,0.98); display: none; align-items: center; justify-content: center; padding: 2rem; }
.lightbox.open { display: flex; }
/* OPERATIONS SECTION */
#operations { background: var(--dark-3); padding: 8rem 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.ops-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 2rem; max-width: 1100px; margin: 4rem auto 0; }
.ops-item { border-top: 1.5px solid var(--border); padding-top: 1.8rem; }
.ops-item-label { font-size: 0.66rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-muted); margin-bottom: 0.8rem; font-weight: 600; }
.ops-item-value { font-size: 0.98rem; color: var(--text-primary); font-weight: 400; }
.ops-item-value strong { color: var(--gold); font-weight: 600; }

/* FAQ SECTION */
#faq { background: var(--dark); }
.faq-grid { max-width: 900px; margin: 3rem auto 0; display: flex; flex-direction: column; gap: 1rem; }
.faq-item { border: 0.5px solid var(--border); background: #FFF; transition: border-color 0.3s; }
.faq-item:hover { border-color: var(--gold); }
.faq-item.active { border-color: var(--gold); box-shadow: 0 4px 20px rgba(0,0,0,0.03); }
.faq-question { width: 100%; padding: 1.5rem 2rem; display: flex; justify-content: space-between; align-items: center; background: none; border: none; cursor: pointer; text-align: left; font-family: 'Barlow', sans-serif; font-size: 1.05rem; font-weight: 600; color: var(--text-primary); }
.faq-question span { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; color: var(--gold); font-weight: 400; margin-right: 1.5rem; opacity: 0.6; }
.faq-toggle { font-size: 1.2rem; color: var(--gold); transition: transform 0.3s; }
.faq-item.active .faq-toggle { transform: rotate(45deg); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1); background: var(--dark-2); }
.faq-answer-inner { padding: 0 2rem 1.8rem 4.5rem; font-size: 0.96rem; color: var(--text-secondary); line-height: 1.8; }
.faq-item.active .faq-answer { max-height: 200px; }

/* WHAT WE DO SECTION */
#what-we-do { background: #FFF; padding: 8rem 3rem; border-top: 1px solid var(--border); }
.wwd-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; margin-top: 4rem; }
.wwd-item { padding: 3rem 2.5rem; background: var(--dark-2); border: 0.5px solid var(--border); transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1); }
.wwd-item:hover { transform: translateY(-10px); border-color: var(--gold); background: #FFF; box-shadow: 0 15px 40px rgba(166,134,45,0.06); }
.wwd-icon { font-size: 2.8rem; margin-bottom: 2rem; display: block; }
.wwd-item h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.4rem; font-weight: 600; color: var(--gold); margin-bottom: 1.2rem; letter-spacing: 0.02em; }
.wwd-item p { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }

#contact { background: var(--dark-2); }
.contact-wrap { max-width: 700px; margin: 0 auto; }
.contact-form-panel { background: #FFF; padding: 4rem; border: 1px solid var(--border); box-shadow: 0 10px 40px rgba(0,0,0,0.02); }
.contact-form-panel h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; margin-bottom: 2rem; color: var(--gold); }
.form-group { margin-bottom: 1.5rem; }
.form-group label { font-size: 0.68rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--text-muted); display: block; margin-bottom: 0.6rem; font-weight: 500; }
.form-group input, .form-group textarea, .form-group select { width: 100%; background: var(--dark-2); border: 0.5px solid var(--border); color: var(--text-primary); padding: 0.85rem 1.2rem; font-family: 'Barlow', sans-serif; font-size: 0.92rem; font-weight: 400; outline: none; transition: border-color 0.2s, background 0.2s; }
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--gold); background: #FFF; }
.form-group textarea { min-height: 120px; resize: vertical; }
.form-group select option { background: #FFF; }

/* FOOTER */
.main-footer { background: var(--dark-2); border-top: 0.5px solid var(--border); padding: 6rem 3rem 0; }
.footer-container { max-width: 1100px; margin: 0 auto; display: grid; grid-template-columns: 1.5fr 1fr 1fr 1.2fr; gap: 4rem; padding-bottom: 5rem; }
.footer-logo { font-family: 'Cormorant Garamond', serif; font-size: 1.8rem; font-weight: 600; color: var(--gold); margin-bottom: 1.5rem; letter-spacing: 0.04em; }
.footer-logo span { color: var(--text-secondary); font-weight: 400; font-style: italic; }
.footer-bio { font-size: 0.92rem; color: var(--text-secondary); line-height: 1.7; }
.footer-col h3 { font-family: 'Cormorant Garamond', serif; font-size: 1.1rem; font-weight: 600; color: var(--gold); margin-bottom: 1.8rem; text-transform: uppercase; letter-spacing: 0.1em; }
.footer-links-list { list-style: none; }
.footer-links-list li { margin-bottom: 1rem; }
.footer-links-list a { font-size: 0.88rem; color: var(--text-muted); text-decoration: none; transition: all 0.2s; font-weight: 500; }
.footer-links-list a:hover { color: var(--gold); padding-left: 5px; }
.footer-contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.f-icon { font-size: 1.1rem; }
.footer-contact-item p { font-size: 0.88rem; color: var(--text-secondary); line-height: 1.6; }

.sub-footer { background: var(--dark-3); padding: 2.5rem 3rem; border-top: 0.5px solid var(--border); }
.sub-footer-container { max-width: 1100px; margin: 0 auto; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 1.5rem; }
.copyright-text { font-size: 0.82rem; color: var(--text-muted); font-weight: 400; }
.partner-logo { opacity: 0.85; transition: all 0.3s; }
.partner-logo:hover { opacity: 1; transform: scale(1.05); }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.8s cubic-bezier(0.2, 0, 0.2, 1), transform 0.8s cubic-bezier(0.2, 0, 0.2, 1); }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 900px) {
  nav { padding: 1.2rem 1.5rem; } .nav-links { display: none; }
  .hero { padding: 8rem 1.5rem 12rem; } .hero-content { padding-left: 1rem; }
  .hero-stats { right: 1.5rem; bottom: 2rem; flex-direction: row; gap: 1.5rem; } .stat-item { text-align: center; }
  section { padding: 5rem 1.5rem; }
  .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 3rem; }
  .prod-panel.active { grid-template-columns: 1fr; }
  .ops-grid { grid-template-columns: 1fr 1fr; }
  .gallery-masonry { columns: 2; }
  footer { flex-direction: column; align-items: flex-start; }
}
@media (max-width: 520px) {
  .gallery-masonry { columns: 1; }
  .ops-grid { grid-template-columns: 1fr; }
  .products-header { flex-direction: column; align-items: flex-start; }
}
