:root {
  --cream: #f5f0e8;
  --sand: #e8e0d4;
  --amber: #d4760a;
  --amber-light: #e8922a;
  --charcoal: #2c2c2c;
  --charcoal-soft: #3a3a3a;
  --muted: #8a8078;
  --bg: #f5f0e8;
  --text: #2c2c2c;
  --card: #ece5d9;
  --border: #d4cec4;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection {
  background: #d4760a30;
  color: var(--charcoal);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

/* ===== LAYOUT WRAPPER ===== */
.wrap {
  max-width: 108rem;
  margin: 0 auto;
}

.story-heading,
.philosophy-heading {
  font-size: 1px;
  width: 1px;
  height: 1px;
  overflow: hidden;
  position: absolute;
  clip: rect(0, 0, 0, 0);
}

/* ===== HERO ===== */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 2fr;
  min-height: 100vh;
  align-items: center;
  gap: 0;
  max-width: 108rem;
  margin: 0 auto;
}

.hero-inner {
  padding: 4rem 5rem;
}

.hero-logo {
  width: 130px;
  height: 130px;
  margin-bottom: 2rem;
  opacity: 0.85;
}

.hero-header {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.hero-overline {
  display: none;
}

.hero-title {
  font-size: clamp(3.5rem, 8vw, 7rem);
  font-weight: 300;
  line-height: 0.95;
  color: var(--amber);
  margin-bottom: 1.5rem;
}

.hero-sub {
  font-size: 1.35rem;
  font-weight: 300;
  font-style: italic;
  color: var(--charcoal-soft);
  margin-bottom: 2.5rem;
  max-width: 28rem;
}

.hero-cta {
  display: none;
}

.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 0;
  right: 0;
  text-align: center;
  color: var(--amber);
  opacity: 0.95;
  animation: bounce-down 2s ease-in-out infinite;
  transition: opacity 0.3s;
  z-index: 5;
}

.scroll-hint:hover {
  opacity: 1;
}

.hero::before {
  content: '';
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: 60px;
  height: 60px;
  background: rgba(0,0,0,0.3);
  border-radius: 50%;
  pointer-events: none;
  z-index: 4;
}

@keyframes bounce-down {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}

.hero {
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 33.33%;
  width: 25%;
  height: 100%;
  background: linear-gradient(to right, var(--bg), transparent);
  pointer-events: none;
  z-index: 2;
}

.hero-img {
  height: 100vh;
  overflow: hidden;
}

.hero-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

/* ===== PRODUCT ===== */
.product {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 5rem;
  max-width: 108rem;
  margin: 0 auto;
  background: var(--card);
  position: relative;
}



.product-img {
  display: flex;
  align-items: center;
  justify-content: center;
}

.product-img img {
  width: 100%;
  height: auto;
  border-radius: 0.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.08);
}

.product-body {
  padding: 1rem 0;
}

.product-badge {
  display: inline-block;
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--amber);
  border: 1px solid var(--amber);
  padding: 0.3rem 1rem;
  margin-bottom: 1.5rem;
  font-weight: 500;
}

.product-name {
  font-size: 2.5rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
}

.product-origin {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 2rem;
  font-style: italic;
}

.product-details {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 2rem;
}

.detail {
  background: var(--bg);
  padding: 1rem 1.2rem;
  border-radius: 0.4rem;
}

.detail-label {
  display: block;
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}

.detail-value {
  font-size: 0.95rem;
  font-weight: 500;
}

.product-cta {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--cream);
  padding: 1rem 2.5rem;
  font-family: inherit;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-cta:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ===== STORY ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 4rem;
  padding: 6rem 5rem;
  max-width: 108rem;
  margin: 0 auto;
  position: relative;
}

.story::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--card), transparent);
  pointer-events: none;
}

.story-text {
  padding: 2rem 0;
}

.section-overline {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem;
  font-weight: 400;
}

.section-overline.center {
  text-align: center;
}

.story-lead {
  font-size: 1.8rem;
  font-weight: 300;
  line-height: 1.5;
  margin-bottom: 1.5rem;
  color: var(--amber);
}

.story-lead em {
  font-style: italic;
  font-weight: 500;
}

.story-body {
  font-size: 1.1rem;
  font-weight: 300;
  line-height: 1.8;
  color: var(--charcoal-soft);
  max-width: 32rem;
}

.story-img {
  overflow: hidden;
  border-radius: 0.5rem;
  box-shadow: 0 16px 48px rgba(0,0,0,0.06);
}

.story-img img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== PHILOSOPHY ===== */
.philosophy {
  padding: 6rem 5rem;
  background: var(--card);
  position: relative;
}

.philosophy::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--bg), transparent);
  pointer-events: none;
}

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
  margin-top: 3rem;
  max-width: 108rem;
  margin-left: auto;
  margin-right: auto;
}

.pillar {
  text-align: center;
  padding: 2rem 1.5rem;
}

.pillar-num {
  display: block;
  font-size: 2rem;
  font-weight: 300;
  color: var(--amber);
  margin-bottom: 1rem;
  opacity: 0.5;
}

.pillar-title {
  font-size: 1.3rem;
  font-weight: 600;
  margin-bottom: 0.8rem;
}

.pillar-body {
  font-size: 0.95rem;
  font-weight: 300;
  line-height: 1.7;
  color: var(--charcoal-soft);
}

/* ===== CTA ===== */
.cta-section {
  text-align: center;
  padding: 7rem 5rem;
  max-width: 108rem;
  margin: 0 auto;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: -60px;
  left: 0;
  right: 0;
  height: 60px;
  background: linear-gradient(to bottom, var(--card), transparent);
  pointer-events: none;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 300;
  color: var(--amber);
  margin-bottom: 1rem;
}

.cta-body {
  font-size: 1.1rem;
  font-weight: 300;
  color: var(--charcoal-soft);
  margin-bottom: 2.5rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  background: var(--amber);
  color: var(--cream);
  padding: 1rem 3rem;
  font-family: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: none;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.cta-btn:hover {
  background: var(--charcoal);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.1);
}

/* ===== FOOTER ===== */
.site-footer {
  border-top: 1px solid var(--border);
  padding: 3rem 5rem;
  max-width: 108rem;
  margin: 0 auto;
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 2rem;
}

.footer-logo-img {
  height: 48px;
  width: auto;
  margin-bottom: 0.3rem;
}

.footer-tagline {
  font-size: 0.85rem;
  color: var(--muted);
  font-weight: 300;
  margin-top: 0.3rem;
}

.footer-contact {
  font-size: 0.85rem;
  font-weight: 300;
  color: var(--charcoal-soft);
}

.footer-contact a {
  transition: color 0.3s;
}

.footer-contact a:hover {
  color: var(--amber);
}

.dot {
  margin: 0 0.6rem;
  color: var(--border);
}

.footer-copy {
  text-align: center;
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.05em;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 48rem) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }

  .hero-inner {
    padding: 3rem 2rem;
  }

  .hero-header {
    flex-direction: column;
    align-items: center;
    gap: 0;
    margin-bottom: 1rem;
  }

  .hero-logo {
    width: 72px;
    height: 72px;
    margin-bottom: 0.5rem;
  }

  .scroll-hint,
  .hero::before {
    display: none;
  }

  .scroll-hint {
    left: 50%;
    transform: translateX(-50%);
  }

  .hero-title {
    font-size: 3.5rem;
  }

  .hero-sub {
    max-width: none;
  }

  .hero-img {
    display: none;
  }

  .hero::after {
    display: none;
  }

  .product {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .product-img {
    padding: 1rem;
  }

  .product-img img {
    width: 100%;
    max-width: 280px;
  }

  .product-details {
    grid-template-columns: 1fr;
  }

  .story {
    grid-template-columns: 1fr;
    padding: 3rem 2rem;
    gap: 2rem;
  }

  .philosophy {
    padding: 3rem 2rem;
  }

  .pillars {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .cta-section {
    padding: 4rem 2rem;
  }

  .site-footer {
    padding: 2rem;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem;
  }
}