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

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --gold: #C49A2E;
  --gold-light: #E8C55A;
  --dark: #2A2318;
  --dark-mid: #3D3426;
  --mid: #7A6A4F;
  --border: #DDD5C2;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  background: var(--warm-white);
  color: var(--dark);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
  min-height: 100vh;
}

/* NAV */
nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(250, 247, 242, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 48px;
}

.nav-logo img {
  height: 64px;
  width: auto;
  cursor: pointer;
}

.nav-bar {
  display: flex;
  border-top: 1px solid var(--border);
  background: var(--cream);
}

.nav-link {
  flex: 1;
  padding: 14px 12px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s;
  text-align: center;
  text-decoration: none;
  display: flex;
  align-items: center;
  justify-content: center;
}

.nav-link:hover { color: var(--dark); }
.nav-link.active {
  color: var(--dark);
  border-bottom-color: var(--gold);
  background: var(--warm-white);
}

/* PAGE WRAPPER */
.page-wrap {
  padding-top: 112px;
  animation: fadeIn 0.35s ease;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(10px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* SHARED */
.container {
  max-width: 1000px;
  margin: 0 auto;
  padding: 80px 24px;
}

.section-label {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
  display: block;
}

.section-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  font-weight: 300;
  line-height: 1.05;
  color: var(--dark);
  margin-bottom: 24px;
}

.section-title em { font-style: italic; color: var(--gold); }

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

.btn {
  display: inline-block;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  border: 1px solid;
  transition: all 0.25s;
  cursor: pointer;
  background: none;
}

.btn-primary { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.btn-primary:hover { background: var(--gold); border-color: var(--gold); color: var(--dark); }
.btn-outline { color: var(--dark); border-color: var(--dark); }
.btn-outline:hover { background: var(--dark); color: var(--cream); }
.btn-gold { background: var(--gold); color: var(--dark); border-color: var(--gold); font-weight: 500; }
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-light { background: transparent; color: var(--cream); border-color: rgba(245,240,232,0.4); }
.btn-light:hover { background: rgba(245,240,232,0.1); border-color: var(--cream); }

/* HOME */
.hero {
  min-height: calc(100vh - 112px);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 80px 24px;
  background: var(--cream);
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 60% at 50% 40%, rgba(196,154,46,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-display);
  font-size: clamp(64px, 12vw, 140px);
  font-weight: 300;
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 32px;
}

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

.hero-sub {
  font-size: 15px;
  color: var(--mid);
  max-width: 460px;
  margin: 0 auto 48px;
  line-height: 1.85;
}

.hero-cta {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
  margin-bottom: 64px;
}

.hero-image {
  width: 220px;
  height: 220px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid var(--border);
  box-shadow: 0 20px 60px rgba(42,35,24,0.12);
}

/* ABOUT */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.about-text p {
  font-size: 15px;
  color: var(--mid);
  margin-bottom: 20px;
  line-height: 1.85;
}

.about-text p strong { color: var(--dark); font-weight: 500; }

.ingredients-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 32px;
}

.ingredient-tag {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 6px 14px;
  border: 1px solid var(--border);
  color: var(--mid);
  background: var(--cream);
}

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

.about-image-wrap img {
  width: 100%;
  object-fit: cover;
  display: block;
}

.about-image-wrap::after {
  content: '';
  position: absolute;
  bottom: -16px;
  right: -16px;
  width: 55%;
  height: 55%;
  border: 1px solid var(--gold);
  z-index: -1;
}

/* HERITAGE */
.heritage {
  background: var(--dark);
  margin-top: 0;
  padding: 80px 0;
}

.heritage .container { padding-top: 0; padding-bottom: 0; }

.heritage-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

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

.heritage-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
  filter: sepia(20%) contrast(1.05);
  position: relative;
  z-index: 1;
}

.heritage-image-wrap::before {
  content: '';
  position: absolute;
  top: -16px;
  left: -16px;
  width: 55%;
  height: 55%;
  border: 1px solid var(--gold);
  z-index: 0;
}

.heritage-text .section-label { color: var(--gold); }
.heritage-text .section-title { color: var(--cream); }
.heritage-text .divider { background: var(--gold); }

.heritage-text p {
  font-size: 15px;
  color: rgba(245,240,232,0.6);
  line-height: 1.85;
  margin-bottom: 20px;
}

.heritage-text p strong { color: var(--cream); font-weight: 500; }

.heritage-year {
  font-family: var(--font-display);
  font-size: 96px;
  font-weight: 300;
  color: rgba(196,154,46,0.15);
  line-height: 1;
  margin-bottom: -16px;
}

/* SERVICES */
.services-intro { max-width: 560px; margin-bottom: 56px; }
.services-intro p { font-size: 15px; color: var(--mid); line-height: 1.85; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: var(--border);
  margin-bottom: 64px;
}

.service-card {
  background: var(--cream);
  padding: 48px 36px;
  transition: background 0.25s;
  cursor: default;
}

.service-card:hover { background: var(--dark); }
.service-card:hover .service-title { color: var(--gold-light); }
.service-card:hover .service-desc { color: rgba(245,240,232,0.5); }

.service-icon { color: var(--gold); margin-bottom: 24px; transition: color 0.25s; }
.service-card:hover .service-icon { color: var(--gold-light); }

.service-btn {
  margin-top: 24px;
  font-size: 10px;
  padding: 10px 20px;
  background: var(--gold);
  color: var(--dark);
  border-color: var(--gold);
  font-weight: 500;
}

.service-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }
.service-card:hover .service-btn { background: var(--gold); color: var(--dark); border-color: var(--gold); }
.service-card:hover .service-btn:hover { background: var(--gold-light); border-color: var(--gold-light); }

.service-title {
  font-family: var(--font-display);
  font-size: 26px;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 12px;
  transition: color 0.25s;
}

.service-desc { font-size: 14px; color: var(--mid); line-height: 1.75; transition: color 0.25s; }

.wholesale-band {
  background: var(--dark);
  padding: 56px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}

.wholesale-band h3 {
  font-family: var(--font-display);
  font-size: 36px;
  font-weight: 300;
  color: var(--cream);
  line-height: 1.15;
}

.wholesale-band h3 em { font-style: italic; color: var(--gold-light); }
.wholesale-band p { font-size: 14px; color: rgba(245,240,232,0.55); margin-top: 8px; max-width: 400px; }

/* FLAVOURS */
.flavours-hero { background: var(--cream); padding: 80px 24px 0; text-align: center; }
.flavours-hero .container { padding-top: 0; padding-bottom: 48px; }

.shanta-card {
  background: var(--dark);
  max-width: 1000px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.shanta-image { width: 100%; height: 100%; min-height: 480px; object-fit: cover; display: block; }

.shanta-details {
  padding: 64px 48px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.shanta-details .section-label { color: var(--gold); }

.shanta-name {
  font-family: var(--font-display);
  font-size: clamp(48px, 7vw, 80px);
  font-weight: 300;
  color: var(--cream);
  line-height: 0.95;
  letter-spacing: -0.02em;
  margin-bottom: 8px;
}

.shanta-name em { font-style: italic; color: var(--gold); }

.shanta-meaning {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(196,154,46,0.6);
  margin-bottom: 28px;
}

.shanta-divider { width: 40px; height: 1px; background: var(--gold); margin-bottom: 28px; }

.shanta-desc { font-size: 15px; color: rgba(245,240,232,0.6); line-height: 1.85; margin-bottom: 20px; }

.shanta-dedication {
  margin-top: 32px;
  padding-top: 28px;
  border-top: 1px solid rgba(245,240,232,0.1);
  font-family: var(--font-display);
  font-size: 16px;
  font-style: italic;
  color: rgba(245,240,232,0.4);
  line-height: 1.7;
}

.shanta-dedication strong { color: rgba(196,154,46,0.7); font-style: normal; font-weight: 400; }

.shanta-ingredients { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 28px; }

.shanta-tag {
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border: 1px solid rgba(196,154,46,0.3);
  color: rgba(196,154,46,0.7);
}

.coming-soon-band { background: var(--warm-white); padding: 64px 24px; text-align: center; }

.coming-soon-band h3 {
  font-family: var(--font-display);
  font-size: 32px;
  font-weight: 300;
  color: var(--dark);
  margin-bottom: 12px;
}

.coming-soon-band h3 em { font-style: italic; color: var(--gold); }
.coming-soon-band p { font-size: 14px; color: var(--mid); margin-bottom: 32px; }

.coming-soon-dots { display: flex; justify-content: center; gap: 16px; }

.coming-soon-dot {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px dashed var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--border);
}

.audience-band { background: var(--cream); border-top: 1px solid var(--border); padding: 80px 24px; text-align: center; }
.audience-inner { max-width: 560px; margin: 0 auto; }

.audience-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  color: var(--dark);
  line-height: 1.05;
  margin-bottom: 20px;
}

.audience-title em { font-style: italic; color: var(--gold); }
.audience-body { font-size: 15px; color: var(--mid); line-height: 1.85; margin-bottom: 32px; }

/* INSTAGRAM */
.ig-header { text-align: center; max-width: 520px; margin: 0 auto 56px; }
.ig-header p { font-size: 15px; color: var(--mid); line-height: 1.85; }

.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 24px;
  font-size: 13px;
  letter-spacing: 0.1em;
  color: var(--dark);
  text-decoration: none;
  border: 1px solid var(--border);
  padding: 10px 20px;
  transition: all 0.2s;
}

.ig-handle:hover { background: var(--dark); color: var(--cream); border-color: var(--dark); }
.ig-handle svg { width: 16px; height: 16px; flex-shrink: 0; }

/* CONTACT */
.contact-page { background: var(--dark); }
.contact-page .container { padding-top: 80px; padding-bottom: 80px; }

.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }

.contact-info .section-title { color: var(--cream); }
.contact-info .divider { background: var(--gold); }

.contact-info p { font-size: 15px; color: rgba(245,240,232,0.6); line-height: 1.85; margin-bottom: 36px; }

.contact-detail { margin-bottom: 20px; }

.contact-detail span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 4px;
}

.contact-detail a, .contact-detail p { font-size: 15px; color: var(--cream); text-decoration: none; }
.contact-detail a:hover { color: var(--gold-light); }

form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

input, textarea, select {
  width: 100%;
  background: rgba(245,240,232,0.06);
  border: 1px solid rgba(245,240,232,0.18);
  color: var(--cream);
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 300;
  padding: 14px 18px;
  outline: none;
  transition: border-color 0.2s;
  appearance: none;
}

input::placeholder, textarea::placeholder { color: rgba(245,240,232,0.3); }
input:focus, textarea:focus, select:focus { border-color: var(--gold); }
textarea { resize: vertical; min-height: 120px; }
select option { background: var(--dark-mid); color: var(--cream); }

/* FOOTER */
footer {
  background: var(--dark-mid);
  color: rgba(245,240,232,0.45);
  padding: 36px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.footer-wordmark {
  font-family: var(--font-display);
  font-size: 20px;
  font-weight: 400;
  color: rgba(245,240,232,0.85);
  letter-spacing: 0.08em;
  text-decoration: none;
}

.footer-links { display: flex; gap: 24px; list-style: none; }

.footer-links a {
  font-size: 11px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(245,240,232,0.45);
  text-decoration: none;
  transition: color 0.2s;
}

.footer-links a:hover { color: var(--gold); }
footer p { font-size: 12px; }

/* MOBILE */
@media (max-width: 768px) {
  .nav-inner { padding: 14px 20px; }
  .nav-link { font-size: 10px; padding: 12px 6px; letter-spacing: 0.08em; }
  .page-wrap { padding-top: 106px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .about-image-wrap::after { display: none; }
  .heritage-grid { grid-template-columns: 1fr; gap: 40px; }
  .heritage-image-wrap::before { display: none; }
  .heritage-year { font-size: 64px; }
  .wholesale-band { padding: 40px 24px; flex-direction: column; align-items: flex-start; }
  .shanta-card { grid-template-columns: 1fr; }
  .shanta-image { min-height: 280px; }
  .shanta-details { padding: 40px 28px; }
  footer { flex-direction: column; align-items: flex-start; padding: 28px 20px; gap: 20px; }
  .footer-links { flex-direction: column; gap: 12px; }
  .footer-links a { font-size: 13px; }
}
