/* =========================================================
   Frame Craft Studio — Premium Islamic Calligraphy
   Warm beige · ivory · champagne gold luxury aesthetic
   ========================================================= */

:root {
  /* Palette */
  --ivory: #f8f3ea;
  --cream: #f1ead9;
  --pearl: #fbf7ef;
  --beige: #e8dec8;
  --taupe: #c9b89a;
  --warm-taupe: #a48b6a;
  --champagne: #c8a96a;
  --gold: #b08a4a;
  --deep-gold: #8a6a32;
  --charcoal: #2b2620;
  --soft-charcoal: #4a4138;
  --muted: #7a6f5e;
  --emerald: #2f4a3a;
  --line: rgba(43, 38, 32, 0.12);
  --line-soft: rgba(43, 38, 32, 0.06);
  --shadow-sm: 0 2px 10px rgba(74, 65, 56, 0.06);
  --shadow-md: 0 14px 40px rgba(74, 65, 56, 0.10);
  --shadow-lg: 0 30px 80px rgba(74, 65, 56, 0.16);

  /* Type */
  --serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --sans: 'Inter', 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  /* Layout */
  --max: 1280px;
  --pad: clamp(20px, 4vw, 56px);
  --radius: 14px;
  --radius-lg: 22px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.6;
  font-size: 16px;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--charcoal);
  line-height: 1.15;
}

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  font-weight: 500;
  margin-bottom: 18px;
  display: inline-block;
}

.container {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
}

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--charcoal);
  color: var(--ivory);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-align: center;
  padding: 10px 16px;
  font-weight: 400;
}
.announce span { color: var(--champagne); }
.announce .sep { opacity: 0.4; margin: 0 14px; }

/* ---------- Header ---------- */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(248, 243, 234, 0.92);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid var(--line-soft);
  transition: box-shadow .3s ease, background .3s ease;
}
.header.scrolled { box-shadow: var(--shadow-sm); background: rgba(248,243,234,.96); }

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  gap: 24px;
}
.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1;
  gap: 5px;
  text-decoration: none;
}
.brand-wordmark {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: -0.015em;
  color: var(--charcoal);
}
.brand-wordmark em {
  color: var(--deep-gold);
  font-style: normal;
}
.brand-tagline {
  font-family: var(--sans);
  font-size: 9px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding-left: 2px;
}
/* Footer (dark) variant */
.footer .brand-wordmark { color: var(--ivory); font-size: 28px; }
.footer .brand-wordmark em { color: var(--champagne); }
.footer .brand-tagline { color: var(--taupe); }
.nav-links { display: flex; gap: 34px; align-items: center; }
.nav-links a {
  font-size: 14px;
  letter-spacing: .04em;
  color: var(--soft-charcoal);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-links a:hover { color: var(--gold); }
.nav-links a.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px; height: 1px;
  background: var(--gold);
}
.nav-actions { display: flex; gap: 10px; align-items: center; }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%;
  display: grid; place-items: center;
  border: 1px solid var(--line);
  transition: all .2s ease;
  position: relative;
}
.icon-btn:hover { background: var(--cream); border-color: var(--taupe); }
.icon-btn svg { width: 18px; height: 18px; }
.menu-btn { display: none; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-size: 13.5px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: all .25s ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--charcoal);
  color: var(--ivory);
}
.btn-primary:hover {
  background: var(--soft-charcoal);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}
.btn-gold {
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  color: var(--ivory);
  box-shadow: 0 8px 24px rgba(176, 138, 74, 0.25);
}
.btn-gold:hover { transform: translateY(-1px); box-shadow: 0 12px 32px rgba(176,138,74,.35); }
.btn-ghost {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.btn-ghost:hover { background: var(--charcoal); color: var(--ivory); }
.btn-ghost-light {
  background: transparent;
  color: var(--ivory);
  border: 1px solid rgba(248,243,234,.5);
}
.btn-ghost-light:hover { background: var(--ivory); color: var(--charcoal); border-color: var(--ivory); }
.btn-sm { padding: 10px 20px; font-size: 12px; }

/* ---------- Sections ---------- */
section { padding: clamp(70px, 10vw, 130px) 0; }
.section-head { text-align: center; margin-bottom: 60px; max-width: 720px; margin-left: auto; margin-right: auto; }
.section-head h2 { font-size: clamp(34px, 5vw, 54px); margin-bottom: 16px; }
.section-head p { color: var(--muted); font-size: 16px; max-width: 560px; margin: 0 auto; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  padding: clamp(60px, 8vw, 100px) 0 clamp(70px, 10vw, 120px);
  overflow: hidden;
}
.hero::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(900px 500px at 85% 10%, rgba(200,169,106,0.13), transparent 60%),
    radial-gradient(700px 500px at 10% 90%, rgba(164, 139, 106, 0.10), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(42px, 6vw, 78px);
  font-weight: 500;
  margin-bottom: 24px;
  letter-spacing: -0.015em;
}
.hero-copy h1 em {
  font-style: italic;
  color: var(--deep-gold);
  font-weight: 400;
}
.hero-copy .sub {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 36px;
  max-width: 520px;
  line-height: 1.7;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.trust-row {
  display: flex;
  gap: clamp(20px, 4vw, 40px);
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--line);
}
.trust-item {
  display: flex; align-items: center; gap: 10px;
  font-size: 12.5px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--soft-charcoal);
  font-weight: 500;
}
.trust-item svg { width: 16px; height: 16px; color: var(--gold); }

.hero-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.hero-visual img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.2s ease;
}
.hero-visual:hover img { transform: scale(1.04); }
.hero-visual::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(160deg, transparent 50%, rgba(43,38,32,0.12));
  pointer-events: none;
}
.hero-badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: rgba(248,243,234,0.95);
  backdrop-filter: blur(10px);
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--charcoal);
  display: flex; align-items: center; gap: 10px;
  box-shadow: var(--shadow-sm);
}
.hero-badge .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }

/* ---------- Marquee ---------- */
.marquee {
  background: var(--cream);
  padding: 22px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
  overflow: hidden;
}
.marquee-track {
  display: flex; gap: 60px;
  animation: scroll 40s linear infinite;
  white-space: nowrap;
}
.marquee span {
  font-family: var(--serif);
  font-size: 22px;
  font-style: italic;
  color: var(--warm-taupe);
}
.marquee .star { color: var(--gold); margin: 0 6px; }
@keyframes scroll {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Featured products ---------- */
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 28px;
}
.product {
  background: var(--pearl);
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  transition: all .35s ease;
  border: 1px solid var(--line-soft);
}
.product:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
  border-color: var(--taupe);
}
.product-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--beige);
}
.product-img .ph {
  position: absolute; inset: 0;
  display: grid; place-items: center;
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--ivory);
  text-align: center;
  padding: 20px;
}
.product-img.f1 .ph { background: linear-gradient(160deg, #c9b89a, #8a6a32); }
.product-img.f2 .ph { background: linear-gradient(160deg, #a48b6a, #4a4138); }
.product-img.f3 .ph { background: linear-gradient(160deg, #d6c5a4, #a48b6a); }
.product-img.f4 .ph { background: linear-gradient(160deg, #2f4a3a, #4a4138); }
.product-img.f5 .ph { background: linear-gradient(160deg, #c8a96a, #6a5230); }
.product-img.f6 .ph { background: linear-gradient(160deg, #e8dec8, #a48b6a); }
.product-img.f7 .ph { background: linear-gradient(160deg, #b08a4a, #2b2620); }
.product-img.f8 .ph { background: linear-gradient(160deg, #4a6b5a, #2f4a3a); }

.product-tag {
  position: absolute; top: 14px; left: 14px;
  background: rgba(248,243,234,0.95);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 10.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--charcoal);
  z-index: 2;
}
.product-tag.gold { background: linear-gradient(135deg, var(--champagne), var(--gold)); color: var(--ivory); }

.quick-view {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%) translateY(8px);
  opacity: 0;
  background: var(--ivory);
  color: var(--charcoal);
  padding: 10px 22px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .3s ease;
  white-space: nowrap;
  box-shadow: var(--shadow-sm);
}
.product:hover .quick-view {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.product-body { padding: 22px 22px 24px; }
.rating { display: flex; gap: 2px; margin-bottom: 8px; color: var(--gold); font-size: 13px; }
.rating span { color: var(--muted); margin-left: 6px; font-size: 12px; }
.product-body h3 {
  font-size: 22px;
  margin-bottom: 6px;
  font-weight: 500;
}
.product-body .desc {
  font-size: 13.5px;
  color: var(--muted);
  margin-bottom: 16px;
  line-height: 1.6;
}
.product-foot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 14px;
  border-top: 1px solid var(--line-soft);
}
.price { font-family: var(--serif); font-size: 22px; color: var(--charcoal); }
.price .old { text-decoration: line-through; color: var(--muted); font-size: 14px; margin-right: 8px; }
.enquire {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 11.5px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: all .25s ease;
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.enquire:hover { background: var(--gold); transform: translateY(-1px); }
.enquire.mto {
  background: transparent;
  color: var(--charcoal);
  border: 1px solid var(--charcoal);
}
.enquire.mto:hover { background: var(--charcoal); color: var(--ivory); }
.enquire.out { background: var(--taupe); pointer-events: none; opacity: 0.6; }

/* ---------- Stock indicator ---------- */
.stock-row {
  margin-bottom: 16px;
  padding: 12px 14px;
  background: var(--ivory);
  border: 1px solid var(--line-soft);
  border-radius: 10px;
}
.stock-meter {
  height: 3px;
  background: rgba(43, 38, 32, 0.07);
  border-radius: 999px;
  overflow: hidden;
  margin-bottom: 9px;
}
.stock-fill {
  height: 100%;
  background: linear-gradient(90deg, #7a9a7c, #a8c0a4);
  border-radius: 999px;
  transition: width .9s ease;
}
.stock-row.low .stock-fill { background: linear-gradient(90deg, #c79a4a, #d9b06a); }
.stock-row.mto .stock-fill { background: linear-gradient(90deg, var(--warm-taupe), var(--taupe)); }
.stock-row.out .stock-fill { background: rgba(43, 38, 32, 0.15); }
.stock-label {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 11.5px;
  letter-spacing: .04em;
  color: var(--soft-charcoal);
  font-weight: 500;
}
.stock-label strong { color: var(--charcoal); font-weight: 600; }
.stock-dot {
  width: 6px; height: 6px;
  border-radius: 50%;
  background: #7a9a7c;
  flex-shrink: 0;
  box-shadow: 0 0 0 3px rgba(122, 154, 124, 0.18);
}
.stock-row.low .stock-dot { background: #c79a4a; box-shadow: 0 0 0 3px rgba(199, 154, 74, 0.18); }
.stock-row.mto .stock-dot { background: var(--warm-taupe); box-shadow: 0 0 0 3px rgba(164, 139, 106, 0.18); }
.stock-row.out .stock-dot { background: rgba(43, 38, 32, 0.4); box-shadow: 0 0 0 3px rgba(43, 38, 32, 0.08); }

/* ---------- Availability summary bar ---------- */
.availability-bar {
  background: var(--cream);
  border: 1px solid var(--line-soft);
  border-radius: var(--radius);
  padding: 28px 36px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 28px;
  margin-bottom: 44px;
}
.availability-stat {
  display: flex;
  align-items: center;
  gap: 16px;
}
.availability-stat .num {
  font-family: var(--serif);
  font-size: 40px;
  color: var(--deep-gold);
  line-height: 1;
}
.availability-stat .meta {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  line-height: 1.4;
}
.availability-stat .meta strong { color: var(--charcoal); display: block; font-size: 12.5px; }

.section-cta { text-align: center; margin-top: 56px; }

/* ---------- Why choose ---------- */
.why {
  background: var(--cream);
}
.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 24px;
}
.why-card {
  background: var(--pearl);
  padding: 36px 28px;
  border-radius: var(--radius);
  text-align: left;
  border: 1px solid var(--line-soft);
  transition: all .3s ease;
}
.why-card:hover { transform: translateY(-4px); border-color: var(--champagne); box-shadow: var(--shadow-sm); }
.why-icon {
  width: 52px; height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  display: grid; place-items: center;
  margin-bottom: 20px;
  border: 1px solid var(--line);
}
.why-icon svg { width: 22px; height: 22px; color: var(--gold); }
.why-card h3 { font-size: 22px; margin-bottom: 10px; }
.why-card p { font-size: 14px; color: var(--muted); line-height: 1.7; }

/* ---------- Storytelling ---------- */
.story {
  position: relative;
  background: linear-gradient(180deg, var(--ivory), var(--cream));
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
}
.story-image {
  aspect-ratio: 5/6;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #e8dec8, #a48b6a);
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.story-image::after {
  content: ''; position: absolute; inset: 30px;
  border: 1px solid rgba(248,243,234,0.45);
  border-radius: var(--radius);
}
.story-image span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory);
  font-size: 32px;
  text-align: center;
  padding: 40px;
  z-index: 2;
}
.story h2 {
  font-size: clamp(34px, 5vw, 56px);
  margin-bottom: 24px;
}
.story h2 em { font-style: italic; color: var(--deep-gold); }
.story p {
  font-size: 16px;
  color: var(--soft-charcoal);
  margin-bottom: 18px;
  line-height: 1.8;
}
.story p:last-of-type { margin-bottom: 30px; }

/* ---------- Lifestyle gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 220px;
  gap: 18px;
}
.tile {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  cursor: pointer;
  transition: all .4s ease;
}
.tile::before {
  content: '';
  position: absolute; inset: 0;
  transition: transform .8s ease;
}
.tile::after {
  content: attr(data-label);
  position: absolute;
  bottom: 18px; left: 18px;
  font-family: var(--serif);
  font-size: 22px;
  color: var(--ivory);
  font-style: italic;
  z-index: 2;
  opacity: 0; transform: translateY(10px);
  transition: all .35s ease;
}
.tile-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(43,38,32,0.55), transparent 55%);
  opacity: 0;
  transition: opacity .35s ease;
}
.tile:hover .tile-overlay { opacity: 1; }
.tile:hover::after { opacity: 1; transform: translateY(0); }
.tile:hover::before { transform: scale(1.06); }

.tile.t1 { grid-column: span 4; grid-row: span 2; }
.tile.t1::before { background: linear-gradient(160deg, #d6c5a4, #8a6a32); }
.tile.t2 { grid-column: span 2; }
.tile.t2::before { background: linear-gradient(160deg, #4a4138, #2b2620); }
.tile.t3 { grid-column: span 2; }
.tile.t3::before { background: linear-gradient(160deg, #2f4a3a, #4a6b5a); }
.tile.t4 { grid-column: span 2; }
.tile.t4::before { background: linear-gradient(160deg, #c8a96a, #b08a4a); }
.tile.t5 { grid-column: span 2; }
.tile.t5::before { background: linear-gradient(160deg, #a48b6a, #c9b89a); }
.tile.t6 { grid-column: span 2; }
.tile.t6::before { background: linear-gradient(160deg, #e8dec8, #c9b89a); }

/* ---------- Collections ---------- */
.collections {
  background: var(--pearl);
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 22px;
}
.collection {
  position: relative;
  aspect-ratio: 3/4;
  border-radius: var(--radius);
  overflow: hidden;
  display: flex;
  align-items: flex-end;
  padding: 30px;
  cursor: pointer;
  transition: all .3s ease;
}
.collection-bg {
  position: absolute; inset: 0;
  z-index: 0;
  transition: transform .6s ease;
}
.collection:hover .collection-bg { transform: scale(1.07); }
.collection::before {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(43,38,32,0.05) 30%, rgba(43,38,32,0.75));
  z-index: 1;
}
.collection-content { position: relative; z-index: 2; color: var(--ivory); }
.collection-content .label {
  font-size: 11px;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--champagne);
  margin-bottom: 8px;
  display: block;
}
.collection-content h3 {
  font-size: 26px;
  color: var(--ivory);
  margin-bottom: 8px;
}
.collection-content .count { font-size: 13px; opacity: 0.8; }
.c1 .collection-bg { background: linear-gradient(160deg, #c9b89a, #4a4138); }
.c2 .collection-bg { background: linear-gradient(160deg, #2f4a3a, #1a2620); }
.c3 .collection-bg { background: linear-gradient(160deg, #b08a4a, #2b2620); }
.c4 .collection-bg { background: linear-gradient(160deg, #d6c5a4, #8a6a32); }
.c5 .collection-bg { background: linear-gradient(160deg, #a48b6a, #4a4138); }

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}
.testimonial {
  background: var(--pearl);
  padding: 38px 34px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
  position: relative;
  transition: all .3s ease;
}
.testimonial:hover { transform: translateY(-3px); box-shadow: var(--shadow-md); }
.testimonial .quote {
  font-family: var(--serif);
  font-size: 60px;
  color: var(--champagne);
  line-height: 0.5;
  margin-bottom: 16px;
  display: block;
}
.testimonial p {
  font-family: var(--serif);
  font-size: 19px;
  font-style: italic;
  line-height: 1.55;
  color: var(--soft-charcoal);
  margin-bottom: 24px;
}
.testimonial-foot { display: flex; align-items: center; gap: 14px; }
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--champagne), var(--gold));
  display: grid; place-items: center;
  color: var(--ivory);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 500;
}
.testimonial-foot strong { font-size: 14px; font-weight: 600; display: block; }
.testimonial-foot span { font-size: 12px; color: var(--muted); letter-spacing: .04em; }
.testimonial-rating { color: var(--gold); font-size: 13px; margin-bottom: 14px; }

/* ---------- Gift CTA ---------- */
.gift {
  background: linear-gradient(135deg, var(--cream), var(--beige));
  position: relative;
  overflow: hidden;
}
.gift::before {
  content: ''; position: absolute;
  top: -100px; right: -100px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(200,169,106,0.18), transparent 70%);
}
.gift-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
}
.gift h2 {
  font-size: clamp(36px, 5vw, 60px);
  margin-bottom: 20px;
}
.gift h2 em { font-style: italic; color: var(--deep-gold); }
.gift p {
  font-size: 16px;
  color: var(--soft-charcoal);
  margin-bottom: 28px;
  line-height: 1.8;
}
.gift-tags {
  display: flex; gap: 10px; flex-wrap: wrap;
  margin-bottom: 36px;
}
.gift-tag {
  padding: 8px 18px;
  border-radius: 999px;
  background: var(--pearl);
  border: 1px solid var(--line);
  font-size: 12.5px;
  font-weight: 500;
  color: var(--soft-charcoal);
}
.gift-image {
  aspect-ratio: 1/1;
  border-radius: var(--radius-lg);
  background: linear-gradient(160deg, #c8a96a, #4a4138);
  position: relative;
  box-shadow: var(--shadow-lg);
  display: grid; place-items: center;
}
.gift-image::after {
  content: ''; position: absolute; inset: 30px;
  border: 1px solid rgba(248,243,234,0.4);
  border-radius: var(--radius);
}
.gift-image span {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ivory);
  font-size: 28px;
  z-index: 2;
  text-align: center;
  padding: 40px;
}

/* ---------- Delivery banner ---------- */
.delivery {
  background: var(--charcoal);
  color: var(--ivory);
  padding: 60px 0;
  text-align: center;
}
.delivery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 30px;
  align-items: center;
}
.delivery-item h4 {
  font-family: var(--serif);
  color: var(--ivory);
  font-size: 26px;
  margin-bottom: 6px;
}
.delivery-item p {
  font-size: 13px;
  color: var(--taupe);
  letter-spacing: .04em;
}
.delivery-item .num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--champagne);
  display: block;
  margin-bottom: 4px;
}

/* ---------- FAQ ---------- */
.faq-wrap { max-width: 820px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 24px 0;
  cursor: pointer;
}
.faq-q {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px;
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 500;
  color: var(--charcoal);
  transition: color .2s ease;
}
.faq-q:hover { color: var(--gold); }
.faq-toggle {
  width: 36px; height: 36px;
  min-width: 36px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-size: 18px;
  transition: all .25s ease;
}
.faq-item.open .faq-toggle {
  background: var(--charcoal);
  color: var(--ivory);
  transform: rotate(45deg);
  border-color: var(--charcoal);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .35s ease;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}
.faq-item.open .faq-a {
  max-height: 300px;
  padding-top: 14px;
}

/* ---------- Newsletter ---------- */
.newsletter {
  background: linear-gradient(160deg, var(--cream), var(--beige));
  text-align: center;
  position: relative;
  overflow: hidden;
}
.newsletter h2 { font-size: clamp(34px, 5vw, 52px); margin-bottom: 14px; }
.newsletter p { color: var(--muted); margin-bottom: 30px; max-width: 520px; margin-left: auto; margin-right: auto; }
.email-form {
  display: flex; gap: 8px;
  max-width: 480px;
  margin: 0 auto;
  background: var(--pearl);
  padding: 6px;
  border-radius: 999px;
  border: 1px solid var(--line);
}
.email-form input {
  flex: 1;
  padding: 14px 22px;
  border: none;
  background: transparent;
  font-family: inherit;
  font-size: 14px;
  color: var(--charcoal);
  outline: none;
}
.email-form input::placeholder { color: var(--muted); }
.email-form button {
  padding: 14px 28px;
  background: var(--charcoal);
  color: var(--ivory);
  border-radius: 999px;
  font-size: 12px;
  letter-spacing: .12em;
  text-transform: uppercase;
  font-weight: 500;
  transition: background .25s ease;
}
.email-form button:hover { background: var(--gold); }

/* ---------- Final CTA ---------- */
.final-cta {
  background: var(--charcoal);
  color: var(--ivory);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.final-cta::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 50% 20%, rgba(200,169,106,0.12), transparent 60%),
    radial-gradient(600px 400px at 50% 100%, rgba(176,138,74,0.10), transparent 60%);
}
.final-cta-content { position: relative; z-index: 2; max-width: 720px; margin: 0 auto; }
.final-cta .eyebrow { color: var(--champagne); }
.final-cta h2 {
  font-size: clamp(40px, 6vw, 70px);
  color: var(--ivory);
  margin-bottom: 18px;
}
.final-cta h2 em { font-style: italic; color: var(--champagne); }
.final-cta p {
  color: var(--taupe);
  font-size: 17px;
  margin-bottom: 36px;
  max-width: 520px;
  margin-left: auto;
  margin-right: auto;
}

/* ---------- Footer ---------- */
.footer {
  background: #1f1b15;
  color: var(--taupe);
  padding: 80px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 50px;
  margin-bottom: 60px;
}
.footer-brand { margin-bottom: 18px; }
.footer p { font-size: 14px; line-height: 1.8; max-width: 320px; margin-bottom: 24px; }
.footer h5 {
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: .2em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer ul a { font-size: 14px; transition: color .2s ease; }
.footer ul a:hover { color: var(--champagne); }
.socials { display: flex; gap: 10px; }
.social-btn {
  width: 38px; height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(248,243,234,0.18);
  display: grid; place-items: center;
  color: var(--taupe);
  transition: all .25s ease;
}
.social-btn:hover { background: var(--champagne); color: var(--charcoal); border-color: var(--champagne); }
.social-btn svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(248,243,234,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 13px;
}

/* ---------- Floating WhatsApp ---------- */
.wa-float {
  position: fixed;
  bottom: 24px; right: 24px;
  width: 56px; height: 56px;
  border-radius: 50%;
  background: #25D366;
  display: grid; place-items: center;
  box-shadow: 0 12px 30px rgba(37,211,102,0.4);
  z-index: 40;
  transition: transform .25s ease;
  color: white;
}
.wa-float:hover { transform: scale(1.08); }
.wa-float svg { width: 28px; height: 28px; }

/* ---------- Email popup ---------- */
.popup-overlay {
  position: fixed; inset: 0;
  background: rgba(43,38,32,0.6);
  backdrop-filter: blur(8px);
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn .3s ease;
}
.popup-overlay.show { display: flex; }
.popup {
  max-width: 480px; width: 100%;
  background: var(--ivory);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  animation: slideUp .4s ease;
  box-shadow: var(--shadow-lg);
}
.popup-image {
  height: 180px;
  background: linear-gradient(135deg, var(--champagne), var(--deep-gold));
  display: grid; place-items: center;
  color: var(--ivory);
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
}
.popup-body { padding: 36px; text-align: center; }
.popup-body h3 { font-size: 30px; margin-bottom: 10px; }
.popup-body p { color: var(--muted); margin-bottom: 24px; font-size: 14px; }
.popup-close {
  position: absolute; top: 14px; right: 14px;
  width: 36px; height: 36px;
  border-radius: 50%;
  background: rgba(248,243,234,0.95);
  display: grid; place-items: center;
  font-size: 18px;
  color: var(--charcoal);
  transition: all .2s ease;
  z-index: 2;
}
.popup-close:hover { background: var(--ivory); transform: rotate(90deg); }

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

/* ---------- Page header (interior pages) ---------- */
.page-header {
  text-align: center;
  padding: clamp(80px, 10vw, 130px) 0 clamp(40px, 5vw, 70px);
  background: linear-gradient(180deg, var(--cream), var(--ivory));
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(700px 400px at 50% 0%, rgba(200,169,106,0.12), transparent 60%);
}
.page-header h1 {
  font-size: clamp(42px, 6vw, 72px);
  margin-bottom: 16px;
  position: relative;
}
.page-header h1 em { font-style: italic; color: var(--deep-gold); }
.page-header p { color: var(--muted); max-width: 580px; margin: 0 auto; position: relative; }
.crumbs {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 18px;
}
.crumbs a:hover { color: var(--charcoal); }
.crumbs .sep { margin: 0 8px; opacity: 0.5; }

/* ---------- Shop page filters ---------- */
.shop-toolbar {
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 14px;
  margin-bottom: 38px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}
.filter-pills { display: flex; gap: 10px; flex-wrap: wrap; }
.filter-pill {
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--pearl);
  font-size: 12.5px;
  letter-spacing: .04em;
  cursor: pointer;
  transition: all .2s ease;
}
.filter-pill:hover { border-color: var(--taupe); }
.filter-pill.active {
  background: var(--charcoal);
  color: var(--ivory);
  border-color: var(--charcoal);
}
.shop-toolbar .results { font-size: 13px; color: var(--muted); }

/* ---------- About page ---------- */
.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 90px);
  align-items: center;
  margin-bottom: clamp(60px, 8vw, 100px);
}
.about-section.reverse { grid-template-columns: 1fr 1fr; direction: rtl; }
.about-section.reverse > * { direction: ltr; }
.about-section h2 { font-size: clamp(30px, 4vw, 48px); margin-bottom: 18px; }
.about-section p { color: var(--soft-charcoal); margin-bottom: 16px; line-height: 1.85; font-size: 15.5px; }
.about-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.about-image.a1 { background: linear-gradient(160deg, #d6c5a4, #a48b6a); }
.about-image.a2 { background: linear-gradient(160deg, #c8a96a, #4a4138); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  gap: 30px;
  background: var(--cream);
  padding: 50px;
  border-radius: var(--radius-lg);
  margin-top: 40px;
}
.about-stat .num {
  font-family: var(--serif);
  font-size: 44px;
  color: var(--deep-gold);
  display: block;
  margin-bottom: 4px;
}
.about-stat .label {
  font-size: 12px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Reviews page ---------- */
.review-summary {
  background: var(--cream);
  padding: 50px;
  border-radius: var(--radius-lg);
  text-align: center;
  margin-bottom: 50px;
}
.review-summary .big {
  font-family: var(--serif);
  font-size: 80px;
  color: var(--charcoal);
  display: block;
  line-height: 1;
}
.review-summary .stars { color: var(--gold); font-size: 22px; margin: 10px 0; }
.review-summary p { color: var(--muted); }

/* ---------- Contact page ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(30px, 5vw, 60px);
}
.contact-info { display: flex; flex-direction: column; gap: 28px; }
.contact-card {
  background: var(--pearl);
  padding: 30px;
  border-radius: var(--radius);
  border: 1px solid var(--line-soft);
}
.contact-card .icon {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--cream), var(--beige));
  display: grid; place-items: center;
  margin-bottom: 14px;
}
.contact-card .icon svg { width: 18px; height: 18px; color: var(--gold); }
.contact-card h3 { font-size: 22px; margin-bottom: 8px; }
.contact-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }
.contact-card a:hover { color: var(--gold); }

.contact-form {
  background: var(--pearl);
  padding: 40px;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-soft);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}
.form-field { margin-bottom: 16px; }
.form-field label {
  font-size: 11.5px;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--soft-charcoal);
  font-weight: 500;
  margin-bottom: 8px;
  display: block;
}
.form-field input, .form-field textarea, .form-field select {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid var(--line);
  background: var(--ivory);
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 14px;
  color: var(--charcoal);
  transition: border-color .2s ease;
}
.form-field input:focus, .form-field textarea:focus, .form-field select:focus {
  outline: none;
  border-color: var(--gold);
}
.form-field textarea { resize: vertical; min-height: 120px; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s ease, transform .8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-grid, .story-grid, .gift-grid, .about-section, .about-section.reverse, .contact-grid {
    grid-template-columns: 1fr;
  }
  .hero-visual { order: -1; max-height: 60vh; }
  .gallery {
    grid-template-columns: repeat(4, 1fr);
    grid-auto-rows: 180px;
  }
  .tile.t1 { grid-column: span 4; }
  .tile.t2, .tile.t3, .tile.t4, .tile.t5, .tile.t6 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 720px) {
  .nav-links { display: none; }
  .menu-btn { display: grid; }
  .form-row { grid-template-columns: 1fr; }
  .gallery { grid-template-columns: 1fr 1fr; grid-auto-rows: 160px; }
  .tile.t1, .tile.t2, .tile.t3, .tile.t4, .tile.t5, .tile.t6 { grid-column: span 2; }
  .footer-grid { grid-template-columns: 1fr; }
  .announce .sep { display: none; }
  .announce { font-size: 11px; }
  .email-form { flex-direction: column; padding: 12px; border-radius: 22px; }
  .email-form button { width: 100%; padding: 14px; }
  .nav-actions .btn { display: none; }
  .about-stats { padding: 30px; }
  .review-summary { padding: 30px; }
  .contact-form { padding: 26px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; top: 0; right: 0; bottom: 0;
  width: 100%; max-width: 360px;
  background: var(--ivory);
  z-index: 80;
  transform: translateX(100%);
  transition: transform .35s ease;
  padding: 80px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu a {
  font-family: var(--serif);
  font-size: 26px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line-soft);
}
.mobile-menu a:hover { color: var(--gold); }
