/* ==========================================================================
   SAKHI SAHELI — Stylesheet
   Design tokens: Warm Ivory / Deep Burgundy / Muted Gold / Charcoal
   Display: Cormorant Garamond   Body/Nav: DM Sans
   ========================================================================== */

:root {
  --ivory: #FAF6EE;
  --ivory-deep: #F1E7D6;
  --burgundy: #5E1422;
  --burgundy-deep: #3C0C16;
  --burgundy-soft: #7A1C2D;
  --gold: #AD8A55;
  --gold-light: #CBAE7C;
  --charcoal: #241F1D;
  --charcoal-soft: #55504C;

  --font-display: 'Cormorant Garamond', serif;
  --font-body: 'DM Sans', sans-serif;

  --container: 1240px;
  --gutter: clamp(20px, 5vw, 64px);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* -------------------------------- Reset -------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body, h1, h2, h3, h4, p, figure { margin: 0; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

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

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

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

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--font-body);
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  font-weight: 600;
  color: var(--gold);
  text-transform: uppercase;
}
.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
  display: inline-block;
}

.section-heading {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.2rem, 4.4vw, 3.6rem);
  line-height: 1.1;
  color: var(--burgundy-deep);
  margin-top: 18px;
}

.section-heading em {
  font-style: italic;
  color: var(--gold);
}

/* Signature ornamental divider — the recurring motif of the brand */
.motif-divider {
  width: 64px;
  height: 18px;
  margin: 22px 0;
  position: relative;
}
.motif-divider svg { width: 100%; height: 100%; display: block; }

/* Reveal-on-scroll */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-img {
  opacity: 0;
  clip-path: inset(0 0 100% 0);
  transition: opacity 1.1s var(--ease), clip-path 1.1s var(--ease);
}
.reveal-img.in-view { opacity: 1; clip-path: inset(0 0 0% 0); }

/* ------------------------------- Buttons -------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 34px;
  font-family: var(--font-body);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-transform: uppercase;
  border: 1px solid transparent;
  transition: background 0.4s var(--ease), color 0.4s var(--ease), border-color 0.4s var(--ease), transform 0.3s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--burgundy);
  color: var(--ivory);
  border-color: var(--burgundy);
}
.btn-primary:hover { background: var(--burgundy-deep); border-color: var(--burgundy-deep); transform: translateY(-2px); }

.btn-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250,246,238,0.55);
}
.btn-outline:hover { background: var(--ivory); color: var(--burgundy-deep); border-color: var(--ivory); transform: translateY(-2px); }

.btn-outline-dark {
  background: transparent;
  color: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
}
.btn-outline-dark:hover { background: var(--burgundy-deep); color: var(--ivory); transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--burgundy-deep);
  border-color: var(--gold);
}
.btn-gold:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); }

.btn-block { width: 100%; }

/* -------------------------------- Header -------------------------------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 500;
  padding: 22px 0;
  transition: background 0.5s var(--ease), padding 0.5s var(--ease), box-shadow 0.5s var(--ease);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.site-header.scrolled {
  background: rgba(250, 246, 238, 0.94);
  backdrop-filter: saturate(140%) blur(6px);
  padding: 12px 0;
  box-shadow: 0 8px 24px rgba(36, 31, 29, 0.06);
}

.brand {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-display);
  font-size: 1.55rem;
  letter-spacing: 0.06em;
  font-weight: 600;
  color: var(--burgundy-deep);
  transition: color 0.4s var(--ease);
}
.site-header:not(.scrolled) .brand-name { color: var(--ivory); }
.brand-loc {
  margin-top: 4px;
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  color: var(--gold);
  font-weight: 600;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 40px;
}
.main-nav ul {
  display: flex;
  gap: 34px;
}
.main-nav a {
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  font-weight: 500;
  color: var(--ivory);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.4s var(--ease);
}
.site-header.scrolled .main-nav a { color: var(--charcoal); }
.main-nav a::after {
  content: "";
  position: absolute; left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.main-nav a:hover::after,
.main-nav a[aria-current="page"]::after { width: 100%; }
.main-nav a[aria-current="page"] { color: var(--gold-light); }
.site-header.scrolled .main-nav a[aria-current="page"] { color: var(--burgundy); }

.nav-actions { display: flex; align-items: center; gap: 18px; }

.whatsapp-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  border: 1px solid var(--gold-light);
  color: var(--ivory);
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  font-weight: 600;
  transition: all 0.4s var(--ease);
}
.site-header.scrolled .whatsapp-pill { color: var(--burgundy-deep); border-color: var(--burgundy); }
.whatsapp-pill:hover { background: var(--gold); color: var(--burgundy-deep); border-color: var(--gold); }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 26px;
  background: transparent;
  border: 0;
  padding: 6px 0;
}
.hamburger span {
  height: 1px;
  width: 100%;
  background: var(--ivory);
  transition: background 0.4s var(--ease), transform 0.35s var(--ease), opacity 0.3s var(--ease);
}
.site-header.scrolled .hamburger span { background: var(--charcoal); }
.hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }
.hamburger[aria-expanded="true"] span { background: var(--charcoal); }

.mobile-nav {
  position: fixed;
  inset: 0;
  background: var(--burgundy-deep);
  z-index: 480;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 40px var(--gutter);
  transform: translateY(-100%);
  transition: transform 0.55s var(--ease);
}
.mobile-nav.open { transform: translateY(0); }
.mobile-nav ul { display: flex; flex-direction: column; gap: 26px; }
.mobile-nav a {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
  letter-spacing: 0.03em;
}
.mobile-nav .whatsapp-pill { margin-top: 34px; border-color: var(--gold-light); color: var(--ivory); align-self: flex-start; }

/* -------------------------------- Hero ----------------------------------- */
.hero {
  position: relative;
  height: 100svh;
  min-height: 620px;
  display: flex;
  align-items: flex-end;
  color: var(--ivory);
  overflow: hidden;
}
.hero-media { position: absolute; inset: 0; }
.hero-media img {
  width: 100%; height: 100%;
  object-fit: cover;
  transform: scale(1.08);
  animation: heroZoom 14s var(--ease) forwards;
}
@keyframes heroZoom { to { transform: scale(1); } }
.hero-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(60,12,22,0.35) 0%, rgba(60,12,22,0.30) 45%, rgba(38,10,17,0.86) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 0 var(--gutter) 84px;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-eyebrow {
  font-size: 0.72rem;
  letter-spacing: 0.36em;
  color: var(--gold-light);
  font-weight: 600;
  opacity: 0;
  animation: fadeUp 1s var(--ease) 0.3s forwards;
}
.hero-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(3.4rem, 9vw, 7.5rem);
  line-height: 0.98;
  margin: 14px 0 6px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.5s forwards;
}
.hero-sub {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.3rem, 2.6vw, 2rem);
  color: var(--gold-light);
  margin-bottom: 18px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.7s forwards;
}
.hero-tag {
  max-width: 460px;
  font-size: 1rem;
  color: rgba(250,246,238,0.86);
  margin-bottom: 36px;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 0.85s forwards;
}
.hero-actions {
  display: flex;
  align-items: center;
  gap: 30px;
  flex-wrap: wrap;
  opacity: 0;
  animation: fadeUp 1.1s var(--ease) 1s forwards;
}
.hero-locate {
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  color: var(--gold-light);
  font-weight: 600;
}
@keyframes fadeUp { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: translateY(0); } }

.scroll-cue {
  position: absolute;
  bottom: 26px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  width: 1px; height: 46px;
  background: rgba(250,246,238,0.35);
  overflow: hidden;
}
.scroll-cue::after {
  content: "";
  position: absolute; top: -46px; left: 0;
  width: 100%; height: 46px;
  background: var(--gold-light);
  animation: scrollCue 2.2s ease-in-out infinite;
}
@keyframes scrollCue { 0% { top: -46px; } 60% { top: 46px; } 100% { top: 46px; } }

/* ------------------------------ Introduction ----------------------------- */
.intro {
  padding: 130px 0;
  background: var(--ivory);
}
.intro .container {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(40px, 6vw, 100px);
  align-items: center;
}
.intro-copy p {
  font-size: 1.05rem;
  color: var(--charcoal-soft);
  max-width: 46ch;
  margin-top: 26px;
}
.intro-copy p + p { margin-top: 18px; }
.intro-media { position: relative; }
.intro-media .frame {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/5;
}
.intro-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s var(--ease); }
.intro-media:hover img { transform: scale(1.04); }
.intro-media .frame::before {
  content: "";
  position: absolute; inset: 14px;
  border: 1px solid rgba(250,246,238,0.55);
  z-index: 2;
  pointer-events: none;
}

/* ------------------------------- Collections ------------------------------ */
.collections {
  padding: 130px 0 150px;
  background: var(--ivory-deep);
}
.collections-head {
  max-width: 640px;
  margin-bottom: 64px;
}
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4.1;
  color: var(--ivory);
  background: var(--burgundy-deep);
}
.collection-card img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.collection-card:hover img { transform: scale(1.09); }
.collection-card::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(36,10,17,0) 40%, rgba(36,10,17,0.92) 100%);
}
.collection-copy {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 2;
  padding: 26px 22px;
}
.collection-index {
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 600;
  display: block;
  margin-bottom: 8px;
}
.collection-copy h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 500;
  margin-bottom: 8px;
}
.collection-copy p { font-size: 0.8rem; color: rgba(250,246,238,0.78); letter-spacing: 0.02em; }

/* ---------------------------- Brand statement ----------------------------- */
.statement {
  position: relative;
  min-height: 560px;
  display: flex;
  align-items: center;
  color: var(--ivory);
  overflow: hidden;
}
.statement-media { position: absolute; inset: 0; }
.statement-media img { width: 100%; height: 100%; object-fit: cover; }
.statement-media::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(100deg, rgba(36,10,17,0.92) 0%, rgba(36,10,17,0.6) 55%, rgba(36,10,17,0.35) 100%);
}
.statement-content { position: relative; z-index: 2; max-width: 640px; padding: 100px var(--gutter); }
.statement-title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(2.6rem, 5.6vw, 4.6rem);
  line-height: 1.05;
}
.statement-title em { font-style: italic; color: var(--gold-light); }
.statement-content p {
  margin-top: 26px;
  font-size: 1.05rem;
  color: rgba(250,246,238,0.85);
  max-width: 44ch;
}

/* -------------------------------- Visit Us -------------------------------- */
.visit {
  padding: 140px 0;
  background: var(--burgundy-deep);
  color: var(--ivory);
  position: relative;
}
.visit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: start;
}
.visit .eyebrow { color: var(--gold-light); }
.visit .eyebrow::before { background: var(--gold-light); }
.visit .section-heading { color: var(--ivory); }
.visit .section-heading em { color: var(--gold-light); }

.visit-card {
  margin-top: 40px;
  border: 1px solid rgba(250,246,238,0.18);
  padding: 40px;
}
.visit-card .store-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--gold-light);
  margin-bottom: 18px;
}
.visit-line { margin-bottom: 22px; }
.visit-line .label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 6px;
}
.visit-line p, .visit-line a { font-size: 0.98rem; color: rgba(250,246,238,0.92); }
.visit-actions {
  margin-top: 32px;
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.visit-map-frame {
  position: relative;
  aspect-ratio: 1/1;
  overflow: hidden;
}
.visit-map-frame img { width: 100%; height: 100%; object-fit: cover; }
.visit-map-frame::before {
  content: "";
  position: absolute; inset: 16px;
  border: 1px solid rgba(250,246,238,0.35);
  z-index: 2;
}
.visit-map-caption {
  position: absolute; left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 24px 30px;
  background: linear-gradient(180deg, rgba(36,10,17,0) 0%, rgba(36,10,17,0.94) 100%);
  font-size: 0.95rem;
}

/* -------------------------------- Contact ---------------------------------- */
.contact {
  padding: 140px 0;
  background: var(--ivory);
}
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  align-items: center;
}
.contact-copy p.lead {
  margin-top: 26px;
  font-size: 1.1rem;
  color: var(--charcoal-soft);
  max-width: 40ch;
}
.contact-details {
  margin-top: 36px;
  display: grid;
  gap: 24px;
}
.contact-detail .label {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.2em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 6px;
}
.contact-detail a, .contact-detail p { font-size: 1.05rem; color: var(--charcoal); }
.contact-card {
  border: 1px solid rgba(94,20,34,0.16);
  padding: 48px;
  background: var(--ivory-deep);
}
.contact-card h3 {
  font-family: var(--font-display);
  font-size: 1.7rem;
  color: var(--burgundy-deep);
  margin-bottom: 14px;
}
.contact-card p { color: var(--charcoal-soft); margin-bottom: 28px; }

/* ------------------------------ Store photo -------------------------------- */
.store-visit {
  position: relative;
  min-height: 500px;
  color: var(--ivory);
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.store-visit img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.store-visit::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(36,10,17,0.9) 0%, rgba(36,10,17,0.15) 60%);
}
.store-visit-content { position: relative; z-index: 2; padding: 70px var(--gutter); max-width: 640px; }
.store-visit-content h3 {
  font-family: var(--font-display);
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 14px;
}
.store-visit-content p { color: rgba(250,246,238,0.85); margin-bottom: 26px; }

/* --------------------------------- Footer ----------------------------------- */
.site-footer {
  background: var(--burgundy-deep);
  color: rgba(250,246,238,0.82);
  padding: 90px 0 0;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(250,246,238,0.14);
}
.footer-brand-name {
  font-family: var(--font-display);
  font-size: 2rem;
  color: var(--ivory);
}
.footer-brand-sub { margin-top: 10px; font-size: 0.85rem; color: var(--gold-light); letter-spacing: 0.04em; }
.footer-brand-loc { margin-top: 4px; font-size: 0.8rem; color: rgba(250,246,238,0.65); }
.footer-col h4 {
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  color: var(--gold-light);
  font-weight: 600;
  margin-bottom: 20px;
}
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-col p { font-size: 0.9rem; color: rgba(250,246,238,0.8); }
.footer-col a:hover { color: var(--gold-light); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  padding: 26px 0;
  font-size: 0.78rem;
  color: rgba(250,246,238,0.55);
}

/* --------------------------- Floating WhatsApp (mobile) ---------------------- */
.floating-whatsapp {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 400;
  width: 58px; height: 58px;
  border-radius: 50%;
  background: var(--burgundy);
  border: 1px solid var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 10px 30px rgba(36,10,17,0.35);
  transition: transform 0.35s var(--ease);
}
.floating-whatsapp:hover { transform: scale(1.06); }
.floating-whatsapp svg { width: 26px; height: 26px; }

/* ------------------------------- Simple pages (privacy/terms) --------------- */
.simple-page {
  padding: 180px 0 120px;
  background: var(--ivory);
  min-height: 60vh;
}
.simple-page h1 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 5vw, 3.4rem);
  color: var(--burgundy-deep);
  margin-bottom: 10px;
}
.simple-page .updated { font-size: 0.85rem; color: var(--charcoal-soft); margin-bottom: 50px; }
.simple-page h2 {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--burgundy);
  margin-top: 44px;
  margin-bottom: 14px;
}
.simple-page p, .simple-page li {
  color: var(--charcoal-soft);
  margin-bottom: 14px;
  max-width: 72ch;
}
.simple-page ul { list-style: disc; padding-left: 22px; }
.simple-page ul li { margin-bottom: 8px; }
.simple-page a.inline-link { color: var(--burgundy); text-decoration: underline; text-underline-offset: 3px; }
.simple-page .biz-block {
  margin-top: 50px;
  padding: 34px 40px;
  background: var(--ivory-deep);
  border-left: 3px solid var(--gold);
}
.simple-page .biz-block p { margin-bottom: 4px; color: var(--charcoal); }

/* ------------------------------------ Responsive ---------------------------- */
@media (max-width: 980px) {
  .main-nav ul, .nav-actions .whatsapp-pill.desktop-only { display: none; }
  .hamburger { display: flex; }
  .intro .container { grid-template-columns: 1fr; }
  .intro-media { order: -1; }
  .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .visit-grid { grid-template-columns: 1fr; gap: 50px; }
  .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 620px) {
  .collections-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 18px; }
  .footer-top { grid-template-columns: 1fr; }
  .visit-card { padding: 28px; }
  .contact-card { padding: 32px; }
  .statement-content { padding: 70px var(--gutter); }
}
