:root {
  --bg: #060606;
  --bg-soft: #0d1012;
  --panel: rgba(255, 255, 255, 0.06);
  --panel-strong: rgba(255, 255, 255, 0.1);
  --line: rgba(255, 255, 255, 0.09);
  --text: #f5f7f8;
  --muted: #afb5bb;
  --muted-strong: #d3d6da;
  --red: #ff3a36;
  --red-soft: #ff7366;
  --red-deep: #981017;
  --silver: #dadde1;
  --shadow: 0 30px 70px rgba(0, 0, 0, 0.45);
  --radius-xl: 34px;
  --radius-lg: 26px;
  --radius-md: 18px;
  --site-width: 1180px;
  --section-space: clamp(4.5rem, 8vw, 7rem);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(255, 58, 54, 0.18), transparent 28rem),
    radial-gradient(circle at 85% 18%, rgba(255, 255, 255, 0.08), transparent 22rem),
    linear-gradient(180deg, #050505 0%, #090b0d 48%, #050505 100%);
}

body.page-services {
  background:
    radial-gradient(circle at 10% 10%, rgba(255, 58, 54, 0.2), transparent 26rem),
    radial-gradient(circle at 85% 0%, rgba(255, 255, 255, 0.07), transparent 22rem),
    linear-gradient(180deg, #060606 0%, #090c0f 45%, #050505 100%);
}

body.page-shop,
body.page-product {
  background:
    radial-gradient(circle at 12% 6%, rgba(255, 58, 54, 0.2), transparent 26rem),
    radial-gradient(circle at 86% 14%, rgba(255, 255, 255, 0.08), transparent 23rem),
    linear-gradient(180deg, #050505 0%, #090b0d 48%, #050505 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  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: 72px 72px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.55), transparent 92%);
}

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

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

.shell {
  width: calc(100% - 2rem);
  max-width: var(--site-width);
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  backdrop-filter: blur(18px);
  background: linear-gradient(180deg, rgba(5, 5, 5, 0.92), rgba(5, 5, 5, 0.66));
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.header-inner,
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-inner {
  padding: 0.45rem 0;
}

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

.brand img {
  width: 118px;
  filter: drop-shadow(0 10px 24px rgba(255, 58, 54, 0.16));
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.brand-copy strong {
  font-family: "Sora", sans-serif;
  font-size: 0.94rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand-copy span {
  color: var(--muted);
  font-size: 0.8rem;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.menu-toggle,
.nav-close,
.nav-backdrop {
  display: none;
}

.menu-toggle {
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 3rem;
  height: 3rem;
  padding: 0;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--text);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  margin: 0.14rem 0;
  border-radius: 999px;
  background: currentColor;
}

.nav-panel-head {
  display: none;
}

.nav-panel-links {
  display: contents;
}

.nav-panel-kicker {
  display: none;
}

.nav-search {
  display: none;
}

.nav-link-title {
  display: inline;
}

.nav-link-note,
.nav-panel-brand,
.nav-panel-intro,
.nav-panel-label,
.nav-panel-meta {
  display: none;
}

.nav-panel-brand {
  gap: 0.9rem;
}

.nav-panel-brand > div {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.nav-panel-brand img {
  width: 72px;
  flex: 0 0 auto;
}

.nav-panel-brand strong {
  display: block;
  margin-bottom: 0.22rem;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav-panel-brand span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.nav-panel-intro {
  margin: 0 0 1rem;
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.65;
}

.nav-panel-label {
  color: #f2a8a2;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav-quick-link,
.nav-panel-address {
  color: var(--muted);
}

.nav a {
  color: var(--muted);
  font-size: 0.95rem;
  transition: color 180ms ease;
}

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

.nav-cta,
.button-primary {
  border-color: transparent;
  background: linear-gradient(135deg, var(--red), var(--red-soft));
  color: #fff;
  box-shadow: 0 18px 38px rgba(255, 58, 54, 0.28);
}

.nav-cta {
  padding: 0.8rem 1.1rem;
  border-radius: 999px;
  font-weight: 700;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  gap: 0.3rem;
}

.footer-meta span:last-child {
  color: var(--muted-strong);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

main {
  padding-bottom: 4rem;
}

.section,
.hero,
.page-hero {
  padding: var(--section-space) 0 0;
}

.eyebrow,
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  width: fit-content;
  font-weight: 800;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow {
  padding: 0.5rem 0.8rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--silver);
  font-size: 0.8rem;
}

.eyebrow::before {
  content: "";
  width: 0.55rem;
  height: 0.55rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, var(--red));
  box-shadow: 0 0 18px rgba(255, 58, 54, 0.7);
}

.section-label {
  margin-bottom: 0.8rem;
  color: #f3aba4;
  font-size: 0.8rem;
}

.hero-copy h1,
.section-head h2,
.cta-copy h2,
.page-copy h1,
.impact-copy h2 {
  margin: 1.25rem 0 1rem;
  font-family: "Sora", sans-serif;
  line-height: 0.95;
  letter-spacing: -0.05em;
  text-wrap: balance;
}

.hero-copy h1,
.page-copy h1 {
  font-size: clamp(2.85rem, 7vw, 5.6rem);
}

.page-home .hero-copy h1 {
  max-width: 8.6ch;
  font-size: clamp(2.65rem, 5.2vw, 4.85rem);
  line-height: 0.92;
}

.section-head h2,
.cta-copy h2,
.impact-copy h2 {
  font-size: clamp(2rem, 5vw, 3.7rem);
}

.hero-copy p,
.section-head p,
.cta-copy p,
.page-copy p,
.impact-copy p,
.floating-card p,
.contact-card p,
.services-poster p,
.page-service-note p,
.service-mosaic-card p,
.process-card p,
.impact-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.75;
  font-size: clamp(1rem, 1.35vw, 1.08rem);
}

.page-home .hero-copy p {
  max-width: 58ch;
}

.page-services .page-copy {
  max-width: 39rem;
}

.page-services .page-copy h1 {
  max-width: 9.4ch;
  font-size: clamp(2.7rem, 5.4vw, 4.9rem);
  line-height: 0.93;
}

.page-services .page-copy p {
  max-width: 58ch;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.65rem;
  min-height: 3.35rem;
  padding: 0.95rem 1.3rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  font-weight: 700;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

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

.button-secondary {
  background: rgba(255, 255, 255, 0.04);
}

.whatsapp-float {
  position: fixed;
  right: 1.15rem;
  bottom: 1.15rem;
  right: max(1.15rem, env(safe-area-inset-right));
  bottom: max(1.15rem, env(safe-area-inset-bottom));
  z-index: 70;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 3.45rem;
  padding: 0 1.05rem;
  border-radius: 999px;
  background: #25d366;
  color: #fff;
  font-size: 0.92rem;
  font-weight: 800;
  opacity: 1;
  visibility: visible;
  box-shadow: 0 18px 38px rgba(37, 211, 102, 0.32);
  pointer-events: auto;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

body.nav-open .whatsapp-float {
  opacity: 0;
  pointer-events: none;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  transform: translateY(-2px);
  background: #1fc25c;
  box-shadow: 0 22px 46px rgba(37, 211, 102, 0.42);
}

.whatsapp-float svg {
  width: 1.45rem;
  height: 1.45rem;
  flex: 0 0 auto;
}

.whatsapp-float svg path:first-child {
  fill: currentColor;
}

.whatsapp-float svg path:last-child {
  fill: #25d366;
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 2.25rem;
}

.panel,
.quick-meta article,
.impact-card,
.impact-media,
.service-card,
.services-poster,
.floating-card,
.poster-card,
.gallery-card,
.contact-card,
.cta-wrap,
.page-main-shot,
.page-side-shot,
.page-service-note,
.tally-card,
.service-mosaic-card,
.service-image-card,
.service-detail-card,
.process-card,
.photo-panel {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
}

.tilt-card {
  --mx: 50%;
  --my: 50%;
  --rx: 0deg;
  --ry: 0deg;
  transform-style: preserve-3d;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease;
}

.tilt-card::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  opacity: 0;
  background:
    radial-gradient(circle at var(--mx) var(--my), rgba(255, 255, 255, 0.14), transparent 30%),
    radial-gradient(circle at 80% 15%, rgba(255, 58, 54, 0.12), transparent 24%);
  transition: opacity 220ms ease;
}

.js .tilt-card.is-tilting {
  transform: perspective(1100px) rotateX(var(--rx)) rotateY(var(--ry)) translateY(-6px);
  border-color: rgba(255, 255, 255, 0.16);
}

.js .tilt-card.is-tilting::before,
.tilt-card:hover::before {
  opacity: 1;
}

.js .reveal {
  opacity: 0;
  transform: translateY(26px);
  transition:
    opacity 700ms ease,
    transform 700ms ease;
}

.js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.count {
  display: inline-block;
  min-width: 1.3ch;
}

.quick-meta {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 2.1rem;
}

.page-home .quick-meta {
  margin-top: 1.6rem;
}

.quick-meta article,
.tally-card {
  padding: 1rem 1.05rem;
  border-radius: var(--radius-md);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.02));
}

.quick-meta strong,
.services-poster strong,
.gallery-caption strong,
.impact-badge strong,
.page-service-note strong,
.tally-card strong {
  display: block;
  font-family: "Sora", sans-serif;
}

.quick-meta strong,
.tally-card strong {
  font-size: 1.1rem;
  margin-bottom: 0.3rem;
}

.quick-meta span,
.tally-card span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.5;
}

.hero-layout,
.impact-layout,
.services-layout,
.cta-wrap,
.page-hero-layout {
  display: grid;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.hero-layout,
.page-hero-layout,
.cta-wrap {
  grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
  align-items: center;
}

.page-home .hero-layout {
  grid-template-columns: minmax(0, 1.14fr) minmax(360px, 0.86fr);
  gap: clamp(2rem, 4vw, 3.4rem);
}

.page-home .hero-copy {
  max-width: 41rem;
  padding-top: 0.35rem;
}

.impact-layout {
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
}

.services-layout {
  grid-template-columns: minmax(0, 1fr) minmax(270px, 330px);
  align-items: start;
}

.hero-stage {
  position: relative;
  min-height: 590px;
}

.page-home .hero-stage {
  min-height: 500px;
}

.hero-photo {
  position: absolute;
  inset: 0 0 2.2rem 3rem;
  overflow: hidden;
  border-radius: 38px;
  background: #111;
  transform: perspective(1200px) rotateY(-8deg) rotateX(2deg);
  transform-origin: center left;
}

.page-home .hero-photo {
  inset: 0 0 1rem 0;
  border-radius: 32px;
  transform: none;
}

.hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(6, 6, 6, 0.1), rgba(6, 6, 6, 0.62)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.16), transparent 54%);
}

.hero-photo img,
.impact-media img,
.gallery-card img,
.page-main-shot img,
.page-side-shot img,
.photo-panel img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.floating-card,
.poster-card,
.services-poster,
.contact-card,
.page-service-note,
.service-detail-card,
.service-mosaic-card,
.process-card,
.impact-media,
.impact-card,
.page-main-shot,
.page-side-shot,
.photo-panel {
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(13, 13, 14, 0.96), rgba(8, 8, 8, 0.96));
  backdrop-filter: blur(18px);
}

.floating-card {
  position: absolute;
  right: -0.25rem;
  bottom: 0;
  width: min(320px, 72%);
  padding: 1.1rem;
  animation: drift 7s ease-in-out infinite;
}

.page-home .floating-card {
  right: 1rem;
  bottom: -0.25rem;
  width: min(290px, 62%);
  padding: 1rem 1.05rem;
}

.poster-card {
  position: absolute;
  left: 0;
  top: 2.5rem;
  width: min(240px, 46%);
  padding: 0.7rem;
  transform: rotate(-7deg);
  animation: drift-alt 8s ease-in-out infinite;
}

.page-home .poster-card {
  display: none;
}

.page-home .hero {
  position: relative;
  isolation: isolate;
  display: grid;
  align-items: center;
  min-height: 720px;
  min-height: calc(100svh - 5rem);
  padding: clamp(4rem, 8vw, 6.5rem) 0 clamp(4.25rem, 8vw, 6.75rem);
  overflow: hidden;
}

.page-home .hero::before,
.page-home .hero::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.page-home .hero::before {
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 5, 5, 0.74), rgba(5, 5, 5, 0.9)),
    linear-gradient(90deg, rgba(255, 58, 54, 0.2), transparent 32%, rgba(255, 255, 255, 0.08)),
    url("IMG_1654.JPG") center / cover no-repeat;
  transform: scale(1.04);
  animation: hero-photo-drift 18s ease-in-out infinite alternate;
}

.page-home .hero::after {
  z-index: -1;
  background:
    linear-gradient(115deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 48%, transparent 58% 100%),
    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: 220% 100%, 68px 68px, 68px 68px;
  opacity: 0.54;
  animation: hero-sheen 9s ease-in-out infinite;
}

.page-home .hero-layout {
  grid-template-columns: 1fr;
  justify-items: center;
  max-width: 980px;
  text-align: center;
}

.page-home .hero-copy {
  display: grid;
  justify-items: center;
  max-width: 56rem;
  margin: 0 auto;
  padding-top: 0;
}

.page-home .eyebrow {
  position: relative;
  overflow: hidden;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.28);
}

.page-home .eyebrow::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  transform: translateX(-120%);
  animation: hero-label-sheen 5.8s ease-in-out infinite;
}

.page-home .hero-copy h1 {
  max-width: 14ch;
  margin-right: auto;
  margin-left: auto;
  letter-spacing: 0;
  text-shadow: 0 18px 52px rgba(0, 0, 0, 0.52);
}

.page-home .hero-copy p {
  max-width: 58ch;
  margin-right: auto;
  margin-left: auto;
}

.page-home .hero-actions {
  justify-content: center;
}

.page-home .button {
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.24);
}

.page-home .button-primary {
  position: relative;
  overflow: hidden;
}

.page-home .button-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(100deg, transparent 0 32%, rgba(255, 255, 255, 0.28) 45%, transparent 58% 100%);
  transform: translateX(-120%);
  animation: hero-label-sheen 4.9s ease-in-out infinite;
}

.page-home .quick-meta {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  width: min(100%, 860px);
  gap: 0.9rem;
}

.page-home .quick-meta article {
  display: grid;
  align-content: center;
  min-height: 7rem;
  overflow: hidden;
  text-align: left;
  border-color: rgba(255, 255, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.1), transparent 48%);
}

.page-home .quick-meta article::after {
  content: "";
  position: absolute;
  top: 0;
  left: 1rem;
  right: 1rem;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.5), transparent);
}

.page-home .hero-stage {
  display: none;
}

.poster-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 18px;
  object-fit: cover;
}

.floating-card small,
.contact-card small,
.page-service-note small {
  display: block;
  margin-bottom: 0.35rem;
  color: #f2a8a2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.floating-card h3,
.contact-card h3,
.page-service-note h3,
.service-detail-card h3,
.service-mosaic-card h3,
.process-card h3,
.impact-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
}

.floating-card h3,
.contact-card h3,
.page-service-note h3 {
  font-size: 1.25rem;
}

.contact-links,
.contact-list {
  display: grid;
  gap: 0.7rem;
  margin-top: 1rem;
}

.contact-links a,
.contact-list a,
.contact-list span {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.55;
  word-break: break-word;
}

.contact-links a::before,
.contact-list a::before,
.contact-list span::before {
  content: "";
  flex: 0 0 0.7rem;
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, var(--red));
  box-shadow: 0 0 14px rgba(255, 58, 54, 0.35);
}

.brand-strip,
.ticker-strip {
  position: relative;
  overflow: hidden;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background: rgba(255, 255, 255, 0.03);
}

.brand-strip {
  margin-top: var(--section-space);
  padding: 0.95rem 0;
}

.birthday-post {
  padding: clamp(2.6rem, 5vw, 4.5rem) 0 0;
}

.birthday-card {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(280px, 0.72fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3.2rem);
  min-height: 430px;
  overflow: hidden;
  padding: clamp(1.35rem, 4vw, 2.4rem);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 32px;
  background:
    linear-gradient(135deg, rgba(255, 58, 54, 0.18), transparent 46%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.03)),
    rgba(8, 8, 8, 0.94);
  box-shadow: var(--shadow);
  isolation: isolate;
}

.birthday-card::before {
  content: "";
  position: absolute;
  inset: 1px;
  z-index: -1;
  border-radius: 31px;
  background:
    radial-gradient(circle at 82% 18%, rgba(255, 255, 255, 0.15), transparent 16rem),
    radial-gradient(circle at 16% 82%, rgba(255, 58, 54, 0.16), transparent 18rem);
}

.birthday-card::after {
  content: "";
  position: absolute;
  left: clamp(1.35rem, 4vw, 2.4rem);
  right: clamp(1.35rem, 4vw, 2.4rem);
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.58), transparent);
}

.birthday-sparkles {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
  pointer-events: none;
}

.birthday-sparkles::before,
.birthday-sparkles::after {
  content: "";
  position: absolute;
  inset: -20% 0 0;
  background-image:
    radial-gradient(circle, rgba(255, 255, 255, 0.92) 0 1px, transparent 2px),
    radial-gradient(circle, rgba(255, 58, 54, 0.82) 0 1.5px, transparent 3px),
    radial-gradient(circle, rgba(255, 218, 160, 0.86) 0 1px, transparent 2.5px);
  background-position:
    8% 8%,
    44% 20%,
    78% 4%;
  background-size:
    8.5rem 13rem,
    11rem 15rem,
    13rem 17rem;
  opacity: 0.45;
  animation: birthday-sparkle-rain 14s linear infinite;
}

.birthday-sparkles::after {
  inset: -45% 0 0;
  opacity: 0.3;
  filter: blur(0.3px);
  animation-duration: 20s;
  animation-delay: -7s;
}

.birthday-sparkles span {
  position: absolute;
  width: 0.42rem;
  height: 0.42rem;
  border-radius: 50%;
  background: #fff;
  box-shadow:
    0 0 0 4px rgba(255, 255, 255, 0.04),
    0 0 18px rgba(255, 215, 155, 0.7);
  opacity: 0.65;
  animation: birthday-float 5.8s ease-in-out infinite;
}

.birthday-sparkles span::before,
.birthday-sparkles span::after {
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1.2rem;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
}

.birthday-sparkles span::after {
  transform: translate(-50%, -50%) rotate(90deg);
}

.birthday-sparkles span:nth-child(1) {
  left: 8%;
  top: 18%;
  color: rgba(255, 255, 255, 0.72);
  animation-delay: -0.8s;
}

.birthday-sparkles span:nth-child(2) {
  left: 24%;
  top: 76%;
  color: rgba(255, 115, 102, 0.78);
  animation-delay: -2.5s;
}

.birthday-sparkles span:nth-child(3) {
  left: 38%;
  top: 10%;
  color: rgba(255, 225, 174, 0.78);
  animation-delay: -4.1s;
}

.birthday-sparkles span:nth-child(4) {
  left: 54%;
  top: 62%;
  color: rgba(255, 255, 255, 0.62);
  animation-delay: -1.5s;
}

.birthday-sparkles span:nth-child(5) {
  left: 70%;
  top: 18%;
  color: rgba(255, 58, 54, 0.72);
  animation-delay: -3.1s;
}

.birthday-sparkles span:nth-child(6) {
  left: 86%;
  top: 72%;
  color: rgba(255, 225, 174, 0.74);
  animation-delay: -5s;
}

.birthday-sparkles span:nth-child(7) {
  left: 92%;
  top: 32%;
  color: rgba(255, 255, 255, 0.66);
  animation-delay: -2s;
}

.birthday-sparkles span:nth-child(8) {
  left: 15%;
  top: 48%;
  color: rgba(255, 115, 102, 0.68);
  animation-delay: -4.7s;
}

.birthday-copy {
  position: relative;
  z-index: 2;
  align-self: center;
  max-width: 44rem;
}

.birthday-copy h2 {
  max-width: 12ch;
  margin: 0.4rem 0 0.65rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(2.25rem, 5vw, 4.55rem);
  line-height: 0.98;
  text-wrap: balance;
}

.birthday-copy p {
  max-width: 57ch;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.75;
}

.birthday-copy .birthday-role {
  margin-bottom: 1rem;
  color: var(--silver);
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.birthday-signoff {
  margin-top: 1rem !important;
  color: #fff !important;
  font-weight: 800;
}

.birthday-portrait {
  position: relative;
  z-index: 1;
  display: grid;
  align-items: end;
  justify-items: center;
  min-height: 390px;
}

.birthday-portrait::before {
  content: "";
  position: absolute;
  inset: auto 4% 0;
  height: 72%;
  border-radius: 999px 999px 26px 26px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.2), transparent 64%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.birthday-portrait img {
  position: relative;
  width: min(100%, 330px);
  max-height: 430px;
  object-fit: contain;
  object-position: bottom center;
  filter: drop-shadow(0 24px 46px rgba(0, 0, 0, 0.42));
}

.birthday-post + .brand-strip {
  margin-top: clamp(2.7rem, 5vw, 4.5rem);
}

.brand-logo-showcase {
  padding: clamp(3rem, 6vw, 5.2rem) 0 0;
  overflow: hidden;
}

.brand-logo-head {
  display: grid;
  justify-items: center;
  gap: 0.55rem;
  margin-bottom: 1.35rem;
  text-align: center;
}

.brand-logo-head h2 {
  max-width: 20ch;
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.65rem, 3.5vw, 3rem);
  line-height: 1.02;
  text-wrap: balance;
}

.logo-slider {
  position: relative;
  overflow: hidden;
  padding: 1.15rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.07);
  background:
    linear-gradient(90deg, rgba(255, 58, 54, 0.08), transparent 24%, rgba(255, 255, 255, 0.04) 72%, transparent),
    rgba(255, 255, 255, 0.025);
  mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}

.logo-track {
  display: flex;
  align-items: center;
  gap: clamp(1.3rem, 3vw, 2.8rem);
  width: max-content;
  animation: logo-marquee-left 34s linear infinite;
}

.logo-slider:hover .logo-track {
  animation-play-state: paused;
}

.logo-card {
  display: grid;
  place-items: center;
  width: clamp(10.5rem, 15vw, 14rem);
  height: clamp(4.7rem, 6.2vw, 5.6rem);
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
  overflow: visible;
}

.logo-card img {
  width: auto;
  height: auto;
  max-width: 100%;
  max-height: 100%;
  margin: auto;
  object-fit: contain;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
}

.logo-card--kyb img,
.logo-card--getsun img,
.logo-card--bosch img,
.logo-card--caltex img,
.logo-card--toyota img,
.logo-card--valvoline img {
  max-height: 3.25rem;
}

.logo-card--seiken img {
  max-height: 3.75rem;
}

.logo-card--liqui img {
  max-height: 4.8rem;
}

.logo-card--shell img,
.logo-card--ngk img {
  max-height: 4.2rem;
}

.brand-logo-showcase + .brand-strip {
  margin-top: clamp(2.4rem, 4vw, 3.4rem);
}

.brand-marquee {
  display: grid;
  gap: 0.85rem;
}

.brand-lane {
  overflow: hidden;
  mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.brand-track,
.ticker-track {
  display: flex;
  gap: 1rem;
  width: max-content;
}

.brand-track {
  padding: 0.05rem 0;
  animation: marquee-left 28s linear infinite;
}

.brand-track.reverse {
  animation: marquee-right 30s linear infinite;
}

.ticker-track {
  padding: 1rem 0;
  animation: marquee-left 26s linear infinite;
}

.brand-chip,
.ticker-chip {
  padding: 0.8rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: var(--silver);
  font-family: "Sora", sans-serif;
  font-size: 0.88rem;
  white-space: nowrap;
}

.impact-media {
  min-height: 520px;
  overflow: hidden;
}

.impact-media::after,
.page-main-shot::after,
.page-side-shot::after,
.photo-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.52)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.14), transparent 54%);
}

.impact-badge {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  background: rgba(7, 7, 7, 0.68);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(14px);
}

.impact-badge strong {
  margin-bottom: 0.3rem;
}

.impact-badge span {
  color: var(--muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2rem;
}

.impact-card,
.service-detail-card,
.service-mosaic-card,
.process-card {
  padding: 1.3rem;
  overflow: hidden;
}

.impact-card h3,
.service-detail-card h3,
.process-card h3,
.service-mosaic-card h3 {
  font-size: 1.08rem;
  margin-bottom: 0.7rem;
}

.services-layout .section-head {
  margin-bottom: 0;
}

.service-grid,
.service-columns,
.service-mosaic,
.service-showcase,
.process-grid,
.page-tally {
  display: grid;
  gap: 1rem;
}

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

.service-card {
  padding: 1.4rem;
  overflow: hidden;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.08), transparent 60%);
}

.service-card::after,
.service-detail-card::after,
.service-mosaic-card::after,
.process-card::after,
.impact-card::after {
  content: "";
  position: absolute;
  inset: auto 1.2rem 1rem auto;
  width: 4.3rem;
  height: 4.3rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 58, 54, 0.34), transparent 70%);
  filter: blur(12px);
  pointer-events: none;
}

.service-card h3 {
  margin: 0 0 1rem;
  font-family: "Sora", sans-serif;
  font-size: 1.1rem;
}

.service-card ul,
.service-detail-card ul {
  display: grid;
  gap: 0.75rem;
  list-style: none;
  padding: 0;
  margin: 0;
}

.service-card li,
.service-detail-card li {
  position: relative;
  padding-left: 1rem;
  color: var(--muted);
  line-height: 1.55;
}

.service-card li::before,
.service-detail-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #fff, var(--red));
}

.service-showcase {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(1.05rem, 2vw, 1.4rem);
}

.service-image-card {
  isolation: isolate;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  border-radius: 32px;
  background: #111;
}

.service-image-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04) 24%, rgba(0, 0, 0, 0.74) 100%),
    linear-gradient(135deg, rgba(255, 58, 54, 0.12), transparent 48%);
}

.service-image-card.tilt-card::before {
  z-index: 2;
}

.service-image-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 560ms ease;
}

.service-image-card:hover img,
.service-image-card:focus-within img {
  transform: scale(1.04);
}

.service-image-copy {
  position: absolute;
  left: clamp(1rem, 2vw, 1.35rem);
  right: clamp(1rem, 2vw, 1.35rem);
  bottom: clamp(1rem, 2vw, 1.35rem);
  z-index: 3;
}

.service-image-copy h3 {
  margin: 0 0 0.32rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.2rem, 2vw, 1.55rem);
  line-height: 1.05;
}

.service-image-copy p {
  max-width: 28ch;
  margin: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(0.95rem, 1.25vw, 1.04rem);
  font-weight: 700;
  line-height: 1.45;
}

.service-quick-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.25rem;
}

.service-quick-list span {
  display: inline-flex;
  align-items: center;
  min-height: 2.45rem;
  padding: 0.68rem 0.95rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.88rem;
  font-weight: 700;
  line-height: 1.25;
}

.services-poster {
  position: sticky;
  top: 6.5rem;
  padding: 1rem;
}

.services-poster img {
  width: 100%;
  border-radius: 20px;
  object-fit: cover;
  margin-bottom: 1rem;
}

.services-poster strong {
  font-size: 1rem;
  margin-bottom: 0.35rem;
}

.services-poster p {
  font-size: 0.93rem;
  line-height: 1.65;
}

.services-poster .button {
  margin-top: 1rem;
}

.gallery-grid,
.service-gallery {
  display: grid;
  gap: 1rem;
}

.gallery-grid {
  grid-template-columns: 1.15fr 0.85fr 0.9fr;
  grid-auto-rows: minmax(180px, 1fr);
}

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

.gallery-card,
.photo-panel {
  overflow: hidden;
  min-height: 220px;
  border-radius: 28px;
  background: #111;
  isolation: isolate;
}

.gallery-card img,
.photo-panel img {
  transition: transform 500ms ease;
}

.gallery-card::after,
.photo-panel::after {
  z-index: 1;
}

.gallery-card:hover img,
.gallery-card:focus-within img,
.photo-panel:hover img,
.photo-panel:focus-within img {
  transform: scale(1.04);
}

.gallery-card.wide {
  grid-column: span 2;
}

.gallery-card.tall {
  grid-row: span 2;
}

.gallery-caption,
.photo-caption {
  position: absolute;
  left: 1.1rem;
  right: 1.1rem;
  bottom: 1rem;
  z-index: 2;
}

.gallery-caption strong,
.photo-caption strong {
  margin-bottom: 0.28rem;
  font-size: 1rem;
}

.gallery-caption span,
.photo-caption span {
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
  line-height: 1.45;
}

.cta-wrap {
  padding: clamp(1.4rem, 4vw, 2rem);
  border-radius: 34px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.14), transparent 58%);
}

.contact-card {
  padding: 1.3rem;
}

.contact-form-card {
  overflow: hidden;
  padding: clamp(1.05rem, 2.5vw, 1.35rem);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.075), rgba(255, 255, 255, 0.025)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.13), transparent 62%),
    rgba(8, 8, 8, 0.92);
  isolation: isolate;
}

.contact-form-card::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(110deg, transparent 0 36%, rgba(255, 255, 255, 0.08) 48%, transparent 60% 100%);
  background-size: 220% 100%;
  opacity: 0.7;
  animation: hero-sheen 8s ease-in-out infinite;
}

.contact-form-glow {
  position: absolute;
  right: -4rem;
  top: -4rem;
  width: 13rem;
  height: 13rem;
  border-radius: 999px;
  background: radial-gradient(circle, rgba(255, 58, 54, 0.32), transparent 68%);
  filter: blur(8px);
  pointer-events: none;
  animation: contact-glow-drift 7s ease-in-out infinite;
}

.contact-card header {
  display: flex;
  align-items: start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1rem;
}

.contact-card header span {
  color: var(--muted);
  font-size: 0.92rem;
}

.contact-form {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.85rem;
  margin-top: 1rem;
}

.form-field {
  display: grid;
  gap: 0.45rem;
  min-width: 0;
}

.form-field-wide {
  grid-column: 1 / -1;
}

.form-field span {
  color: #f2a8a2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  min-height: 3.15rem;
  padding: 0.85rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 12px;
  background: rgba(0, 0, 0, 0.24);
  color: var(--text);
  font: inherit;
  outline: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.form-field textarea {
  min-height: 7.2rem;
  resize: vertical;
}

.form-field select {
  appearance: none;
}

.form-field input::placeholder,
.form-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.42);
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  transform: translateY(-2px);
  border-color: rgba(255, 58, 54, 0.58);
  background: rgba(255, 255, 255, 0.055);
  box-shadow: 0 0 0 4px rgba(255, 58, 54, 0.12);
}

.form-field select option {
  background: #101214;
  color: #fff;
}

.form-submit {
  grid-column: 1 / -1;
  width: 100%;
  cursor: pointer;
}

.contact-form-details {
  position: relative;
  z-index: 1;
  margin-top: 1.2rem;
  padding-top: 1.05rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.social-note {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  margin-top: 1.1rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

.social-note::before {
  content: "@";
  display: inline-grid;
  place-items: center;
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-weight: 800;
}

.page-tally {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

.page-tally-hero {
  margin-top: 1.6rem;
}

.page-services .tally-card {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.08), transparent 70%);
}

.page-hero-shell {
  align-items: center;
}

.page-hero-stage {
  position: relative;
}

.page-hero-photo {
  position: relative;
  overflow: hidden;
  min-height: 540px;
  border-radius: 32px;
}

.page-hero-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.06), rgba(0, 0, 0, 0.58)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.15), transparent 55%);
}

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

.hero-spotlight {
  position: absolute;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 2;
  padding: 1rem 1.1rem;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(8, 8, 8, 0.72);
  backdrop-filter: blur(14px);
}

.hero-spotlight small {
  display: block;
  margin-bottom: 0.35rem;
  color: #f2a8a2;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 800;
}

.hero-spotlight strong {
  display: block;
  margin-bottom: 0.4rem;
  font-family: "Sora", sans-serif;
  font-size: 1.18rem;
}

.hero-spotlight span {
  display: block;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.95rem;
  line-height: 1.55;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.7rem;
}

.service-tag {
  display: inline-flex;
  align-items: center;
  min-height: 2.7rem;
  padding: 0.7rem 1rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font-size: 0.92rem;
  font-weight: 700;
}

.page-media {
  position: relative;
  min-height: 620px;
}

.page-main-shot,
.page-side-shot {
  overflow: hidden;
}

.page-main-shot {
  position: absolute;
  inset: 0 0 0 2.4rem;
  min-height: 100%;
}

.page-side-shot {
  position: absolute;
  left: 0;
  top: 2rem;
  width: min(250px, 44%);
  aspect-ratio: 4 / 5;
  padding: 0.7rem;
  transform: rotate(-7deg);
  animation: drift-alt 8s ease-in-out infinite;
}

.page-side-shot img {
  border-radius: 18px;
}

.page-service-note {
  position: absolute;
  right: 0;
  bottom: 1rem;
  width: min(310px, 72%);
  padding: 1.1rem;
  animation: drift 7s ease-in-out infinite;
}

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

.service-mosaic-card {
  min-height: 100%;
}

.service-mosaic-card p,
.process-card p {
  font-size: 0.96rem;
}

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

.service-detail-card,
.process-card {
  min-height: 100%;
}

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

.process-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.4rem;
  height: 2.4rem;
  margin-bottom: 0.9rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  color: var(--text);
  font-family: "Sora", sans-serif;
  font-size: 0.95rem;
}

.shop-hero {
  padding: var(--section-space) 0 0;
}

.shop-hero-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
  align-items: end;
  gap: clamp(1.5rem, 4vw, 3rem);
}

.shop-hero-copy {
  max-width: 56rem;
}

.shop-hero-copy h1,
.product-detail-copy h1 {
  margin: 1.25rem 0 1rem;
  font-family: "Sora", sans-serif;
  line-height: 0.95;
  text-wrap: balance;
}

.shop-hero-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.75rem, 6vw, 5.4rem);
}

.product-detail-copy h1 {
  max-width: 12.5ch;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
}

.shop-hero-copy p,
.product-detail-copy p,
.product-info-panel p,
.empty-state p {
  margin: 0;
  color: var(--muted);
  font-size: clamp(1rem, 1.35vw, 1.08rem);
  line-height: 1.75;
}

.shop-stats {
  display: grid;
  gap: 0.8rem;
}

.shop-stats article,
.shop-toolbar,
.product-card,
.product-detail-media,
.product-info-panel,
.empty-state {
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: var(--shadow);
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.03)),
    linear-gradient(135deg, rgba(255, 58, 54, 0.08), transparent 64%);
}

.shop-stats article {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 4.8rem;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
}

.shop-stats strong {
  font-family: "Sora", sans-serif;
  font-size: 1.45rem;
}

.shop-stats span {
  color: var(--muted);
  font-weight: 700;
}

.shop-catalog {
  padding-top: clamp(2.5rem, 5vw, 4rem);
}

.shop-toolbar {
  display: grid;
  gap: 1.05rem;
  padding: 1.1rem;
  border-radius: var(--radius-lg);
}

.shop-search {
  display: grid;
  gap: 0.55rem;
}

.shop-search span,
.filter-group > span {
  color: #f2a8a2;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.shop-search input {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font: inherit;
  outline: none;
}

.shop-search input:focus {
  border-color: rgba(255, 58, 54, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 58, 54, 0.12);
}

.shop-search input::placeholder {
  color: rgba(255, 255, 255, 0.48);
}

.filter-group {
  display: grid;
  gap: 0.65rem;
}

.filter-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.filter-select-wrap {
  position: relative;
  display: none;
}

.filter-select-wrap::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 1.05rem;
  width: 0.48rem;
  height: 0.48rem;
  border-right: 2px solid rgba(255, 255, 255, 0.74);
  border-bottom: 2px solid rgba(255, 255, 255, 0.74);
  pointer-events: none;
  transform: translateY(-65%) rotate(45deg);
}

.filter-select {
  width: 100%;
  min-height: 3.25rem;
  padding: 0.85rem 2.75rem 0.85rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  appearance: none;
  background: rgba(255, 255, 255, 0.055);
  color: var(--text);
  font: inherit;
  font-weight: 800;
  line-height: 1.2;
  outline: none;
}

.filter-select:focus {
  border-color: rgba(255, 58, 54, 0.6);
  box-shadow: 0 0 0 3px rgba(255, 58, 54, 0.12);
}

.filter-select option {
  background: #101214;
  color: #fff;
}

.filter-chip {
  min-height: 2.55rem;
  padding: 0.7rem 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  font: inherit;
  font-size: 0.9rem;
  font-weight: 800;
  line-height: 1.15;
  cursor: pointer;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.filter-chip:hover,
.filter-chip:focus-visible,
.filter-chip.is-active {
  border-color: rgba(255, 58, 54, 0.5);
  background: rgba(255, 58, 54, 0.16);
  color: #fff;
}

.filter-chip:hover,
.filter-chip:focus-visible {
  transform: translateY(-1px);
}

.shop-results-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  margin: 1.6rem 0 1rem;
  color: var(--muted);
  font-weight: 800;
}

.shop-results-head a {
  color: #f2a8a2;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.product-card {
  display: flex;
  min-width: 0;
  min-height: 100%;
  overflow: hidden;
  border-radius: var(--radius-lg);
  flex-direction: column;
}

.product-card-media {
  position: relative;
  display: grid;
  place-items: center;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  padding: 1rem;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 58, 54, 0.12), transparent 34%),
    linear-gradient(180deg, #f6f7f8, #e3e6ea);
}

.product-card-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 420ms ease;
}

.product-card:hover .product-card-media img,
.product-card:focus-within .product-card-media img {
  transform: scale(1.04);
}

.product-card-body {
  position: relative;
  z-index: 2;
  display: flex;
  flex: 1;
  flex-direction: column;
  gap: 0.85rem;
  padding: 1.05rem;
  background: linear-gradient(180deg, rgba(10, 10, 10, 0.98), rgba(7, 7, 7, 0.98));
}

.product-brand {
  display: inline-flex;
  width: fit-content;
  min-height: 2rem;
  align-items: center;
  padding: 0.5rem 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.04);
  color: #f2a8a2;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.11em;
  line-height: 1;
  text-transform: uppercase;
}

.product-card h3 {
  margin: 0;
  font-family: "Sora", sans-serif;
  font-size: 1rem;
  line-height: 1.25;
}

.product-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.58;
}

.product-meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-top: auto;
}

.product-meta-row span {
  display: inline-flex;
  min-height: 2rem;
  align-items: center;
  padding: 0.5rem 0.65rem;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: var(--muted-strong);
  font-size: 0.78rem;
  font-weight: 800;
  line-height: 1.15;
}

.product-card-actions {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.55rem;
}

.product-card-actions .button {
  min-height: 2.75rem;
  padding: 0.75rem 0.7rem;
  font-size: 0.86rem;
  line-height: 1.15;
}

.empty-state {
  padding: 2rem;
  border-radius: var(--radius-lg);
  text-align: center;
}

.empty-state h2 {
  margin: 0 0 0.6rem;
  font-family: "Sora", sans-serif;
}

.product-detail-hero {
  padding: var(--section-space) 0 0;
}

.product-detail-layout {
  display: grid;
  grid-template-columns: minmax(330px, 0.86fr) minmax(0, 1.14fr);
  align-items: center;
  gap: clamp(1.5rem, 5vw, 4rem);
}

.product-detail-media {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: clamp(1.25rem, 4vw, 2.5rem);
  overflow: hidden;
  border-radius: 34px;
  background:
    radial-gradient(circle at 50% 18%, rgba(255, 58, 54, 0.14), transparent 33%),
    linear-gradient(180deg, #f7f8f9, #e0e4e8);
}

.product-detail-media img {
  width: 100%;
  height: 100%;
  max-height: 500px;
  object-fit: contain;
}

.product-detail-copy {
  max-width: 47rem;
}

.back-link {
  display: inline-flex;
  margin-bottom: 1rem;
  color: var(--muted-strong);
  font-weight: 800;
}

.product-detail-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.product-detail-facts span {
  display: grid;
  gap: 0.35rem;
  min-height: 5.2rem;
  padding: 0.95rem;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted-strong);
  line-height: 1.35;
}

.product-detail-facts strong {
  color: #f2a8a2;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

.product-info-panel {
  padding: clamp(1.2rem, 3vw, 1.6rem);
  border-radius: var(--radius-lg);
}

.product-info-panel h2 {
  margin: 0 0 0.8rem;
  font-family: "Sora", sans-serif;
  font-size: clamp(1.45rem, 3vw, 2.15rem);
  line-height: 1.05;
}

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

footer {
  padding-top: 2rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-inner {
  padding: 1.4rem 0 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.footer-inner img {
  width: 112px;
  opacity: 0.85;
}

@keyframes drift {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-8px);
  }
}

@keyframes drift-alt {
  0%,
  100% {
    transform: rotate(-7deg) translateY(0);
  }
  50% {
    transform: rotate(-7deg) translateY(-10px);
  }
}

@keyframes hero-photo-drift {
  from {
    transform: scale(1.04) translate3d(-0.8%, 0, 0);
  }
  to {
    transform: scale(1.08) translate3d(0.8%, -0.8%, 0);
  }
}

@keyframes hero-sheen {
  0%,
  38% {
    background-position: -130% 0, 0 0, 0 0;
  }
  72%,
  100% {
    background-position: 130% 0, 0 0, 0 0;
  }
}

@keyframes hero-label-sheen {
  0%,
  45% {
    transform: translateX(-120%);
  }
  72%,
  100% {
    transform: translateX(120%);
  }
}

@keyframes marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes marquee-right {
  from {
    transform: translateX(-50%);
  }
  to {
    transform: translateX(0);
  }
}

@keyframes birthday-sparkle-rain {
  from {
    transform: translate3d(0, -8%, 0);
  }
  to {
    transform: translate3d(0, 28%, 0);
  }
}

@keyframes birthday-float {
  0%,
  100% {
    transform: translate3d(0, 0, 0) rotate(0deg) scale(0.75);
  }
  45% {
    transform: translate3d(0.35rem, -0.8rem, 0) rotate(36deg) scale(1);
  }
  70% {
    transform: translate3d(-0.2rem, 0.4rem, 0) rotate(72deg) scale(0.86);
  }
}

@keyframes logo-marquee-left {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(calc(-50% - 0.5rem));
  }
}

@keyframes contact-glow-drift {
  0%,
  100% {
    transform: translate3d(0, 0, 0) scale(1);
  }
  50% {
    transform: translate3d(-1.2rem, 1rem, 0) scale(1.12);
  }
}

@media (max-width: 1080px) {
  .hero-layout,
  .page-hero-layout,
  .impact-layout,
  .services-layout,
  .cta-wrap,
  .birthday-card,
  .shop-hero-layout,
  .product-detail-layout {
    grid-template-columns: 1fr;
  }

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

  .product-detail-media {
    min-height: 460px;
  }

  .hero-stage {
    min-height: 690px;
  }

  .hero-photo {
    inset: 2rem 0 2rem 2rem;
  }

  .page-home .hero-layout {
    grid-template-columns: 1fr;
  }

  .page-home .hero-stage {
    min-height: 560px;
  }

  .page-home .hero-photo {
    inset: 0;
  }

  .birthday-card {
    min-height: 0;
    align-items: center;
  }

  .birthday-copy h2 {
    max-width: 14ch;
  }

  .birthday-portrait {
    min-height: 320px;
  }

  .birthday-portrait img {
    width: min(100%, 290px);
    max-height: 350px;
  }

  .page-media {
    min-height: 700px;
  }

  .page-main-shot {
    inset: 0 0 0 2rem;
  }

  .page-services .page-copy h1 {
    max-width: 10.5ch;
  }

  .page-hero-photo {
    min-height: 500px;
  }

  .impact-media {
    min-height: 480px;
  }

  .services-poster {
    position: static;
  }

  .gallery-grid,
  .service-gallery,
  .service-mosaic,
  .service-showcase,
  .process-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 760px) {
  .header-inner,
  .section-head,
  .footer-inner,
  .contact-card header {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-inner {
    flex-direction: row;
    align-items: center;
  }

  .nav {
    position: fixed;
    inset: 0 0 0 auto;
    width: min(22rem, calc(100vw - 3rem));
    height: 100vh;
    height: 100dvh;
    padding: max(1rem, env(safe-area-inset-top)) 1rem max(1rem, env(safe-area-inset-bottom));
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 0.85rem;
    background: linear-gradient(180deg, rgba(12, 15, 18, 0.98), rgba(5, 6, 8, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-right: 0;
    border-radius: 18px 0 0 18px;
    box-shadow: -28px 0 70px rgba(0, 0, 0, 0.58);
    transform: translateX(100%);
    transition: transform 240ms ease;
    overflow-x: hidden;
    overflow-y: auto;
    overscroll-behavior: contain;
    backdrop-filter: blur(24px);
    z-index: 60;
  }

  body.nav-open {
    overflow: hidden;
  }

  body.nav-open .nav {
    transform: translateX(0);
  }

  .menu-toggle {
    display: inline-flex;
    margin-left: auto;
    z-index: 40;
  }

  body.nav-open .menu-toggle {
    opacity: 0;
    pointer-events: none;
  }

  .nav-panel-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    flex: 0 0 auto;
    margin: 0;
    padding: 0;
  }

  .nav-panel-head strong {
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.92);
  }

  .nav-close {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.75rem;
    height: 2.75rem;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.06);
    color: var(--text);
    font-size: 1.7rem;
    line-height: 1;
    cursor: pointer;
  }

  .nav-panel-brand {
    display: grid;
    grid-template-columns: 76px minmax(0, 1fr);
    min-height: 0;
    align-items: center;
    justify-content: start;
    padding: 0.9rem;
    margin: 0;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.055);
    text-align: left;
    gap: 0.7rem 0.85rem;
  }

  .nav-panel-brand img {
    width: 76px;
    filter: drop-shadow(0 12px 20px rgba(0, 0, 0, 0.28));
  }

  .nav-panel-kicker {
    display: block;
    grid-column: 1 / -1;
    color: #f2a8a2;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .nav-panel-brand > div {
    align-items: flex-start;
    min-width: 0;
  }

  .nav-panel-intro,
  .nav-panel-label {
    display: none;
  }

  .nav-panel-brand strong {
    margin-bottom: 0;
    color: rgba(255, 255, 255, 0.94);
    font-size: 0.95rem;
    letter-spacing: 0.08em;
  }

  .nav-panel-brand span {
    color: rgba(255, 255, 255, 0.64);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .nav-search {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    align-items: end;
    gap: 0.55rem;
    flex: 0 0 auto;
    padding: 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
  }

  .nav-search-field {
    display: grid;
    gap: 0.35rem;
    min-width: 0;
  }

  .nav-search-field span {
    color: #f2a8a2;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
  }

  .nav-search-field input {
    width: 100%;
    min-height: 2.7rem;
    padding: 0.75rem 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.16);
    color: var(--text);
    font: inherit;
    outline: none;
  }

  .nav-search-field input:focus {
    border-color: rgba(255, 58, 54, 0.6);
    box-shadow: 0 0 0 3px rgba(255, 58, 54, 0.12);
  }

  .nav-search-field input::placeholder {
    color: rgba(255, 255, 255, 0.48);
  }

  .nav-search-submit {
    min-height: 2.7rem;
    padding: 0.72rem 0.9rem;
    border: 0;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--red), var(--red-soft));
    color: #fff;
    font: inherit;
    font-size: 0.84rem;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 14px 28px rgba(255, 58, 54, 0.2);
  }

  .nav-panel-links {
    display: flex;
    flex: 1 1 auto;
    flex-direction: column;
    gap: 0.55rem;
    min-height: 0;
    margin-top: 0.15rem;
    align-self: stretch;
  }

  .nav-panel-links a {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    width: 100%;
    min-height: 4.35rem;
    padding: 0.85rem;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.045);
    font-size: 1rem;
    transition: border-color 180ms ease, background 180ms ease, transform 180ms ease;
  }

  .nav-panel-links a:first-child {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
  }

  .nav-panel-links a:hover,
  .nav-panel-links a:focus-visible {
    border-color: rgba(255, 58, 54, 0.5);
    background: rgba(255, 58, 54, 0.1);
    transform: translateX(-2px);
  }

  .nav-link-title {
    display: block;
    color: rgba(255, 255, 255, 0.96);
    font-family: "Manrope", sans-serif;
    font-size: 1.08rem;
    font-weight: 700;
    line-height: 1.3;
  }

  .nav-link-note {
    display: block;
    margin-top: 0.25rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .nav .nav-cta {
    display: inline-flex;
    flex: 0 0 auto;
    width: 100%;
    justify-content: center;
    margin-top: 0.25rem;
  }

  .nav-panel-meta {
    display: flex;
    flex: 0 0 auto;
    flex-direction: column;
    gap: 0.35rem;
    color: rgba(255, 255, 255, 0.58);
    font-size: 0.78rem;
    line-height: 1.45;
  }

  .nav-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    border: 0;
    padding: 0;
    background: rgba(5, 7, 10, 0.48);
    backdrop-filter: blur(2px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 240ms ease;
    z-index: 50;
  }

  body.nav-open .nav-backdrop {
    opacity: 1;
    pointer-events: auto;
  }

  .quick-meta,
  .impact-grid,
  .service-grid,
  .contact-form,
  .page-tally,
  .service-columns,
  .service-mosaic,
  .service-showcase,
  .process-grid,
  .service-gallery,
  .product-detail-facts,
  .product-info-grid {
    grid-template-columns: 1fr;
  }

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

  .shop-results-head {
    align-items: flex-start;
    flex-direction: column;
  }

  .filter-pills {
    display: none;
  }

  .filter-select-wrap {
    display: block;
  }

  .service-showcase {
    gap: 2.75rem;
  }

  .service-image-card {
    border-radius: 28px;
  }

  .hero-stage {
    min-height: 600px;
  }

  .hero-photo {
    inset: 3.25rem 0 2rem 1.2rem;
    transform: none;
  }

  .page-home .hero-copy h1 {
    max-width: 13ch;
    font-size: clamp(2.35rem, 9.6vw, 3.8rem);
    line-height: 0.98;
  }

  .page-home .hero-stage {
    min-height: 430px;
  }

  .page-home .hero-photo {
    inset: 0;
  }

  .page-home .floating-card {
    right: 0.85rem;
    width: min(300px, 82%);
  }

  .birthday-post {
    padding-top: 2.4rem;
  }

  .birthday-card {
    gap: 1.2rem;
    padding: 1.15rem;
    border-radius: 24px;
  }

  .brand-logo-head {
    display: grid;
    gap: 0.45rem;
    margin-bottom: 1rem;
  }

  .brand-logo-head h2 {
    max-width: 18ch;
  }

  .logo-track {
    gap: 1.2rem;
    animation-duration: 28s;
  }

  .logo-card {
    width: 8.8rem;
    height: 4.6rem;
  }

  .logo-card--kyb img,
  .logo-card--getsun img,
  .logo-card--bosch img,
  .logo-card--caltex img,
  .logo-card--toyota img,
  .logo-card--valvoline img {
    max-height: 2.7rem;
  }

  .logo-card--seiken img {
    max-height: 3rem;
  }

  .logo-card--liqui img {
    max-height: 3.9rem;
  }

  .logo-card--shell img,
  .logo-card--ngk img {
    max-height: 3.4rem;
  }

  .birthday-card::before {
    border-radius: 23px;
  }

  .birthday-copy h2 {
    margin-top: 0.25rem;
    font-size: clamp(2rem, 8vw, 3rem);
  }

  .birthday-copy p {
    font-size: 0.95rem;
    line-height: 1.65;
  }

  .birthday-copy .birthday-role {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .birthday-portrait {
    min-height: 280px;
  }

  .birthday-portrait img {
    width: min(100%, 245px);
    max-height: 300px;
  }

  .birthday-sparkles::before,
  .birthday-sparkles::after {
    opacity: 0.34;
  }

  .birthday-sparkles span {
    transform: scale(0.8);
  }

  .poster-card {
    width: 48%;
    top: 0;
  }

  .floating-card {
    width: 84%;
  }

  .page-media {
    min-height: 580px;
  }

  .page-main-shot {
    inset: 3rem 0 2rem 1.1rem;
  }

  .page-side-shot {
    width: 50%;
    top: 0;
  }

  .page-service-note {
    width: 84%;
  }

  .page-services .page-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.45rem, 9vw, 4rem);
  }

  .shop-hero-copy h1,
  .product-detail-copy h1 {
    max-width: 11ch;
    font-size: clamp(2.35rem, 9vw, 4rem);
  }

  .shop-hero-copy p {
    max-width: 100%;
  }

  .shop-stats article {
    align-items: flex-start;
    flex-direction: column;
    min-height: auto;
  }

  .product-detail-media {
    min-height: 390px;
  }

  .page-hero-photo {
    min-height: 420px;
  }

  .hero-spotlight {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .service-tags {
    gap: 0.65rem;
  }

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

  .gallery-card.wide,
  .gallery-card.tall {
    grid-column: auto;
    grid-row: auto;
  }
}

@media (max-width: 760px) and (max-height: 760px) {
  .nav {
    padding: 0.75rem;
    gap: 0.5rem;
  }

  .nav-close {
    width: 2.35rem;
    height: 2.35rem;
    font-size: 1.45rem;
  }

  .nav-panel-brand {
    grid-template-columns: 58px minmax(0, 1fr);
    padding: 0.65rem;
    gap: 0.45rem 0.65rem;
  }

  .nav-panel-brand img {
    width: 58px;
  }

  .nav-panel-kicker {
    font-size: 0.66rem;
    letter-spacing: 0.12em;
  }

  .nav-panel-brand strong {
    font-size: 0.82rem;
    letter-spacing: 0.06em;
  }

  .nav-panel-brand span {
    font-size: 0.72rem;
  }

  .nav-search {
    grid-template-columns: 1fr;
    gap: 0.4rem;
    padding: 0.55rem;
  }

  .nav-search-field span {
    font-size: 0.62rem;
  }

  .nav-search-field input,
  .nav-search-submit {
    min-height: 2.35rem;
    padding-top: 0.58rem;
    padding-bottom: 0.58rem;
  }

  .nav-panel-links a {
    min-height: 3.15rem;
    padding: 0.62rem 0.7rem;
  }

  .nav-link-title {
    font-size: 1rem;
  }

  .nav-link-note,
  .nav-panel-meta {
    display: none;
  }

  .nav .nav-cta {
    padding: 0.68rem 1rem;
  }
}

@media (max-width: 560px) {
  .shell {
    width: calc(100% - 1.1rem);
  }

  .brand img {
    width: 104px;
  }

  .brand-copy strong {
    font-size: 0.84rem;
  }

  .brand-copy span {
    font-size: 0.74rem;
  }

  .page-home .hero {
    min-height: auto;
    padding: 3rem 0 2.4rem;
  }

  .page-home .hero::before {
    background-position: 58% center;
  }

  .page-home .hero-layout {
    width: calc(100% - 1.1rem);
  }

  .page-home .hero-copy h1 {
    max-width: 12ch;
    margin-top: 1rem;
    margin-bottom: 0.8rem;
    font-size: clamp(2.3rem, 11.4vw, 3.05rem);
    line-height: 0.95;
  }

  .page-home .hero-copy p {
    max-width: 34ch;
    font-size: 0.92rem;
    line-height: 1.62;
  }

  .page-home .eyebrow {
    max-width: 100%;
    justify-content: center;
    padding: 0.52rem 0.7rem;
    font-size: 0.68rem;
    letter-spacing: 0.08em;
  }

  .page-home .hero-actions {
    justify-content: center;
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .page-home .hero-actions .button {
    min-height: 2.9rem;
    padding: 0.78rem 0.92rem;
    font-size: 0.8rem;
  }

  .page-home .hero-actions .button[href^="tel"] {
    flex-basis: auto;
  }

  .page-home .quick-meta {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: min(100%, 22rem);
    gap: 0.65rem;
    margin-top: 1.25rem;
  }

  .page-home .quick-meta article {
    min-height: 5.9rem;
    padding: 0.82rem 0.9rem;
    text-align: center;
    border-radius: 14px;
  }

  .page-home .quick-meta strong {
    font-size: 0.82rem;
  }

  .page-home .quick-meta span {
    font-size: 0.7rem;
    line-height: 1.45;
  }

  .birthday-post {
    padding-top: 1.9rem;
  }

  .birthday-card {
    text-align: center;
  }

  .birthday-copy {
    display: grid;
    justify-items: center;
  }

  .birthday-copy h2 {
    max-width: 11ch;
    font-size: clamp(1.95rem, 10vw, 2.65rem);
  }

  .birthday-copy p {
    max-width: 34ch;
  }

  .birthday-portrait {
    min-height: 245px;
  }

  .birthday-portrait img {
    width: min(100%, 218px);
    max-height: 260px;
  }

  .hero-stage {
    min-height: 510px;
  }

  .poster-card {
    width: 54%;
  }

  .floating-card,
  .page-service-note {
    width: calc(100% - 1rem);
    right: 0;
  }

  .page-media {
    min-height: 500px;
  }

  .page-hero-photo {
    min-height: 360px;
  }

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

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

  .product-detail-media {
    min-height: 330px;
    border-radius: 28px;
  }

  .whatsapp-float {
    right: 0.85rem;
    bottom: 0.85rem;
    right: max(0.85rem, env(safe-area-inset-right));
    bottom: max(0.85rem, env(safe-area-inset-bottom));
    width: 3.25rem;
    min-width: 3.25rem;
    min-height: 3.25rem;
    padding: 0;
  }

  .whatsapp-float span {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
  }

  .service-showcase {
    gap: 2.35rem;
  }

  .service-image-card {
    border-radius: 26px;
  }

  .service-quick-list {
    margin-top: 1.75rem;
  }

  .hero-spotlight strong {
    font-size: 1.02rem;
  }

  .hero-spotlight span {
    font-size: 0.9rem;
  }

  .footer-meta span:last-child {
    font-size: 0.78rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .js .reveal {
    opacity: 1;
    transform: none;
  }
}
