/* ==========================================================================
   SOHAM POLYMATS — design system
   Palette drawn from the product photography: woven reed & cane mats,
   deep indigo + red bordered prayer mats, marigold and leaf-green threads.
   Display face: Fraunces (warm, crafted serif) / Body: Plus Jakarta Sans
   Signature motif: a woven "thread line" that runs through dividers,
   underlines and card borders — literal to what the product is.
   ========================================================================== */

:root {
  /* Palette */
  --paper: #F7F1E4;
  --paper-deep: #EFE6D2;
  --ink: #241E17;
  --ink-soft: #55493C;
  --rose: #C31C4D;
  --rose-deep: #971239;
  --indigo: #262C56;
  --indigo-deep: #171B39;
  --gold: #E0A23A;
  --leaf: #2E8B4F;
  --cream-card: #FFFDF8;
  --line: rgba(36, 30, 23, 0.12);

  /* Type */
  --font-display: "Fraunces", "Georgia", serif;
  --font-body: "Plus Jakarta Sans", "Segoe UI", sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-s: 10px;
  --radius-m: 18px;
  --radius-l: 28px;
  --shadow-card: 0 14px 34px -18px rgba(23, 20, 14, 0.35);
  --shadow-lift: 0 22px 46px -20px rgba(23, 20, 14, 0.45);
  --ease: cubic-bezier(.22, .68, 0, 1);
}

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

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
button { font-family: inherit; cursor: pointer; }

h1, h2, h3, h4 {
  font-family: var(--font-display);
  color: var(--indigo-deep);
  line-height: 1.08;
  margin: 0;
  font-weight: 600;
}

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

/* -------------------------- utility --------------------------------- */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--rose-deep);
  font-weight: 700;
  margin-bottom: 14px;
}
.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  background: var(--gold);
  display: inline-block;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 30px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn-primary {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 12px 28px -10px rgba(195, 28, 77, 0.55);
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 18px 34px -12px rgba(195, 28, 77, 0.6); background: var(--rose-deep); }
.btn-outline {
  background: transparent;
  border-color: rgba(247, 241, 228, 0.55);
  color: inherit;
}
.btn-outline:hover { border-color: var(--gold); background: rgba(224, 162, 58, 0.12); transform: translateY(-3px); }
.btn-dark {
  background: var(--indigo-deep);
  color: var(--paper);
}
.btn-dark:hover { background: var(--rose-deep); transform: translateY(-3px); }

/* thread-line signature divider ---------------------------------------- */
.thread-divider {
  width: 100%;
  height: 22px;
  display: block;
  overflow: hidden;
}
.thread-divider svg { width: 100%; height: 100%; display: block; }
.thread-path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-dasharray: 2200;
  stroke-dashoffset: 2200;
  transition: stroke-dashoffset 1.6s var(--ease);
}
.thread-divider.in-view .thread-path { stroke-dashoffset: 0; }

.thread-underline {
  position: relative;
  display: inline-block;
}
.thread-underline svg {
  position: absolute;
  left: 0;
  bottom: -10px;
  width: 100%;
  height: 12px;
  overflow: visible;
}
.thread-underline path {
  fill: none;
  stroke: var(--gold);
  stroke-width: 3;
  stroke-linecap: round;
  stroke-dasharray: 400;
  stroke-dashoffset: 400;
  transition: stroke-dashoffset 1.1s var(--ease) .15s;
}
.in-view .thread-underline path,
.thread-underline.in-view path { stroke-dashoffset: 0; }

/* -------------------------- reveal on scroll -------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal-stagger .reveal:nth-child(1) { transition-delay: .05s; }
.reveal-stagger .reveal:nth-child(2) { transition-delay: .15s; }
.reveal-stagger .reveal:nth-child(3) { transition-delay: .25s; }
.reveal-stagger .reveal:nth-child(4) { transition-delay: .35s; }
.reveal-stagger .reveal:nth-child(5) { transition-delay: .45s; }
.reveal-stagger .reveal:nth-child(6) { transition-delay: .55s; }

/* ============================ HEADER =================================== */
.top-strip {
  background: var(--indigo-deep);
  color: rgba(247, 241, 228, 0.85);
  font-size: 13px;
}
.top-strip .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 9px;
  padding-bottom: 9px;
  gap: 20px;
  flex-wrap: wrap;
}
.top-strip .strip-item { display: flex; align-items: center; gap: 8px; }
.top-strip .strip-item svg { width: 15px; height: 15px; flex: none; color: var(--gold); }
.top-strip .strip-social { display: flex; gap: 14px; }
.top-strip .strip-social a { opacity: .8; transition: opacity .25s, transform .25s; }
.top-strip .strip-social a:hover { opacity: 1; transform: translateY(-2px); color: var(--gold); }

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(247, 241, 228, 0.98);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .3s, padding .3s;
}
/* Note: intentionally no backdrop-filter here — it would create a new
   containing block for the position:fixed mobile nav drawer below,
   which breaks its full-height positioning on mobile. */
.site-header.scrolled { box-shadow: 0 10px 30px -18px rgba(23,20,14,.4); }
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  transition: padding .3s;
}
.site-header.scrolled .container { padding-top: 9px; padding-bottom: 9px; }

.brand { display: flex; align-items: center; gap: 12px; }
.brand img { height: 46px; width: auto; transition: height .3s; }
.site-header.scrolled .brand img { height: 38px; }

.main-nav { display: flex; align-items: center; gap: 6px; }
.main-nav a {
  padding: 10px 16px;
  font-weight: 600;
  font-size: 15px;
  color: var(--ink);
  border-radius: 999px;
  position: relative;
  transition: color .25s, background .25s;
}
.main-nav a:hover { color: var(--rose-deep); background: rgba(195,28,77,.07); }
.main-nav a.active { color: var(--rose-deep); }
.main-nav a.active::after {
  content: "";
  position: absolute;
  left: 16px; right: 16px; bottom: 5px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
}

.header-cta { display: flex; align-items: center; gap: 14px; }
.header-cta .btn-primary { padding: 12px 24px; font-size: 14px; }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .3s, opacity .3s; }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ============================ HERO SLIDER =============================== */
.hero-slider {
  position: relative;
  height: 92vh;
  min-height: 620px;
  max-height: 920px;
  overflow: hidden;
  background: var(--indigo-deep);
}
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.4s var(--ease), visibility 1.4s;
  z-index: 1;
}
.hero-slide.active { opacity: 1; visibility: visible; z-index: 2; }
.hero-slide .slide-media {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.12);
  transition: transform 7s linear;
}
.hero-slide.active .slide-media { transform: scale(1); }
.hero-slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(23,27,57,.88) 0%, rgba(23,27,57,.58) 42%, rgba(23,27,57,.22) 75%, rgba(23,27,57,.1) 100%);
}
.hero-slide-content {
  position: relative;
  z-index: 3;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 640px;
  padding: 0 28px;
  margin: 0 auto;
  color: #fff;
}
.hero-slider .container.hero-inner {
  position: relative;
  height: 100%;
  max-width: var(--container);
  margin: 0 auto;
}
.hero-slide-content .eyebrow { color: var(--gold); }
.hero-slide-content .eyebrow::before { background: var(--gold); }
.hero-slide-content h1 {
  color: #fff;
  font-size: clamp(2.4rem, 5vw, 4rem);
  margin-bottom: 20px;
  opacity: 0;
  transform: translateY(24px);
}
.hero-slide-content p {
  font-size: 18px;
  line-height: 1.6;
  color: rgba(247,241,228,.86);
  max-width: 480px;
  margin-bottom: 32px;
  opacity: 0;
  transform: translateY(24px);
}
.hero-slide-content .hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(24px);
}
.hero-slide.active .hero-slide-content h1,
.hero-slide.active .hero-slide-content p,
.hero-slide.active .hero-slide-content .hero-cta {
  opacity: 1;
  transform: translateY(0);
  transition: opacity .9s var(--ease) .5s, transform .9s var(--ease) .5s;
}
.hero-slide.active .hero-slide-content p { transition-delay: .65s; }
.hero-slide.active .hero-slide-content .hero-cta { transition-delay: .8s; }

.hero-badge {
  position: absolute;
  right: 6%;
  bottom: 12%;
  z-index: 4;
  background: rgba(247,241,228,.95);
  color: var(--indigo-deep);
  border-radius: var(--radius-m);
  padding: 20px 26px;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: 16px;
  max-width: 260px;
}
.hero-badge strong { font-family: var(--font-display); font-size: 30px; color: var(--rose); display: block; line-height: 1; }
.hero-badge span { font-size: 13px; color: var(--ink-soft); }

.hero-dots {
  position: absolute;
  left: 28px;
  bottom: 30px;
  z-index: 5;
  display: flex;
  gap: 10px;
}
.hero-dots button {
  width: 34px;
  height: 4px;
  border-radius: 3px;
  border: none;
  background: rgba(255,255,255,.35);
  padding: 0;
  transition: background .3s;
}
.hero-dots button.active { background: var(--gold); }

.hero-arrows { position: absolute; right: 28px; bottom: 26px; z-index: 5; display: flex; gap: 10px; }
.hero-arrows button {
  width: 44px; height: 44px; border-radius: 50%;
  border: 1px solid rgba(255,255,255,.4);
  background: rgba(255,255,255,.08);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, transform .25s;
}
.hero-arrows button:hover { background: var(--gold); border-color: var(--gold); color: var(--indigo-deep); transform: translateY(-2px); }
.hero-arrows svg { width: 18px; height: 18px; }

.scroll-cue {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 5;
  color: rgba(255,255,255,.75);
  display: none;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 11px;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.scroll-cue .dot-run { width: 1px; height: 34px; background: linear-gradient(rgba(255,255,255,0), rgba(255,255,255,.8)); position: relative; overflow: hidden; }
.scroll-cue .dot-run::after { content: ""; position: absolute; left: -1px; top: -20px; width: 3px; height: 12px; background: var(--gold); animation: cue-run 2s infinite; }
@keyframes cue-run { 0% { top: -20px; } 100% { top: 40px; } }

/* small page hero (for inner pages) */
.page-hero {
  position: relative;
  padding: 190px 0 90px;
  background: var(--indigo-deep);
  color: #fff;
  overflow: hidden;
  text-align: center;
}
.page-hero::before {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 20% 0%, rgba(195,28,77,.35), transparent 55%),
              radial-gradient(ellipse at 85% 100%, rgba(224,162,58,.25), transparent 55%);
}
.page-hero .container { position: relative; z-index: 2; }
.page-hero .eyebrow { color: var(--gold); justify-content: center; }
.page-hero .eyebrow::before { display: none; }
.page-hero h1 { color: #fff; font-size: clamp(2.2rem, 4.4vw, 3.3rem); }
.page-hero .crumb { margin-top: 18px; font-size: 14px; color: rgba(247,241,228,.7); }
.page-hero .crumb a:hover { color: var(--gold); }
.page-hero .crumb span { margin: 0 8px; color: var(--gold); }

/* ============================ STATS BAND ============================== */
.stats-band {
  background: var(--indigo-deep);
  color: var(--paper);
  padding: 0;
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}
.stat-item {
  padding: 46px 24px;
  text-align: center;
  border-right: 1px solid rgba(247,241,228,.14);
}
.stat-item:last-child { border-right: none; }
.stat-item .num {
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.4vw, 2.8rem);
  color: var(--gold);
  display: block;
}
.stat-item .label { font-size: 13.5px; color: rgba(247,241,228,.78); margin-top: 6px; line-height: 1.4; }

/* ============================ ABOUT SECTION ============================ */
.about-section { padding: 110px 0; }
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-media { position: relative; }
.about-media .frame {
  border-radius: var(--radius-l);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}
.about-media .frame img { width: 100%; height: 560px; object-fit: cover; transition: transform .8s var(--ease); }
.about-media .frame:hover img { transform: scale(1.05); }
.about-media .float-card {
  position: absolute;
  left: -34px;
  bottom: -30px;
  background: var(--cream-card);
  border-radius: var(--radius-m);
  padding: 22px 26px;
  box-shadow: var(--shadow-lift);
  display: flex;
  align-items: center;
  gap: 14px;
  max-width: 250px;
}
.about-media .float-card .icon-circle { width: 46px; height: 46px; border-radius: 50%; background: var(--rose); color: #fff; display: flex; align-items: center; justify-content: center; flex: none; }
.about-media .float-card strong { display: block; font-family: var(--font-display); font-size: 19px; color: var(--indigo-deep); }
.about-media .float-card span { font-size: 13px; color: var(--ink-soft); }

.about-copy h2 { font-size: clamp(1.9rem, 3.2vw, 2.6rem); margin-bottom: 22px; }
.about-copy p { font-size: 16.5px; line-height: 1.8; color: var(--ink-soft); margin-bottom: 18px; }
.about-list { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 30px 0 34px; }
.about-list li { display: flex; align-items: flex-start; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--indigo-deep); }
.about-list li svg { flex: none; width: 20px; height: 20px; color: var(--leaf); margin-top: 1px; }

/* ============================ SECTION HEADS ============================= */
.section-head { max-width: 640px; margin: 0 auto 60px; text-align: center; }
.section-head h2 { font-size: clamp(1.9rem, 3.4vw, 2.7rem); }
.section-head p { color: var(--ink-soft); font-size: 16px; margin-top: 16px; line-height: 1.7; }
.section-head.left { margin-left: 0; text-align: left; }

/* ============================ SERVICES / CATEGORY CARDS ================= */
.services-section { padding: 110px 0; background: var(--paper-deep); position: relative; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}
.service-card {
  background: var(--cream-card);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .5s var(--ease), box-shadow .5s var(--ease);
  display: flex;
  flex-direction: column;
}
.service-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lift); }
.service-card .thumb { height: 230px; overflow: hidden; position: relative; }
.service-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.service-card:hover .thumb img { transform: scale(1.08); }
.service-card .thumb .num {
  position: absolute; top: 16px; right: 16px;
  background: rgba(23,27,57,.72);
  color: var(--gold);
  font-family: var(--font-display);
  font-size: 13px;
  padding: 6px 12px;
  border-radius: 999px;
}
.service-card .body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.service-card h3 { font-size: 21px; margin-bottom: 10px; }
.service-card p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.65; margin-bottom: 18px; flex: 1; }
.service-card .more {
  display: inline-flex; align-items: center; gap: 8px;
  font-weight: 700; font-size: 14px; color: var(--rose-deep);
  transition: gap .25s;
}
.service-card .more svg { width: 16px; height: 16px; transition: transform .25s; }
.service-card:hover .more svg { transform: translateX(4px); }

/* ============================ WHY US ==================================== */
.why-section { padding: 110px 0; }
.why-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.why-feature-list { display: grid; gap: 22px; }
.why-feature {
  display: flex; gap: 18px;
  padding: 22px;
  border-radius: var(--radius-m);
  transition: background .3s, transform .3s;
}
.why-feature:hover { background: var(--cream-card); transform: translateX(6px); box-shadow: var(--shadow-card); }
.why-feature .icon-circle {
  flex: none; width: 52px; height: 52px; border-radius: 16px;
  background: linear-gradient(135deg, var(--rose), var(--rose-deep));
  color: #fff; display: flex; align-items: center; justify-content: center;
}
.why-feature .icon-circle svg { width: 24px; height: 24px; }
.why-feature h3 { font-size: 18px; margin-bottom: 6px; }
.why-feature p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; margin: 0; }
.why-media { position: relative; }
.why-media img { border-radius: var(--radius-l); box-shadow: var(--shadow-card); width: 100%; height: 520px; object-fit: cover; }

/* ============================ COLLECTIONS / GALLERY ====================== */
.collections-section { padding: 110px 0; background: var(--indigo-deep); color: var(--paper); }
.collections-section .section-head h2 { color: #fff; }
.collections-section .section-head p { color: rgba(247,241,228,.72); }
.filter-row {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 46px;
}
.filter-row button {
  padding: 10px 22px;
  border-radius: 999px;
  border: 1px solid rgba(247,241,228,.25);
  background: transparent;
  color: rgba(247,241,228,.85);
  font-size: 14px;
  font-weight: 600;
  transition: all .3s;
}
.filter-row button:hover { border-color: var(--gold); color: var(--gold); }
.filter-row button.active { background: var(--rose); border-color: var(--rose); color: #fff; }

.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
}
.collection-item {
  position: relative;
  border-radius: var(--radius-m);
  overflow: hidden;
  height: 380px;
  box-shadow: var(--shadow-card);
  transition: transform .3s;
}
.collection-item.hidden-item { display: none; }
.collection-item img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.collection-item:hover img { transform: scale(1.1); }
.collection-item::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(23,27,57,.9) 100%);
}
.collection-item .cap {
  position: absolute; left: 22px; bottom: 20px; z-index: 2;
  color: #fff;
}
.collection-item .cap .tag { font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--gold); font-weight: 700; }
.collection-item .cap h3 { color: #fff; font-size: 22px; margin-top: 6px; }

/* ============================ FAQ ======================================== */
.faq-section { padding: 110px 0; }
.faq-wrap { max-width: 800px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid var(--line);
  padding: 22px 0;
}
.faq-q {
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px;
  cursor: pointer;
  font-family: var(--font-display);
  font-size: 19px;
  color: var(--indigo-deep);
}
.faq-q .plus {
  flex: none; width: 32px; height: 32px; border-radius: 50%;
  border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center;
  position: relative;
  transition: transform .35s, background .3s;
}
.faq-q .plus::before, .faq-q .plus::after {
  content: ""; position: absolute; background: var(--rose-deep);
}
.faq-q .plus::before { width: 12px; height: 2px; }
.faq-q .plus::after { width: 2px; height: 12px; transition: opacity .3s; }
.faq-item.open .plus { transform: rotate(180deg); background: var(--rose); }
.faq-item.open .plus::before, .faq-item.open .plus::after { background: #fff; }
.faq-item.open .plus::after { opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .5s var(--ease);
}
.faq-a p { padding-top: 16px; font-size: 15px; line-height: 1.75; color: var(--ink-soft); max-width: 680px; }

/* ============================ TESTIMONIALS =============================== */
.testimonial-section { padding: 110px 0; background: var(--paper-deep); }
.testimonial-track-wrap { overflow: hidden; }
.testimonial-track { display: flex; gap: 26px; transition: transform .6s var(--ease); }
.testimonial-card {
  background: var(--cream-card);
  border-radius: var(--radius-m);
  padding: 34px 32px;
  box-shadow: var(--shadow-card);
  flex: 0 0 calc(33.333% - 18px);
  display: flex;
  flex-direction: column;
}
.testimonial-card .stars { color: var(--gold); font-size: 15px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card p.quote { font-size: 15.5px; line-height: 1.75; color: var(--ink-soft); flex: 1; margin-bottom: 22px; }
.testimonial-card .person { display: flex; align-items: center; gap: 12px; }
.testimonial-card .avatar {
  width: 46px; height: 46px; border-radius: 50%;
  background: linear-gradient(135deg, var(--rose), var(--gold));
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-family: var(--font-display); font-weight: 600;
}
.testimonial-card .person strong { display: block; font-size: 14.5px; color: var(--indigo-deep); }
.testimonial-card .person span { font-size: 12.5px; color: var(--ink-soft); }
.testimonial-nav { display: flex; justify-content: center; gap: 12px; margin-top: 40px; }
.testimonial-nav button {
  width: 42px; height: 42px; border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--cream-card);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, color .25s, transform .25s;
}
.testimonial-nav button:hover { background: var(--rose); color: #fff; transform: translateY(-2px); }
.testimonial-nav svg { width: 17px; height: 17px; }

/* ============================ VIDEO CTA ================================== */
.video-cta {
  position: relative;
  overflow: hidden;
  height: 560px;
  background: var(--indigo-deep);
}
.video-cta-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  z-index: 0;
  display: block;
}
.video-cta-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(90deg, rgba(23,27,57,.88), rgba(23,27,57,.52) 60%, rgba(23,27,57,.35));
  pointer-events: none;
}
.video-cta .container { position: relative; height: 100%; z-index: 2; }
.video-cta-inner {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  max-width: 560px;
  color: #fff;
  z-index: 2;
  pointer-events: auto;
}
.video-cta-inner h2 { color: #fff; font-size: clamp(1.9rem, 3.4vw, 2.7rem); margin-bottom: 18px; }
.video-cta-inner p { color: rgba(247,241,228,.85); font-size: 16px; line-height: 1.7; margin-bottom: 30px; }

/* ============================ CONTACT ==================================== */
.contact-section { padding: 110px 0; }
.contact-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; }
.contact-info { display: flex; flex-direction: column; gap: 22px; }
.contact-info-card {
  background: var(--cream-card);
  border-radius: var(--radius-m);
  padding: 26px 28px;
  box-shadow: var(--shadow-card);
  display: flex;
  gap: 18px;
  align-items: flex-start;
}
.contact-info-card .icon-circle {
  flex: none; width: 48px; height: 48px; border-radius: 14px;
  background: rgba(195,28,77,.1); color: var(--rose);
  display: flex; align-items: center; justify-content: center;
}
.contact-info-card .icon-circle svg { width: 22px; height: 22px; }
.contact-info-card strong { display: block; font-size: 15.5px; margin-bottom: 4px; color: var(--indigo-deep); font-family: var(--font-display); }
.contact-info-card span, .contact-info-card a { font-size: 14.5px; color: var(--ink-soft); line-height: 1.6; }
.contact-map { border-radius: var(--radius-m); overflow: hidden; box-shadow: var(--shadow-card); height: 220px; }
.contact-map iframe { width: 100%; height: 100%; border: 0; filter: grayscale(0.15) sepia(0.08); }

.contact-form-card {
  background: var(--cream-card);
  border-radius: var(--radius-l);
  padding: 44px;
  box-shadow: var(--shadow-lift);
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 20px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label { font-size: 13.5px; font-weight: 700; color: var(--indigo-deep); }
.form-group input, .form-group select, .form-group textarea {
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: 13px 16px;
  font-family: inherit;
  font-size: 14.5px;
  background: var(--paper);
  color: var(--ink);
  transition: border-color .25s, box-shadow .25s;
}
.form-group input:focus, .form-group select:focus, .form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
  box-shadow: 0 0 0 4px rgba(195,28,77,.12);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-hp { position: absolute; left: -9999px; top: -9999px; }
.form-note { font-size: 13px; color: var(--ink-soft); margin-top: 14px; }
.form-status { padding: 14px 18px; border-radius: 12px; font-size: 14.5px; margin-bottom: 20px; display: none; }
.form-status.show { display: block; }
.form-status.success { background: rgba(46,139,79,.12); color: var(--leaf); border: 1px solid rgba(46,139,79,.3); }
.form-status.error { background: rgba(195,28,77,.1); color: var(--rose-deep); border: 1px solid rgba(195,28,77,.28); }
.submit-row { display: flex; align-items: center; gap: 18px; margin-top: 6px; }
.btn-primary[disabled] { opacity: .6; pointer-events: none; }

/* ============================ FOOTER ====================================== */
.site-footer { background: var(--indigo-deep); color: rgba(247,241,228,.78); padding-top: 90px; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 50px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(247,241,228,.12);
}
.footer-brand img { height: 48px; margin-bottom: 20px; }
.footer-brand p { font-size: 14.5px; line-height: 1.75; max-width: 320px; margin-bottom: 22px; }
.footer-social { display: flex; gap: 12px; }
.footer-social a {
  width: 38px; height: 38px; border-radius: 50%;
  border: 1px solid rgba(247,241,228,.25);
  display: flex; align-items: center; justify-content: center;
  transition: background .25s, border-color .25s, transform .25s;
}
.footer-social a:hover { background: var(--rose); border-color: var(--rose); transform: translateY(-3px); }
.footer-social svg { width: 16px; height: 16px; }
.footer-col h4 { color: #fff; font-size: 16px; margin-bottom: 20px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a { font-size: 14.5px; transition: color .25s, padding-left .25s; }
.footer-col a:hover { color: var(--gold); padding-left: 4px; }
.footer-col .contact-line { display: flex; gap: 10px; align-items: flex-start; font-size: 14.5px; margin-bottom: 14px; }
.footer-col .contact-line svg { flex: none; width: 17px; height: 17px; color: var(--gold); margin-top: 2px; }
.footer-bottom {
  display: flex; align-items: center; justify-content: space-between;
  padding: 26px 0; font-size: 13px; flex-wrap: wrap; gap: 10px;
}
.footer-bottom a:hover { color: var(--gold); }

.back-to-top {
  position: fixed; right: 26px; bottom: 26px; z-index: 300;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--rose); color: #fff;
  display: flex; align-items: center; justify-content: center;
  box-shadow: var(--shadow-lift);
  opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: opacity .3s, visibility .3s, transform .3s, background .3s;
}
.back-to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top:hover { background: var(--rose-deep); }
.back-to-top svg { width: 20px; height: 20px; }

/* ============================ MISC PAGE BLOCKS ============================ */
.split-section { padding: 100px 0; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.badge-row { display: flex; gap: 14px; flex-wrap: wrap; margin-top: 26px; }
.badge-pill {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 9px 16px; border-radius: 999px;
  background: rgba(46,139,79,.1); color: var(--leaf);
  font-size: 13px; font-weight: 700;
}

.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-item { text-align: center; padding: 10px 14px; }
.process-item .idx {
  width: 62px; height: 62px; border-radius: 50%;
  background: var(--cream-card); box-shadow: var(--shadow-card);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 20px;
  font-family: var(--font-display); font-size: 22px; color: var(--rose);
}
.process-item h3 { font-size: 17px; margin-bottom: 8px; }
.process-item p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; }

.material-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.material-card {
  background: var(--cream-card); border-radius: var(--radius-m);
  padding: 30px 24px; text-align: center;
  box-shadow: var(--shadow-card);
  transition: transform .35s, box-shadow .35s;
}
.material-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.material-card .icon-circle {
  width: 58px; height: 58px; border-radius: 50%;
  background: rgba(224,162,58,.15); color: var(--gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 18px;
}
.material-card .icon-circle svg { width: 26px; height: 26px; }
.material-card h3 { font-size: 16px; margin-bottom: 8px; }
.material-card p { font-size: 13.5px; color: var(--ink-soft); line-height: 1.6; }

.cta-band {
  background: linear-gradient(120deg, var(--rose), var(--rose-deep));
  color: #fff;
  border-radius: var(--radius-l);
  padding: 60px 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  position: relative;
  overflow: hidden;
}
.cta-band::after {
  content: "";
  position: absolute; right: -60px; top: -60px;
  width: 260px; height: 260px; border-radius: 50%;
  background: rgba(255,255,255,.08);
}
.cta-band h2 { color: #fff; font-size: clamp(1.6rem, 2.8vw, 2.2rem); max-width: 480px; }
.cta-band .btn-outline { border-color: rgba(255,255,255,.5); }
.cta-band .btn-outline:hover { background: rgba(255,255,255,.14); border-color: #fff; }

.value-strip { background: var(--cream-card); }
.value-strip .container { display: grid; grid-template-columns: repeat(4,1fr); gap: 0; }
.value-strip .v-item { padding: 40px 26px; text-align: center; border-right: 1px solid var(--line); }
.value-strip .v-item:last-child { border-right: none; }
.value-strip .v-item svg { width: 30px; height: 30px; color: var(--rose); margin-bottom: 14px; }
.value-strip .v-item h4 { font-size: 15px; margin-bottom: 6px; }
.value-strip .v-item p { font-size: 13px; color: var(--ink-soft); margin: 0; }

/* Team / timeline (About) */
.timeline { position: relative; max-width: 780px; margin: 0 auto; }
.timeline::before { content: ""; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: var(--line); }
.timeline-item { position: relative; padding-left: 62px; margin-bottom: 40px; }
.timeline-item::before {
  content: ""; position: absolute; left: 12px; top: 4px;
  width: 18px; height: 18px; border-radius: 50%;
  background: var(--rose); border: 4px solid var(--paper);
  box-shadow: 0 0 0 2px var(--rose);
}
.timeline-item h3 { font-size: 18px; margin-bottom: 6px; }
.timeline-item .yr { font-size: 13px; color: var(--gold); font-weight: 700; letter-spacing: .06em; }
.timeline-item p { font-size: 14.5px; color: var(--ink-soft); line-height: 1.7; margin-top: 6px; }

/* Products page */
.product-filter-bar {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 20px;
  margin-bottom: 46px;
}
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 30px; }
.product-card {
  background: var(--cream-card);
  border-radius: var(--radius-m);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  transition: transform .4s var(--ease), box-shadow .4s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lift); }
.product-card .thumb { height: 300px; overflow: hidden; position: relative; }
.product-card .thumb img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s var(--ease); }
.product-card:hover .thumb img { transform: scale(1.08); }
.product-card .thumb .wish {
  position: absolute; top: 14px; right: 14px;
  width: 38px; height: 38px; border-radius: 50%;
  background: rgba(255,255,255,.9);
  display: flex; align-items: center; justify-content: center;
  color: var(--rose);
  transition: transform .3s;
}
.product-card:hover .wish { transform: scale(1.08); }
.product-card .thumb .wish svg { width: 17px; height: 17px; }
.product-card .body { padding: 22px 24px 26px; }
.product-card .tag { font-size: 12px; text-transform: uppercase; letter-spacing: .08em; color: var(--rose-deep); font-weight: 700; }
.product-card h3 { font-size: 19px; margin: 8px 0 10px; }
.product-card p { font-size: 14px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.product-card .footer-row { display: flex; align-items: center; justify-content: space-between; }
.product-card .enquire { font-size: 13.5px; font-weight: 700; color: var(--rose-deep); display: inline-flex; align-items: center; gap: 6px; }
.product-card .enquire svg { width: 15px; height: 15px; transition: transform .25s; }
.product-card:hover .enquire svg { transform: translateX(4px); }

/* ============================ RESPONSIVE =================================== */
@media (max-width: 1080px) {
  .about-grid, .why-grid, .two-col { grid-template-columns: 1fr; }
  .about-media .frame img, .why-media img { height: 420px; }
  .services-grid, .collection-grid, .product-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 calc(50% - 13px); }
  .process-grid, .material-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 860px) {
  .main-nav, .header-cta .btn-primary span.txt { display: none; }
  .nav-toggle { display: flex; }
  .top-strip .strip-hours { display: none; }
  .top-strip .strip-email { display: none; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-bottom: 1px solid rgba(247,241,228,.14); }
  .stat-item:nth-child(2n) { border-right: none; }
  .value-strip .container { grid-template-columns: repeat(2, 1fr); }
  .value-strip .v-item:nth-child(2n) { border-right: none; }
  .about-media .float-card { left: 14px; bottom: -22px; padding: 16px 18px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .cta-band { flex-direction: column; text-align: center; padding: 44px 28px; }
  .cta-band h2 { max-width: 100%; }

  .main-nav {
    position: fixed;
    inset: 0 0 0 30%;
    top: 0;
    background: var(--indigo-deep);
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    padding: 110px 30px 40px;
    gap: 4px;
    transform: translateX(100%);
    transition: transform .45s var(--ease);
    z-index: 190;
  }
  .main-nav.open { display: flex; transform: translateX(0); }
  .main-nav a { color: var(--paper); font-size: 18px; padding: 14px 10px; border-bottom: 1px solid rgba(247,241,228,.1); border-radius: 0; }
  .main-nav a.active::after { display: none; }
  .main-nav a.active { color: var(--gold); }
}

@media (max-width: 860px) {
  .video-cta { height: 480px; }
}

@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .services-grid, .collection-grid, .product-grid, .process-grid, .material-grid { grid-template-columns: 1fr; }
  .testimonial-card { flex: 0 0 100%; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .hero-badge { display: none; }
  .hero-slide-content { max-width: 100%; }
  .form-row { grid-template-columns: 1fr; }
  .contact-form-card { padding: 28px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-hero { padding: 150px 0 70px; }
  .about-list { grid-template-columns: 1fr; }
  .video-cta { height: 620px; }
  .video-cta-inner { max-width: 100%; padding-right: 20px; top: 6%; transform: translateY(0); }
}
