/* ============================================
   ATTAR GURU – style.css  v2.0
   "The Olfactory Gallery" — Luxury + Readability
   ============================================ */

/* --- Variables --- */
:root {
  --primary: #061b0e;
  --primary-container: #1b3022;
  --secondary: #5f5e5e;
  --tertiary: #8a6e00;
  --tertiary-fixed: #ffe088;
  --tertiary-container: #cba72f;
  --surface: #fbfbe2;
  --surface-low: #f5f5dc;
  --surface-container: #efefd7;
  --surface-high: #eaead1;
  --surface-highest: #e4e4cc;
  --surface-lowest: #ffffff;
  --on-surface: #1a1c0e;
  --on-surface-variant: #3a3f39;
  --on-primary: #ffffff;
  --on-primary-container: #a8bfac;
  --outline-variant: #c3c8c1;
  --gold: #c9a84c;
  --gold-light: #e8c97a;
  --whatsapp: #25d366;
  --whatsapp-dark: #1da851;

  --font-serif: 'Cormorant Garamond', 'Noto Serif', Georgia, serif;
  --font-body: 'Manrope', -apple-system, sans-serif;

  --transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
  --shadow-soft: 0 4px 40px rgba(6, 27, 14, 0.1);
  --shadow-card: 0 12px 50px rgba(6, 27, 14, 0.15);
  --shadow-hover: 0 20px 60px rgba(6, 27, 14, 0.2);
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-body);
  background-color: var(--surface);
  color: var(--on-surface);
  overflow-x: hidden;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { text-decoration: none; color: inherit; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
input, select, textarea { font-family: inherit; }
ul { list-style: none; }

/* --- Typography Utilities --- */
.eyebrow {
  display: block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--tertiary);
  margin-bottom: 1.1rem;
}
.eyebrow-light { color: var(--gold-light); }

.section-title {
  font-family: var(--font-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  font-weight: 600;
  line-height: 1.1;
  color: var(--primary);
  margin-bottom: 1.5rem;
}
.section-title em {
  font-style: italic;
  color: var(--tertiary);
  font-weight: 400;
}
.section-title-light { color: var(--surface); }
.section-title-light em { color: var(--gold-light); }

/* --- Buttons --- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: var(--surface-lowest);
  color: var(--primary);
  padding: 1rem 2.2rem;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  border-radius: 3px;
  transition: var(--transition);
  min-height: 52px;
  box-shadow: 0 2px 14px rgba(0,0,0,0.12);
}
.btn-primary:hover {
  background: var(--gold-light);
  color: var(--primary);
  transform: translateY(-3px);
  box-shadow: 0 10px 35px rgba(0,0,0,0.25);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.55);
  padding: 1rem 2rem;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  border-radius: 3px;
  transition: var(--transition);
  min-height: 52px;
}
.btn-ghost svg { fill: #25d366; flex-shrink: 0; }
.btn-ghost:hover {
  background: rgba(255,255,255,0.15);
  border-color: rgba(255,255,255,0.9);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0,0,0,0.2);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  background: rgba(251, 251, 226, 0.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: var(--transition);
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: rgba(251, 251, 226, 0.98);
  border-bottom-color: var(--outline-variant);
  box-shadow: 0 2px 20px rgba(6, 27, 14, 0.08);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1440px;
  margin: 0 auto;
  padding: 1.1rem 2.5rem;
  gap: 1.5rem;
}

.nav-logo { font-size: 1.55rem; letter-spacing: -0.02em; flex-shrink: 0; }
.logo-serif {
  font-family: var(--font-serif);
  font-weight: 700;
  color: var(--primary);
  font-style: italic;
}
.logo-light {
  font-family: var(--font-body);
  font-weight: 300;
  color: var(--tertiary);
  margin-left: 2px;
}

.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-link {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  transition: var(--transition);
  position: relative;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: -4px; left: 0;
  width: 0; height: 1.5px;
  background: var(--tertiary);
  transition: width 0.3s ease;
}
.nav-link:hover { color: var(--primary); }
.nav-link:hover::after { width: 100%; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--whatsapp);
  color: #fff;
  padding: 0.65rem 1.5rem;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: var(--transition);
  white-space: nowrap;
  box-shadow: 0 3px 16px rgba(37, 211, 102, 0.35);
}
.nav-cta svg { fill: #fff; }
.nav-cta:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(37, 211, 102, 0.5);
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 26px; height: 2px;
  background: var(--primary);
  transition: var(--transition);
  border-radius: 2px;
}

.mobile-menu {
  display: none;
  flex-direction: column;
  background: var(--surface);
  padding: 1.5rem 2rem 2rem;
  border-top: 1px solid var(--outline-variant);
  gap: 0.2rem;
}
.mobile-menu.open { display: flex; }
.mobile-link {
  padding: 0.9rem 0;
  font-size: 1rem;
  font-weight: 600;
  color: var(--on-surface);
  border-bottom: 1px solid var(--surface-high);
  transition: color 0.2s;
}
.mobile-link:hover { color: var(--tertiary); }
.mobile-whatsapp {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.6rem;
  margin-top: 1.2rem;
  background: var(--whatsapp);
  color: #fff;
  padding: 1rem;
  font-weight: 700;
  font-size: 1rem;
  border-radius: 3px;
  box-shadow: 0 4px 18px rgba(37, 211, 102, 0.4);
}

/* ============================================
   HERO — Dark green bg, same as bespoke
   ============================================ */
.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 650px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--primary-container);
}

#glslCanvas {
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 100%;
  z-index: 2;
  pointer-events: none;
  mix-blend-mode: screen;
  opacity: 0.6;
}

/* Pure dark green bg — rich layered depth, no photo */
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background:
    radial-gradient(ellipse at 28% 65%, rgba(201, 168, 76, 0.2) 0%, transparent 50%),
    radial-gradient(ellipse at 78% 28%, rgba(27, 48, 34, 0.7) 0%, transparent 55%),
    linear-gradient(155deg, #0d2718 0%, #1b3022 45%, #091a0d 100%);
}
/* Hide the img entirely — bg colour is the hero */
.hero-bg .hero-img { display: none; }
.hero-overlay { display: none; }

/* Subtle noise grain for depth */
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='300' height='300'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 10;
  text-align: center;
  color: white;
  padding: 0 2rem;
  max-width: 960px;
  animation: fadeInUp 1.2s ease both;
  animation-delay: 0.3s;
}

.hero-eyebrow {
  font-family: var(--font-body);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.8rem;
  opacity: 0.88;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.2rem, 9vw, 7.5rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.02em;
  color: #fff;
  margin-bottom: 1.4rem;
}
.hero-title em {
  font-style: italic;
  color: var(--gold-light);
  font-weight: 400;
}

.hero-subtitle {
  font-family: var(--font-body);
  font-size: clamp(0.9rem, 1.8vw, 1.1rem);
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.68);
  margin-bottom: 3rem;
}

.hero-actions {
  display: flex;
  gap: 1.2rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-badges {
  display: flex;
  gap: 0.8rem;
  justify-content: center;
  flex-wrap: wrap;
}
.badge {
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  background: rgba(255,255,255,0.1);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.2);
  color: rgba(255,255,255,0.88);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
}

.scroll-hint {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(255,255,255,0.4);
  font-size: 0.68rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  animation: scrollHint 2.2s ease-in-out infinite;
}
.scroll-line {
  width: 1px; height: 44px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
}

/* ============================================
   TRUST STRIP
   ============================================ */
.trust-strip {
  background: var(--primary);
  padding: 2rem;
}
.trust-strip-inner {
  max-width: 1000px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.3rem;
  padding: 0.6rem 3rem;
  flex: 1;
  min-width: 130px;
}
.trust-num {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--gold-light);
  line-height: 1;
}
.trust-label {
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.52);
}
.trust-divider {
  width: 1px; height: 44px;
  background: rgba(255,255,255,0.1);
  flex-shrink: 0;
}

/* ============================================
   HERITAGE
   ============================================ */
.heritage {
  display: flex;
  flex-direction: row;
  min-height: 700px;
  background: var(--surface);
  overflow: hidden;
}
.heritage-image-wrap {
  width: 50%;
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
}
.heritage-img {
  width: 100%; height: 100%;
  object-fit: cover;
  filter: sepia(0.2) saturate(0.9) brightness(0.95);
  transition: transform 0.9s ease;
}
.heritage-image-wrap:hover .heritage-img { transform: scale(1.04); }
.heritage-year-badge {
  position: absolute;
  bottom: 2.5rem;
  right: -1rem;
  background: var(--primary);
  color: var(--gold-light);
  font-family: var(--font-serif);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.22em;
  padding: 0.9rem 2.2rem 0.9rem 1.6rem;
  text-transform: uppercase;
  z-index: 2;
}
.heritage-content {
  width: 50%;
  padding: 5rem 6rem 5rem 5rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.heritage-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.3rem;
  color: var(--on-surface-variant);
  line-height: 1.75;
  margin-bottom: 1.4rem;
  font-weight: 500;
}
.heritage-body {
  font-size: 1rem;
  color: var(--on-surface-variant);
  line-height: 1.9;
  font-weight: 400;
  margin-bottom: 2.8rem;
}
.heritage-usps { display: flex; flex-direction: column; gap: 1.4rem; }
.usp-item { display: flex; align-items: flex-start; gap: 1.1rem; }
.usp-icon { font-size: 1.5rem; margin-top: 0.1rem; flex-shrink: 0; }
.usp-title {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.2rem;
}
.usp-desc {
  font-size: 0.92rem;
  color: var(--on-surface-variant);
  font-weight: 400;
  line-height: 1.65;
}

/* ============================================
   COLLECTIONS
   ============================================ */
.collections {
  background: var(--surface-low);
  padding: 7rem 2rem;
}
.collections-header {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 4.5rem;
}
.collections-sub {
  font-size: 1.1rem;
  color: var(--on-surface-variant);
  font-style: italic;
  font-family: var(--font-serif);
  font-weight: 500;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  max-width: 1340px;
  margin: 0 auto;
}
.collection-card {
  background: var(--surface-lowest);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform 0.4s cubic-bezier(0.4,0,0.2,1), box-shadow 0.4s ease;
  animation: fadeInUp 0.7s ease both;
  animation-delay: var(--delay, 0s);
}
.collection-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-hover);
}
.card-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
}
.card-img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}
.collection-card:hover .card-img { transform: scale(1.07); }
.card-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 27, 14, 0.68);
  display: flex;
  align-items: flex-end;
  padding: 1.5rem;
  opacity: 0;
  transition: opacity 0.35s ease;
}
.collection-card:hover .card-overlay { opacity: 1; }
.card-btn {
  background: var(--whatsapp);
  color: #fff;
  padding: 0.7rem 1.4rem;
  font-size: 0.84rem;
  font-weight: 700;
  border-radius: 3px;
  letter-spacing: 0.03em;
  transition: background 0.2s;
  box-shadow: 0 3px 14px rgba(37,211,102,0.45);
}
.card-btn:hover { background: var(--whatsapp-dark); }
.card-body { padding: 1.7rem 1.6rem; }
.card-title {
  font-family: var(--font-serif);
  font-size: 1.45rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.65rem;
}
.card-desc {
  font-size: 0.94rem;
  color: var(--on-surface-variant);
  line-height: 1.75;
  margin-bottom: 1.1rem;
  font-weight: 400;
}
.card-tags { display: flex; flex-wrap: wrap; gap: 0.4rem; }
.tag {
  font-size: 0.72rem;
  font-weight: 600;
  background: var(--surface-container);
  color: var(--on-surface-variant);
  padding: 0.32rem 0.78rem;
  border-radius: 100px;
  letter-spacing: 0.04em;
}

/* ============================================
   BESPOKE
   ============================================ */
.bespoke {
  background: var(--primary-container);
  padding: 7rem 2rem;
}
.bespoke-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.bespoke-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.74);
  line-height: 1.88;
  margin-bottom: 2.2rem;
  font-weight: 400;
}
.bespoke-list { display: flex; flex-direction: column; gap: 1rem; }
.bespoke-list li {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.74);
  letter-spacing: 0.02em;
  font-weight: 500;
}

.bespoke-form-wrap {
  background: var(--surface-lowest);
  border-radius: 4px;
  padding: 2.8rem;
  box-shadow: 0 24px 70px rgba(0,0,0,0.35);
}
.form-title {
  font-family: var(--font-serif);
  font-size: 1.55rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 2rem;
  padding-bottom: 1.1rem;
  border-bottom: 1px solid var(--outline-variant);
}
.form-group { margin-bottom: 1.5rem; }
.form-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--on-surface-variant);
  margin-bottom: 0.55rem;
}
.form-input {
  width: 100%;
  border: none;
  border-bottom: 2px solid var(--outline-variant);
  background: transparent;
  padding: 0.85rem 0;
  font-size: 1rem;
  color: var(--on-surface);
  outline: none;
  transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
  -webkit-appearance: none;
  font-weight: 500;
}
.form-input:focus { border-bottom-color: var(--primary); }
.form-input::placeholder { color: #b0b0a0; font-weight: 400; }
.form-select {
  cursor: pointer;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23434843' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 24px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
.form-submit {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.7rem;
  background: var(--whatsapp);
  color: #fff;
  padding: 1.1rem;
  font-size: 1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  border-radius: 3px;
  transition: var(--transition);
  margin-top: 1.6rem;
  min-height: 54px;
  box-shadow: 0 4px 20px rgba(37,211,102,0.4);
}
.form-submit:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(37,211,102,0.55);
}
.form-note {
  text-align: center;
  font-size: 0.8rem;
  color: var(--on-surface-variant);
  margin-top: 0.85rem;
  font-weight: 500;
}

/* ============================================
   WHY US
   ============================================ */
.why-us { background: var(--surface); padding: 7rem 2rem; }
.why-us-inner { max-width: 1240px; margin: 0 auto; }
.why-us-header {
  text-align: center;
  margin: 0 auto 4.5rem;
  max-width: 660px;
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.8rem;
}
.why-card {
  background: var(--surface-low);
  padding: 2.8rem 2.2rem;
  border-radius: 3px;
  transition: var(--transition);
  border: 1px solid transparent;
}
.why-card:hover {
  background: var(--surface-lowest);
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
  border-color: var(--outline-variant);
}
.why-icon { font-size: 2.2rem; margin-bottom: 1.3rem; }
.why-title {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--primary);
  margin-bottom: 0.75rem;
}
.why-desc {
  font-size: 0.97rem;
  color: var(--on-surface-variant);
  line-height: 1.78;
  font-weight: 400;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials { background: var(--primary); padding: 7rem 2rem; }
.testimonials-inner { max-width: 1200px; margin: 0 auto; text-align: center; }
.testimonials-inner .eyebrow { color: var(--gold-light); }
.testimonials-inner .section-title { color: var(--surface); }
.testimonials-inner .section-title em { color: var(--gold-light); }
.testimonials-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr 1fr;
  gap: 1.6rem;
  margin-top: 4rem;
  align-items: start;
}
.testi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 3px;
  padding: 2.2rem;
  text-align: left;
  transition: var(--transition);
}
.testi-card:hover { background: rgba(255,255,255,0.1); transform: translateY(-5px); }
.testi-featured {
  background: rgba(201,168,76,0.12);
  border-color: rgba(201,168,76,0.3);
}
.testi-stars { color: var(--gold-light); font-size: 1.05rem; letter-spacing: 3px; margin-bottom: 1.1rem; }
.testi-text {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.08rem;
  color: rgba(255,255,255,0.82);
  line-height: 1.78;
  margin-bottom: 1.6rem;
}
.testi-author { display: flex; align-items: center; gap: 0.9rem; }
.testi-avatar {
  width: 42px; height: 42px;
  background: var(--gold);
  color: var(--primary);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 0.95rem;
  flex-shrink: 0;
}
.testi-name { font-size: 0.94rem; font-weight: 700; color: rgba(255,255,255,0.92); }
.testi-city { font-size: 0.76rem; color: rgba(255,255,255,0.4); letter-spacing: 0.1em; margin-top: 0.1rem; }

/* ============================================
   GALLERY
   ============================================ */
.gallery { background: var(--surface-container); padding: 7rem 2rem; }
.gallery-header { text-align: center; max-width: 660px; margin: 0 auto 4rem; }
.gallery-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  grid-template-rows: auto auto;
  gap: 1rem;
  max-width: 1240px;
  margin: 0 auto;
}
.gallery-item { overflow: hidden; border-radius: 3px; aspect-ratio: 4/3; }
.gallery-item.large { grid-row: 1 / 3; aspect-ratio: auto; }
.gallery-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
  filter: saturate(0.85);
}
.gallery-item:hover img { transform: scale(1.07); filter: saturate(1); }

/* ============================================
   CONTACT
   ============================================ */
.contact { background: var(--primary-container); padding: 7rem 2rem; }
.contact-inner {
  max-width: 1200px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}
.contact-desc {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.68);
  line-height: 1.88;
  margin-bottom: 2.8rem;
  font-weight: 400;
}
.contact-items { display: flex; flex-direction: column; gap: 1.2rem; }
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 1.1rem;
  padding: 1.3rem;
  background: rgba(255,255,255,0.07);
  border-radius: 3px;
  border: 1px solid rgba(255,255,255,0.09);
  transition: var(--transition);
}
.contact-item:hover {
  background: rgba(255,255,255,0.12);
  transform: translateX(5px);
  border-color: rgba(255,255,255,0.18);
}
.contact-icon {
  width: 46px; height: 46px;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  font-size: 1.1rem;
}
.whatsapp-icon { background: var(--whatsapp); }
.whatsapp-icon svg { fill: #fff; }
.phone-icon, .email-icon, .addr-icon { background: rgba(255,255,255,0.12); }
.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 0.25rem;
}
.contact-value {
  font-size: 0.97rem;
  color: rgba(255,255,255,0.88);
  line-height: 1.55;
  font-weight: 500;
}
.contact-map-wrap { position: relative; }
.contact-map {
  width: 100%; height: 400px;
  border: none; border-radius: 3px; display: block;
  filter: grayscale(0.3) sepia(0.1);
}
.delivery-badge {
  margin-top: 1.1rem;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.13);
  color: rgba(255,255,255,0.7);
  text-align: center;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 0.9rem;
  border-radius: 3px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer { background: var(--primary); padding: 5.5rem 2rem 0; }
.footer-inner {
  max-width: 1240px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1.5fr;
  gap: 4rem;
  padding-bottom: 4rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-logo { font-size: 1.8rem; margin-bottom: 1.3rem; display: block; }
.footer-tagline {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.88;
  margin-bottom: 1.6rem;
  font-weight: 400;
}
.footer-badges { display: flex; gap: 0.5rem; flex-wrap: wrap; }
.f-badge {
  font-size: 0.7rem; font-weight: 600;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.6);
  padding: 0.38rem 0.8rem; border-radius: 100px;
}
.footer-heading {
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold-light); margin-bottom: 1.6rem;
}
.footer-links { display: flex; flex-direction: column; gap: 0.9rem; }
.footer-link {
  font-size: 0.94rem;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  font-weight: 400;
}
.footer-link:hover { color: var(--gold-light); }
.footer-contact-desc {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.3rem;
  line-height: 1.78;
}
.footer-wa-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  background: var(--whatsapp);
  color: #fff;
  padding: 0.8rem 1.6rem;
  font-size: 0.92rem;
  font-weight: 700;
  border-radius: 3px;
  transition: var(--transition);
  box-shadow: 0 3px 16px rgba(37,211,102,0.35);
}
.footer-wa-btn svg { fill: #fff; }
.footer-wa-btn:hover { background: var(--whatsapp-dark); transform: translateY(-2px); }
.footer-bottom {
  max-width: 1240px;
  margin: 0 auto;
  padding: 1.6rem 0;
  font-size: 0.76rem;
  color: rgba(255,255,255,0.25);
  letter-spacing: 0.04em;
  text-align: center;
}

/* ============================================
   STICKY WHATSAPP
   ============================================ */
.sticky-wa {
  position: fixed;
  bottom: 2rem; right: 2rem;
  z-index: 999;
  display: flex;
  align-items: center;
  gap: 0.65rem;
  background: var(--whatsapp);
  color: #fff;
  padding: 0.85rem 1.5rem 0.85rem 1.1rem;
  border-radius: 100px;
  font-size: 0.92rem;
  font-weight: 700;
  box-shadow: 0 5px 30px rgba(37,211,102,0.55);
  transition: var(--transition);
  animation: pulseGlow 3s ease infinite;
}
.sticky-wa svg { fill: #fff; flex-shrink: 0; }
.sticky-wa:hover {
  background: var(--whatsapp-dark);
  transform: translateY(-3px);
  box-shadow: 0 10px 40px rgba(37,211,102,0.65);
  animation: none;
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes scrollHint {
  0%, 100% { opacity: 0.4;  transform: translateX(-50%) translateY(0); }
  50%       { opacity: 0.85; transform: translateX(-50%) translateY(7px); }
}
@keyframes pulseGlow {
  0%, 100% { box-shadow: 0 5px 30px rgba(37,211,102,0.55); }
  50%       { box-shadow: 0 5px 50px rgba(37,211,102,0.85); }
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
  .heritage-content { padding: 4rem 3.5rem; }
  .bespoke-inner { gap: 3.5rem; }
}

@media (max-width: 1024px) {
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .bespoke-inner { grid-template-columns: 1fr; gap: 3rem; }
  .why-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid {
    grid-template-columns: 1fr;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
    margin-top: 3rem;
  }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contact-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  html { font-size: 16px; }
  .nav-links, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-title { font-size: clamp(2.8rem, 11vw, 4.5rem); }
  .heritage { flex-direction: column; }
  .heritage-image-wrap { width: 100%; height: 360px; }
  .heritage-content { width: 100%; padding: 3.5rem 1.8rem; }
  .collections { padding: 5rem 1.5rem; }
  .collections-grid { grid-template-columns: 1fr; }
  .bespoke { padding: 5rem 1.5rem; }
  .bespoke-form-wrap { padding: 2rem 1.5rem; }
  .form-row { grid-template-columns: 1fr; }
  .why-us { padding: 5rem 1.5rem; }
  .why-grid { grid-template-columns: 1fr; }
  .testimonials { padding: 5rem 1.5rem; }
  .gallery { padding: 5rem 1.5rem; }
  .gallery-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large { grid-row: auto; }
  .contact { padding: 5rem 1.5rem; }
  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .contact-map { height: 320px; }
  .footer-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .footer-brand { grid-column: auto; }
  .footer { padding: 4rem 1.5rem 0; }
  .trust-item { padding: 0.5rem 1.5rem; min-width: 90px; }
  .trust-divider { height: 32px; }
  .sticky-wa-text { display: none; }
  .sticky-wa { padding: 1rem; border-radius: 50%; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .nav-inner { padding: 1rem 1.3rem; }
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 300px; justify-content: center; }
  .gallery-grid { grid-template-columns: 1fr; }
  .trust-strip-inner { flex-wrap: wrap; }
  .trust-item { min-width: 46%; }
  .trust-divider { display: none; }
  .section-title { font-size: clamp(2rem, 8vw, 2.8rem); }
}
