﻿*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #F9F4EC;
  --warm-white: #FDF8F2;
  --gold: #C8973A;
  --gold-light: #E8C87A;
  --gold-dark: #9B6F22;
  --earth: #6B4C2A;
  --earth-deep: #3E2A14;
  --sage: #7A8C6E;
  --sage-light: #B5C4A8;
  --ivory: #EDE5D5;
  --text-dark: #2A1F12;
  --text-mid: #5C4535;
  --text-light: #8C7560;
  --section-gap: 100px;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* â”€â”€â”€ NAVIGATION â”€â”€â”€ */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(253, 248, 242, 0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(200, 151, 58, 0.2);
  padding: 0 5%;
  display: flex; align-items: center; justify-content: space-between;
  height: 72px;
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 4px 30px rgba(62,42,20,0.08); }
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 700;
  color: var(--earth-deep);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  font-size: 0.85rem; font-weight: 500; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--text-mid);
  text-decoration: none; transition: color 0.2s;
}
.nav-links a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: white; padding: 0.6rem 1.5rem;
  border-radius: 2px; font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; transition: background 0.2s;
}
.nav-cta:hover { background: var(--gold-dark); }
.nav-hamburger { display: none; cursor: pointer; flex-direction: column; gap: 5px; }
.nav-hamburger span { width: 24px; height: 2px; background: var(--earth); display: block; transition: 0.3s; }

/* â”€â”€â”€ HERO â”€â”€â”€ */
#hero {
  min-height: 100vh;
  background: linear-gradient(165deg, #3E2A14 0%, #6B4C2A 45%, #9B6F22 100%);
  display: flex; align-items: center;
  position: relative; overflow: hidden;
  padding-top: 72px;
}
.hero-texture {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(200,151,58,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(249,244,236,0.08) 0%, transparent 40%);
}
.hero-pattern {
  position: absolute; right: -10%; top: 50%; transform: translateY(-50%);
  width: 55%; height: 110%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='400' height='400'%3E%3Ccircle cx='200' cy='200' r='190' fill='none' stroke='rgba(200,151,58,0.15)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='150' fill='none' stroke='rgba(200,151,58,0.1)' stroke-width='1'/%3E%3Ccircle cx='200' cy='200' r='110' fill='none' stroke='rgba(200,151,58,0.08)' stroke-width='1'/%3E%3C/svg%3E") center/contain no-repeat;
}
.hero-img-wrap {
  position: absolute; right: 5%; top: 50%; transform: translateY(-50%);
  width: 42%; max-width: 580px; height: 85%;
  border-radius: 50% 50% 50% 50% / 60% 60% 40% 40%;
  overflow: hidden;
}
.hero-img-wrap img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  filter: brightness(0.88) saturate(1.1);
}
.hero-content {
  position: relative; z-index: 2;
  padding: 0 5%; max-width: 600px;
}
.hero-tag {
  display: inline-block;
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold-light);
  border: 1px solid rgba(200,151,58,0.4);
  padding: 0.4rem 1rem; border-radius: 2px; margin-bottom: 1.5rem;
}
.hero-h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.8rem, 5vw, 4.5rem);
  font-weight: 700; line-height: 1.1; color: var(--cream);
  margin-bottom: 1.2rem;
}
.hero-h1 em { font-style: italic; color: var(--gold-light); }
.hero-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem; font-weight: 300; line-height: 1.7;
  color: rgba(249,244,236,0.8); margin-bottom: 2.5rem;
}
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  background: var(--gold); color: white; padding: 0.9rem 2.2rem;
  border-radius: 2px; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s; border: 2px solid var(--gold);
}
.btn-primary:hover { background: var(--gold-dark); border-color: var(--gold-dark); }
.btn-outline {
  background: transparent; color: var(--cream); padding: 0.9rem 2.2rem;
  border-radius: 2px; font-size: 0.85rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; transition: all 0.2s; border: 2px solid rgba(249,244,236,0.5);
}
.btn-outline:hover { border-color: var(--cream); background: rgba(249,244,236,0.1); }
.hero-stats {
  display: flex; gap: 3rem; margin-top: 3.5rem;
  border-top: 1px solid rgba(200,151,58,0.3); padding-top: 2rem;
}
.hero-stat-val {
  font-family: 'Playfair Display', serif;
  font-size: 2rem; font-weight: 700; color: var(--gold-light);
}
.hero-stat-label {
  font-size: 0.75rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(249,244,236,0.6);
  margin-top: 0.2rem;
}

/* â”€â”€â”€ SECTION COMMONS â”€â”€â”€ */
section { padding: var(--section-gap) 5%; }
.section-tag {
  display: inline-block;
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 0.8rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 700; line-height: 1.15; color: var(--earth-deep);
  margin-bottom: 1rem;
}
.section-title em { font-style: italic; color: var(--gold); }
.section-sub {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.15rem; line-height: 1.8; color: var(--text-mid);
  max-width: 580px;
}
.section-head { margin-bottom: 3.5rem; }
.section-head.center { text-align: center; }
.section-head.center .section-sub { margin: 0 auto; }

/* --- ABOUT US --- */
#about { background: var(--warm-white); }
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-content .section-tag { display: block; }
.about-content .section-title { margin-bottom: 1.2rem; }
.about-lead {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  line-height: 1.75;
  color: var(--text-mid);
  margin-bottom: 1.2rem;
}
.about-text {
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 1.8rem;
}
.about-highlights {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-bottom: 2rem;
}
.about-highlights li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9rem;
  line-height: 1.6;
  color: var(--text-mid);
}
.about-highlights li::before {
  content: '';
  flex-shrink: 0;
  width: 8px;
  height: 8px;
  margin-top: 0.45rem;
  border-radius: 50%;
  background: var(--gold);
}
.about-cta { display: inline-block; }
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 4px;
  display: block;
  box-shadow: 0 20px 50px rgba(62, 42, 20, 0.12);
}
.about-image::before {
  content: '';
  position: absolute;
  top: -16px;
  right: -16px;
  width: 100%;
  height: 100%;
  border: 2px solid var(--gold-light);
  border-radius: 4px;
  z-index: -1;
}
.about-image-badge {
  position: absolute;
  bottom: 24px;
  left: 24px;
  background: var(--earth-deep);
  color: var(--cream);
  padding: 1rem 1.4rem;
  border-radius: 4px;
  border-left: 4px solid var(--gold);
}
.about-badge-year {
  display: block;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--gold-light);
}
.about-badge-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(249, 244, 236, 0.7);
}

/* --- PRODUCTS --- */
#products { background: var(--cream); }
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2px; margin-top: 0.5rem;
}
.product-card {
  background: white; position: relative; overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.25,0.46,0.45,0.94);
}
.product-card:hover { transform: translateY(-6px); }
.product-img-wrap {
  width: 100%; height: 320px; overflow: hidden; position: relative;
}
.product-img-wrap img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 0.6s ease;
}
.product-card:hover .product-img-wrap img { transform: scale(1.06); }
.product-badge {
  position: absolute; top: 16px; left: 16px;
  background: var(--earth-deep); color: var(--cream);
  font-size: 0.65rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; padding: 0.35rem 0.8rem;
}
.product-info { padding: 1.6rem 1.8rem 2rem; }
.product-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem; font-weight: 600; color: var(--earth-deep);
  margin-bottom: 0.5rem;
}
.product-desc {
  font-size: 0.9rem; line-height: 1.7; color: var(--text-light);
  margin-bottom: 1.2rem;
}
.product-meta { display: flex; justify-content: space-between; align-items: center; }
.product-price {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 700; color: var(--gold);
}
.product-price span { font-size: 0.9rem; font-weight: 400; color: var(--text-light); }
.product-moq {
  font-size: 0.75rem; color: var(--text-light);
  background: var(--ivory); padding: 0.3rem 0.7rem; border-radius: 2px;
}
.product-features { margin-top: 1rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.feat-pill {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.06em;
  background: #F0EAE0; color: var(--earth); padding: 0.25rem 0.7rem;
  border-radius: 20px;
}

/* â”€â”€â”€ GALLERY â”€â”€â”€ */
#gallery { background: var(--earth-deep); padding-bottom: 80px; }
#gallery .section-title, #gallery .section-tag { color: var(--cream); }
#gallery .section-title em { color: var(--gold-light); }
#gallery .section-sub { color: rgba(249,244,236,0.7); }
.gallery-frame {
  max-width: 1140px;
  margin: 0 auto;
  padding: 14px;
  background: rgba(249, 244, 236, 0.05);
  border: 2px solid rgba(200, 151, 58, 0.5);
  border-radius: 6px;
  box-shadow:
    inset 0 0 0 1px rgba(249, 244, 236, 0.08),
    0 24px 50px rgba(0, 0, 0, 0.35);
}
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.gallery-item {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 3px;
  background: var(--earth-deep);
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease, filter 0.3s;
  filter: brightness(0.92);
}
.gallery-item:hover img { transform: scale(1.05); filter: brightness(1); }
.gallery-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(62,42,20,0.7) 0%, transparent 50%);
  opacity: 0; transition: opacity 0.3s;
  display: flex; align-items: flex-end; padding: 1.2rem;
}
.gallery-item:hover .gallery-overlay { opacity: 1; }
.gallery-overlay-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem; color: var(--cream); font-style: italic;
}

/* â”€â”€â”€ WHY CHOOSE US â”€â”€â”€ */
#why { background: var(--warm-white); }
.why-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 6rem; align-items: center; }
.why-img-side { position: relative; }
.why-img-main {
  width: 100%; height: 560px; object-fit: cover;
  border-radius: 4px;
}
.why-img-accent {
  position: absolute; bottom: -30px; right: -30px;
  width: 200px; height: 200px; object-fit: cover;
  border-radius: 50%; border: 8px solid var(--warm-white);
}
.why-gold-badge {
  position: absolute; top: -20px; left: -20px;
  width: 110px; height: 110px; background: var(--gold);
  border-radius: 50%; display: flex; flex-direction: column;
  align-items: center; justify-content: center; text-align: center;
  color: white;
}
.why-badge-num { font-family: 'Playfair Display', serif; font-size: 1.8rem; font-weight: 700; line-height: 1; }
.why-badge-text { font-size: 0.6rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-top: 2px; }
.why-features { display: flex; flex-direction: column; gap: 2rem; margin-top: 2.5rem; }
.why-feature { display: flex; gap: 1.2rem; }
.why-feature-icon {
  flex-shrink: 0;
  width: 52px;
  height: 52px;
  background: var(--ivory);
  border: 1px solid rgba(200, 151, 58, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
  transition: background 0.3s, color 0.3s, border-color 0.3s;
}
.why-feature:hover .why-feature-icon {
  background: var(--gold);
  color: var(--cream);
  border-color: var(--gold);
}
.why-feature-icon svg {
  width: 22px;
  height: 22px;
  display: block;
}
.why-feature-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem; font-weight: 600; color: var(--earth-deep); margin-bottom: 0.3rem;
}
.why-feature-desc { font-size: 0.88rem; line-height: 1.7; color: var(--text-light); }

/* â”€â”€â”€ TESTIMONIALS â”€â”€â”€ */
#testimonials { background: var(--cream); }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}
.testi-card {
  background: white; padding: 2.2rem 2rem;
  border-radius: 4px; position: relative;
  border-top: 3px solid var(--gold);
  transition: box-shadow 0.3s;
}
.testi-card:hover { box-shadow: 0 12px 40px rgba(62,42,20,0.08); }
.testi-quote-mark {
  font-family: 'Playfair Display', serif;
  font-size: 5rem; line-height: 0.6;
  color: var(--gold-light); margin-bottom: 1rem; display: block;
}
.testi-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; line-height: 1.8; color: var(--text-mid);
  font-style: italic; margin-bottom: 1.5rem;
}
.testi-author { display: flex; align-items: center; gap: 0.8rem; }
.testi-avatar {
  width: 44px; height: 44px; border-radius: 50%; overflow: hidden;
  background: var(--ivory); flex-shrink: 0;
}
.testi-avatar img { width: 100%; height: 100%; object-fit: cover; }
.testi-name { font-size: 0.9rem; font-weight: 600; color: var(--earth-deep); }
.testi-role { font-size: 0.78rem; color: var(--text-light); margin-top: 0.1rem; }
.testi-stars { color: var(--gold); font-size: 0.85rem; margin-bottom: 0.8rem; }

/* â”€â”€â”€ MISSION & VISION â”€â”€â”€ */
#mission {
  background: linear-gradient(135deg, #2A1F12 0%, #3E2A14 60%, #6B4C2A 100%);
  position: relative; overflow: hidden;
}
.mission-bg-art {
  position: absolute; right: 0; top: 0; height: 100%; width: 50%;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='600' height='600'%3E%3Ccircle cx='300' cy='300' r='280' fill='none' stroke='rgba(200,151,58,0.12)' stroke-width='60'/%3E%3Ccircle cx='300' cy='300' r='200' fill='none' stroke='rgba(200,151,58,0.07)' stroke-width='40'/%3E%3C/svg%3E") center/cover no-repeat;
  opacity: 0.8;
}
.mission-layout { position: relative; z-index: 1; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; }
.mv-card {
  padding: 3rem; background: rgba(249,244,236,0.05);
  border: 1px solid rgba(200,151,58,0.25); border-radius: 4px;
  transition: background 0.3s;
}
.mv-card:hover { background: rgba(249,244,236,0.08); }
.mv-label {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1rem;
}
.mv-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.9rem; font-weight: 700; color: var(--cream);
  line-height: 1.2; margin-bottom: 1.2rem;
}
.mv-title em { font-style: italic; color: var(--gold-light); }
.mv-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem; line-height: 1.85; color: rgba(249,244,236,0.75);
}
.mv-divider {
  width: 50px; height: 2px; background: var(--gold);
  margin: 1.5rem 0;
}
.mv-values { display: flex; flex-direction: column; gap: 0.8rem; margin-top: 1.5rem; }
.mv-value-item {
  display: flex; align-items: center; gap: 0.8rem;
  font-size: 0.88rem; color: rgba(249,244,236,0.8);
}
.mv-value-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex-shrink: 0; }

/* â”€â”€â”€ CONTACT â”€â”€â”€ */
#contact { background: var(--warm-white); }
.contact-layout { display: grid; grid-template-columns: 1fr 1.2fr; gap: 5rem; align-items: start; }
.contact-info h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem; font-weight: 600; color: var(--earth-deep); margin-bottom: 2rem;
}
.contact-detail { display: flex; gap: 1rem; margin-bottom: 1.5rem; align-items: flex-start; }
.contact-detail-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  background: var(--ivory);
  border: 1px solid rgba(200, 151, 58, 0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-dark);
}
.contact-detail-icon svg {
  width: 20px;
  height: 20px;
  display: block;
}
.form-input-wrap {
  position: relative;
  display: flex;
  align-items: stretch;
}
.form-field-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  width: 18px;
  height: 18px;
  color: var(--gold-dark);
  pointer-events: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 1;
}
.form-input-wrap--textarea textarea {
  padding-top: 0.85rem;
  min-height: 120px;
  resize: vertical;
}
.form-input-wrap--textarea .form-field-icon {
  top: 1rem;
  transform: none;
}
.form-field-icon svg {
  width: 18px;
  height: 18px;
  display: block;
}
.contact-detail-label { font-size: 0.72rem; font-weight: 600; letter-spacing: 0.12em; text-transform: uppercase; color: var(--gold); margin-bottom: 0.2rem; }
.contact-detail-val { font-size: 0.95rem; color: var(--text-mid); }
.contact-form-card {
  background: white; border-radius: 4px;
  padding: 2.5rem; box-shadow: 0 4px 30px rgba(62,42,20,0.06);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; margin-bottom: 1rem; }
.form-group { display: flex; flex-direction: column; gap: 0.4rem; margin-bottom: 1rem; }
.form-group label { font-size: 0.78rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--text-mid); }
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1.5px solid #E8E0D4;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  outline: none;
  transition: border-color 0.2s;
}
.form-input-wrap input,
.form-input-wrap select,
.form-input-wrap textarea {
  width: 100%;
  padding: 0.75rem 1rem 0.75rem 3.25rem;
  border: 1.5px solid #E8E0D4;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--warm-white);
  outline: none;
  transition: border-color 0.2s;
  box-sizing: border-box;
}
.form-input-wrap select {
  padding-right: 2.5rem;
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%238C7560' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  background-color: var(--warm-white);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus,
.form-input-wrap input:focus,
.form-input-wrap select:focus,
.form-input-wrap textarea:focus {
  border-color: var(--gold);
}
.form-input-wrap:focus-within .form-field-icon {
  color: var(--gold);
}
.form-group textarea { resize: vertical; min-height: 120px; }
.form-input-wrap { width: 100%; }
.form-submit {
  width: 100%;
  background: var(--earth-deep);
  color: white;
  padding: 1rem 2rem;
  border: none;
  border-radius: 2px;
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
  margin-top: 0.5rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
}
.form-submit svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.form-submit:hover { background: var(--earth); }
.form-success {
  display: none; text-align: center; padding: 1.5rem;
  background: #EAF3DE; border-radius: 4px; color: #3B6D11;
  font-size: 0.95rem; margin-top: 1rem;
}

/* â”€â”€â”€ FAQ â”€â”€â”€ */
#faq { background: var(--cream); }
.faq-layout { display: grid; grid-template-columns: 1fr 1.8fr; gap: 5rem; align-items: start; }
.faq-list { display: flex; flex-direction: column; gap: 0; }
.faq-item {
  border-bottom: 1px solid var(--ivory);
}
.faq-question {
  width: 100%; background: none; border: none;
  text-align: left; padding: 1.5rem 0;
  font-family: 'Jost', sans-serif; font-size: 0.97rem; font-weight: 500;
  color: var(--earth-deep); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  gap: 1rem; transition: color 0.2s;
}
.faq-question:hover { color: var(--gold); }
.faq-icon {
  width: 22px; height: 22px; flex-shrink: 0;
  border-radius: 50%; background: var(--ivory);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; color: var(--gold); transition: transform 0.3s;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }
.faq-answer {
  max-height: 0; overflow: hidden; transition: max-height 0.4s ease, padding 0.3s;
  font-size: 0.9rem; line-height: 1.8; color: var(--text-light);
  padding-bottom: 0;
}
.faq-item.open .faq-answer { max-height: 300px; padding-bottom: 1.5rem; }

/* â”€â”€â”€ FOOTER â”€â”€â”€ */
footer {
  background: var(--earth-deep); color: rgba(249,244,236,0.7);
  padding: 4rem 5% 2rem;
}
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer-brand-name {
  font-family: 'Playfair Display', serif; font-size: 1.3rem; font-weight: 700;
  color: var(--cream); margin-bottom: 0.8rem;
}
.footer-brand-name span { color: var(--gold); }
.footer-tagline {
  font-family: 'Cormorant Garamond', serif; font-size: 1rem; font-style: italic;
  color: rgba(249,244,236,0.6); margin-bottom: 1.2rem; line-height: 1.6;
}
.footer-col-title {
  font-size: 0.72rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.2rem;
}
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(249,244,236,0.65); text-decoration: none; font-size: 0.88rem; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold-light); }
.footer-bottom {
  border-top: 1px solid rgba(200,151,58,0.2); padding-top: 1.5rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.8rem; color: rgba(249,244,236,0.45);
  flex-wrap: wrap; gap: 0.5rem;
}

/* â”€â”€â”€ RESPONSIVE â”€â”€â”€ */
@media (max-width: 1024px) {
  .about-layout, .why-layout, .mission-layout, .contact-layout, .faq-layout { grid-template-columns: 1fr; gap: 3rem; }
  .about-image img { height: 420px; }
  .why-img-side { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .gallery-frame { padding: 10px; }
  .hero-img-wrap { display: none; }
  .hero-h1 { font-size: 3rem; }
}
@media (max-width: 768px) {
  :root { --section-gap: 60px; }
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .gallery-grid { grid-template-columns: 1fr; gap: 8px; }
  .gallery-frame { padding: 8px; }
  .footer-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-stats { gap: 1.5rem; }
  .about-image img { height: 320px; }
  .about-image::before { display: none; }
}

/* â”€â”€â”€ ANIMATIONS â”€â”€â”€ */
.fade-up {
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }
.fade-up:nth-child(2) { transition-delay: 0.1s; }
.fade-up:nth-child(3) { transition-delay: 0.2s; }
.fade-up:nth-child(4) { transition-delay: 0.3s; }

.faq-cta { margin-top: 2rem; }
.faq-cta .btn-primary { display: inline-block; }
.footer-meta {
  font-size: 0.82rem;
  line-height: 1.6;
  color: rgba(249, 244, 236, 0.45);
}
