/* ===== FONTS ===== */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;0,600;1,300;1,400&family=Jost:wght@300;400;500;600&display=swap');

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

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

body {
  font-family: 'Jost', 'Georgia', sans-serif;
  background: #FAF7F2;
  color: #2C2C2A;
  min-height: 100vh;
  line-height: 1.5;
}

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

ul,
ol {
  list-style: none;
}

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

button,
input,
select,
textarea {
  font-family: inherit;
  font-size: inherit;
  border: none;
  outline: none;
  background: none;
}

button {
  cursor: pointer;
}

h1,
h2,
h3,
h4 {
  font-weight: 500;
}

/* ===== UTILITY ===== */
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

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

.flex {
  display: flex;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.items-start {
  align-items: start;
}

.justify-center {
  justify-content: center;
}

.justify-between {
  justify-content: space-between;
}

.flex-wrap {
  flex-wrap: wrap;
}

.flex-1 {
  flex: 1;
}

.flex-shrink-0 {
  flex-shrink: 0;
}

.gap-1 {
  gap: 0.25rem;
}

.gap-2 {
  gap: 0.5rem;
}

.gap-3 {
  gap: 0.75rem;
}

.gap-4 {
  gap: 1rem;
}

.gap-5 {
  gap: 1.25rem;
}

.gap-6 {
  gap: 1.5rem;
}

.gap-7 {
  gap: 1.75rem;
}

.gap-8 {
  gap: 2rem;
}

.gap-10 {
  gap: 2.5rem;
}

.gap-14 {
  gap: 3.5rem;
}

.w-full {
  width: 100%;
}

.relative {
  position: relative;
}

.absolute {
  position: absolute;
}

.overflow-hidden {
  overflow: hidden;
}

.hidden {
  display: none;
}

.block {
  display: block;
}

.inline-block {
  display: inline-block;
}

.grid {
  display: grid;
}

.space-y-1>*+* {
  margin-top: 0.25rem;
}

.space-y-2>*+* {
  margin-top: 0.5rem;
}

.space-y-3>*+* {
  margin-top: 0.75rem;
}

.space-y-4>*+* {
  margin-top: 1rem;
}

.space-y-5>*+* {
  margin-top: 1.25rem;
}

.space-y-6>*+* {
  margin-top: 1.5rem;
}

.space-y-8>*+* {
  margin-top: 2rem;
}

.serif {
  font-family: Georgia, serif;
}

.transition-all {
  transition: all 0.3s ease;
}

.transition-colors {
  transition: color 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.transition-transform {
  transition: transform 0.5s ease;
}

.transition-opacity {
  transition: opacity 0.3s ease;
}

.line-clamp-3 {
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

/* ===== TOP BAR ===== */
.top-bar {
  background: #1C1C1A;
  color: #D4C5A9;
  padding: 0.5rem 1.5rem;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.top-bar-left {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.top-bar-dot {
  color: #C9A84C;
}

.top-bar-ig {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  transition: color 0.3s;
}

.top-bar-ig:hover {
  color: #C9A84C;
}

.top-bar-ig svg {
  width: 13px;
  height: 13px;
}

@media (max-width: 520px) {
  .top-bar {
    padding: 0.5rem 1rem;
  }

  .top-bar-left {
    font-size: 0.65rem;
    letter-spacing: 0.14em;
    gap: 0.45rem;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 60%;
  }

  .top-bar-ig {
    font-size: 0.65rem;
    letter-spacing: 0.05em;
    flex-shrink: 0;
  }
}

/* ===== HEADER ===== */
.header {
  background: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.08);
  transition: box-shadow 0.3s;
}

.header.scrolled {
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.header-inner {
  display: flex;
  align-items: center;
  gap: 2rem;
  padding: 1rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

@media (max-width: 640px) {
  .header-inner {
    padding: 0.85rem 1rem;
    gap: 0.75rem;
  }

  .logo {
    margin-right: 0;
  }

  .logo-img {
    width: clamp(108px, 36vw, 150px);
    max-height: 54px;
  }

  .header-actions {
    gap: 0.6rem;
  }
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  margin-right: 1.5rem;
  flex-shrink: 0;
}

.logo-img {
  width: clamp(120px, 28vw, 190px);
  height: auto;
  max-height: 64px;
  object-fit: contain;
}

/* Desktop Nav */
.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
  flex: 1;
}

.nav-link {
  font-size: 10px;
  letter-spacing: 0.15em;
  font-weight: 500;
  color: #3A3A38;
  padding-bottom: 0.25rem;
  position: relative;
  transition: color 0.3s;
}

.nav-link:hover,
.nav-link.active {
  color: #C9A84C;
}

.nav-link.active {
  border-bottom: 1px solid #C9A84C;
}

/* Right Actions */
.header-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: auto;
}

.header-btn {
  color: #3A3A38;
  transition: color 0.3s;
  position: relative;
  display: none;
}

.header-btn:hover {
  color: #C9A84C;
}

.header-btn svg {
  width: 18px;
  height: 18px;
}

.cart-badge {
  position: absolute;
  top: -8px;
  right: -8px;
  background: #C9A84C;
  color: #fff;
  font-size: 9px;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.cta-btn {
  display: none;
  background: #C9A84C;
  color: #fff;
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.625rem 1.25rem;
  transition: background 0.3s;
}

.cta-btn:hover {
  background: #B8963E;
}

.hamburger {
  color: #3A3A38;
  display: block;
}

.hamburger svg {
  width: 22px;
  height: 22px;
}

/* Mobile Menu */
.mobile-menu {
  display: none;
  background: #fff;
  border-top: 1px solid #E8E0D4;
  padding: 1rem 1.5rem;
}

.mobile-menu.open {
  display: block;
}

.mobile-menu a {
  display: block;
  padding: 0.75rem 0;
  font-size: 0.875rem;
  letter-spacing: 0.1em;
  border-bottom: 1px solid #F0EAE0;
  color: #3A3A38;
}

.mobile-menu a.active {
  color: #C9A84C;
}

.mobile-cta {
  margin-top: 1rem;
  display: block;
  width: 100%;
  text-align: center;
  background: #C9A84C;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.75rem;
}

/* ===== FOOTER ===== */
.footer {
  background: #1C1C1A;
  color: #A89880;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 2.5rem;
  padding: 4rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.footer-brand-name {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 1.125rem;
}

.footer-logo-wrap {
  display: inline-flex;
  margin-bottom: 1rem;
}

.footer-logo-img {
  width: clamp(150px, 35vw, 220px);
  height: auto;
  object-fit: contain;
}

.footer-brand-sub {
  color: #4A6741;
  font-size: 7px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.footer-desc {
  font-size: 0.875rem;
  line-height: 1.7;
  color: #8A7A6A;
  margin-bottom: 1.5rem;
}

.footer-socials {
  display: flex;
  gap: 0.75rem;
}

.footer-social {
  width: 32px;
  height: 32px;
  border: 1px solid #3A3830;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.3s;
}

.footer-social:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}

.footer-social svg {
  width: 14px;
  height: 14px;
}

.footer h4 {
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.25rem;
}

.footer-link {
  font-size: 0.875rem;
  color: #8A7A6A;
  display: flex;
  align-items: center;
  gap: 0.5rem;
  transition: color 0.3s;
}

.footer-link:hover {
  color: #C9A84C;
}

.footer-link svg {
  width: 12px;
  height: 12px;
}

.footer-contact-item {
  display: flex;
  gap: 0.75rem;
  font-size: 0.875rem;
  color: #8A7A6A;
}

.footer-contact-item svg {
  color: #C9A84C;
  flex-shrink: 0;
  width: 15px;
  height: 15px;
  margin-top: 2px;
}

.footer-newsletter-label {
  font-size: 0.75rem;
  color: #6A5A4A;
  margin-bottom: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-newsletter {
  display: flex;
}

.footer-newsletter input {
  flex: 1;
  background: #2A2A28;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.625rem 0.75rem;
  border: 1px solid #3A3830;
  outline: none;
  transition: border-color 0.3s;
}

.footer-newsletter input:focus {
  border-color: #C9A84C;
}

.footer-newsletter button {
  background: #C9A84C;
  color: #fff;
  font-size: 0.75rem;
  padding: 0.625rem 1rem;
  transition: background 0.3s;
}

.footer-newsletter button:hover {
  background: #B8963E;
}

.footer-bottom {
  border-top: 1px solid #2A2A28;
}

.footer-bottom-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1.25rem 1.5rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}

.footer-copy {
  font-size: 0.75rem;
  color: #6A5A4A;
}

.footer-legal {
  display: flex;
  gap: 1.25rem;
}

.footer-legal a {
  font-size: 0.75rem;
  color: #6A5A4A;
  transition: color 0.3s;
}

.footer-legal a:hover {
  color: #C9A84C;
}

/* ===== PAGE HEADER (shared across pages) ===== */
.page-header {
  position: relative;
  padding: 6rem 0;
  background: linear-gradient(135deg, #1C1C1A 0%, #2C2C2A 100%);
  overflow: hidden;
}

.page-header-bg {
  position: absolute;
  inset: 0;
  opacity: 0.1;
}

.page-header-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-header .container {
  position: relative;
  text-align: center;
}

.page-header-tag {
  color: #C9A84C;
  font-size: 10px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.page-header h1 {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.page-header-sub {
  color: #A89880;
  font-size: 0.875rem;
  max-width: 36rem;
  margin: 0 auto;
}

/* ===== BUTTONS ===== */
.btn-gold {
  background: #C9A84C;
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.75rem;
  transition: background 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-gold:hover {
  background: #B8963E;
}

.btn-outline-gold {
  border: 1px solid #C9A84C;
  color: #C9A84C;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-gold:hover {
  background: #C9A84C;
  color: #fff;
}

.btn-outline-white {
  border: 1px solid rgba(255, 255, 255, 0.4);
  color: #fff;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 0.75rem 1.5rem;
  transition: all 0.3s;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-outline-white:hover {
  border-color: #fff;
}

.link-gold {
  color: #C9A84C;
  font-size: 10px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  transition: gap 0.3s;
}

.link-gold:hover {
  gap: 0.75rem;
}

.link-gold svg {
  width: 12px;
  height: 12px;
}

/* ===== SECTION LABEL ===== */
.section-tag {
  color: #C9A84C;
  font-size: 10px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.5rem;
}

.section-title {
  font-family: Georgia, serif;
  color: #2C2C2A;
  font-size: 1.875rem;
  line-height: 1.3;
}

.gold-line {
  width: 2.5rem;
  height: 2px;
  background: #C9A84C;
  margin-bottom: 1.5rem;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  height: 85vh;
  min-height: 560px;
  overflow: hidden;
}

.hero-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 0.7s;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to right, rgba(28, 28, 26, 0.85), rgba(28, 28, 26, 0.5), transparent);
}

.hero-content {
  position: relative;
  height: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
  display: flex;
  align-items: center;
}

.hero-slides-nav {
  position: absolute;
  left: 1.5rem;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.hero-slide-num {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  color: rgba(255, 255, 255, 0.4);
  background: none;
  border: none;
  cursor: pointer;
  transition: color 0.3s;
}

.hero-slide-num.active {
  color: #C9A84C;
}

.hero-slide-line {
  width: 1px;
  height: 3rem;
  background: rgba(255, 255, 255, 0.2);
  margin: 0.25rem auto 0;
}

.hero-text {
  margin-left: 3rem;
  max-width: 36rem;
}

.hero-tag {
  color: #C9A84C;
  font-size: 0.75rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}

.hero h1 {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 2.5rem;
  line-height: 1.15;
  margin-bottom: 1.25rem;
  white-space: pre-line;
}

.hero-sub {
  color: #C4B5A0;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  white-space: pre-line;
}

.hero-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.hero-arrows {
  position: absolute;
  bottom: 2rem;
  right: 2rem;
  display: flex;
  gap: 0.5rem;
}

.hero-arrow {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  cursor: pointer;
  transition: all 0.3s;
}

.hero-arrow:hover {
  border-color: #C9A84C;
  color: #C9A84C;
}

.hero-arrow svg {
  width: 16px;
  height: 16px;
}

.play-icon {
  width: 20px;
  height: 20px;
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.play-icon svg {
  width: 8px;
  height: 8px;
}

/* ===== FEATURES STRIP ===== */
.features-strip {
  background: #F0EAE0;
  border-bottom: 1px solid #E0D8CC;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem;
  padding: 2.5rem 1.5rem;
  max-width: 1280px;
  margin: 0 auto;
}

.feature-item {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.feature-icon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(74, 103, 65, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.feature-icon svg {
  width: 18px;
  height: 18px;
  color: #4A6741;
}

.feature-title {
  color: #2C2C2A;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.feature-desc {
  color: #7A6A58;
  font-size: 0.75rem;
  line-height: 1.7;
}

/* ===== COLLECTION ===== */
.collection-section {
  padding: 5rem 0;
}

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

.cat-list button {
  width: 100%;
  text-align: left;
  font-size: 0.875rem;
  padding: 0.625rem 0.75rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: all 0.3s;
  color: #5A4A3A;
}

.cat-list button:hover {
  background: #F0EAE0;
}

.cat-list button.active {
  background: #2C2C2A;
  color: #fff;
}

.cat-list button svg {
  width: 14px;
  height: 14px;
}

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

.product-card {
  overflow: hidden;
}

.product-card-img {
  overflow: hidden;
  background: #F0EAE0;
  aspect-ratio: 1/1;
}

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

.product-card:hover .product-card-img img {
  transform: scale(1.05);
}

.product-card h3 {
  color: #2C2C2A;
  font-size: 0.875rem;
  margin-bottom: 0.125rem;
  margin-top: 0.75rem;
}

.product-card .cat {
  color: #9A8A7A;
  font-size: 0.75rem;
  margin-bottom: 0.5rem;
}

.why-choose p {
  color: #7A6A58;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
}

.testimonial-mini {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid #E0D8CC;
}

.testimonial-mini .quote {
  font-family: Georgia, serif;
  font-size: 2.5rem;
  color: #C9A84C;
  margin-bottom: 0.75rem;
  line-height: 1;
}

.testimonial-mini .review {
  color: #5A4A3A;
  font-size: 0.875rem;
  line-height: 1.7;
  font-style: italic;
}

.testimonial-mini .author {
  color: #9A8A7A;
  font-size: 0.75rem;
  margin-top: 0.75rem;
}

.stars {
  display: flex;
  gap: 0.25rem;
  margin-top: 0.5rem;
}

.stars svg {
  width: 11px;
  height: 11px;
  color: #C9A84C;
  fill: #C9A84C;
}

/* ===== OUR STORY + STATS ===== */
.story-stats {
  display: grid;
  grid-template-columns: 1fr;
}

.story-panel {
  position: relative;
  overflow: hidden;
  min-height: 400px;
  display: flex;
  align-items: flex-end;
  background: #2C2C2A;
}

.story-panel img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.4;
}

.story-panel-content {
  position: relative;
  padding: 2.5rem;
}

.story-panel h2 {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1rem;
}

.story-panel p {
  color: #B0A090;
  font-size: 0.875rem;
  line-height: 1.7;
  margin-bottom: 2rem;
  max-width: 24rem;
}

.stats-panel {
  background: #F5F0E8;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 2.5rem;
}

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

.stat-item {
  text-align: center;
}

.stat-value {
  font-family: Georgia, serif;
  color: #2C2C2A;
  font-size: 2.5rem;
  margin-bottom: 0.5rem;
}

.stat-label {
  color: #9A8A7A;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.leaf-deco {
  margin-top: 2.5rem;
  display: flex;
  justify-content: center;
}

/* ===== CTA BANNER ===== */
.cta-banner {
  position: relative;
  padding: 5rem 0;
  background: #2C2C2A;
  overflow: hidden;
}

.cta-banner .pattern {
  position: absolute;
  inset: 0;
  opacity: 0.05;
}

.cta-banner .container {
  position: relative;
  text-align: center;
  max-width: 48rem;
  margin: 0 auto;
  padding: 0 1.5rem;
}

.cta-banner h2 {
  font-family: Georgia, serif;
  color: #fff;
  font-size: 1.875rem;
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.cta-banner>.container>p {
  color: #A89880;
  font-size: 0.875rem;
  margin-bottom: 2rem;
}

.cta-btns {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
}

/* ===== RESPONSIVE ===== */
@media (min-width: 640px) {
  .header-btn {
    display: block;
  }

  .footer-bottom-inner {
    flex-direction: row;
  }
}

@media (min-width: 768px) {
  .cta-btn {
    display: flex;
  }

  .page-header h1 {
    font-size: 3rem;
  }

  .hero h1 {
    font-size: 3rem;
  }

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

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

  .cta-banner h2 {
    font-size: 2.25rem;
  }
}

@media (min-width: 1024px) {
  .nav-desktop {
    display: flex;
  }

  .hamburger {
    display: none;
  }

  .features-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .collection-grid {
    grid-template-columns: 200px 1fr 260px;
  }

  .footer-grid {
    grid-template-columns: repeat(4, 1fr);
  }

  .hero h1 {
    font-size: 3.75rem;
  }

  .stat-value {
    font-size: 3rem;
  }

  .story-panel-content {
    padding: 3.5rem;
  }

  .stats-panel {
    padding: 3.5rem;
  }
}