:root {
  --color-navy-950: #061a2f;
  --color-navy-900: #0a2745;
  --color-navy-800: #123a60;
  --color-orange-600: #f26722;
  --color-orange-500: #ff7a2b;
  --color-white: #ffffff;
  --color-ivory-50: #fbfaf7;
  --color-sand-100: #f4f0e8;
  --color-sage-500: #7d9b87;
  --color-sage-100: #e8f0ea;
  --color-gray-50: #fbfaf7;
  --color-gray-100: #eef1f3;
  --color-gray-200: #dce3e8;
  --color-gray-500: #64748b;
  --color-gray-700: #334155;
  --color-gray-900: #0f172a;
  --color-whatsapp: #25d366;
  --color-shopee: #ee4d2d;
  --color-tokopedia: #03ac0e;
  --color-blibli: #0095da;
  --container: 1280px;
  --space-1: 4px;
  --space-2: 8px;
  --space-3: 12px;
  --space-4: 16px;
  --space-5: 24px;
  --space-6: 32px;
  --space-7: 48px;
  --space-8: 64px;
  --space-9: 80px;
  --space-10: 96px;
  --space-11: 120px;
  --header-height-desktop: 82px;
  --header-height-mobile: 76px;
  --header-offset: clamp(92px, 8.75vw, 112px);
  --radius-button: 14px;
  --radius-card: 24px;
  --radius-panel: 24px;
  --shadow-1: 0 8px 24px rgba(7, 27, 49, 0.06);
  --shadow-2: 0 18px 50px rgba(7, 27, 49, 0.1);
  --shadow-3: 0 30px 80px rgba(7, 27, 49, 0.16);
  --shadow-small: var(--shadow-1);
  --shadow-medium: var(--shadow-2);
  --shadow-large: var(--shadow-3);
  --shadow-soft: var(--shadow-3);
  --shadow-card: var(--shadow-1);
  --motion-fast: 180ms ease;
  --motion-base: 220ms ease;
  --z-header: 100;
  --z-sticky: 90;
  --z-overlay: 190;
  --z-modal: 300;
  --hero-object-position: 50% 48%;
}

html,
body {
  max-width: 100%;
  overflow-x: clip;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
  text-size-adjust: 100%;
}

body {
  margin: 0;
  color: var(--color-gray-900);
  background: var(--color-ivory-50);
  font-family: Inter, "Plus Jakarta Sans", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
}

section[id] {
  scroll-margin-top: var(--header-offset);
}

body.menu-open,
body.sheet-open,
body.lightbox-open {
  overflow: hidden;
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
  height: auto;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--color-orange-500);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  border-radius: 12px;
  background: var(--color-white);
  color: var(--color-navy-950);
  padding: 12px 16px;
  font-weight: 800;
  box-shadow: var(--shadow-soft);
}

.skip-link:focus {
  transform: translateY(0);
}

.container {
  width: min(100% - 40px, var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--z-header);
  color: var(--color-white);
  transition: background-color var(--motion-base), box-shadow var(--motion-base), color var(--motion-base);
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(251, 250, 247, 0.92);
  color: var(--color-navy-950);
  box-shadow: var(--shadow-small);
  backdrop-filter: blur(18px);
}

.header-inner {
  display: flex;
  min-height: var(--header-height-desktop);
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.brand-mark {
  display: grid;
  width: 54px;
  height: 54px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: var(--shadow-small);
  overflow: hidden;
}

.brand-mark img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.brand-text {
  display: grid;
  line-height: 1.2;
}

.brand-text strong {
  font-size: clamp(0.9rem, 1.4vw, 1rem);
  letter-spacing: 0;
}

.brand-text span {
  font-size: 0.78rem;
  opacity: 0.82;
}

.primary-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  font-weight: 750;
}

.primary-nav a:not(.button) {
  position: relative;
  opacity: 0.9;
}

.primary-nav a:not(.button):hover {
  opacity: 1;
}

.primary-nav a[aria-current="page"]:not(.button) {
  opacity: 1;
}

.primary-nav a[aria-current="page"]:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  border-radius: 999px;
  background: var(--color-orange-500);
  content: "";
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid currentColor;
  border-radius: var(--radius-button);
  color: inherit;
  background: transparent;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  border-radius: 999px;
  background: currentColor;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border: 1px solid transparent;
  border-radius: 14px;
  padding: 14px 22px;
  font-weight: 850;
  letter-spacing: 0;
  line-height: 1.2;
  text-align: center;
  cursor: pointer;
  box-shadow: none;
  transition: transform var(--motion-base), box-shadow var(--motion-base), background-color var(--motion-base), border-color var(--motion-base);
}

.button:hover {
  transform: translateY(-3px);
}

.button-small {
  min-height: 44px;
  padding: 10px 14px;
}

.button-whatsapp {
  background: var(--color-whatsapp);
  color: var(--color-navy-950);
  box-shadow: 0 14px 30px rgba(37, 211, 102, 0.2);
}

.button-primary {
  background: var(--color-orange-600);
  color: var(--color-white);
  box-shadow: 0 14px 30px rgba(243, 107, 22, 0.2);
}

.button-secondary {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-white);
}

.button-light {
  border-color: rgba(255, 255, 255, 0.26);
  background: var(--color-white);
  color: var(--color-navy-950);
}

.button-outline {
  border-color: var(--color-gray-200);
  background: var(--color-white);
  color: var(--color-navy-950);
}

.button-outline:hover,
.button-light:hover {
  border-color: rgba(7, 27, 49, 0.18);
  box-shadow: var(--shadow-small);
}

.button-platform {
  width: 100%;
  color: var(--color-white);
  box-shadow: none;
}

.channel-shopee .button-platform {
  background: var(--color-shopee);
}

.channel-tokopedia .button-platform {
  background: var(--color-tokopedia);
}

.channel-blibli .button-platform {
  background: var(--color-blibli);
}

[aria-disabled="true"] {
  cursor: not-allowed;
  opacity: 0.62;
}

.unavailable-note {
  display: block;
  margin-top: 8px;
  color: var(--color-gray-500);
  font-size: 0.82rem;
  font-weight: 750;
}

.text-link {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--color-white);
  font-weight: 850;
  text-decoration: underline;
  text-underline-offset: 6px;
}

.hero {
  position: relative;
  min-height: clamp(660px, 82svh, 860px);
  overflow: hidden;
  color: var(--color-white);
  isolation: isolate;
}

.hero::before {
  position: absolute;
  inset: 8% -10% auto auto;
  z-index: -1;
  width: min(48vw, 680px);
  height: min(48vw, 680px);
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 122, 43, 0.26), rgba(255, 122, 43, 0) 62%);
  content: "";
  filter: blur(10px);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    radial-gradient(circle at 78% 76%, rgba(125, 155, 135, 0.18), transparent 30%),
    linear-gradient(140deg, transparent 54%, rgba(255, 255, 255, 0.08) 54.2%, transparent 55%),
    linear-gradient(147deg, transparent 62%, rgba(255, 255, 255, 0.055) 62.2%, transparent 63%);
  content: "";
}

.hero-media,
.hero-media::after {
  position: absolute;
  inset: 0;
}

.hero-media {
  overflow: hidden;
}

.hero-media {
  z-index: -2;
  background: var(--color-navy-900);
}

.hero-media::after {
  content: "";
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(6, 26, 47, 0.94), rgba(6, 26, 47, 0.68) 42%, rgba(6, 26, 47, 0.2) 72%),
    radial-gradient(circle at 82% 72%, rgba(242, 103, 34, 0.24), transparent 34%),
    linear-gradient(0deg, rgba(6, 26, 47, 0.34), rgba(6, 26, 47, 0.04));
}

.hero-media picture,
.hero-media img {
  width: 100%;
  height: 100%;
}

.hero-media picture {
  display: block;
}

.hero-media img {
  object-fit: cover;
  object-position: var(--hero-object-position);
}

.hero-content {
  position: relative;
  display: grid;
  min-height: clamp(660px, 82svh, 860px);
  align-content: center;
  padding-block: 140px 126px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-orange-500);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.cta-band h2,
.location h2 {
  margin: 0;
  line-height: 1.05;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(3rem, 5.2vw, 4.85rem);
}

.hero-copy {
  max-width: 58ch;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.88);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  line-height: 1.75;
}

.status-badge {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  padding: 8px 12px;
  color: var(--color-white);
  font-size: 0.92rem;
  font-weight: 850;
  backdrop-filter: blur(12px);
}

.hero .status-badge {
  margin-bottom: 18px;
}

.status-badge strong {
  font-weight: 900;
}

.status-badge-dark {
  margin-top: 18px;
  border-color: var(--color-gray-200);
  background: var(--color-white);
  color: var(--color-navy-950);
  box-shadow: 0 10px 24px rgba(7, 27, 49, 0.06);
}

.status-dot {
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--color-whatsapp);
  box-shadow: 0 0 0 4px rgba(37, 211, 102, 0.16);
}

.hero-actions,
.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 30px;
}

.trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
}

.trust-list li {
  border-left: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 0;
  background: transparent;
  padding: 2px 0 2px 14px;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.92rem;
  font-weight: 750;
}

.trust-list li:first-child {
  border-left: 0;
  padding-left: 0;
}

.hero-info-panel {
  position: absolute;
  right: clamp(20px, 4vw, 56px);
  bottom: 86px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  width: min(360px, 34vw);
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 24px;
  background: rgba(251, 250, 247, 0.9);
  padding: 18px;
  color: var(--color-navy-950);
  box-shadow: var(--shadow-3);
  backdrop-filter: blur(18px);
}

.hero-info-panel strong,
.hero-info-panel span,
.hero-info-panel small {
  display: block;
}

.hero-info-panel strong {
  line-height: 1.2;
}

.hero-info-panel span {
  margin-top: 2px;
  color: var(--color-gray-700);
  font-weight: 850;
}

.hero-info-panel small {
  margin-top: 4px;
  color: var(--color-sage-500);
  font-weight: 900;
}

.quick-contact {
  position: relative;
  z-index: 3;
  margin-top: -34px;
  padding-bottom: 36px;
}

.quick-contact-heading {
  margin-bottom: 14px;
}

.quick-contact-heading h2 {
  margin: 0;
  color: var(--color-navy-950);
  font-size: clamp(1.15rem, 2vw, 1.45rem);
  line-height: 1.25;
}

.quick-contact-inner {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  border: 1px solid rgba(220, 227, 232, 0.78);
  border-radius: 24px;
  background: rgba(244, 240, 232, 0.86);
  padding: 12px;
  box-shadow: var(--shadow-2);
  backdrop-filter: blur(18px);
}

.quick-item {
  display: flex;
  min-height: 78px;
  align-items: center;
  gap: 16px;
  border-radius: 18px;
  padding: 16px;
  color: var(--color-navy-950);
  transition: background-color 200ms ease, transform 200ms ease;
}

.quick-item:hover {
  background: var(--color-gray-50);
  transform: translateY(-4px);
}

.quick-primary {
  background: rgba(232, 240, 234, 0.8);
}

.quick-icon,
.quick-symbol {
  display: grid;
  width: 48px;
  height: 48px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: var(--shadow-small);
}

.quick-item:nth-child(2) .quick-icon {
  box-shadow: inset 0 0 0 1px rgba(238, 77, 45, 0.18);
}

.quick-item:nth-child(3) .quick-icon {
  box-shadow: inset 0 0 0 1px rgba(3, 172, 14, 0.18);
}

.quick-icon img {
  width: 36px;
  height: 36px;
  object-fit: contain;
}

.quick-symbol {
  color: var(--color-orange-600);
}

.quick-symbol svg,
.feature-icon svg,
.info-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.9;
}

.quick-item strong,
.quick-item small {
  display: block;
}

.quick-item strong {
  font-size: 0.98rem;
}

.quick-item small {
  margin-top: 2px;
  color: var(--color-gray-700);
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.section {
  padding-block: clamp(64px, 8vw, 112px);
}

.advantages {
  padding-block: clamp(72px, 8vw, 104px);
}

.about,
.location {
  padding-block: clamp(80px, 9vw, 112px);
}

.shopping,
.reviews {
  padding-block: clamp(72px, 8vw, 104px);
}

.shopping,
.reviews,
.location {
  background: var(--color-sand-100);
}

.section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.section-heading.narrow {
  max-width: 680px;
}

.section-heading h2,
.cta-band h2,
.location h2 {
  color: var(--color-navy-950);
  font-size: clamp(2.25rem, 4vw, 4rem);
  line-height: 1.08;
}

.section-heading p:not(.eyebrow),
.cta-band p,
.location address,
.final-cta p {
  max-width: 68ch;
  margin: 22px auto 0;
  color: var(--color-gray-700);
  font-size: clamp(1rem, 1.5vw, 1.12rem);
  line-height: 1.75;
}

.section-heading.align-left p:not(.eyebrow) {
  margin-inline: 0;
}

.channel-grid {
  display: grid;
  grid-template-columns: 1.1fr repeat(3, minmax(0, 0.72fr));
  gap: 24px;
  align-items: stretch;
}

.channel-card {
  display: flex;
  min-height: 100%;
  flex-direction: column;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.92), rgba(251, 250, 247, 0.72));
  padding: 28px;
  box-shadow: var(--shadow-1);
  transition: transform var(--motion-base), box-shadow var(--motion-base);
}

.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.channel-whatsapp {
  background:
    radial-gradient(circle at 100% 0%, rgba(37, 211, 102, 0.18), transparent 36%),
    linear-gradient(145deg, rgba(6, 26, 47, 0.98), rgba(18, 58, 96, 0.92));
  color: var(--color-white);
}

.channel-whatsapp h3,
.channel-whatsapp p {
  color: var(--color-white);
}

.channel-card h3,
.feature-item h3 {
  margin: 22px 0 10px;
  color: var(--color-navy-950);
  font-size: 1.16rem;
  line-height: 1.25;
}

.channel-card p,
.feature-item p {
  margin: 0 0 28px;
  color: var(--color-gray-700);
  line-height: 1.7;
}

.channel-card .button {
  margin-top: auto;
}

.channel-icon,
.channel-wordmark,
.channel-logo {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  font-weight: 950;
}

.channel-icon {
  background: rgba(37, 211, 102, 0.14);
  color: #128c4a;
}

.channel-icon svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.channel-wordmark {
  color: var(--color-white);
}

.channel-logo {
  width: 64px;
  height: 64px;
  background: rgba(255, 255, 255, 0.86);
  box-shadow: inset 0 0 0 1px var(--color-gray-200);
  overflow: hidden;
}

.channel-logo img {
  width: 46px;
  height: 46px;
  object-fit: contain;
}

.channel-shopee .channel-wordmark {
  background: var(--color-shopee);
}

.channel-tokopedia .channel-wordmark {
  background: var(--color-tokopedia);
}

.channel-blibli .channel-wordmark {
  background: var(--color-blibli);
}

.feature-grid {
  display: grid;
  grid-template-columns: 1.2fr repeat(2, minmax(0, 0.9fr));
  gap: 24px;
  align-items: stretch;
}

.feature-item {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(220, 227, 232, 0.92);
  border-radius: var(--radius-card);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.86), rgba(244, 240, 232, 0.72)),
    var(--color-white);
  padding: 28px;
  box-shadow: var(--shadow-1);
  transition: transform var(--motion-base), box-shadow var(--motion-base);
}

.feature-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.feature-item-main {
  grid-row: span 2;
  min-height: 360px;
  background:
    radial-gradient(circle at 90% 12%, rgba(242, 103, 34, 0.16), transparent 32%),
    linear-gradient(145deg, rgba(6, 26, 47, 0.98), rgba(18, 58, 96, 0.92));
  color: var(--color-white);
}

.feature-item-main h3,
.feature-item-main p,
.feature-item-main .feature-number {
  color: var(--color-white);
}

.feature-number {
  position: absolute;
  top: 24px;
  right: 26px;
  color: rgba(6, 26, 47, 0.22);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.08em;
}

.feature-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--color-sage-100);
  color: var(--color-orange-600);
}

.feature-item-main .feature-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-orange-500);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.78fr) minmax(0, 1.22fr);
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}

.gallery {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(220px, 0.56fr);
  gap: 18px;
  align-items: end;
}

.gallery-item {
  position: relative;
  width: 100%;
  min-height: 0;
  overflow: hidden;
  border: 0;
  border-radius: var(--radius-panel);
  background: var(--color-gray-100);
  padding: 0;
  aspect-ratio: 4 / 3;
  cursor: zoom-in;
  box-shadow: var(--shadow-1);
  transition: transform var(--motion-base), box-shadow var(--motion-base);
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.gallery-item-large {
  grid-row: span 2;
  aspect-ratio: 4 / 4.65;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 220ms ease;
}

.gallery-item:hover img {
  transform: scale(1.025);
}

.gallery-story {
  border: 1px solid rgba(220, 227, 232, 0.92);
  border-radius: var(--radius-card);
  background:
    radial-gradient(circle at 100% 0%, rgba(125, 155, 135, 0.16), transparent 38%),
    var(--color-white);
  padding: 26px;
  box-shadow: var(--shadow-1);
}

.gallery-story span,
.gallery-story strong {
  display: block;
}

.gallery-story span {
  color: var(--color-sage-500);
  font-size: 0.82rem;
  font-weight: 950;
  text-transform: uppercase;
}

.gallery-story strong {
  margin-top: 10px;
  color: var(--color-navy-950);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.35;
}

.review-showcase {
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 44px;
  padding: 10px 0 30px;
  scroll-snap-type: x proximity;
  scrollbar-width: none;
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.review-showcase::-webkit-scrollbar {
  display: none;
}

.review-showcase:hover .review-track,
.review-showcase:focus-within .review-track {
  animation-play-state: paused;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 20px;
  padding-inline: max(20px, calc((100vw - var(--container)) / 2 + 32px));
  animation: review-scroll 54s linear infinite;
}

@keyframes review-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

.review-card {
  display: flex;
  width: min(380px, calc(100vw - 48px));
  min-height: 330px;
  flex: 0 0 auto;
  flex-direction: column;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-panel);
  background: var(--color-white);
  padding: 24px;
  box-shadow: var(--shadow-1);
  scroll-snap-align: start;
  transition: transform var(--motion-base), box-shadow var(--motion-base);
}

.review-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-2);
}

.review-card p {
  margin: 0;
  color: var(--color-gray-700);
}

.review-card blockquote {
  margin: 14px 0 0;
  color: var(--color-gray-900);
  font-weight: 650;
  line-height: 1.65;
  display: -webkit-box;
  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 5;
}

.review-card cite {
  display: block;
  margin-top: 12px;
  color: var(--color-gray-700);
  font-style: normal;
  font-weight: 850;
}

.review-card span,
.review-source {
  display: inline-flex;
  margin-top: 12px;
  color: var(--color-gray-500);
  font-size: 0.86rem;
  font-weight: 850;
}

.review-source {
  margin-top: 0;
  align-items: center;
  gap: 8px;
  color: var(--color-navy-950);
  text-transform: none;
}

.review-source img {
  width: 28px;
  height: 28px;
  border-radius: 9px;
  object-fit: contain;
}

.review-rating {
  margin-top: 10px;
  color: var(--color-orange-600);
  letter-spacing: 0;
}

.review-details {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.review-badge,
.review-meta,
.review-source-link {
  border: 0;
  border-radius: 999px;
  background: var(--color-sage-100);
  padding: 5px 8px;
  color: var(--color-gray-700);
  font-size: 0.78rem;
  font-weight: 850;
}

.review-more {
  background: var(--color-shopee);
}

.review-photos {
  display: flex;
  gap: 10px;
  margin-top: auto;
  padding-top: 18px;
}

.review-photo {
  width: 82px;
  height: 68px;
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  border-radius: 16px;
  background: var(--color-gray-50);
  padding: 0;
  cursor: zoom-in;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.review-cta-row {
  margin-top: 28px;
}

.review-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-panel);
  background: var(--color-white);
  padding: 28px 32px;
  box-shadow: var(--shadow-card);
}

.review-cta strong,
.review-cta span {
  display: block;
}

.review-cta strong {
  color: var(--color-navy-950);
}

.review-cta span {
  margin-top: 2px;
  color: var(--color-gray-700);
}

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

.shopping-note {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  max-width: 940px;
  margin: -22px auto 44px;
}

.shopping-note p {
  margin: 0;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-card);
  background: var(--color-white);
  padding: 22px 24px;
  color: var(--color-gray-700);
  box-shadow: var(--shadow-small);
}

.cta-band {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 86% 12%, rgba(242, 103, 34, 0.22), transparent 34%),
    radial-gradient(circle at 16% 90%, rgba(125, 155, 135, 0.16), transparent 30%),
    linear-gradient(135deg, var(--color-navy-950), var(--color-navy-800));
  color: var(--color-white);
  padding-block: clamp(76px, 8vw, 112px);
}

.cta-band::after,
.final-cta::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(142deg, transparent 55%, rgba(255, 255, 255, 0.08) 55.2%, transparent 56%),
    linear-gradient(149deg, transparent 63%, rgba(255, 255, 255, 0.05) 63.2%, transparent 64%);
  content: "";
}

.cta-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 44px;
  align-items: center;
}

.cta-band h2 {
  color: var(--color-white);
}

.cta-band p:not(.eyebrow) {
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.78);
}

.location-grid {
  display: grid;
  gap: 36px;
}

.location-content {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 32px;
  min-width: 0;
  align-items: start;
}

.location-intro {
  max-width: 62ch;
  margin: 16px 0 0;
  color: var(--color-gray-700);
}

.location address {
  margin-inline: 0;
  font-style: normal;
}

.info-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
  margin: 0;
}

.info-item {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-card);
  background: var(--color-white);
  padding: 24px;
  box-shadow: var(--shadow-card);
  transition: transform var(--motion-base), box-shadow var(--motion-base);
}

.info-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-large);
}

.info-item h3,
.info-item p,
.info-item address {
  margin: 0;
}

.info-item h3 {
  color: var(--color-navy-950);
  font-size: 0.98rem;
  line-height: 1.25;
}

.info-item p,
.info-item address,
.hours-list {
  margin-top: 4px;
  color: var(--color-gray-700);
}

.info-icon {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  border-radius: 16px;
  background: var(--color-gray-100);
  color: var(--color-orange-600);
}

.hours-list {
  display: grid;
  gap: 8px;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--color-gray-200);
  padding-top: 8px;
}

.hours-row:first-child {
  border-top: 0;
  padding-top: 0;
}

.hours-row span {
  color: var(--color-gray-700);
}

.hours-row strong {
  color: var(--color-navy-950);
  text-align: right;
}

.contact-list {
  display: grid;
  gap: 16px;
  margin: 24px 0;
}

.contact-list div {
  border-left: 3px solid var(--color-orange-600);
  padding-left: 14px;
}

.contact-list dt {
  color: var(--color-gray-500);
  font-size: 0.85rem;
  font-weight: 850;
}

.contact-list dd {
  margin: 2px 0 0;
  color: var(--color-navy-950);
  font-weight: 850;
}

.location-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  grid-column: 1 / -1;
}

.map-panel {
  min-height: 460px;
  overflow: hidden;
  border: 1px solid var(--color-gray-200);
  border-radius: var(--radius-panel);
  background: var(--color-white);
  box-shadow: var(--shadow-large);
}

.map-panel iframe {
  width: 100%;
  height: 100%;
  min-height: 460px;
  border: 0;
}

.final-cta {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(7, 27, 49, 0.92), rgba(7, 27, 49, 0.78)),
    image-set(
      url("../images/gallery/store-front-wide.webp") type("image/webp"),
      url("../images/gallery/store-front-wide.jpg") type("image/jpeg")
    ) center / cover;
  color: var(--color-white);
  padding-block: clamp(82px, 9vw, 120px);
}

.final-cta-inner {
  position: relative;
  z-index: 1;
  max-width: 880px;
}

.final-cta h2 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.8rem);
  line-height: 1.08;
}

.final-cta p {
  margin-inline: 0;
  color: rgba(255, 255, 255, 0.78);
}

.site-footer {
  background:
    radial-gradient(circle at 88% 0%, rgba(242, 103, 34, 0.12), transparent 30%),
    var(--color-navy-950);
  color: rgba(255, 255, 255, 0.78);
  padding: 72px 0 calc(28px + env(safe-area-inset-bottom));
}

.footer-statement {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 54px;
}

.footer-statement h2 {
  margin: 0;
  color: var(--color-white);
  font-size: clamp(2rem, 4vw, 3.4rem);
  line-height: 1.05;
}

.footer-statement-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.footer-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) repeat(3, minmax(150px, 0.55fr));
  gap: 28px;
}

.footer-primary-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

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

.site-footer p {
  max-width: 52ch;
}

.footer-address {
  color: var(--color-white);
  font-weight: 750;
}

.site-footer h2 {
  margin: 0 0 12px;
  color: var(--color-white);
  font-size: 1rem;
}

.site-footer nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

.site-footer nav span {
  color: rgba(255, 255, 255, 0.78);
}

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

.footer-bottom {
  margin-top: 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 20px;
}

.mobile-action-bar {
  position: fixed;
  right: 12px;
  bottom: calc(12px + env(safe-area-inset-bottom));
  left: 12px;
  z-index: 90;
  display: none;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  border: 1px solid var(--color-gray-200);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 8px;
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 95;
  display: inline-flex;
  width: 56px;
  min-height: 56px;
  align-items: center;
  justify-content: flex-end;
  overflow: hidden;
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 999px;
  background: var(--color-white);
  color: var(--color-navy-950);
  box-shadow: var(--shadow-soft);
  transition: width 200ms ease, transform 200ms ease;
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  width: 260px;
  transform: translateY(-2px);
}

.floating-whatsapp img {
  width: 44px;
  height: 44px;
  margin-inline: 6px;
  flex: 0 0 auto;
  object-fit: contain;
}

.floating-whatsapp span {
  min-width: 190px;
  padding-right: 16px;
  font-size: 0.9rem;
  font-weight: 900;
  white-space: nowrap;
}

.mobile-action {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 12px;
  background: var(--color-navy-950);
  color: var(--color-white);
  font-size: 0.9rem;
  font-weight: 850;
  cursor: pointer;
}

.sheet-overlay {
  position: fixed;
  inset: 0;
  z-index: 190;
  background: rgba(7, 27, 49, 0.42);
}

.bottom-sheet {
  position: fixed;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 200;
  border-radius: 24px 24px 0 0;
  background: var(--color-white);
  padding: 10px 20px calc(24px + env(safe-area-inset-bottom));
  box-shadow: 0 -20px 50px rgba(7, 27, 49, 0.22);
}

.sheet-handle {
  width: 52px;
  height: 5px;
  margin: 0 auto 16px;
  border-radius: 999px;
  background: var(--color-gray-200);
}

.sheet-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.sheet-header h2 {
  margin: 0;
  color: var(--color-navy-950);
  font-size: 1.25rem;
}

.icon-button {
  display: inline-grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--color-gray-200);
  border-radius: 14px;
  background: var(--color-white);
  color: var(--color-navy-950);
  font-size: 1.5rem;
  cursor: pointer;
}

.sheet-links {
  display: grid;
  gap: 10px;
  margin-top: 18px;
}

.sheet-links a {
  display: flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  border-radius: 14px;
  background: var(--color-gray-100);
  color: var(--color-navy-950);
  font-weight: 850;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  display: grid;
  place-items: center;
  padding: 24px;
  background: rgba(7, 27, 49, 0.88);
}

.lightbox img {
  max-height: min(86svh, 900px);
  width: auto;
  border-radius: 20px;
  box-shadow: var(--shadow-soft);
}

.lightbox-close {
  position: fixed;
  top: 20px;
  right: 20px;
}

.section-reveal {
  opacity: 0;
  transform: translateY(18px);
}

.section-reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
  transition: opacity 450ms ease, transform 450ms ease;
}

@media (max-width: 1080px) {
  .channel-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .about-grid,
  .location-grid,
  .cta-inner {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 820px) {
  body {
    padding-bottom: 84px;
  }

  .container {
    width: min(100% - 40px, var(--container));
  }

  .nav-toggle {
    display: block;
  }

  .primary-nav {
    position: fixed;
    top: 76px;
    right: 20px;
    left: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    border: 1px solid var(--color-gray-200);
    border-radius: 22px;
    background: var(--color-white);
    color: var(--color-navy-950);
    padding: 16px;
    box-shadow: var(--shadow-soft);
  }

  .primary-nav.is-open {
    display: flex;
  }

  .primary-nav a {
    border-radius: 12px;
    padding: 12px;
  }

  .primary-nav .button {
    margin-top: 8px;
  }

  .hero {
    min-height: auto;
  }

  .hero-media::after {
    background: linear-gradient(0deg, rgba(7, 27, 49, 0.82), rgba(7, 27, 49, 0.42));
  }

  .hero-content {
    min-height: auto;
    padding-block: 108px 64px;
    align-content: end;
  }

  .trust-list li {
    border-radius: 14px;
  }

  .status-badge {
    align-items: flex-start;
    border-radius: 16px;
    flex-wrap: wrap;
  }

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

  .gallery-item-large {
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .mobile-action-bar {
    display: grid;
  }

  .quick-contact {
    margin-top: 0;
    padding-block: 16px 24px;
    background: var(--color-gray-50);
  }

  .quick-contact-inner {
    border-radius: var(--radius-card);
  }

  .primary-nav a[aria-current="page"]:not(.button)::after {
    right: auto;
    bottom: 8px;
    left: 12px;
    width: 24px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: calc(86px + env(safe-area-inset-bottom));
    width: 50px;
    min-height: 50px;
  }

  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible {
    width: 50px;
  }

  .floating-whatsapp img {
    width: 40px;
    height: 40px;
    margin-inline: 5px;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 560px) {
  .brand-text strong {
    max-width: 170px;
    overflow-wrap: anywhere;
  }

  .brand-text span {
    display: none;
  }

  .hero-actions,
  .cta-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero h1 {
    font-size: clamp(2.25rem, 13vw, 3.15rem);
  }

  .channel-grid,
  .feature-grid,
  .footer-grid,
  .shopping-note {
    grid-template-columns: 1fr;
  }

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

  .channel-card,
  .gallery-item,
  .map-panel {
    border-radius: var(--radius-card);
  }

  .section {
    padding-block: 64px;
  }

  .location-actions {
    flex-direction: column;
  }

  .info-item {
    grid-template-columns: 44px minmax(0, 1fr);
    padding: 20px;
  }

  .info-icon {
    width: 44px;
    height: 44px;
    border-radius: 14px;
  }

  .hours-row {
    align-items: flex-start;
    flex-direction: column;
    gap: 2px;
  }

  .hours-row strong {
    text-align: left;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 360px;
  }

  .review-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .review-cta-actions {
    flex-direction: column;
  }
}

/* Digital flagship refinement */
:root {
  --color-concrete-50: #f1f2f0;
  --color-concrete-100: #e7e9e6;
  --color-ink-soft: #203044;
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
}

body {
  overflow-x: clip;
  background:
    linear-gradient(rgba(6, 26, 47, 0.018) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 47, 0.018) 1px, transparent 1px),
    var(--color-ivory-50);
  background-size: 32px 32px;
}

.site-header {
  top: 12px;
  right: 0;
  left: 0;
  transition: transform 500ms var(--ease-premium), color 240ms ease;
}

.site-header.is-hidden {
  transform: translateY(calc(-100% - 24px));
}

.site-header.is-scrolled,
.site-header.is-open {
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.header-inner {
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 20px;
  background: rgba(6, 26, 47, 0.28);
  padding-inline: 16px;
  box-shadow: 0 16px 48px rgba(6, 26, 47, 0.08);
  backdrop-filter: blur(20px) saturate(130%);
  transition: background-color 240ms ease, border-color 240ms ease, box-shadow 240ms ease;
}

.site-header.is-scrolled .header-inner,
.site-header.is-open .header-inner {
  border-color: rgba(6, 26, 47, 0.1);
  background: rgba(251, 250, 247, 0.88);
  box-shadow: 0 16px 48px rgba(6, 26, 47, 0.1);
}

.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 16px;
}

.brand-mark img {
  width: 40px;
  height: 40px;
}

.primary-nav a:not(.button)::before {
  position: absolute;
  top: 50%;
  left: -10px;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--color-orange-500);
  content: "";
  opacity: 0;
  transform: translateY(-50%) scale(0);
  transition: opacity 180ms ease, transform 180ms var(--ease-premium);
}

.primary-nav a:not(.button):hover::before,
.primary-nav a[aria-current="page"]:not(.button)::before {
  opacity: 1;
  transform: translateY(-50%) scale(1);
}

.primary-nav a[aria-current="page"]:not(.button)::after {
  display: none;
}

.button {
  overflow: hidden;
  position: relative;
  isolation: isolate;
  transition: transform 320ms var(--ease-premium), box-shadow 320ms ease,
    background-color 240ms ease, border-color 240ms ease;
}

.button::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(110deg, transparent 15%, rgba(255, 255, 255, 0.28), transparent 85%);
  content: "";
  transform: translateX(-120%);
  transition: transform 650ms var(--ease-premium);
}

.button:hover::after {
  transform: translateX(120%);
}

.button:hover {
  transform: translateY(-3px) scale(1.01);
}

.hero {
  min-height: min(920px, 100svh);
  border-radius: 0 0 40px 40px;
}

.hero-media img {
  transform: scale(1.035);
  will-change: transform;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 26, 47, 0.96) 0%, rgba(6, 26, 47, 0.78) 36%, rgba(6, 26, 47, 0.18) 72%),
    linear-gradient(0deg, rgba(6, 26, 47, 0.62), transparent 48%),
    linear-gradient(120deg, rgba(242, 103, 34, 0.14), transparent 36%);
}

.hero::before {
  inset: auto 0 0;
  width: 100%;
  height: 34%;
  border-radius: 0;
  background: linear-gradient(0deg, rgba(6, 26, 47, 0.42), transparent);
  filter: none;
}

.hero::after {
  background:
    linear-gradient(115deg, transparent 66%, rgba(255, 255, 255, 0.08) 66.1%, transparent 66.3%),
    linear-gradient(115deg, transparent 74%, rgba(255, 255, 255, 0.05) 74.1%, transparent 74.3%);
}

.hero-content {
  min-height: min(920px, 100svh);
  padding-block: 136px 96px;
}

.hero .eyebrow {
  margin-bottom: 16px;
  color: #ff9455;
  font-size: 0.76rem;
  letter-spacing: 0.08em;
}

.hero h1 {
  max-width: 10.5em;
  font-size: clamp(3.5rem, 5.6vw, 5.7rem);
  font-weight: 760;
  line-height: 0.96;
  text-wrap: balance;
}

.hero-copy {
  max-width: 51ch;
  margin-top: 32px;
  font-size: clamp(1rem, 1.35vw, 1.18rem);
  line-height: 1.75;
}

.hero-actions {
  margin-top: 32px;
}

.trust-list {
  max-width: 700px;
  margin-top: 40px;
}

.hero-info-panel {
  right: 0;
  bottom: 64px;
  display: grid;
  grid-template-columns: 1fr;
  width: min(360px, 30vw);
  gap: 0;
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(251, 250, 247, 0.9);
  padding: 24px;
  box-shadow: 0 32px 90px rgba(6, 26, 47, 0.24);
  backdrop-filter: blur(24px) saturate(130%);
}

.hero-panel-status,
.hero-panel-actions,
.hero-panel-marketplaces {
  display: flex;
  align-items: center;
}

.hero-panel-status {
  gap: 12px;
  padding-bottom: 20px;
}

.hero-panel-status > div {
  min-width: 0;
}

.hero-panel-location {
  border-block: 1px solid rgba(6, 26, 47, 0.1);
  padding-block: 20px;
}

.hero-panel-location small,
.hero-panel-location strong {
  display: block;
}

.hero-panel-location small {
  color: var(--color-orange-600);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.hero-panel-location strong {
  margin-top: 6px;
  font-size: 1.08rem;
}

.hero-panel-trust {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  padding-block: 20px;
}

.hero-panel-trust span,
.hero-panel-trust strong {
  display: block;
}

.hero-panel-trust span {
  color: var(--color-gray-500);
  font-size: 0.75rem;
  line-height: 1.45;
}

.hero-panel-trust strong {
  color: var(--color-navy-950);
  font-size: 0.86rem;
}

.hero-panel-actions {
  gap: 8px;
}

.hero-panel-actions .button {
  flex: 1;
  padding-inline: 12px;
}

.hero-panel-marketplaces {
  justify-content: flex-end;
  gap: 8px;
  margin-top: 16px;
}

.hero-panel-marketplaces a {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border: 1px solid rgba(6, 26, 47, 0.1);
  border-radius: 12px;
  background: var(--color-white);
  transition: transform 240ms var(--ease-premium), box-shadow 240ms ease;
}

.hero-panel-marketplaces a:hover {
  transform: translateY(-3px) rotate(-2deg);
  box-shadow: var(--shadow-1);
}

.hero-panel-marketplaces img {
  width: 28px;
  height: 28px;
  object-fit: contain;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 0;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-scroll span {
  position: relative;
  width: 26px;
  height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.36);
  border-radius: 999px;
}

.hero-scroll span::after {
  position: absolute;
  top: 8px;
  left: 50%;
  width: 3px;
  height: 7px;
  border-radius: 999px;
  background: var(--color-white);
  content: "";
  transform: translateX(-50%);
  animation: scroll-cue 1.9s ease-in-out infinite;
}

@keyframes scroll-cue {
  0% { opacity: 0; transform: translate(-50%, 0); }
  35% { opacity: 1; }
  100% { opacity: 0; transform: translate(-50%, 13px); }
}

.quick-contact {
  z-index: 4;
  margin-top: -24px;
  background: transparent;
}

.quick-contact-heading,
.quick-contact-inner {
  border-color: rgba(6, 26, 47, 0.08);
  background: rgba(251, 250, 247, 0.88);
  backdrop-filter: blur(18px);
}

.quick-item {
  transition: transform 320ms var(--ease-premium), background-color 240ms ease;
}

.quick-item:hover {
  transform: translateY(-4px);
}

.section,
.advantages,
.shopping,
.reviews,
.location {
  position: relative;
  isolation: isolate;
}

.advantages {
  padding-block: 128px;
  background:
    linear-gradient(rgba(6, 26, 47, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 47, 0.045) 1px, transparent 1px),
    var(--color-concrete-50);
  background-size: 40px 40px;
}

.advantages::before,
.about::before,
.shopping::before,
.location::before {
  position: absolute;
  top: -1px;
  right: 0;
  left: 0;
  height: 72px;
  background: linear-gradient(to bottom, rgba(6, 26, 47, 0.045), transparent);
  content: "";
  pointer-events: none;
}

.section-heading h2,
.cta-band h2,
.location h2,
.final-cta h2 {
  font-size: clamp(2.65rem, 5vw, 5.25rem);
  font-weight: 720;
  line-height: 1.02;
  text-wrap: balance;
}

.section-heading p:not(.eyebrow) {
  max-width: 50ch;
  margin-top: 24px;
  font-size: 1.06rem;
}

.feature-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 24px;
  margin-top: 72px;
}

.feature-grid::before {
  position: absolute;
  top: 40px;
  bottom: 40px;
  left: 58.333%;
  width: 1px;
  background: linear-gradient(var(--color-orange-500), rgba(6, 26, 47, 0.08));
  content: "";
}

.feature-item {
  min-height: 280px;
  border-color: rgba(6, 26, 47, 0.08);
  background: rgba(251, 250, 247, 0.86);
  padding: 32px;
  backdrop-filter: blur(10px);
}

.feature-item:nth-child(2),
.feature-item:nth-child(4) {
  grid-column: 8 / -1;
}

.feature-item:nth-child(3) {
  grid-column: 7 / span 5;
  margin-left: -24px;
}

.feature-item-main {
  position: relative;
  grid-row: 1 / span 3;
  grid-column: 1 / span 7;
  min-height: 680px;
  align-content: end;
  overflow: hidden;
  border: 0;
  background:
    linear-gradient(0deg, rgba(6, 26, 47, 0.94), rgba(6, 26, 47, 0.12) 70%),
    url("../images/gallery/store-front-main.webp") center / cover no-repeat;
  color: var(--color-white);
  box-shadow: var(--shadow-2);
}

.feature-item-main::after {
  position: absolute;
  inset: 0;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: inherit;
  content: "";
  pointer-events: none;
}

.feature-item-main h3,
.feature-item-main p,
.feature-item-main .feature-number {
  position: relative;
  z-index: 1;
}

.feature-item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-2);
}

.feature-number {
  font-size: 3.5rem;
  line-height: 1;
}

.feature-item-main .feature-number {
  color: rgba(255, 255, 255, 0.78);
}

.feature-item-main .feature-icon {
  display: none;
}

.about {
  padding-block: 144px;
  background: var(--color-ivory-50);
}

.about-grid {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.48fr);
  align-items: start;
  gap: 80px;
}

.about .section-heading {
  position: sticky;
  top: 128px;
}

.gallery {
  grid-template-columns: minmax(0, 1.18fr) minmax(0, 0.82fr);
  grid-template-rows: auto auto;
  gap: 24px;
}

.gallery-item-large {
  grid-row: 1 / span 2;
  width: 100%;
  height: 720px;
  min-height: 0;
  aspect-ratio: auto;
}

.gallery-item:not(.gallery-item-large) {
  width: 100%;
  height: 400px;
  min-height: 0;
  margin-top: 64px;
  aspect-ratio: auto;
}

.gallery-story {
  min-width: 0;
  min-height: 250px;
  margin-left: -64px;
  padding: 40px;
  box-shadow: var(--shadow-2);
}

.gallery-story strong {
  overflow-wrap: anywhere;
}

.gallery-item {
  box-shadow: var(--shadow-1);
  transition: transform 450ms var(--ease-premium), box-shadow 450ms ease;
}

.gallery-item:hover {
  transform: translateY(-8px) rotate(-0.4deg);
  box-shadow: var(--shadow-3);
}

.reviews {
  overflow: hidden;
  padding-block: 128px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--color-navy-950);
  background-size: 48px 48px;
  color: var(--color-white);
}

.reviews .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.68);
}

.reviews .section-heading h2 {
  color: var(--color-white);
}

.review-showcase {
  margin-top: 64px;
}

.review-card {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.16);
}

.review-cta {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  backdrop-filter: blur(16px);
}

.review-cta span {
  color: rgba(255, 255, 255, 0.68);
}

.review-cta .button-outline {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

.shopping {
  padding-block: 144px;
  background: var(--color-concrete-50);
}

.channel-grid {
  align-items: stretch;
  margin-top: 56px;
}

.channel-card {
  min-height: 420px;
  justify-content: flex-start;
  border-color: rgba(6, 26, 47, 0.08);
  background: rgba(251, 250, 247, 0.82);
  backdrop-filter: blur(12px);
}

.channel-card .button {
  margin-top: auto;
}

.channel-card:not(.channel-whatsapp):hover {
  transform: translateY(-8px) scale(1.015);
  border-color: rgba(242, 103, 34, 0.24);
  box-shadow: var(--shadow-2);
}

.channel-logo {
  transition: transform 420ms var(--ease-premium);
}

.channel-card:hover .channel-logo {
  transform: translateY(-4px) rotate(-3deg) scale(1.06);
}

.cta-band,
.final-cta {
  overflow: hidden;
}

.cta-band::before,
.final-cta::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(112deg, transparent 63%, rgba(255, 255, 255, 0.08) 63.2%, transparent 63.4%),
    linear-gradient(112deg, transparent 73%, rgba(255, 255, 255, 0.05) 73.2%, transparent 73.4%);
  content: "";
  pointer-events: none;
}

.location {
  padding-block: 144px;
  background: var(--color-ivory-50);
}

.location-grid {
  gap: 64px;
}

.location-content {
  gap: 64px;
}

.info-panel {
  border: 1px solid rgba(6, 26, 47, 0.08);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: var(--shadow-1);
  backdrop-filter: blur(16px);
}

.info-item {
  transition: background-color 240ms ease, transform 320ms var(--ease-premium);
}

a.info-item:hover {
  background: var(--color-white);
  transform: translateY(-3px);
}

.map-panel {
  min-height: 540px;
  border: 8px solid var(--color-white);
  box-shadow: var(--shadow-3);
  transition: transform 450ms var(--ease-premium), box-shadow 450ms ease;
}

.map-panel:hover {
  transform: translateY(-6px);
  box-shadow: 0 40px 100px rgba(6, 26, 47, 0.2);
}

.site-footer {
  position: relative;
  overflow: hidden;
  padding-top: 112px;
  background: var(--color-navy-950);
  isolation: isolate;
}

.site-footer::before {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(90deg, rgba(6, 26, 47, 0.98), rgba(6, 26, 47, 0.8)),
    url("../images/gallery/store-front-wide.webp") center / cover no-repeat;
  content: "";
}

.site-footer::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 48px 48px;
  content: "";
}

.footer-statement {
  padding-bottom: 80px;
}

.footer-statement h2 {
  max-width: 10ch;
  font-size: clamp(3.2rem, 7vw, 7.2rem);
  line-height: 0.94;
}

.footer-grid {
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  padding-top: 64px;
}

.floating-whatsapp {
  box-shadow: 0 18px 48px rgba(6, 26, 47, 0.22);
  transition: width 420ms var(--ease-premium), transform 320ms var(--ease-premium), box-shadow 320ms ease;
}

.section-reveal {
  will-change: opacity, transform;
}

@media (max-width: 1180px) {
  .hero h1 {
    max-width: 9.6em;
    font-size: clamp(3.4rem, 5.4vw, 5.3rem);
  }

  .hero-info-panel {
    width: min(330px, 31vw);
  }

  .feature-item-main {
    grid-column: 1 / span 6;
  }

  .feature-grid::before {
    left: 50%;
  }

  .feature-item:nth-child(2),
  .feature-item:nth-child(4) {
    grid-column: 7 / -1;
  }

  .feature-item:nth-child(3) {
    grid-column: 7 / -1;
    margin-left: 0;
  }
}

@media (min-width: 821px) {
  .hero-content > .status-badge {
    display: none;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 8px;
  }

  .header-inner {
    min-height: 64px;
    border-radius: 18px;
    padding-inline: 10px;
  }

  .primary-nav {
    top: 84px;
    border-color: rgba(6, 26, 47, 0.1);
    background: rgba(251, 250, 247, 0.96);
    backdrop-filter: blur(20px);
  }

  .hero {
    min-height: auto;
    border-radius: 0 0 28px 28px;
  }

  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(6, 26, 47, 0.96) 0%, rgba(6, 26, 47, 0.66) 54%, rgba(6, 26, 47, 0.2) 100%),
      linear-gradient(90deg, rgba(6, 26, 47, 0.42), transparent 70%);
  }

  .hero-content {
    min-height: min(812px, calc(100svh - 32px));
    align-content: end;
    padding-block: 104px 48px;
  }

  .hero .status-badge {
    display: inline-flex;
    margin-bottom: 16px;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.2rem, 12vw, 5rem);
  }

  .hero-copy {
    max-width: 46ch;
    margin-top: 24px;
  }

  .hero-info-panel {
    display: none;
  }

  .hero-panel-trust,
  .hero-panel-marketplaces {
    display: none;
  }

  .hero-panel-actions {
    padding-top: 20px;
  }

  .hero-actions .button-secondary {
    display: none;
  }

  .hero-scroll {
    display: none;
  }

  .advantages,
  .about,
  .reviews,
  .shopping,
  .location {
    padding-block: 96px;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 16px;
    margin-top: 48px;
  }

  .feature-grid::before {
    display: none;
  }

  .feature-item,
  .feature-item:nth-child(2),
  .feature-item:nth-child(3),
  .feature-item:nth-child(4),
  .feature-item-main {
    grid-row: auto;
    grid-column: 1;
    min-height: 250px;
    margin-left: 0;
  }

  .feature-item-main {
    min-height: 520px;
  }

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

  .about .section-heading {
    position: static;
  }

  .gallery-item-large {
    height: 580px;
  }

  .gallery-story {
    margin-left: -32px;
  }

  .map-panel {
    min-height: 440px;
  }
}

@media (max-width: 560px) {
  .site-header .container {
    width: calc(100% - 24px);
  }

  .brand-text strong {
    max-width: 15ch;
    font-size: 0.84rem;
  }

  .brand-text span {
    display: none;
  }

  .hero-content {
    min-height: min(812px, calc(100svh - 32px));
    padding-bottom: 56px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13.5vw, 4rem);
  }

  .hero-actions .button,
  .hero-actions .text-link {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .trust-list {
    display: none;
  }

  .hero-panel-location {
    padding-block: 16px;
  }

  .hero-panel-actions {
    flex-direction: column;
  }

  .hero-panel-actions .button {
    width: 100%;
  }

  .quick-contact {
    margin-top: -16px;
  }

  .section-heading h2,
  .cta-band h2,
  .location h2,
  .final-cta h2 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .advantages,
  .about,
  .reviews,
  .shopping,
  .location {
    padding-block: 80px;
  }

  .feature-item-main {
    min-height: 440px;
  }

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

  .gallery-item-large,
  .gallery-item:not(.gallery-item-large) {
    grid-row: auto;
    height: 460px;
    min-height: 0;
    margin-top: 0;
  }

  .gallery-item:not(.gallery-item-large) {
    height: 300px;
  }

  .gallery-story {
    min-height: 220px;
    margin: -48px 16px 0;
  }

  .channel-card {
    min-height: 360px;
  }

  .map-panel {
    min-height: 340px;
    border-width: 4px;
  }

  .footer-statement h2 {
    font-size: clamp(3rem, 15vw, 4.8rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-media img,
  .section-reveal {
    transform: none !important;
    will-change: auto;
  }

  .hero-scroll span::after {
    animation: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .section-reveal {
    opacity: 1;
    transform: none;
  }

  .review-track {
    animation: none;
    transform: none;
  }
}

@media (max-width: 1080px) {
  .feature-item-main {
    grid-row: auto;
  }

  .location-content {
    grid-template-columns: 1fr;
  }

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

  .footer-statement {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 820px) {
  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(6, 26, 47, 0.88), rgba(6, 26, 47, 0.34)),
      radial-gradient(circle at 74% 70%, rgba(242, 103, 34, 0.2), transparent 36%);
  }

  .hero-content {
    padding-block: 118px 54px;
  }

  .hero .status-badge {
    display: none;
  }

  .hero-info-panel {
    position: static;
    width: min(100%, 420px);
    grid-template-columns: auto minmax(0, 1fr) auto;
    margin-top: 26px;
    padding: 14px;
  }

  .trust-list {
    gap: 10px;
    margin-top: 24px;
  }

  .trust-list li,
  .trust-list li:first-child {
    border-left: 0;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.1);
    padding: 8px 10px;
  }

  .quick-contact {
    margin-top: 0;
    padding-block: 20px 34px;
    background: var(--color-ivory-50);
  }

  .quick-contact-heading {
    display: none;
  }

  .quick-item {
    min-height: 72px;
    gap: 12px;
  }

  .quick-icon,
  .quick-symbol {
    width: 44px;
    height: 44px;
    border-radius: 16px;
  }

  .about-grid,
  .location-content {
    gap: 28px;
  }

  .review-showcase {
    mask-image: linear-gradient(90deg, transparent, #000 4%, #000 96%, transparent);
  }

  .review-card {
    width: min(86vw, 380px);
  }

  .cta-inner {
    gap: 24px;
  }
}

@media (max-width: 560px) {
  .container {
    width: min(100% - 32px, var(--container));
  }

  .section,
  .advantages,
  .about,
  .shopping,
  .reviews,
  .location {
    padding-block: 56px;
  }

  .hero h1 {
    max-width: 11ch;
  }

  .hero-copy {
    font-size: 1rem;
    line-height: 1.65;
  }

  .quick-contact-inner,
  .feature-grid,
  .channel-grid,
  .footer-grid,
  .shopping-note {
    grid-template-columns: 1fr;
  }

  .quick-contact-inner {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    padding: 8px;
  }

  .quick-item {
    flex-direction: column;
    align-items: flex-start;
    min-height: 124px;
  }

  .feature-item,
  .channel-card,
  .review-card {
    padding: 22px;
  }

  .gallery {
    gap: 14px;
  }

  .gallery-story {
    padding: 22px;
  }

  .map-panel,
  .map-panel iframe {
    min-height: 330px;
  }

  .footer-statement-actions,
  .footer-statement-actions .button {
    width: 100%;
  }
}

@media (min-width: 821px) and (max-width: 1180px) {
  .feature-item-main {
    grid-row: 1 / span 3;
  }
}

@media (max-width: 820px) {
  .hero-media::after {
    background:
      linear-gradient(0deg, rgba(6, 26, 47, 0.96) 0%, rgba(6, 26, 47, 0.66) 54%, rgba(6, 26, 47, 0.2) 100%),
      linear-gradient(90deg, rgba(6, 26, 47, 0.42), transparent 70%);
  }

  .hero-content {
    min-height: min(812px, calc(100svh - 32px));
    align-content: end;
    padding-block: 104px 48px;
  }

  .hero .status-badge {
    display: inline-flex;
    margin-bottom: 16px;
  }

  .hero-info-panel,
  .hero-scroll,
  .trust-list,
  .hero-actions .button-secondary,
  .floating-whatsapp {
    display: none;
  }

  .hero h1 {
    max-width: 11ch;
    font-size: clamp(3.2rem, 12vw, 5rem);
  }

  .quick-contact {
    margin-top: -16px;
    background: transparent;
  }

  .about .section-heading {
    position: static;
  }

  .gallery-item-large {
    height: 580px;
    min-height: 0;
    aspect-ratio: auto;
  }
}

@media (max-width: 560px) {
  .hero-content {
    min-height: min(812px, calc(100svh - 32px));
    padding-block: 96px 48px;
  }

  .hero h1 {
    font-size: clamp(2.85rem, 13.5vw, 4rem);
  }

  .advantages,
  .about,
  .reviews,
  .shopping,
  .location {
    padding-block: 80px;
  }

  .gallery-item-large,
  .gallery-item:not(.gallery-item-large) {
    height: 460px;
    min-height: 0;
    margin-top: 0;
    aspect-ratio: auto;
  }

  .gallery-item:not(.gallery-item-large) {
    height: 300px;
  }

  .gallery-story {
    min-height: 220px;
    margin: -48px 16px 0;
  }
}

/* Location flagship: official map and single editorial information panel. */
.location {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  padding-block: clamp(104px, 9vw, 144px);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.72), rgba(241, 242, 240, 0.38)),
    linear-gradient(rgba(6, 26, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 47, 0.035) 1px, transparent 1px),
    #f1f2f0;
  background-size: auto, 40px 40px, 40px 40px, auto;
}

.location::before {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    repeating-radial-gradient(circle at 0 0, rgba(6, 26, 47, 0.022) 0 0.7px, transparent 0.8px 5px),
    linear-gradient(118deg, transparent 16%, rgba(255, 255, 255, 0.62) 48%, transparent 82%);
  content: "";
  pointer-events: none;
}

.location-heading {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(280px, 5fr);
  gap: 32px;
  align-items: end;
  margin-bottom: 56px;
}

.location-heading h2,
.location-heading p {
  margin-inline: 0;
}

.location-heading h2 {
  max-width: 760px;
  margin-top: 12px;
}

.location-heading > p {
  max-width: 48ch;
  margin: 0 0 8px;
  color: var(--color-gray-700);
  font-size: 1.05rem;
  line-height: 1.8;
}

.location-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: center;
}

.location-map {
  grid-column: 1 / span 7;
  width: 100%;
  height: 600px;
  min-height: 600px;
  overflow: hidden;
  border: 1px solid rgba(6, 26, 47, 0.1);
  border-radius: 28px;
  background: #e7e9e6;
  box-shadow: 0 30px 80px rgba(6, 26, 47, 0.15);
  transition: transform 420ms var(--ease-premium), box-shadow 420ms ease;
}

.location-map:hover {
  transform: translateY(-4px);
  box-shadow: 0 38px 92px rgba(6, 26, 47, 0.19);
}

.location-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: 0;
  border: 0;
}

.location-card {
  position: relative;
  z-index: 2;
  grid-column: 8 / -1;
  min-width: 0;
  margin-left: 0;
  border: 1px solid rgba(6, 26, 47, 0.09);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  padding: clamp(30px, 3vw, 42px);
  box-shadow: 0 28px 76px rgba(6, 26, 47, 0.15);
  backdrop-filter: blur(18px);
  transition: transform 420ms var(--ease-premium), box-shadow 420ms ease;
}

.location-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 36px 88px rgba(6, 26, 47, 0.19);
}

.location-card-header {
  padding-bottom: 26px;
}

.location-kicker {
  margin: 0 0 8px;
  color: var(--color-orange-600);
  font-size: 0.75rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.location-card h3 {
  margin: 0;
  color: var(--color-navy-950);
  font-size: clamp(1.7rem, 2.6vw, 2.35rem);
  line-height: 1.08;
}

.location-card .status-badge {
  flex-wrap: wrap;
  margin-top: 18px;
  padding: 8px 12px;
}

.status-badge.is-closed .status-dot {
  background: #d74747;
  box-shadow: 0 0 0 4px rgba(215, 71, 71, 0.14);
}

.location-details {
  border-block: 1px solid rgba(6, 26, 47, 0.1);
}

.location-detail {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: start;
  min-width: 0;
  padding-block: 18px;
  border-bottom: 1px solid rgba(6, 26, 47, 0.08);
  transition: color 200ms ease, transform 260ms var(--ease-premium);
}

.location-detail:last-child {
  border-bottom: 0;
}

a.location-detail:hover {
  color: var(--color-orange-600);
  transform: translateX(3px);
}

.location-detail-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 14px;
  background: var(--color-concrete-50);
  color: var(--color-orange-600);
}

.location-detail-icon svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.location-detail h4,
.location-detail p,
.location-detail address {
  margin: 0;
}

.location-detail h4 {
  color: var(--color-gray-500);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.4;
  text-transform: uppercase;
}

.location-detail p,
.location-detail address,
.location-detail .hours-list {
  margin-top: 4px;
  color: var(--color-navy-950);
  font-size: 0.95rem;
  line-height: 1.55;
  overflow-wrap: anywhere;
}

.location-detail address span {
  display: block;
}

.location-detail .hours-list {
  display: grid;
  gap: 4px;
}

.location-detail .hours-row {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  border: 0;
  padding: 0;
}

.location-detail .hours-row span {
  color: var(--color-gray-700);
}

.location-detail .hours-row strong {
  color: var(--color-navy-950);
  white-space: nowrap;
}

.location-card .location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  margin-top: 26px;
}

.location-card .button {
  min-width: 0;
  min-height: 54px;
  padding-inline: 16px;
}

@media (max-width: 1080px) {
  .location-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .location-editorial {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .location-map,
  .location-card {
    grid-column: 1;
    margin-left: 0;
  }

  .location-map {
    height: 480px;
    min-height: 480px;
  }

  .location-card {
    width: min(100%, 760px);
    justify-self: center;
  }
}

@media (max-width: 560px) {
  .location {
    padding-block: 80px;
  }

  .location-heading {
    margin-bottom: 34px;
    text-align: center;
  }

  .location-heading h2,
  .location-heading > p {
    margin-inline: auto;
  }

  .location-map {
    height: 340px;
    min-height: 340px;
    border-radius: 28px;
  }

  .location-card {
    padding: 26px 22px;
    text-align: center;
  }

  .location-card .status-badge {
    justify-content: center;
    margin-inline: auto;
  }

  .location-detail {
    grid-template-columns: 1fr;
    justify-items: center;
  }

  .location-detail .hours-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .location-detail .hours-row strong {
    white-space: normal;
  }

  a.location-detail:hover {
    transform: translateY(-2px);
  }

  .location-card .location-actions {
    grid-template-columns: 1fr;
  }

  .location-card .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .location-map,
  .location-card,
  .location-detail {
    transition: none;
  }
}

/* Professional UI refinement: final authority layer. */
:root {
  --section-space: 112px;
  --section-space-compact: 88px;
  --shadow-refined-small: 0 8px 24px rgba(6, 26, 47, 0.055);
  --shadow-refined-medium: 0 20px 56px rgba(6, 26, 47, 0.1);
  --shadow-refined-large: 0 30px 76px rgba(6, 26, 47, 0.14);
}

.section,
.advantages,
.about,
.shopping,
.reviews,
.location {
  padding-block: var(--section-space);
}

.section-heading {
  max-width: 700px;
  margin-bottom: 44px;
}

.section-heading h2,
.cta-band h2,
.location-heading h2,
.final-cta h2 {
  font-size: 3.75rem;
  font-weight: 740;
  line-height: 1.04;
}

.section-heading p:not(.eyebrow),
.location-heading > p {
  max-width: 54ch;
  margin-top: 20px;
  color: #405064;
  font-size: 1.04rem;
  line-height: 1.72;
}

.button {
  min-height: 52px;
  padding: 14px 21px;
  box-shadow: none;
}

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

.button:active {
  transform: translateY(0) scale(0.985);
}

.button-primary {
  box-shadow: 0 12px 26px rgba(242, 103, 34, 0.18);
}

.button-whatsapp {
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.16);
}

/* Hero refinement */
.hero,
.hero-content {
  min-height: 760px;
}

.hero::before,
.hero::after {
  display: none;
}

.hero-media::after {
  background:
    linear-gradient(90deg, rgba(6, 26, 47, 0.95) 0%, rgba(6, 26, 47, 0.76) 40%, rgba(6, 26, 47, 0.22) 76%),
    linear-gradient(0deg, rgba(6, 26, 47, 0.38), rgba(6, 26, 47, 0.04) 58%);
}

.hero-content {
  padding-block: 126px 100px;
}

.hero h1 {
  max-width: 11ch;
  font-size: 4.55rem;
  line-height: 1.01;
}

.hero-copy {
  max-width: 54ch;
  margin-top: 22px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.08rem;
  line-height: 1.68;
}

.hero-actions {
  margin-top: 26px;
}

.trust-list {
  gap: 10px 18px;
  margin-top: 28px;
}

.trust-list li {
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.86rem;
}

.hero-info-panel {
  bottom: 72px;
  width: 332px;
  padding: 20px;
  border-radius: 22px;
  box-shadow: var(--shadow-refined-large);
}

.hero-panel-status,
.hero-panel-location,
.hero-panel-trust {
  padding-block: 16px;
}

.hero-panel-status {
  padding-top: 0;
}

.hero-panel-marketplaces {
  margin-top: 12px;
}

/* Quick actions */
.quick-contact {
  margin-top: 0;
  padding-block: 20px 28px;
  background: var(--color-ivory-50);
}

.quick-contact-heading {
  margin-bottom: 10px;
}

.quick-contact-inner {
  grid-auto-rows: 1fr;
  gap: 10px;
  padding: 10px;
  box-shadow: var(--shadow-refined-medium);
}

.quick-item {
  height: 100%;
  min-height: 82px;
  gap: 14px;
  padding: 14px 16px;
}

.quick-item:hover {
  background: rgba(255, 255, 255, 0.92);
  transform: translateY(-3px);
  box-shadow: var(--shadow-refined-small);
}

.quick-icon,
.quick-symbol {
  width: 46px;
  height: 46px;
  border-radius: 15px;
}

.quick-icon img {
  width: 34px;
  height: 34px;
}

/* Advantages: one visual anchor and three scan-friendly reasons. */
.advantages {
  background:
    linear-gradient(rgba(6, 26, 47, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 47, 0.028) 1px, transparent 1px),
    var(--color-concrete-50);
  background-size: 40px 40px;
}

.advantages::before {
  height: 44px;
  opacity: 0.65;
}

.advantages .section-heading {
  max-width: 670px;
  margin-bottom: 46px;
}

.advantages .section-heading h2 {
  font-size: 3.45rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-template-rows: repeat(3, minmax(0, 1fr));
  gap: 16px 24px;
  margin-top: 0;
}

.feature-grid::before {
  display: none;
}

.feature-item,
.feature-item:nth-child(2),
.feature-item:nth-child(3),
.feature-item:nth-child(4) {
  grid-column: 8 / -1;
  min-height: 0;
  margin-left: 0;
  border: 1px solid rgba(6, 26, 47, 0.08);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.88);
  padding: 23px 24px;
  box-shadow: var(--shadow-refined-small);
  backdrop-filter: none;
}

.feature-item:not(.feature-item-main) {
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  grid-template-areas:
    "icon title number"
    "icon body number";
  gap: 4px 16px;
  align-content: center;
  align-items: start;
}

.feature-item:nth-child(2) {
  grid-row: 1;
}

.feature-item:nth-child(3) {
  grid-row: 2;
}

.feature-item:nth-child(4) {
  grid-row: 3;
}

.feature-item:not(.feature-item-main) .feature-icon {
  grid-area: icon;
}

.feature-item:not(.feature-item-main) h3 {
  grid-area: title;
  margin: 1px 0 0;
  font-size: 1.08rem;
}

.feature-item:not(.feature-item-main) p {
  grid-area: body;
  margin: 2px 0 0;
  color: #405064;
  font-size: 0.93rem;
  line-height: 1.58;
}

.feature-item:not(.feature-item-main) .feature-number {
  position: static;
  grid-area: number;
  color: var(--color-gray-500);
  font-size: 0.7rem;
  line-height: 1.4;
}

.feature-item-main {
  display: flex;
  grid-row: 1 / span 3;
  grid-column: 1 / span 7;
  min-height: 584px;
  flex-direction: column;
  justify-content: flex-end;
  padding: 34px;
  background:
    linear-gradient(0deg, rgba(6, 26, 47, 0.93) 0%, rgba(6, 26, 47, 0.54) 42%, rgba(6, 26, 47, 0.08) 76%),
    url("../images/gallery/store-front-main.webp") center / cover no-repeat;
  box-shadow: var(--shadow-refined-medium);
}

.feature-item-main .feature-number {
  top: 24px;
  right: auto;
  left: 26px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.72rem;
}

.feature-item-main h3 {
  margin: 0 0 8px;
  font-size: 1.9rem;
}

.feature-item-main p {
  max-width: 39ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1rem;
  line-height: 1.65;
}

.feature-item:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-refined-medium);
}

/* Store gallery */
.about {
  background: var(--color-ivory-50);
}

.about-grid {
  grid-template-columns: minmax(270px, 0.72fr) minmax(0, 1.38fr);
  gap: 64px;
}

.about .section-heading {
  top: 112px;
}

.about .section-heading h2 {
  font-size: 3.4rem;
}

.gallery {
  gap: 20px;
}

.gallery-item-large {
  height: 640px;
}

.gallery-item:not(.gallery-item-large) {
  height: 340px;
  margin-top: 40px;
}

.gallery-story {
  min-height: 220px;
  margin-left: -40px;
  padding: 30px;
  box-shadow: var(--shadow-refined-medium);
}

.gallery-story strong {
  font-size: 1.3rem;
}

.gallery-item:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-refined-medium);
}

/* Marketplace reviews */
.reviews {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    var(--color-navy-950);
  background-size: 48px 48px;
}

.reviews .section-heading {
  margin-bottom: 24px;
}

.reviews .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.76);
}

.review-filter {
  display: flex;
  width: fit-content;
  margin-inline: auto;
  gap: 6px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  padding: 5px;
}

.review-filter button {
  min-height: 42px;
  border: 0;
  border-radius: 10px;
  background: transparent;
  padding: 10px 16px;
  color: rgba(255, 255, 255, 0.76);
  font: inherit;
  font-size: 0.88rem;
  font-weight: 850;
  cursor: pointer;
  transition: color 180ms ease, background-color 180ms ease, transform 180ms ease;
}

.review-filter button:hover {
  color: var(--color-white);
}

.review-filter button.is-active {
  background: var(--color-white);
  color: var(--color-navy-950);
  box-shadow: var(--shadow-refined-small);
}

.review-filter button:active {
  transform: scale(0.97);
}

.review-showcase {
  margin-top: 36px;
  padding-bottom: 24px;
  mask-image: linear-gradient(90deg, transparent, #000 3%, #000 97%, transparent);
}

.review-showcase.is-filtered .review-track {
  animation-duration: 34s;
}

.review-track {
  gap: 18px;
}

.review-card {
  position: relative;
  width: 360px;
  height: 470px;
  min-height: 470px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 22px;
  padding: 24px;
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.15);
}

.review-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  border-radius: 22px 22px 0 0;
  content: "";
}

.review-card-shopee::before {
  background: var(--color-shopee);
}

.review-card-tokopedia {
  background: linear-gradient(145deg, #ffffff, #f5fbf5);
}

.review-card-tokopedia::before {
  background: var(--color-tokopedia);
}

.review-source {
  width: fit-content;
  margin-top: 0;
  border-radius: 10px;
  padding: 5px 9px 5px 6px;
}

.review-source-shopee {
  background: rgba(238, 77, 45, 0.1);
  color: #a9321c;
}

.review-source-tokopedia {
  background: rgba(3, 172, 14, 0.1);
  color: #087d12;
}

.review-source span {
  margin-top: 0;
  color: inherit;
  font-size: 0.78rem;
}

.review-card blockquote {
  margin-top: 14px;
  line-height: 1.6;
  -webkit-line-clamp: 3;
}

.review-card cite {
  margin-top: 14px;
  color: var(--color-navy-950);
}

.review-details {
  gap: 6px;
  margin-top: 12px;
}

.review-meta {
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-source-link {
  background: var(--color-navy-950);
  color: var(--color-white);
}

.review-photo {
  width: 76px;
  height: 64px;
}

.review-cta-row {
  margin-top: 20px;
}

.review-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  padding: 24px 28px;
  box-shadow: none;
}

.reviews .review-cta strong {
  color: var(--color-white);
}

.review-cta-actions {
  display: grid;
  grid-template-columns: repeat(2, auto);
}

.review-cta-actions .button {
  width: auto;
}

/* Shopping and consultation CTA */
.shopping {
  background: var(--color-concrete-50);
}

.shopping-note {
  gap: 14px;
  margin-bottom: 34px;
}

.shopping-note p {
  padding: 18px 20px;
  border-radius: 18px;
  box-shadow: none;
}

.channel-grid {
  gap: 18px;
  margin-top: 40px;
}

.channel-card {
  min-height: 342px;
  padding: 24px;
  box-shadow: var(--shadow-refined-small);
}

.channel-logo {
  width: 56px;
  height: 56px;
}

.channel-logo img {
  width: 42px;
  height: 42px;
}

.channel-card h3 {
  margin-top: 18px;
}

.channel-card p {
  margin-bottom: 22px;
  font-size: 0.94rem;
  line-height: 1.62;
}

.channel-card:not(.channel-whatsapp):hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-refined-medium);
}

.cta-band {
  padding-block: 92px;
  background: linear-gradient(135deg, var(--color-navy-950), var(--color-navy-800));
}

.cta-inner {
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr);
  gap: 64px;
}

.cta-band h2 {
  max-width: 15ch;
  color: var(--color-white);
  font-size: 3.35rem;
}

.cta-band p:not(.eyebrow) {
  max-width: 55ch;
  color: rgba(255, 255, 255, 0.8);
}

.cta-band .eyebrow,
.final-cta .eyebrow {
  color: var(--color-orange-500);
}

.cta-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin: 30px 0 0;
  padding: 0;
  list-style: none;
}

.cta-steps li {
  display: grid;
  gap: 4px;
  border-top: 1px solid rgba(255, 255, 255, 0.22);
  padding-top: 12px;
}

.cta-steps span {
  color: var(--color-orange-500);
  font-size: 0.7rem;
  font-weight: 900;
}

.cta-steps strong {
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.86rem;
  line-height: 1.4;
}

.cta-actions {
  display: grid;
  width: 100%;
  margin-top: 0;
}

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

/* Location alignment and lighter elevation */
.location-heading {
  margin-bottom: 46px;
}

.location-editorial {
  align-items: stretch;
}

.location-map {
  height: 620px;
  min-height: 620px;
  border-color: rgba(6, 26, 47, 0.08);
  box-shadow: var(--shadow-refined-medium);
}

.location-map:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-refined-large);
}

.location-card {
  display: flex;
  height: 620px;
  flex-direction: column;
  margin-left: 0;
  padding: 30px 32px;
  box-shadow: var(--shadow-refined-medium);
}

.location-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-refined-large);
}

.location-card-header {
  padding-bottom: 16px;
}

.location-card h3 {
  font-size: 2rem;
}

.location-card .status-badge {
  margin-top: 14px;
}

.location-detail {
  padding-block: 12px;
}

.location-detail-icon {
  width: 40px;
  height: 40px;
}

.location-card .location-actions {
  margin-top: auto;
  padding-top: 18px;
}

.location-card .button {
  min-height: 52px;
}

/* Final CTA and footer */
.final-cta {
  padding-block: 96px;
  background:
    linear-gradient(90deg, rgba(7, 27, 49, 0.96) 0%, rgba(7, 27, 49, 0.8) 58%, rgba(7, 27, 49, 0.6)),
    image-set(
      url("../images/gallery/store-front-wide.webp") type("image/webp"),
      url("../images/gallery/store-front-wide.jpg") type("image/jpeg")
    ) center / cover;
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  gap: 72px;
  align-items: center;
  max-width: var(--container);
}

.final-cta h2 {
  max-width: 15ch;
  font-size: 3.5rem;
}

.final-cta-copy > p:not(.eyebrow) {
  max-width: 52ch;
}

.final-cta-proof {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  border-block: 1px solid rgba(255, 255, 255, 0.2);
  list-style: none;
}

.final-cta-proof li {
  display: grid;
  gap: 2px;
  padding-block: 16px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

.final-cta-proof li:last-child {
  border-bottom: 0;
}

.final-cta-proof strong {
  color: var(--color-white);
  font-size: 0.96rem;
}

.final-cta-proof span {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.site-footer {
  padding-top: 78px;
  color: rgba(255, 255, 255, 0.82);
}

.footer-statement {
  align-items: center;
  margin-bottom: 48px;
  padding-bottom: 0;
}

.footer-statement h2 {
  max-width: 13ch;
  font-size: 3.4rem;
  line-height: 1.02;
}

.footer-grid {
  grid-template-columns: minmax(250px, 1.25fr) repeat(3, minmax(140px, 0.55fr));
  gap: 36px;
  padding-top: 44px;
}

.site-footer p {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
  line-height: 1.7;
}

.site-footer nav {
  gap: 7px;
  font-size: 0.92rem;
}

.site-footer nav span {
  color: rgba(255, 255, 255, 0.72);
}

.footer-bottom {
  margin-top: 28px;
  padding-top: 18px;
}

/* Reliable floating WhatsApp behavior. */
.floating-whatsapp,
.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 190px;
  max-width: calc(100vw - 36px);
  min-height: 56px;
  justify-content: flex-start;
  overflow: hidden;
  padding-right: 14px;
  transform: none;
  box-shadow: var(--shadow-refined-medium);
}

.floating-whatsapp:hover,
.floating-whatsapp:focus-visible {
  transform: translateY(-3px);
  box-shadow: var(--shadow-refined-large);
}

.floating-whatsapp span {
  min-width: 0;
  padding-right: 0;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  :root {
    --section-space: 96px;
  }

  .section-heading h2,
  .location-heading h2 {
    font-size: 3.25rem;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: 4rem;
  }

  .hero-info-panel {
    width: 310px;
  }

  .feature-item-main {
    min-height: 540px;
  }

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

  .channel-card {
    min-height: 310px;
  }

  .location-card {
    margin-left: 0;
  }
}

@media (max-width: 1080px) {
  .feature-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto auto;
    gap: 18px;
  }

  .feature-item-main {
    grid-row: 1;
    grid-column: 1 / -1;
    min-height: 480px;
  }

  .feature-item:nth-child(2),
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) {
    grid-row: 2;
    grid-column: auto;
  }

  .feature-item:not(.feature-item-main) {
    grid-template-columns: 44px minmax(0, 1fr);
    grid-template-areas:
      "icon number"
      "title title"
      "body body";
    align-content: start;
    min-height: 220px;
  }

  .feature-item:not(.feature-item-main) .feature-number {
    justify-self: end;
  }

  .location-map {
    height: 480px;
    min-height: 480px;
  }

  .location-card {
    width: min(100%, 760px);
    height: auto;
    margin-left: 0;
  }

  .final-cta-inner {
    gap: 44px;
  }

  .footer-grid {
    grid-template-columns: minmax(240px, 1fr) repeat(3, minmax(120px, 0.55fr));
    gap: 24px;
  }
}

@media (max-width: 820px) {
  :root {
    --section-space: 84px;
  }

  .section-heading h2,
  .location-heading h2,
  .cta-band h2,
  .final-cta h2 {
    font-size: 2.8rem;
  }

  .hero,
  .hero-content {
    min-height: min(760px, calc(100svh - 24px));
  }

  .hero-content {
    padding-block: 108px 52px;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: 3.45rem;
  }

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

  .quick-contact {
    margin-top: 0;
    padding-block: 18px 24px;
  }

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

  .advantages .section-heading h2,
  .about .section-heading h2 {
    font-size: 2.8rem;
  }

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

  .about .section-heading {
    position: static;
  }

  .gallery-item-large {
    height: 540px;
  }

  .gallery-item:not(.gallery-item-large) {
    height: 300px;
    margin-top: 24px;
  }

  .gallery-story {
    margin-left: -26px;
  }

  .cta-inner,
  .final-cta-inner {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .cta-actions {
    max-width: 420px;
  }

  .final-cta-proof {
    max-width: 560px;
  }

  .footer-statement {
    align-items: flex-start;
  }

  .footer-statement h2 {
    font-size: 2.8rem;
  }

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

  .floating-whatsapp,
  .floating-whatsapp:hover,
  .floating-whatsapp:focus-visible {
    right: max(14px, env(safe-area-inset-right));
    bottom: calc(88px + env(safe-area-inset-bottom));
    display: inline-flex;
    width: 54px;
    max-width: 54px;
    min-height: 54px;
    justify-content: center;
    padding: 0;
    border-radius: 50%;
  }

  .floating-whatsapp img {
    width: 42px;
    height: 42px;
    margin: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 700px) {
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .feature-item-main,
  .feature-item,
  .feature-item:nth-child(2),
  .feature-item:nth-child(3),
  .feature-item:nth-child(4) {
    grid-row: auto;
    grid-column: 1;
  }

  .feature-item-main {
    min-height: 420px;
  }

  .feature-item:not(.feature-item-main) {
    grid-template-columns: 44px minmax(0, 1fr) auto;
    grid-template-areas:
      "icon title number"
      "icon body number";
    min-height: 0;
  }
}

@media (max-width: 560px) {
  :root {
    --section-space: 72px;
  }

  .section,
  .advantages,
  .about,
  .shopping,
  .reviews,
  .location {
    padding-block: var(--section-space);
  }

  .section-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .location-heading h2,
  .cta-band h2,
  .final-cta h2,
  .advantages .section-heading h2,
  .about .section-heading h2 {
    font-size: 2.35rem;
    line-height: 1.08;
  }

  .hero h1 {
    max-width: 10ch;
    font-size: 2.85rem;
    line-height: 1.04;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .hero-actions {
    gap: 10px;
    margin-top: 22px;
  }

  .quick-contact-inner {
    gap: 8px;
  }

  .quick-item {
    min-height: 118px;
    align-items: flex-start;
    padding: 14px;
  }

  .feature-item-main {
    min-height: 390px;
    padding: 26px;
  }

  .feature-item-main h3 {
    font-size: 1.55rem;
  }

  .feature-item:not(.feature-item-main) {
    padding: 20px;
  }

  .gallery-item-large {
    height: 440px;
  }

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

  .gallery-item:not(.gallery-item-large) {
    height: 280px;
    margin-top: 0;
  }

  .gallery-story {
    min-height: 0;
    margin: -36px 14px 0;
    padding: 24px;
  }

  .review-filter {
    width: 100%;
  }

  .review-filter button {
    flex: 1;
    min-width: 0;
    padding-inline: 10px;
  }

  .review-showcase {
    mask-image: none;
  }

  .review-track {
    animation: none;
    transform: none;
  }

  .review-card {
    width: min(86vw, 350px);
    height: 450px;
    min-height: 450px;
    padding: 22px;
  }

  .review-cta {
    display: flex;
    align-items: stretch;
    flex-direction: column;
    padding: 22px;
  }

  .review-cta-actions,
  .review-cta-actions .button {
    width: 100%;
  }

  .channel-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .channel-card {
    min-height: 0;
    padding: 22px;
  }

  .cta-band,
  .final-cta {
    padding-block: 72px;
  }

  .cta-steps {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .cta-steps li {
    grid-template-columns: 32px 1fr;
    align-items: center;
  }

  .location-map {
    height: 340px;
    min-height: 340px;
  }

  .location-card {
    height: auto;
    padding: 26px 22px;
  }

  .final-cta-proof {
    width: 100%;
  }

  .footer-statement h2 {
    font-size: 2.45rem;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .site-footer nav {
    padding-top: 4px;
  }
}

/* Premium design-system unification. */
:root {
  --radius-card: 24px;
  --radius-panel: 24px;
  --radius-small-card: 20px;
  --radius-button: 16px;
  --radius-icon: 18px;
  --elevation-1: 0 4px 12px rgba(15, 23, 42, 0.05);
  --elevation-2: 0 12px 32px rgba(15, 23, 42, 0.08);
  --shadow-1: var(--elevation-1);
  --shadow-2: var(--elevation-2);
  --shadow-3: var(--elevation-2);
  --shadow-small: var(--elevation-1);
  --shadow-medium: var(--elevation-2);
  --shadow-large: var(--elevation-2);
  --shadow-soft: var(--elevation-2);
  --shadow-card: var(--elevation-1);
  --shadow-refined-small: var(--elevation-1);
  --shadow-refined-medium: var(--elevation-2);
  --shadow-refined-large: var(--elevation-2);
  --motion-fast: 180ms ease;
  --motion-base: 250ms ease;
}

body {
  background: var(--color-ivory-50);
}

/* One optical system for every official marketplace logo. */
.marketplace-logo {
  display: flex;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.marketplace-logo img {
  width: auto;
  height: auto;
  max-width: none;
  max-height: none;
  filter: contrast(1.35) saturate(0.92);
  object-fit: contain;
}

.marketplace-logo-shopee img {
  width: 62%;
  height: 62%;
}

.marketplace-logo-tokopedia img {
  width: 58%;
  height: 58%;
}

.marketplace-logo-whatsapp img {
  width: 60%;
  height: 60%;
}

.marketplace-logo-blibli img {
  width: 57%;
  height: 57%;
}

.hero-panel-marketplaces a {
  display: flex;
  width: 56px;
  height: 56px;
  border-radius: 18px;
  transition: transform 250ms ease, box-shadow 250ms ease;
}

.hero-panel-marketplaces a:hover {
  transform: translateY(-3px);
  box-shadow: var(--elevation-2);
}

.quick-icon,
.channel-logo {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  background: var(--color-white);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.quick-item:nth-child(2) .quick-icon,
.quick-item:nth-child(3) .quick-icon {
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.quick-symbol {
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  border: 1px solid rgba(15, 23, 42, 0.06);
  border-radius: var(--radius-icon);
  background: var(--color-white);
  box-shadow: 0 6px 18px rgba(15, 23, 42, 0.05);
}

.review-source .marketplace-logo-image {
  width: 20px;
  height: 20px;
  filter: contrast(1.35) saturate(0.92);
  object-fit: contain;
}

.review-source .marketplace-logo-image-tokopedia {
  width: 19px;
  height: 19px;
}

.floating-whatsapp img {
  width: 34px;
  height: 34px;
  filter: contrast(1.35) saturate(0.92);
  object-fit: contain;
}

/* Unified action hierarchy: green primary, navy primary, and restrained white. */
.button {
  border-radius: var(--radius-button);
  box-shadow: none;
  transition: background-color 250ms ease, border-color 250ms ease,
    color 250ms ease, box-shadow 250ms ease, filter 250ms ease, transform 250ms ease;
}

.button::after {
  display: none;
}

.button:hover {
  filter: brightness(1.03);
  transform: translateY(-2px);
  box-shadow: var(--elevation-1);
}

.button:active {
  filter: none;
  transform: translateY(0) scale(0.985);
}

.button-primary,
.button-platform,
.review-more,
.channel-shopee .button-platform,
.channel-tokopedia .button-platform,
.channel-blibli .button-platform {
  background: var(--color-navy-950);
  color: var(--color-white);
  box-shadow: none;
}

.button-whatsapp {
  box-shadow: none;
}

.button-outline,
.button-light {
  border-color: rgba(15, 23, 42, 0.12);
  background: var(--color-white);
  color: var(--color-navy-950);
}

.review-cta .button-outline {
  border-color: rgba(255, 255, 255, 0.24);
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
}

/* A quiet, animated underline replaces the decorative navigation dot. */
.primary-nav a:not(.button)::before {
  display: none;
}

.primary-nav a:not(.button)::after,
.primary-nav a[aria-current="page"]:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  display: block;
  height: 2px;
  border-radius: 999px;
  background: var(--color-orange-500);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 250ms ease;
}

.primary-nav a:not(.button):hover::after,
.primary-nav a[aria-current="page"]:not(.button)::after {
  transform: scaleX(1);
}

/* Hero type and glass panel refinement. */
.hero h1 {
  max-width: 11ch;
  font-size: 4.1rem;
  line-height: 1.04;
}

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

.hero-info-panel {
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(251, 250, 247, 0.84);
  box-shadow: var(--elevation-2);
  backdrop-filter: blur(28px) saturate(135%);
}

.hero-panel-marketplaces {
  gap: 8px;
  margin-top: 16px;
}

/* Cards share the same radius, elevation, and restrained movement. */
.feature-item,
.channel-card,
.review-card,
.gallery-story,
.review-cta,
.shopping-note p {
  border-radius: var(--radius-card);
}

.feature-item,
.channel-card,
.review-card,
.gallery-story,
.gallery-item {
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.feature-item,
.channel-card,
.review-card {
  box-shadow: var(--elevation-1);
}

.feature-item:hover,
.channel-card:hover,
.channel-card:not(.channel-whatsapp):hover,
.review-card:hover,
.gallery-item:hover {
  border-color: rgba(15, 23, 42, 0.1);
  filter: none;
  transform: translateY(-3px);
  box-shadow: var(--elevation-2);
}

.quick-contact-inner,
.shopping-note p {
  border-radius: var(--radius-small-card);
}

.feature-icon,
.location-detail-icon {
  border-radius: var(--radius-icon);
}

.feature-item,
.feature-item:nth-child(2),
.feature-item:nth-child(3),
.feature-item:nth-child(4) {
  border-radius: var(--radius-card);
  background-color: rgba(255, 255, 255, 0.94);
  box-shadow: var(--elevation-1);
}

.feature-item:not(.feature-item-main) .feature-number {
  display: inline-flex;
  min-width: 32px;
  height: 24px;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  background: rgba(6, 26, 47, 0.055);
  padding-inline: 8px;
  color: var(--color-gray-500);
  line-height: 1;
}

.channel-card {
  border-color: rgba(15, 23, 42, 0.07);
  background: rgba(255, 255, 255, 0.94);
}

.channel-card:hover .channel-logo {
  transform: translateY(-2px);
}

.channel-whatsapp {
  background: linear-gradient(145deg, rgba(6, 26, 47, 0.99), rgba(18, 58, 96, 0.95));
}

.channel-whatsapp h3,
.channel-whatsapp p {
  color: var(--color-white);
}

/* Reviews retain source identity while removing redundant pill styling. */
.review-card {
  border-color: rgba(15, 23, 42, 0.07);
  background: var(--color-white);
}

.review-card::before {
  height: 2px;
  border-radius: 24px 24px 0 0;
}

.review-card-tokopedia {
  background: var(--color-white);
}

.review-source {
  border-radius: 999px;
}

.review-badge {
  border-radius: 999px;
  background: var(--color-sage-100);
  padding: 5px 8px;
}

.review-meta {
  border-radius: 0;
  background: transparent;
  padding: 5px 0;
  color: var(--color-gray-500);
  font-weight: 700;
}

.review-source-link {
  border-radius: 999px;
  background: var(--color-navy-950);
  color: var(--color-white);
}

/* Stronger brand anchor, quieter footer navigation. */
.footer-grid > div:first-child {
  padding-right: 24px;
}

.footer-brand {
  gap: 14px;
}

.footer-brand .brand-text strong {
  font-size: 1.08rem;
}

.footer-brand .brand-text span {
  color: rgba(255, 255, 255, 0.72);
}

.site-footer nav {
  color: rgba(255, 255, 255, 0.66);
}

.site-footer nav a {
  transition: color 250ms ease, transform 250ms ease;
}

.site-footer nav a:hover {
  transform: translateX(2px);
}

.site-footer nav[aria-label="Kontak footer"] {
  color: rgba(255, 255, 255, 0.86);
}

@media (max-width: 1180px) {
  .hero h1 {
    font-size: 3.65rem;
  }
}

@media (max-width: 820px) {
  .hero h1 {
    font-size: 3.15rem;
  }

  .footer-grid > div:first-child {
    padding-right: 0;
  }
}

@media (max-width: 560px) {
  .hero h1 {
    font-size: 2.62rem;
  }

  .marketplace-logo,
  .quick-icon,
  .quick-symbol,
  .channel-logo {
    width: 56px;
    height: 56px;
    flex-basis: 56px;
  }

  .floating-whatsapp img {
    width: 34px;
    height: 34px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .button,
  .feature-item,
  .channel-card,
  .review-card,
  .gallery-item,
  .primary-nav a:not(.button)::after {
    transition: none;
  }
}

/* Conversion, trust, and business-performance modules. */
.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  margin: -1px !important;
  padding: 0 !important;
  border: 0 !important;
  white-space: nowrap !important;
}

.trust-signal-icon svg,
.delivery-icon svg,
.category-icon svg,
.purchase-step-icon svg {
  width: 24px;
  height: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.trust-bar {
  position: relative;
  z-index: 5;
  padding-block: 24px 12px;
  background: var(--color-ivory-50);
}

.trust-bar-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trust-signal {
  display: flex;
  min-width: 0;
  min-height: 104px;
  align-items: center;
  gap: 14px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-small-card);
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  box-shadow: var(--elevation-1);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.trust-signal:hover {
  border-color: rgba(15, 23, 42, 0.12);
  transform: translateY(-3px);
  box-shadow: var(--elevation-2);
}

.trust-signal-icon {
  display: grid;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  place-items: center;
  border-radius: 15px;
  background: rgba(242, 103, 34, 0.09);
  color: var(--color-orange-600);
}

.trust-signal strong {
  color: var(--color-navy-950);
  font-size: 0.91rem;
  line-height: 1.42;
}

.quick-contact {
  padding-top: 24px;
}

.delivery {
  overflow: hidden;
  background: var(--color-white);
}

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

.delivery-card {
  display: flex;
  min-width: 0;
  min-height: 470px;
  flex-direction: column;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-card);
  background: var(--color-ivory-50);
  padding: 28px;
  box-shadow: var(--elevation-1);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.delivery-card:hover {
  border-color: rgba(15, 23, 42, 0.14);
  transform: translateY(-3px);
  box-shadow: var(--elevation-2);
}

.delivery-card header {
  display: flex;
  align-items: center;
  gap: 16px;
}

.delivery-icon {
  display: grid;
  width: 56px;
  height: 56px;
  flex: 0 0 56px;
  place-items: center;
  border-radius: var(--radius-icon);
  background: var(--color-white);
  color: var(--color-orange-600);
  box-shadow: var(--elevation-1);
}

.delivery-label {
  color: var(--color-gray-500);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-card h3 {
  margin: 2px 0 0;
  color: var(--color-navy-950);
  font-size: 1.35rem;
  line-height: 1.25;
}

.delivery-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 9px 12px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.delivery-items li {
  position: relative;
  min-width: 0;
  padding-left: 16px;
  color: var(--color-gray-700);
  font-size: 0.9rem;
  line-height: 1.45;
}

.delivery-items li::before {
  position: absolute;
  top: 0.58em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-sage-500);
  content: "";
}

.delivery-card .button {
  width: 100%;
  margin-top: auto;
}

.delivery-card-featured {
  border-color: transparent;
  background: linear-gradient(145deg, var(--color-navy-950), var(--color-navy-800));
  color: var(--color-white);
}

.delivery-card-featured .delivery-icon {
  background: rgba(255, 255, 255, 0.12);
  color: var(--color-orange-500);
  box-shadow: none;
}

.delivery-card-featured .delivery-label,
.delivery-card-featured .delivery-items li {
  color: rgba(255, 255, 255, 0.72);
}

.delivery-card-featured h3 {
  color: var(--color-white);
}

.delivery-card-featured .delivery-items li::before {
  background: var(--color-whatsapp);
}

.delivery-card-featured .button-primary {
  background: var(--color-white);
  color: var(--color-navy-950);
}

.delivery-cta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 28px;
  align-items: center;
  margin-top: 24px;
  border-radius: var(--radius-card);
  background: var(--color-navy-950);
  padding: 28px 32px;
  color: var(--color-white);
  box-shadow: var(--elevation-2);
}

.delivery-cta span,
.delivery-cta strong {
  display: block;
}

.delivery-cta span {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.9rem;
}

.delivery-cta strong {
  margin-top: 2px;
  font-size: 1.2rem;
  line-height: 1.4;
}

.delivery-note {
  max-width: 86ch;
  margin: 14px auto 0;
  color: var(--color-gray-500);
  font-size: 0.78rem;
  line-height: 1.6;
  text-align: center;
}

.business-stats {
  background: var(--color-navy-950);
  padding-block: 72px;
  color: var(--color-white);
}

.business-stats > .container {
  display: grid;
  grid-template-columns: minmax(240px, 0.72fr) minmax(0, 1.28fr);
  gap: 56px;
  align-items: center;
}

.business-stats .eyebrow {
  color: var(--color-orange-500);
}

.business-stats h2 {
  max-width: 13ch;
  margin: 8px 0 0;
  color: var(--color-white);
  font-size: clamp(2rem, 3.5vw, 3.3rem);
  line-height: 1.06;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
}

.stat-item {
  display: grid;
  min-width: 0;
  align-content: center;
  gap: 4px;
  min-height: 128px;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 14px 20px;
}

.stat-item:first-child {
  border-left: 0;
}

.stat-item strong,
.stat-item span {
  display: block;
}

.stat-item strong {
  color: var(--color-white);
  font-size: clamp(1.75rem, 2.35vw, 2.55rem);
  line-height: 1.06;
}

.stat-item:nth-child(3) strong {
  font-size: clamp(1.2rem, 1.7vw, 1.65rem);
  line-height: 1.18;
}

.stat-item span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.78rem;
  font-weight: 800;
}

.categories {
  background: var(--color-concrete-50);
}

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

.category-card {
  min-width: 0;
  min-height: 210px;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-small-card);
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  box-shadow: var(--elevation-1);
  transition: border-color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.category-card:hover {
  border-color: rgba(242, 103, 34, 0.22);
  transform: translateY(-3px);
  box-shadow: var(--elevation-2);
}

.category-icon,
.purchase-step-icon {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border-radius: var(--radius-icon);
  background: rgba(242, 103, 34, 0.09);
  color: var(--color-orange-600);
}

.category-card h3 {
  margin: 18px 0 6px;
  color: var(--color-navy-950);
  font-size: 1.06rem;
}

.category-card p {
  margin: 0;
  color: var(--color-gray-700);
  font-size: 0.88rem;
  line-height: 1.58;
}

.categories-action {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.review-summary {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: 22px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.075);
  padding: 20px 22px;
  backdrop-filter: blur(16px);
}

.review-score {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-right: 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.review-score-stars {
  color: var(--color-orange-500);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.review-score strong,
.review-score span {
  display: block;
}

.review-score strong {
  color: var(--color-white);
  font-size: 1.7rem;
  line-height: 1;
}

.review-score div span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.74rem;
}

.review-platforms {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: center;
  gap: 10px;
}

.review-platform {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.8rem;
}

.review-platform .marketplace-logo {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  border-radius: 14px;
}

.review-filter {
  margin-top: 12px;
}

.review-showcase {
  margin-top: 30px;
}

.review-track {
  gap: 20px;
  animation-duration: 64s;
  will-change: transform;
}

.review-card {
  width: 400px;
  height: 500px;
  min-height: 500px;
  padding: 26px;
}

.review-card blockquote {
  -webkit-line-clamp: 4;
}

.purchase-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 48px;
  padding: 0;
  list-style: none;
}

.purchase-timeline::before {
  position: absolute;
  top: 58px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(15, 23, 42, 0.13);
  content: "";
}

.purchase-step {
  position: relative;
  z-index: 1;
  display: flex;
  min-width: 0;
  min-height: 202px;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-small-card);
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  box-shadow: var(--elevation-1);
  transition: box-shadow 250ms ease, transform 250ms ease;
}

.purchase-step:hover {
  transform: translateY(-3px);
  box-shadow: var(--elevation-2);
}

.purchase-step-number {
  align-self: flex-end;
  border-radius: 999px;
  background: rgba(6, 26, 47, 0.055);
  padding: 4px 8px;
  color: var(--color-gray-500);
  font-size: 0.68rem;
  font-weight: 900;
}

.purchase-step-icon {
  width: 46px;
  height: 46px;
  margin-top: -18px;
  border: 6px solid var(--color-concrete-50);
  background: var(--color-white);
  color: var(--color-orange-600);
  box-shadow: var(--elevation-1);
}

.purchase-step-icon svg {
  width: 20px;
  height: 20px;
}

.purchase-step strong {
  margin-top: 18px;
  color: var(--color-navy-950);
  font-size: 0.94rem;
  line-height: 1.3;
}

.purchase-step small {
  margin-top: 6px;
  color: var(--color-gray-700);
  font-size: 0.78rem;
  line-height: 1.5;
}

.brand-strip {
  background: var(--color-white);
  padding-block: 80px;
}

.brand-strip-inner {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 64px;
  align-items: center;
}

.brand-strip h2 {
  margin: 8px 0 0;
  color: var(--color-navy-950);
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  line-height: 1.06;
}

.brand-strip p:not(.eyebrow) {
  max-width: 48ch;
  margin: 16px 0 0;
  color: var(--color-gray-700);
  line-height: 1.7;
}

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

.brand-tile {
  display: flex;
  min-width: 0;
  min-height: 66px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: 16px;
  background: var(--color-ivory-50);
  padding: 12px;
  color: #7b8490;
  font-size: 1rem;
  font-weight: 900;
  text-align: center;
  transition: background-color 250ms ease, color 250ms ease, box-shadow 250ms ease, transform 250ms ease;
}

.brand-tile:hover {
  background: var(--color-white);
  color: var(--color-orange-600);
  transform: translateY(-3px);
  box-shadow: var(--elevation-2);
}

.faq {
  background: var(--color-ivory-50);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1.28fr);
  gap: 72px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 112px;
  margin-bottom: 0;
}

.faq .section-heading .button {
  margin-top: 24px;
}

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

.faq-item {
  overflow: hidden;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-small-card);
  background: var(--color-white);
  box-shadow: var(--elevation-1);
  transition: border-color 250ms ease, box-shadow 250ms ease;
}

.faq-item[open] {
  border-color: rgba(15, 23, 42, 0.14);
  box-shadow: var(--elevation-2);
}

.faq-item summary {
  display: flex;
  min-height: 68px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 20px;
  color: var(--color-navy-950);
  font-weight: 850;
  line-height: 1.4;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  display: grid;
  width: 30px;
  height: 30px;
  flex: 0 0 30px;
  place-items: center;
  border-radius: 50%;
  background: rgba(6, 26, 47, 0.055);
  color: var(--color-navy-950);
  font-size: 1.25rem;
  font-weight: 500;
  transition: background-color 250ms ease, color 250ms ease, transform 250ms ease;
}

.faq-item[open] summary span {
  background: var(--color-navy-950);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-item p {
  max-width: 70ch;
  margin: 0;
  padding: 0 20px 20px;
  color: var(--color-gray-700);
  font-size: 0.92rem;
  line-height: 1.7;
}

.service-area {
  background: var(--color-navy-950);
  padding-block: 72px;
  color: var(--color-white);
}

.service-area-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr) auto;
  gap: 40px;
  align-items: center;
}

.service-area .eyebrow {
  color: var(--color-orange-500);
}

.service-area h2 {
  margin: 8px 0 0;
  color: var(--color-white);
  font-size: clamp(2rem, 3.2vw, 3.1rem);
  line-height: 1.06;
}

.service-area p:not(.eyebrow) {
  max-width: 48ch;
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.68);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area-list li {
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 8px 12px;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-area .button-primary {
  background: var(--color-white);
  color: var(--color-navy-950);
  white-space: nowrap;
}

.button-ripple {
  position: absolute;
  z-index: -1;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.3);
  pointer-events: none;
  transform: translate(-50%, -50%) scale(0);
  animation: button-ripple 650ms ease-out;
}

@keyframes button-ripple {
  to {
    opacity: 0;
    transform: translate(-50%, -50%) scale(18);
  }
}

@media (max-width: 1180px) {
  .trust-bar-track {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .business-stats > .container,
  .brand-strip-inner,
  .faq-layout {
    gap: 44px;
  }

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

  .stat-item:nth-child(4) {
    border-left: 0;
  }

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

  .review-summary {
    grid-template-columns: auto minmax(0, 1fr);
  }

  .review-summary > .button {
    grid-column: 1 / -1;
    width: 100%;
  }

  .service-area-inner {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

  .service-area .button {
    grid-column: 1 / -1;
    justify-self: start;
  }
}

@media (max-width: 900px) {
  .delivery-grid {
    grid-template-columns: 1fr;
  }

  .delivery-card {
    min-height: 0;
  }

  .business-stats > .container,
  .brand-strip-inner,
  .faq-layout,
  .service-area-inner {
    grid-template-columns: 1fr;
  }

  .business-stats h2 {
    max-width: 18ch;
  }

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

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

  .purchase-timeline::before {
    display: none;
  }

  .faq .section-heading {
    position: static;
  }

  .service-area .button {
    grid-column: auto;
  }
}

@media (max-width: 700px) {
  .trust-bar {
    padding-block: 18px 8px;
  }

  .trust-bar > .container {
    width: 100%;
  }

  .trust-bar-track {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 4px 16px 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .trust-bar-track::-webkit-scrollbar {
    display: none;
  }

  .trust-signal {
    width: min(76vw, 280px);
    min-height: 88px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .delivery-cta {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .delivery-cta .button {
    width: 100%;
  }

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

  .stat-item:nth-child(3),
  .stat-item:nth-child(5) {
    border-left: 0;
  }

  .stat-item:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stat-item:last-child {
    grid-column: 1 / -1;
  }

  .review-summary {
    grid-template-columns: 1fr;
  }

  .review-score {
    justify-content: center;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

  .review-platforms {
    overflow-x: auto;
    justify-content: flex-start;
    padding-bottom: 4px;
    scrollbar-width: none;
  }

  .review-platform {
    flex: 0 0 auto;
  }

  .purchase-timeline {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .purchase-step {
    display: grid;
    grid-template-columns: 48px minmax(0, 1fr) auto;
    grid-template-areas:
      "icon title number"
      "icon text number";
    min-height: 0;
    align-items: start;
    gap: 4px 14px;
  }

  .purchase-step-icon {
    grid-area: icon;
    margin: 0;
    border: 0;
  }

  .purchase-step-number {
    grid-area: number;
  }

  .purchase-step strong {
    grid-area: title;
    margin-top: 4px;
  }

  .purchase-step small {
    grid-area: text;
  }

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

@media (max-width: 560px) {
  .delivery-card {
    padding: 22px;
  }

  .delivery-items {
    margin-block: 22px;
  }

  .delivery-cta {
    padding: 24px 22px;
  }

  .business-stats,
  .brand-strip,
  .service-area {
    padding-block: 64px;
  }

  .business-stats > .container {
    gap: 32px;
  }

  .stat-item {
    min-height: 108px;
    padding: 12px 14px;
  }

  .category-grid {
    gap: 10px;
  }

  .category-card {
    min-height: 184px;
    padding: 18px;
  }

  .category-icon {
    width: 44px;
    height: 44px;
  }

  .category-card h3 {
    margin-top: 14px;
  }

  .category-card p {
    font-size: 0.8rem;
  }

  .review-summary {
    padding: 18px;
  }

  .review-platform strong {
    display: none;
  }

  .review-card {
    width: min(88vw, 360px);
    height: 470px;
    min-height: 470px;
    padding: 22px;
  }

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

  .brand-tile {
    min-height: 58px;
    font-size: 0.88rem;
  }

  .faq-layout {
    gap: 36px;
  }

  .faq-item summary {
    min-height: 64px;
    padding: 16px;
    font-size: 0.9rem;
  }

  .faq-item p {
    padding: 0 16px 18px;
    font-size: 0.86rem;
  }

  .service-area-inner {
    gap: 28px;
  }

  .service-area .button {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .trust-signal,
  .delivery-card,
  .category-card,
  .purchase-step,
  .brand-tile,
  .faq-item,
  .faq-item summary span {
    transition: none;
  }

  .button-ripple {
    display: none;
  }
}

/* Retail discovery and marketplace trust upgrade. */
.product-discovery {
  background: var(--color-concrete-50);
}

.product-discovery-heading {
  display: grid;
  width: 100%;
  max-width: none;
  grid-template-columns: minmax(0, 0.82fr) minmax(420px, 1.18fr);
  gap: 56px;
  align-items: end;
  text-align: left;
}

.product-discovery-heading > div > p:last-child {
  max-width: 56ch;
}

.product-search {
  display: grid;
  grid-template-columns: 24px minmax(0, 1fr) auto;
  gap: 14px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: var(--radius-card);
  background: var(--color-white);
  padding: 10px 10px 10px 18px;
  box-shadow: var(--elevation-2);
}

.product-search svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: var(--color-gray-500);
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.product-search input {
  width: 100%;
  min-width: 0;
  border: 0;
  outline: 0;
  background: transparent;
  color: var(--color-navy-950);
  font: inherit;
}

.product-search input::placeholder {
  color: var(--color-gray-500);
}

.product-search:focus-within {
  border-color: rgba(242, 103, 34, 0.45);
  box-shadow: 0 0 0 4px rgba(242, 103, 34, 0.1), var(--elevation-2);
}

.popular-product-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.popular-product-grid a {
  position: relative;
  display: flex;
  min-width: 0;
  min-height: 58px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-small-card);
  background: rgba(255, 255, 255, 0.92);
  padding: 14px 34px 14px 16px;
  color: var(--color-navy-950);
  font-size: 0.87rem;
  font-weight: 800;
  line-height: 1.3;
  box-shadow: var(--elevation-1);
  transition: border-color 220ms ease, box-shadow 220ms ease, color 220ms ease, transform 220ms ease;
}

.popular-product-grid a::after {
  position: absolute;
  right: 14px;
  color: var(--color-orange-600);
  content: "→";
}

.popular-product-grid a:hover {
  border-color: rgba(242, 103, 34, 0.26);
  color: var(--color-orange-700);
  transform: translateY(-2px);
  box-shadow: var(--elevation-2);
}

.bundle-section {
  background: var(--color-white);
}

.bundle-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.bundle-card {
  display: flex;
  min-width: 0;
  min-height: 300px;
  flex-direction: column;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: var(--radius-card);
  background: var(--color-ivory-50);
  padding: 24px;
  box-shadow: var(--elevation-1);
  transition: box-shadow 240ms ease, transform 240ms ease;
}

.bundle-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--elevation-2);
}

.bundle-card > span {
  color: var(--color-orange-600);
  font-size: 0.72rem;
  font-weight: 900;
}

.bundle-card h3 {
  margin: 38px 0 10px;
  color: var(--color-navy-950);
  font-size: 1.16rem;
  line-height: 1.3;
}

.bundle-card p {
  margin: 0 0 24px;
  color: var(--color-gray-700);
  font-size: 0.85rem;
  line-height: 1.65;
}

.bundle-card .button {
  width: 100%;
  margin-top: auto;
}

.savings-section {
  background: var(--color-navy-950);
  padding-block: 64px;
  color: var(--color-white);
}

.savings-inner {
  display: grid;
  grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr) auto;
  gap: 40px;
  align-items: center;
}

.savings-section .eyebrow {
  color: var(--color-orange-500);
}

.savings-section h2 {
  margin: 8px 0 0;
  color: var(--color-white);
  font-size: clamp(2rem, 3.3vw, 3.15rem);
  line-height: 1.06;
}

.savings-section p:not(.eyebrow) {
  margin: 14px 0 0;
  color: rgba(255, 255, 255, 0.66);
  line-height: 1.65;
}

.savings-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.savings-list li {
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.07);
  padding: 12px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.78rem;
  font-weight: 800;
}

.savings-list li::before {
  margin-right: 7px;
  color: var(--color-whatsapp);
  content: "✓";
}

.savings-section .button-primary {
  background: var(--color-white);
  color: var(--color-navy-950);
  white-space: nowrap;
}

.project-offer {
  background: var(--color-ivory-50);
}

.project-offer-card {
  position: relative;
  display: grid;
  overflow: hidden;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr) auto;
  gap: 48px;
  align-items: center;
  border-radius: 28px;
  background: linear-gradient(145deg, var(--color-navy-950), var(--color-navy-800));
  padding: 52px;
  color: var(--color-white);
  box-shadow: var(--elevation-3);
}

.project-offer-card::before {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
  background-size: 28px 28px;
  content: "";
  pointer-events: none;
}

.project-offer-card > * {
  position: relative;
}

.project-offer-card .eyebrow {
  color: var(--color-orange-500);
}

.project-offer-card h2 {
  margin: 8px 0 14px;
  color: var(--color-white);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.02;
}

.project-offer-card p {
  max-width: 58ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.7;
}

.project-offer-card ul {
  display: grid;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-offer-card li {
  color: rgba(255, 255, 255, 0.84);
  font-weight: 750;
}

.project-offer-card li::before {
  margin-right: 10px;
  color: var(--color-whatsapp);
  content: "✓";
}

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

.stat-item:nth-child(4) {
  border-left: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-item:nth-child(4) strong {
  font-size: clamp(1.15rem, 1.55vw, 1.55rem);
  line-height: 1.18;
}

.reviews .section-heading {
  max-width: 860px;
}

.review-summary-pro {
  grid-template-columns: minmax(250px, 0.85fr) minmax(0, 1.15fr) auto;
  margin-bottom: 12px;
}

.review-score-main strong {
  font-size: 2.25rem;
}

.review-score-main b {
  color: var(--color-white);
}

.review-insights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: 18px;
}

.review-insights > div {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.06);
  padding: 16px 18px;
}

.review-insights strong,
.review-insights span {
  display: block;
}

.review-insights strong {
  color: var(--color-white);
  font-size: 1.3rem;
}

.review-insights span {
  margin-top: 3px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.75rem;
}

.review-filter-panel {
  display: grid;
  gap: 10px;
}

.review-filter {
  display: flex;
  overflow-x: auto;
  align-items: center;
  gap: 8px;
  margin: 0;
  padding: 2px 0 5px;
  scrollbar-width: none;
}

.review-filter::-webkit-scrollbar {
  display: none;
}

.review-filter > span {
  min-width: 88px;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.73rem;
  font-weight: 900;
  text-transform: uppercase;
}

.review-filter button {
  flex: 0 0 auto;
}

.review-showcase {
  position: relative;
  overflow-x: auto;
  padding: 8px max(20px, calc((100vw - var(--container)) / 2)) 26px;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  scrollbar-width: thin;
  scrollbar-color: rgba(255, 255, 255, 0.25) transparent;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 20px;
  animation: none !important;
  transform: none !important;
  will-change: auto;
}

.review-card {
  display: flex;
  width: 390px;
  height: 660px;
  min-height: 660px;
  flex: 0 0 390px;
  flex-direction: column;
  scroll-snap-align: start;
  padding: 26px;
}

.review-card blockquote {
  display: -webkit-box;
  overflow: hidden;
  min-height: 100px;
  max-height: 100px;
  margin: 16px 0 0;
  white-space: pre-line;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

.review-card.is-expanded blockquote {
  display: block;
  overflow-y: auto;
  -webkit-line-clamp: initial;
}

.review-read-more {
  align-self: flex-start;
  border: 0;
  background: transparent;
  padding: 6px 0;
  color: var(--color-orange-700);
  font: inherit;
  font-size: 0.78rem;
  font-weight: 900;
  cursor: pointer;
}

.review-card cite {
  margin-top: 10px;
}

.review-details {
  display: flex;
  align-items: center;
  gap: 7px;
}

.review-category-badge {
  border-radius: 999px;
  background: rgba(6, 26, 47, 0.065);
  padding: 6px 9px;
  color: var(--color-gray-700);
  font-size: 0.68rem;
  font-weight: 850;
}

.review-product,
.review-date {
  width: 100%;
}

.review-product {
  overflow: hidden;
  min-height: 38px;
  color: var(--color-navy-950);
  font-weight: 800;
  line-height: 1.45;
  text-overflow: ellipsis;
}

.review-date {
  color: var(--color-gray-500);
  font-size: 0.7rem;
}

.review-source-link {
  margin-left: auto;
}

.review-photos {
  width: 100%;
  height: 130px;
  margin-top: auto;
}

.review-photo {
  width: 100%;
  height: 130px;
  border-radius: 16px;
}

.review-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.review-carousel-controls {
  display: flex;
  width: min(var(--container), calc(100% - 40px));
  justify-content: flex-end;
  gap: 8px;
  margin: 12px auto 0;
}

.review-carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  font-size: 1.15rem;
  cursor: pointer;
  transition: background-color 220ms ease, transform 220ms ease;
}

.review-carousel-controls button:hover {
  background: rgba(255, 255, 255, 0.15);
  transform: translateY(-2px);
}

.review-empty {
  display: grid;
  width: min(640px, calc(100vw - 40px));
  min-height: 250px;
  place-content: center;
  gap: 8px;
  border: 1px dashed rgba(255, 255, 255, 0.2);
  border-radius: var(--radius-card);
  background: rgba(255, 255, 255, 0.06);
  padding: 34px;
  color: var(--color-white);
  text-align: center;
}

.review-empty span {
  color: rgba(255, 255, 255, 0.62);
}

.review-empty a {
  margin-top: 10px;
  color: var(--color-orange-500);
  font-weight: 850;
}

.brand-strip-inner {
  grid-template-columns: minmax(250px, 0.56fr) minmax(0, 1.44fr);
  align-items: start;
}

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

.brand-group {
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-small-card);
  background: var(--color-ivory-50);
  padding: 18px;
}

.brand-group:first-child {
  grid-column: 1 / -1;
}

.brand-group h3 {
  margin: 0 0 12px;
  color: var(--color-gray-500);
  font-size: 0.7rem;
  font-weight: 900;
  text-transform: uppercase;
}

.brand-group > div {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}

.brand-group a {
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 999px;
  background: var(--color-white);
  padding: 8px 11px;
  color: #7b8490;
  font-size: 0.78rem;
  font-weight: 850;
  transition: border-color 220ms ease, color 220ms ease, transform 220ms ease;
}

.brand-group a:hover {
  border-color: rgba(242, 103, 34, 0.28);
  color: var(--color-orange-700);
  transform: translateY(-2px);
}

.repeat-journey {
  background: var(--color-concrete-50);
}

.repeat-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.repeat-timeline::before {
  position: absolute;
  top: 34px;
  right: 8%;
  left: 8%;
  height: 1px;
  background: rgba(15, 23, 42, 0.12);
  content: "";
}

.repeat-timeline li {
  position: relative;
  min-width: 0;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-small-card);
  background: rgba(255, 255, 255, 0.94);
  padding: 20px;
  box-shadow: var(--elevation-1);
}

.repeat-timeline span,
.repeat-timeline strong {
  display: block;
}

.repeat-timeline span {
  position: relative;
  width: 30px;
  border-radius: 999px;
  background: var(--color-navy-950);
  padding: 7px 0;
  color: var(--color-white);
  font-size: 0.65rem;
  text-align: center;
}

.repeat-timeline strong {
  margin-top: 28px;
  color: var(--color-navy-950);
  font-size: 0.87rem;
  line-height: 1.4;
}

.audience-section {
  background: var(--color-white);
}

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

.audience-grid span {
  display: flex;
  min-width: 0;
  min-height: 74px;
  align-items: center;
  border: 1px solid rgba(15, 23, 42, 0.07);
  border-radius: var(--radius-small-card);
  background: var(--color-ivory-50);
  padding: 18px;
  color: var(--color-navy-950);
  font-size: 0.88rem;
  font-weight: 850;
  box-shadow: var(--elevation-1);
}

.audience-grid span::before {
  width: 7px;
  height: 7px;
  flex: 0 0 7px;
  margin-right: 11px;
  border-radius: 50%;
  background: var(--color-orange-600);
  content: "";
}

.missing-product {
  background: var(--color-navy-950);
  padding-block: 72px;
}

.missing-product-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 48px;
  align-items: center;
}

.missing-product .eyebrow {
  color: var(--color-orange-500);
}

.missing-product h2 {
  margin: 8px 0 0;
  color: var(--color-white);
  font-size: clamp(2.2rem, 4vw, 4rem);
  line-height: 1.03;
}

.missing-product p:not(.eyebrow) {
  max-width: 60ch;
  margin: 16px 0 0;
  color: rgba(255, 255, 255, 0.66);
}

.missing-product-actions {
  display: flex;
  gap: 10px;
}

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

.service-area-list li {
  display: flex;
  min-height: 54px;
  align-items: center;
  border-radius: 14px;
  padding: 12px;
}

.service-area-list li::before {
  width: 6px;
  height: 6px;
  flex: 0 0 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--color-orange-500);
  content: "";
}

.quick-actions {
  position: fixed;
  z-index: 43;
  right: 20px;
  bottom: 118px;
  transition: opacity 200ms ease, transform 200ms ease, visibility 200ms ease;
}

.quick-actions.is-context-hidden {
  visibility: hidden;
  opacity: 0;
  pointer-events: none;
  transform: translateX(12px);
}

.quick-actions-toggle {
  display: none;
}

.quick-actions-panel {
  display: grid;
  overflow: hidden;
  width: 154px;
  border: 1px solid rgba(15, 23, 42, 0.1);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.96);
  padding: 7px;
  box-shadow: var(--elevation-3);
  backdrop-filter: blur(18px);
}

.quick-actions-panel a,
.quick-actions-panel button {
  min-height: 42px;
  border: 0;
  border-radius: 12px;
  background: transparent;
  padding: 10px 12px;
  color: var(--color-navy-950);
  font: inherit;
  font-size: 0.76rem;
  font-weight: 850;
  text-align: left;
  cursor: pointer;
}

.quick-actions-panel a:hover,
.quick-actions-panel button:hover {
  background: var(--color-concrete-50);
}

.scroll-assist {
  position: fixed;
  z-index: 42;
  bottom: 22px;
  left: 50%;
  display: flex;
  visibility: hidden;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 18px;
  background: rgba(6, 26, 47, 0.96);
  padding: 9px 10px 9px 18px;
  color: var(--color-white);
  box-shadow: var(--elevation-3);
  opacity: 0;
  transform: translate(-50%, 24px);
  backdrop-filter: blur(20px);
  transition: opacity 240ms ease, transform 240ms ease, visibility 240ms ease;
}

.scroll-assist.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translate(-50%, 0);
}

.scroll-assist strong {
  margin-right: 4px;
  white-space: nowrap;
}

.scroll-assist .button {
  min-height: 44px;
  padding: 11px 15px;
  font-size: 0.75rem;
  white-space: nowrap;
}

@media (max-width: 1180px) {
  .product-discovery-heading {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

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

  .savings-inner,
  .project-offer-card {
    grid-template-columns: minmax(0, 1fr) minmax(260px, 0.8fr);
  }

  .savings-section .button,
  .project-offer-card .button {
    grid-column: 1 / -1;
    justify-self: start;
  }

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

  .stat-item:nth-child(4) {
    border-left: 0;
  }

  .review-summary-pro {
    grid-template-columns: minmax(240px, 0.8fr) minmax(0, 1.2fr);
  }

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

  .repeat-timeline::before {
    display: none;
  }

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

  .quick-actions-panel {
    width: 142px;
  }
}

@media (max-width: 900px) {
  .popular-product-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

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

  .savings-inner,
  .project-offer-card,
  .brand-strip-inner,
  .missing-product-inner {
    grid-template-columns: 1fr;
  }

  .project-offer-card {
    gap: 30px;
    padding: 42px;
  }

  .review-summary-pro {
    grid-template-columns: 1fr;
  }

  .review-summary-pro .review-score {
    justify-content: flex-start;
    padding: 0 0 18px;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }

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

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

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

  .quick-actions {
    right: 18px;
    bottom: 96px;
  }

  .quick-actions-toggle {
    position: static !important;
    display: grid !important;
    width: 58px !important;
    height: 58px !important;
    min-height: 58px !important;
    padding: 0 !important;
    place-items: center;
    border: 1px solid rgba(15, 23, 42, 0.1) !important;
    border-radius: 50% !important;
    background: var(--color-white) !important;
    box-shadow: var(--elevation-3) !important;
    cursor: pointer;
    transform: none !important;
  }

  .quick-actions-toggle img {
    width: 34px;
    height: 34px;
  }

  .quick-actions-toggle span {
    display: none !important;
  }

  .quick-actions-panel {
    position: absolute;
    right: 0;
    bottom: 68px;
    display: none;
    width: 168px;
  }

  .quick-actions.is-open .quick-actions-panel {
    display: grid;
  }

  .scroll-assist {
    display: none;
  }
}

@media (max-width: 700px) {
  .product-search {
    grid-template-columns: 22px minmax(0, 1fr);
    border-radius: var(--radius-small-card);
    padding: 14px 16px;
  }

  .product-search .button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .popular-product-grid a {
    min-height: 54px;
    padding: 12px 30px 12px 14px;
    font-size: 0.8rem;
  }

  .bundle-grid {
    display: flex;
    overflow-x: auto;
    gap: 10px;
    padding: 3px 16px 16px;
    margin-inline: -16px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
  }

  .bundle-grid::-webkit-scrollbar {
    display: none;
  }

  .bundle-card {
    width: min(78vw, 290px);
    min-height: 285px;
    flex: 0 0 auto;
    scroll-snap-align: start;
  }

  .savings-inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

  .savings-section .button,
  .project-offer-card .button {
    width: 100%;
  }

  .project-offer-card {
    border-radius: var(--radius-card);
    padding: 30px 24px;
  }

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

  .stat-item:nth-child(odd) {
    border-left: 0;
  }

  .stat-item:nth-child(even) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stat-item:last-child {
    grid-column: auto;
  }

  .review-insights {
    grid-template-columns: 1fr;
  }

  .review-insights > div {
    display: grid;
    grid-template-columns: auto minmax(0, 1fr);
    gap: 14px;
    align-items: center;
  }

  .review-insights span {
    margin: 0;
  }

  .review-filter > span {
    min-width: 74px;
  }

  .review-showcase {
    padding-inline: 16px;
  }

  .review-card {
    width: min(88vw, 360px);
    height: 620px;
    min-height: 620px;
    flex-basis: min(88vw, 360px);
    padding: 22px;
  }

  .review-card blockquote {
    min-height: 90px;
    max-height: 90px;
  }

  .review-photos,
  .review-photo {
    height: 110px;
  }

  .review-carousel-controls {
    width: calc(100% - 32px);
  }

  .brand-cloud {
    grid-template-columns: 1fr;
  }

  .brand-group:first-child {
    grid-column: auto;
  }

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

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

  .missing-product {
    padding-block: 64px;
  }

  .missing-product-actions {
    display: grid;
  }

  .missing-product-actions .button {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .popular-product-grid a {
    min-height: 50px;
  }

  .savings-list,
  .repeat-timeline,
  .audience-grid,
  .service-area-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .repeat-timeline li {
    padding: 16px;
  }

  .repeat-timeline strong {
    margin-top: 20px;
    font-size: 0.8rem;
  }

  .audience-grid span {
    min-height: 62px;
    padding: 14px;
    font-size: 0.8rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .popular-product-grid a,
  .bundle-card,
  .brand-group a,
  .scroll-assist {
    transition: none;
  }

  .review-showcase {
    scroll-behavior: auto;
  }
}

/* Floating actions stay compact until intentionally opened. */
.quick-actions-toggle,
.quick-actions .quick-actions-toggle:hover,
.quick-actions .quick-actions-toggle:focus-visible {
  position: static !important;
  display: grid !important;
  width: 58px !important;
  height: 58px !important;
  min-height: 58px !important;
  padding: 0 !important;
  place-items: center;
  border: 1px solid rgba(15, 23, 42, 0.1) !important;
  border-radius: 50% !important;
  background: var(--color-white) !important;
  box-shadow: var(--elevation-3) !important;
  cursor: pointer;
  transform: none !important;
}

.quick-actions-toggle img {
  width: 34px;
  height: 34px;
}

.quick-actions-toggle span {
  display: none !important;
}

.quick-actions-panel {
  position: absolute;
  right: 0;
  bottom: 68px;
  display: none;
  width: 168px;
}

.quick-actions.is-open .quick-actions-panel {
  display: grid;
}

@media (max-width: 900px) {
  .quick-actions {
    right: 12px;
    bottom: 12px;
  }

  .mobile-action-bar {
    right: 82px;
  }
}

@media (max-width: 480px) {
  .mobile-action {
    padding-inline: 5px;
    font-size: 12px;
  }
}

/* Controlled concept restoration and responsive refinement. */
:root {
  --container: 1240px;
  --section-space: 104px;
  --surface-warm: #f7f7f4;
  --surface-cool: #f1f4f3;
  --border-quiet: rgba(6, 26, 47, 0.1);
  --elevation-small: 0 8px 24px rgba(6, 26, 47, 0.06);
  --elevation-medium: 0 18px 46px rgba(6, 26, 47, 0.1);
  --elevation-large: 0 30px 72px rgba(6, 26, 47, 0.16);
}

body {
  background: var(--color-ivory-50);
}

.container {
  width: min(calc(100% - 48px), var(--container));
}

.homepage-flow {
  background: var(--color-ivory-50);
}

.homepage-flow .section {
  padding-block: var(--section-space);
}

#reviews.section-reveal,
#shopping.section-reveal,
#location.section-reveal {
  transform: none;
}

#shopping {
  scroll-margin-top: calc(var(--header-offset) + 8px);
}

.homepage-flow .section-heading {
  max-width: 760px;
  margin: 0 auto 48px;
  text-align: center;
}

.homepage-flow .section-heading.align-left {
  margin-inline: 0;
  text-align: left;
}

.homepage-flow h2,
.business-stats-heading h2,
.service-area h2 {
  letter-spacing: 0;
}

.homepage-flow .section-heading h2,
.location-heading h2,
.business-stats-heading h2 {
  font-size: 3.5rem;
  line-height: 1.05;
}

.homepage-flow .section-heading p:not(.eyebrow) {
  max-width: 62ch;
  margin: 18px auto 0;
  line-height: 1.75;
}

.homepage-flow .section-heading.align-left p:not(.eyebrow) {
  margin-inline: 0;
}

.eyebrow {
  letter-spacing: 0;
}

/* Floating navigation stays recognisable from the selected concept. */
.site-header {
  padding-top: 16px;
  background: transparent;
  box-shadow: none;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: transparent;
  box-shadow: none;
}

.site-header .header-inner {
  min-height: 70px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 22px;
  background: rgba(8, 31, 54, 0.5);
  padding: 8px 14px;
  box-shadow: 0 18px 46px rgba(4, 18, 32, 0.14);
  backdrop-filter: blur(18px) saturate(120%);
}

.site-header.is-scrolled .header-inner,
.site-header.is-open .header-inner {
  border-color: rgba(6, 26, 47, 0.09);
  background: rgba(251, 250, 247, 0.94);
  color: var(--color-navy-950);
  box-shadow: var(--elevation-medium);
}

.site-header .brand-mark {
  width: 50px;
  height: 50px;
  border-radius: 17px;
}

.site-header .primary-nav {
  gap: 19px;
  font-size: 0.88rem;
}

.site-header .primary-nav .button {
  min-height: 48px;
  padding-inline: 20px;
}

.mobile-header-whatsapp {
  display: none;
}

/* Trust and quick actions form one compact decision zone. */
.trust-bar {
  padding: 24px 0 12px;
  background: var(--color-ivory-50);
}

.trust-bar-track {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.trust-signal {
  min-height: 94px;
  border: 1px solid var(--border-quiet);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.94);
  padding: 18px;
  box-shadow: var(--elevation-small);
}

.trust-signal-icon {
  border-radius: 14px;
}

.trust-signal strong {
  font-size: 0.88rem;
  line-height: 1.35;
}

.quick-contact {
  padding: 20px 0 44px;
  background: var(--color-ivory-50);
}

.quick-contact-heading {
  margin-bottom: 10px;
}

.quick-contact-heading h2 {
  font-size: 1.25rem;
}

.quick-contact-inner {
  display: grid;
  grid-template-columns: 1.2fr repeat(3, minmax(0, 1fr));
  gap: 10px;
  border: 1px solid var(--border-quiet);
  border-radius: 22px;
  background: var(--color-white);
  padding: 10px;
  box-shadow: var(--elevation-small);
}

.quick-item {
  min-width: 0;
  min-height: 82px;
  border-radius: 16px;
  padding: 12px 16px;
}

.quick-item:hover {
  transform: translateY(-2px);
}

.quick-primary {
  background: rgba(37, 211, 102, 0.08);
}

.quick-item strong,
.quick-item small {
  display: block;
}

.quick-item strong {
  color: var(--color-navy-950);
  font-size: 0.94rem;
}

.quick-item small {
  margin-top: 2px;
  color: var(--color-gray-500);
  font-size: 0.78rem;
  line-height: 1.4;
}

.quick-contact .marketplace-logo,
.quick-contact .quick-symbol {
  width: 48px;
  height: 48px;
  flex-basis: 48px;
  border-radius: 15px;
}

/* Why us retains the editorial storefront composition. */
.advantages {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(rgba(6, 26, 47, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 47, 0.035) 1px, transparent 1px),
    var(--surface-cool);
  background-size: 48px 48px;
}

.advantages .section-heading {
  margin-bottom: 44px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 18px;
}

.feature-item {
  border: 1px solid var(--border-quiet);
  border-radius: 24px;
  background: var(--color-white);
  padding: 28px;
  box-shadow: var(--elevation-small);
}

.feature-item-main {
  grid-column: 1 / span 7;
  grid-row: 1 / span 3;
  min-height: 590px;
  background:
    linear-gradient(0deg, rgba(6, 26, 47, 0.92), rgba(6, 26, 47, 0.08) 74%),
    image-set(url("../images/gallery/store-front-main.webp") type("image/webp"), url("../images/gallery/store-front-main.jpg") type("image/jpeg")) center 58% / cover;
  color: var(--color-white);
}

.feature-item:not(.feature-item-main) {
  grid-column: 8 / -1;
  display: grid;
  grid-template-columns: 48px minmax(0, 1fr) auto;
  gap: 8px 18px;
  min-height: 184px;
  align-content: center;
}

.feature-item:not(.feature-item-main) .feature-icon {
  grid-row: 1 / span 2;
}

.feature-item:not(.feature-item-main) .feature-number {
  grid-column: 3;
  grid-row: 1;
}

.feature-item:hover,
.delivery-card:hover,
.category-card:hover,
.channel-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--elevation-medium);
}

/* Delivery education and honest service boundaries. */
.delivery {
  background: var(--color-white);
}

.delivery-education {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin: 0 0 28px;
  padding: 0;
  list-style: none;
}

.delivery-education li {
  display: grid;
  min-height: 108px;
  align-content: start;
  gap: 8px;
  border: 1px solid var(--border-quiet);
  border-radius: 18px;
  background: var(--surface-warm);
  padding: 16px;
}

.delivery-education span,
.project-process span {
  color: var(--color-orange-600);
  font-size: 0.72rem;
  font-weight: 900;
}

.delivery-education strong {
  color: var(--color-navy-950);
  font-size: 0.86rem;
  line-height: 1.45;
}

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

.delivery-card {
  display: flex;
  min-height: 560px;
  flex-direction: column;
  border: 1px solid var(--border-quiet);
  border-radius: 24px;
  background: var(--surface-warm);
  padding: 28px;
  box-shadow: var(--elevation-small);
  transition: transform var(--motion-base), box-shadow var(--motion-base);
}

.delivery-card-featured {
  background: var(--color-navy-900);
  color: var(--color-white);
}

.delivery-card header {
  display: flex;
  gap: 16px;
  align-items: center;
}

.delivery-icon {
  display: grid;
  width: 52px;
  height: 52px;
  flex: 0 0 52px;
  place-items: center;
  border-radius: 16px;
  background: var(--color-white);
  color: var(--color-orange-600);
}

.delivery-icon svg {
  width: 24px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.delivery-label {
  color: var(--color-gray-500);
  font-size: 0.72rem;
  font-weight: 900;
  text-transform: uppercase;
}

.delivery-card-featured .delivery-label {
  color: rgba(255, 255, 255, 0.64);
}

.delivery-card h3 {
  margin: 2px 0 0;
  color: var(--color-navy-950);
  font-size: 1.35rem;
}

.delivery-card-featured h3 {
  color: var(--color-white);
}

.delivery-items {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 8px 18px;
  margin: 26px 0 28px;
  padding: 0;
  list-style: none;
}

.delivery-items li {
  position: relative;
  padding-left: 14px;
  color: var(--color-gray-700);
  font-size: 0.9rem;
}

.delivery-items li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--color-sage-500);
  content: "";
}

.delivery-card-featured .delivery-items li {
  color: rgba(255, 255, 255, 0.78);
}

.delivery-card .button {
  width: 100%;
  margin-top: auto;
}

.delivery-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 24px;
  border-radius: 24px;
  background: var(--color-navy-950);
  padding: 26px 30px;
  color: var(--color-white);
}

.delivery-cta span,
.delivery-cta strong {
  display: block;
}

.delivery-cta span {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.86rem;
}

.delivery-note {
  max-width: 86ch;
  margin: 16px auto 0;
  color: var(--color-gray-500);
  font-size: 0.78rem;
  text-align: center;
}

/* Scale, store, and product discovery. */
.business-stats {
  background: var(--color-navy-950);
  color: var(--color-white);
  padding-block: 76px;
}

.business-stats .container {
  display: grid;
  grid-template-columns: minmax(260px, 1.15fr) minmax(0, 2fr);
  gap: 64px;
  align-items: center;
}

.business-stats-heading h2 {
  margin: 6px 0 0;
  color: var(--color-white);
  font-size: 2.8rem;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
}

.stat-item {
  min-width: 0;
  border-left: 1px solid rgba(255, 255, 255, 0.14);
  padding: 16px;
}

.stat-item strong {
  display: block;
  overflow-wrap: anywhere;
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1.05;
}

.stat-item:nth-child(4) strong {
  font-size: 1.25rem;
  line-height: 1.2;
}

.stat-item span {
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.35;
}

.about {
  background: var(--color-ivory-50);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.35fr);
  gap: 72px;
  align-items: start;
}

.about .section-heading {
  position: sticky;
  top: 128px;
}

.gallery {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(230px, 0.82fr);
  gap: 18px;
}

.gallery-item {
  overflow: hidden;
  border: 0;
  border-radius: 24px;
  background: var(--color-gray-100);
  padding: 0;
  box-shadow: var(--elevation-small);
  cursor: zoom-in;
}

.gallery-item-large {
  grid-row: 1 / span 2;
  min-height: 650px;
}

.gallery-item:not(.gallery-item-large) {
  min-height: 330px;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-story {
  min-height: 240px;
  margin-left: -12px;
  border-radius: 24px;
  padding: 28px;
}

.categories {
  background: var(--surface-cool);
}

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

.category-card {
  display: block;
  min-height: 230px;
  border: 1px solid var(--border-quiet);
  border-radius: 24px;
  background: var(--color-white);
  padding: 26px;
  box-shadow: var(--elevation-small);
  transition: transform var(--motion-base), box-shadow var(--motion-base);
}

.category-icon,
.purchase-step-icon {
  border-radius: 15px;
}

.category-card h3 {
  margin-top: 22px;
}

.category-card p {
  color: var(--color-gray-700);
  font-size: 0.9rem;
  line-height: 1.65;
}

.categories-action {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}

/* Authentic marketplace reviews. JavaScript owns motion and pause state. */
.reviews {
  overflow: hidden;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--color-navy-950);
  background-size: 48px 48px;
}

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

.reviews .section-heading p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.7);
}

.review-summary-pro {
  display: grid;
  grid-template-columns: minmax(220px, 0.8fr) minmax(0, 1.2fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.08);
  padding: 20px 24px;
}

.review-score,
.review-platforms,
.review-platform {
  display: flex;
  align-items: center;
}

.review-score {
  gap: 16px;
}

.review-score-stars {
  color: var(--color-orange-500);
}

.review-score strong,
.review-score span {
  display: block;
}

.review-score strong {
  color: var(--color-white);
  font-size: 2rem;
  line-height: 1;
}

.review-score span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.76rem;
}

.review-platforms {
  justify-content: center;
  gap: 18px;
}

.review-platform {
  gap: 8px;
  color: rgba(255, 255, 255, 0.84);
  font-size: 0.86rem;
}

.review-platform .marketplace-logo {
  width: 44px;
  height: 44px;
  flex-basis: 44px;
  border-radius: 14px;
}

.review-filter-panel {
  display: flex;
  justify-content: center;
  margin-top: 22px;
}

.review-filter > span {
  align-self: center;
  padding-inline: 8px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.72rem;
  font-weight: 850;
}

.review-showcase {
  position: relative;
  overflow-x: auto;
  overflow-y: hidden;
  margin-top: 32px;
  padding: 6px 0 34px;
  mask-image: none;
  scroll-snap-type: none;
  scrollbar-width: none;
  touch-action: pan-x;
}

.review-showcase::-webkit-scrollbar {
  display: none;
}

.review-track {
  display: flex;
  width: max-content;
  gap: 18px;
  padding-inline: max(24px, calc((100vw - var(--container)) / 2));
  animation: none;
  transform: none;
}

.review-card {
  display: flex;
  width: 360px;
  height: 480px;
  min-height: 480px;
  flex: 0 0 360px;
  flex-direction: column;
  overflow: hidden;
  border: 1px solid rgba(6, 26, 47, 0.09);
  border-radius: 24px;
  background: var(--color-white);
  padding: 24px;
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.16);
  scroll-snap-align: start;
}

.review-card blockquote {
  min-height: 76px;
  margin: 14px 0 0;
  color: var(--color-navy-950);
  line-height: 1.6;
  -webkit-line-clamp: 3;
}

.review-card.is-expanded {
  height: auto;
  min-height: 480px;
}

.review-card.is-expanded blockquote {
  display: block;
  overflow: visible;
}

.review-read-more {
  align-self: flex-start;
  border: 0;
  background: transparent;
  padding: 6px 0;
  color: var(--color-navy-800);
  font-size: 0.78rem;
  font-weight: 850;
  cursor: pointer;
}

.review-details {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 12px;
}

.review-badge,
.review-category-badge,
.review-meta,
.review-source-link {
  max-width: 100%;
  border-radius: 999px;
  padding: 5px 8px;
  font-size: 0.72rem;
  line-height: 1.25;
}

.review-product {
  width: 100%;
  overflow: hidden;
  border-radius: 0;
  background: transparent;
  padding-inline: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.review-date {
  border-radius: 0;
  background: transparent;
  padding-inline: 0;
}

.review-source-link {
  background: var(--color-navy-950);
  color: var(--color-white);
}

.review-photos {
  margin-top: auto;
  padding-top: 14px;
}

.review-photo {
  width: 78px;
  height: 64px;
  border-radius: 14px;
}

.review-carousel-controls {
  position: absolute;
  right: max(24px, calc((100vw - var(--container)) / 2));
  bottom: 0;
  display: flex;
  gap: 8px;
}

.review-carousel-controls button {
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.1);
  color: var(--color-white);
  cursor: pointer;
}

.review-cta {
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: none;
}

.review-cta strong {
  color: var(--color-white);
}

.review-cta span {
  color: rgba(255, 255, 255, 0.64);
}

/* Shopping comparison explains channel differences without price claims. */
.shopping {
  background: var(--surface-cool);
}

.purchase-timeline {
  position: relative;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
  margin: 0 0 42px;
  padding: 0;
  list-style: none;
}

.purchase-timeline::before {
  position: absolute;
  top: 42px;
  right: 9%;
  left: 9%;
  height: 1px;
  background: rgba(6, 26, 47, 0.12);
  content: "";
}

.purchase-step {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  grid-template-areas:
    "icon number"
    "title title"
    "text text";
  min-height: 190px;
  align-content: start;
  border: 1px solid var(--border-quiet);
  border-radius: 20px;
  background: var(--color-white);
  padding: 18px;
  box-shadow: var(--elevation-small);
}

.purchase-step-number {
  position: static;
  grid-area: number;
  align-self: center;
  justify-self: end;
  color: var(--color-gray-500);
  font-size: 0.7rem;
  font-weight: 900;
}

.purchase-step-icon {
  display: grid;
  grid-area: icon;
  width: 48px;
  height: 48px;
  margin: 0;
  place-items: center;
  background: var(--surface-warm);
  color: var(--color-orange-600);
}

.purchase-step-icon svg {
  width: 22px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.8;
}

.purchase-step strong {
  grid-area: title;
  margin-top: 28px;
  color: var(--color-navy-950);
  font-size: 0.9rem;
}

.purchase-step small {
  grid-area: text;
  margin-top: 4px;
  color: var(--color-gray-500);
  line-height: 1.45;
}

.channel-comparison {
  display: grid;
  grid-template-columns: minmax(300px, 5fr) minmax(0, 7fr);
  gap: 18px;
  align-items: stretch;
}

.channel-card {
  border: 1px solid var(--border-quiet);
  border-radius: 24px;
  background: var(--color-white);
  box-shadow: var(--elevation-small);
}

.channel-whatsapp {
  display: flex;
  min-height: 590px;
  flex-direction: column;
  background: linear-gradient(145deg, var(--color-navy-900), var(--color-navy-800));
  padding: 26px;
  color: var(--color-white);
}

.channel-kicker {
  display: block;
  margin-top: 16px;
  color: var(--color-orange-500);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.channel-whatsapp h3,
.marketplace-channel-intro h3 {
  margin: 8px 0 0;
  font-size: 1.8rem;
  line-height: 1.2;
}

.channel-whatsapp h3 {
  color: var(--color-white);
}

.channel-benefits,
.marketplace-benefits {
  display: grid;
  gap: 7px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.channel-benefits li,
.marketplace-benefits li {
  position: relative;
  padding-left: 20px;
}

.channel-benefits li::before,
.marketplace-benefits li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-whatsapp);
  content: "✓";
  font-weight: 900;
}

.channel-benefits li {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
}

.channel-emphasis {
  margin: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  padding-top: 16px;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.82rem;
  line-height: 1.6;
}

.channel-whatsapp .button {
  width: 100%;
  margin-top: auto;
}

.marketplace-channel-group {
  display: grid;
  min-height: 100%;
  grid-template-rows: auto 340px;
  align-content: space-between;
}

.marketplace-channel-intro {
  border: 1px solid var(--border-quiet);
  border-radius: 24px;
  background: var(--color-white);
  padding: 28px;
  box-shadow: var(--elevation-small);
}

.marketplace-channel-intro .channel-kicker {
  margin-top: 0;
}

.marketplace-benefits {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.marketplace-benefits li {
  color: var(--color-gray-700);
  font-size: 0.84rem;
}

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

.marketplace-channel-cards .channel-card {
  display: flex;
  min-height: 0;
  flex-direction: column;
  padding: 22px;
}

.marketplace-channel-cards h4 {
  margin: 18px 0 12px;
  color: var(--color-navy-950);
  font-size: 1.1rem;
}

.marketplace-card-benefits {
  display: grid;
  gap: 7px;
  margin: 0 0 18px;
  padding: 0;
  color: var(--color-gray-700);
  font-size: 0.78rem;
  line-height: 1.45;
  list-style: none;
}

.marketplace-card-benefits li {
  position: relative;
  padding-left: 14px;
}

.marketplace-card-benefits li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--color-sage-500);
  content: "•";
  font-weight: 900;
}

.marketplace-channel-cards .button {
  width: 100%;
  margin-top: auto;
  padding-inline: 12px;
}

/* Project, FAQ, location, and closing trust sequence. */
.project-offer {
  background: var(--color-white);
}

.project-offer-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 28px 56px;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    var(--color-navy-950);
  background-size: 42px 42px;
  padding: 56px;
  color: var(--color-white);
  box-shadow: var(--elevation-large);
}

.project-offer-copy h2 {
  margin: 8px 0 0;
  color: var(--color-white);
  font-size: 3.1rem;
  line-height: 1.05;
}

.project-offer-copy p:not(.eyebrow) {
  max-width: 56ch;
  color: rgba(255, 255, 255, 0.72);
}

.project-offer-benefits {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px 20px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-offer-benefits li {
  position: relative;
  padding-left: 18px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 0.9rem;
}

.project-offer-benefits li::before {
  position: absolute;
  left: 0;
  color: var(--color-whatsapp);
  content: "✓";
}

.project-process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.project-process li {
  display: grid;
  gap: 6px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  padding-top: 12px;
}

.project-process strong {
  font-size: 0.84rem;
  line-height: 1.4;
}

.project-chips {
  display: flex;
  flex-wrap: wrap;
  align-content: start;
  gap: 8px;
}

.project-chips span,
.service-area-list li {
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.07);
  padding: 7px 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.78rem;
  font-weight: 800;
}

.project-offer-card > .button {
  grid-column: 2;
  width: 100%;
}

.faq {
  background: var(--color-ivory-50);
}

.faq-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.75fr) minmax(0, 1.25fr);
  gap: 72px;
  align-items: start;
}

.faq .section-heading {
  position: sticky;
  top: 128px;
}

.faq .section-heading .button {
  margin-top: 24px;
}

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

.faq-item {
  border: 1px solid var(--border-quiet);
  border-radius: 20px;
  background: var(--color-white);
  box-shadow: var(--elevation-small);
}

.faq-item summary {
  display: flex;
  min-height: 74px;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 22px;
  color: var(--color-navy-950);
  font-weight: 850;
  cursor: pointer;
  list-style: none;
}

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

.faq-item summary span {
  display: grid;
  width: 32px;
  height: 32px;
  flex: 0 0 32px;
  place-items: center;
  border-radius: 50%;
  background: var(--color-gray-100);
}

.faq-item[open] summary span {
  background: var(--color-navy-950);
  color: var(--color-white);
  transform: rotate(45deg);
}

.faq-item p {
  margin: 0;
  padding: 0 22px 22px;
  color: var(--color-gray-700);
}

.location {
  position: relative;
  background:
    linear-gradient(rgba(6, 26, 47, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 26, 47, 0.025) 1px, transparent 1px),
    var(--surface-warm);
  background-size: 48px 48px;
}

.location-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(300px, 0.85fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 52px;
}

.location-heading h2 {
  max-width: 15ch;
  margin: 6px 0 0;
}

.location-heading > p {
  max-width: 48ch;
  margin: 0 0 10px;
  color: var(--color-gray-700);
}

.location-editorial {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 28px;
  align-items: stretch;
}

.location-map {
  height: auto;
  min-height: 600px;
  border: 1px solid var(--border-quiet);
  border-radius: 28px;
  box-shadow: var(--elevation-medium);
}

.location-map iframe {
  width: 100%;
  height: 100%;
  min-height: 600px;
  border: 0;
}

.location-card {
  display: flex;
  min-width: 0;
  min-height: 600px;
  flex-direction: column;
  margin-left: 0;
  border: 1px solid var(--border-quiet);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.96);
  padding: 30px;
  box-shadow: var(--elevation-large);
}

.location-card h3 {
  font-size: 1.85rem;
}

.location-card .location-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  margin-top: auto;
}

.location-card .button {
  width: 100%;
  padding-inline: 12px;
}

.service-area {
  background: var(--color-navy-950);
  padding-block: 72px;
  color: var(--color-white);
}

.service-area-inner {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(0, 1.5fr) auto;
  gap: 36px;
  align-items: center;
}

.service-area h2 {
  margin: 6px 0 0;
  color: var(--color-white);
  font-size: 2.7rem;
  line-height: 1.05;
}

.service-area p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.65);
}

.service-area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.service-area .button-primary {
  background: var(--color-white);
  color: var(--color-navy-950);
}

.final-cta-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.8fr);
  gap: 72px;
  align-items: center;
  max-width: var(--container);
}

.final-cta h2 {
  max-width: 14ch;
  font-size: 3.5rem;
}

.site-footer {
  padding-top: 72px;
}

.site-footer .footer-grid {
  grid-template-columns: minmax(260px, 1.2fr) repeat(3, minmax(150px, 0.55fr));
  gap: 32px;
}

.site-footer .footer-hours .hours-row {
  border-top-color: rgba(255, 255, 255, 0.14);
}

.site-footer .footer-hours .hours-row span {
  color: rgba(255, 255, 255, 0.82);
}

.site-footer .footer-hours .hours-row strong {
  color: #fff;
}

.floating-whatsapp {
  right: max(18px, env(safe-area-inset-right));
  bottom: max(18px, env(safe-area-inset-bottom));
  width: 190px;
  max-width: calc(100vw - 36px);
  justify-content: flex-start;
  padding-right: 14px;
}

@media (max-width: 1180px) {
  :root {
    --section-space: 88px;
  }

  .site-header .primary-nav {
    gap: 14px;
    font-size: 0.82rem;
  }

  .site-header .primary-nav .button {
    padding-inline: 14px;
  }

  .homepage-flow .section-heading h2,
  .location-heading h2 {
    font-size: 3.1rem;
  }

  .business-stats .container {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .business-stats-heading h2 {
    max-width: 18ch;
  }

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

}

@media (max-width: 1024px) {
  .nav-toggle {
    display: block;
  }

  .site-header .primary-nav a:not(.button) {
    display: flex;
  }

  .site-header .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 24px;
    left: 24px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--border-quiet);
    border-radius: 18px;
    background: var(--color-white);
    padding: 12px;
    box-shadow: var(--elevation-large);
  }

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

  .site-header .primary-nav a:not(.button) {
    min-height: 44px;
    align-items: center;
    color: var(--color-navy-950);
    padding: 8px 12px;
  }

  .site-header .primary-nav .button {
    width: 100%;
  }

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

  .trust-signal:nth-child(4),
  .trust-signal:nth-child(5) {
    grid-column: span 1;
  }

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

  .feature-item-main {
    grid-column: 1 / -1;
    grid-row: auto;
    min-height: 480px;
  }

  .feature-item:not(.feature-item-main) {
    grid-column: span 4;
    min-height: 220px;
    grid-template-columns: 48px minmax(0, 1fr);
  }

  .feature-item:not(.feature-item-main) .feature-number {
    grid-column: 2;
  }

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

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

  .delivery-card {
    min-height: 0;
  }

  .delivery-card .button {
    margin-top: 16px;
  }

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

  .stat-item:nth-child(4) {
    border-left: 0;
  }

  .about-grid,
  .faq-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .about .section-heading,
  .faq .section-heading {
    position: static;
    max-width: 720px;
  }

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

  .review-summary-pro {
    grid-template-columns: 1fr 1fr;
  }

  .review-summary-pro > .button {
    grid-column: 1 / -1;
    width: 100%;
  }

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

  .purchase-timeline::before {
    display: none;
  }

  .channel-comparison {
    grid-template-columns: 1fr;
  }

  .channel-whatsapp {
    min-height: 0;
  }

  .marketplace-channel-group {
    min-height: 0;
  }

  .project-offer-card {
    gap: 28px 36px;
    padding: 44px;
  }

  .location-heading {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .location-editorial {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .location-map,
  .location-map iframe {
    height: 480px;
    min-height: 480px;
  }

  .location-card {
    min-height: 0;
    margin-left: 0;
  }

  .service-area-inner {
    grid-template-columns: 1fr 1.4fr;
  }

  .service-area .button {
    grid-column: 1 / -1;
    width: 100%;
  }
}

@media (max-width: 768px) {
  :root {
    --section-space: 72px;
  }

  .container {
    width: min(calc(100% - 32px), var(--container));
  }

  .site-header {
    padding-top: 10px;
  }

  .site-header .header-inner {
    min-height: 64px;
    border-radius: 18px;
    padding: 6px 10px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .mobile-header-whatsapp {
    display: grid;
    width: 44px;
    height: 44px;
    margin-left: auto;
    place-items: center;
    border-radius: 14px;
    background: var(--color-white);
  }

  .mobile-header-whatsapp img {
    width: 28px;
    height: 28px;
    object-fit: contain;
  }

  .nav-toggle {
    display: grid;
    place-items: center;
  }

  .site-header .primary-nav {
    position: absolute;
    top: calc(100% + 8px);
    right: 16px;
    left: 16px;
    display: none;
    align-items: stretch;
    border: 1px solid var(--border-quiet);
    border-radius: 18px;
    background: var(--color-white);
    padding: 12px;
    box-shadow: var(--elevation-large);
  }

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

  .site-header .primary-nav a:not(.button) {
    display: flex;
    min-height: 44px;
    align-items: center;
    color: var(--color-navy-950);
    padding: 8px 12px;
  }

  .site-header .primary-nav .button {
    width: 100%;
  }

  .homepage-flow .section-heading h2,
  .location-heading h2,
  .final-cta h2 {
    font-size: 2.65rem;
  }

  .trust-bar-track {
    display: flex;
    overflow-x: auto;
    padding-bottom: 8px;
    scroll-snap-type: x mandatory;
  }

  .trust-signal {
    width: 230px;
    flex: 0 0 230px;
    scroll-snap-align: start;
  }

  .feature-item:not(.feature-item-main) {
    grid-column: 1 / -1;
    min-height: 170px;
  }

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

  .delivery-cta,
  .review-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .delivery-cta .button,
  .review-cta-actions,
  .review-cta-actions .button {
    width: 100%;
  }

  .review-cta {
    display: flex;
  }

  .review-cta-actions {
    display: grid;
  }

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

  .gallery-item-large {
    min-height: 520px;
  }

  .gallery-item:not(.gallery-item-large) {
    min-height: 270px;
  }

  .gallery-story {
    min-height: 230px;
    margin-left: -12px;
    padding: 22px;
  }

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

  .marketplace-benefits,
  .marketplace-channel-cards {
    grid-template-columns: 1fr;
  }

  .marketplace-channel-group {
    grid-template-rows: auto auto;
    align-content: start;
    gap: 18px;
  }

  .marketplace-channel-cards .channel-card {
    min-height: 220px;
  }

  .project-offer-card {
    grid-template-columns: 1fr;
  }

  .project-offer-card > .button {
    grid-column: 1;
  }

  .project-process {
    grid-template-columns: 1fr;
  }

  .service-area-inner,
  .final-cta-inner {
    grid-template-columns: 1fr;
  }

  .service-area h2 {
    font-size: 2.4rem;
  }

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

@media (max-width: 560px) {
  :root {
    --section-space: 58px;
  }

  .container {
    width: min(calc(100% - 24px), var(--container));
  }

  .brand-text span {
    display: none;
  }

  .homepage-flow .section-heading {
    margin-bottom: 34px;
  }

  .homepage-flow .section-heading h2,
  .location-heading h2,
  .business-stats-heading h2,
  .project-offer-copy h2,
  .final-cta h2 {
    font-size: 2.2rem;
  }

  .quick-contact {
    padding-bottom: 36px;
  }

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

  .quick-item {
    min-height: 72px;
  }

  .feature-item,
  .delivery-card,
  .category-card,
  .marketplace-channel-intro,
  .channel-whatsapp,
  .location-card {
    padding: 22px;
  }

  .feature-item-main {
    min-height: 440px;
  }

  .delivery-education {
    grid-template-columns: 1fr;
  }

  .delivery-education li {
    min-height: 0;
  }

  .delivery-items {
    grid-template-columns: 1fr;
  }

  .delivery-cta {
    padding: 22px;
  }

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

  .stat-item:nth-child(4) {
    border-left: 1px solid rgba(255, 255, 255, 0.14);
  }

  .stat-item:nth-child(odd) {
    border-left: 0;
  }

  .about-grid,
  .faq-layout {
    gap: 30px;
  }

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

  .gallery-item-large {
    grid-row: auto;
    min-height: 470px;
  }

  .gallery-item:not(.gallery-item-large) {
    min-height: 250px;
  }

  .gallery-story {
    min-height: 0;
    margin: 0;
  }

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

  .category-card {
    min-height: 0;
  }

  .review-summary-pro {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 18px;
  }

  .review-platforms {
    justify-content: flex-start;
  }

  .review-summary-pro > .button {
    grid-column: 1;
  }

  .review-filter {
    width: 100%;
    overflow-x: auto;
  }

  .review-filter > span {
    display: none;
  }

  .review-filter button {
    flex: 1 0 auto;
  }

  .review-track {
    padding-inline: 12px;
  }

  .review-card {
    width: calc(100vw - 36px);
    height: 470px;
    min-height: 470px;
    flex-basis: calc(100vw - 36px);
    padding: 20px;
  }

  .review-carousel-controls {
    right: 12px;
  }

  .purchase-timeline {
    grid-template-columns: 1fr;
  }

  .purchase-step {
    min-height: 150px;
  }

  .channel-whatsapp h3,
  .marketplace-channel-intro h3 {
    font-size: 1.55rem;
  }

  .project-offer-card {
    gap: 24px;
    border-radius: 24px;
    padding: 28px 22px;
  }

  .project-offer-benefits {
    grid-template-columns: 1fr;
  }

  .faq-item summary {
    min-height: 68px;
    padding: 16px 18px;
  }

  .location-map,
  .location-map iframe {
    height: 340px;
    min-height: 340px;
  }

  .location-card .location-actions {
    grid-template-columns: 1fr;
  }

  .service-area {
    padding-block: 58px;
  }

  .service-area h2 {
    font-size: 2.1rem;
  }

  .final-cta {
    padding-block: 68px;
  }

  .final-cta-inner {
    gap: 36px;
  }

  .final-cta .hero-actions,
  .footer-statement-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .final-cta .button,
  .footer-statement-actions .button {
    width: 100%;
  }

  .site-footer .footer-grid {
    grid-template-columns: 1fr;
  }

  .floating-whatsapp {
    width: 58px;
    padding-right: 0;
  }

  .floating-whatsapp span {
    display: none;
  }
}

@media (max-width: 400px) {
  .brand-text strong {
    max-width: 150px;
    font-size: 0.84rem;
  }

  .homepage-flow .section-heading h2,
  .location-heading h2,
  .project-offer-copy h2,
  .final-cta h2 {
    font-size: 2rem;
  }

  .review-card {
    width: calc(100vw - 28px);
    flex-basis: calc(100vw - 28px);
  }

  .review-track {
    padding-inline: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .review-card,
  .feature-item,
  .delivery-card,
  .category-card,
  .channel-card,
  .faq-item summary span {
    transition: none;
  }
}
