:root {
  --charcoal: #14120f;
  --charcoal-2: #1c1a16;
  --cream: #f4efe6;
  --cream-2: #ece3d3;
  --gold: #b8935a;
  --gold-light: #d4b483;
  --text-muted: #948a78;
  --serif: 'Cormorant Garamond', serif;
  --sans: 'Jost', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--cream);
  color: var(--charcoal);
  line-height: 1.6;
  font-weight: 300;
}

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 32px;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0.01em;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 14px;
}
.eyebrow.center { text-align: center; }

/* Header */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 22px 0;
  transition: background .3s ease, padding .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(20, 18, 15, 0.92);
  backdrop-filter: blur(8px);
  padding: 14px 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.logo {
  font-family: var(--serif);
  font-size: 22px;
  letter-spacing: 0.08em;
  color: var(--cream);
  font-weight: 600;
  display: inline-flex;
  align-items: center;
}
.logo span { color: var(--gold-light); font-weight: 500; }
.logo-img { height: 44px; width: auto; display: block; }
.footer-logo .logo-img { height: 36px; }
.nav {
  display: flex;
  gap: 40px;
}
.nav a {
  color: var(--cream);
  font-size: 14px;
  letter-spacing: 0.04em;
  opacity: 0.85;
  transition: opacity .2s ease;
}
.nav a:hover { opacity: 1; color: var(--gold-light); }
.nav-cta { color: var(--cream); border-color: rgba(244,239,230,0.4); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; }
.nav-toggle span { width: 22px; height: 2px; background: var(--cream); display: block; }

/* Buttons */
.btn {
  display: inline-block;
  padding: 14px 30px;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 2px;
  transition: all .25s ease;
  border: 1px solid transparent;
  cursor: pointer;
}
.btn-primary {
  background: var(--gold);
  color: var(--charcoal);
}
.btn-primary:hover { background: var(--gold-light); }
.btn-outline {
  border: 1px solid var(--gold);
  color: var(--gold-light);
}
.btn-outline:hover { background: var(--gold); color: var(--charcoal); }
.btn-ghost {
  color: var(--cream);
  border-bottom: 1px solid rgba(244,239,230,0.5);
  padding: 14px 4px;
}
.btn-ghost:hover { border-color: var(--gold-light); color: var(--gold-light); }
.btn.full { width: 100%; text-align: center; border: none; }

/* Hero */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  color: var(--cream);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
}
.hero-bg .hero-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 70%;
}
.hero-bg::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 20%, rgba(184,147,90,0.18), transparent 55%),
    linear-gradient(160deg, rgba(28,26,22,0.75) 0%, rgba(20,18,15,0.88) 55%, rgba(13,12,10,0.94) 100%);
  z-index: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image: repeating-linear-gradient(90deg, rgba(244,239,230,0.02) 0 1px, transparent 1px 120px);
  z-index: 1;
}
.hero-content { padding-top: 90px; max-width: 720px; }
.hero h1 {
  font-size: clamp(40px, 6vw, 68px);
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--cream);
}
.hero-sub {
  font-size: 18px;
  color: var(--text-muted);
  max-width: 540px;
  margin-bottom: 40px;
  font-weight: 300;
}
.hero-actions { display: flex; gap: 20px; flex-wrap: wrap; }
.scroll-indicator {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: rgba(244,239,230,0.2);
  overflow: hidden;
}
.scroll-indicator span {
  position: absolute;
  top: -60px;
  left: 0;
  width: 100%;
  height: 100%;
  background: var(--gold-light);
  animation: scrollDown 2.2s ease-in-out infinite;
}
@keyframes scrollDown {
  0% { top: -60px; }
  60% { top: 100%; }
  100% { top: 100%; }
}

/* Strip */
.strip {
  background: var(--charcoal);
  color: var(--cream);
  padding: 40px 0;
}
.strip-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  text-align: center;
}
.strip-item strong {
  display: block;
  font-family: var(--serif);
  font-size: 26px;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.strip-item span {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
}

/* Sections */
.section { padding: 120px 0; }
.section.alt { background: var(--cream-2); }
.section-title {
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 18px;
}
.section-title.center { text-align: center; }
.section-sub {
  color: #6d6355;
  max-width: 620px;
  font-size: 17px;
}
.section-sub.center { margin: 0 auto 60px; text-align: center; }

/* Collection grid */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.card {
  background: #fff;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 10px 40px rgba(20,18,15,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(20,18,15,0.12); }
.card-media { height: 240px; overflow: hidden; }
.card-media img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s ease; }
.card:hover .card-media img { transform: scale(1.05); }
.card-body { padding: 28px; }
.card-body h3 { font-size: 24px; margin-bottom: 12px; }
.card-body p { color: #6d6355; font-size: 15px; margin-bottom: 18px; }
.card-link { color: var(--gold); font-size: 13px; letter-spacing: 0.05em; text-transform: uppercase; font-weight: 500; }

/* Split (craftsmanship) */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.split-media {
  height: 460px;
  border-radius: 4px;
  background: linear-gradient(135deg, #2a231a, #14120f 70%);
  position: relative;
  overflow: hidden;
}
.split-media img { width: 100%; height: 100%; object-fit: cover; display: block; position: relative; z-index: 0; }
.split-media::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 70% 30%, rgba(184,147,90,0.18), transparent 60%);
  z-index: 1;
  pointer-events: none;
}
.split-copy p { color: #6d6355; margin-bottom: 26px; font-size: 16px; }
.checklist li {
  padding: 10px 0 10px 28px;
  position: relative;
  font-size: 15px;
  color: var(--charcoal);
  border-top: 1px solid rgba(20,18,15,0.08);
}
.checklist li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 18px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
}

/* Video */
.video-wrap {
  max-width: 900px;
  margin: 50px auto 0;
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(20,18,15,0.15);
}
.video-wrap video { width: 100%; display: block; background: var(--charcoal); }

/* About */
.about-inner { max-width: 760px; margin: 0 auto; }

/* Contact */
.contact { background: var(--charcoal); color: var(--cream); }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
}
.contact-copy p { color: var(--text-muted); margin-bottom: 34px; font-size: 16px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-details span {
  display: block;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 4px;
}
.contact-details a, .contact-details p { font-size: 17px; color: var(--cream); }

.contact-form {
  background: rgba(244,239,230,0.03);
  border: 1px solid rgba(244,239,230,0.12);
  border-radius: 4px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.contact-form label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-muted);
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.contact-form input, .contact-form textarea {
  background: rgba(244,239,230,0.05);
  border: 1px solid rgba(244,239,230,0.15);
  border-radius: 2px;
  padding: 12px 14px;
  color: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  resize: vertical;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: none;
  border-color: var(--gold);
}
.form-note { font-size: 13px; color: var(--gold-light); min-height: 18px; }

/* Footer */
.site-footer { background: #0d0c0a; color: var(--text-muted); padding: 50px 0; }
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo { font-size: 18px; }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 13px; color: var(--text-muted); }
.footer-links a:hover { color: var(--gold-light); }

/* Responsive */
@media (max-width: 900px) {
  .nav, .nav-cta { display: none; }
  .nav-toggle { display: flex; }
  .grid-3 { grid-template-columns: 1fr; }
  .split, .contact-inner { grid-template-columns: 1fr; }
  .split-media { height: 320px; order: -1; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
}
