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

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

:root {
  --cream:      #F5F0E8;
  --cream-dark: #EDE7DA;
  --white:      #FAFAF8;
  --dark:       #1C1208;
  --brown:      #2C1810;
  --muted:      #7A6858;
  --gold:       #C9A870;
  --gold-light: #E8D5A3;
  --gold-dark:  #9A7A40;
  --border:     #DDD4C0;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--brown);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 40px;
}

/* ── NAVBAR ─────────────────────────────────────────── */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: #000000;
  border-bottom: none;
  padding: 0 40px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav-logo img { height: 44px; }
.nav-links {
  display: flex;
  gap: 40px;
  align-items: center;
}
.nav-links a {
  font-family: 'Jost', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #ffffff;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #ffffff;
  border: 1px solid var(--gold);
  padding: 10px 24px;
  transition: all 0.25s;
}
.nav-cta:hover {
  background: var(--gold);
  color: var(--dark);
}
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  font-size: 1.4rem;
  color: var(--brown);
}

/* ── HERO ────────────────────────────────────────────── */
.hero {
  height: 100vh;
  min-height: 600px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: transparent;
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
  padding: 0 40px;
}
.hero-eyebrow {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 28px;
}
.hero-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 300;
  font-style: italic;
  line-height: 1.15;
  color: var(--dark);
  margin-bottom: 24px;
}
.hero-sub {
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  letter-spacing: 1px;
  color: var(--brown);
  margin-bottom: 44px;
  text-transform: uppercase;
}
.hero-btns {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}
.btn-gold {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: var(--gold);
  color: var(--dark);
  padding: 14px 36px;
  border: 1px solid var(--gold);
  transition: all 0.25s;
  display: inline-block;
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}
.btn-outline {
  font-family: 'Jost', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  background: transparent;
  color: var(--dark);
  padding: 14px 36px;
  border: 1px solid var(--brown);
  transition: all 0.25s;
  display: inline-block;
}
.btn-outline:hover {
  background: var(--dark);
  color: var(--cream);
  border-color: var(--dark);
}

/* ── GOLD DIVIDER ────────────────────────────────────── */
.gold-line {
  width: 48px;
  height: 1px;
  background: var(--gold);
  margin: 0 auto 20px;
}
.gold-line-left { margin: 0 0 20px; }

/* ── SECTION LABEL ───────────────────────────────────── */
.section-label {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 12px;
  display: block;
}

/* ── INTRO STRIP ─────────────────────────────────────── */
.intro-strip {
  padding: 90px 0;
  background: var(--white);
  text-align: center;
  border-bottom: 1px solid var(--border);
}
.intro-strip h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 24px;
  max-width: 700px;
  margin-left: auto;
  margin-right: auto;
}
.intro-strip p {
  font-size: 0.92rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ── ASYMMETRIC PRODUCT ROWS ─────────────────────────── */
.product-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  border-bottom: 1px solid var(--border);
}
.product-row.flip { direction: rtl; }
.product-row.flip > * { direction: ltr; }
.product-row-img {
  background-size: cover;
  background-position: center;
  min-height: 480px;
}
.product-row-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px 70px;
}
.product-row-text h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 20px;
  line-height: 1.2;
}
.product-row-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 32px;
}
.product-row-text .btn-gold { align-self: flex-start; }

/* ── STATS STRIP ─────────────────────────────────────── */
.stats-strip {
  background: var(--dark);
  padding: 70px 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #3A2A1A;
}
.stat-item {
  padding: 40px;
  text-align: center;
  background: var(--dark);
}
.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold);
  display: block;
  line-height: 1;
  margin-bottom: 10px;
}
.stat-label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: #BBA888;
}

/* ── PROCESS ─────────────────────────────────────────── */
.process-section {
  padding: 100px 0;
  background: var(--cream);
}
.process-header {
  text-align: center;
  margin-bottom: 70px;
}
.process-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
}
.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}
.process-step { text-align: center; }
.step-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4rem;
  font-weight: 300;
  color: var(--gold-light);
  display: block;
  line-height: 1;
  margin-bottom: 20px;
}
.process-step h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--dark);
  margin-bottom: 14px;
}
.process-step p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
}
.process-divider {
  width: 1px;
  background: var(--border);
}

/* ── ABOUT SPLIT ─────────────────────────────────────── */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-split-img {
  background-size: cover;
  background-position: center;
}
.about-split-text {
  background: var(--white);
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 90px 80px;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.about-split-text h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 24px;
  line-height: 1.2;
}
.about-split-text p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 16px;
}

/* ── WORK GRID ───────────────────────────────────────── */
.work-section {
  padding: 100px 0;
  background: var(--cream-dark);
}
.work-header {
  text-align: center;
  margin-bottom: 60px;
}
.work-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.work-img {
  height: 280px;
  background-size: cover;
  background-position: center;
  overflow: hidden;
  position: relative;
}
.work-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28,18,8,0);
  transition: background 0.3s;
}
.work-img:hover::after { background: rgba(28,18,8,0.2); }

/* ── TESTIMONIALS ────────────────────────────────────── */
.testi-section {
  padding: 100px 0;
  background: var(--white);
  text-align: center;
}
.testi-header h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.6rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 60px;
}
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
}
.testi-card {
  border: 1px solid var(--border);
  padding: 44px 36px;
  text-align: left;
}
.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-style: italic;
  color: var(--brown);
  line-height: 1.8;
  margin-bottom: 24px;
}
.testi-author {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── CTA BANNER ──────────────────────────────────────── */
.cta-banner {
  background-size: cover;
  background-position: center;
  position: relative;
  padding: 120px 0;
  text-align: center;
}
.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 8, 0.72);
}
.cta-banner-content {
  position: relative;
  z-index: 1;
}
.cta-banner-content h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  margin-bottom: 36px;
  line-height: 1.2;
}

/* ── CONTACT ─────────────────────────────────────────── */
.contact-section {
  padding: 100px 0;
  background: var(--cream);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 30px;
  line-height: 1.2;
}
.contact-info p {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.9;
  margin-bottom: 32px;
}
.contact-detail {
  margin-bottom: 18px;
  font-size: 0.85rem;
  color: var(--brown);
}
.contact-detail strong {
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-size: 0.72rem;
  color: var(--gold-dark);
  display: block;
  margin-bottom: 4px;
}
.contact-form { display: flex; flex-direction: column; gap: 14px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  background: var(--white);
  border: 1px solid var(--border);
  color: var(--brown);
  padding: 14px 18px;
  font-family: 'Jost', sans-serif;
  font-size: 0.88rem;
  font-weight: 300;
  width: 100%;
  outline: none;
  transition: border-color 0.2s;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
}
.contact-form select { appearance: none; cursor: pointer; }
.contact-form textarea { resize: vertical; min-height: 130px; }

/* ── PAGE HERO (inner pages) ─────────────────────────── */
.page-hero {
  padding-top: 72px;
  height: 380px;
  background-size: cover;
  background-position: center;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.page-hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,18,8,0.55);
}
.page-hero-content {
  position: relative;
  z-index: 1;
}
.page-hero-content h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
}

/* ── FOOTER ──────────────────────────────────────────── */
.footer {
  background: var(--dark);
  padding: 80px 0 0;
  border-top: 2px solid var(--gold-dark);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid #3A2A1A;
}
.footer-brand img { height: 36px; margin-bottom: 20px; }
.footer-brand p {
  font-size: 0.85rem;
  color: #BBA888;
  line-height: 1.9;
  max-width: 300px;
}
.footer-col h4 {
  font-family: 'Jost', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 20px;
}
.footer-col p, .footer-col a {
  font-size: 0.85rem;
  color: #BBA888;
  line-height: 2;
  display: block;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }
.footer-bottom {
  padding: 22px 0;
  text-align: center;
}
.footer-bottom p {
  font-size: 0.75rem;
  color: #6A5A48;
  letter-spacing: 1px;
}

/* ── PRODUCTS PAGE GRID ──────────────────────────────── */
.products-page { padding: 80px 0; background: var(--cream); }
.products-category-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2rem;
  font-weight: 300;
  font-style: italic;
  color: var(--dark);
  margin: 60px 0 30px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}
.products-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-bottom: 20px;
}
.prod-card {
  background: var(--white);
  border: 1px solid var(--border);
  overflow: hidden;
  transition: box-shadow 0.3s;
}
.prod-card:hover { box-shadow: 0 8px 32px rgba(28,18,8,0.1); }
.prod-card-img {
  height: 220px;
  background-size: cover;
  background-position: center;
}
.prod-card-body { padding: 24px; }
.prod-card-body h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.3rem;
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  margin-bottom: 8px;
}
.prod-card-body p {
  font-size: 0.82rem;
  color: var(--muted);
  margin-bottom: 18px;
  line-height: 1.7;
}
.prod-card-body a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--gold-dark);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 2px;
  transition: color 0.2s;
}
.prod-card-body a:hover { color: var(--dark); }

/* ── RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .product-row { grid-template-columns: 1fr; min-height: auto; }
  .product-row.flip { direction: ltr; }
  .product-row-img { min-height: 350px; }
  .product-row-text { padding: 50px 40px; }
  .about-split { grid-template-columns: 1fr; }
  .about-split-img { min-height: 350px; }
  .about-split-text { padding: 60px 50px; }
  .testi-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(2,1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
}
@media (max-width: 768px) {
  .navbar { padding: 0 20px; }
  .nav-links { display: none; flex-direction: column; position: fixed; top: 72px; left: 0; right: 0; background: var(--cream); padding: 30px 20px; border-bottom: 1px solid var(--border); gap: 24px; z-index: 99; }
  .nav-links.open { display: flex; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
  .hero-title { font-size: 2.8rem; }
  .work-grid { grid-template-columns: repeat(2,1fr); }
  .stats-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; gap: 40px; }
  .products-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .form-row { grid-template-columns: 1fr; }
  .container { padding: 0 24px; }
}
@media (max-width: 480px) {
  .hero-title { font-size: 2.2rem; }
  .work-grid { grid-template-columns: 1fr; }
}
