:root {
  --clay: #b9933f;
  --clay-deep: #2f3f46;
  --ink: #121819;
  --muted: #647078;
  --paper: #f6f2e8;
  --cream: #e8dbc1;
  --teal: #344850;
  --leaf: #58614e;
  --gold: #b9933f;
  --white: #fffdf8;
  --shadow: 0 22px 70px rgba(18, 24, 25, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

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

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 18px 24px auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 64px;
  padding: 10px 14px 10px 12px;
  border: 1px solid rgba(255, 253, 248, 0.35);
  border-radius: 999px;
  background: rgba(18, 24, 25, 0.72);
  color: var(--white);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.24);
  transition: background 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(18, 24, 25, 0.9);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.3);
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  min-width: 0;
  gap: 10px;
}

.brand-symbol {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  flex: 0 0 48px;
  border-radius: 13px;
  background: rgba(255, 253, 248, 0.96);
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.brand-symbol img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 5px;
}

.brand-name {
  color: var(--white);
  display: grid;
  gap: 1px;
  line-height: 1;
  white-space: nowrap;
  letter-spacing: 0;
}

.brand-name-main {
  font-weight: 900;
  font-size: 1.18rem;
}

.brand-name-sub {
  color: rgba(255, 253, 248, 0.82);
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.34em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}

.site-nav a {
  min-height: 42px;
  padding: 11px 15px;
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.88);
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 253, 248, 0.12);
}

.site-nav .nav-cta {
  background: var(--white);
  color: var(--ink);
}

.nav-toggle {
  display: none;
}

.nav-toggle span {
  transition: transform 180ms ease, opacity 180ms ease;
}

.nav-toggle.is-open span:first-child {
  transform: translateY(4px) rotate(45deg);
}

.nav-toggle.is-open span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: 94vh;
  overflow: hidden;
  display: grid;
  align-items: center;
  padding: 120px 24px 80px;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(18, 24, 25, 0.92) 0%, rgba(18, 24, 25, 0.68) 38%, rgba(18, 24, 25, 0.18) 72%),
    linear-gradient(0deg, rgba(47, 63, 70, 0.22), rgba(18, 24, 25, 0.08));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
  color: var(--white);
  margin-left: clamp(0px, 5vw, 72px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.03;
  letter-spacing: 0;
}

h1 {
  max-width: 10ch;
  font-size: 8.5rem;
}

h2 {
  font-size: 4.4rem;
}

h3 {
  margin: 0;
  font-size: 1.15rem;
  line-height: 1.2;
}

.hero-brand {
  display: grid;
  gap: 0.06em;
  max-width: 720px;
  line-height: 0.82;
}

.hero-brand-main,
.hero-brand-sub {
  display: block;
}

.hero-brand-main {
  font-size: 8.5rem;
  font-weight: 900;
}

.hero-brand-sub {
  color: rgba(255, 253, 248, 0.82);
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 2.3rem;
  font-weight: 700;
  letter-spacing: 0.42em;
  padding-left: 0.08em;
}

.hero-copy {
  max-width: 610px;
  margin: 24px 0 0;
  color: rgba(255, 253, 248, 0.86);
  font-size: 1.2rem;
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.hero-proof span {
  padding: 8px 12px;
  border: 1px solid rgba(255, 253, 248, 0.26);
  border-radius: 999px;
  background: rgba(255, 253, 248, 0.1);
  color: rgba(255, 253, 248, 0.88);
  font-size: 0.88rem;
  font-weight: 800;
  backdrop-filter: blur(10px);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font: inherit;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  background: var(--clay);
  color: var(--ink);
  box-shadow: 0 18px 40px rgba(185, 147, 63, 0.34);
}

.button.secondary {
  border: 1px solid rgba(255, 253, 248, 0.45);
  background: rgba(255, 253, 248, 0.12);
  color: var(--white);
  backdrop-filter: blur(10px);
}

.intro-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: #0e1314;
}

.intro-strip div {
  padding: 26px clamp(18px, 3vw, 42px);
  background: #1b2528;
  color: var(--white);
}

.intro-strip strong,
.intro-strip span {
  display: block;
}

.intro-strip strong {
  font-size: 1.05rem;
}

.intro-strip span {
  margin-top: 4px;
  color: rgba(255, 253, 248, 0.68);
}

.seo-strip {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: end;
  padding: clamp(56px, 7vw, 90px) clamp(20px, 5vw, 78px);
  background: var(--white);
}

.seo-strip h2 {
  max-width: 880px;
  font-size: 3.4rem;
}

.seo-strip > p {
  margin: 0;
  color: var(--muted);
  font-size: 1.06rem;
  font-weight: 650;
}

.showcase-band {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: clamp(30px, 6vw, 80px);
  align-items: end;
  padding: clamp(64px, 8vw, 100px) clamp(20px, 5vw, 78px);
  background:
    linear-gradient(120deg, rgba(246, 242, 232, 0.96), rgba(232, 219, 193, 0.9)),
    repeating-linear-gradient(135deg, rgba(185, 147, 63, 0.16) 0 1px, transparent 1px 26px);
}

.showcase-copy h2 {
  max-width: 920px;
  font-size: 3.6rem;
}

.showcase-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.showcase-metrics div {
  min-height: 150px;
  padding: 22px;
  border: 1px solid rgba(114, 47, 34, 0.14);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 16px 40px rgba(66, 43, 29, 0.08);
}

.showcase-metrics strong {
  display: block;
  color: var(--clay-deep);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.5rem;
  line-height: 1;
}

.showcase-metrics span {
  display: block;
  margin-top: 14px;
  color: var(--muted);
  font-weight: 800;
  line-height: 1.3;
}

.section {
  padding: clamp(72px, 10vw, 130px) clamp(20px, 5vw, 78px);
}

.section-heading {
  width: min(980px, 100%);
}

.section-heading h2 {
  max-width: 900px;
}

.section-heading p:not(.eyebrow) {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-heading.compact {
  width: min(820px, 100%);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 42px;
}

.product-card {
  overflow: hidden;
  border: 1px solid rgba(114, 47, 34, 0.12);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 46px rgba(66, 43, 29, 0.09);
}

.product-visual {
  min-height: 210px;
  position: relative;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 253, 248, 0.8) 0 16%, transparent 17%),
    linear-gradient(140deg, rgba(185, 87, 50, 0.95), rgba(114, 47, 34, 0.96));
}

.product-visual::before {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 35px;
  width: 92px;
  height: 128px;
  transform: translateX(-50%);
  border-radius: 24px 24px 38px 38px / 16px 16px 52px 52px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.22), transparent 38%),
    linear-gradient(180deg, #d08a58 0%, #9d4d30 74%, #6d3123 100%);
  box-shadow: inset 0 14px 18px rgba(255, 241, 214, 0.28), 0 22px 32px rgba(44, 18, 10, 0.28);
}

.product-visual::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 154px;
  width: 98px;
  height: 28px;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #e7a56d;
  box-shadow: inset 0 -8px 0 rgba(95, 39, 25, 0.34);
}

.product-visual.lassi::before {
  width: 118px;
  height: 150px;
  border-radius: 30px 30px 28px 28px / 18px 18px 56px 56px;
}

.product-visual.lassi::after {
  width: 124px;
  bottom: 170px;
}

.product-visual.matka {
  background: linear-gradient(135deg, var(--teal), #203f42);
}

.product-visual.matka::before {
  width: 148px;
  height: 126px;
  border-radius: 58% 58% 44% 44%;
}

.product-visual.matka::after {
  width: 78px;
  bottom: 154px;
}

.product-visual.festive {
  background: linear-gradient(135deg, var(--leaf), #25381f);
}

.product-visual.festive::before {
  width: 132px;
  height: 76px;
  bottom: 54px;
  border-radius: 20px 20px 72px 72px;
}

.product-visual.festive::after {
  width: 44px;
  height: 58px;
  bottom: 112px;
  border-radius: 50% 50% 42% 42%;
  background: var(--gold);
  box-shadow: 0 0 32px rgba(255, 196, 79, 0.8);
}

.product-copy {
  padding: 22px;
}

.product-copy p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 0.96rem;
}

.product-copy span {
  color: var(--teal);
  font-weight: 800;
  font-size: 0.88rem;
}

.order-flow {
  background: #f4eadb;
  padding-top: clamp(56px, 8vw, 90px);
}

.flow-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 34px;
}

.flow-grid article {
  min-height: 230px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  border: 1px solid rgba(114, 47, 34, 0.12);
  box-shadow: 0 18px 46px rgba(66, 43, 29, 0.08);
}

.flow-grid span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 24px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-weight: 900;
}

.flow-grid p {
  margin: 12px 0 0;
  color: var(--muted);
}

.craft {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 1.05fr);
  gap: clamp(36px, 6vw, 86px);
  align-items: start;
  background: #172023;
  color: var(--white);
}

.craft-copy {
  position: sticky;
  top: 110px;
}

.craft-copy p:not(.eyebrow) {
  max-width: 620px;
  color: rgba(255, 253, 248, 0.72);
  font-size: 1.08rem;
}

.craft-points {
  display: grid;
  gap: 18px;
}

.craft-points div {
  padding: 28px;
  border-left: 5px solid var(--gold);
  background: rgba(255, 253, 248, 0.08);
}

.craft-points span {
  display: block;
  margin-bottom: 18px;
  color: var(--gold);
  font-weight: 900;
}

.craft-points p {
  margin: 12px 0 0;
  color: rgba(255, 253, 248, 0.7);
}

.bulk-band {
  padding: clamp(70px, 10vw, 120px) clamp(20px, 5vw, 78px);
  color: var(--white);
  background:
    linear-gradient(120deg, rgba(47, 63, 70, 0.97), rgba(18, 24, 25, 0.96)),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.12) 0 1px, transparent 1px 48px);
}

.bulk-inner {
  width: min(1120px, 100%);
}

.bulk-inner h2 {
  max-width: 900px;
}

.bulk-options {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.bulk-options span {
  padding: 11px 15px;
  border: 1px solid rgba(255, 253, 248, 0.3);
  border-radius: 999px;
  color: rgba(255, 253, 248, 0.86);
  font-weight: 800;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.75fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
}

.contact-copy p:not(.eyebrow) {
  max-width: 590px;
  color: var(--muted);
  font-size: 1.08rem;
}

.contact-details {
  display: grid;
  gap: 16px;
  max-width: 650px;
  margin-top: 28px;
  padding: 24px;
  border: 1px solid rgba(47, 63, 70, 0.14);
  border-radius: 8px;
  background: rgba(255, 253, 248, 0.72);
}

.contact-details span {
  display: block;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-details p {
  margin: 6px 0 0;
  color: var(--ink);
  font-weight: 700;
}

.contact-details a {
  font-weight: 900;
}

.contact-details div > p a + a::before {
  content: " / ";
  color: var(--muted);
  font-weight: 700;
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.map-button {
  border: 1px solid rgba(185, 147, 63, 0.38);
  background: var(--ink);
  color: var(--white);
}

.whatsapp-button.inline {
  width: auto;
}

.enquiry-form {
  display: grid;
  gap: 16px;
  padding: 28px;
  border-radius: 8px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.form-head {
  padding-bottom: 4px;
}

.form-head strong,
.form-head span {
  display: block;
}

.form-head strong {
  font-size: 1.18rem;
}

.form-head span {
  margin-top: 4px;
  color: var(--muted);
}

.enquiry-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
  color: var(--ink);
}

.enquiry-form input,
.enquiry-form textarea {
  width: 100%;
  border: 1px solid rgba(29, 24, 21, 0.14);
  border-radius: 8px;
  background: #fffaf2;
  color: var(--ink);
  font: inherit;
  padding: 14px 15px;
  outline: none;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 4px rgba(34, 100, 106, 0.14);
}

.form-button {
  width: 100%;
}

.whatsapp-button {
  width: 100%;
  border: 1px solid rgba(34, 100, 106, 0.28);
  background: rgba(34, 100, 106, 0.1);
  color: var(--teal);
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--teal);
  font-weight: 800;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 30px clamp(20px, 5vw, 78px);
  background: var(--ink);
  color: var(--white);
}

.site-footer strong,
.site-footer span {
  display: block;
}

.site-footer span {
  color: rgba(255, 253, 248, 0.62);
}

.site-footer a {
  color: var(--gold);
  font-weight: 800;
}

.mobile-sticky-cta {
  position: fixed;
  left: 14px;
  right: 14px;
  bottom: 14px;
  z-index: 25;
  display: none;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: var(--clay);
  color: var(--ink);
  font-weight: 900;
  box-shadow: 0 16px 38px rgba(114, 47, 34, 0.35);
}

@media (max-width: 980px) {
  .site-header {
    inset: 12px 12px auto;
    border-radius: 28px;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 253, 248, 0.14);
    cursor: pointer;
  }

  .nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 3px 0;
    background: var(--white);
  }

  .site-nav {
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    display: none;
    width: min(320px, calc(100vw - 24px));
    padding: 12px;
    border-radius: 22px;
    background: rgba(29, 24, 21, 0.94);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: grid;
  }

  .site-nav a {
    border-radius: 14px;
  }

  .hero {
    min-height: 92vh;
  }

  h1 {
    font-size: 6.4rem;
  }

  .hero-brand-main {
    font-size: 6.4rem;
  }

  .hero-brand-sub {
    font-size: 1.72rem;
    letter-spacing: 0.36em;
  }

  h2 {
    font-size: 3.35rem;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(18, 24, 25, 0.94) 0%, rgba(18, 24, 25, 0.72) 55%, rgba(18, 24, 25, 0.22) 100%),
      linear-gradient(0deg, rgba(47, 63, 70, 0.42), rgba(18, 24, 25, 0.08));
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flow-grid {
    grid-template-columns: 1fr;
  }

  .flow-grid article {
    min-height: 0;
  }

  .showcase-band {
    grid-template-columns: 1fr;
  }

  .seo-strip {
    grid-template-columns: 1fr;
  }

  .showcase-copy h2 {
    font-size: 3rem;
  }

  .craft,
  .contact {
    grid-template-columns: 1fr;
  }

  .craft-copy {
    position: static;
  }
}

@media (max-width: 700px) {
  .site-header {
    min-height: 58px;
  }

  .brand-symbol {
    width: 40px;
    height: 40px;
    flex-basis: 40px;
    border-radius: 11px;
  }

  .brand-name {
    max-width: 132px;
    overflow: hidden;
  }

  .brand-name-main {
    font-size: 1.02rem;
  }

  .brand-name-sub {
    font-size: 0.5rem;
    letter-spacing: 0.28em;
  }

  .hero {
    min-height: 88vh;
    padding: 104px 18px 82px;
  }

  .hero-image {
    object-position: 66% center;
  }

  .hero-content {
    margin-left: 0;
  }

  h1 {
    font-size: 3.8rem;
  }

  .hero-brand-main {
    font-size: 3.8rem;
  }

  .hero-brand-sub {
    font-size: 1rem;
    letter-spacing: 0.3em;
  }

  h2 {
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1.04rem;
  }

  .button {
    width: 100%;
  }

  .intro-strip,
  .product-grid,
  .showcase-metrics {
    grid-template-columns: 1fr;
  }

  .seo-strip h2 {
    font-size: 2.2rem;
  }

  .showcase-copy h2 {
    font-size: 2.35rem;
  }

  .product-visual {
    min-height: 190px;
  }

  .enquiry-form {
    padding: 20px;
  }

  .contact-details {
    padding: 20px;
  }

  .contact-actions .button {
    width: 100%;
  }

  .site-footer {
    display: grid;
    padding-bottom: 88px;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (max-width: 420px) {
  .site-header {
    inset: 8px 8px auto;
    padding: 8px;
  }

  .hero {
    padding-left: 14px;
    padding-right: 14px;
  }

  h1 {
    font-size: 3.25rem;
  }

  .hero-brand-main {
    font-size: 3.25rem;
  }

  .hero-brand-sub {
    font-size: 0.84rem;
    letter-spacing: 0.24em;
  }

  h2,
  .showcase-copy h2 {
    font-size: 2.05rem;
  }

  .section,
  .seo-strip,
  .showcase-band,
  .bulk-band {
    padding-left: 16px;
    padding-right: 16px;
  }
}
