/* ============================================
   THE MODEST REVEAL — Luxury Abaya House
   Brand: Deep Forest #171F19 · Ivory Sage #ECF1EB
   ============================================ */

:root {
  --forest: #171f19;
  --forest-deep: #10160f;
  --forest-soft: #202b22;
  --ivory: #ecf1eb;
  --ivory-dim: rgba(236, 241, 235, 0.65);
  --ivory-faint: rgba(236, 241, 235, 0.35);
  --gold: #c5b58c;
  --sand: #d8c9b2;
  --line: rgba(236, 241, 235, 0.14);
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--forest);
  color: var(--ivory);
  font-family: var(--sans);
  font-weight: 300;
  letter-spacing: 0.02em;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container { width: min(1280px, 92%); margin: 0 auto; }

/* ---------- Intro splash (video → logo → site) ---------- */
.intro {
  position: fixed;
  inset: 0;
  z-index: 1000;
  background: var(--forest-deep);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: opacity 1.2s ease, transform 1.2s ease;
}
.intro.intro-exit {
  opacity: 0;
  transform: scale(1.06);
  pointer-events: none;
}
.intro-video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: opacity 1s ease;
}
.intro-video.fade-out { opacity: 0; }
.intro-logo {
  position: relative;
  z-index: 2;
  text-align: center;
  opacity: 0;
  transform: scale(0.92);
  transition: opacity 1.4s ease, transform 1.6s cubic-bezier(0.2, 0.7, 0.2, 1);
}
.intro-logo.show { opacity: 1; transform: scale(1); }
.intro-logo img {
  height: min(40vh, 340px);
  width: auto;
  margin: 0 auto 28px;
  filter: drop-shadow(0 0 50px rgba(236, 241, 235, 0.15));
}
.intro-tag {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(16px, 2.2vw, 22px);
  color: var(--ivory-dim);
  letter-spacing: 0.12em;
  opacity: 0;
  transition: opacity 1.2s ease 0.7s;
}
.intro-logo.show .intro-tag { opacity: 1; }
.skip-intro {
  position: absolute;
  bottom: 34px;
  right: 38px;
  z-index: 3;
  background: rgba(16, 22, 15, 0.45);
  border: 1px solid rgba(236, 241, 235, 0.35);
  color: var(--ivory);
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  padding: 12px 26px;
  cursor: pointer;
  transition: all 0.3s;
  backdrop-filter: blur(6px);
}
.skip-intro:hover { background: var(--ivory); color: var(--forest); }
body.intro-locked { overflow: hidden; }

/* ---------- Announcement bar ---------- */
.announce {
  background: var(--forest-deep);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 9px 16px;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}
.announce span { color: var(--gold); }

/* ---------- Header ---------- */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(23, 31, 25, 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 18px; }
.brand img { height: 78px; width: auto; }
.brand-name {
  font-family: var(--serif);
  font-size: 19px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  white-space: nowrap;
}
nav ul { display: flex; gap: 44px; }
nav a {
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s;
  position: relative;
  padding: 6px 0;
}
nav a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s ease;
}
nav a:hover, nav a.active { color: var(--ivory); }
nav a:hover::after, nav a.active::after { width: 100%; }

.header-icons { display: flex; gap: 22px; align-items: center; }
.header-icons a {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  transition: color 0.3s;
}
.header-icons a:hover { color: var(--ivory); }
.cart-link { border: 1px solid var(--line); padding: 8px 16px; border-radius: 2px; }

.menu-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 8px 12px;
  font-size: 16px;
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.95;
}
.hero-model {
  position: absolute;
  right: 4%;
  bottom: 0;
  height: 92%;
  width: auto;
  object-fit: contain;
  object-position: bottom;
  z-index: 1;
  filter: drop-shadow(0 30px 70px rgba(0, 0, 0, 0.45));
}
.hero-content { position: relative; z-index: 2; max-width: 640px; }

/* ---------- Photo hero (desert bg, model right, text left) ---------- */
.hero-photo .eyebrow {
  color: var(--forest);
  font-weight: 500;
}
.hero-photo h1 {
  color: #000000;
  font-weight: 600;
}
.hero-photo h1 em { color: var(--forest); font-weight: 600; font-style: italic; }
.hero-photo p {
  color: var(--forest);
  font-weight: 500;
}
.hero-photo .hero-model {
  filter: drop-shadow(0 35px 60px rgba(90, 50, 15, 0.5));
}

/* ---------- Desert hero variant ---------- */
.hero-desert {
  flex-direction: column;
  justify-content: flex-start;
  min-height: 100vh;
}
.hero-content-center {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
  padding: 9vh 6% 0;
  z-index: 3;
}
.hero-desert .eyebrow { color: #8a6038; }
.hero-desert h1 { color: var(--forest); }
.hero-desert h1 em { color: #9c7340; }
.hero-desert p {
  color: rgba(23, 31, 25, 0.72);
  margin-left: auto;
  margin-right: auto;
}
.btn-desert {
  border-color: var(--forest);
  color: var(--forest);
}
.btn-desert:hover { background: var(--forest); color: var(--ivory); }
.hero-model-center {
  position: absolute;
  left: 50%;
  right: auto;
  bottom: 0;
  transform: translateX(-50%);
  height: 62%;
  z-index: 2;
  filter: drop-shadow(0 40px 60px rgba(90, 50, 15, 0.45));
}
.sand-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 4;
  pointer-events: none;
}
.hero-fade {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 90px;
  z-index: 5;
  background: linear-gradient(to bottom, rgba(23, 31, 25, 0) 0%, var(--forest-deep) 100%);
  pointer-events: none;
}
@media (max-width: 1024px) {
  .hero-model-center { height: 48%; }
  .hero-content-center { padding-top: 12vh; }
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.45em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  display: block;
}
.hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(44px, 6vw, 78px);
  line-height: 1.08;
  margin-bottom: 28px;
}
.hero h1 em { font-style: italic; color: var(--sand); }
.hero p {
  color: var(--ivory-dim);
  max-width: 460px;
  margin-bottom: 42px;
  font-size: 16px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  padding: 17px 46px;
  border: 1px solid var(--ivory);
  color: var(--ivory);
  transition: all 0.4s ease;
  background: transparent;
  cursor: pointer;
  font-family: var(--sans);
}
.btn:hover { background: var(--ivory); color: var(--forest); }
.btn-solid { background: var(--ivory); color: var(--forest); }
.btn-solid:hover { background: transparent; color: var(--ivory); }
.btn-gold { border-color: var(--gold); color: var(--gold); }
.btn-gold:hover { background: var(--gold); color: var(--forest); }

/* ---------- Section scaffolding ---------- */
section { padding: 110px 0; }
.section-head { text-align: center; margin-bottom: 70px; }
.section-head h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 4vw, 48px);
  margin: 14px 0 18px;
}
.section-head p { color: var(--ivory-dim); max-width: 520px; margin: 0 auto; }
.rule {
  width: 56px; height: 1px;
  background: var(--gold);
  margin: 26px auto 0;
}

/* ---------- Product grid ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}
.product-grid.grid-3 {
  grid-template-columns: repeat(3, 1fr);
  gap: 36px;
  max-width: 1080px;
  margin: 0 auto;
}
.product-card { group: card; position: relative; }
.product-media {
  position: relative;
  overflow: hidden;
  background: var(--forest-soft);
  margin-bottom: 20px;
}
.product-media img {
  width: 100%;
  aspect-ratio: 6/7;
  object-fit: cover;
  transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1);
}
.product-card:hover .product-media img { transform: scale(1.05); }
.badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--forest);
  color: var(--sand);
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 6px 14px;
  z-index: 2;
}
.badge.sold { background: var(--ivory); color: var(--forest); }
.quick-add {
  position: absolute;
  left: 0; right: 0; bottom: -60px;
  background: rgba(16, 22, 15, 0.92);
  color: var(--ivory);
  text-align: center;
  padding: 15px;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  transition: bottom 0.4s ease;
  cursor: pointer;
  border: none;
  width: 100%;
  font-family: var(--sans);
}
.product-card:hover .quick-add { bottom: 0; }

/* ---------- Auto-rotating slideshow card ---------- */
.slideshow {
  cursor: pointer;
  aspect-ratio: 1045/1400;
}
.slideshow .slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 2.2s ease, transform 9s ease;
}
.slideshow .slide.active {
  opacity: 1;
  transform: scale(1);
  z-index: 1;
}
/* gentle continuous zoom while hovering */
.slideshow:hover .slide.active {
  transform: scale(1.08);
}
.slideshow .slide-dots {
  position: absolute;
  bottom: 16px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  z-index: 3;
}
.slideshow .slide-dots i {
  width: 7px; height: 7px;
  border-radius: 50%;
  background: rgba(236, 241, 235, 0.4);
  transition: all 0.3s;
}
.slideshow .slide-dots i.on {
  background: var(--ivory);
  width: 22px;
  border-radius: 4px;
}
.view-link {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--gold);
  transition: color 0.3s;
}
.view-link:hover { color: var(--ivory); }

.product-info { text-align: center; }
.product-info h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 19px;
  letter-spacing: 0.04em;
  margin-bottom: 8px;
}
.price { font-size: 14px; letter-spacing: 0.1em; color: var(--sand); }
.price s { color: var(--ivory-faint); margin-left: 10px; font-size: 13px; }

/* ---------- Feature strip ---------- */
.features {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--forest-deep);
  padding: 70px 0;
}
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
  text-align: center;
}
.feature .f-icon {
  font-size: 26px;
  color: var(--gold);
  margin-bottom: 18px;
  font-family: var(--serif);
}
.feature h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 21px;
  margin-bottom: 10px;
}
.feature p { color: var(--ivory-dim); font-size: 14px; max-width: 280px; margin: 0 auto; }

/* ---------- Collections ---------- */
.collections-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.collection-card {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3/4;
  display: block;
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.9s ease;
}
.collection-card:hover img { transform: scale(1.06); }
.collection-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 22, 15, 0.85) 0%, transparent 55%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.collection-overlay h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 22px;
  margin-bottom: 6px;
}
.collection-overlay span {
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Editorial split ---------- */
.editorial {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.editorial-media { position: relative; }
.editorial-media img { width: 100%; aspect-ratio: 4/5; object-fit: cover; }
.editorial-media::after {
  content: '';
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(236, 241, 235, 0.25);
  pointer-events: none;
}
.editorial-text h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 46px);
  line-height: 1.15;
  margin: 16px 0 24px;
}
.editorial-text p { color: var(--ivory-dim); margin-bottom: 20px; max-width: 480px; }
.editorial-text .btn { margin-top: 18px; }

/* ---------- Statement band ---------- */
.statement {
  background: var(--forest-deep);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  text-align: center;
  padding: 130px 0;
}
.statement h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(28px, 3.6vw, 44px);
  max-width: 760px;
  margin: 0 auto 20px;
  line-height: 1.3;
}
.statement p {
  font-size: 12px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---------- Glass rating badge ---------- */
.glass-rating {
  position: relative;
  display: inline-block;
  padding: 24px 54px;
  border-radius: 22px;
  overflow: hidden;
  background: rgba(236, 241, 235, 0.06);
  border: 1px solid rgba(236, 241, 235, 0.18);
  backdrop-filter: blur(14px) saturate(120%);
  -webkit-backdrop-filter: blur(14px) saturate(120%);
  box-shadow:
    0 8px 40px rgba(0, 0, 0, 0.35),
    inset 0 1px 0 rgba(255, 255, 255, 0.25),
    inset 0 -1px 0 rgba(0, 0, 0, 0.2);
}
/* soft inner highlight for the glass dome look */
.glass-rating::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.18), transparent);
  pointer-events: none;
}
/* sweeping shine */
.glass-shine {
  position: absolute;
  top: 0; left: -60%;
  width: 45%;
  height: 100%;
  background: linear-gradient(115deg, transparent 0%, rgba(255, 255, 255, 0.35) 50%, transparent 100%);
  transform: skewX(-20deg);
  animation: glassSweep 4.5s ease-in-out infinite;
  pointer-events: none;
}
@keyframes glassSweep {
  0% { left: -60%; }
  45%, 100% { left: 130%; }
}

/* ---------- Testimonials ---------- */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.review {
  border: 1px solid var(--line);
  padding: 44px 36px;
  background: rgba(236, 241, 235, 0.02);
}
.stars { color: var(--gold); letter-spacing: 6px; margin-bottom: 20px; font-size: 14px; }
.review p {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.6;
  margin-bottom: 24px;
}
.review cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--ivory-dim);
}

/* ---------- Newsletter ---------- */
.newsletter {
  text-align: center;
  background:
    radial-gradient(ellipse at 50% 120%, rgba(197, 181, 140, 0.10), transparent 60%),
    var(--forest);
}
.newsletter h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(30px, 4vw, 44px);
  margin: 14px 0 18px;
}
.newsletter p { color: var(--ivory-dim); max-width: 460px; margin: 0 auto 38px; }
.newsletter-form {
  display: flex;
  max-width: 520px;
  margin: 0 auto;
  border: 1px solid var(--line);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  color: var(--ivory);
  padding: 17px 22px;
  font-family: var(--sans);
  font-size: 14px;
  letter-spacing: 0.05em;
}
.newsletter-form input::placeholder { color: var(--ivory-faint); }
.newsletter-form button { border: none; border-left: 1px solid var(--line); }

/* ---------- Footer ---------- */
footer {
  background: var(--forest-deep);
  border-top: 1px solid var(--line);
  padding: 90px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 70px;
  align-items: start;
}
.footer-brand { display: flex; flex-direction: column; align-items: flex-start; }
.footer-brand img { height: 150px; width: auto; margin: -10px 0 18px -8px; }
.footer-brand p { color: var(--ivory-dim); font-size: 14px; max-width: 300px; }
footer li a { white-space: nowrap; }
footer h4 {
  font-size: 12px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 26px;
  font-weight: 400;
}
footer li { margin-bottom: 14px; }
footer li a {
  font-size: 13px;
  color: var(--ivory-dim);
  letter-spacing: 0.08em;
  transition: color 0.3s;
}
footer li a:hover { color: var(--ivory); }
.footer-bottom {
  border-top: 1px solid var(--line);
  padding: 26px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--ivory-faint);
}
.socials { display: flex; gap: 22px; }
.socials a { color: var(--ivory-dim); font-size: 12px; letter-spacing: 0.15em; }
.socials a:hover { color: var(--gold); }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  text-align: center;
  padding: 110px 0 80px;
  border-bottom: 1px solid var(--line);
  background:
    radial-gradient(ellipse at 50% -40%, rgba(236, 241, 235, 0.07), transparent 60%),
    var(--forest);
}
.page-hero h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(38px, 5vw, 62px);
  margin: 16px 0;
}
.page-hero p { color: var(--ivory-dim); max-width: 540px; margin: 0 auto; }

/* ---------- Shop filters ---------- */
.shop-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 60px;
}
.filter-pills { display: flex; gap: 12px; flex-wrap: wrap; }
.pill {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--line);
  color: var(--ivory-dim);
  cursor: pointer;
  background: none;
  font-family: var(--sans);
  transition: all 0.3s;
}
.pill:hover, .pill.active {
  border-color: var(--gold);
  color: var(--gold);
}
.shop-count { font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase; color: var(--ivory-faint); }

/* ---------- Product detail page ---------- */
.product-detail {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 70px;
  align-items: start;
}
.gallery-main {
  position: relative;
  overflow: hidden;
  background: var(--forest-soft);
  aspect-ratio: 1045/1400;
}
.gallery-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: fadeImg 0.6s ease;
}
@keyframes fadeImg { from { opacity: 0.25; } to { opacity: 1; } }
.gallery-thumbs {
  display: flex;
  gap: 16px;
  margin-top: 18px;
}
.gallery-thumbs button {
  flex: 1;
  padding: 0;
  border: 1px solid var(--line);
  background: none;
  cursor: pointer;
  overflow: hidden;
  aspect-ratio: 1045/1400;
  transition: border-color 0.3s, opacity 0.3s;
  opacity: 0.6;
}
.gallery-thumbs button img { width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbs button:hover { opacity: 1; }
.gallery-thumbs button.active { border-color: var(--gold); opacity: 1; }
.gallery-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(16,22,15,0.5);
  border: 1px solid rgba(236,241,235,0.3);
  color: var(--ivory);
  width: 46px; height: 46px;
  cursor: pointer;
  font-size: 18px;
  transition: background 0.3s;
  backdrop-filter: blur(6px);
  z-index: 2;
}
.gallery-nav:hover { background: var(--ivory); color: var(--forest); }
.gallery-nav.prev { left: 14px; }
.gallery-nav.next { right: 14px; }

.pd-info .eyebrow { color: var(--gold); }
.pd-info h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(34px, 4vw, 52px);
  margin: 12px 0 18px;
}
.pd-price { font-size: 22px; color: var(--sand); letter-spacing: 0.08em; margin-bottom: 28px; }
.pd-info > p { color: var(--ivory-dim); margin-bottom: 28px; max-width: 460px; }
.pd-options { margin-bottom: 32px; }
.pd-options label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 14px;
}
.size-row { display: flex; gap: 12px; }
.size-row button {
  width: 52px; height: 52px;
  border: 1px solid var(--line);
  background: none;
  color: var(--ivory-dim);
  cursor: pointer;
  font-family: var(--sans);
  letter-spacing: 0.1em;
  transition: all 0.3s;
}
.size-row button:hover, .size-row button.active {
  border-color: var(--gold); color: var(--gold);
}
.pd-detail-list {
  border-top: 1px solid var(--line);
  margin-top: 38px;
  padding-top: 28px;
}
.pd-detail-list li {
  display: flex;
  justify-content: space-between;
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
  color: var(--ivory-dim);
}
.pd-detail-list li strong { color: var(--ivory); font-weight: 400; }
@media (max-width: 900px) {
  .product-detail { grid-template-columns: 1fr; gap: 40px; }
}

/* ---------- Story page ---------- */
.story-block { max-width: 720px; margin: 0 auto; }
.story-block p {
  font-size: 17px;
  color: var(--ivory-dim);
  margin-bottom: 28px;
}
.story-block .lead {
  font-family: var(--serif);
  font-size: 26px;
  font-style: italic;
  color: var(--ivory);
  line-height: 1.5;
}
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 70px;
}
.value-card {
  border: 1px solid var(--line);
  padding: 48px 36px;
  text-align: center;
}
.value-card .num {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.value-card h3 { font-family: var(--serif); font-weight: 500; font-size: 22px; margin-bottom: 12px; }
.value-card p { color: var(--ivory-dim); font-size: 14px; }

/* ---------- About / Mission / Vision arch cards ---------- */
.arch-section { padding-top: 0; }
.arch-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  align-items: start;
}
.arch-card {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  border: 1px solid rgba(236, 241, 235, 0.25);
  border-radius: 220px 220px 16px 16px;
  padding: 60px 40px 54px;
  text-align: center;
  background: rgba(236, 241, 235, 0.05);
  backdrop-filter: blur(12px) saturate(120%);
  -webkit-backdrop-filter: blur(12px) saturate(120%);
  box-shadow:
    0 10px 50px rgba(0, 0, 0, 0.3),
    inset 0 1px 0 rgba(255, 255, 255, 0.28),
    inset 0 -1px 0 rgba(0, 0, 0, 0.18);
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s, box-shadow 0.6s;
  animation: archFloat 6s ease-in-out infinite;
}
/* glossy top highlight */
.arch-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 40%;
  background: linear-gradient(to bottom, rgba(255, 255, 255, 0.14), transparent);
  pointer-events: none;
  z-index: 0;
}
/* slow shine sweeping across the glass */
.arch-card .arch-title,
.arch-card p,
.arch-card .arch-photo { position: relative; z-index: 1; }
.arch-card::after {
  content: '';
  position: absolute;
  top: -20%; left: -70%;
  width: 50%;
  height: 140%;
  background: linear-gradient(115deg, transparent, rgba(255, 255, 255, 0.16), transparent);
  transform: skewX(-20deg);
  animation: archShine 7s ease-in-out infinite;
  pointer-events: none;
  z-index: 0;
}
.arch-grid .arch-card:nth-child(2)::after { animation-delay: 1.2s; }
.arch-grid .arch-card:nth-child(3)::after { animation-delay: 2.4s; }
@keyframes archShine {
  0% { left: -70%; }
  40%, 100% { left: 150%; }
}
.arch-grid .arch-card:nth-child(2) { animation-delay: -2s; }
.arch-grid .arch-card:nth-child(3) { animation-delay: -4s; }
@keyframes archFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}
.arch-card:hover {
  border-color: var(--gold);
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.4), inset 0 0 60px rgba(197, 181, 140, 0.06);
  animation-play-state: paused;
  transform: translateY(-14px) scale(1.02);
}
.arch-photo {
  width: 190px;
  height: 190px;
  margin: 0 auto 30px;
  border-radius: 50%;
  overflow: hidden;
  border: 1px solid rgba(185, 196, 166, 0.6);
  position: relative;
  transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1), border-color 0.5s;
}
.arch-card:hover .arch-photo {
  transform: scale(1.07) rotate(-3deg);
  border-color: var(--gold);
}
/* shimmering ring that sweeps around the photo on hover */
.arch-photo::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid transparent;
  border-top-color: var(--gold);
  opacity: 0;
  transition: opacity 0.4s;
}
.arch-card:hover .arch-photo::after {
  opacity: 0.8;
  animation: ringSpin 2.4s linear infinite;
}
@keyframes ringSpin { to { transform: rotate(360deg); } }
.arch-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 20%;
  transition: transform 6s ease;
}
.arch-card:hover .arch-photo img { transform: scale(1.12); }
.arch-title {
  font-family: var(--serif);
  font-weight: 600;
  font-size: 32px;
  letter-spacing: 0.16em;
  line-height: 1;
  margin-bottom: 26px;
  color: #b9c4a6;
}
.arch-title em {
  display: block;
  font-style: italic;
  font-weight: 500;
  font-size: 40px;
  letter-spacing: 0.02em;
  color: var(--ivory);
  margin-top: 6px;
}
.arch-card p {
  color: var(--ivory-dim);
  font-size: 15px;
  line-height: 1.75;
  margin-bottom: 16px;
}
.arch-card p:last-child { margin-bottom: 0; }
@media (max-width: 900px) {
  .arch-grid { grid-template-columns: 1fr; gap: 36px; max-width: 460px; margin: 0 auto; }
  .arch-card { border-radius: 200px 200px 16px 16px; }
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: start;
}
.contact-info h2 { font-family: var(--serif); font-weight: 400; font-size: 34px; margin-bottom: 24px; }
.contact-info p { color: var(--ivory-dim); margin-bottom: 32px; max-width: 380px; }
.contact-line { margin-bottom: 26px; }
.contact-line span {
  display: block;
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 6px;
}
.contact-line a, .contact-line strong { font-weight: 300; font-size: 16px; color: var(--ivory); }
.contact-form { border: 1px solid var(--line); padding: 50px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.field { margin-bottom: 22px; }
.field label {
  display: block;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--ivory-dim);
  margin-bottom: 10px;
}
.field input, .field textarea, .field select {
  width: 100%;
  background: transparent;
  border: 1px solid var(--line);
  color: var(--ivory);
  padding: 14px 16px;
  font-family: var(--sans);
  font-size: 14px;
  outline: none;
  transition: border-color 0.3s;
}
.field input:focus, .field textarea:focus { border-color: var(--gold); }
.field textarea { min-height: 140px; resize: vertical; }

/* ---------- FAQ ---------- */
.faq { max-width: 760px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 26px 0;
  font-family: var(--serif);
  font-size: 20px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.faq-item summary::after { content: '+'; color: var(--gold); font-size: 22px; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { color: var(--ivory-dim); padding: 0 0 26px; max-width: 640px; }

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

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid, .collections-grid { grid-template-columns: repeat(2, 1fr); }
  .editorial, .contact-grid { grid-template-columns: 1fr; gap: 50px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 44px; }
  nav { display: none; }
  nav.open {
    display: block;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--forest-deep);
    border-bottom: 1px solid var(--line);
    padding: 28px 6%;
  }
  nav.open ul { flex-direction: column; gap: 22px; }
  .menu-toggle { display: block; }
  .features-grid, .reviews-grid, .values-grid { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .product-grid, .collections-grid { grid-template-columns: 1fr; }
  section { padding: 70px 0; }
  .brand-name { display: none; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form { padding: 30px 22px; }
  .header-icons .hide-m { display: none; }
}
