:root {
  --ink: #18130f;
  --ink-soft: #312821;
  --ivory: #fff7e6;
  --paper: #f7edd7;
  --muted: #76685d;
  --maroon: #741a18;
  --red: #b3231f;
  --gold: #d4a043;
  --sage: #55745e;
  --teal: #1e6468;
  --white: #ffffff;
  --shadow: 0 22px 70px rgba(24, 19, 15, 0.18);
  --radius: 8px;
  --header-height: 78px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Nirmala UI", "Noto Sans Gujarati", "Shruti", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  color: var(--ink);
  background: var(--ivory);
  line-height: 1.6;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: 78px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 18px;
  padding: 0 clamp(18px, 4vw, 64px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 247, 230, 0.94);
  box-shadow: 0 12px 40px rgba(24, 19, 15, 0.12);
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  min-width: 0;
}

.brand-mark {
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 247, 230, 0.12);
  border: 2px solid rgba(244, 210, 124, 0.74);
  flex: 0 0 auto;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-family: "Segoe UI", "Nirmala UI", sans-serif;
  font-size: 0.98rem;
  letter-spacing: 0;
}

.brand small {
  font-size: 0.78rem;
  opacity: 0.78;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-left: auto;
  font-family: "Segoe UI", "Nirmala UI", sans-serif;
  font-weight: 700;
  font-size: 0.92rem;
}

.site-nav a {
  position: relative;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -8px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
}

.language-switcher {
  min-height: 40px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 6px 8px 6px 10px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.12);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: inherit;
}

.site-header.is-scrolled .language-switcher {
  background: rgba(116, 26, 24, 0.08);
  border-color: rgba(116, 26, 24, 0.14);
}

.language-switcher svg {
  width: 17px;
  height: 17px;
  flex: 0 0 auto;
}

.language-switcher select {
  min-width: 92px;
  border: 0;
  outline: 0;
  color: inherit;
  background: transparent;
  font: inherit;
  font-weight: 800;
  cursor: pointer;
}

.language-switcher option {
  color: var(--ink);
  background: var(--ivory);
}

.header-cart {
  position: relative;
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.12);
  cursor: pointer;
}

.site-header.is-scrolled .header-cart {
  background: rgba(116, 26, 24, 0.08);
  border-color: rgba(116, 26, 24, 0.14);
}

.header-cart svg {
  width: 19px;
  height: 19px;
}

.header-cart-count {
  position: absolute;
  top: -5px;
  right: -5px;
  min-width: 20px;
  height: 20px;
  display: grid;
  place-items: center;
  padding: 0 5px;
  border-radius: 10px;
  color: var(--white);
  background: var(--red);
  border: 2px solid var(--ivory);
  font: 800 0.68rem/1 "Segoe UI", sans-serif;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.16);
  cursor: pointer;
}

.nav-toggle svg,
.btn svg {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
}

.hero {
  position: relative;
  min-height: clamp(540px, 66svh, 680px);
  display: grid;
  align-items: center;
  overflow: hidden;
  color: var(--white);
  padding: 88px clamp(18px, 7vw, 96px) 30px;
}

.hero-bg,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-bg {
  background-image: url("assets/hero-lalkitab.png");
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 12, 11, 0.95) 0%, rgba(27, 19, 14, 0.74) 38%, rgba(89, 22, 19, 0.12) 74%),
    linear-gradient(180deg, rgba(0, 0, 0, 0.35), rgba(0, 0, 0, 0.18) 55%, rgba(24, 19, 15, 0.55));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 8px;
  font-family: "Segoe UI", "Nirmala UI", sans-serif;
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
  color: var(--gold);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1,
h2,
h3 {
  margin: 0;
  line-height: 1.12;
}

h1 {
  font-family: "Segoe UI", "Nirmala UI", "Noto Sans Gujarati", sans-serif;
  font-size: clamp(3rem, 8vw, 6.9rem);
  max-width: 800px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.hero-person {
  width: clamp(300px, 34vw, 430px);
  aspect-ratio: 344 / 214;
  display: grid;
  place-items: center;
  margin: 10px 0 18px;
  border-radius: 16px;
  padding: 6px;
  background:
    linear-gradient(145deg, rgba(244, 210, 124, 0.9), rgba(179, 35, 31, 0.78)),
    rgba(255, 255, 255, 0.08);
  box-shadow: 0 28px 72px rgba(0, 0, 0, 0.38);
}

.hero-person img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 12px;
  border: 3px solid rgba(255, 247, 230, 0.86);
}

.hero-lead {
  width: min(660px, 100%);
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(1.04rem, 2vw, 1.32rem);
}

.hero-tagline {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  margin: 0;
  padding: 8px 14px;
  border-radius: var(--radius);
  background: rgba(116, 26, 24, 0.72);
  border: 1px solid rgba(244, 210, 124, 0.58);
  color: #ffe3a0;
  font-family: "Segoe UI", "Nirmala UI", "Noto Sans Gujarati", sans-serif;
  font-size: clamp(1.12rem, 2vw, 1.5rem);
  font-weight: 900;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: var(--radius);
  padding: 12px 18px;
  font-family: "Segoe UI", "Nirmala UI", "Noto Sans Gujarati", sans-serif;
  font-weight: 800;
  font-size: 0.94rem;
  cursor: pointer;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.btn:focus-visible {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--gold);
  color: #23170e;
  box-shadow: 0 16px 38px rgba(212, 160, 67, 0.22);
}

.btn-ghost {
  color: var(--white);
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.34);
}

.btn-outline {
  color: var(--ink);
  background: transparent;
  border-color: rgba(24, 19, 15, 0.18);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.hero-notes span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 38px;
  border-radius: 999px;
  padding: 8px 13px;
  color: rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.15);
  font-size: 0.88rem;
}

.hero-notes svg {
  width: 16px;
  height: 16px;
}

.signal-band {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  background: var(--paper);
  border-bottom: 1px solid rgba(24, 19, 15, 0.1);
}

.signal-item {
  min-height: 78px;
  padding: 14px clamp(18px, 4vw, 52px);
  border-right: 1px solid rgba(24, 19, 15, 0.1);
}

.signal-item:last-child {
  border-right: 0;
}

.signal-item strong {
  display: block;
  font-size: 1.2rem;
  color: var(--maroon);
}

.signal-item span {
  display: block;
  margin-top: 5px;
  color: var(--muted);
  font-family: "Segoe UI", "Nirmala UI", sans-serif;
  font-weight: 700;
  font-size: 0.9rem;
}

.section,
.video-band,
.contact-section,
.quote-section {
  padding: clamp(18px, 2.4vw, 30px) clamp(18px, 6vw, 78px);
}

#services,
#products,
#videos,
#processes,
#testimonials,
#contacts {
  scroll-margin-top: calc(var(--header-height) + 8px);
}

.section-heading {
  width: min(860px, 100%);
  margin-bottom: 10px;
}

.section-heading .eyebrow,
.contact-copy .eyebrow {
  position: relative;
  top: -9px;
  margin-bottom: 0;
}

.section-heading h2,
.contact-copy h2,
.quote-section h2 {
  font-size: clamp(1.5rem, 2.6vw, 2.55rem);
}

.section-heading.light,
.section-heading.light .eyebrow {
  color: var(--white);
}

.section-heading.light h2 {
  color: var(--white);
}

.intro-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 230, 0.96), rgba(247, 237, 215, 0.82));
}

.intro-section .section-heading {
  width: 100%;
}

.intro-section .section-heading h2 {
  max-width: none;
  white-space: nowrap;
  font-size: clamp(1.55rem, 2.55vw, 2.7rem);
}

.intro-grid,
.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.section-heading-with-note {
  width: 100%;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 380px);
  gap: clamp(10px, 2.2vw, 22px);
  align-items: center;
  margin-top: -8px;
}

.section-heading-with-note > *,
.intro-grid > *,
.service-grid > *,
.timeline > *,
.trust-strip > *,
.contact-mini-grid > *,
.contact-section > *,
.quote-section > * {
  min-width: 0;
}

.section-note {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(24, 19, 15, 0.1);
  color: var(--muted);
  box-shadow: 0 16px 44px rgba(24, 19, 15, 0.06);
}

.section-heading-with-note .section-note {
  align-self: center;
}

.section-note svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
  flex: 0 0 auto;
}

.section-note p {
  margin: 0;
  min-width: 0;
  font-weight: 700;
}

.section-note .note-line {
  display: block;
}

.services-section .section-heading .eyebrow {
  top: -14px;
}

@media (min-width: 1161px) {
  .services-section .section-heading-with-note {
    grid-template-columns: minmax(0, 1fr) minmax(320px, 420px);
  }

  .services-section .section-note {
    align-items: center;
    justify-self: end;
    width: min(420px, 100%);
  }

  .services-section .section-note p {
    font-size: 0.95rem;
    line-height: 1.45;
  }

  .services-section .section-note .note-line {
    white-space: normal;
  }
}

.section-heading.light .section-note {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
}

.section-heading.light .section-note svg {
  color: var(--gold);
}

.intro-card,
.service-card,
.timeline-step,
.contact-form {
  max-width: 100%;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.68);
  border: 1px solid rgba(24, 19, 15, 0.1);
  box-shadow: 0 16px 52px rgba(24, 19, 15, 0.06);
}

.intro-card {
  padding: 16px;
}

.intro-card svg {
  width: 30px;
  height: 30px;
  color: var(--teal);
  margin-bottom: 12px;
}

.intro-card h3,
.service-card h3,
.timeline-step h3 {
  font-size: 1.12rem;
}

.intro-card p,
.service-card p,
.timeline-step p,
.contact-copy p {
  color: var(--muted);
  margin: 8px 0 0;
}

.services-section {
  background: var(--ivory);
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-top: 10px;
}

.trust-strip span {
  min-height: 54px;
  display: grid;
  align-content: center;
  gap: 3px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(116, 26, 24, 0.08);
  border: 1px solid rgba(116, 26, 24, 0.1);
}

.trust-strip strong {
  color: var(--maroon);
  font-size: 1rem;
}

.trust-strip small {
  color: var(--muted);
  font-weight: 700;
}

.service-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.service-card {
  min-height: 174px;
  padding: 16px;
  background: var(--paper);
  position: relative;
  overflow: hidden;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 5px;
  background: linear-gradient(90deg, var(--maroon), var(--gold), var(--sage));
}

.service-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--white);
  color: var(--maroon);
  font-family: "Segoe UI", "Nirmala UI", sans-serif;
  font-weight: 800;
}

.video-band {
  background: #1a1512;
  color: var(--white);
}

.video-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(180px, 1fr));
  gap: 10px;
  margin-top: clamp(10px, 1.4vw, 18px);
}

.video-card {
  position: relative;
  min-height: 260px;
  display: flex;
  align-items: end;
  overflow: hidden;
  border-radius: var(--radius);
  background: #2a211c;
  isolation: isolate;
}

.video-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
  z-index: -2;
}

.video-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.86));
  z-index: -1;
}

.video-card:hover img,
.video-card:focus-visible img {
  transform: scale(1.06);
}

.video-card h3 {
  padding: 0 18px 20px;
  font-size: 1.05rem;
  line-height: 1.28;
}

.play-pill {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  border-radius: 999px;
  padding: 8px 11px;
  background: rgba(255, 247, 230, 0.92);
  color: var(--maroon);
  font-family: "Segoe UI", "Nirmala UI", sans-serif;
  font-weight: 800;
  font-size: 0.76rem;
}

.play-pill svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
}

.process-section {
  background: var(--paper);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
}

.timeline-step {
  padding: 16px;
}

.timeline-step span {
  display: inline-grid;
  place-items: center;
  width: 34px;
  height: 34px;
  margin-bottom: 12px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  font-family: "Segoe UI", "Nirmala UI", sans-serif;
  font-weight: 800;
}

.testimonials-section {
  background:
    linear-gradient(180deg, rgba(255, 247, 230, 0.98), rgba(247, 237, 215, 0.92));
  padding-bottom: clamp(4px, 0.8vw, 10px);
}

.testimonial-shell {
  display: grid;
  grid-template-columns: 44px minmax(0, 1fr) 44px;
  align-items: center;
  gap: 10px;
  min-width: 0;
}

.testimonial-arrow {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(116, 26, 24, 0.18);
  border-radius: 50%;
  color: var(--maroon);
  background: rgba(255, 255, 255, 0.72);
  cursor: pointer;
  box-shadow: 0 14px 34px rgba(24, 19, 15, 0.08);
  transition: transform 180ms ease, background 180ms ease;
}

.testimonial-arrow:hover,
.testimonial-arrow:focus-visible {
  transform: translateY(-2px);
  background: var(--white);
}

.testimonial-arrow svg {
  width: 20px;
  height: 20px;
}

.testimonial-track {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: calc((100% - 30px) / 4);
  gap: 10px;
  min-width: 0;
  overflow: hidden;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
}

.testimonial-card {
  min-width: 0;
  max-width: 100%;
  height: 230px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  scroll-snap-align: start;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(24, 19, 15, 0.1);
  box-shadow: 0 16px 52px rgba(24, 19, 15, 0.07);
  position: relative;
  overflow: hidden;
}

.testimonial-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--gold), var(--maroon), var(--teal));
}

.testimonial-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  min-width: 0;
}

.testimonial-badge {
  border-radius: 999px;
  padding: 6px 10px;
  color: var(--maroon);
  background: rgba(116, 26, 24, 0.08);
  font-weight: 800;
  font-size: 0.78rem;
}

.testimonial-stars {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  gap: 7px;
  min-height: 30px;
  padding: 5px 10px;
  border-radius: 999px;
  color: #2c2118;
  background: rgba(212, 160, 67, 0.16);
  border: 1px solid rgba(212, 160, 67, 0.34);
  font-family: "Segoe UI", "Nirmala UI", sans-serif;
  font-size: 0.88rem;
  font-weight: 900;
}

.testimonial-stars svg {
  width: 14px;
  height: 14px;
  fill: currentColor;
  color: var(--gold);
}

.testimonial-card p {
  margin: 16px 0;
  color: var(--ink-soft);
  font-weight: 700;
  min-width: 0;
}

.review-card {
  display: grid;
  grid-template-rows: auto minmax(0, 1fr);
  gap: 10px;
  justify-content: stretch;
}

.review-card .testimonial-top {
  justify-content: flex-start;
}

.review-text,
.review-audio {
  min-height: 0;
  height: 100%;
  border-radius: var(--radius);
  background: transparent;
}

.testimonial-card .review-text {
  --review-font-size: clamp(0.98rem, 1vw, 1.1rem);
  --review-line-height: 1.5;
  margin: 0;
  display: flex;
  align-items: center;
  padding: 0 2px;
  color: var(--ink-soft);
  font-size: var(--review-font-size);
  font-weight: 900;
  line-height: var(--review-line-height);
  text-wrap: balance;
}

.testimonial-card .review-text.is-medium {
  --review-font-size: clamp(1.04rem, 1.12vw, 1.2rem);
  --review-line-height: 1.48;
}

.testimonial-card .review-text.is-short {
  --review-font-size: clamp(1.16rem, 1.3vw, 1.36rem);
  --review-line-height: 1.46;
}

.review-image,
.review-video {
  width: 100%;
  height: 100%;
  min-height: 0;
  display: block;
  border-radius: var(--radius);
  border: 1px solid rgba(24, 19, 15, 0.1);
  background: #1b1210;
  object-fit: cover;
  overflow: hidden;
}

.review-audio {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 14px;
}

.review-audio p {
  margin: 0;
  color: var(--ink-soft);
  font-size: clamp(0.98rem, 1vw, 1.08rem);
  font-weight: 900;
  line-height: 1.44;
}

.review-audio audio {
  width: 100%;
  min-width: 0;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 6px;
}

.testimonial-dots button {
  width: 9px;
  height: 9px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: rgba(116, 26, 24, 0.28);
  cursor: pointer;
}

.testimonial-dots button.is-active {
  width: 26px;
  border-radius: 999px;
  background: var(--maroon);
}

.testimonial-submit-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 12px;
  padding: 12px 14px;
  border: 1px solid rgba(24, 19, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.7);
}

.testimonial-submit-cta > div {
  display: grid;
  gap: 3px;
}

.testimonial-submit-cta strong {
  color: var(--ink);
  font-size: 1.04rem;
}

.testimonial-submit-cta > div > span {
  color: var(--muted);
  font-weight: 700;
}

.testimonial-submit-cta .form-status {
  min-height: 0;
  margin-top: 4px;
}

body.testimonial-modal-open {
  overflow: hidden;
}

.testimonial-modal {
  position: fixed;
  inset: 0;
  z-index: 120;
  display: none;
  place-items: center;
  padding: 20px;
}

.testimonial-modal.is-open {
  display: grid;
}

.testimonial-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 9, 0.72);
}

.testimonial-modal-dialog {
  position: relative;
  z-index: 1;
  width: min(780px, 100%);
  max-height: calc(100vh - 40px);
  overflow-y: auto;
  padding: 18px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: var(--radius);
  background: #fffaf0;
  box-shadow: 0 28px 90px rgba(18, 12, 9, 0.34);
}

.testimonial-modal-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 14px;
  padding-bottom: 13px;
  border-bottom: 1px solid rgba(24, 19, 15, 0.12);
}

.testimonial-modal-header > div {
  display: grid;
  gap: 5px;
}

.testimonial-modal-header .eyebrow,
.testimonial-modal-header h3,
.testimonial-modal-header p {
  margin: 0;
}

.testimonial-modal-header h3 {
  color: var(--ink);
  font-size: clamp(1.3rem, 1.8vw, 1.65rem);
  line-height: 1.28;
}

.testimonial-modal-header p:last-child {
  color: var(--muted);
  font-weight: 700;
  line-height: 1.5;
}

.testimonial-modal-close {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  padding: 0;
  border: 1px solid rgba(24, 19, 15, 0.14);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.testimonial-modal-close:hover,
.testimonial-modal-close:focus-visible {
  color: var(--maroon);
  border-color: var(--maroon);
  outline: none;
}

.testimonial-modal-close svg {
  width: 19px;
  height: 19px;
}

.testimonial-submit-form {
  display: grid;
  gap: 11px;
  min-width: 0;
}

.testimonial-form-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 130px minmax(175px, 0.7fr);
  gap: 10px;
}

.testimonial-submit-form label {
  display: grid;
  align-content: start;
  gap: 7px;
  min-width: 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.testimonial-submit-form input,
.testimonial-submit-form select,
.testimonial-submit-form textarea {
  width: 100%;
  min-width: 0;
  border: 1px solid rgba(24, 19, 15, 0.18);
  border-radius: var(--radius);
  padding: 11px 12px;
  color: var(--ink);
  background: var(--ivory);
  font: inherit;
}

.testimonial-submit-form input:focus,
.testimonial-submit-form select:focus,
.testimonial-submit-form textarea:focus {
  outline: 3px solid rgba(212, 160, 67, 0.28);
  border-color: var(--gold);
}

.testimonial-submit-form textarea {
  min-height: 92px;
  resize: vertical;
}

.testimonial-description-field,
.testimonial-file-field {
  grid-column: 1 / -1;
}

.testimonial-file-field small {
  color: var(--muted);
  font-size: 0.8rem;
  font-weight: 700;
}

.testimonial-file-field.is-hidden {
  display: none;
}

.testimonial-consent {
  display: flex !important;
  align-items: flex-start;
  gap: 9px !important;
  line-height: 1.45;
}

.testimonial-consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
  accent-color: var(--maroon);
  flex: 0 0 auto;
}

.testimonial-submit-button {
  width: fit-content;
  min-width: 190px;
}

.quote-section {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 390px);
  gap: clamp(14px, 3vw, 34px);
  align-items: center;
  background: var(--maroon);
  color: var(--white);
}

.quote-copy {
  width: min(960px, 100%);
}

.quote-mark {
  margin: 0;
  color: var(--gold);
  font-family: Georgia, serif;
  font-size: 4rem;
  line-height: 0.7;
}

.quote-section p:last-child {
  width: min(680px, 100%);
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 1.08rem;
}

.quote-points {
  display: grid;
  gap: 10px;
}

.quote-points span {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 48px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 247, 230, 0.1);
  border: 1px solid rgba(255, 247, 230, 0.18);
  color: rgba(255, 255, 255, 0.86);
  font-weight: 800;
}

.quote-points svg {
  width: 18px;
  height: 18px;
  color: var(--gold);
  flex: 0 0 auto;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.72fr);
  gap: clamp(14px, 3vw, 34px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(85, 116, 94, 0.14), rgba(255, 247, 230, 0.92) 46%, rgba(212, 160, 67, 0.14));
}

.contact-copy {
  width: min(640px, 100%);
  margin-top: -8px;
}

.contact-mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.contact-mini-grid span {
  display: flex;
  align-items: center;
  gap: 8px;
  min-height: 44px;
  padding: 10px 12px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.58);
  border: 1px solid rgba(24, 19, 15, 0.1);
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-mini-grid svg {
  width: 16px;
  height: 16px;
  color: var(--teal);
  flex: 0 0 auto;
}

.contact-tagline-card {
  margin-top: 14px;
  padding: 18px;
  border-radius: var(--radius);
  background:
    linear-gradient(135deg, rgba(116, 26, 24, 0.94), rgba(137, 32, 28, 0.86)),
    var(--maroon);
  color: var(--white);
  box-shadow: 0 22px 54px rgba(116, 26, 24, 0.18);
}

.contact-tagline-card span {
  display: block;
  color: #f4d27c;
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-tagline-card strong {
  display: block;
  margin-top: 4px;
  font-family: "Segoe UI", "Nirmala UI", "Noto Sans Gujarati", sans-serif;
  font-size: clamp(1.35rem, 2.3vw, 2.2rem);
  line-height: 1.14;
}

.contact-tagline-card p {
  max-width: 560px;
  margin: 10px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-weight: 700;
}

.contact-info-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.contact-info-grid span {
  display: grid;
  gap: 7px;
  min-height: 132px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.66);
  border: 1px solid rgba(24, 19, 15, 0.1);
  box-shadow: 0 16px 40px rgba(24, 19, 15, 0.06);
}

.contact-info-grid svg {
  width: 22px;
  height: 22px;
  color: var(--teal);
}

.contact-info-grid strong {
  color: var(--maroon);
  font-weight: 900;
}

.contact-info-grid small {
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.45;
}

.contact-form {
  display: grid;
  gap: 12px;
  padding: 18px;
  background: rgba(255, 255, 255, 0.82);
}

.form-title {
  display: grid;
  gap: 6px;
  padding: 14px;
  border-radius: var(--radius);
  background: rgba(116, 26, 24, 0.08);
  border: 1px solid rgba(116, 26, 24, 0.12);
}

.form-title span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--maroon);
  font-weight: 900;
}

.form-title svg {
  width: 18px;
  height: 18px;
  color: var(--teal);
  flex: 0 0 auto;
}

.form-title p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 700;
}

.contact-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 0;
  color: var(--ink-soft);
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(24, 19, 15, 0.18);
  border-radius: var(--radius);
  padding: 13px 14px;
  color: var(--ink);
  background: var(--ivory);
  font: inherit;
  resize: vertical;
}

.contact-form textarea {
  min-height: 142px;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 3px solid rgba(212, 160, 67, 0.28);
  border-color: var(--gold);
}

.form-submit {
  width: 100%;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: var(--sage);
  font-weight: 800;
}

.form-honeypot {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  white-space: nowrap !important;
}

.field-validation {
  display: block;
  margin-top: 5px;
  color: #9f1d1b;
  font-size: 0.82rem;
  font-weight: 800;
}

.form-status.is-success {
  color: #0e6258;
  font-weight: 800;
}

.form-status:empty {
  display: none;
}

.call-facility {
  position: static;
  inset: auto;
  z-index: auto;
  width: min(560px, 100%);
  max-width: 100%;
  min-width: 0;
  margin-top: 14px;
  padding: 0;
  border-radius: var(--radius);
  overflow: hidden;
}

.call-facility-action {
  min-height: 74px;
  display: grid;
  grid-template-columns: 40px minmax(0, 1fr) 9px;
  align-items: center;
  gap: 10px;
  padding: 12px 16px;
  border: 1px solid rgba(24, 19, 15, 0.12);
  border-radius: var(--radius);
  transition: background 180ms ease;
}

.call-facility span {
  margin-top: 0;
}

.call-facility.is-open .call-facility-action {
  color: var(--white);
  background: var(--maroon);
  border-color: var(--maroon);
  cursor: pointer;
}

.call-facility.is-open .call-facility-action:hover,
.call-facility.is-open .call-facility-action:focus-visible {
  background: #8b2421;
}

.call-facility.is-closed .call-facility-action {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
  cursor: not-allowed;
}

.call-facility-action:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: -4px;
}

.call-facility-icon {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
}

.call-facility.is-open .call-facility-icon {
  color: #281a10;
  background: var(--gold);
}

.call-facility.is-closed .call-facility-icon {
  color: var(--muted);
  background: rgba(24, 19, 15, 0.08);
}

.call-facility-icon svg {
  width: 22px;
  height: 22px;
}

.call-facility-copy {
  min-width: 0;
  display: grid;
  gap: 2px;
  color: inherit;
}

.call-facility-copy strong,
.call-facility-copy small {
  display: block;
  letter-spacing: 0;
}

.call-facility-copy strong {
  color: inherit;
  font-size: 0.98rem;
  font-weight: 900;
}

.call-facility-copy small {
  color: inherit;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.4;
  opacity: 0.8;
}

.call-facility-indicator {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: #8b8178;
}

.call-facility.is-open .call-facility-indicator {
  background: #6fd49b;
  box-shadow: 0 0 0 5px rgba(111, 212, 155, 0.14);
}

.products-section {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.56), rgba(247, 237, 215, 0.82)),
    var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
}

.product-card {
  min-width: 0;
  display: grid;
  grid-template-rows: auto 1fr;
  overflow: hidden;
  border: 1px solid rgba(24, 19, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: 0 16px 40px rgba(24, 19, 15, 0.07);
}

.product-media {
  position: relative;
  aspect-ratio: 4 / 3;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--teal);
  background:
    linear-gradient(135deg, rgba(212, 160, 67, 0.15), rgba(30, 100, 104, 0.1)),
    #f9f3e7;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.product-media > svg {
  width: 48px;
  height: 48px;
  opacity: 0.7;
}

.product-offer {
  position: absolute;
  top: 10px;
  left: 10px;
  padding: 5px 9px;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--maroon);
  font-size: 0.72rem;
  font-weight: 900;
}

.product-copy {
  min-width: 0;
  display: flex;
  flex-direction: column;
  padding: 15px;
}

.product-sku {
  color: var(--muted);
  font: 800 0.72rem/1.3 "Segoe UI", sans-serif;
}

.product-copy h3 {
  margin: 7px 0 5px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.product-copy p {
  display: -webkit-box;
  min-height: 3.9em;
  margin: 0;
  overflow: hidden;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.48;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}

.product-price-row {
  display: flex;
  align-items: baseline;
  gap: 9px;
  margin-top: 12px;
}

.product-price-row strong {
  color: var(--maroon);
  font-size: 1.25rem;
}

.product-price-row del {
  color: var(--muted);
  font-size: 0.86rem;
}

.product-actions {
  display: grid;
  gap: 9px;
  margin-top: auto;
  padding-top: 12px;
}

.product-stock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 0.78rem;
  font-weight: 850;
}

.product-stock::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: currentColor;
}

.product-stock.is-available {
  color: #236b49;
}

.product-stock.is-unavailable {
  color: #9f302c;
}

.product-add {
  width: 100%;
  min-height: 42px;
}

.product-add:disabled {
  cursor: not-allowed;
  opacity: 0.48;
}

.products-empty {
  min-height: 160px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 10px;
  padding: 24px;
  border: 1px dashed rgba(24, 19, 15, 0.2);
  border-radius: var(--radius);
  color: var(--muted);
  background: rgba(255, 255, 255, 0.56);
  text-align: center;
}

.products-empty svg {
  width: 34px;
  height: 34px;
  color: var(--teal);
}

body.shop-modal-open {
  overflow: hidden;
}

.shop-modal {
  position: fixed;
  inset: 0;
  z-index: 130;
  display: grid;
  justify-items: end;
  visibility: hidden;
  opacity: 0;
  transition: opacity 180ms ease, visibility 180ms ease;
}

.shop-modal.is-open {
  visibility: visible;
  opacity: 1;
}

.shop-modal-backdrop {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  background: rgba(24, 19, 15, 0.64);
  cursor: default;
}

.shop-panel {
  position: relative;
  width: min(560px, 100%);
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 22px;
  overflow-y: auto;
  color: var(--ink);
  background: var(--ivory);
  box-shadow: -20px 0 70px rgba(24, 19, 15, 0.26);
  transform: translateX(24px);
  transition: transform 180ms ease;
}

.shop-modal.is-open .shop-panel {
  transform: translateX(0);
}

.shop-panel-header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(24, 19, 15, 0.12);
}

.shop-panel-header .eyebrow {
  position: static;
  margin: 0;
  color: #a56c11;
}

.shop-panel-header h2 {
  margin: 3px 0 0;
  font-size: 1.7rem;
}

.shop-close {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid rgba(24, 19, 15, 0.14);
  border-radius: 50%;
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.shop-close svg {
  width: 20px;
  height: 20px;
}

.shop-cart-view,
.shop-checkout-view {
  min-height: 0;
  flex: 1;
}

.cart-items {
  display: grid;
  gap: 10px;
  padding: 16px 0;
}

.cart-item {
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  padding: 10px;
  border: 1px solid rgba(24, 19, 15, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.74);
}

.cart-item-media {
  width: 72px;
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  overflow: hidden;
  border-radius: 6px;
  color: var(--teal);
  background: var(--paper);
}

.cart-item-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cart-item-media svg {
  width: 26px;
  height: 26px;
}

.cart-item-copy {
  min-width: 0;
}

.cart-item-copy strong,
.cart-item-copy small {
  display: block;
}

.cart-item-copy strong {
  line-height: 1.35;
}

.cart-item-copy small {
  margin-top: 4px;
  color: var(--maroon);
  font-weight: 850;
}

.cart-item-controls {
  display: grid;
  grid-template-columns: 32px 34px 32px;
  align-items: center;
}

.cart-item-controls button {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(24, 19, 15, 0.14);
  color: var(--ink);
  background: var(--white);
  cursor: pointer;
}

.cart-item-controls button:first-child {
  border-radius: 6px 0 0 6px;
}

.cart-item-controls button:last-child {
  border-radius: 0 6px 6px 0;
}

.cart-item-controls button:disabled {
  cursor: not-allowed;
  opacity: 0.4;
}

.cart-item-controls span {
  height: 32px;
  display: grid;
  place-items: center;
  border-block: 1px solid rgba(24, 19, 15, 0.14);
  background: var(--paper);
  font-weight: 900;
}

.cart-item-controls svg {
  width: 15px;
  height: 15px;
}

.cart-remove {
  grid-column: 1 / -1;
  justify-self: end;
  margin-top: 6px;
  border: 0;
  color: #9f302c;
  background: transparent;
  font-size: 0.76rem;
  font-weight: 850;
  cursor: pointer;
}

.cart-empty {
  min-height: 300px;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 8px;
  color: var(--muted);
  text-align: center;
}

.cart-empty svg {
  width: 40px;
  height: 40px;
  color: var(--teal);
}

.cart-empty span {
  font-size: 0.9rem;
}

.cart-footer {
  display: grid;
  gap: 12px;
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid rgba(24, 19, 15, 0.12);
}

.cart-footer > div {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.cart-footer strong {
  color: var(--maroon);
  font-size: 1.4rem;
}

.shop-back {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin: 14px 0 10px;
  padding: 0;
  border: 0;
  color: var(--teal);
  background: transparent;
  font: inherit;
  font-weight: 850;
  cursor: pointer;
}

.shop-back svg {
  width: 17px;
  height: 17px;
}

.checkout-form {
  display: grid;
  gap: 14px;
}

.checkout-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.checkout-grid label {
  min-width: 0;
  display: grid;
  gap: 5px;
  color: var(--ink-soft);
  font-size: 0.86rem;
  font-weight: 850;
}

.checkout-grid input,
.checkout-grid textarea {
  width: 100%;
  min-width: 0;
  min-height: 44px;
  padding: 10px 12px;
  border: 1px solid rgba(24, 19, 15, 0.18);
  border-radius: 6px;
  color: var(--ink);
  background: rgba(255, 255, 255, 0.82);
  font: inherit;
  font-weight: 650;
}

.checkout-grid textarea {
  resize: vertical;
}

.checkout-grid input:focus,
.checkout-grid textarea:focus {
  outline: 3px solid rgba(30, 100, 104, 0.16);
  border-color: var(--teal);
}

.checkout-wide {
  grid-column: 1 / -1;
}

.checkout-summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 14px;
  border-radius: var(--radius);
  color: var(--ink-soft);
  background: rgba(30, 100, 104, 0.08);
}

.checkout-summary span {
  max-width: 340px;
  font-size: 0.84rem;
  font-weight: 750;
}

.checkout-summary strong {
  flex: 0 0 auto;
  color: var(--maroon);
  font-size: 1.2rem;
}

.checkout-status {
  margin: 0;
  padding: 10px 12px;
  border-radius: 6px;
  color: #8c2723;
  background: rgba(179, 35, 31, 0.08);
  font-weight: 800;
}

.checkout-status.is-success {
  color: #1f6847;
  background: rgba(35, 107, 73, 0.08);
}

.checkout-submit {
  width: 100%;
}

.order-success {
  min-height: 420px;
  place-items: center;
  align-content: center;
  gap: 12px;
  text-align: center;
}

.order-success:not([hidden]) {
  display: grid;
}

.order-success > svg {
  width: 56px;
  height: 56px;
  color: #236b49;
}

.order-success h2,
.order-success p {
  margin: 0;
}

.order-success p {
  max-width: 390px;
  color: var(--muted);
  font-weight: 750;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(18px, 6vw, 78px);
  background: var(--ink);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.9rem;
}

.site-footer p {
  margin: 0;
  max-width: 760px;
}

@media (max-width: 1160px) {
  .product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .service-grid,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .section-heading-with-note {
    grid-template-columns: 1fr;
  }

  .video-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .trust-strip {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .testimonial-track {
    grid-auto-columns: calc((100% - 10px) / 2);
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 70px;
  }

  .brand strong {
    font-size: 0.88rem;
  }

  .brand small {
    font-size: 0.72rem;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-nav {
    position: fixed;
    inset: 70px 14px auto;
    display: grid;
    gap: 4px;
    margin-left: 0;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(255, 247, 230, 0.98);
    box-shadow: var(--shadow);
    transform: translateY(-18px);
    opacity: 0;
    visibility: hidden;
    transition: transform 180ms ease, opacity 180ms ease, visibility 180ms ease;
  }

  body.nav-open .site-nav {
    transform: translateY(0);
    opacity: 1;
    visibility: visible;
  }

  .language-switcher {
    margin-left: auto;
  }

  .site-nav a {
    padding: 13px 12px;
  }

  .hero {
    min-height: auto;
    padding-top: 78px;
    padding-bottom: 20px;
    padding-left: 20px;
    padding-right: 20px;
  }

  .hero-content,
  .hero-lead {
    width: 100%;
    max-width: 100%;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(14, 11, 9, 0.86), rgba(30, 18, 14, 0.78) 46%, rgba(66, 20, 17, 0.66)),
      linear-gradient(90deg, rgba(0, 0, 0, 0.66), rgba(0, 0, 0, 0.12));
  }

  h1 {
    font-size: clamp(2.7rem, 13vw, 4.8rem);
  }

  .hero-person {
    width: min(100%, 344px);
    margin-top: 8px;
    margin-bottom: 12px;
  }

  .intro-section .section-heading h2 {
    white-space: normal;
  }

  .signal-band,
  .intro-grid,
  .contact-section,
  .quote-section {
    grid-template-columns: 1fr;
  }

  .quote-points {
    grid-template-columns: 1fr;
  }

  .signal-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(24, 19, 15, 0.1);
  }

  .signal-item:last-child {
    border-bottom: 0;
  }

  .video-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    padding-bottom: 10px;
  }

  .product-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .video-card {
    flex: 0 0 min(78vw, 310px);
    scroll-snap-align: start;
  }

  .testimonial-shell {
    grid-template-columns: 1fr;
  }

  .testimonial-arrow {
    display: none;
  }

  .testimonial-track {
    grid-auto-flow: row;
    grid-auto-columns: unset;
    grid-template-columns: 1fr;
    overflow: visible;
    padding-bottom: 0;
  }

  .testimonial-dots {
    display: none;
  }

  .testimonial-form-grid {
    grid-template-columns: 1fr 130px;
  }

  .testimonial-form-grid > label:nth-child(3) {
    grid-column: 1 / -1;
  }

  .site-footer {
    display: grid;
  }
}

@media (max-width: 560px) {
  .brand-mark {
    width: 40px;
    height: 40px;
  }

  .brand strong {
    max-width: 130px;
  }

  .brand > span:last-child {
    display: none;
  }

  .language-switcher {
    min-height: 38px;
    padding: 5px 7px;
  }

  .language-switcher select {
    min-width: 76px;
    font-size: 0.82rem;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .service-grid,
  .product-grid,
  .timeline,
  .trust-strip,
  .contact-mini-grid,
  .contact-info-grid {
    grid-template-columns: 1fr;
  }

  .product-grid,
  .product-card,
  .products-empty {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .shop-panel {
    width: 100%;
    padding: 16px;
  }

  .cart-item {
    grid-template-columns: 60px minmax(0, 1fr);
  }

  .cart-item-media {
    width: 60px;
  }

  .cart-item-controls {
    grid-column: 1 / -1;
    justify-self: end;
  }

  .checkout-grid {
    grid-template-columns: 1fr;
  }

  .checkout-wide {
    grid-column: auto;
  }

  .checkout-summary {
    align-items: flex-start;
    flex-direction: column;
    gap: 6px;
  }

  .section-heading,
  .section-heading-with-note,
  .intro-grid,
  .service-grid,
  .timeline,
  .trust-strip,
  .testimonial-shell,
  .testimonial-track,
  .testimonial-submit-cta,
  .contact-mini-grid,
  .contact-info-grid,
  .contact-tagline-card,
  .contact-form {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .section-note,
  .intro-card,
  .service-card,
  .timeline-step,
  .testimonial-card,
  .trust-strip span,
  .contact-mini-grid span,
  .contact-info-grid span {
    width: 100%;
    max-width: calc(100vw - 32px);
  }

  .section-note p,
  .intro-card p,
  .service-card p,
  .timeline-step p,
  .testimonial-card p,
  .contact-copy p {
    display: block;
    width: min(100%, calc(100vw - 76px));
    max-width: 100%;
    white-space: normal;
    word-break: break-word;
    overflow-wrap: anywhere;
  }

  .testimonial-card .review-text {
    display: flex;
    width: 100%;
  }

  .intro-card,
  .service-card,
  .timeline-step,
  .testimonial-card,
  .section-note,
  .quote-section,
  .contact-section {
    overflow: hidden;
  }

  .testimonial-track {
    grid-template-columns: 1fr;
  }

  .testimonial-form-grid {
    grid-template-columns: 1fr;
  }

  .testimonial-form-grid > label:nth-child(3),
  .testimonial-description-field,
  .testimonial-file-field {
    grid-column: auto;
  }

  .testimonial-submit-button {
    width: 100%;
  }

  .testimonial-submit-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .testimonial-submit-cta .btn {
    width: 100%;
  }

  .testimonial-modal {
    padding: 8px;
  }

  .testimonial-modal-dialog {
    max-height: calc(100vh - 16px);
    padding: 14px;
  }

  .section,
  .video-band,
  .contact-section,
  .quote-section {
    padding-left: 16px;
    padding-right: 16px;
    padding-top: 18px;
    padding-bottom: 18px;
  }

  .call-facility {
    width: 100%;
    max-width: none;
    margin-top: 12px;
  }

  .call-facility-action {
    min-height: 72px;
    grid-template-columns: 40px minmax(0, 1fr) 9px;
    gap: 10px;
    padding: 10px 16px;
  }

  .call-facility-icon {
    width: 40px;
    height: 40px;
  }

  .call-facility-copy strong {
    font-size: 0.94rem;
  }

  .call-facility-copy small {
    font-size: 0.74rem;
  }
}
