/* Roots of Bandhani - main stylesheet
   Palette: Peacock & Rani, matches the approved Claude Design canvas */

:root {
  --peacock: #0B5D63;
  --peacock-deep: #073C40;
  --rani: #C6146F;
  --gold: #C79A3C;
  --cream: #FBF4E9;
  --cream-alt: #F3E7D4;
  --ink: #241C16;
  --ink-soft: #4A3C30;
  --border: #EEDFC4;
  --border-soft: #E7D9BE;
  --muted: #8A7A68;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Mukta', system-ui, sans-serif;
  background: var(--cream);
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
a:hover { opacity: .85; }

h1, h2, h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  margin: 0;
}

img { max-width: 100%; display: block; }

.wrap { max-width: 480px; margin: 0 auto; background: var(--cream); overflow: hidden; }

/* Header */
.site-header {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 18px; border-bottom: 1px solid var(--border); background: var(--cream);
  position: sticky; top: 0; z-index: 20;
}
.site-header .brand { display: flex; align-items: center; gap: 9px; }
.site-header .brand img { width: 34px; height: auto; }
.site-header .brand span {
  font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 19px;
  letter-spacing: .01em; color: var(--peacock);
}
.hamburger { background: none; border: none; padding: 4px; cursor: pointer; }

.mobile-nav {
  display: none; flex-direction: column; background: #fff; border-bottom: 1px solid var(--border);
  padding: 6px 18px 14px;
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  padding: 12px 0; font-size: 14.5px; font-weight: 500; border-bottom: 1px solid var(--border);
}
.mobile-nav a:last-child { border-bottom: none; }

/* Buttons */
.pill-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 6px;
  padding: 13px 22px; border-radius: 2px; font-size: 12.5px; letter-spacing: .09em;
  text-transform: uppercase; font-weight: 600; white-space: nowrap; border: none; cursor: pointer;
  font-family: 'Mukta', sans-serif;
}
.pill-btn.block { display: flex; width: 100%; }

/* Hero */
/* Brand background: a soft tree-of-roots motif (echoes the logo) with gold
   bud-dots, over the peacock-to-rani gradient. One shared treatment used on
   the homepage hero and every inner-page title band (see .title-band below)
   so the whole site reads as one system. It's a plain CSS/SVG background,
   not an uploaded photo, so it never needs managing and always fits the box
   it's given - background-size uses a height percentage, so the motif scales
   itself correctly whether that box is a tall phone hero or a short, wide
   desktop banner. */
.hero {
  position: relative; min-height: 430px; display: flex; align-items: center; justify-content: center;
  text-align: center; overflow: hidden;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20220%20320%22%3E%20%3Cg%20fill%3D%22none%22%20stroke%3D%22%23FBF4E9%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20opacity%3D%220.22%22%3E%20%3Cpath%20d%3D%22M110%20320%20C108%20260%20112%20230%20110%20190%22/%3E%20%3Cpath%20d%3D%22M110%20230%20C90%20205%2070%20190%2040%20178%22/%3E%20%3Cpath%20d%3D%22M110%20210%20C132%20182%20150%20168%20178%20150%22/%3E%20%3Cpath%20d%3D%22M110%20190%20C98%20160%2096%20140%2084%20108%22/%3E%20%3Cpath%20d%3D%22M110%20190%20C124%20158%20132%20136%20150%20100%22/%3E%20%3Cpath%20d%3D%22M110%20150%20C104%20122%20104%20104%2096%2074%22/%3E%20%3Cpath%20d%3D%22M110%20150%20C118%20120%20122%20100%20132%2066%22/%3E%20%3C/g%3E%20%3Cg%20fill%3D%22%23C79A3C%22%20opacity%3D%220.55%22%3E%20%3Ccircle%20cx%3D%2240%22%20cy%3D%22178%22%20r%3D%224.5%22/%3E%20%3Ccircle%20cx%3D%22178%22%20cy%3D%22150%22%20r%3D%224.5%22/%3E%20%3Ccircle%20cx%3D%2284%22%20cy%3D%22108%22%20r%3D%224%22/%3E%20%3Ccircle%20cx%3D%22150%22%20cy%3D%22100%22%20r%3D%224%22/%3E%20%3Ccircle%20cx%3D%2296%22%20cy%3D%2274%22%20r%3D%223.6%22/%3E%20%3Ccircle%20cx%3D%22132%22%20cy%3D%2266%22%20r%3D%223.6%22/%3E%20%3C/g%3E%20%3C/svg%3E"),
    linear-gradient(165deg, var(--peacock-deep) 0%, var(--peacock) 55%, var(--rani) 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: auto 84%, 100% 100%;
  background-position: 104% 106%, center;
}
.hero .inner { padding: 40px 30px; max-width: 380px; }
.hero .eyebrow {
  font-family: 'Cormorant Garamond', serif; font-size: 12.5px; letter-spacing: .28em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 16px;
}
.hero h1 {
  color: var(--cream); font-size: 38px; line-height: 1.15; font-weight: 700;
  text-shadow: 0 3px 20px rgba(0,0,0,.25); margin-bottom: 16px;
}
.hero p {
  color: #F3E3D6; font-size: 14px; line-height: 1.6; font-weight: 300; margin-bottom: 26px;
}

/* Dot divider */
.dot-divider { text-align: center; padding: 22px 0; }
.dot-divider .ornament { display: flex; justify-content: center; align-items: center; gap: 8px; }
.dot-divider .d1, .dot-divider .d3 { width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.dot-divider .d2 { width: 8px; height: 8px; border-radius: 50%; background: var(--rani); }

/* Section headings */
.section { padding: 8px 20px 6px; }
.section-title { text-align: center; margin-bottom: 22px; }
.section-title .eyebrow {
  font-size: 10.5px; letter-spacing: .12em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; display: block;
}
.section-title h2 { font-size: 24px; color: var(--peacock); }

/* Product grid */
.product-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 14px; padding: 0 18px 20px;
}
.product-card { background: #fff; border: 1px solid var(--border); }
.product-photo { aspect-ratio: 3/4; width: 100%; background-size: 22px 22px; background-image: radial-gradient(circle, var(--swatch-dot, #fff) 3px, transparent 3.4px); }
.product-info { padding: 10px 12px 12px; }
.product-name { font-size: 12.5px; font-weight: 500; line-height: 1.35; margin-bottom: 8px; min-height: 34px; }
.product-cta {
  display: block; text-align: center; width: 100%; padding: 8px 10px; font-size: 10px; letter-spacing: .07em;
  text-transform: uppercase; font-weight: 600; border: 1px solid var(--rani); color: var(--rani);
}

/* About/founder teaser card */
.teaser-box {
  border: 1px solid var(--peacock); background: #fff; padding: 26px 22px; margin: 0 18px 6px; text-align: center;
}
.teaser-box h2 { font-size: 22px; color: var(--peacock); margin-bottom: 12px; }
.teaser-box p { font-size: 13.5px; line-height: 1.7; color: var(--ink-soft); margin-bottom: 18px; }
.teaser-box a { font-size: 11.5px; letter-spacing: .09em; text-transform: uppercase; font-weight: 600; color: var(--rani); border-bottom: 1px solid var(--rani); padding-bottom: 2px; }

/* Rating strip */
.rating-strip { text-align: center; padding: 18px 20px; font-size: 12.5px; color: var(--ink-soft); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); margin: 6px 0; }
.rating-strip .stars { color: var(--gold); letter-spacing: 2px; margin-bottom: 4px; }

/* Rating strip nested inside the reviews band: no borders/margin of its own,
   reads as part of the same trust unit instead of a separate strip elsewhere. */
.rating-strip-inline { border: none; padding: 0 20px 20px; margin: 0; font-size: 13px; font-weight: 500; }
.rating-strip-inline .stars { font-size: 15px; letter-spacing: 3px; }

/* Reviews band: gives "What Customers Say" its own visual zone instead of
   blending into the page, since this is a key trust-building section. */
.reviews-band { background: linear-gradient(180deg, var(--cream-alt) 0%, var(--cream) 78%); padding-top: 4px; padding-bottom: 8px; margin-bottom: 4px; }
.reviews-band .section-title h2 { font-size: 26px; }

/* Review cards */
.review-card {
  background: #fff; border: 1px solid var(--border); border-top: none;
  padding: 28px 20px 20px; margin: 0 18px 16px; position: relative;
  box-shadow: 0 8px 20px rgba(36,28,22,.07);
}
.review-card::before {
  content: '\201C'; font-family: 'Cormorant Garamond', serif; font-weight: 700;
  font-size: 66px; line-height: 1; color: var(--gold); opacity: .3;
  position: absolute; top: 2px; left: 14px;
}
.review-card.accent-rani::before { color: var(--rani); }
.review-card .stars { position: relative; z-index: 1; color: var(--gold); font-size: 15px; letter-spacing: 3px; margin-bottom: 12px; }
.review-card p {
  position: relative; z-index: 1; font-family: 'Cormorant Garamond', serif; font-weight: 500;
  font-size: 17px; line-height: 1.55; color: var(--ink); margin: 0 0 16px; font-style: italic;
}
.review-card .who-row { position: relative; z-index: 1; display: flex; align-items: center; gap: 10px; }
.review-card .avatar {
  flex: 0 0 34px; width: 34px; height: 34px; border-radius: 50%; background: var(--peacock);
  color: var(--cream); font-family: 'Cormorant Garamond', serif; font-weight: 700; font-size: 15px;
  display: flex; align-items: center; justify-content: center;
}
.review-card.accent-rani .avatar { background: var(--rani); }
.review-card .who { font-size: 12.5px; color: var(--ink-soft); font-weight: 600; line-height: 1.4; }
.review-tag { position: relative; z-index: 1; display: block; font-size: 9.5px; text-transform: uppercase; letter-spacing: .07em; color: var(--gold); margin-bottom: 8px; }

/* Contact cards */
.contact-card {
  display: flex; align-items: center; gap: 13px; background: #fff; border: 1px solid var(--border);
  border-top: 3px solid var(--gold); padding: 14px 16px; margin-bottom: 10px;
}
.contact-icon { width: 38px; height: 38px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex: 0 0 38px; }
.contact-label { font-size: 10px; text-transform: uppercase; letter-spacing: .06em; color: var(--muted); }
.contact-value { font-size: 14px; font-weight: 500; }

/* Map */
.map-frame {
  position: relative; display: block; width: 100%; aspect-ratio: 16/7; min-height: 190px;
  overflow: hidden; border: 1px solid var(--border);
  background-color: #E4D8C2;
  background-image: linear-gradient(rgba(11,93,99,.07) 1px, transparent 1px), linear-gradient(90deg, rgba(11,93,99,.07) 1px, transparent 1px);
  background-size: 26px 26px;
}
.map-frame-live iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; display: block; }
.map-badge {
  position: absolute; left: 50%; bottom: 14px; transform: translateX(-50%);
  padding: 8px 18px; font-size: 12px; border-radius: 20px; color: #fff; white-space: nowrap; box-shadow: 0 4px 14px rgba(0,0,0,.22);
  background: var(--peacock-deep);
}

/* Form fields */
.field {
  width: 100%; border: 1px solid var(--border-soft); background: #fff; padding: 12px 14px;
  font-size: 13.5px; font-family: 'Mukta', sans-serif; color: var(--ink); margin-bottom: 12px;
}
textarea.field { min-height: 90px; resize: vertical; }

/* Chips */
.chip {
  display: inline-flex; align-items: center; padding: 6px 14px; font-size: 11.5px;
  border: 1px solid var(--border-soft); color: var(--ink-soft); border-radius: 20px; background: #fff;
}
.filter-chip {
  display: inline-flex; align-items: center; padding: 7px 15px; font-size: 11.5px; border-radius: 20px;
  border: 1px solid var(--border-soft); background: #fff; color: var(--ink-soft); white-space: nowrap;
}
.filter-chip.active { background: var(--peacock); border-color: var(--peacock); color: #fff; }
.filter-row { display: flex; gap: 8px; overflow-x: auto; padding: 4px 18px 16px; }

/* Search */
.search-box {
  display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--border-soft);
  padding: 12px 16px; margin: 16px 18px 10px;
}
.search-box input { border: none; outline: none; font-size: 13.5px; font-family: 'Mukta', sans-serif; flex: 1; background: transparent; }

/* Title band */
.title-band {
  position: relative; overflow: hidden;
  background-image: url("data:image/svg+xml;charset=utf-8,%3Csvg%20xmlns%3D%22http%3A//www.w3.org/2000/svg%22%20viewBox%3D%220%200%20220%20320%22%3E%20%3Cg%20fill%3D%22none%22%20stroke%3D%22%23FBF4E9%22%20stroke-width%3D%223%22%20stroke-linecap%3D%22round%22%20opacity%3D%220.22%22%3E%20%3Cpath%20d%3D%22M110%20320%20C108%20260%20112%20230%20110%20190%22/%3E%20%3Cpath%20d%3D%22M110%20230%20C90%20205%2070%20190%2040%20178%22/%3E%20%3Cpath%20d%3D%22M110%20210%20C132%20182%20150%20168%20178%20150%22/%3E%20%3Cpath%20d%3D%22M110%20190%20C98%20160%2096%20140%2084%20108%22/%3E%20%3Cpath%20d%3D%22M110%20190%20C124%20158%20132%20136%20150%20100%22/%3E%20%3Cpath%20d%3D%22M110%20150%20C104%20122%20104%20104%2096%2074%22/%3E%20%3Cpath%20d%3D%22M110%20150%20C118%20120%20122%20100%20132%2066%22/%3E%20%3C/g%3E%20%3Cg%20fill%3D%22%23C79A3C%22%20opacity%3D%220.55%22%3E%20%3Ccircle%20cx%3D%2240%22%20cy%3D%22178%22%20r%3D%224.5%22/%3E%20%3Ccircle%20cx%3D%22178%22%20cy%3D%22150%22%20r%3D%224.5%22/%3E%20%3Ccircle%20cx%3D%2284%22%20cy%3D%22108%22%20r%3D%224%22/%3E%20%3Ccircle%20cx%3D%22150%22%20cy%3D%22100%22%20r%3D%224%22/%3E%20%3Ccircle%20cx%3D%2296%22%20cy%3D%2274%22%20r%3D%223.6%22/%3E%20%3Ccircle%20cx%3D%22132%22%20cy%3D%2266%22%20r%3D%223.6%22/%3E%20%3C/g%3E%20%3C/svg%3E"),
    linear-gradient(165deg, var(--peacock-deep) 0%, var(--peacock) 55%, var(--rani) 100%);
  background-repeat: no-repeat, no-repeat;
  background-size: auto 78%, 100% 100%;
  background-position: 97% 108%, center;
  padding: 30px 20px; text-align: center;
}
.title-band > * { position: relative; z-index: 1; }
.title-band .eyebrow { font-family: 'Cormorant Garamond', serif; font-size: 12px; letter-spacing: .26em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.title-band h1 { color: var(--cream); font-size: 26px; font-weight: 700; margin-bottom: 6px; }
.title-band .sub { font-size: 12.5px; color: #DCEBE8; opacity: .85; }

/* Founder story: presented as an actual letter, handwritten body, formal
   signature close, matching a heritage fashion brand rather than a casual note. */
.founder-letter {
  background: #fff; border: 1px solid var(--border); box-shadow: 0 10px 32px rgba(36,28,22,.09);
  padding: 34px 24px 28px; position: relative;
}
.founder-letter::before {
  content: ''; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--rani), var(--peacock));
}
.founder-para {
  font-family: 'Lora', Georgia, 'Times New Roman', serif; font-weight: 400; font-size: 16.5px; line-height: 1.85;
  color: var(--ink); margin-bottom: 14px;
}
.founder-para-first::first-letter {
  font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 700; font-size: 60px; line-height: .78;
  color: var(--rani); float: left; padding: 4px 9px 0 0;
}
.founder-sig-divider { padding: 22px 0 14px; }
.founder-signature { text-align: right; padding-top: 2px; }
.founder-signature .sig-name {
  font-family: 'Alex Brush', 'Segoe Script', cursive; font-weight: 400; font-size: 52px;
  color: var(--rani); line-height: 1; margin-bottom: 6px;
}
.founder-signature .sig-role {
  font-family: 'Mukta', sans-serif; font-size: 11px; letter-spacing: .08em; text-transform: uppercase; color: var(--muted);
}

/* Footer */
.site-footer { background: var(--peacock-deep); padding: 32px 20px; text-align: center; margin-top: 26px; }
.site-footer img { width: 32px; margin: 0 auto 8px; }
.site-footer .name { font-family: 'Cormorant Garamond', serif; font-size: 16px; font-weight: 700; color: var(--cream); margin-bottom: 4px; }
.site-footer .tag { font-size: 11.5px; color: #C9DBD8; margin-bottom: 14px; }
.site-footer a.wa { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; color: var(--cream); border: 1px solid rgba(255,255,255,.3); padding: 8px 16px; border-radius: 20px; }

/* Product detail specific */
.pd-photo { height: 340px; background-size: 26px 26px; background-image: radial-gradient(circle, var(--swatch-dot, #fff) 3.6px, transparent 4px); }
.pd-thumbs { display: flex; gap: 8px; padding: 10px 18px; background: var(--cream-alt); }
.pd-thumb { width: 52px; height: 52px; flex: 0 0 52px; border: 2px solid #fff; box-shadow: 0 1px 4px rgba(42,30,20,.12); background-size: 14px 14px; background-image: radial-gradient(circle, var(--swatch-dot, #fff) 2px, transparent 2.3px); }
.stock-badge { display: inline-flex; align-items: center; gap: 7px; background: var(--cream-alt); padding: 7px 14px; margin-bottom: 20px; font-size: 11.5px; color: var(--ink-soft); font-weight: 500; }
.stock-dot { width: 7px; height: 7px; border-radius: 50%; background: #3E8E5A; }
.desc-block { border-top: 1px solid var(--border); padding-top: 18px; margin-bottom: 22px; }
.desc-label { font-size: 9.5px; letter-spacing: .08em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.desc-block p { font-size: 13.5px; line-height: 1.75; color: var(--ink-soft); }

/* Utility */
.center { text-align: center; }
.container-pad { padding: 0 20px; }

/* ============================================================
   Responsive: tablet & desktop.
   Everything above this line is the original mobile design and
   stays exactly as-is below 768px. Rules below only ever ADD
   wider-screen behaviour on top of it, nothing above is overridden
   at mobile widths.
   ============================================================ */

@media (min-width: 768px) {
  .wrap { max-width: 760px; }

  .site-header { padding: 18px 28px; }
  .hamburger { display: none; }
  .mobile-nav {
    display: flex !important; flex-direction: row; position: static;
    background: none; border-bottom: none; padding: 0; gap: 28px; width: auto;
  }
  .mobile-nav a {
    padding: 4px 0 6px; border-bottom: 2px solid transparent; font-size: 12px;
    font-weight: 600; letter-spacing: .07em; text-transform: uppercase; color: var(--peacock);
    transition: color .15s ease, border-color .15s ease;
  }
  .mobile-nav a:hover { color: var(--rani); border-bottom-color: var(--gold); opacity: 1; }

  .hero .inner { max-width: 540px; padding: 60px 30px; }
  .hero { min-height: 470px; }
  .hero h1 { font-size: 44px; }

  .section { padding: 10px 28px 8px; }
  .product-grid { grid-template-columns: repeat(3, 1fr); gap: 18px; padding: 0 28px 26px; }

  .teaser-box { max-width: 620px; margin: 0 auto 6px; padding: 34px 40px; }
  .teaser-box h2 { font-size: 26px; }

  .review-card { max-width: 620px; margin: 0 auto 12px; }

  .container-pad { max-width: 620px; margin-left: auto; margin-right: auto; padding: 0 28px; }

  .title-band { padding: 44px 28px; }
  .title-band h1 { font-size: 32px; }

  .filter-row { padding: 4px 28px 16px; }
  .search-box { margin: 18px 28px 10px; }

  .site-footer {
    display: flex; align-items: center; justify-content: space-between;
    text-align: left; padding: 22px 28px; margin-top: 20px;
  }
  .site-footer .footer-brand { display: flex; align-items: center; gap: 12px; }
  .site-footer img { margin: 0; width: 30px; }
  .site-footer .name { margin-bottom: 2px; }
  .site-footer .tag { margin-bottom: 0; }
}

@media (min-width: 1024px) {
  .wrap { max-width: 1180px; }

  .site-header { padding: 20px 44px; }
  .mobile-nav { gap: 40px; }
  .mobile-nav a { font-size: 12.5px; }

  .hero .inner { max-width: 640px; padding: 80px 30px; }
  .hero { min-height: 560px; }
  .hero h1 { font-size: 54px; }

  .section { padding: 16px 44px 10px; }
  .product-grid { grid-template-columns: repeat(4, 1fr); gap: 22px; padding: 0 44px 32px; }

  .teaser-box { max-width: 680px; padding: 44px 54px; }

  .review-grid-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; max-width: 1020px; margin: 0 auto; padding: 0 44px; }
  .review-card { max-width: none; margin: 0; }

  .contact-grid-wrap { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; max-width: 1020px; margin: 0 auto; padding: 0 44px; }
  .contact-grid-wrap .contact-card { margin-bottom: 0; }

  .container-pad { max-width: 1020px; padding: 0 44px; }

  .title-band { padding: 58px 44px; }
  .title-band h1 { font-size: 38px; }

  .filter-row { padding: 4px 44px 18px; }
  .search-box { margin: 22px 44px 12px; max-width: 480px; }

  .site-footer { padding: 26px 44px; }

  /* Product detail: photo column + info column side by side */
  .pd-layout { display: flex; gap: 54px; align-items: flex-start; padding: 40px 44px; }
  .pd-layout .pd-media { flex: 0 0 420px; }
  .pd-layout .pd-info { flex: 1; padding-top: 0 !important; }
  .pd-photo { height: 520px; }

  /* Founder page: story column + photo column side by side */
  .founder-layout { display: flex; gap: 54px; align-items: flex-start; padding: 20px 44px 0; }
  .founder-layout .founder-text { flex: 1.3; }
  .founder-layout .founder-photos { flex: 1; flex-direction: column !important; position: sticky; top: 30px; padding: 0 !important; }
}
