/* === Base === */
:root {
  --ivory: #f7f3ee;
  --ivory-dark: #eee8de;
  --cobalt: #1a3a6e;
  --cobalt-light: #2a4f8a;
  --cobalt-deep: #0f2447;
  --gold: #c9a96e;
  --gold-light: #dbbf89;
  --charcoal: #2a2520;
  --stone: #8a8075;
  --stone-light: #b5aea4;
  --white: #ffffff;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
}

body {
  background: var(--ivory);
  color: var(--charcoal);
  font-family: 'Josefin Sans', sans-serif;
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* === Typography === */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.01em;
}

em {
  font-style: italic;
  font-weight: 400;
}

.section-eyebrow {
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1rem;
}

.section-title {
  font-size: clamp(2rem, 4vw, 3.2rem);
  color: var(--cobalt-deep);
  margin-bottom: 0.5rem;
}

/* === Hero === */
.hero {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  min-height: 100vh;
  padding: 5rem 6vw 4rem;
  align-items: center;
  background: var(--ivory);
}

.hero-image-wrap {
  position: relative;
}

.hero-image-frame {
  position: relative;
  overflow: hidden;
  border-radius: 2px;
}

.hero-image-frame::before {
  content: '';
  position: absolute;
  inset: -8px;
  border: 1px solid var(--gold);
  border-radius: 3px;
  z-index: 1;
  pointer-events: none;
}

.hero-img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.hero-image-tag {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
}

.tag-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--cobalt);
  display: inline-block;
}

.hero-text {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.hero-eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--stone);
  margin-bottom: 1.5rem;
}

.hero-headline {
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  color: var(--cobalt-deep);
  margin-bottom: 2rem;
  line-height: 1.05;
}

.hero-lede {
  font-size: 1.05rem;
  color: var(--stone);
  max-width: 42ch;
  margin-bottom: 3rem;
  line-height: 1.7;
}

.hero-meta {
  display: flex;
  align-items: center;
  gap: 0;
  border-top: 1px solid var(--ivory-dark);
  padding-top: 2rem;
}

.hero-stat {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
  padding: 0 2rem 0 0;
}

.hero-stat:first-child {
  padding-left: 0;
}

.stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.2rem;
  font-weight: 500;
  color: var(--cobalt);
  line-height: 1;
}

.stat-unit {
  font-size: 0.75rem;
  color: var(--cobalt);
  font-weight: 400;
}

.stat-label {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--stone-light);
}

.hero-stat-divider {
  width: 1px;
  height: 3rem;
  background: var(--ivory-dark);
  margin: 0 2rem;
}

/* === The Pour (Process) === */
.pour {
  background: var(--cobalt-deep);
  color: var(--ivory);
  padding: 7rem 6vw;
}

.pour-header {
  text-align: center;
  margin-bottom: 5rem;
}

.pour .section-eyebrow {
  color: var(--gold-light);
}

.pour .section-title {
  color: var(--ivory);
}

.pour-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.pour-step {
  padding: 2.5rem 2rem;
  border-right: 1px solid rgba(255,255,255,0.08);
  position: relative;
}

.pour-step:last-child {
  border-right: none;
}

.step-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 400;
  color: rgba(255,255,255,0.15);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.step-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 0.75rem;
}

.step-desc {
  font-size: 0.85rem;
  color: rgba(247,243,238,0.55);
  line-height: 1.65;
}

.pour-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  margin-top: 5rem;
}

.pour-divider-line {
  flex: 1;
  max-width: 200px;
  height: 1px;
  background: rgba(255,255,255,0.15);
}

.pour-divider-diamond {
  font-size: 0.9rem;
  color: var(--gold);
}

/* === Collection === */
.collection {
  padding: 7rem 6vw;
  background: var(--ivory);
}

.collection-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-sub {
  font-size: 1rem;
  color: var(--stone);
  margin-top: 1rem;
}

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

.collection-card {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.card-img-wrap {
  background: var(--ivory-dark);
  padding: 2.5rem;
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.card-img {
  max-width: 100%;
  max-height: 180px;
  object-fit: contain;
}

.card-info {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.card-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem;
  font-weight: 500;
  color: var(--cobalt-deep);
}

.card-size {
  font-size: 0.75rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--stone);
}

.card-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  color: var(--gold);
  font-weight: 500;
  margin-top: 0.25rem;
}

/* === Our Story === */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  background: var(--ivory-dark);
  min-height: 70vh;
}

.story-image-col {
  overflow: hidden;
  position: relative;
}

.story-img-frame {
  height: 100%;
  position: relative;
}

.story-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  min-height: 500px;
}

.story-img-caption {
  position: absolute;
  bottom: 1.5rem;
  left: 1.5rem;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.7);
  font-style: italic;
}

.story-text-col {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 6rem 6vw 6rem 5rem;
}

.story-headline {
  font-size: clamp(2rem, 3.5vw, 3rem);
  color: var(--cobalt-deep);
  margin-bottom: 2rem;
  line-height: 1.15;
}

.story-body {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.story-body p {
  font-size: 1rem;
  color: var(--stone);
  line-height: 1.75;
}

.story-signature {
  margin-top: 2.5rem;
  color: var(--gold);
  font-size: 1rem;
}

/* === Closing === */
.closing {
  background: var(--cobalt);
  padding: 8rem 6vw;
  text-align: center;
}

.closing-inner {
  max-width: 600px;
  margin: 0 auto;
}

.closing-headline {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 1.25rem;
  line-height: 1.1;
}

.closing-sub {
  font-size: 0.85rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.5);
  margin-bottom: 3rem;
}

.closing-rule {
  width: 1px;
  height: 3.5rem;
  background: var(--gold);
  margin: 0 auto 1.5rem;
}

.closing-tagline {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(247,243,238,0.35);
}

.signup-form {
  display: flex;
  gap: 0;
  margin: 2.5rem auto 0;
  max-width: 440px;
}

.signup-form input[type="email"] {
  flex: 1;
  padding: 0.85rem 1.25rem;
  border: 1px solid rgba(247,243,238,0.25);
  background: rgba(247,243,238,0.07);
  color: var(--ivory);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  outline: none;
  border-radius: 2px 0 0 2px;
}

.signup-form input[type="email"]::placeholder {
  color: rgba(247,243,238,0.4);
}

.signup-form button {
  padding: 0.85rem 1.5rem;
  background: var(--gold);
  color: var(--cobalt-deep);
  border: 1px solid var(--gold);
  font-family: 'Josefin Sans', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border-radius: 0 2px 2px 0;
  transition: background 0.2s;
  white-space: nowrap;
}

.signup-form button:hover {
  background: var(--gold-light);
}

.signup-msg {
  margin-top: 1rem;
  font-size: 0.85rem;
  color: var(--gold-light);
  letter-spacing: 0.08em;
}

/* === Footer === */
.footer {
  background: var(--charcoal);
  padding: 4rem 6vw;
  text-align: center;
}

.footer-inner {
  max-width: 600px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  color: var(--ivory);
  letter-spacing: 0.1em;
}

.footer-tagline {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--stone);
}

.footer-links {
  display: flex;
  gap: 2rem;
  margin-top: 0.5rem;
}

.footer-link {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-link:hover {
  color: var(--gold-light);
}

.footer-copy {
  font-size: 0.65rem;
  color: var(--stone);
  margin-top: 1rem;
  letter-spacing: 0.08em;
}

/* === Responsive === */
@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    gap: 3rem;
    min-height: auto;
    padding: 4rem 6vw 3rem;
  }

  .hero-image-wrap {
    max-width: 500px;
  }

  .pour-steps {
    grid-template-columns: repeat(2, 1fr);
  }

  .pour-step {
    border-right: none;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .collection-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .story {
    grid-template-columns: 1fr;
  }

  .story-img-frame {
    min-height: 350px;
  }

  .story-img {
    min-height: 350px;
  }

  .story-text-col {
    padding: 4rem 6vw;
  }
}

@media (max-width: 600px) {
  html {
    font-size: 15px;
  }

  .hero {
    padding: 3rem 5vw 2.5rem;
    gap: 2.5rem;
  }

  .pour {
    padding: 5rem 5vw;
  }

  .pour-steps {
    grid-template-columns: 1fr;
  }

  .pour-step {
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }

  .collection {
    padding: 5rem 5vw;
  }

  .collection-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .card-img-wrap {
    padding: 2rem;
  }

  .closing {
    padding: 5rem 5vw;
  }

  .footer-links {
    flex-direction: column;
    gap: 1rem;
  }

  .hero-meta {
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .hero-stat-divider {
    display: none;
  }
}