/* ========== Variables ========== */
:root {
  --primary: #2A5235;
  --primary-light: #3A6E48;
  --primary-pale: #E6EDE8;
  --cream: #F3F1EB;
  --warm: #E9E5DD;
  --text-heading: #2C2C2C;
  --text-body: #757575;
  --text-light: #A3A3A3;
  --border: #DDD8D0;
  --dark: #242424;
  --font-heading: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;
  --container: 1160px;
  --header-h: 76px;
}

/* ========== Reset ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); color: var(--text-body); line-height: 1.6; background: #fff; overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul, ol { list-style: none; }

/* ========== Utility ========== */
.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section-pad { padding: 96px 0; }

.tag {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  color: var(--primary);
  font-weight: 600;
  border: 1px solid var(--primary);
  padding: 5px 16px;
  border-radius: 2px;
}

.heading-lg {
  font-family: var(--font-heading);
  font-size: 2.8rem;
  color: var(--text-heading);
  font-weight: 400;
  line-height: 1.18;
}

.heading-md {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--text-heading);
  font-weight: 400;
  line-height: 1.25;
}

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

.divider-center {
  width: 40px;
  height: 1px;
  background: var(--primary);
  margin: 22px auto;
}

.btn {
  display: inline-block;
  padding: 13px 34px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  transition: all 0.35s;
  border-radius: 2px;
  cursor: pointer;
  border: none;
}

.btn-fill {
  background: var(--primary);
  color: #fff;
}

.btn-fill:hover {
  background: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(42, 82, 53, 0.22);
}

.btn-ghost {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.45);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
  transform: translateY(-4px);
}

/* ========== Header ========== */
.header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  height: var(--header-h);
  transition: all 0.45s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
  background: rgba(255,255,255,0.94);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(0,0,0,0.05);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

.logo {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 600;
  color: #fff;
  transition: color 0.4s;
  letter-spacing: 2px;
}

.logo span { transition: color 0.4s; }

.header.scrolled .logo { color: var(--text-heading); }
.header.scrolled .logo span { color: var(--primary); }

.header-solid .logo { color: var(--text-heading); }
.header-solid .logo span { color: var(--primary); }

.nav { display: flex; gap: 40px; }

.nav a {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  transition: color 0.4s;
  position: relative;
}

.nav a::before {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--primary);
  transition: all 0.3s;
  transform: translateX(-50%);
}

.nav a:hover::before { width: 100%; }

.header.scrolled .nav a { color: var(--text-heading); }
.header.scrolled .nav a:hover { color: var(--primary); }

.header-solid .nav a { color: var(--text-heading); }
.header-solid .nav a:hover { color: var(--primary); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 6px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
  z-index: 1001;
}

.nav-toggle span {
  width: 22px;
  height: 1.5px;
  background: #fff;
  transition: all 0.35s;
  display: block;
}

.header.scrolled .nav-toggle span { background: var(--text-heading); }
.header-solid .nav-toggle span { background: var(--text-heading); }

.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ========== Hero ========== */
.hero {
  height: 100vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  color: #fff;
  padding-bottom: 10vh;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: heroZoom 22s ease-in-out infinite alternate;
}

@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.06); }
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,28,28,0.72) 0%, rgba(28,28,28,0.25) 50%, rgba(28,28,28,0.15) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 620px;
}

.hero-content .tag {
  border-color: rgba(255,255,255,0.5);
  color: rgba(255,255,255,0.9);
  opacity: 0;
  animation: slideIn 0.7s ease forwards 0.3s;
}

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 4rem;
  font-weight: 400;
  line-height: 1.12;
  margin-top: 20px;
  opacity: 0;
  animation: slideIn 0.7s ease forwards 0.5s;
}

.hero-content .divider {
  background: rgba(255,255,255,0.5);
  opacity: 0;
  animation: slideIn 0.7s ease forwards 0.7s;
}

.hero-content p {
  font-size: 1rem;
  line-height: 1.75;
  margin-top: 18px;
  color: rgba(255,255,255,0.82);
  opacity: 0;
  animation: slideIn 0.7s ease forwards 0.9s;
}

.hero-content .hero-btns {
  margin-top: 30px;
  display: flex;
  gap: 14px;
  opacity: 0;
  animation: slideIn 0.7s ease forwards 1.1s;
}

@keyframes slideIn {
  from { opacity: 0; transform: translateX(-30px); }
  to { opacity: 1; transform: translateX(0); }
}

/* Light Hero */
.hero-light {
  min-height: 300px;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding-top: var(--header-h);
}

.hero-light-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  gap: 40px;
}

.hero-light-text h1 {
  font-family: var(--font-heading);
  font-size: 2.6rem;
  color: var(--text-heading);
  font-weight: 400;
}

.hero-light-text p {
  font-size: 0.95rem;
  color: var(--text-body);
  margin-top: 10px;
  line-height: 1.7;
  max-width: 440px;
}

.hero-light-accent {
  width: 80px;
  height: 80px;
  border: 1px solid var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.hero-light-accent span {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  color: var(--primary);
  font-weight: 500;
}

/* ========== Intro Band ========== */
.intro-band {
  padding: 72px 0;
  background: var(--primary-pale);
  text-align: center;
}

.intro-band p {
  max-width: 560px;
  margin: 16px auto 0;
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--text-body);
}

/* ========== Product Grid ========== */
.products-section { padding: 80px 0; }

.products-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 40px;
}

.products-header p {
  max-width: 340px;
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
  text-align: right;
}

.product-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.product-item {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: 48px 0;
  border-bottom: 1px solid var(--border);
}

.product-item:first-child {
  padding-top: 0;
}

.product-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

.product-item-reverse .product-item-img {
  order: 2;
}

.product-item-reverse .product-item-text {
  order: 1;
}

.product-item-img {
  position: relative;
  height: 360px;
  overflow: hidden;
  border-radius: 2px;
}

.product-item-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.product-item:hover .product-item-img img {
  transform: scale(1.04);
}

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--primary);
  color: #fff;
  font-size: 0.68rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  padding: 5px 12px;
  border-radius: 2px;
}

.product-item-text .cat {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--primary);
  font-weight: 600;
}

.product-item-text h3 {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: var(--text-heading);
  font-weight: 400;
  margin-top: 6px;
}

.product-item-text .desc {
  font-size: 0.9rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 0;
}

.product-item-text .price {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  color: var(--text-heading);
  font-weight: 500;
  margin-top: 16px;
}

/* ========== CTA Band ========== */
.cta-band {
  padding: 80px 0;
  background: var(--warm);
}

.cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.cta-inner h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-heading);
  font-weight: 400;
  flex: 1;
}

.cta-inner p {
  font-size: 0.92rem;
  color: var(--text-body);
  line-height: 1.7;
  flex: 1;
}

.cta-inner .btn { flex-shrink: 0; }

/* ========== Story ========== */
.story-section {
  padding: 96px 0;
}

.story-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 64px;
  align-items: center;
}

.story-text .tag { margin-bottom: 16px; }

.story-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-heading);
  font-weight: 400;
  margin-top: 14px;
}

.story-text p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-top: 16px;
}

.story-img-wrap {
  position: relative;
}

.story-img-wrap img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  border-radius: 2px;
}



/* ========== Features ========== */
.features-section {
  padding: 96px 0;
  background: var(--cream);
}

.features-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  margin-top: 48px;
}

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 36px 30px;
  border-top: 3px solid transparent;
  transition: all 0.35s;
}

.feat-card:hover {
  border-top-color: var(--primary);
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(0,0,0,0.06);
}

.feat-card .feat-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  color: var(--primary);
  font-weight: 400;
  opacity: 0.3;
}

.feat-card h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-heading);
  font-weight: 400;
  margin-top: 10px;
}

.feat-card p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 10px;
}

/* ========== Promise (dark) ========== */
.promise-dark {
  padding: 64px 0;
  background: var(--dark);
  color: #fff;
}

.promise-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
  text-align: center;
}

.promise-item .p-icon {
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--primary-light);
}

.promise-item h4 {
  font-family: var(--font-heading);
  font-size: 1.15rem;
  font-weight: 500;
  color: #fff;
}

.promise-item p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.6);
  margin-top: 8px;
  line-height: 1.65;
}

/* ========== About: Origin ========== */
.origin-section { padding: 96px 0; }

.origin-layout {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 56px;
  align-items: center;
}

.origin-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 2px;
}

.origin-text .tag { margin-bottom: 14px; }

.origin-text h2 {
  font-family: var(--font-heading);
  font-size: 2.2rem;
  color: var(--text-heading);
  font-weight: 400;
  margin-top: 10px;
}

.origin-text p {
  font-size: 0.93rem;
  line-height: 1.75;
  color: var(--text-body);
  margin-top: 16px;
}

/* ========== About: Values ========== */
.values-section {
  padding: 96px 0;
  background: var(--cream);
}

.values-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 48px;
}

.value-block {
  padding: 32px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  border-left: 3px solid var(--primary);
}

.value-block h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--text-heading);
  font-weight: 500;
}

.value-block p {
  font-size: 0.88rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-top: 8px;
}

/* ========== About: Reviews ========== */
.reviews-section { padding: 96px 0; }

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 48px;
}

.review-card {
  padding: 32px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform 0.3s;
}

.review-card:hover { transform: translateY(-4px); }

.review-stars {
  color: var(--primary);
  font-size: 0.85rem;
  letter-spacing: 2px;
}

.review-card blockquote {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  font-weight: 400;
  line-height: 1.6;
  margin-top: 14px;
  font-style: italic;
}

.review-author {
  font-size: 0.8rem;
  color: var(--text-light);
  margin-top: 14px;
}

/* ========== Contact ========== */
.contact-section { padding: 96px 0; }

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 56px;
}

.contact-info h3 {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  color: var(--text-heading);
  font-weight: 400;
  margin-bottom: 20px;
}

.contact-info .info-row {
  display: flex;
  gap: 12px;
  margin-bottom: 20px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--border);
}

.contact-info .info-row:last-of-type { border-bottom: none; }

.info-row .info-label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--primary);
  font-weight: 600;
  min-width: 80px;
  flex-shrink: 0;
  padding-top: 2px;
}

.info-row p {
  font-size: 0.9rem;
  color: var(--text-body);
  line-height: 1.65;
}

.hours-block {
  margin-top: 32px;
  padding: 20px;
  background: var(--cream);
  border-radius: 2px;
}

.hours-block h4 {
  font-family: var(--font-heading);
  font-size: 1.05rem;
  color: var(--text-heading);
  font-weight: 500;
  margin-bottom: 6px;
}

.hours-block p {
  font-size: 0.85rem;
  color: var(--text-body);
  line-height: 1.7;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--text-heading);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-bottom: 7px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.92rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  background: #fff;
  color: var(--text-heading);
  transition: border-color 0.3s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
}

.form-group textarea { min-height: 180px; resize: vertical; }

/* ========== FAQ ========== */
.faq-section {
  padding: 96px 0;
  background: var(--cream);
}

.faq-list {
  max-width: 800px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.faq-item {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 28px 32px;
  transition: border-color 0.3s;
}

.faq-item:hover { border-color: var(--primary); }

.faq-item h4 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  color: var(--text-heading);
  font-weight: 500;
}

.faq-item p {
  font-size: 0.88rem;
  color: var(--text-body);
  line-height: 1.7;
  margin-top: 8px;
}

/* ========== Privacy ========== */
.privacy-page { padding: 80px 0; }

.privacy-container { max-width: 860px; margin: 0 auto; }

.privacy-updated {
  display: inline-block;
  font-size: 0.78rem;
  color: var(--primary);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  border-left: 3px solid var(--primary);
  padding: 8px 16px;
  background: var(--primary-pale);
  margin-bottom: 32px;
}

.privacy-block { margin-bottom: 44px; }

.privacy-block h2 {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  color: var(--text-heading);
  font-weight: 500;
  margin-bottom: 14px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--border);
}

.privacy-block p {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 10px;
}

.privacy-block ul {
  padding-left: 18px;
  margin: 10px 0 14px;
}

.privacy-block li {
  font-size: 0.92rem;
  line-height: 1.85;
  color: var(--text-body);
  margin-bottom: 5px;
  list-style: disc;
}

/* ========== Footer ========== */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.65);
  padding-top: 72px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.4fr;
  gap: 36px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: var(--font-heading);
  font-size: 1.7rem;
  color: #fff;
  font-weight: 600;
  letter-spacing: 2px;
}

.footer-desc {
  font-size: 0.86rem;
  line-height: 1.7;
  margin-top: 14px;
  color: rgba(255,255,255,0.5);
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.72rem;
  color: rgba(255,255,255,0.9);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 18px;
}

.footer-col a {
  display: block;
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 10px;
  transition: color 0.3s;
}

.footer-col a:hover { color: #fff; }

.footer-col .contact-line {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 6px;
}

.footer-bottom {
  padding: 22px 0;
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.35);
}

.footer-bottom a {
  color: rgba(255,255,255,0.35);
  transition: color 0.3s;
}

.footer-bottom a:hover { color: rgba(255,255,255,0.7); }

/* ========== Reveal Animation ========== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ========== Responsive ========== */
@media (max-width: 1024px) {
  .product-item { grid-template-columns: 1fr; gap: 24px; padding: 32px 0; }
  .product-item-reverse .product-item-img { order: 0; }
  .product-item-reverse .product-item-text { order: 0; }
  .product-item-img { height: 260px; }
  .story-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-img-wrap img { height: 380px; }
  .features-list { grid-template-columns: 1fr; }
  .reviews-grid { grid-template-columns: 1fr; }
  .contact-layout { grid-template-columns: 1fr; }
  .origin-layout { grid-template-columns: 1fr; }
  .origin-img img { height: 360px; }
  .values-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .heading-lg { font-size: 2.2rem; }
  .hero-content h1 { font-size: 3rem; }
  .cta-inner { flex-direction: column; text-align: center; }
  .products-header { flex-direction: column; align-items: flex-start; gap: 12px; }
  .products-header p { text-align: left; }
  .hero-light-inner { flex-direction: column; text-align: center; }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h);
    left: 0;
    width: 100%;
    height: calc(100vh - var(--header-h));
    background: rgba(255,255,255,0.98);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 28px;
    transform: translateX(100%);
    transition: transform 0.4s;
  }
  .nav.open { transform: translateX(0); }
  .nav a { color: var(--text-heading) !important; font-size: 0.95rem; }
  .nav-toggle { display: flex; }
  .hero-content h1 { font-size: 2.2rem; }
  .hero { padding-bottom: 8vh; }
  .section-pad { padding: 64px 0; }
  .product-item-img { height: 220px; }
  .promise-row { grid-template-columns: 1fr; gap: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; gap: 6px; text-align: center; }
  .heading-lg { font-size: 1.8rem; }
  .hero-light-text h1 { font-size: 2rem; }
  .privacy-page { padding: 56px 0; }
}
