:root {
  color-scheme: light;
  --ink: #2b1714;
  --muted: #745d57;
  --paper: #fff9f2;
  --cream: #fffdf8;
  --line: #ead9ca;
  --maroon: #7b1f2a;
  --rose: #b83a4b;
  --saffron: #d68a22;
  --leaf: #2f6b4f;
  --indigo: #253a63;
  --shadow: 0 24px 60px rgba(77, 35, 22, 0.14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  line-height: 1.5;
}
a { color: inherit; text-decoration: none; }
button { font: inherit; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px clamp(18px, 5vw, 72px);
  background: rgba(255, 249, 242, 0.9);
  border-bottom: 1px solid rgba(234, 217, 202, 0.86);
  backdrop-filter: blur(16px);
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  font-weight: 900;
}
.brand-logo {
  display: block;
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--cream);
}
.brand-logo1 {
  display: block;
  width: 250px;
  height: 250px;
  object-fit: contain;
  border-radius: 8px;
  background: var(--cream);
}
.site-nav {
  display: flex;
  gap: clamp(18px, 3vw, 34px);
  color: var(--muted);
  font-weight: 800;
}
.site-nav a:hover, .site-nav a:focus-visible { color: var(--maroon); }
.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
}
.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.hero {
  display: grid;
  place-items: center;
  align-items: center;
  min-height: calc(100vh - 71px);
  padding: clamp(54px, 8vw, 96px) clamp(18px, 5vw, 72px) clamp(34px, 5vw, 56px);
  overflow: hidden;
}
.hero-copy { 
  display: grid;
  justify-items: center;
  max-width:100%; 
  text-align: center;
}
.eyebrow {
  margin: 0 0 12px;
  color: var(--rose);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}
h1, h2, h3, p { overflow-wrap: anywhere; }
h1 {
  margin: 0;
  max-width: 12ch;
  font-size: clamp(3rem, 8vw, 6.6rem);
  line-height: 0.95;
}
h2 {
  margin: 0;
  max-width: 810px;
  font-size: clamp(2rem, 4.5vw, 4rem);
  line-height: 1.03;
}
h3 { margin: 0 0 10px; font-size: 1.25rem; }
.hero-text {
  max-width: 620px;
  margin: 24px 0 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 1.6vw, 1.25rem);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 8px;
  padding: 0 20px;
  font-weight: 900;
  transition: transform 160ms ease, box-shadow 160ms ease;
}
.button:hover, .button:focus-visible { transform: translateY(-2px); }
.button.primary {
  background: var(--maroon);
  color: #fff9ed;
  box-shadow: 0 14px 32px rgba(123, 31, 42, 0.25);
}
.button.secondary {
  background: var(--cream);
  border-color: var(--line);
  color: var(--maroon);
}

.handloom-video-section {
  min-width: 0;
}
.video-section {
  padding: clamp(42px, 7vw, 86px) clamp(18px, 5vw, 72px);
  background: var(--paper);
}
.video-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  width: min(100%, 1120px);
  min-height: 0;
  margin-inline: auto;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #140d0b;
  box-shadow: var(--shadow);
}
.handloom-video {
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #140d0b;
}
.video-caption {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--muted);
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin: 0 clamp(18px, 5vw, 72px) 42px;
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--line);
}
.stats div { padding: 26px; background: var(--cream); }
.stats strong { display: block; color: var(--maroon); font-size: clamp(1.7rem, 3vw, 2.5rem); line-height: 1; }
.stats span { display: block; margin-top: 8px; color: var(--muted); }

.section, .feed-section, .story, .visit {
  padding: clamp(58px, 8vw, 108px) clamp(18px, 5vw, 72px);
}
.section-heading, .feed-heading {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}
.collection-grid, .embed-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}
.collection-card, .embed-slot, .qr-card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--cream);
  box-shadow: 0 12px 30px rgba(77, 35, 22, 0.07);
}
.collection-card { padding: 24px; }
.collection-card p, .embed-placeholder p, .story p, .site-footer { color: var(--muted); }
.swatch {
  height: 138px;
  margin-bottom: 22px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,.5);
}
.silk .swatch { background: linear-gradient(135deg, #7b1f2a, #d64d62 58%, #dca846); }
.cotton .swatch { background: linear-gradient(135deg, #fff0d8, #dec095 55%, #253a63); }
.festive .swatch { background: linear-gradient(135deg, #f5e8da, #dca846 45%, #2f6b4f); }

.feed-section { background: #f7eddf; }
.feed-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}
.feed-note {
  max-width: 360px;
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}
.embed-slot {
  min-width: 0;
  min-height: 420px;
  padding: 14px;
  overflow: hidden;
}
.embed-placeholder {
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  min-height: 390px;
  border: 1px dashed rgba(123, 31, 42, 0.38);
  border-radius: 8px;
  padding: 28px;
  background:
    radial-gradient(circle at 24px 24px, rgba(214, 138, 34, 0.18) 0 6px, transparent 7px),
    linear-gradient(135deg, rgba(255, 253, 248, 0.9), rgba(247, 237, 223, 0.95));
  background-size: 48px 48px, auto;
  text-align: center;
}
.embed-placeholder span {
  color: var(--maroon);
  font-weight: 900;
}
.embed-placeholder p {
  max-width: 230px;
  margin: 0;
}
.embed-slot .instagram-media,
.embed-slot iframe {
  max-width: 100% !important;
  min-width: 0 !important;
  margin: 0 auto !important;
}

.story {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(36px, 6vw, 92px);
  align-items: start;
}
.story > div:first-child {
  position: sticky;
  top: 104px;
}
.story-body {
  display: grid;
  gap: 18px;
  max-width: 820px;
}
.story p { margin: 0; font-size: 1.1rem; }
.promise-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 22px;
  color: var(--muted);
  font-size: 1.1rem;
}
.visit {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(280px, 1.1fr);
  gap: clamp(28px, 6vw, 74px);
  align-items: start;
  background: #efe2d3;
}
.visit-copy {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
}
.qr-card {
  display: grid;
  grid-template-columns: 180px minmax(0, 1fr);
  gap: 22px;
  align-items: center;
  padding: 24px;
}
.instagram-qr {
  width: 100%;
  max-width: 180px;
  aspect-ratio: 1 / 1;
  object-fit: contain;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  padding: 10px;
}
.qr-card h3 {
  margin-bottom: 8px;
}
.qr-card p {
  margin: 0 0 18px;
  color: var(--muted);
}
.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
  background: var(--cream);
}
.site-footer p { margin: 0; }
.site-footer a { color: var(--maroon); font-weight: 900; }

@media (max-width: 940px) {
  .story, .visit { grid-template-columns: 1fr; }
  .story > div:first-child { position: static; }
  .story-body { max-width: none; }
  .hero { min-height: auto; }
  .collection-grid, .embed-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .feed-heading { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  .nav-toggle { display: block; }
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    right: 18px;
    left: 18px;
    display: none;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--cream);
    box-shadow: var(--shadow);
    overflow: hidden;
  }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: 16px; border-bottom: 1px solid var(--line); }
  .site-nav a:last-child { border-bottom: 0; }
  .stats, .collection-grid, .embed-grid { grid-template-columns: 1fr; }
  .video-frame { aspect-ratio: 16 / 9; }
  .qr-card { grid-template-columns: 1fr; }
}

@media (max-width: 460px) {
  .hero-actions, .button { width: 100%; }
  h1 { max-width: 11ch; }
  .video-section { padding-inline: 10px; }
  .video-frame { aspect-ratio: 16 / 9; }
}
