:root {
  --bg: #f3efe8;
  --bg-alt: #e9e2d8;
  --surface: #fffcf7;
  --ink: #100e0c;
  --ink-soft: #3a342e;
  --muted: #6a6158;
  --line: rgba(16, 14, 12, 0.1);
  --primary: #9a1c1c;
  --primary-deep: #741414;
  --accent: #b8892f;
  --accent-soft: #d4a84a;
  --hero-ink: #faf6ef;
  --hero-muted: rgba(250, 246, 239, 0.86);
  --radius: 14px;
  --shadow: 0 12px 40px rgba(16, 14, 12, 0.08);
  --shadow-strong: 0 18px 50px rgba(16, 14, 12, 0.14);
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --space: 1.25rem;
  --max: 74rem;
  --narrow: 42rem;
  --header-h: 4rem;
  --bar-h: 4.6rem;
  --safe-top: env(safe-area-inset-top, 0px);
  --safe-bottom: env(safe-area-inset-bottom, 0px);
}

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

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

body {
  margin: 0;
  min-height: 100dvh;
  font-family: var(--font);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 70% 45% at 0% 10%, rgba(154, 28, 28, 0.06), transparent 50%),
    radial-gradient(ellipse 80% 40% at 100% 0%, rgba(184, 137, 47, 0.12), transparent 52%),
    linear-gradient(180deg, var(--bg), var(--bg-alt));
  padding-bottom: calc(var(--bar-h) + var(--safe-bottom));
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: #fff;
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: min(100% - (var(--space) * 2), var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - (var(--space) * 2), var(--narrow));
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 60;
  color: var(--hero-ink);
  transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease;
  border-bottom: 1px solid transparent;
}

.site-header.is-scrolled,
.site-header.is-open {
  background: rgba(20, 17, 15, 0.92);
  backdrop-filter: blur(14px);
  border-bottom-color: rgba(248, 244, 236, 0.08);
}

.header-inner {
  width: min(100% - (var(--space) * 2), var(--max));
  margin-inline: auto;
  min-height: calc(var(--header-h) + var(--safe-top));
  padding-top: var(--safe-top);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  font-weight: 800;
  font-size: 1.05rem;
  letter-spacing: -0.02em;
  text-decoration: none;
}

.nav-desktop {
  display: none;
  align-items: center;
  gap: 1.5rem;
}

.nav-desktop a {
  text-decoration: none;
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(248, 244, 236, 0.82);
  transition: color 0.2s ease;
}

.nav-desktop a:hover,
.nav-desktop a:focus-visible {
  color: #fff;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
}

.btn-nav {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.5rem;
  padding: 0.5rem 0.85rem;
  background: var(--primary);
  color: #fff8f5;
  text-decoration: none;
  font-size: 0.8125rem;
  font-weight: 700;
  border-radius: 8px;
}

.nav-toggle {
  width: 2.75rem;
  height: 2.75rem;
  border: 1px solid rgba(248, 244, 236, 0.25);
  background: rgba(255, 255, 255, 0.06);
  display: grid;
  place-content: center;
  gap: 5px;
  cursor: pointer;
  border-radius: 8px;
}

.nav-toggle span {
  display: block;
  width: 1.15rem;
  height: 2px;
  background: var(--hero-ink);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-open .nav-toggle span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-open .nav-toggle span:nth-child(2) {
  opacity: 0;
}

.site-header.is-open .nav-toggle span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-mobile {
  display: grid;
  gap: 0.35rem;
  padding: 0.75rem var(--space) 1.25rem;
  background: rgba(20, 17, 15, 0.96);
  border-top: 1px solid rgba(248, 244, 236, 0.08);
}

.nav-mobile[hidden] {
  display: none;
}

.nav-mobile a {
  text-decoration: none;
  color: var(--hero-ink);
  font-weight: 600;
  padding: 0.85rem 0.35rem;
  border-bottom: 1px solid rgba(248, 244, 236, 0.08);
}

.nav-mobile .btn {
  margin-top: 0.75rem;
  border-bottom: 0;
}

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: 100svh;
  min-height: 100dvh;
  display: flex;
  align-items: flex-end;
  padding:
    calc(var(--header-h) + var(--safe-top) + 2.5rem)
    var(--space)
    calc(var(--bar-h) + var(--safe-bottom) + 1.35rem);
  overflow: hidden;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: #120e0c center / cover no-repeat url("../assets/images/hero-poster.jpg");
}

.hero-video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 28%;
  transform: scale(1.04);
}

.hero-scrim {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      180deg,
      rgba(10, 8, 7, 0.7) 0%,
      rgba(10, 8, 7, 0.25) 28%,
      rgba(10, 8, 7, 0.45) 48%,
      rgba(10, 8, 7, 0.88) 72%,
      rgba(10, 8, 7, 0.98) 100%
    );
}

.hero-content {
  width: min(100%, 38rem);
  color: var(--hero-ink);
  padding: 1.15rem 1.1rem 1.2rem;
  border-radius: calc(var(--radius) + 4px);
  background: linear-gradient(180deg, rgba(16, 12, 10, 0.28), rgba(16, 12, 10, 0.55));
  border: 1px solid rgba(250, 246, 239, 0.12);
  backdrop-filter: blur(8px);
}

.hero-eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.hero-title {
  margin: 0 0 0.65rem;
  font-size: clamp(2.65rem, 12vw, 4.6rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  font-weight: 800;
  text-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
}

.hero-text {
  margin: 0 0 1.2rem;
  max-width: 24rem;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--hero-muted);
}

.hero-cta {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 0.6rem;
  margin-bottom: 0.65rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 3.15rem;
  padding: 0.85rem 1.15rem;
  border-radius: 12px;
  border: 1.5px solid transparent;
  text-decoration: none;
  font-weight: 700;
  font-size: 0.95rem;
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.btn:active {
  transform: scale(0.98);
}

.btn-primary {
  background: var(--primary);
  color: #fff8f5;
  box-shadow: 0 10px 24px rgba(154, 28, 28, 0.28);
}

.btn-primary:hover {
  background: var(--primary-deep);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--hero-ink);
  border-color: rgba(250, 246, 239, 0.35);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.16);
}

.sound-toggle {
  width: 100%;
  min-height: 3.2rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  border: 0;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--accent-soft), var(--accent));
  color: #1a1512;
  font-weight: 800;
  font-size: 1.02rem;
  cursor: pointer;
  animation: soundPulse 2.4s ease-in-out infinite;
}

.sound-toggle-icon {
  width: 0.8rem;
  height: 0.8rem;
  border-radius: 50%;
  background: currentColor;
  box-shadow:
    0 0 0 0.2rem rgba(26, 21, 18, 0.16),
    0.5rem -0.12rem 0 -0.16rem currentColor,
    0.85rem -0.24rem 0 -0.26rem currentColor;
}

.sound-toggle.is-on {
  background: rgba(12, 9, 8, 0.7);
  color: var(--hero-ink);
  border: 1px solid rgba(248, 244, 236, 0.35);
  animation: none;
}

.sound-toggle:focus-visible,
.btn:focus-visible,
.nav-toggle:focus-visible,
.service-item:focus-visible,
.contact-card:focus-visible {
  outline: 2px solid var(--accent-soft);
  outline-offset: 3px;
}

@keyframes soundPulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(166, 124, 45, 0.4);
  }
  50% {
    box-shadow: 0 0 0 0.5rem rgba(166, 124, 45, 0);
  }
}

/* Trust */
.trust {
  background: linear-gradient(180deg, #100e0c, #171310);
  color: var(--hero-ink);
  padding: 1.35rem 0;
  border-block: 1px solid rgba(212, 168, 74, 0.18);
}

.trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.9rem 1rem;
}

.trust-grid article {
  display: grid;
  gap: 0.25rem;
  padding: 0.85rem 0.9rem;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(250, 246, 239, 0.08);
}

.trust-grid strong {
  font-size: 0.95rem;
  font-weight: 800;
  color: var(--accent-soft);
}

.trust-grid span {
  font-size: 0.82rem;
  color: rgba(250, 246, 239, 0.72);
  line-height: 1.4;
}

/* Sections */
.section {
  padding: clamp(3rem, 8vw, 5rem) 0;
}

.section-alt {
  background: rgba(255, 252, 248, 0.55);
}

.section-head {
  max-width: 38rem;
  margin-bottom: 1.75rem;
}

.eyebrow {
  margin: 0 0 0.55rem;
  font-size: 0.8125rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--accent);
}

.eyebrow.light {
  color: var(--accent-soft);
}

.section h2,
.cta-band h2 {
  margin: 0 0 0.75rem;
  font-size: clamp(1.6rem, 5.5vw, 2.35rem);
  line-height: 1.15;
  letter-spacing: -0.03em;
  font-weight: 800;
}

.lead {
  margin: 0 0 1rem;
  color: var(--ink-soft);
  font-size: 1.05rem;
}

.lead.light {
  color: var(--hero-muted);
}

.section p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.section p:last-child {
  margin-bottom: 0;
}

.about-grid {
  display: grid;
  gap: 1.75rem;
  align-items: center;
}

.gallery-unit {
  display: grid;
  gap: 0.65rem;
  width: 100%;
}

.product-visual.gallery-unit,
.about-media.gallery-unit,
.product-showcase.gallery-unit,
.proof-grid.gallery-unit {
  background: #14110f;
  padding: 0.55rem;
  border-radius: 22px;
  box-shadow: var(--shadow-strong);
}

.about-media {
  grid-template-columns: 1.2fr 0.8fr;
  align-items: stretch;
  min-height: clamp(17rem, 68vw, 24rem);
  overflow: hidden;
}

.about-portrait {
  grid-row: auto;
}

.about-portrait,
.about-practice {
  margin: 0;
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  background: #1a1512;
  min-height: 0;
  height: 100%;
}

.about-portrait::after,
.about-practice::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(180deg, transparent 55%, rgba(10, 8, 7, 0.3));
}

.about-portrait img,
.about-practice img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}

.about-practice img {
  object-position: center;
}

.product {
  display: grid;
  gap: 1.75rem;
  align-items: start;
}

.product-visual {
  gap: 0.65rem;
}

.product-media {
  margin: 0;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  isolation: isolate;
  box-shadow: none;
  background: #0e0c0b;
  aspect-ratio: 4 / 3;
}

.product-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.product-note {
  margin: 1.25rem 0 0 !important;
  font-weight: 700;
  color: var(--primary) !important;
}

.product-showcase {
  grid-template-columns: 1fr;
  gap: 0.65rem;
  overflow: hidden;
}

.product-card {
  position: relative;
  display: grid;
  align-items: end;
  min-height: clamp(20rem, 62vw, 28rem);
  border-radius: 14px;
  overflow: hidden;
  text-decoration: none;
  color: #fff8f2;
  box-shadow: none;
  isolation: isolate;
  transition: transform 0.35s ease;
}

.product-card::before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(255, 248, 242, 0.22);
  border-radius: 10px;
  z-index: 2;
  pointer-events: none;
  opacity: 0.45;
  transition: opacity 0.35s ease;
}

.product-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    180deg,
    rgba(12, 9, 8, 0.08) 20%,
    rgba(12, 9, 8, 0.55) 62%,
    rgba(12, 9, 8, 0.88) 100%
  );
}

.product-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 1.2s ease;
}

.product-card:hover,
.product-card:focus-visible {
  transform: none;
}

.product-card:hover::before,
.product-card:focus-visible::before {
  opacity: 0.8;
}

.product-card:hover img,
.product-card:focus-visible img {
  transform: scale(1.05);
}

.product-card-body {
  position: relative;
  z-index: 2;
  padding: clamp(1.15rem, 3.5vw, 1.7rem);
  display: grid;
  gap: 0.5rem;
}

.product-card-body h3 {
  margin: 0;
  font-size: clamp(1.25rem, 4vw, 1.7rem);
  letter-spacing: -0.02em;
  font-weight: 800;
  line-height: 1.15;
  color: #fff8f2;
}

.product-card-body p {
  margin: 0;
  color: rgba(255, 248, 242, 0.84);
  font-size: 0.93rem;
  line-height: 1.5;
  max-width: 28rem;
}

.product-card-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  margin-top: 0.35rem;
  min-height: 2.3rem;
  padding: 0.4rem 0.95rem;
  border: 1px solid rgba(212, 168, 74, 0.8);
  border-radius: 999px;
  color: #fff8f2;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.text-link {
  font-weight: 800;
  color: var(--primary);
  text-decoration: none;
  font-size: 0.92rem;
  margin-top: 0.2rem;
}

.text-link:hover {
  color: var(--primary-deep);
}

.proof-grid {
  grid-template-columns: 1fr;
  gap: 0.65rem;
  overflow: hidden;
}

.proof-shot,
.proof-video {
  margin: 0;
  background: #1a1512;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  position: relative;
  display: grid;
  grid-template-rows: 1fr auto;
}

.proof-shot img,
.proof-video video {
  width: 100%;
  display: block;
  aspect-ratio: 4 / 5;
  max-height: none;
  object-fit: cover;
  background: #111;
}

.proof-video video {
  object-fit: contain;
  background: #0c0a09;
}

.proof-shot figcaption,
.proof-video p {
  margin: 0;
  padding: 0.85rem 1rem;
  font-size: 0.88rem;
  color: rgba(250, 246, 239, 0.88);
  font-weight: 600;
  background: #1a1512;
}

.proof-cta {
  margin-top: 1.5rem;
}

.feature-list,
.benefit-list {
  list-style: none;
  margin: 1.5rem 0 0;
  padding: 0;
}

.feature-list li,
.benefit-list li {
  padding: 1rem 0;
  border-top: 1px solid var(--line);
}

.feature-list li:last-child,
.benefit-list li:last-child {
  border-bottom: 1px solid var(--line);
}

.feature-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1.02rem;
}

.feature-list span,
.benefit-list li {
  color: var(--ink-soft);
  font-size: 0.98rem;
}

.inline-cta {
  margin-top: 1.5rem;
}

.inline-cta .btn {
  width: 100%;
}

/* Media */
.media-pair {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.65rem;
}

.media-pair figure {
  margin: 0;
  background: #1a1512;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: none;
  position: relative;
}

.media-pair img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  object-position: center;
  display: block;
  transition: transform 0.6s ease;
}

.media-pair figure:hover img {
  transform: scale(1.04);
}

/* Services — interactive */
.service-grid {
  display: grid;
  gap: 0.75rem;
}

.service-item {
  display: grid;
  gap: 0.2rem;
  padding: 1.05rem 1.1rem;
  text-decoration: none;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-item:hover {
  border-color: rgba(166, 124, 45, 0.45);
  transform: translateY(-2px);
}

.service-item strong {
  font-size: 1rem;
  font-weight: 700;
}

.service-item span {
  color: var(--muted);
  font-size: 0.9rem;
}

/* CTA band */
.cta-band {
  background:
    radial-gradient(ellipse 70% 60% at 20% 0%, rgba(166, 124, 45, 0.18), transparent 50%),
    var(--ink);
  color: var(--hero-ink);
  padding: clamp(2.5rem, 7vw, 5rem) 0 calc(2.5rem + var(--bar-h) * 0.35);
}

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

.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 0.75rem;
  margin-top: 1.35rem;
}

.contact-card {
  display: flex;
  align-items: center;
  gap: 1rem;
  min-height: 5.75rem;
  padding: 1.05rem 1.1rem;
  text-decoration: none;
  color: var(--hero-ink);
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(248, 244, 236, 0.14);
  border-radius: 18px;
  transition: background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  -webkit-tap-highlight-color: transparent;
}

.contact-card:active {
  transform: scale(0.98);
}

.contact-card:hover,
.contact-card:focus-visible {
  background: rgba(255, 255, 255, 0.11);
}

.contact-card--call {
  border-color: rgba(52, 199, 89, 0.45);
  background: rgba(52, 199, 89, 0.1);
}

.contact-card--call:hover,
.contact-card--call:focus-visible {
  border-color: rgba(52, 199, 89, 0.75);
}

.contact-card--wa {
  border-color: rgba(37, 211, 102, 0.45);
  background: rgba(37, 211, 102, 0.1);
}

.contact-card--wa:hover,
.contact-card--wa:focus-visible {
  border-color: rgba(37, 211, 102, 0.75);
}

.contact-logo {
  flex-shrink: 0;
  width: 3rem;
  height: 3rem;
  display: block;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.25);
}

.contact-text {
  display: grid;
  gap: 0.12rem;
  min-width: 0;
}

.contact-label {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-soft);
}

.contact-card--call .contact-label {
  color: #7dffb0;
}

.contact-card--wa .contact-label {
  color: #8cf5b4;
}

.contact-value {
  font-size: clamp(1.15rem, 4.5vw, 1.4rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}

.contact-hint {
  font-size: 0.78rem;
  font-weight: 600;
  color: rgba(250, 246, 239, 0.62);
}

.note {
  margin: 1.25rem 0 0;
  font-weight: 600;
  color: var(--hero-muted);
}

/* Footer */
.site-footer {
  background: #0e0c0b;
  color: rgba(248, 244, 236, 0.78);
  padding: 3rem 0 calc(1.5rem + var(--bar-h) * 0.15);
}

.footer-grid {
  display: grid;
  gap: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid rgba(248, 244, 236, 0.1);
}

.footer-brand .brand {
  color: var(--hero-ink);
  display: inline-block;
  margin-bottom: 0.65rem;
}

.footer-brand p,
.footer-links,
.footer-contact {
  display: grid;
  gap: 0.55rem;
}

.footer-title {
  margin: 0;
  color: var(--hero-ink);
  font-weight: 700;
  font-size: 0.9rem;
}

.footer-links a,
.footer-contact a {
  text-decoration: none;
  color: rgba(248, 244, 236, 0.72);
  font-size: 0.95rem;
}

.footer-links a:hover,
.footer-contact a:hover {
  color: #fff;
}

.footer-bottom {
  padding-top: 1.25rem;
  font-size: 0.875rem;
  color: rgba(248, 244, 236, 0.5);
}

.footer-bottom p {
  margin: 0;
}

/* Mobile bar */
.mobile-bar {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 70;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
  padding: 0.65rem 0.75rem calc(0.65rem + var(--safe-bottom));
  background: rgba(16, 14, 12, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid rgba(212, 168, 74, 0.22);
  box-shadow: 0 -8px 30px rgba(0, 0, 0, 0.35);
}

.mobile-bar-btn {
  display: inline-flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
  gap: 0.6rem;
  min-height: 3.55rem;
  padding: 0.55rem 0.8rem;
  border-radius: 14px;
  text-decoration: none;
  font-weight: 800;
  font-size: 0.9rem;
  -webkit-tap-highlight-color: transparent;
}

.mobile-bar-btn:active {
  transform: scale(0.98);
}

.mobile-bar-logo {
  flex-shrink: 0;
  width: 2.25rem;
  height: 2.25rem;
  display: block;
  border-radius: 999px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.22);
}

.mobile-bar-copy {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0.05rem;
  line-height: 1.15;
  min-width: 0;
}

.mobile-bar-btn small {
  font-size: 0.65rem;
  font-weight: 600;
  opacity: 0.88;
}

.mobile-bar-btn.call {
  background: rgba(52, 199, 89, 0.18);
  color: #fff8f5;
  border: 1px solid rgba(52, 199, 89, 0.45);
}

.mobile-bar-btn.wa {
  background: rgba(37, 211, 102, 0.18);
  color: #fff8f5;
  border: 1px solid rgba(37, 211, 102, 0.45);
}

/* Reveal */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible,
.hero-content.reveal {
  opacity: 1;
  transform: none;
}

.hero-content.reveal {
  animation: rise 0.8s ease 0.1s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 420px) {
  .about-media {
    grid-template-columns: 1fr;
    min-height: 0;
  }

  .about-portrait,
  .about-practice {
    aspect-ratio: 4 / 5;
    height: auto;
  }
}

/* Small phones */
@media (max-width: 360px) {
  :root {
    --space: 1.05rem;
  }

  .hero-title {
    font-size: 2.25rem;
  }

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

  .btn,
  .sound-toggle {
    font-size: 0.92rem;
  }
}

@media (min-width: 640px) {
  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
  }
}

/* Larger phones */
@media (min-width: 480px) {
  :root {
    --space: 1.5rem;
  }

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

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

  .product-card {
    min-height: clamp(22rem, 48vw, 28rem);
  }
}

/* Tablet */
@media (min-width: 768px) {
  body {
    padding-bottom: 0;
  }

  .mobile-bar {
    display: none;
  }

  .site-footer {
    padding-bottom: 2rem;
  }

  .nav-toggle {
    display: none;
  }

  .nav-desktop {
    display: flex;
  }

  .btn-nav {
    font-size: 0.875rem;
    padding: 0.5rem 1rem;
  }

  .hero {
    align-items: center;
    padding-left: clamp(2rem, 6vw, 4rem);
    padding-right: clamp(2rem, 6vw, 4rem);
  }

  .hero-content {
    width: min(100%, 40rem);
    padding: 1.6rem 1.6rem 1.7rem;
    background: linear-gradient(160deg, rgba(16, 12, 10, 0.35), rgba(16, 12, 10, 0.62));
  }

  .hero-cta {
    width: max-content;
    grid-template-columns: auto auto;
  }

  .sound-toggle {
    width: auto;
    min-width: 15rem;
  }

  .inline-cta .btn {
    width: auto;
  }

  .trust-grid {
    grid-template-columns: repeat(4, 1fr);
    gap: 0.85rem;
  }

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

  .cta-band {
    padding-bottom: clamp(3rem, 8vw, 5rem);
  }

  .contact-grid {
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
  }

  .contact-card {
    flex-direction: column;
    align-items: flex-start;
    min-height: 11rem;
    padding: 1.25rem;
  }

  .contact-logo {
    width: 3.25rem;
    height: 3.25rem;
  }

  .footer-grid {
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 2.5rem;
  }

  .about-grid,
  .product {
    grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
    gap: 2.25rem;
    align-items: start;
  }

  .about-media {
    grid-template-columns: 1.25fr 0.85fr;
    min-height: 28rem;
    padding: 0.65rem;
    gap: 0.65rem;
  }

  .about-portrait,
  .about-practice {
    border-radius: 14px;
  }

  .product-visual {
    position: sticky;
    top: calc(var(--header-h) + 1rem);
  }

  .product-showcase {
    grid-template-columns: 1fr 1fr;
    gap: 0.65rem;
    padding: 0.65rem;
  }

  .product-card {
    min-height: 28rem;
    border-radius: 14px;
  }

  .product-media {
    border-radius: 14px;
    aspect-ratio: 4 / 3;
    min-height: 0;
  }

  .proof-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 0.65rem;
    padding: 0.65rem;
  }

  .proof-shot img,
  .proof-video video {
    aspect-ratio: 3 / 4;
    height: auto;
  }

  .media-pair {
    gap: 0.65rem;
    max-width: none;
  }

  .media-pair figure {
    border-radius: 14px;
  }
}

/* Desktop */
@media (min-width: 1024px) {
  :root {
    --space: 2rem;
  }

  .hero-title {
    font-size: clamp(4.2rem, 6vw, 5.8rem);
  }

  .hero-text {
    font-size: 1.18rem;
    max-width: 28rem;
  }

  .hero-content {
    padding: 1.85rem 1.9rem 1.95rem;
  }

  .product-showcase {
    grid-template-columns: 1fr 1fr;
    max-width: none;
    margin-inline: 0;
    gap: 0.75rem;
  }

  .product-card {
    min-height: 32rem;
  }

  .about-media {
    min-height: 32rem;
  }

  .proof-grid {
    gap: 0.75rem;
  }

  .trust-grid {
    gap: 1rem;
  }

  .section h2,
  .cta-band h2 {
    font-size: clamp(2.1rem, 3vw, 2.75rem);
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .reveal,
  .hero-content.reveal,
  .sound-toggle,
  .media-pair img,
  .service-item {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }

  .hero-video {
    display: none;
  }
}
