:root {
  --ivory: #FAF7F0;
  --gold: #C9A84C;
  --gold-dark: #A68835;
  --forest: #2C3E2D;
  --ink: #1A1714;
  --ink-light: #2D2926;
  --warm-gray: #5A5450;
  --white: #FFFFFF;
  --blush: #FDF8F5;
  --nav-height: 80px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Manrope', sans-serif;
  background: var(--white);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  line-height: 1.6;
}

h1, h2, h3 { font-family: 'Cinzel', serif; font-weight: 700; }
p { font-size: 1.05rem; color: var(--ink-light); }
img { display: block; max-width: 100%; height: auto; border-radius: 8px; }

/* ═══ NAVIGATION ═══ */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0 4rem;
  height: var(--nav-height);
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: transparent;
  transition: all 0.4s ease;
}

nav.scrolled, nav.nav-solid {
  background: rgba(255, 255, 255, 0.98);
  height: 70px;
  box-shadow: 0 2px 20px rgba(0,0,0,0.05);
}

.nav-logo {
  font-family: 'Cinzel', serif;
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: 3px;
  color: var(--white);
  text-decoration: none;
}

nav.scrolled .nav-logo, nav.nav-solid .nav-logo { color: var(--ink); }
.nav-logo span { color: var(--gold); }

.nav-links { display: flex; gap: 2.5rem; list-style: none; align-items: center; }
.nav-links a {
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
  text-decoration: none;
  transition: color 0.3s;
}

nav.scrolled .nav-links a, nav.nav-solid .nav-links a { color: var(--ink); }
.nav-links a:hover { color: var(--gold) !important; }
.nav-links a.active { color: var(--gold) !important; }

.nav-cta {
  background: var(--gold);
  color: var(--ink) !important;
  padding: 0.7rem 1.8rem;
  border-radius: 50px;
}

/* ═══ MOBILE NAV ═══ */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  margin: 5px 0;
  transition: all 0.3s;
}

nav.scrolled .nav-toggle span, nav.nav-solid .nav-toggle span { background: var(--ink); }

/* ═══ HERO (home) ═══ */
.hero {
  height: 90vh;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--ink);
  overflow: hidden;
}

.hero-img { position: absolute; inset: 0; z-index: 1; }
.hero-img img {
  width: 100%; height: 100%; object-fit: cover; object-position: center 40%;
  opacity: 0.7; border-radius: 0;
}

.hero-content {
  position: relative; z-index: 3; padding: 2rem; max-width: 1000px;
  text-align: center; color: var(--white); animation: heroFade 1s ease-out;
  text-shadow: 1px 1px 0 var(--ink), -1px -1px 0 var(--ink), 1px -1px 0 var(--ink), -1px 1px 0 var(--ink), 0 0 8px rgba(0,0,0,0.6);
}

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

.hero h1 {
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  line-height: 0.9; margin-bottom: 1.5rem; letter-spacing: -1px;
}

.hero h1 em { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--white); font-weight: 400; text-shadow: 2px 2px 0 var(--ink), -2px -2px 0 var(--ink), 2px -2px 0 var(--ink), -2px 2px 0 var(--ink), 0 2px 0 var(--ink), 0 -2px 0 var(--ink), 2px 0 0 var(--ink), -2px 0 0 var(--ink); }

.hero-sub {
  font-family: 'Libre Baskerville', serif;
  font-size: clamp(1.1rem, 2vw, 1.4rem); font-style: italic;
  color: rgba(255,255,255,0.85); margin-bottom: 3rem;
  max-width: 600px; margin-left: auto; margin-right: auto;
}

.hero-cta {
  display: inline-block; background: var(--gold); color: var(--ink);
  padding: 1.2rem 3.5rem; font-weight: 400; text-transform: uppercase;
  text-decoration: none; border-radius: 50px; letter-spacing: 2px;
  transition: all 0.3s; text-shadow: none;
}
.hero-cta:hover { transform: translateY(-5px); background: var(--white); }

/* ═══ PAGE HERO (inner pages) ═══ */
.page-hero {
  padding: 10rem 2rem 5rem;
  background: var(--ink);
  text-align: center;
  color: var(--white);
}

.page-hero h1 {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  margin-bottom: 1rem;
}

.page-hero h1 em { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--gold); font-weight: 400; }

.page-hero p {
  font-family: 'Libre Baskerville', serif;
  font-style: italic; font-size: 1.2rem;
  color: rgba(255,255,255,0.7); max-width: 600px;
  margin: 0 auto;
}

/* ═══ SECTIONS ═══ */
.manifesto { padding: 10rem 2rem; text-align: center; background: var(--white); }
.manifesto-inner { max-width: 800px; margin: 0 auto; }
.manifesto h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); margin-bottom: 2rem; color: var(--ink); line-height: 1.3; }
.manifesto h2 em { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--gold-dark); font-weight: 400; }
.manifesto p { font-size: 1.2rem; color: var(--warm-gray); line-height: 2; }

.section-header { text-align: center; margin-bottom: 4rem; }
.section-header h2 { font-size: 2.5rem; margin-bottom: 1rem; }
.section-header p { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--gold-dark); }

/* ═══ LOOKBOOK ═══ */
.lookbook { padding: 4rem 2rem 8rem; background: var(--blush); }

.lookbook-grid {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 2rem; max-width: 1200px; margin: 0 auto;
}

.lookbook-item { position: relative; border-radius: 12px; overflow: hidden; box-shadow: 0 20px 40px rgba(0,0,0,0.05); }
.lookbook-item img { border-radius: 0; transition: transform 0.6s ease; }
.lookbook-item:hover img { transform: scale(1.03); }

/* ═══ PRODUCT FEATURES ═══ */
.product-feature { display: flex; align-items: center; padding: 6rem 4rem; gap: 6rem; max-width: 1400px; margin: 0 auto; }
.product-feature.reverse { flex-direction: row-reverse; }
.pf-image { flex: 1; }
.pf-image img { box-shadow: 0 30px 60px rgba(0,0,0,0.1); }
.pf-content { flex: 0.8; }
.pf-cat { color: var(--gold); font-weight: 800; font-size: 0.75rem; letter-spacing: 3px; text-transform: uppercase; margin-bottom: 1rem; }
.pf-content h3 { font-size: 2.5rem; margin-bottom: 1.5rem; }
.pf-content h3 em { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--gold); font-weight: 400; }
.pf-content p { font-size: 1.1rem; line-height: 1.8; margin-bottom: 2rem; color: var(--warm-gray); }

.pill-btn {
  display: inline-block; padding: 1rem 2.5rem; border: 2px solid var(--ink);
  color: var(--ink); text-decoration: none; font-weight: 800; border-radius: 50px;
  text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; transition: all 0.3s;
}
.pill-btn:hover { background: var(--ink); color: var(--white); }

.pill-btn-light {
  display: inline-block; padding: 1rem 2.5rem; border: 2px solid var(--white);
  color: var(--white); text-decoration: none; font-weight: 800; border-radius: 50px;
  text-transform: uppercase; font-size: 0.75rem; letter-spacing: 2px; transition: all 0.3s;
}
.pill-btn-light:hover { background: var(--white); color: var(--ink); }

/* ═══ PRODUCT GRID (products page) ═══ */
.product-grid-section { padding: 6rem 2rem; max-width: 1200px; margin: 0 auto; }

.product-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem;
}

.product-card {
  background: var(--white); border-radius: 16px; overflow: hidden;
  box-shadow: 0 10px 40px rgba(0,0,0,0.06); transition: all 0.4s ease;
  text-decoration: none; color: inherit; display: block;
}

.product-card:hover { transform: translateY(-8px); box-shadow: 0 20px 60px rgba(0,0,0,0.1); }
.product-card img { border-radius: 0; width: 100%; aspect-ratio: 1; object-fit: cover; }
.product-card-body { padding: 2rem; }
.product-card-body .pf-cat { margin-bottom: 0.5rem; }
.product-card-body h3 { font-size: 1.5rem; margin-bottom: 0.75rem; }
.product-card-body h3 em { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--gold); font-weight: 400; }
.product-card-body p { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.6; }

.product-badge {
  display: inline-block; background: var(--forest); color: var(--white);
  font-size: 0.65rem; font-weight: 800; letter-spacing: 2px; text-transform: uppercase;
  padding: 0.4rem 1rem; border-radius: 50px; margin-top: 1rem;
}

/* ═══ CONTENT SECTIONS ═══ */
.content-section { padding: 6rem 2rem; max-width: 900px; margin: 0 auto; }
.content-section h2 { font-size: 2rem; margin-bottom: 1.5rem; }
.content-section h2 em { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--gold-dark); font-weight: 400; }
.content-section p { font-size: 1.15rem; line-height: 2; color: var(--warm-gray); margin-bottom: 1.5rem; }

.content-section-alt { padding: 6rem 2rem; background: var(--blush); }
.content-section-alt .inner { max-width: 900px; margin: 0 auto; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; max-width: 1200px; margin: 0 auto; padding: 6rem 2rem; }
.two-col img { box-shadow: 0 20px 40px rgba(0,0,0,0.08); }

/* ═══ VALUES GRID ═══ */
.values-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 3rem; max-width: 1100px; margin: 0 auto; padding: 0 2rem;
}

.value-card { text-align: center; padding: 2rem; }
.value-icon { font-size: 2.5rem; margin-bottom: 1rem; }
.value-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; letter-spacing: 1px; }
.value-card p { font-size: 0.95rem; color: var(--warm-gray); line-height: 1.7; }

/* ═══ CTA BANNER ═══ */
.cta-banner {
  padding: 8rem 2rem; background: var(--ink); color: var(--white);
  text-align: center; border-radius: 60px 60px 0 0;
}
.cta-banner h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1rem; }
.cta-banner h2 em { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--gold); font-weight: 400; }
.cta-banner p { color: rgba(255,255,255,0.6); margin-bottom: 3rem; max-width: 500px; margin-left: auto; margin-right: auto; }

/* ═══ INQUIRY ═══ */
.inquiry { padding: 10rem 2rem; background: var(--ink); color: var(--white); border-radius: 60px 60px 0 0; }
.inquiry-inner { max-width: 600px; margin: 0 auto; text-align: center; }
.inquiry h2 { font-size: 3rem; margin-bottom: 1rem; }
.inquiry h2 em { font-family: 'Libre Baskerville', serif; font-style: italic; color: var(--gold); font-weight: 400; }
.inquiry > .inquiry-inner > p { color: rgba(255,255,255,0.6); margin-bottom: 4rem; }

.iq-form { display: grid; gap: 1.5rem; text-align: left; }
.iq-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }

.iq-form input, .iq-form select, .iq-form textarea {
  width: 100%; padding: 1.25rem; background: var(--white); border: none; border-radius: 12px;
  font-family: inherit; font-size: 1rem; color: var(--ink);
}
.iq-form input::placeholder, .iq-form textarea::placeholder { color: #999; }

.iq-form select {
  appearance: none; cursor: pointer; color: var(--ink);
  background-image: url("data:image/svg+xml,%3Csvg width='14' height='9' viewBox='0 0 14 9' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1L7 7L13 1' stroke='%23C9A84C' stroke-width='2'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 1.5rem center; background-color: var(--white);
}
.iq-form select option { background: var(--white); color: var(--ink); }
.iq-form textarea { min-height: 100px; resize: vertical; }

.iq-btn {
  background: var(--gold); color: var(--ink); padding: 1.5rem; border: none;
  border-radius: 50px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 3px; cursor: pointer; font-size: 0.85rem; transition: all 0.3s;
}
.iq-btn:hover { background: var(--white); transform: translateY(-2px); }

#thanks {
  display: none; margin-top: 3rem; color: var(--gold); font-weight: 800;
  font-family: 'Cinzel', serif; font-size: 1.1rem; letter-spacing: 2px;
}

/* ═══ FOOTER ═══ */
footer {
  padding: 4rem 2rem; background: var(--ink); text-align: center;
  color: rgba(255,255,255,0.3); font-size: 0.75rem; letter-spacing: 2px;
  text-transform: uppercase;
}
footer a { color: var(--gold); text-decoration: none; }
.footer-links { margin-bottom: 1.5rem; }
.footer-links a { margin: 0 1rem; color: rgba(255,255,255,0.5); text-decoration: none; font-size: 0.7rem; letter-spacing: 2px; text-transform: uppercase; }
.footer-links a:hover { color: var(--gold); }

/* ═══ MOBILE ═══ */
@media (max-width: 1024px) {
  nav { padding: 0 2rem; }
  .nav-links {
    display: none; position: fixed; top: 0; left: 0; right: 0; bottom: 0;
    background: var(--ink); flex-direction: column; justify-content: center;
    align-items: center; gap: 2rem;
  }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--white) !important; font-size: 1rem; }
  .nav-toggle { display: block; z-index: 1001; }
  .product-feature { flex-direction: column !important; padding: 4rem 2rem; gap: 3rem; }
  .lookbook-grid { grid-template-columns: 1fr; }
  .iq-row { grid-template-columns: 1fr; }
  .manifesto { padding: 6rem 2rem; }
  .inquiry { padding: 6rem 2rem; border-radius: 40px 40px 0 0; }
  .product-grid { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }
  .two-col { grid-template-columns: 1fr; padding: 4rem 2rem; }
  .cta-banner { border-radius: 40px 40px 0 0; }
}
