:root {
  --ink: #171514;
  --muted: #6f5a4f;
  --paper: #fffaf0;
  --stone: #f1e5d4;
  --linen: #fff3df;
  --white: #ffffff;
  --gold: #d4a137;
  --gold-dark: #8f5f13;
  --antique-gold: #c2943d;
  --palace-gold: #f0d38a;
  --temple-gold: #b9862c;
  --royal: #4b111a;
  --royal-dark: #17090c;
  --velvet: #21080d;
  --velvet-soft: #3a1017;
  --ink-red: #2a0e12;
  --emerald: #163b31;
  --sindoor: #9f2f27;
  --sindoor-dark: #6f1d1b;
  --terracotta: #b45832;
  --lotus: #d9a19a;
  --forest: #243b32;
  --forest-soft: #efe5d2;
  --rose: #f4c7b5;
  --line: rgba(111, 29, 27, 0.16);
  --shadow: 0 18px 50px rgba(83, 33, 20, 0.14);
  --radius: 8px;
  --top-strip-height: 38px;
  --header-height: 72px;
  --hero-peek: 132px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

section[id] {
  scroll-margin-top: 130px;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 24px 24px, rgba(75, 17, 26, 0.08) 0 2px, transparent 2.8px) 0 0 / 48px 48px,
    radial-gradient(circle at 14px 14px, rgba(184, 88, 50, 0.06) 0 1px, transparent 1.8px) 0 0 / 26px 26px,
    linear-gradient(135deg, rgba(240, 211, 138, 0.16) 25%, transparent 25%) 0 0 / 28px 28px,
    linear-gradient(180deg, #fffaf0 0%, #f6e7c9 48%, #fff4e4 100%);
  font-family: Poppins, Lato, Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  line-height: 1.5;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  font: inherit;
}

button {
  cursor: pointer;
}

.sr-only,
.skip-link {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  width: auto;
  height: auto;
  left: 16px;
  top: 16px;
  z-index: 40;
  padding: 10px 14px;
  clip: auto;
  color: var(--white);
  background: var(--ink);
}

.top-strip {
  min-height: var(--top-strip-height);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: clamp(14px, 4vw, 56px);
  padding: 8px clamp(14px, 4vw, 44px);
  color: #fff8ea;
  background:
    radial-gradient(circle at 8px 8px, rgba(240, 211, 138, 0.34) 0 2px, transparent 2.5px) 0 0 / 28px 28px,
    repeating-linear-gradient(90deg, transparent 0 34px, rgba(240, 211, 138, 0.1) 34px 35px),
    linear-gradient(90deg, #120508, var(--velvet-soft) 34%, var(--royal) 52%, var(--velvet-soft) 70%, #120508);
  font-size: 0.72rem;
  font-weight: 900;
  text-align: center;
  text-transform: uppercase;
}

.top-strip span {
  position: relative;
  white-space: nowrap;
}

.top-strip span + span::before {
  content: "";
  width: 5px;
  height: 5px;
  position: absolute;
  left: calc(clamp(14px, 4vw, 56px) / -2 - 2px);
  top: 50%;
  transform: translateY(-50%) rotate(45deg);
  background: var(--gold);
}

.site-header {
  min-height: var(--header-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 0 clamp(18px, 4vw, 56px);
  position: sticky;
  top: 0;
  z-index: 20;
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 244, 221, 0.98)),
    radial-gradient(circle at 10px 10px, rgba(194, 148, 61, 0.18) 0 2px, transparent 2.6px) 0 0 / 30px 30px;
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  height: 4px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: -4px;
  background:
    radial-gradient(circle at 6px 2px, rgba(240, 211, 138, 0.88) 0 2px, transparent 2.4px) 0 0 / 24px 4px,
    linear-gradient(90deg, transparent, rgba(75, 17, 26, 0.42), rgba(240, 211, 138, 0.72), rgba(75, 17, 26, 0.42), transparent);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  line-height: 1;
}

.brand-logo {
  width: auto;
  height: 54px;
  object-fit: contain;
  border-radius: 6px;
  border: 1px solid rgba(194, 148, 61, 0.5);
  box-shadow: 0 10px 26px rgba(75, 17, 26, 0.16);
}

.brand-wordmark {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.14rem;
  font-weight: 700;
  color: var(--royal-dark);
}

.primary-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 38px);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.primary-nav a {
  text-decoration: none;
}

.primary-nav a:hover,
.primary-nav a:focus-visible {
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  background: var(--white);
  border-radius: 6px;
  place-items: center;
  gap: 4px;
  padding: 10px;
}

.menu-toggle span:not(.sr-only) {
  width: 18px;
  height: 2px;
  display: block;
  background: var(--ink);
}

.header-contact,
.filter-button {
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--ink);
  border-radius: 6px;
}

.header-tools {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
}

.header-contact {
  width: 44px;
  min-width: 44px;
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  padding: 0;
  color: #fffaf0;
  background:
    radial-gradient(circle at 10px 10px, rgba(240, 211, 138, 0.18) 0 2px, transparent 2.6px) 0 0 / 28px 28px,
    linear-gradient(135deg, #0f6b3c, #073a27);
  border-color: rgba(240, 211, 138, 0.54);
  font-size: 0;
  text-decoration: none;
  font-weight: 900;
  box-shadow: 0 10px 26px rgba(15, 107, 60, 0.18);
}

.header-contact::before {
  content: "";
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  background: var(--palace-gold) url("assets/whatsapp-mark.svg") center / 18px 18px no-repeat;
  border-radius: 50%;
}

.header-call {
  background:
    radial-gradient(circle at 10px 10px, rgba(240, 211, 138, 0.18) 0 2px, transparent 2.6px) 0 0 / 28px 28px,
    linear-gradient(135deg, var(--sindoor-dark), var(--royal-dark));
  box-shadow: 0 10px 26px rgba(75, 17, 26, 0.2);
}

.header-call::before {
  content: "Call";
  color: var(--royal-dark);
  background: var(--palace-gold);
  font-size: 0.55rem;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.collection-nav {
  min-height: 58px;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  padding: 10px clamp(18px, 5vw, 64px);
  overflow: visible;
  color: var(--white);
  background:
    radial-gradient(circle at 12px 12px, rgba(240, 211, 138, 0.12) 0 2px, transparent 2.6px) 0 0 / 36px 36px,
    repeating-linear-gradient(135deg, transparent 0 22px, rgba(240, 211, 138, 0.08) 22px 23px),
    linear-gradient(90deg, #12080a, var(--velvet-soft) 38%, var(--royal) 52%, #12080a);
  border-top: 1px solid rgba(240, 211, 138, 0.24);
  border-bottom: 1px solid rgba(240, 211, 138, 0.46);
}

.collection-nav-label {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--palace-gold);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.collection-dropdown {
  position: relative;
}

.collection-dropdown summary {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 14px;
  border: 1px solid rgba(240, 211, 138, 0.44);
  border-radius: 6px;
  color: var(--white);
  background: rgba(255, 250, 240, 0.05);
  cursor: pointer;
  font-size: 0.78rem;
  font-weight: 900;
  list-style: none;
  text-transform: uppercase;
}

.collection-dropdown summary::-webkit-details-marker {
  display: none;
}

.collection-dropdown summary::after {
  content: "";
  width: 7px;
  height: 7px;
  border-right: 2px solid currentColor;
  border-bottom: 2px solid currentColor;
  transform: translateY(-2px) rotate(45deg);
}

.collection-dropdown[open] summary {
  color: #16100f;
  background: var(--palace-gold);
}

.collection-dropdown-menu {
  width: min(520px, calc(100vw - 32px));
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 6px;
  position: absolute;
  left: 50%;
  top: calc(100% + 10px);
  z-index: 35;
  padding: 10px;
  color: var(--ink);
  background: rgba(255, 250, 240, 0.98);
  border: 1px solid rgba(194, 148, 61, 0.5);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transform: translateX(-50%);
}

.collection-nav a {
  min-height: 38px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  padding: 0 12px;
  border-radius: 5px;
  color: var(--royal-dark);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.collection-nav a:hover,
.collection-nav a:focus-visible,
.collection-nav a.is-active {
  color: var(--sindoor-dark);
  background: #fff0dc;
}

.hero {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  min-height: clamp(460px, 62svh, 680px);
  display: grid;
  align-items: center;
  padding: clamp(36px, 6vw, 86px) clamp(18px, 6vw, 72px);
  color: var(--white);
  background-image:
    radial-gradient(circle at 20% 18%, rgba(240, 211, 138, 0.18), transparent 28%),
    linear-gradient(90deg, rgba(18, 5, 8, 0.98) 0%, rgba(75, 17, 26, 0.92) 42%, rgba(75, 17, 26, 0.44) 70%, rgba(23, 9, 12, 0.12) 100%),
    url("assets/optimized/1C59C740-14E1-4BC5-A2FA-39EB419A04F5.jpg");
  background-size: cover;
  background-position: right center;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  width: min(42vw, 520px);
  aspect-ratio: 1;
  position: absolute;
  left: max(-150px, -10vw);
  bottom: max(-190px, -22vw);
  z-index: -1;
  opacity: 0.54;
  background:
    radial-gradient(circle, transparent 0 15%, rgba(240, 211, 138, 0.2) 15.5% 16.5%, transparent 17% 31%, rgba(240, 211, 138, 0.24) 31.5% 32.5%, transparent 33% 47%, rgba(240, 211, 138, 0.16) 47.5% 48.5%, transparent 49%),
    conic-gradient(from 22deg, transparent 0 8deg, rgba(240, 211, 138, 0.18) 8deg 14deg, transparent 14deg 22deg);
  border-radius: 50%;
}

.hero::after {
  content: "";
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 12px 6px, rgba(240, 211, 138, 0.78) 0 3px, transparent 3.4px) 0 0 / 32px 12px,
    linear-gradient(90deg, rgba(75, 17, 26, 0.48), rgba(240, 211, 138, 0.42), rgba(75, 17, 26, 0.48));
}

.hero-content {
  max-width: 700px;
  position: relative;
  z-index: 1;
  padding-left: clamp(14px, 2vw, 24px);
  border-left: 3px double rgba(240, 211, 138, 0.72);
}

.hero-logo {
  width: clamp(72px, 9vw, 98px);
  height: auto;
  margin: 0 0 8px;
  border-radius: 8px;
  border: 1px solid rgba(240, 211, 138, 0.62);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.24);
}

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

.hero .eyebrow,
.heritage-band .eyebrow {
  color: var(--palace-gold);
}

.hero h1,
.section-heading h1,
.section-heading h2,
.craft-content h2,
.care-copy h2,
.visit h1,
.visit h2 {
  font-family: Georgia, "Times New Roman", serif;
  line-height: 0.98;
  font-weight: 500;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.5rem, 8vw, 6.9rem);
  color: var(--palace-gold);
  text-shadow: 0 12px 34px rgba(0, 0, 0, 0.34);
}

.hero-copy {
  max-width: 560px;
  margin: 16px 0 0;
  color: rgba(255, 250, 240, 0.86);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

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

.button {
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 6px;
  text-decoration: none;
  border: 1px solid transparent;
  font-weight: 800;
}

.button-primary {
  color: var(--white);
  background:
    linear-gradient(135deg, var(--royal), #8b251e),
    radial-gradient(circle at 16px 16px, rgba(240, 211, 138, 0.18), transparent 20px);
  border-color: rgba(240, 211, 138, 0.42);
  box-shadow: 0 12px 28px rgba(23, 9, 12, 0.24);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: #551513;
}

.button-secondary {
  color: var(--palace-gold);
  background: rgba(23, 9, 12, 0.34);
  border-color: rgba(240, 211, 138, 0.44);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  color: var(--royal-dark);
  background: var(--palace-gold);
}

.call-button {
  color: #fffaf0;
  background:
    radial-gradient(circle at 14px 14px, rgba(240, 211, 138, 0.2) 0 2px, transparent 2.8px) 0 0 / 32px 32px,
    linear-gradient(135deg, var(--sindoor-dark), var(--royal-dark));
  border-color: rgba(240, 211, 138, 0.52);
}

.call-button:hover,
.call-button:focus-visible {
  color: var(--royal-dark);
  background: var(--palace-gold);
}

.whatsapp-button {
  width: 54px;
  min-width: 54px;
  min-height: 54px;
  justify-content: center;
  gap: 10px;
  padding: 0;
  color: #fffaf0;
  background:
    radial-gradient(circle at 16px 16px, rgba(240, 211, 138, 0.22) 0 2px, transparent 2.8px) 0 0 / 34px 34px,
    linear-gradient(135deg, #0f6b3c 0%, #08442d 52%, #062b20 100%);
  border-color: rgba(240, 211, 138, 0.58);
  font-size: 0;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.18),
    0 16px 34px rgba(8, 68, 45, 0.26);
}

.whatsapp-button::before {
  content: "";
  width: 34px;
  height: 34px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  background: var(--palace-gold) url("assets/whatsapp-mark.svg") center / 23px 23px no-repeat;
  border-radius: 50%;
}

.whatsapp-button:hover,
.whatsapp-button:focus-visible {
  color: var(--royal-dark);
  background: var(--palace-gold);
}

.whatsapp-button:hover::before,
.whatsapp-button:focus-visible::before {
  background-color: #fff8ea;
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  margin: 28px 0 0;
  padding: 0;
}

.hero-notes div {
  min-width: 112px;
  padding-left: 14px;
  border-left: 2px solid var(--palace-gold);
}

.hero-notes dt {
  font-size: 1.45rem;
  font-weight: 800;
}

.hero-notes dd {
  margin: 2px 0 0;
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.88rem;
}

.quick-trust {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 64px);
  color: var(--white);
  background: rgba(240, 211, 138, 0.28);
  border-top: 1px solid rgba(240, 211, 138, 0.28);
  border-bottom: 1px solid rgba(240, 211, 138, 0.28);
}

.quick-trust div {
  min-height: 132px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 22px 18px;
  background:
    radial-gradient(circle at 14px 14px, rgba(240, 211, 138, 0.12) 0 2px, transparent 2.5px) 0 0 / 38px 38px,
    linear-gradient(135deg, var(--royal-dark), var(--royal));
}

.quick-trust span {
  color: var(--palace-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.quick-trust strong {
  max-width: 280px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.05rem;
  font-weight: 500;
  line-height: 1.18;
}

.home-featured {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 243, 223, 0.94)),
    radial-gradient(circle at 18px 18px, rgba(75, 17, 26, 0.08) 0 2px, transparent 2.6px) 0 0 / 42px 42px;
  border-bottom: 1px solid var(--line);
}

.featured-product-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin-top: 32px;
}

.featured-card {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(75, 17, 26, 0.34), rgba(240, 211, 138, 0.58), rgba(22, 59, 49, 0.24)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(75, 17, 26, 0.12);
}

.featured-info {
  display: grid;
  gap: 10px;
  padding: 16px;
}

.featured-info h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.1;
}

.order-flow {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.72fr) minmax(360px, 1.28fr);
  gap: clamp(28px, 5vw, 64px);
  align-items: center;
  padding: clamp(48px, 7vw, 78px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 18px 18px, rgba(240, 211, 138, 0.13) 0 2px, transparent 2.6px) 0 0 / 42px 42px,
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(240, 211, 138, 0.06) 28px 29px),
    linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 54%, var(--emerald) 100%);
  border-bottom: 1px solid rgba(240, 211, 138, 0.28);
}

.order-flow .section-heading,
.order-steps {
  position: relative;
  z-index: 1;
}

.order-flow .eyebrow {
  color: var(--palace-gold);
}

.order-flow .section-heading h2,
.order-flow .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.order-flow .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.76);
}

.order-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.order-steps article {
  min-height: 210px;
  display: grid;
  align-content: end;
  padding: 20px;
  background: rgba(255, 250, 240, 0.07);
  border: 1px solid rgba(240, 211, 138, 0.24);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.12);
}

.order-steps span {
  align-self: start;
  color: var(--palace-gold);
  font-weight: 900;
}

.order-steps h3 {
  margin: 42px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 500;
}

.order-steps p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.home-hub {
  position: relative;
  overflow: hidden;
  padding: clamp(52px, 7vw, 86px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.97), rgba(255, 243, 223, 0.92)),
    radial-gradient(circle at 18px 18px, rgba(75, 17, 26, 0.08) 0 2px, transparent 2.6px) 0 0 / 42px 42px,
    repeating-linear-gradient(135deg, rgba(194, 148, 61, 0.09) 0 1px, transparent 1px 48px);
  border-bottom: 1px solid var(--line);
}

.home-hub::before {
  content: "";
  width: min(360px, 60vw);
  aspect-ratio: 1;
  position: absolute;
  right: -110px;
  top: -150px;
  opacity: 0.18;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 0 18%, rgba(159, 47, 39, 0.22) 18.5% 19.5%, transparent 20% 36%, rgba(212, 161, 55, 0.26) 36.5% 37.5%, transparent 38% 55%, rgba(75, 17, 26, 0.16) 55.5% 56.5%, transparent 57%),
    conic-gradient(from 12deg, transparent 0 9deg, rgba(159, 47, 39, 0.18) 9deg 14deg, transparent 14deg 24deg);
  border-radius: 50%;
}

.home-hub .section-heading,
.home-hub-grid {
  position: relative;
  z-index: 1;
}

.home-hub-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 26px);
  margin-top: 34px;
}

.home-card {
  min-height: 356px;
  display: grid;
  grid-template-rows: auto auto 1fr;
  gap: 12px;
  padding: 12px;
  color: var(--ink);
  text-decoration: none;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(75, 17, 26, 0.32), rgba(240, 211, 138, 0.58), rgba(22, 59, 49, 0.2)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(75, 17, 26, 0.12);
}

.home-card:hover,
.home-card:focus-visible {
  border-color: rgba(159, 47, 39, 0.44);
  background: #fff8ea;
}

.home-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--linen);
  border-radius: 6px;
}

.home-card span {
  color: var(--sindoor);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.home-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.24rem;
  font-weight: 500;
  line-height: 1.14;
}

.blog-hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(320px, 0.75fr);
  gap: clamp(24px, 5vw, 68px);
  align-items: center;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
  color: #fff8ea;
  background:
    radial-gradient(circle at 18px 18px, rgba(240, 211, 138, 0.16) 0 2px, transparent 2.6px) 0 0 / 38px 38px,
    linear-gradient(135deg, #18070b 0%, var(--royal) 48%, #221614 100%);
}

.blog-hero-copy {
  max-width: 820px;
}

.blog-hero h1 {
  margin: 0;
  color: var(--palace-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.35rem, 5vw, 5rem);
  font-weight: 500;
  line-height: 0.98;
}

.blog-hero p:not(.eyebrow) {
  max-width: 620px;
  margin: 18px 0 0;
  color: rgba(255, 250, 240, 0.82);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.blog-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 22px;
}

.blog-meta span,
.blog-meta time {
  min-height: 34px;
  display: inline-flex;
  align-items: center;
  padding: 0 12px;
  color: var(--royal-dark);
  background: var(--palace-gold);
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.blog-cover {
  margin: 0;
}

.blog-cover img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(240, 211, 138, 0.58);
  border-radius: var(--radius);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.blog-cover figcaption {
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.68);
  font-size: 0.82rem;
}

.blog-article {
  max-width: 920px;
  margin: 0 auto;
  padding: clamp(48px, 7vw, 82px) clamp(18px, 5vw, 64px);
  color: var(--ink);
}

.blog-article .blog-intro {
  padding-bottom: 22px;
  color: var(--royal-dark);
  font-size: clamp(1.1rem, 2vw, 1.34rem);
  font-weight: 700;
  line-height: 1.7;
  border-bottom: 1px solid var(--line);
}

.blog-article h2 {
  margin: 38px 0 12px;
  color: var(--royal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.65rem, 3vw, 2.45rem);
  font-weight: 500;
  line-height: 1.08;
}

.blog-article p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.03rem;
  line-height: 1.82;
}

.blog-article a {
  color: var(--sindoor-dark);
  font-weight: 900;
  text-decoration-color: rgba(159, 47, 39, 0.34);
  text-underline-offset: 4px;
}

.blog-article a:hover,
.blog-article a:focus-visible {
  color: var(--royal-dark);
  text-decoration-color: var(--gold);
}

.blog-faq-list {
  display: grid;
  gap: 14px;
  margin: 30px 0 34px;
}

.blog-faq-list article {
  padding: clamp(16px, 3vw, 24px);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(159, 47, 39, 0.28), rgba(240, 211, 138, 0.44)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(75, 17, 26, 0.08);
}

.blog-faq-list h3 {
  margin: 0 0 8px;
  color: var(--royal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2vw, 1.55rem);
  font-weight: 500;
  line-height: 1.14;
}

.blog-faq-list p {
  margin: 0;
}

.seo-links {
  padding: clamp(46px, 7vw, 76px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 18px 18px, rgba(75, 17, 26, 0.07) 0 2px, transparent 2.6px) 0 0 / 42px 42px,
    linear-gradient(90deg, rgba(255, 250, 240, 0.98), rgba(255, 243, 223, 0.94));
  border-top: 1px solid var(--line);
}

.seo-link-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(14px, 2vw, 24px);
  margin-top: 28px;
}

.seo-link-card {
  min-height: 230px;
  display: grid;
  align-content: end;
  gap: 10px;
  padding: clamp(18px, 3vw, 24px);
  color: var(--ink);
  text-decoration: none;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(75, 17, 26, 0.3), rgba(240, 211, 138, 0.62), rgba(22, 59, 49, 0.18)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(75, 17, 26, 0.1);
}

.seo-link-card:hover,
.seo-link-card:focus-visible {
  color: var(--royal-dark);
  background: #fff8ea;
  border-color: rgba(159, 47, 39, 0.4);
}

.seo-link-card span {
  color: var(--sindoor);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.seo-link-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.16rem, 1.8vw, 1.42rem);
  font-weight: 500;
  line-height: 1.12;
}

.seo-link-card p {
  margin: 0;
  color: var(--muted);
}

.heritage-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(320px, 1.18fr);
  gap: clamp(28px, 5vw, 68px);
  align-items: stretch;
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 18px 18px, rgba(240, 211, 138, 0.13) 0 2px, transparent 2.6px) 0 0 / 42px 42px,
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(240, 211, 138, 0.06) 28px 29px),
    linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 52%, var(--emerald) 100%);
  border-top: 1px solid rgba(240, 211, 138, 0.28);
  border-bottom: 1px solid rgba(240, 211, 138, 0.28);
}

.heritage-band::before {
  content: "";
  width: min(500px, 78vw);
  aspect-ratio: 1;
  position: absolute;
  right: -160px;
  top: -210px;
  opacity: 0.32;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 0 15%, rgba(240, 211, 138, 0.3) 15.5% 16.5%, transparent 17% 31%, rgba(240, 211, 138, 0.22) 31.5% 32.5%, transparent 33% 48%, rgba(240, 211, 138, 0.18) 48.5% 49.5%, transparent 50%),
    conic-gradient(from 15deg, transparent 0 8deg, rgba(240, 211, 138, 0.18) 8deg 14deg, transparent 14deg 23deg);
  border-radius: 50%;
}

.heritage-band::after {
  content: "";
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 12px 6px, rgba(240, 211, 138, 0.62) 0 3px, transparent 3.4px) 0 0 / 32px 12px,
    linear-gradient(90deg, rgba(23, 9, 12, 0.46), rgba(240, 211, 138, 0.36), rgba(23, 9, 12, 0.46));
}

.heritage-copy,
.heritage-points {
  position: relative;
  z-index: 1;
}

.heritage-copy {
  display: grid;
  align-content: center;
  max-width: 680px;
}

.heritage-copy h1,
.heritage-copy h2 {
  margin: 0;
  color: var(--palace-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.heritage-copy p:not(.eyebrow) {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.16rem;
}

.heritage-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.heritage-points div {
  min-height: 230px;
  display: grid;
  align-content: end;
  padding: 20px;
  background: rgba(255, 250, 240, 0.07);
  border: 1px solid rgba(240, 211, 138, 0.24);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.12);
}

.heritage-points span {
  align-self: start;
  color: var(--palace-gold);
  font-weight: 900;
}

.heritage-points h3 {
  margin: 42px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.heritage-points p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.authentic-showroom {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: center;
  padding: clamp(60px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.97), rgba(255, 243, 223, 0.92)),
    radial-gradient(circle at 18px 18px, rgba(75, 17, 26, 0.08) 0 2px, transparent 2.6px) 0 0 / 42px 42px,
    repeating-linear-gradient(135deg, rgba(194, 148, 61, 0.09) 0 1px, transparent 1px 48px);
  border-bottom: 1px solid rgba(111, 29, 27, 0.16);
}

.authentic-showroom::before {
  content: "";
  width: min(480px, 70vw);
  aspect-ratio: 1;
  position: absolute;
  left: -160px;
  bottom: -210px;
  opacity: 0.2;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 0 18%, rgba(159, 47, 39, 0.28) 18.5% 19.5%, transparent 20% 34%, rgba(194, 148, 61, 0.25) 34.5% 35.5%, transparent 36% 52%, rgba(75, 17, 26, 0.18) 52.5% 53.5%, transparent 54%),
    conic-gradient(from 12deg, transparent 0 9deg, rgba(159, 47, 39, 0.18) 9deg 14deg, transparent 14deg 24deg);
  border-radius: 50%;
}

.authentic-copy,
.authentic-gallery {
  position: relative;
  z-index: 1;
}

.authentic-copy {
  max-width: 620px;
}

.authentic-copy h2 {
  margin: 0;
  color: var(--royal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.authentic-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.16rem;
}

.authentic-gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(0, 0.88fr);
  gap: 16px;
}

.authentic-gallery figure {
  min-height: 250px;
  position: relative;
  overflow: hidden;
  margin: 0;
  color: var(--white);
  background: var(--velvet);
  border: 1px solid rgba(194, 148, 61, 0.5);
  border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(75, 17, 26, 0.18);
}

.authentic-gallery .authentic-feature {
  grid-row: span 2;
  min-height: 520px;
}

.authentic-gallery img {
  width: 100%;
  height: 100%;
  position: absolute;
  inset: 0;
  object-fit: cover;
  filter: saturate(1.05) contrast(1.04);
}

.authentic-gallery figcaption {
  position: absolute;
  left: 14px;
  right: 14px;
  bottom: 14px;
  display: grid;
  gap: 6px;
  padding: 14px;
  z-index: 1;
  background: linear-gradient(135deg, rgba(23, 9, 12, 0.86), rgba(75, 17, 26, 0.72));
  border-left: 3px solid var(--palace-gold);
}

.authentic-gallery span {
  color: var(--palace-gold);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.authentic-gallery strong {
  max-width: 320px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.1rem;
  font-weight: 500;
  line-height: 1.12;
}

.about-us {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.78fr) minmax(360px, 1.22fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  padding: clamp(60px, 8vw, 104px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 18px 18px, rgba(240, 211, 138, 0.13) 0 2px, transparent 2.6px) 0 0 / 42px 42px,
    repeating-linear-gradient(45deg, transparent 0 28px, rgba(240, 211, 138, 0.06) 28px 29px),
    linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 54%, var(--emerald) 100%);
  border-top: 1px solid rgba(240, 211, 138, 0.28);
  border-bottom: 1px solid rgba(240, 211, 138, 0.28);
}

.about-us::before {
  content: "";
  width: min(520px, 78vw);
  aspect-ratio: 1;
  position: absolute;
  right: -170px;
  bottom: -230px;
  opacity: 0.28;
  pointer-events: none;
  background:
    radial-gradient(circle, transparent 0 17%, rgba(240, 211, 138, 0.28) 17.5% 18.5%, transparent 19% 34%, rgba(240, 211, 138, 0.2) 34.5% 35.5%, transparent 36% 52%, rgba(240, 211, 138, 0.16) 52.5% 53.5%, transparent 54%),
    conic-gradient(from 15deg, transparent 0 8deg, rgba(240, 211, 138, 0.18) 8deg 14deg, transparent 14deg 23deg);
  border-radius: 50%;
}

.about-copy,
.about-grid {
  position: relative;
  z-index: 1;
}

.about-copy {
  max-width: 680px;
}

.about-copy h2 {
  margin: 0;
  color: var(--palace-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.1rem, 5vw, 4.5rem);
  font-weight: 500;
  line-height: 1;
}

.about-copy p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.78);
  font-size: 1.16rem;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.about-card {
  min-height: 238px;
  display: grid;
  align-content: end;
  padding: 20px;
  background: rgba(255, 250, 240, 0.07);
  border: 1px solid rgba(240, 211, 138, 0.24);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.08),
    0 18px 38px rgba(0, 0, 0, 0.12);
}

.about-card span {
  align-self: start;
  color: var(--palace-gold);
  font-weight: 900;
}

.about-card h3 {
  margin: 38px 0 10px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.28rem;
  font-weight: 500;
}

.about-card p {
  margin: 0;
  color: rgba(255, 250, 240, 0.72);
}

.about-warranty dl {
  display: grid;
  gap: 8px;
  margin: 0;
}

.about-warranty div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 9px 0;
  border-bottom: 1px solid rgba(240, 211, 138, 0.18);
}

.about-warranty dt,
.about-warranty dd {
  margin: 0;
}

.about-warranty dt {
  color: rgba(255, 250, 240, 0.74);
  font-size: 0.88rem;
}

.about-warranty dd {
  color: var(--palace-gold);
  font-weight: 900;
  white-space: nowrap;
}

.collection,
.visit {
  position: relative;
  padding: clamp(52px, 7vw, 88px) clamp(18px, 5vw, 64px);
}

.collection::before,
.visit::before {
  content: "";
  width: min(260px, 46vw);
  aspect-ratio: 1;
  position: absolute;
  right: clamp(12px, 5vw, 70px);
  top: clamp(24px, 5vw, 70px);
  pointer-events: none;
  opacity: 0.2;
  background:
    radial-gradient(circle, transparent 0 24%, rgba(159, 47, 39, 0.24) 24.5% 25.5%, transparent 26% 42%, rgba(212, 161, 55, 0.26) 42.5% 43.5%, transparent 44%),
    conic-gradient(from 45deg, transparent 0 11deg, rgba(159, 47, 39, 0.2) 11deg 16deg, transparent 16deg 30deg);
  border-radius: 50%;
}

.section-heading,
.category-rail,
.filter-bar,
.product-grid,
.catalogue-band,
.contact-form {
  position: relative;
  z-index: 1;
}

.section-heading {
  max-width: 760px;
}

.section-heading h1,
.section-heading h2,
.craft-content h2,
.care-copy h2,
.visit h1,
.visit h2 {
  margin: 0;
  font-size: clamp(2.2rem, 5vw, 4.8rem);
}

.section-heading p:not(.eyebrow),
.craft-content p,
.care-copy li,
.visit .section-heading p {
  color: var(--muted);
  font-size: 1.16rem;
}

.category-rail {
  display: flex;
  gap: clamp(8px, 1vw, 12px);
  margin: 28px -4px 30px;
  padding: 8px 4px 16px;
  overflow-x: auto;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
}

.category-rail::-webkit-scrollbar {
  height: 8px;
}

.category-rail::-webkit-scrollbar-thumb {
  background: rgba(159, 47, 39, 0.34);
  border-radius: 999px;
}

.category-tile {
  flex: 0 0 clamp(86px, 8vw, 104px);
  min-height: 114px;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 9px;
  overflow: visible;
  padding: 6px 4px;
  color: var(--ink);
  background: transparent;
  border: 0;
  border-radius: 8px;
  text-decoration: none;
  scroll-snap-align: start;
  box-shadow: none;
}

.category-tile:hover,
.category-tile:focus-visible,
.category-tile.is-active {
  color: var(--sindoor-dark);
  background: rgba(255, 240, 220, 0.68);
}

.category-tile img {
  width: clamp(64px, 6vw, 78px);
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--linen);
  border: 4px double rgba(240, 211, 138, 0.85);
  border-radius: 50%;
  box-shadow:
    0 0 0 5px rgba(255, 250, 240, 0.92),
    0 14px 32px rgba(83, 33, 20, 0.16);
}

.category-tile.is-active img {
  border-color: var(--sindoor-dark);
  box-shadow:
    0 0 0 5px rgba(255, 240, 220, 0.95),
    0 14px 32px rgba(159, 47, 39, 0.22);
}

.category-tile span {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 34px;
  padding: 0 4px;
  font-size: 0.7rem;
  font-weight: 900;
  line-height: 1.14;
  text-align: center;
  text-transform: uppercase;
}


.collection-compact {
  overflow: hidden;
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(42px, 5vw, 72px);
  background:
    radial-gradient(circle at 24px 24px, rgba(240, 211, 138, 0.13) 0 2px, transparent 2.7px) 0 0 / 42px 42px,
    linear-gradient(180deg, rgba(23, 9, 12, 0.96) 0 270px, rgba(255, 250, 240, 0) 270px),
    linear-gradient(180deg, rgba(255, 250, 240, 0.92), rgba(255, 243, 223, 0.96));
  border-top: 1px solid rgba(240, 211, 138, 0.34);
}

.collection-compact::before {
  width: min(220px, 38vw);
  opacity: 0.16;
  background:
    radial-gradient(circle, transparent 0 24%, rgba(240, 211, 138, 0.34) 24.5% 25.5%, transparent 26% 42%, rgba(240, 211, 138, 0.26) 42.5% 43.5%, transparent 44%),
    conic-gradient(from 45deg, transparent 0 11deg, rgba(240, 211, 138, 0.22) 11deg 16deg, transparent 16deg 30deg);
}

.collection-compact .section-heading {
  max-width: 690px;
  color: var(--white);
}

.collection-compact .section-heading .eyebrow {
  color: var(--palace-gold);
}

.collection-compact .section-heading h1 {
  color: var(--palace-gold);
  font-size: clamp(2rem, 3.6vw, 3.25rem);
  text-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
}

.collection-compact .section-heading p:not(.eyebrow) {
  max-width: 620px;
  margin-top: 10px;
  color: rgba(255, 250, 240, 0.8);
  font-size: 0.98rem;
}

.collection-compact .category-rail {
  gap: clamp(8px, 1vw, 12px);
  margin: 20px 0 24px;
  padding: 12px;
  color: var(--palace-gold);
  background: linear-gradient(135deg, rgba(23, 9, 12, 0.92), rgba(75, 17, 26, 0.86));
  border: 1px solid rgba(240, 211, 138, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 9, 12, 0.16);
}

.collection-compact .category-rail::-webkit-scrollbar-thumb {
  background: rgba(240, 211, 138, 0.48);
}

.collection-compact .category-tile {
  flex-basis: clamp(88px, 7.4vw, 104px);
  min-height: 108px;
  gap: 8px;
  color: rgba(255, 250, 240, 0.88);
}

.collection-compact .category-tile:hover,
.collection-compact .category-tile:focus-visible,
.collection-compact .category-tile.is-active {
  color: var(--palace-gold);
  background: rgba(240, 211, 138, 0.12);
}

.collection-compact .category-tile img {
  width: clamp(62px, 5.8vw, 76px);
  border: 3px double rgba(240, 211, 138, 0.9);
  box-shadow:
    0 0 0 4px rgba(23, 9, 12, 0.58),
    0 12px 26px rgba(0, 0, 0, 0.2);
}

.collection-compact .category-tile.is-active img {
  border-color: var(--palace-gold);
  box-shadow:
    0 0 0 4px rgba(240, 211, 138, 0.18),
    0 14px 30px rgba(0, 0, 0, 0.24);
}

.collection-compact .category-tile span {
  min-height: 30px;
  font-size: 0.68rem;
}

.collection-compact .product-grid {
  grid-template-columns: repeat(auto-fill, minmax(250px, 1fr));
  gap: clamp(18px, 2vw, 30px);
}

.collection-compact .product-card {
  background:
    linear-gradient(#fffaf0, #fff8ea) padding-box,
    linear-gradient(145deg, rgba(75, 17, 26, 0.5), rgba(240, 211, 138, 0.78), rgba(22, 59, 49, 0.28)) border-box;
  box-shadow: 0 18px 42px rgba(75, 17, 26, 0.14);
}

.collection-compact .product-card::after {
  height: 4px;
  background: linear-gradient(90deg, var(--royal), var(--palace-gold), var(--emerald));
}

.collection-compact .image-zoom-trigger span {
  color: var(--palace-gold);
  background: rgba(23, 9, 12, 0.86);
  border-color: rgba(240, 211, 138, 0.42);
}

.collection-compact .product-info {
  gap: 7px;
  padding: 16px;
  background: linear-gradient(180deg, rgba(255, 250, 240, 0.96), rgba(255, 243, 223, 0.98));
}

.collection-compact .product-line {
  color: var(--royal);
}

.collection-compact .product-info h3 {
  color: var(--royal-dark);
  font-size: 1.16rem;
}

.collection-compact .product-info p:not(.product-tag):not(.product-line):not(.product-warranty):not(.product-price) {
  display: none;
}

.collection-compact .product-link {
  min-height: 38px;
  color: var(--royal-dark);
  background: #fff2d8;
  border-color: rgba(143, 95, 19, 0.34);
  font-size: 0.8rem;
}

.catalogue-pagination {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: clamp(22px, 3vw, 34px);
  padding: 14px 16px;
  color: var(--palace-gold);
  background: linear-gradient(135deg, rgba(23, 9, 12, 0.94), rgba(75, 17, 26, 0.9));
  border: 1px solid rgba(240, 211, 138, 0.34);
  border-radius: var(--radius);
  box-shadow: 0 16px 42px rgba(23, 9, 12, 0.16);
}

.pagination-status {
  margin: 0;
  color: rgba(255, 250, 240, 0.78);
  font-size: 0.86rem;
  font-weight: 800;
}

.pagination-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.pagination-actions span {
  color: var(--palace-gold);
  font-size: 0.82rem;
  font-weight: 900;
  white-space: nowrap;
}

.pagination-actions button {
  min-height: 36px;
  padding: 0 12px;
  color: var(--royal-dark);
  background: var(--palace-gold);
  border: 1px solid rgba(240, 211, 138, 0.58);
  border-radius: 6px;
  font-size: 0.8rem;
  font-weight: 900;
}

.pagination-actions button:disabled {
  opacity: 0.42;
  cursor: not-allowed;
}

.pagination-actions button:not(:disabled):hover,
.pagination-actions button:not(:disabled):focus-visible {
  background: #fff0c4;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 32px 0;
}

.filter-button {
  min-height: 40px;
  padding: 0 14px;
  color: var(--muted);
}

.filter-button.is-active {
  color: var(--white);
  background: var(--sindoor-dark);
  border-color: var(--sindoor-dark);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 28px);
}

.product-card {
  position: relative;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(75, 17, 26, 0.34), rgba(240, 211, 138, 0.58), rgba(22, 59, 49, 0.24)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 18px 42px rgba(75, 17, 26, 0.12);
}

.product-card::after {
  content: "";
  height: 5px;
  position: absolute;
  left: 0;
  right: 0;
  top: 0;
  pointer-events: none;
  background: linear-gradient(90deg, var(--royal), var(--palace-gold), var(--emerald));
}

.product-card.is-filtered {
  display: none;
}

.image-zoom-trigger {
  width: 100%;
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  color: inherit;
  background: transparent;
  border: 0;
  cursor: zoom-in;
}

.image-zoom-trigger span {
  min-height: 30px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  right: 12px;
  bottom: 12px;
  z-index: 2;
  padding: 0 10px;
  color: var(--royal-dark);
  background: rgba(255, 250, 240, 0.92);
  border: 1px solid rgba(240, 211, 138, 0.7);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.image-zoom-trigger img {
  transition: transform 220ms ease;
}

.image-zoom-trigger:hover img,
.image-zoom-trigger:focus-visible img {
  transform: scale(1.035);
}

.product-card img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--linen);
  border-bottom: 1px solid rgba(194, 148, 61, 0.2);
}

.featured-card .image-zoom-trigger img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  background: var(--linen);
}

.card-badge {
  min-height: 28px;
  display: inline-flex;
  align-items: center;
  position: absolute;
  left: 12px;
  top: 12px;
  z-index: 2;
  padding: 0 10px;
  color: #1b0d0d;
  background: var(--palace-gold);
  border: 1px solid rgba(75, 17, 26, 0.16);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-info {
  display: grid;
  gap: 9px;
  padding: 16px;
}

.product-tag {
  margin: 0;
  color: var(--sindoor);
  font-size: 0.7rem;
  font-weight: 800;
  text-transform: uppercase;
}

.product-line {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-warranty {
  width: fit-content;
  margin: 0;
  padding: 5px 9px;
  color: var(--royal);
  background: #fff3d2;
  border: 1px solid rgba(194, 148, 61, 0.34);
  border-radius: 4px;
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.product-price {
  margin: 0;
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.product-info h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.1;
}

.product-info p:not(.product-tag):not(.product-line):not(.product-warranty):not(.product-price) {
  margin: 0;
  color: var(--muted);
  font-size: 0.94rem;
}

.product-meta {
  display: grid;
  gap: 12px;
  margin-top: 4px;
}

.product-meta span {
  color: var(--gold-dark);
  font-size: 0.9rem;
  font-weight: 900;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.product-link {
  min-height: 38px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 12px;
  border: 1px solid var(--line);
  border-radius: 6px;
  color: var(--royal);
  background: #fff8ea;
  font-size: 0.86rem;
  font-weight: 800;
  text-decoration: none;
}

.product-call-link {
  color: #fffaf0;
  background: var(--royal-dark);
  border-color: rgba(240, 211, 138, 0.42);
}

.product-link:hover,
.product-link:focus-visible,
.header-contact:hover,
.header-contact:focus-visible {
  border-color: rgba(159, 47, 39, 0.42);
}

.product-link:hover,
.product-link:focus-visible {
  background: #fff0dc;
}

.product-call-link:hover,
.product-call-link:focus-visible {
  color: var(--royal-dark);
  background: var(--palace-gold);
}

.header-contact:hover,
.header-contact:focus-visible {
  color: var(--royal-dark);
  background: var(--palace-gold);
  border-color: rgba(15, 107, 60, 0.24);
}

.header-contact:hover::before,
.header-contact:focus-visible::before {
  background-color: #fff8ea;
}

.catalogue-band {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(24px, 5vw, 72px);
  padding: clamp(56px, 8vw, 96px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.95), rgba(255, 243, 223, 0.92)),
    radial-gradient(circle at 18px 18px, rgba(75, 17, 26, 0.08) 0 2px, transparent 2.6px) 0 0 / 42px 42px,
    repeating-linear-gradient(90deg, rgba(194, 148, 61, 0.1) 0 1px, transparent 1px 72px),
    repeating-linear-gradient(0deg, rgba(75, 17, 26, 0.07) 0 1px, transparent 1px 72px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.catalogue-column {
  display: grid;
  align-content: start;
  gap: 22px;
}

.catalogue-heading {
  max-width: 560px;
}

.catalogue-heading h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.6rem);
  font-weight: 500;
  line-height: 1;
}

.mini-product-list {
  display: grid;
  gap: 12px;
}

.mini-product {
  min-height: 114px;
  display: grid;
  grid-template-columns: 112px 1fr;
  align-items: center;
  gap: 16px;
  padding: 10px;
  color: var(--ink);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(159, 47, 39, 0.24), rgba(212, 161, 55, 0.36)) border-box;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  box-shadow: 0 8px 24px rgba(23, 21, 20, 0.05);
}

.mini-product:hover,
.mini-product:focus-visible {
  border-color: rgba(159, 47, 39, 0.44);
  background: #fff8ea;
}

.mini-product img {
  width: 112px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: var(--linen);
}

.mini-product span {
  display: grid;
  gap: 8px;
}

.mini-product strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.12rem;
  line-height: 1.1;
  font-weight: 500;
}

.mini-product small {
  color: var(--sindoor-dark);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.mini-product em {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 900;
  text-transform: uppercase;
}

.service-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  padding: 0 clamp(18px, 5vw, 64px);
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.service-strip div {
  min-height: 156px;
  display: grid;
  align-content: center;
  gap: 8px;
  padding: 24px 20px;
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 243, 223, 0.98)),
    radial-gradient(circle at 14px 14px, rgba(75, 17, 26, 0.08) 0 2px, transparent 2.5px) 0 0 / 36px 36px,
    repeating-linear-gradient(135deg, rgba(194, 148, 61, 0.07) 0 1px, transparent 1px 34px);
}

.service-strip span {
  color: var(--sindoor);
  font-size: 0.72rem;
  font-weight: 900;
}

.service-strip strong {
  font-size: 1rem;
  text-transform: uppercase;
}

.service-strip p {
  max-width: 270px;
  margin: 0;
  color: var(--muted);
  font-size: 0.9rem;
}

.showcase {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 250, 240, 0.08) 0 2px, transparent 2.7px) 0 0 / 44px 44px,
    repeating-linear-gradient(45deg, transparent 0 26px, rgba(240, 211, 138, 0.06) 26px 27px),
    linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 52%, #1b2f29 100%);
}

.showcase::before {
  content: "";
  width: min(430px, 70vw);
  aspect-ratio: 1;
  position: absolute;
  right: -140px;
  top: -170px;
  opacity: 0.2;
  background:
    radial-gradient(circle, transparent 0 17%, rgba(212, 161, 55, 0.3) 17.5% 18.5%, transparent 19% 36%, rgba(255, 250, 240, 0.24) 36.5% 37.5%, transparent 38% 54%, rgba(212, 161, 55, 0.22) 54.5% 55.5%, transparent 56%),
    conic-gradient(from 12deg, transparent 0 8deg, rgba(212, 161, 55, 0.18) 8deg 14deg, transparent 14deg 24deg);
  border-radius: 50%;
}

.showcase::after {
  content: "";
  height: 12px;
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  background:
    radial-gradient(circle at 12px 6px, rgba(212, 161, 55, 0.5) 0 3px, transparent 3.4px) 0 0 / 32px 12px,
    linear-gradient(90deg, rgba(159, 47, 39, 0.4), rgba(212, 161, 55, 0.34), rgba(159, 47, 39, 0.4));
}

.showcase .section-heading {
  max-width: 880px;
}

.showcase .eyebrow {
  color: var(--rose);
}

.showcase .section-heading h2,
.showcase .section-heading p:not(.eyebrow) {
  color: var(--white);
}

.showcase .section-heading p:not(.eyebrow) {
  color: rgba(255, 250, 240, 0.78);
}

.traditional-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  margin-top: 36px;
}

.traditional-card {
  overflow: hidden;
  display: grid;
  grid-template-rows: auto 1fr;
  background:
    linear-gradient(#fffaf0, #fffaf0) padding-box,
    linear-gradient(135deg, rgba(212, 161, 55, 0.78), rgba(244, 199, 181, 0.24), rgba(212, 161, 55, 0.48)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

.traditional-card img {
  width: 100%;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  background: #1a1011;
}

.traditional-card > div {
  display: grid;
  gap: 10px;
  padding: 16px;
  color: var(--ink);
}

.traditional-card h3 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  line-height: 1.1;
}

.traditional-card .product-link {
  margin-top: 4px;
}

.craft-band {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 1.14fr);
  gap: clamp(34px, 6vw, 88px);
  align-items: start;
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 64px);
  color: var(--white);
  background:
    radial-gradient(circle at 18px 18px, rgba(255, 250, 240, 0.08) 0 2px, transparent 2.6px) 0 0 / 44px 44px,
    linear-gradient(135deg, var(--royal-dark) 0%, var(--royal) 54%, var(--emerald) 100%);
}

.craft-band::before {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.18;
  background:
    repeating-linear-gradient(45deg, transparent 0 18px, rgba(255, 250, 240, 0.16) 18px 19px),
    repeating-linear-gradient(-45deg, transparent 0 18px, rgba(212, 161, 55, 0.18) 18px 19px);
}

.craft-content,
.craft-list {
  position: relative;
  z-index: 1;
}

.craft-band .eyebrow {
  color: var(--rose);
}

.craft-content p,
.craft-list p {
  color: rgba(255, 255, 255, 0.74);
}

.craft-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
}

.craft-list div {
  min-height: 240px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: var(--radius);
}

.craft-list span {
  display: block;
  color: var(--rose);
  font-weight: 900;
  margin-bottom: 38px;
}

.craft-list h3 {
  margin: 0 0 10px;
  font-size: 1.1rem;
}

.craft-list p {
  margin: 0;
}

.care {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: center;
  padding: clamp(64px, 9vw, 116px) clamp(18px, 5vw, 64px);
  background:
    radial-gradient(circle at 18px 18px, rgba(159, 47, 39, 0.08) 0 2px, transparent 2.7px) 0 0 / 44px 44px,
    linear-gradient(135deg, #fff8ea 0%, #efe5d2 100%);
}

.care::before {
  content: "";
  width: min(340px, 62vw);
  aspect-ratio: 1;
  position: absolute;
  right: -110px;
  bottom: -150px;
  opacity: 0.22;
  background:
    radial-gradient(circle, transparent 0 18%, rgba(159, 47, 39, 0.2) 18.5% 19.5%, transparent 20% 36%, rgba(212, 161, 55, 0.22) 36.5% 37.5%, transparent 38% 55%, rgba(159, 47, 39, 0.18) 55.5% 56.5%, transparent 57%),
    conic-gradient(from 0deg, transparent 0 7deg, rgba(159, 47, 39, 0.18) 7deg 12deg, transparent 12deg 20deg);
  border-radius: 50%;
}

.care-image {
  min-height: 440px;
  border-radius: var(--radius);
  background-image: url("assets/optimized/hero-jewelry.jpg");
  background-size: cover;
  background-position: right center;
  box-shadow: var(--shadow);
  border: 8px solid rgba(255, 250, 240, 0.92);
}

.care-copy {
  max-width: 620px;
  position: relative;
  z-index: 1;
}

.care-copy ul {
  display: grid;
  gap: 12px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.care-copy li {
  padding: 14px 0 14px 24px;
  position: relative;
  border-bottom: 1px solid rgba(23, 21, 20, 0.12);
}

.care-copy li::before {
  content: "";
  width: 8px;
  height: 8px;
  position: absolute;
  left: 0;
  top: 23px;
  background: var(--sindoor);
  border-radius: 50%;
}

.faq {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(360px, 1.24fr);
  gap: clamp(30px, 6vw, 82px);
  align-items: start;
  padding: clamp(60px, 8vw, 104px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.97), rgba(255, 243, 223, 0.92)),
    radial-gradient(circle at 18px 18px, rgba(75, 17, 26, 0.08) 0 2px, transparent 2.6px) 0 0 / 42px 42px,
    repeating-linear-gradient(135deg, rgba(194, 148, 61, 0.09) 0 1px, transparent 1px 48px);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.faq-list {
  display: grid;
  gap: 12px;
}

.faq-list details {
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(75, 17, 26, 0.28), rgba(240, 211, 138, 0.48), rgba(22, 59, 49, 0.2)) border-box;
  border: 1px solid transparent;
  border-radius: var(--radius);
  box-shadow: 0 14px 34px rgba(75, 17, 26, 0.08);
}

.faq-list summary {
  min-height: 62px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 18px 20px;
  color: var(--royal-dark);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 500;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  color: var(--temple-gold);
  font-family: Poppins, Lato, Avenir, "Avenir Next", "Segoe UI", Helvetica, Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 900;
}

.faq-list details[open] summary::after {
  content: "-";
}

.faq-list p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.visit {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 0.8fr);
  gap: clamp(30px, 6vw, 88px);
  background:
    linear-gradient(90deg, rgba(255, 250, 240, 0.96), rgba(255, 246, 226, 0.96)),
    radial-gradient(circle at 18px 18px, rgba(159, 47, 39, 0.08) 0 2px, transparent 2.7px) 0 0 / 42px 42px;
}

.store-address {
  max-width: 420px;
  display: grid;
  gap: 6px;
  margin: 20px 0 0;
  padding: 16px 18px;
  color: var(--royal-dark);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(159, 47, 39, 0.34), rgba(212, 161, 55, 0.38)) border-box;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 21, 20, 0.06);
  font-style: normal;
  font-weight: 800;
}

.store-address span {
  color: var(--sindoor);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-hours {
  max-width: 420px;
  display: grid;
  gap: 5px;
  margin-top: 12px;
  padding: 14px 18px;
  color: var(--royal-dark);
  background:
    radial-gradient(circle at 14px 14px, rgba(240, 211, 138, 0.16) 0 2px, transparent 2.5px) 0 0 / 34px 34px,
    linear-gradient(135deg, #fffaf0, #fff0ce);
  border: 1px solid rgba(143, 95, 19, 0.28);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 21, 20, 0.06);
}

.store-hours span {
  color: var(--sindoor);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.store-hours strong {
  color: var(--royal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  font-weight: 700;
}

.store-hours small {
  color: rgba(23, 9, 12, 0.7);
  font-size: 0.84rem;
  font-weight: 800;
}

.directions-link {
  width: fit-content;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 12px;
  padding: 0 16px;
  color: var(--royal-dark);
  background: var(--palace-gold);
  border: 1px solid rgba(143, 95, 19, 0.34);
  border-radius: 999px;
  font-size: 0.86rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(75, 17, 26, 0.12);
}

.directions-link:hover,
.directions-link:focus-visible {
  color: #fffaf0;
  background: var(--royal-dark);
}

.whatsapp-card {
  max-width: 520px;
  position: relative;
  overflow: hidden;
  display: grid;
  gap: 12px;
  margin-top: 22px;
  padding: clamp(20px, 3vw, 28px);
  color: var(--royal-dark);
  background:
    radial-gradient(circle at 18px 18px, rgba(159, 47, 39, 0.07) 0 2px, transparent 2.7px) 0 0 / 38px 38px,
    linear-gradient(135deg, #fffaf0 0%, #fff0ce 48%, #f9df9e 100%);
  border: 1px solid rgba(143, 95, 19, 0.34);
  border-radius: var(--radius);
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.72),
    0 22px 54px rgba(75, 17, 26, 0.14);
}

.whatsapp-card::before {
  content: "";
  width: 160px;
  aspect-ratio: 1;
  position: absolute;
  right: -54px;
  top: -70px;
  opacity: 0.16;
  background:
    radial-gradient(circle, transparent 0 24%, rgba(75, 17, 26, 0.26) 24.5% 25.5%, transparent 26% 42%, rgba(143, 95, 19, 0.22) 42.5% 43.5%, transparent 44%),
    conic-gradient(from 45deg, transparent 0 11deg, rgba(75, 17, 26, 0.18) 11deg 16deg, transparent 16deg 30deg);
  border-radius: 50%;
}

.whatsapp-card > * {
  position: relative;
  z-index: 1;
}

.whatsapp-card span {
  width: fit-content;
  padding: 5px 9px;
  color: #fffaf0;
  background: var(--royal-dark);
  border-radius: 4px;
  font-size: 0.68rem;
  font-weight: 900;
  text-transform: uppercase;
}

.whatsapp-card h2 {
  max-width: 390px;
  margin: 0;
  color: var(--royal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 700;
  line-height: 1.08;
}

.whatsapp-card p {
  max-width: 430px;
  margin: 0;
  color: rgba(23, 9, 12, 0.78);
  font-weight: 700;
  line-height: 1.55;
}

.whatsapp-card .whatsapp-button {
  width: 54px;
  margin-top: 4px;
}

.whatsapp-card-actions,
.form-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.whatsapp-card-actions .whatsapp-button {
  margin-top: 0;
}

.contact-socials,
.footer-socials {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.contact-socials {
  margin-top: 14px;
}

.social-link,
.footer-social {
  min-height: 42px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 0 14px 0 10px;
  color: var(--royal-dark);
  background:
    linear-gradient(#fff8ea, #fff8ea) padding-box,
    linear-gradient(135deg, rgba(240, 211, 138, 0.88), rgba(159, 47, 39, 0.36)) border-box;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
  box-shadow: 0 12px 30px rgba(23, 9, 12, 0.12);
}

.social-link::before,
.footer-social::before {
  content: "";
  width: 26px;
  height: 26px;
  display: inline-grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
}

.facebook-link::before,
.footer-facebook::before {
  content: "f";
  color: #fff8ea;
  background: #254f9e;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.15rem;
  font-weight: 900;
  line-height: 1;
}

.footer-whatsapp::before {
  background: var(--palace-gold) url("assets/whatsapp-mark.svg") center / 18px 18px no-repeat;
}

.footer-call::before {
  content: "Call";
  color: var(--royal-dark);
  background: var(--palace-gold);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.footer-email::before {
  content: "@";
  color: var(--royal-dark);
  background: var(--palace-gold);
  font-size: 0.92rem;
  font-weight: 900;
  line-height: 1;
}

.footer-map::before {
  content: "Map";
  color: var(--royal-dark);
  background: var(--palace-gold);
  font-size: 0.58rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.social-link:hover,
.social-link:focus-visible,
.footer-social:hover,
.footer-social:focus-visible {
  color: var(--royal-dark);
  background:
    linear-gradient(var(--palace-gold), var(--palace-gold)) padding-box,
    linear-gradient(135deg, rgba(255, 250, 240, 0.78), rgba(240, 211, 138, 0.9)) border-box;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(18px, 3vw, 28px);
  background:
    linear-gradient(var(--white), var(--white)) padding-box,
    linear-gradient(135deg, rgba(159, 47, 39, 0.34), rgba(212, 161, 55, 0.38)) border-box;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 14px 42px rgba(23, 21, 20, 0.08);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  color: var(--ink);
}

.contact-form input,
.contact-form select {
  min-height: 46px;
  padding: 0 12px;
}

.contact-form textarea {
  resize: vertical;
  padding: 12px;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.filter-button:focus-visible,
.category-tile:focus-visible,
.home-card:focus-visible,
.image-zoom-trigger:focus-visible,
.lightbox-close:focus-visible,
.product-link:focus-visible,
.mini-product:focus-visible,
.menu-toggle:focus-visible,
.header-contact:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(201, 147, 46, 0.38);
  outline-offset: 3px;
}

.site-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 32px clamp(18px, 5vw, 64px);
  color: rgba(255, 255, 255, 0.78);
  background:
    radial-gradient(circle at 14px 14px, rgba(255, 250, 240, 0.08) 0 2px, transparent 2.5px) 0 0 / 40px 40px,
    linear-gradient(135deg, #221614 0%, var(--sindoor-dark) 100%);
}

.site-footer .brand,
.site-footer a {
  color: var(--white);
}

.site-footer .brand {
  padding: 4px;
  background: rgba(255, 250, 240, 0.94);
  border-radius: 8px;
}

.site-footer .brand-wordmark {
  color: var(--ink);
}

.footer-logo {
  height: 74px;
}

.site-footer p {
  margin: 0;
  text-align: center;
}

.footer-copy {
  max-width: 680px;
  display: grid;
  gap: 6px;
  flex: 1 1 360px;
  color: rgba(255, 250, 240, 0.76);
  text-align: left;
}

.footer-copy strong {
  color: var(--palace-gold);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.22rem, 2vw, 1.6rem);
  font-weight: 500;
  line-height: 1;
}

.footer-copy span {
  color: #fff8ea;
  font-size: 0.95rem;
  font-weight: 800;
}

.footer-copy small,
.footer-copy address {
  color: rgba(255, 250, 240, 0.7);
  font-size: 0.8rem;
  font-style: normal;
}

.footer-copy a {
  color: var(--palace-gold);
  text-decoration: none;
}

.footer-copy a:hover,
.footer-copy a:focus-visible {
  color: #fff8ea;
  text-decoration: underline;
}

.footer-copy address {
  width: 100%;
  max-width: 620px;
  display: inline-flex;
  align-items: flex-start;
  gap: 8px;
  margin-top: 2px;
  padding-top: 7px;
  border-top: 1px solid rgba(240, 211, 138, 0.24);
  line-height: 1.35;
}

.footer-copy address::before {
  content: "";
  width: 7px;
  height: 7px;
  flex: 0 0 auto;
  margin-top: 0.42em;
  background: var(--palace-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 211, 138, 0.12);
}

.site-footer .footer-social {
  color: var(--white);
  background:
    linear-gradient(rgba(255, 250, 240, 0.1), rgba(255, 250, 240, 0.1)) padding-box,
    linear-gradient(135deg, rgba(240, 211, 138, 0.58), rgba(255, 250, 240, 0.18)) border-box;
  box-shadow: none;
}

.site-footer .footer-social:hover,
.site-footer .footer-social:focus-visible {
  color: var(--royal-dark);
  background:
    linear-gradient(var(--palace-gold), var(--palace-gold)) padding-box,
    linear-gradient(135deg, rgba(255, 250, 240, 0.78), rgba(240, 211, 138, 0.9)) border-box;
}

.floating-whatsapp {
  width: 62px;
  min-width: 62px;
  min-height: 62px;
  display: grid;
  grid-template-columns: 1fr;
  align-items: center;
  justify-items: center;
  gap: 0;
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: clamp(14px, 3vw, 28px);
  z-index: 50;
  overflow: hidden;
  padding: 9px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 16px 16px, rgba(240, 211, 138, 0.18) 0 2px, transparent 2.6px) 0 0 / 34px 34px,
    linear-gradient(135deg, #0f6b3c 0%, #08442d 52%, #062b20 100%);
  border: 1px solid rgba(240, 211, 138, 0.58);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.16),
    0 18px 44px rgba(23, 9, 12, 0.28);
  text-decoration: none;
}

.floating-whatsapp::before {
  content: "";
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  background: var(--palace-gold) url("assets/whatsapp-mark.svg") center / 28px 28px no-repeat;
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 211, 138, 0.16);
}

.floating-whatsapp::after {
  content: "";
  width: 110px;
  aspect-ratio: 1;
  position: absolute;
  right: -46px;
  top: -54px;
  opacity: 0.2;
  background:
    radial-gradient(circle, transparent 0 24%, rgba(240, 211, 138, 0.48) 24.5% 25.5%, transparent 26% 42%, rgba(240, 211, 138, 0.32) 42.5% 43.5%, transparent 44%),
    conic-gradient(from 45deg, transparent 0 11deg, rgba(240, 211, 138, 0.34) 11deg 16deg, transparent 16deg 30deg);
  border-radius: 50%;
}

.floating-whatsapp span {
  display: none;
}

.floating-whatsapp strong {
  display: none;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  background: var(--palace-gold);
  color: var(--royal-dark);
}

.floating-whatsapp:hover::before,
.floating-whatsapp:focus-visible::before {
  background-color: #fff8ea;
}

.floating-call {
  width: 62px;
  min-width: 62px;
  min-height: 62px;
  display: grid;
  place-items: center;
  position: fixed;
  right: clamp(14px, 3vw, 28px);
  bottom: calc(clamp(14px, 3vw, 28px) + 76px);
  z-index: 50;
  padding: 9px;
  color: #fffaf0;
  background:
    radial-gradient(circle at 16px 16px, rgba(240, 211, 138, 0.18) 0 2px, transparent 2.6px) 0 0 / 34px 34px,
    linear-gradient(135deg, var(--sindoor-dark), var(--royal-dark));
  border: 1px solid rgba(240, 211, 138, 0.58);
  border-radius: 999px;
  box-shadow:
    inset 0 1px 0 rgba(255, 250, 240, 0.16),
    0 18px 44px rgba(23, 9, 12, 0.28);
  text-decoration: none;
}

.floating-call::before {
  content: "Call";
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--royal-dark);
  background: var(--palace-gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(240, 211, 138, 0.16);
  font-size: 0.6rem;
  font-weight: 900;
  letter-spacing: 0;
  line-height: 1;
  text-transform: uppercase;
}

.floating-call:hover,
.floating-call:focus-visible {
  background: var(--palace-gold);
  color: var(--royal-dark);
}

.floating-call:hover::before,
.floating-call:focus-visible::before {
  background-color: #fff8ea;
}

.image-lightbox {
  width: min(920px, calc(100vw - 32px));
  max-height: calc(100vh - 32px);
  overflow: hidden;
  padding: 0;
  color: var(--ink);
  background: #fffaf0;
  border: 1px solid rgba(240, 211, 138, 0.58);
  border-radius: var(--radius);
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
}

.image-lightbox::backdrop {
  background: rgba(23, 9, 12, 0.78);
  backdrop-filter: blur(5px);
}

.image-lightbox-frame {
  display: grid;
  grid-template-columns: minmax(0, 1.18fr) minmax(280px, 0.82fr);
  gap: 0;
}

.lightbox-image {
  width: 100%;
  height: min(78vh, 720px);
  object-fit: contain;
  background:
    radial-gradient(circle at 16px 16px, rgba(240, 211, 138, 0.12) 0 2px, transparent 2.6px) 0 0 / 42px 42px,
    linear-gradient(135deg, #1a1011, #080406);
}

.lightbox-copy {
  display: grid;
  align-content: center;
  gap: 12px;
  padding: clamp(22px, 4vw, 38px);
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(255, 243, 223, 0.98)),
    radial-gradient(circle at 14px 14px, rgba(75, 17, 26, 0.08) 0 2px, transparent 2.5px) 0 0 / 36px 36px;
}

.lightbox-copy h2 {
  margin: 0;
  color: var(--royal-dark);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.4rem);
  font-weight: 500;
  line-height: 1;
}

.lightbox-meta {
  margin: 0 0 8px;
  color: var(--muted);
  font-weight: 800;
}

.lightbox-close {
  min-height: 38px;
  position: absolute;
  right: 12px;
  top: 12px;
  z-index: 3;
  padding: 0 12px;
  color: var(--royal-dark);
  background: rgba(255, 250, 240, 0.94);
  border: 1px solid rgba(240, 211, 138, 0.7);
  border-radius: 5px;
  font-size: 0.82rem;
  font-weight: 900;
}

.is-lightbox-open {
  overflow: hidden;
}

.manager-page {
  min-height: 100vh;
}

.manager-header {
  min-height: 86px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(255, 250, 240, 0.98);
  border-bottom: 1px solid var(--line);
}

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

#manager-status {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
}

.manager-status-link {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  color: var(--white);
  background: var(--sindoor-dark);
  border-radius: 6px;
  font-size: 0.82rem;
  font-weight: 900;
  text-decoration: none;
}

.manager-status-link:hover,
.manager-status-link:focus-visible {
  background: var(--royal-dark);
  color: var(--palace-gold);
}

.manager-main {
  display: grid;
  gap: 24px;
  padding: clamp(24px, 5vw, 64px);
}

.manager-panel {
  position: relative;
  padding: clamp(18px, 3vw, 30px);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 12px 34px rgba(23, 21, 20, 0.06);
}

.manager-intro {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  background:
    radial-gradient(circle at 18px 18px, rgba(159, 47, 39, 0.08) 0 2px, transparent 2.7px) 0 0 / 44px 44px,
    linear-gradient(135deg, #fffaf0, #fff2dc);
}

.manager-intro h1,
.manager-section-head h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  line-height: 1;
}

.manager-intro h1 {
  font-size: clamp(2.4rem, 6vw, 5rem);
}

.manager-intro p:not(.eyebrow),
.manager-section-head p:not(.eyebrow) {
  color: var(--muted);
}

.manager-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(300px, 0.46fr);
  gap: 24px;
}

.manager-form {
  display: grid;
  gap: 16px;
}

.manager-form label,
.manager-checks {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 800;
}

.manager-form input,
.manager-form select,
.manager-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: #fffaf0;
  color: var(--ink);
}

.manager-form input,
.manager-form select {
  min-height: 46px;
  padding: 0 12px;
}

.manager-form textarea {
  resize: vertical;
  padding: 12px;
}

.manager-checks {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin: 0;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.manager-checks legend {
  padding: 0 6px;
  color: var(--sindoor-dark);
}

.manager-checks label {
  display: flex;
  align-items: center;
  gap: 8px;
}

.manager-checks input {
  width: auto;
  min-height: auto;
}

.upload-preview {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.upload-preview figure {
  margin: 0;
}

.upload-preview img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: var(--linen);
}

.upload-preview figcaption {
  display: grid;
  gap: 3px;
  margin-top: 6px;
  color: var(--muted);
  font-size: 0.72rem;
  word-break: break-word;
}

.upload-preview small,
.manager-help {
  color: var(--gold-dark);
  font-size: 0.72rem;
  font-weight: 900;
}

.category-counts,
.manager-product-list {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.category-count,
.manager-product {
  display: grid;
  grid-template-columns: 58px minmax(180px, 1fr) minmax(220px, 0.8fr) auto;
  align-items: center;
  gap: 12px;
  padding: 10px;
  background: #fffaf0;
  border: 1px solid var(--line);
  border-radius: var(--radius);
}

.category-count {
  grid-template-columns: 58px 1fr;
}

.category-count img,
.manager-product img {
  width: 58px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
  background: var(--linen);
}

.category-count span,
.manager-product-summary {
  display: grid;
  gap: 3px;
}

.category-count small,
.manager-product small {
  color: var(--muted);
  font-size: 0.78rem;
}

.manager-storage-note {
  color: var(--sindoor-dark);
  font-weight: 900;
}

.manager-product-flags {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 7px 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.manager-product-flags label {
  display: flex;
  align-items: center;
  gap: 7px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.manager-product-flags input {
  width: auto;
  min-height: auto;
}

.manager-product-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.manager-product button {
  min-height: 36px;
  padding: 0 10px;
  color: var(--white);
  background: var(--sindoor-dark);
  border: 1px solid var(--sindoor-dark);
  border-radius: 6px;
  font-weight: 800;
}

.manager-product .manager-move {
  color: var(--ink);
  background: var(--white);
  border-color: var(--line);
}

.manager-product .manager-edit {
  color: var(--royal-dark);
  background: var(--palace-gold);
  border-color: rgba(143, 95, 19, 0.35);
}

.manager-product .manager-delete-upload {
  background: #7a1916;
  border-color: #7a1916;
}

.manager-edit-form {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  padding: 14px;
  background: #fff4df;
  border: 1px solid rgba(194, 148, 61, 0.42);
  border-radius: var(--radius);
}

.manager-edit-form label {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 900;
  text-transform: uppercase;
}

.manager-edit-form input,
.manager-edit-form select,
.manager-edit-form textarea {
  min-height: 40px;
  width: 100%;
  padding: 9px 10px;
  color: var(--ink);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 6px;
  text-transform: none;
}

.manager-edit-form textarea {
  resize: vertical;
}

.manager-edit-wide {
  grid-column: span 2;
}

.manager-cover-choice {
  align-content: center;
  grid-template-columns: auto 1fr;
  text-transform: none;
}

.manager-cover-choice input {
  width: auto;
  min-height: auto;
}

.manager-edit-actions {
  display: flex;
  align-items: end;
  justify-content: flex-end;
  gap: 8px;
}

.manager-product button:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.manager-product button:hover,
.manager-product button:focus-visible {
  background: #551513;
}

.manager-product .manager-move:hover,
.manager-product .manager-move:focus-visible {
  background: #fff0dc;
}

@media (max-width: 1100px) {
  .category-rail {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

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

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

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

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

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

  .blog-hero {
    grid-template-columns: 1fr;
  }

  .blog-cover {
    max-width: 520px;
  }

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

  .authentic-showroom {
    grid-template-columns: 1fr;
  }

  .about-us {
    grid-template-columns: 1fr;
  }

  .authentic-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .authentic-gallery .authentic-feature {
    grid-row: auto;
    min-height: 280px;
  }

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

  .craft-band,
  .catalogue-band,
  .faq,
  .manager-grid,
  .visit {
    grid-template-columns: 1fr;
  }
}

@media (max-height: 760px) {
  .hero-notes {
    display: none;
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 64px;
    --hero-peek: 118px;
  }

  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
    gap: 10px;
  }

  section[id] {
    scroll-margin-top: 174px;
  }

  .menu-toggle {
    display: grid;
    order: 2;
  }

  .header-tools {
    display: none;
  }

  .primary-nav {
    position: absolute;
    left: 14px;
    right: 14px;
    top: calc(100% + 8px);
    display: none;
    justify-self: stretch;
    padding: 14px;
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
  }

  .primary-nav.is-open {
    display: grid;
    gap: 12px;
  }

  .header-contact {
    justify-self: end;
  }

  .hero {
    min-height: 510px;
    align-items: start;
    background-image:
      linear-gradient(180deg, rgba(23, 9, 12, 0.96) 0%, rgba(75, 17, 26, 0.84) 56%, rgba(23, 9, 12, 0.58) 100%),
      url("assets/optimized/1C59C740-14E1-4BC5-A2FA-39EB419A04F5.jpg");
    background-position: center;
  }

  .hero::before {
    width: 360px;
    left: -170px;
    bottom: -170px;
    opacity: 0.34;
  }

  .hero h1 {
    font-size: clamp(3.2rem, 16vw, 5rem);
  }

  .hero-logo {
    width: 70px;
  }

  .hero-copy {
    color: rgba(255, 250, 240, 0.82);
  }

  .hero-notes {
    gap: 12px;
  }

  .hero-notes div {
    min-width: calc(50% - 8px);
  }

  .craft-list,
  .heritage-points,
  .care {
    grid-template-columns: 1fr;
  }

  .authentic-gallery {
    grid-template-columns: 1fr;
  }

  .authentic-gallery figure,
  .authentic-gallery .authentic-feature {
    min-height: 330px;
  }

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

  .about-card {
    min-height: 200px;
  }

  .heritage-points div {
    min-height: 190px;
  }

  .care-image {
    min-height: 320px;
  }

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

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

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

  .home-hub-grid {
    grid-template-columns: 1fr;
  }

  .home-card {
    min-height: auto;
  }

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

  .site-footer {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .floating-whatsapp {
    right: 14px;
    bottom: 14px;
  }

  .floating-call {
    right: 14px;
    bottom: 84px;
  }

  .manager-header {
    align-items: flex-start;
    flex-direction: column;
  }

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

  .site-footer p {
    text-align: left;
  }

  .footer-copy {
    max-width: none;
  }

  .footer-copy address {
    width: 100%;
  }

  .footer-socials {
    width: 100%;
  }
}

@media (max-width: 620px) {
  :root {
    --top-strip-height: 66px;
  }

  body {
    padding-bottom: 84px;
  }

  .site-header {
    min-height: 74px;
    padding: 8px 16px;
  }

  .brand-logo {
    height: 46px;
  }

  .brand-wordmark {
    font-size: 1.06rem;
  }

  .top-strip {
    gap: 7px 18px;
    font-size: 0.68rem;
    line-height: 1.25;
  }

  .top-strip span {
    white-space: normal;
  }

  .top-strip span + span::before {
    display: none;
  }

  .hero-notes {
    display: none;
  }

  .quick-trust {
    grid-template-columns: 1fr;
  }

  .quick-trust div {
    min-height: 116px;
  }

  .blog-hero,
  .blog-article {
    padding-left: 16px;
    padding-right: 16px;
  }

  .blog-hero h1 {
    font-size: clamp(2.1rem, 11vw, 3.1rem);
  }

  .blog-cover {
    max-width: none;
  }

  .home-featured,
  .order-flow,
  .home-hub,
  .collection,
  .catalogue-band,
  .showcase,
  .seo-links {
    padding-top: 42px;
    padding-bottom: 46px;
  }

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

  .heritage-copy h1,
  .heritage-copy h2 {
    font-size: clamp(2rem, 13vw, 3.5rem);
  }

  .heritage-points div {
    min-height: auto;
  }

  .heritage-points h3 {
    margin-top: 24px;
  }

  .authentic-showroom {
    padding-top: 52px;
    padding-bottom: 56px;
  }

  .authentic-copy h2 {
    font-size: clamp(2rem, 13vw, 3.5rem);
  }

  .about-copy h2 {
    font-size: clamp(2rem, 13vw, 3.5rem);
  }

  .about-card {
    min-height: auto;
  }

  .about-card h3 {
    margin-top: 24px;
  }

  .about-warranty div {
    align-items: flex-start;
    flex-direction: column;
    gap: 3px;
  }

  .authentic-gallery figure,
  .authentic-gallery .authentic-feature {
    min-height: 280px;
  }

  .authentic-gallery figcaption {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .category-rail {
    display: flex;
    gap: 10px;
    margin: 20px -18px 22px;
    padding: 4px 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scrollbar-width: thin;
  }

  .category-tile {
    min-width: 88px;
    min-height: 104px;
    gap: 8px;
    scroll-snap-align: start;
  }

  .category-tile img {
    width: 72px;
    border-width: 3px;
    box-shadow:
      0 0 0 4px rgba(255, 250, 240, 0.92),
      0 10px 24px rgba(83, 33, 20, 0.14);
  }

  .category-tile span {
    min-height: auto;
    padding: 0;
    font-size: 0.7rem;
    line-height: 1.16;
  }

  .collection-nav {
    align-items: stretch;
    flex-wrap: wrap;
    justify-content: flex-start;
    gap: 8px;
    overflow: visible;
    padding: 10px 14px;
  }

  .collection-nav-label {
    width: 100%;
    min-height: auto;
    padding: 0;
  }

  .collection-dropdown {
    flex: 1 1 100%;
  }

  .collection-dropdown summary {
    width: 100%;
    justify-content: space-between;
  }

  .collection-dropdown-menu {
    width: 100%;
    grid-template-columns: 1fr;
    position: static;
    margin-top: 8px;
    transform: none;
  }

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

  .traditional-grid {
    display: flex;
    grid-template-columns: none;
    gap: 12px;
    margin: 24px -18px 0;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .traditional-card {
    min-width: 232px;
    scroll-snap-align: start;
  }

  .product-meta {
    align-items: stretch;
    flex-direction: column;
  }

  .product-link {
    width: 100%;
  }

  .mini-product {
    min-width: 258px;
    grid-template-columns: 88px 1fr;
    min-height: 108px;
    gap: 12px;
  }

  .mini-product-list {
    display: flex;
    gap: 12px;
    margin: 0 -18px;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .mini-product {
    scroll-snap-align: start;
  }

  .mini-product img {
    width: 88px;
  }

  .featured-product-grid {
    display: flex;
    gap: 12px;
    margin: 24px -18px 0;
    padding: 0 18px 12px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
  }

  .featured-card {
    min-width: 236px;
    scroll-snap-align: start;
  }

  .order-steps article {
    min-height: auto;
  }

  .order-steps h3 {
    margin-top: 24px;
  }

  .image-lightbox {
    width: calc(100vw - 24px);
  }

  .image-lightbox-frame {
    grid-template-columns: 1fr;
  }

  .lightbox-image {
    height: 58vh;
  }

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

  .service-strip div {
    min-height: 132px;
  }

  .faq-list summary {
    align-items: flex-start;
    min-height: auto;
  }

  .floating-whatsapp,
  .floating-call {
    width: auto;
    min-width: 0;
    min-height: 56px;
    height: 56px;
    bottom: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 14px;
    border-radius: 999px;
    box-shadow:
      inset 0 1px 0 rgba(255, 250, 240, 0.16),
      0 14px 38px rgba(23, 9, 12, 0.3);
  }

  .floating-whatsapp {
    left: 12px;
    right: calc(50% + 5px);
  }

  .floating-call {
    left: calc(50% + 5px);
    right: 12px;
  }

  .floating-whatsapp::before,
  .floating-call::before {
    width: 30px;
    height: 30px;
    box-shadow: 0 0 0 3px rgba(240, 211, 138, 0.14);
  }

  .floating-whatsapp::before {
    background-size: 21px 21px;
  }

  .floating-whatsapp::after {
    content: "WhatsApp";
    width: auto;
    aspect-ratio: auto;
    position: static;
    opacity: 1;
    color: #fffaf0;
    background: none;
    border-radius: 0;
    font-size: 0.78rem;
    font-weight: 900;
  }

  .floating-call::before {
    font-size: 0.54rem;
  }

  .whatsapp-card {
    padding: 18px;
  }

  .whatsapp-card .whatsapp-button {
    width: 54px;
  }

  .manager-checks {
    grid-template-columns: 1fr;
  }

  .manager-product {
    grid-template-columns: 54px 1fr;
    align-items: start;
  }

  .manager-product-flags,
  .manager-product-actions {
    grid-column: 1 / -1;
  }

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

  .manager-product-actions {
    justify-content: stretch;
  }

  .manager-edit-form {
    grid-template-columns: 1fr;
  }

  .manager-edit-wide {
    grid-column: 1;
  }

  .manager-edit-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .manager-product button {
    grid-column: 1 / -1;
    flex: 1 1 130px;
  }

  .contact-form {
    padding: 16px;
  }
}
