:root {
  --black: #0a0a0a;
  --near-black: #111111;
  --dark: #1a1a1a;
  --charcoal: #2a2a2a;
  --muted: #6b6b6b;
  --silver: #999999;
  --light: #d4d0c8;
  --cream: #e8e4dc;
  --gold: #c9a96e;
  --gold-light: #dfc9a0;
  --white: #f5f2ed;
}

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

html {
  font-size: 16px;
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  background: var(--black);
  color: var(--cream);
  font-family: 'Outfit', sans-serif;
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ─── HERO ─── */

.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 4rem 2rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -50%;
  width: 200%;
  height: 200%;
  background: radial-gradient(ellipse at 30% 50%, rgba(201, 169, 110, 0.04) 0%, transparent 50%),
              radial-gradient(ellipse at 70% 30%, rgba(201, 169, 110, 0.03) 0%, transparent 40%);
  animation: drift 20s ease-in-out infinite;
  pointer-events: none;
}

@keyframes drift {
  0%, 100% { transform: translate(0, 0) rotate(0deg); }
  33% { transform: translate(2%, -1%) rotate(1deg); }
  66% { transform: translate(-1%, 2%) rotate(-0.5deg); }
}

.hero-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(1rem, 2vw, 1.2rem);
  letter-spacing: 0.5em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 3rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 6rem);
  line-height: 1.1;
  color: var(--white);
  max-width: 900px;
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
}

.hero-sub {
  font-size: clamp(0.95rem, 1.5vw, 1.15rem);
  color: var(--silver);
  max-width: 520px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.hero-line {
  width: 1px;
  height: 80px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin-top: 4rem;
  position: relative;
  z-index: 1;
}

/* ─── PHILOSOPHY ─── */

.philosophy {
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
}

.philosophy-inner {
  max-width: 1200px;
  width: 100%;
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 6rem;
  align-items: center;
}

.philosophy-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2rem;
}

.philosophy-statement {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  font-weight: 300;
  line-height: 1.4;
  color: var(--white);
}

.philosophy-text {
  font-size: 0.95rem;
  color: var(--silver);
  line-height: 2;
}

.philosophy-text p + p {
  margin-top: 1.5rem;
}

.philosophy-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 2rem 0;
}

/* ─── SERVICES ─── */

.services {
  padding: 6rem 2rem 8rem;
  background: var(--near-black);
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label {
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  text-align: center;
  margin-bottom: 4rem;
}

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

.service-card {
  background: var(--dark);
  padding: 3.5rem 2.5rem;
  transition: background 0.4s ease;
}

.service-card:hover {
  background: var(--charcoal);
}

.service-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.5rem;
  font-weight: 300;
  color: var(--gold);
  margin-bottom: 1.5rem;
  line-height: 1;
}

.service-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--white);
  margin-bottom: 1rem;
}

.service-desc {
  font-size: 0.88rem;
  color: var(--muted);
  line-height: 1.8;
}

/* ─── INGREDIENTS ─── */

.ingredients {
  padding: 8rem 2rem;
  display: flex;
  justify-content: center;
}

.ingredients-inner {
  max-width: 1000px;
  width: 100%;
  text-align: center;
}

.ingredients-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 300;
  color: var(--white);
  margin-bottom: 3.5rem;
}

.ingredient-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
  margin-bottom: 3.5rem;
}

.ingredient-tag {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  color: var(--gold-light);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(201, 169, 110, 0.2);
  letter-spacing: 0.05em;
}

.ingredients-note {
  font-size: 0.9rem;
  color: var(--muted);
  max-width: 600px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ─── CLOSING ─── */

.closing {
  padding: 8rem 2rem;
  text-align: center;
  position: relative;
}

.closing::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 1px;
  height: 60px;
  background: linear-gradient(to bottom, transparent, var(--gold));
}

.closing-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  color: var(--gold-light);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.closing-text {
  font-size: 0.9rem;
  color: var(--silver);
  max-width: 500px;
  margin: 0 auto;
  line-height: 1.9;
}

/* ─── FOOTER ─── */

.footer {
  padding: 3rem 2rem;
  border-top: 1px solid rgba(201, 169, 110, 0.1);
  text-align: center;
}

.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-size: 0.85rem;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.5rem;
}

.footer-sub {
  font-size: 0.75rem;
  color: var(--muted);
  letter-spacing: 0.15em;
}

/* ─── RESPONSIVE ─── */

@media (max-width: 768px) {
  .philosophy-inner {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

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

  .service-card {
    padding: 2.5rem 2rem;
  }

  .hero {
    padding: 3rem 1.5rem;
  }

  .ingredient-list {
    gap: 0.75rem 1rem;
  }
}
/* ─── HERO CTA ─── */

.hero-cta {
  display: inline-block;
  margin-top: 3rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border: 1px solid rgba(201, 169, 110, 0.4);
  padding: 0.9rem 2.8rem;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: color 0.3s ease;
}

.hero-cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--gold);
  transform: translateX(-101%);
  transition: transform 0.3s ease;
}

.hero-cta:hover {
  color: var(--black);
}

.hero-cta:hover::before {
  transform: translateX(0);
}

.hero-cta span {
  position: relative;
  z-index: 1;
}

/* ─── CLOSING CTA ─── */

.closing-cta {
  display: inline-block;
  margin-top: 2.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 0.88rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  text-decoration: none;
  color: var(--gold);
  border-bottom: 1px solid rgba(201, 169, 110, 0.4);
  padding-bottom: 0.2rem;
  transition: border-color 0.2s, opacity 0.2s;
}

.closing-cta:hover {
  border-color: var(--gold);
  opacity: 0.8;
}

.closing {
  padding: 6rem 2rem;
  text-align: center;
}

.closing-quote {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  font-style: italic;
  font-size: clamp(1.3rem, 2.5vw, 1.9rem);
  color: var(--white);
  max-width: 700px;
  margin: 0 auto 2rem;
  line-height: 1.5;
}

.closing-text {
  color: var(--silver);
  font-size: 0.9rem;
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.9;
}
