/* Variables */
:root {
  --navy: #061423;
  --navy-deep: #030e1c;
  --navy-soft: #102437;
  --charcoal: #111316;
  --orange: #fbb400;
  --orange-light: #ffc83d;
  --green: #43c85b;
  --white: #ffffff;
  --paper: #f6f7f8;
  --gray: #d8dee5;
  --muted: #687382;
  --text: #142033;
  --line: rgba(9, 36, 65, 0.12);
  --shadow: 0 18px 48px rgba(5, 18, 32, 0.16);
  --radius: 8px;
  --container: 1180px;
  --header-height: 72px;
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-height);
}

body {
  margin: 0;
  min-width: 320px;
  padding-bottom: 74px;
  background: var(--white);
  color: var(--text);
  font-family: "Prompt", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 16px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

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

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

button {
  font: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible {
  outline: 3px solid rgba(251, 180, 0, 0.48);
  outline-offset: 3px;
}

/* Base */
.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

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

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 1000;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: var(--radius);
  background: var(--navy);
  color: var(--white);
  font-weight: 700;
  transition: transform 180ms ease;
}

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

.section {
  padding: 76px 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head h2,
.production-copy h2 {
  margin: 6px 0 8px;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  font-weight: 800;
}

.section-head p,
.production-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 1.02rem;
}

.section-head-invert h2,
.section-head-invert p,
.production-copy h2,
.production-copy p {
  color: var(--white);
}

.section-head-invert p,
.production-copy p {
  color: rgba(255, 255, 255, 0.76);
}

.eyebrow {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  min-height: 28px;
  padding: 3px 12px;
  border-radius: 999px;
  background: rgba(251, 180, 0, 0.13);
  color: #a66b00;
  font-size: 0.83rem;
  font-weight: 700;
}

.eyebrow-dark {
  background: rgba(251, 180, 0, 0.22);
  color: var(--orange-light);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 46px;
  padding: 10px 18px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  line-height: 1.2;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease, color 180ms ease;
}

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

.btn-primary {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
  color: var(--navy-deep);
  box-shadow: 0 12px 28px rgba(251, 180, 0, 0.3);
}

.btn-outline {
  border-color: rgba(255, 255, 255, 0.38);
  color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-ghost {
  border-color: rgba(255, 255, 255, 0.48);
  color: var(--white);
  background: rgba(255, 255, 255, 0.05);
}

.btn img {
  width: 20px;
  height: 20px;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-height);
  background: rgba(255, 255, 255, 0.96);
  border-bottom: 1px solid rgba(9, 36, 65, 0.08);
  backdrop-filter: blur(14px);
  transition: box-shadow 180ms ease, height 180ms ease;
  animation: header-drop 620ms var(--ease-out) both;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(6, 22, 39, 0.12);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  min-width: 116px;
  max-width: 166px;
}

.brand-logo {
  width: clamp(118px, 13vw, 154px);
  height: 58px;
  object-fit: contain;
  object-position: left center;
  transform-origin: 50% 80%;
  animation: logo-settle 820ms var(--ease-spring) 120ms both;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 7px;
  background: var(--orange);
  transform-origin: 50% 80%;
  animation: logo-settle 820ms var(--ease-spring) 120ms both;
}

.brand-copy {
  display: grid;
  line-height: 1.08;
}

.brand-copy strong {
  color: var(--navy);
  font-size: 1.35rem;
  font-weight: 800;
}

.brand-copy span {
  color: var(--orange);
  font-size: 0.75rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(14px, 2vw, 26px);
  color: #17293c;
  font-size: 0.94rem;
  font-weight: 600;
}

.site-nav a {
  position: relative;
  padding: 24px 0;
  transition: color 180ms ease, transform 180ms ease;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 17px;
  height: 2px;
  border-radius: 999px;
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after,
.site-nav a.is-active::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}

.site-nav a:hover,
.site-nav a:focus-visible,
.site-nav a.is-active,
.site-nav a[aria-current="page"] {
  color: var(--navy);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 0;
  border-radius: var(--radius);
  background: var(--navy);
  cursor: pointer;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--white);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Hero */
.hero {
  position: relative;
  background: var(--navy-deep);
}

.hero-frame {
  position: relative;
  overflow: hidden;
  isolation: isolate;
  min-height: 540px;
  max-height: 780px;
  background: var(--navy);
  box-shadow: inset 0 -1px 0 rgba(255, 255, 255, 0.08);
}

.hero-frame img {
  width: 100%;
  height: clamp(540px, 53vw, 780px);
  object-fit: cover;
  object-position: center;
  animation: hero-image-in 1100ms var(--ease-out) both;
}

.hero-frame::before,
.hero-frame::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.hero-frame::before {
  background:
    radial-gradient(circle at var(--hero-x, 52%) var(--hero-y, 44%), rgba(255, 200, 61, 0.16), transparent 26%),
    linear-gradient(90deg, rgba(3, 14, 28, 0.04), transparent 34%, rgba(251, 180, 0, 0.08) 54%, transparent 74%);
  opacity: 0.88;
  mix-blend-mode: screen;
  animation: hero-glow 6s ease-in-out 900ms infinite alternate;
}

.hero-frame::after {
  width: 32%;
  background: linear-gradient(100deg, transparent 0%, rgba(255, 255, 255, 0.2) 45%, transparent 72%);
  transform: translateX(-130%) skewX(-22deg);
  animation: hero-sweep 4.6s var(--ease-out) 700ms both;
}

.hero-hotspot {
  position: absolute;
  display: block;
  border-radius: 999px;
  z-index: 2;
}

.hero-hotspot:focus-visible {
  outline: 3px solid var(--orange-light);
  outline-offset: 4px;
}

.hero-hotspot-cta {
  left: 38%;
  top: 68.8%;
  width: 24%;
  height: 9%;
}

.hero-hotspot-cta::after {
  content: "";
  position: absolute;
  inset: 8% 7%;
  border-radius: 999px;
  background: rgba(255, 200, 61, 0.16);
  box-shadow: 0 0 0 0 rgba(251, 180, 0, 0.36);
  opacity: 0.72;
  animation: cta-pulse 2.8s ease-in-out 1.3s infinite;
}

.hero-hotspot-line {
  left: 36%;
  top: 84%;
  width: 12%;
  height: 5.5%;
}

.hero-hotspot-phone {
  left: 49%;
  top: 84%;
  width: 17%;
  height: 5.5%;
}

.hero-mobile-copy {
  display: none;
}

.hero-mobile-title,
.hero-actions {
  animation: mobile-hero-rise 620ms var(--ease-out) both;
}

.hero-actions {
  animation-delay: 120ms;
}

/* Products */
.products-section {
  background: var(--white);
}

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

.gallery-card {
  position: relative;
  margin: 0;
  aspect-ratio: 1;
  overflow: hidden;
  border-radius: 8px;
  background: #dfe4e9;
  cursor: zoom-in;
  box-shadow: 0 14px 36px rgba(5, 18, 32, 0.13);
  transform-origin: 50% 65%;
  isolation: isolate;
}

.product-gallery.is-visible .gallery-card {
  animation: gallery-rise 720ms var(--ease-out) both;
  animation-delay: calc(var(--stagger, 0) * 55ms);
}

.gallery-card-tall {
  aspect-ratio: 1;
}

.gallery-card-wide {
  aspect-ratio: 1;
}

.gallery-card-square {
  aspect-ratio: 1;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 260ms ease, filter 260ms ease;
}

.gallery-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(115deg, transparent 18%, rgba(255, 255, 255, 0.28) 42%, transparent 58%);
  opacity: 0;
  transform: translateX(-120%);
  transition: transform 520ms var(--ease-out), opacity 220ms ease;
  pointer-events: none;
}

.gallery-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(3, 13, 24, 0.78);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.gallery-card:hover img,
.gallery-card:focus-within img {
  transform: scale(1.045) rotate(0.25deg);
  filter: saturate(1.05);
}

.gallery-card:hover::after,
.gallery-card:focus-within::after {
  opacity: 1;
  transform: translateX(120%);
}

.gallery-card:hover figcaption,
.gallery-card:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.portfolio-cta {
  display: flex;
  justify-content: center;
  margin-top: 26px;
}

/* Statistics */
.stats-band {
  padding: 22px 0 58px;
  background: var(--white);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.stat-card {
  position: relative;
  min-height: 112px;
  display: grid;
  place-items: center;
  gap: 2px;
  padding: 18px;
  border-radius: 7px;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: var(--white);
  text-align: center;
  box-shadow: var(--shadow);
  overflow: hidden;
  transform-origin: center;
}

.stat-card::before {
  content: "";
  position: absolute;
  inset: -40%;
  background: conic-gradient(from 180deg, transparent, rgba(251, 180, 0, 0.22), transparent 32%);
  opacity: 0;
  animation: none;
}

.stats-grid.is-visible .stat-card {
  animation: stat-pop 620ms var(--ease-spring) both;
  animation-delay: calc(var(--stagger, 0) * 120ms);
}

.stats-grid.is-visible .stat-card::before {
  opacity: 1;
  animation: stat-orbit 5.5s linear infinite;
  animation-delay: calc(var(--stagger, 0) * -900ms);
}

.stat-card strong {
  position: relative;
  z-index: 1;
  display: block;
  color: var(--orange);
  font-size: clamp(2.2rem, 5vw, 3.4rem);
  line-height: 1;
  font-weight: 800;
  text-shadow: 0 0 20px rgba(251, 180, 0, 0.18);
}

.stat-card span {
  position: relative;
  z-index: 1;
  color: rgba(255, 255, 255, 0.75);
  font-weight: 500;
}

.stat-card.is-counting strong {
  animation: number-breathe 900ms ease-in-out infinite alternate;
}

/* Production */
.production-section {
  background: linear-gradient(145deg, var(--navy) 0%, #123d67 52%, var(--navy-deep) 100%);
  color: var(--white);
}

.production-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  align-items: center;
  gap: clamp(36px, 6vw, 76px);
}

.production-copy {
  max-width: 520px;
}

.check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 18px;
  margin: 24px 0 28px;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  padding-left: 26px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.95rem;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.24);
}

.production-collage {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 118px;
  gap: 10px;
  transform: rotate(1.2deg);
}

.production-collage img {
  position: relative;
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 7px;
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.24);
  scale: 1;
  transition: scale 260ms ease, filter 260ms ease;
}

.production-collage.is-visible img {
  animation:
    collage-rise 720ms var(--ease-out) both,
    collage-float 8.5s ease-in-out infinite;
  animation-delay:
    calc(var(--stagger, 0) * 80ms),
    calc(800ms + (var(--stagger, 0) * -480ms));
}

.production-collage:hover img {
  filter: saturate(1.06) contrast(1.02);
}

.production-collage img:hover {
  z-index: 1;
  scale: 1.025;
}

.production-collage .collage-large {
  grid-column: span 2;
  grid-row: span 3;
}

.production-collage img:nth-child(2),
.production-collage img:nth-child(3) {
  grid-row: span 2;
}

.production-collage img:nth-child(4) {
  grid-column: span 2;
}

/* Services */
.services-section {
  position: relative;
  overflow: hidden;
  background: var(--charcoal);
  color: var(--white);
}

.services-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 19, 22, 0.92), rgba(17, 19, 22, 0.82)),
    url("../assets/images/production/production-material-prep.jpg") center / cover;
  filter: grayscale(1);
  opacity: 0.82;
}

.services-section .container {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

.service-item {
  position: relative;
  min-height: 260px;
  padding: 0 4px;
  transform-origin: 50% 70%;
}

.service-icon {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 46px;
  height: 46px;
  margin-bottom: 16px;
  color: var(--orange);
  isolation: isolate;
  scale: 1;
  transition: color 180ms ease, scale 180ms ease;
}

.service-icon::before {
  content: "";
  position: absolute;
  inset: -10px;
  z-index: -1;
  border-radius: 50%;
  background: rgba(251, 180, 0, 0.13);
  opacity: 0;
  transform: scale(0.45);
}

.service-icon svg,
.step-badge svg {
  position: relative;
  z-index: 1;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-item h3 {
  margin: 0 0 10px;
  color: var(--orange);
  font-size: 1.1rem;
  line-height: 1.25;
}

.service-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

.service-grid.is-visible .service-item {
  animation: service-rise 640ms var(--ease-out) both;
  animation-delay: calc(var(--stagger, 0) * 95ms);
}

.service-grid.is-visible .service-icon::before {
  animation: icon-halo 3.8s ease-in-out infinite;
  animation-delay: calc(600ms + (var(--stagger, 0) * 180ms));
}

.service-item:hover .service-icon,
.service-item:focus-within .service-icon {
  color: var(--orange-light);
  scale: 1.08;
}

/* Process */
.process-section {
  background: var(--white);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin: 34px 0 0;
  padding: 0;
  list-style: none;
  counter-reset: step;
}

.process-step {
  position: relative;
  display: grid;
  justify-items: center;
  align-content: start;
  gap: 16px;
  min-height: 180px;
  text-align: center;
  counter-increment: step;
  transform-origin: 50% 70%;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 8px;
  right: calc(50% - 54px);
  width: 30px;
  height: 30px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  z-index: 1;
}

.step-badge {
  display: grid;
  place-items: center;
  width: 132px;
  height: 132px;
  padding: 31px;
  border: 2px solid rgba(251, 180, 0, 0.62);
  border-radius: 50%;
  color: #455162;
  background: var(--white);
  box-shadow: 0 12px 34px rgba(9, 36, 65, 0.08);
  transition: transform 220ms var(--ease-out), border-color 220ms ease, box-shadow 220ms ease, color 220ms ease;
}

.process-step strong {
  max-width: 210px;
  color: #26364d;
  font-size: 0.95rem;
  line-height: 1.45;
  font-weight: 700;
}

.process-grid.is-visible .process-step {
  animation: process-rise 680ms var(--ease-out) both;
  animation-delay: calc(var(--stagger, 0) * 120ms);
}

.process-grid.is-visible .process-step::before {
  animation: step-pop 560ms var(--ease-spring) both, step-pulse 2.8s ease-in-out infinite;
  animation-delay: calc(160ms + (var(--stagger, 0) * 120ms)), calc(900ms + (var(--stagger, 0) * 180ms));
}

.process-step:hover .step-badge,
.process-step:focus-within .step-badge {
  transform: translateY(-5px) scale(1.035);
  border-color: var(--orange);
  color: var(--navy);
  box-shadow: 0 18px 44px rgba(9, 36, 65, 0.14);
}

/* Clients */
.clients-section {
  background: #f3f4f6;
}

.clients-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 10px;
}

.clients-grid img {
  width: 100%;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: contain;
  padding: 10px;
  border-radius: 5px;
  background: var(--white);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.clients-grid img:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 26px rgba(9, 36, 65, 0.12);
}

.clients-grid.is-visible img {
  animation: client-fade 520ms var(--ease-out) both;
  animation-delay: calc(var(--stagger, 0) * 34ms);
}

/* Home Service Suite */
.home-services-suite-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, #f7f8fa 0%, #eef2f5 100%);
}

.home-services-suite-head {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(300px, 0.56fr);
  gap: clamp(24px, 5vw, 72px);
  align-items: end;
  margin-bottom: 30px;
}

.home-services-suite-head h2 {
  margin: 8px 0 0;
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.12;
  font-weight: 800;
}

.home-services-suite-head p {
  margin: 0;
  color: #4f5c6f;
  font-size: 1rem;
  line-height: 1.85;
}

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

.home-service-card {
  position: relative;
  display: grid;
  grid-template-rows: 210px 1fr;
  min-height: 510px;
  border: 1px solid rgba(9, 36, 65, 0.1);
  border-radius: 8px;
  background: var(--white);
  overflow: hidden;
  box-shadow: 0 18px 44px rgba(9, 36, 65, 0.1);
  transform-origin: 50% 70%;
}

.home-service-card:nth-child(2),
.home-service-card:nth-child(4) {
  margin-top: 24px;
}

.home-service-media {
  position: relative;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #d8dee5;
  isolation: isolate;
}

.home-service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out), filter 260ms ease;
}

.home-service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, transparent 42%, rgba(2, 13, 24, 0.74)),
    linear-gradient(115deg, rgba(251, 180, 0, 0.16), transparent 42%);
  pointer-events: none;
}

.home-service-media figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  z-index: 1;
  max-width: calc(100% - 28px);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(3, 14, 28, 0.78);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 800;
  line-height: 1.25;
  overflow-wrap: anywhere;
}

.home-service-card:hover .home-service-media img,
.home-service-card:focus-within .home-service-media img {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.home-service-copy {
  display: grid;
  align-content: start;
  padding: 22px 20px 20px;
}

.home-service-copy span {
  display: inline-grid;
  place-items: center;
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  font-size: 0.82rem;
  font-weight: 800;
  line-height: 1;
}

.home-service-copy h3 {
  margin: 0;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.42;
  font-weight: 800;
}

.home-service-copy p {
  margin: 12px 0 18px;
  color: #526074;
  font-size: 0.9rem;
  line-height: 1.72;
}

.home-service-copy a {
  width: fit-content;
  margin-top: auto;
  padding-bottom: 3px;
  border-bottom: 2px solid var(--orange);
  color: var(--navy);
  font-size: 0.86rem;
  font-weight: 800;
  transition: color 180ms ease, transform 180ms ease;
}

.home-service-copy a:hover,
.home-service-copy a:focus-visible {
  color: #9b6400;
  transform: translateX(2px);
}

.home-services-grid.is-visible .home-service-card {
  animation: gallery-rise 680ms var(--ease-out) both;
  animation-delay: calc(var(--stagger, 0) * 90ms);
}

/* Subpages */
.subpage-intro {
  padding: 86px 0 34px;
  background: #f7f8fa;
}

.subpage-intro-inner {
  max-width: 720px;
}

.subpage-intro h1,
.contact-copy h1 {
  margin: 8px 0 12px;
  color: var(--orange);
  font-size: clamp(2.4rem, 5vw, 4.25rem);
  line-height: 1.06;
  font-weight: 800;
}

.subpage-intro p,
.contact-copy p {
  margin: 0;
  color: #3d4755;
  font-size: clamp(1rem, 1.5vw, 1.18rem);
  line-height: 1.85;
}

/* Product Page */
.product-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: #edf0f3;
  overflow: hidden;
}

.product-strip img {
  width: 100%;
  aspect-ratio: 1.5 / 1;
  height: auto;
  min-height: 220px;
  object-fit: cover;
  transition: transform 440ms var(--ease-out), filter 300ms ease;
}

.product-strip img:hover {
  transform: scale(1.025);
  filter: saturate(1.04);
}

.product-showcase-section {
  padding-top: 58px;
  background: #f4f5f7;
}

.product-showcase-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  grid-auto-rows: 72px;
  gap: 14px;
  align-items: stretch;
}

.showcase-card,
.portfolio-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: 7px;
  background: #dfe4e9;
  box-shadow: 0 1px 0 rgba(5, 18, 32, 0.04);
  cursor: zoom-in;
  isolation: isolate;
}

.showcase-card img,
.portfolio-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 440ms var(--ease-out), filter 260ms ease;
}

.showcase-card::after,
.portfolio-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(2, 13, 24, 0.62));
  opacity: 0;
  transition: opacity 220ms ease;
  pointer-events: none;
}

.showcase-card figcaption,
.portfolio-card figcaption {
  position: absolute;
  left: 12px;
  bottom: 12px;
  z-index: 1;
  max-width: calc(100% - 24px);
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(2, 13, 24, 0.72);
  color: var(--white);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 220ms ease, transform 220ms ease;
}

.showcase-card:hover img,
.showcase-card:focus-within img,
.portfolio-card:hover img,
.portfolio-card:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.05);
}

.showcase-card:hover::after,
.showcase-card:focus-within::after,
.portfolio-card:hover::after,
.portfolio-card:focus-within::after {
  opacity: 1;
}

.showcase-card:hover figcaption,
.showcase-card:focus-within figcaption,
.portfolio-card:hover figcaption,
.portfolio-card:focus-within figcaption {
  opacity: 1;
  transform: translateY(0);
}

.product-showcase-grid.is-visible .showcase-card,
.portfolio-grid.is-visible .portfolio-card {
  animation: gallery-rise 650ms var(--ease-out) both;
  animation-delay: calc(var(--stagger, 0) * 70ms);
}

.showcase-honey {
  grid-column: span 7;
  grid-row: span 5;
}

.showcase-shiko {
  grid-column: span 5;
  grid-row: span 5;
}

.showcase-jiao,
.showcase-gump {
  grid-column: span 4;
  grid-row: span 4;
}

.showcase-press {
  grid-column: span 4;
  grid-row: span 4;
}

.showcase-team {
  grid-column: span 7;
  grid-row: span 5;
}

.showcase-neon {
  grid-column: span 5;
  grid-row: span 5;
}

.showcase-vitamin {
  grid-column: span 4;
  grid-row: span 5;
}

.service-hero {
  position: relative;
  min-height: 840px;
  display: grid;
  align-content: end;
  padding: 76px 0 30px;
  overflow: hidden;
  background: var(--navy-deep);
  color: var(--white);
  isolation: isolate;
}

.service-hero-image {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: saturate(1.04) contrast(1.03);
  transform: scale(1.01);
}

.service-hero-overlay {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 14, 28, 0.9) 0%, rgba(3, 14, 28, 0.72) 42%, rgba(3, 14, 28, 0.2) 100%),
    linear-gradient(180deg, rgba(3, 14, 28, 0.15) 0%, rgba(3, 14, 28, 0.82) 100%);
}

.service-hero-content {
  max-width: 820px;
}

.service-hero h1 {
  margin: 14px 0 18px;
  max-width: 790px;
  color: var(--white);
  font-size: 3.45rem;
  line-height: 1.12;
  font-weight: 800;
}

.service-hero p {
  margin: 0;
  max-width: 720px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 1.08rem;
  line-height: 1.9;
}

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

.service-quick-nav {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  margin-top: 42px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 8px;
  background: rgba(4, 16, 30, 0.62);
  overflow: hidden;
  backdrop-filter: blur(16px);
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.24);
}

.service-quick-nav a {
  display: grid;
  gap: 4px;
  min-height: 86px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.04);
  transition: background 180ms ease, transform 180ms ease;
}

.service-quick-nav a:hover,
.service-quick-nav a:focus-visible {
  background: rgba(251, 180, 0, 0.16);
  transform: translateY(-1px);
}

.service-quick-nav strong {
  color: var(--orange);
  font-size: 0.78rem;
  line-height: 1;
}

.service-quick-nav span {
  color: var(--white);
  font-size: 0.92rem;
  line-height: 1.35;
  font-weight: 700;
  overflow-wrap: anywhere;
}

.service-overview-section {
  background:
    linear-gradient(180deg, #f8f9fb 0%, #eef2f5 100%);
}

.service-category-grid {
  display: grid;
  gap: 24px;
}

.service-category-card {
  scroll-margin-top: calc(var(--header-height) + 20px);
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.88fr);
  align-items: stretch;
  min-height: 390px;
  border: 1px solid rgba(9, 36, 65, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 18px 44px rgba(9, 36, 65, 0.1);
  overflow: hidden;
}

.service-category-card:nth-child(even) {
  grid-template-columns: minmax(320px, 0.88fr) minmax(0, 1fr);
}

.service-category-card:nth-child(even) .service-category-media {
  order: 2;
}

.service-category-media {
  position: relative;
  min-height: 390px;
  margin: 0;
  overflow: hidden;
  cursor: zoom-in;
  background: #d9dee4;
  isolation: isolate;
}

.service-category-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms var(--ease-out), filter 260ms ease;
}

.service-category-media::after,
.service-mini-gallery figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(2, 13, 24, 0.72));
  opacity: 0.86;
  pointer-events: none;
}

.service-category-media figcaption,
.service-mini-gallery figcaption {
  position: absolute;
  left: 16px;
  bottom: 16px;
  z-index: 1;
  max-width: calc(100% - 32px);
  padding: 7px 11px;
  border-radius: 999px;
  background: rgba(3, 14, 28, 0.76);
  color: var(--white);
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1.3;
  overflow-wrap: anywhere;
}

.service-category-media:hover img,
.service-category-media:focus-within img,
.service-mini-gallery figure:hover img,
.service-mini-gallery figure:focus-within img {
  transform: scale(1.035);
  filter: saturate(1.06) contrast(1.02);
}

.service-category-copy {
  display: grid;
  align-content: center;
  padding: clamp(30px, 5vw, 56px);
}

.service-number {
  display: inline-grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: var(--navy);
  color: var(--orange);
  font-weight: 800;
  line-height: 1;
  box-shadow: 0 12px 28px rgba(6, 20, 35, 0.16);
}

.service-category-copy h2 {
  margin: 0 0 14px;
  color: var(--navy);
  font-size: 2rem;
  line-height: 1.25;
  font-weight: 800;
}

.service-category-copy p {
  margin: 0;
  color: #445064;
  font-size: 1rem;
  line-height: 1.85;
}

.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.service-tags li {
  padding: 7px 11px;
  border: 1px solid rgba(251, 180, 0, 0.35);
  border-radius: 999px;
  background: rgba(251, 180, 0, 0.1);
  color: #6d4d06;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.25;
}

.service-category-grid.is-visible .service-category-card {
  animation: gallery-rise 680ms var(--ease-out) both;
  animation-delay: calc(var(--stagger, 0) * 90ms);
}

.service-proof-section {
  background: linear-gradient(145deg, var(--navy) 0%, #16486f 52%, #07111d 100%);
  color: var(--white);
}

.service-proof-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: clamp(34px, 5vw, 62px);
  align-items: center;
}

.service-proof-section .section-head {
  margin-bottom: 0;
}

.service-proof-section .section-head h2,
.service-proof-section .section-head p {
  color: var(--white);
}

.service-proof-section .section-head p {
  color: rgba(255, 255, 255, 0.76);
}

.service-mini-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}

.service-mini-gallery figure {
  position: relative;
  min-height: 210px;
  margin: 0;
  border-radius: 8px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.12);
  cursor: zoom-in;
  isolation: isolate;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.2);
}

.service-mini-gallery img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 520ms var(--ease-out), filter 260ms ease;
}

.service-mini-gallery.is-visible figure {
  animation: gallery-rise 620ms var(--ease-out) both;
  animation-delay: calc(var(--stagger, 0) * 80ms);
}

.service-process-section {
  background: #f7f8fa;
}

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

.service-process-list li {
  position: relative;
  min-height: 210px;
  padding: 30px 26px 26px;
  border: 1px solid rgba(9, 36, 65, 0.1);
  border-radius: 8px;
  background: var(--white);
  box-shadow: 0 14px 34px rgba(9, 36, 65, 0.08);
  counter-increment: service-step;
}

.service-process-list li::before {
  content: counter(service-step, decimal-leading-zero);
  display: inline-grid;
  place-items: center;
  width: 40px;
  height: 40px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: var(--orange);
  color: var(--navy-deep);
  font-size: 0.8rem;
  font-weight: 800;
}

.service-process-list strong {
  display: block;
  color: var(--navy);
  font-size: 1.08rem;
  line-height: 1.35;
}

.service-process-list span {
  display: block;
  margin-top: 10px;
  color: #526074;
  font-size: 0.94rem;
  line-height: 1.7;
}

.service-process-list.is-visible li {
  animation: process-rise 640ms var(--ease-out) both;
  animation-delay: calc(var(--stagger, 0) * 100ms);
}

.service-contact-band {
  padding: 58px 0;
  background:
    linear-gradient(135deg, rgba(3, 14, 28, 0.96), rgba(9, 35, 58, 0.96)),
    url("../assets/images/services/thumb-lightbox-storefront.webp") center / cover;
  color: var(--white);
}

.service-contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 32px;
  align-items: center;
}

.service-contact-inner h2 {
  margin: 10px 0 12px;
  max-width: 760px;
  color: var(--white);
  font-size: 2.25rem;
  line-height: 1.22;
}

.service-contact-inner p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 1rem;
  line-height: 1.8;
}

.service-contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 12px;
}

/* Portfolio Page */
.portfolio-section {
  padding-top: 22px;
  background: #f7f8fa;
}

.portfolio-toolbar {
  display: grid;
  gap: 10px;
  margin-bottom: 18px;
}

.portfolio-filter {
  display: flex;
  gap: 8px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 2px 2px 10px;
  scrollbar-width: thin;
  scrollbar-color: rgba(6, 20, 35, 0.24) transparent;
}

.portfolio-filter-button {
  flex: 0 0 auto;
  min-height: 40px;
  padding: 8px 14px;
  border: 1px solid rgba(9, 36, 65, 0.13);
  border-radius: 999px;
  background: var(--white);
  color: #243247;
  font-size: 0.86rem;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.portfolio-filter-button:hover,
.portfolio-filter-button:focus-visible {
  border-color: rgba(251, 180, 0, 0.7);
  transform: translateY(-1px);
}

.portfolio-filter-button.is-active {
  border-color: var(--orange);
  background: var(--navy);
  color: var(--white);
}

.portfolio-count {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 78px;
  gap: 14px;
}

.portfolio-card {
  grid-column: span 2;
  grid-row: span 4;
}

.portfolio-card-hero {
  grid-column: span 4;
  grid-row: span 5;
}

.portfolio-card-side {
  grid-column: span 2;
  grid-row: span 5;
}

.portfolio-card-wide {
  grid-column: span 4;
  grid-row: span 5;
}

.portfolio-card-tall {
  grid-row: span 5;
}

.portfolio-load-more {
  display: flex;
  justify-content: center;
  margin-top: 30px;
}

.portfolio-load-more[hidden] {
  display: none;
}

.portfolio-empty {
  grid-column: 1 / -1;
  margin: 0;
  padding: 24px;
  border-radius: 7px;
  background: var(--white);
  color: var(--muted);
  text-align: center;
  font-weight: 600;
}

/* Contact Page */
.contact-main {
  padding: 86px 0 70px;
  background: var(--white);
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(40px, 7vw, 92px);
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: grid;
  grid-template-columns: 28px minmax(0, 1fr);
  align-items: start;
  gap: 10px;
  color: #27364a;
  font-size: 0.95rem;
}

.contact-list a {
  transition: color 180ms ease;
}

.contact-list a:hover,
.contact-list a:focus-visible {
  color: var(--orange);
}

.contact-symbol {
  display: inline-grid;
  place-items: center;
  width: 34px;
  min-width: 34px;
  height: 24px;
  margin-top: 1px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.5rem;
  font-weight: 800;
  line-height: 1;
}

.contact-form {
  display: grid;
  gap: 18px;
  padding-top: 12px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}

.form-field {
  position: relative;
  display: grid;
  gap: 4px;
}

.form-field label {
  color: #9aa2ad;
  font-size: 0.92rem;
  font-weight: 400;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 0;
  border-bottom: 2px solid rgba(20, 32, 51, 0.18);
  border-radius: 0;
  background: transparent;
  color: var(--text);
  font-size: 1rem;
  line-height: 1.5;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.form-field input {
  min-height: 42px;
}

.form-field textarea {
  min-height: 116px;
  resize: vertical;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: 0;
  border-color: var(--orange);
  box-shadow: 0 8px 0 -7px rgba(251, 180, 0, 0.55);
}

.form-field.has-error input,
.form-field.has-error textarea {
  border-color: #c83b32;
}

.field-error {
  min-height: 18px;
  margin: 0;
  color: #c83b32;
  font-size: 0.78rem;
  line-height: 1.35;
}

.form-actions {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.form-note {
  min-height: 20px;
  margin: 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.form-submit {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  min-height: 42px;
  padding: 0 0 0 14px;
  border: 0;
  background: transparent;
  color: #3b4047;
  font-weight: 700;
  cursor: pointer;
  transition: color 180ms ease, transform 180ms ease;
}

.form-submit span {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: #3b4047;
  color: var(--white);
  line-height: 1;
  transition: background 180ms ease;
}

.form-submit:hover,
.form-submit:focus-visible {
  color: var(--orange);
  transform: translateY(-1px);
}

.form-submit:hover span,
.form-submit:focus-visible span {
  background: var(--orange);
}

.contact-map {
  overflow: hidden;
  background: #edf0f3;
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: min(42vw, 520px);
  min-height: 360px;
  border: 0;
}

/* Footer */
.site-footer {
  padding: 58px 0 92px;
  background: linear-gradient(145deg, var(--navy), var(--navy-deep));
  color: var(--white);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.5fr 1.55fr 0.7fr;
  gap: 38px;
  align-items: start;
}

.footer-about img {
  width: 178px;
  height: auto;
  margin-bottom: 10px;
}

.site-footer h2 {
  margin: 0 0 14px;
  color: var(--white);
  font-size: 1.15rem;
  line-height: 1.3;
}

.footer-about p {
  max-width: 420px;
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.92rem;
}

.footer-menu,
.footer-contact {
  display: grid;
  gap: 8px;
}

.footer-menu a,
.footer-contact a {
  display: inline-flex;
  align-items: flex-start;
  gap: 9px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.9rem;
  transition: color 180ms ease, transform 180ms ease;
}

.footer-menu a::before {
  content: "›";
  color: var(--orange);
  font-weight: 800;
}

.footer-contact a:hover,
.footer-menu a:hover,
.footer-contact a:focus-visible,
.footer-menu a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

.footer-contact img {
  width: 18px;
  height: 18px;
  flex: 0 0 18px;
  margin-top: 3px;
}

.footer-qr img {
  width: 168px;
  height: 168px;
  object-fit: cover;
  border-radius: 7px;
  background: var(--white);
  transition: transform 220ms var(--ease-out), box-shadow 220ms ease;
}

.footer-qr a:hover img,
.footer-qr a:focus-visible img {
  transform: rotate(-1.2deg) scale(1.035);
  box-shadow: 0 14px 34px rgba(0, 0, 0, 0.24);
}

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

.footer-bottom p {
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 0.84rem;
}

/* Floating Contact */
.floating-contact {
  position: fixed;
  left: 50%;
  bottom: 12px;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(2, minmax(160px, 480px));
  width: min(calc(100% - 160px), 760px);
  transform: translateX(-50%);
  overflow: hidden;
  border-radius: 999px;
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.24);
  transform-origin: 50% 100%;
  animation: contact-arrive 680ms var(--ease-spring) 740ms both, contact-float 5.6s ease-in-out 1.6s infinite;
}

.floating-contact a {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  color: var(--white);
  font-size: 0.88rem;
  font-weight: 700;
  overflow: hidden;
  isolation: isolate;
}

.floating-contact a::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 18%, rgba(255, 255, 255, 0.28) 46%, transparent 68%);
  transform: translateX(-130%) skewX(-18deg);
  transition: transform 540ms var(--ease-out);
}

.floating-contact a:hover::before,
.floating-contact a:focus-visible::before {
  transform: translateX(130%) skewX(-18deg);
}

.floating-contact a:first-child {
  background: linear-gradient(135deg, var(--orange), var(--orange-light));
}

.floating-contact a:last-child {
  background: var(--green);
}

.floating-contact img {
  width: 18px;
  height: 18px;
}

.to-top {
  position: fixed;
  right: 22px;
  bottom: 20px;
  z-index: 95;
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.94);
  color: var(--navy);
  box-shadow: 0 10px 28px rgba(0, 0, 0, 0.22);
  cursor: pointer;
  opacity: 0;
  transform: translateY(12px);
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}

.to-top.is-visible {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.to-top span {
  transform: translateY(-2px);
  font-size: 1.7rem;
  line-height: 1;
}

.to-top.is-visible span {
  animation: arrow-bounce 1.55s ease-in-out 500ms infinite;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 200;
  display: grid;
  place-items: center;
  padding: 54px 24px 28px;
  background: rgba(2, 13, 24, 0.92);
}

.lightbox[hidden] {
  display: none;
}

.lightbox img {
  max-height: min(78vh, 840px);
  width: auto;
  object-fit: contain;
  border-radius: 6px;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.4);
}

.lightbox:not([hidden]) {
  animation: lightbox-fade 180ms ease both;
}

.lightbox:not([hidden]) img {
  animation: lightbox-zoom 260ms var(--ease-out) both;
}

.lightbox p {
  margin: 14px 0 0;
  color: var(--white);
  font-weight: 700;
}

.lightbox:not([hidden]) p {
  animation: caption-rise 280ms var(--ease-out) 90ms both;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease;
}

.lightbox-close:hover,
.lightbox-close:focus-visible {
  transform: rotate(90deg);
  background: rgba(255, 255, 255, 0.16);
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  font-size: 2.4rem;
  line-height: 1;
  cursor: pointer;
  transform: translateY(-50%);
  transition: background 180ms ease, transform 180ms ease;
}

.lightbox-prev {
  left: 22px;
}

.lightbox-next {
  right: 22px;
}

.lightbox-nav:hover,
.lightbox-nav:focus-visible {
  background: rgba(255, 255, 255, 0.2);
  transform: translateY(-50%) scale(1.04);
}

/* Motion */
.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  animation: reveal-in 520ms ease both;
}

.reveal-left.is-visible {
  animation-name: reveal-left-in;
}

.reveal-right.is-visible {
  animation-name: reveal-right-in;
}

.reveal-scale.is-visible {
  animation-name: reveal-scale-in;
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes reveal-left-in {
  from {
    opacity: 0;
    transform: translateX(-24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes reveal-right-in {
  from {
    opacity: 0;
    transform: translateX(24px);
  }

  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes reveal-scale-in {
  from {
    opacity: 0;
    transform: translateY(18px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes header-drop {
  from {
    opacity: 0;
    transform: translateY(-14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes logo-settle {
  0% {
    opacity: 0;
    transform: translateY(-8px) rotate(-8deg) scale(0.82);
  }

  72% {
    opacity: 1;
    transform: translateY(0) rotate(2deg) scale(1.04);
  }

  100% {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes hero-image-in {
  from {
    opacity: 0.72;
    transform: scale(1.06);
    filter: saturate(0.9) contrast(0.96);
  }

  to {
    opacity: 1;
    transform: scale(1);
    filter: saturate(1) contrast(1);
  }
}

@keyframes hero-glow {
  from {
    opacity: 0.62;
  }

  to {
    opacity: 0.95;
  }
}

@keyframes hero-sweep {
  0% {
    opacity: 0;
    transform: translateX(-130%) skewX(-22deg);
  }

  16% {
    opacity: 0.75;
  }

  70%,
  100% {
    opacity: 0;
    transform: translateX(430%) skewX(-22deg);
  }
}

@keyframes cta-pulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 0 0 0 rgba(251, 180, 0, 0.34);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 0 0 14px rgba(251, 180, 0, 0);
  }
}

@keyframes mobile-hero-rise {
  from {
    opacity: 0;
    transform: translateY(16px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes gallery-rise {
  from {
    opacity: 0;
    transform: translateY(26px) scale(0.96);
    filter: saturate(0.84);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: saturate(1);
  }
}

@keyframes stat-pop {
  0% {
    opacity: 0;
    transform: translateY(18px) scale(0.9);
  }

  72% {
    opacity: 1;
    transform: translateY(0) scale(1.035);
  }

  100% {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes stat-orbit {
  to {
    transform: rotate(1turn);
  }
}

@keyframes number-breathe {
  from {
    transform: scale(1);
  }

  to {
    transform: scale(1.035);
  }
}

@keyframes collage-rise {
  from {
    opacity: 0;
    transform: translateY(28px) rotate(-1.5deg) scale(0.94);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0) scale(1);
  }
}

@keyframes collage-float {
  0%,
  100% {
    transform: translateY(0) rotate(0);
  }

  50% {
    transform: translateY(-7px) rotate(-0.45deg);
  }
}

@keyframes service-rise {
  from {
    opacity: 0;
    transform: translateY(24px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes icon-halo {
  0%,
  100% {
    opacity: 0;
    transform: scale(0.62);
  }

  45% {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes process-rise {
  from {
    opacity: 0;
    transform: translateY(24px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes step-pop {
  from {
    opacity: 0;
    transform: scale(0.68);
  }

  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes step-pulse {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(251, 180, 0, 0.28);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(251, 180, 0, 0);
  }
}

@keyframes client-fade {
  from {
    opacity: 0;
    transform: translateY(14px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes contact-arrive {
  from {
    opacity: 0;
    transform: translateX(-50%) translateY(20px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateX(-50%) translateY(0) scale(1);
  }
}

@keyframes contact-float {
  0%,
  100% {
    transform: translateX(-50%) translateY(0);
  }

  50% {
    transform: translateX(-50%) translateY(-4px);
  }
}

@keyframes arrow-bounce {
  0%,
  100% {
    transform: translateY(-2px);
  }

  50% {
    transform: translateY(-6px);
  }
}

@keyframes lightbox-fade {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes lightbox-zoom {
  from {
    opacity: 0;
    transform: translateY(12px) scale(0.96);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

@keyframes caption-rise {
  from {
    opacity: 0;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 1100px) {
  .site-nav {
    gap: 14px;
    font-size: 0.88rem;
  }

  .production-layout {
    grid-template-columns: 1fr;
  }

  .production-copy {
    max-width: 760px;
  }

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

  .home-services-suite-head {
    grid-template-columns: 1fr;
    gap: 16px;
  }

  .home-services-suite-head p {
    max-width: 760px;
  }

  .home-services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .home-service-card:nth-child(2),
  .home-service-card:nth-child(4) {
    margin-top: 0;
  }

  .footer-grid {
    grid-template-columns: 1.3fr 0.7fr 1fr;
  }

  .footer-qr {
    grid-column: 1 / -1;
  }

  .contact-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .product-showcase-grid {
    grid-auto-rows: 62px;
  }

  .service-hero h1 {
    font-size: 3rem;
  }

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

  .portfolio-grid {
    grid-auto-rows: 68px;
  }
}

@media (max-width: 900px) {
  .menu-toggle {
    display: flex;
  }

  .site-nav {
    position: absolute;
    top: var(--header-height);
    left: 24px;
    right: 24px;
    display: grid;
    gap: 0;
    padding: 10px;
    border: 1px solid rgba(9, 36, 65, 0.1);
    border-radius: var(--radius);
    background: var(--white);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-10px);
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .site-nav.is-open {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .site-nav a {
    padding: 13px 12px;
    border-radius: 6px;
  }

  .site-nav a::after {
    display: none;
  }

  .site-nav a:hover,
  .site-nav a:focus-visible {
    background: rgba(251, 180, 0, 0.1);
  }

  .hero-frame,
  .hero-frame img {
    min-height: 0;
    height: clamp(350px, 62vw, 540px);
  }

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

  .stats-grid,
  .process-grid {
    grid-template-columns: repeat(2, 1fr);
  }

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

  .home-service-card {
    min-height: 470px;
  }

  .subpage-intro {
    padding-top: 68px;
  }

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

  .product-showcase-grid,
  .portfolio-grid {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: auto;
  }

  .service-hero {
    min-height: auto;
    padding: 74px 0 28px;
  }

  .service-hero h1 {
    font-size: 2.8rem;
  }

  .service-quick-nav {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 42px;
  }

  .service-category-card,
  .service-category-card:nth-child(even) {
    grid-template-columns: 1fr;
  }

  .service-category-card:nth-child(even) .service-category-media {
    order: 0;
  }

  .service-category-media {
    min-height: 320px;
    aspect-ratio: 16 / 10;
  }

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

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

  .service-contact-actions {
    justify-content: flex-start;
  }

  .showcase-card,
  .portfolio-card,
  .showcase-honey,
  .showcase-shiko,
  .showcase-jiao,
  .showcase-gump,
  .showcase-press,
  .showcase-team,
  .showcase-neon,
  .showcase-vitamin,
  .portfolio-card-hero,
  .portfolio-card-side,
  .portfolio-card-wide,
  .portfolio-card-tall {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .showcase-honey,
  .showcase-team,
  .portfolio-card-hero,
  .portfolio-card-wide {
    grid-column: 1 / -1;
    aspect-ratio: 16 / 9;
  }

  .showcase-jiao,
  .showcase-neon,
  .showcase-vitamin,
  .portfolio-card-tall {
    aspect-ratio: 3 / 4;
  }
}

@media (max-width: 680px) {
  :root {
    --header-height: 66px;
  }

  body {
    padding-bottom: 104px;
  }

  .site-header,
  .brand-logo,
  .brand-mark,
  .reveal.is-visible,
  .reveal-left.is-visible,
  .reveal-right.is-visible,
  .reveal-scale.is-visible {
    animation: none;
  }

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

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

  .section {
    padding: 54px 0;
  }

  .brand {
    min-width: 0;
  }

  .brand-logo {
    width: 112px;
    height: 52px;
  }

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

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

  .brand-mark {
    width: 32px;
    height: 32px;
  }

  .hero-frame,
  .hero-frame img {
    height: 360px;
  }

  .hero-frame img {
    object-position: center top;
  }

  .hero-hotspot {
    display: none;
  }

  .hero-mobile-copy {
    display: block;
    padding: 20px 18px 28px;
    background: linear-gradient(180deg, var(--navy), var(--navy-deep));
    color: var(--white);
    text-align: center;
  }

  .hero-mobile-title {
    margin: 0 0 2px;
    font-size: 1.75rem;
    line-height: 1.18;
    font-weight: 800;
  }

  .hero-mobile-copy p:not(.hero-mobile-title) {
    margin: 0 auto 16px;
    color: rgba(255, 255, 255, 0.76);
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
    max-width: 320px;
    margin: 0 auto;
  }

  .section-head {
    margin-bottom: 22px;
  }

  .section-head h2,
  .production-copy h2 {
    font-size: 2rem;
  }

  .subpage-intro {
    padding: 52px 0 26px;
  }

  .subpage-intro h1,
  .contact-copy h1 {
    font-size: 2.45rem;
  }

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

  .product-strip img {
    min-height: 210px;
  }

  .product-showcase-grid,
  .portfolio-grid {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .service-hero {
    padding: 58px 0 22px;
  }

  .service-hero h1 {
    font-size: 2.22rem;
    line-height: 1.18;
  }

  .service-hero p {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  .service-hero-actions,
  .service-contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-services-suite-head h2 {
    font-size: 2rem;
  }

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

  .home-service-card {
    grid-template-rows: auto 1fr;
    min-height: 0;
  }

  .home-service-media {
    aspect-ratio: 4 / 3;
  }

  .home-service-copy {
    padding: 20px;
  }

  .service-quick-nav {
    grid-template-columns: 1fr;
    margin-top: 32px;
  }

  .service-quick-nav a {
    min-height: 66px;
    padding: 13px 14px;
  }

  .service-category-grid {
    gap: 16px;
  }

  .service-category-media {
    min-height: 240px;
    aspect-ratio: 4 / 3;
  }

  .service-category-copy {
    padding: 24px;
  }

  .service-category-copy h2 {
    font-size: 1.48rem;
    line-height: 1.32;
  }

  .service-category-copy p,
  .service-process-list span,
  .service-contact-inner p {
    font-size: 0.92rem;
  }

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

  .service-mini-gallery figure {
    min-height: 220px;
  }

  .service-process-list li {
    min-height: 0;
    padding: 24px;
  }

  .service-contact-inner h2 {
    font-size: 1.7rem;
    line-height: 1.32;
  }

  .showcase-card,
  .portfolio-card,
  .showcase-honey,
  .showcase-team,
  .portfolio-card-hero,
  .portfolio-card-wide,
  .showcase-jiao,
  .showcase-neon,
  .showcase-vitamin,
  .portfolio-card-tall {
    grid-column: auto;
    aspect-ratio: 4 / 3;
  }

  .showcase-card figcaption,
  .portfolio-card figcaption {
    opacity: 1;
    transform: none;
    font-size: 0.7rem;
  }

  .contact-main {
    padding: 56px 0 44px;
  }

  .contact-list li {
    grid-template-columns: 26px minmax(0, 1fr);
    font-size: 0.88rem;
  }

  .form-row,
  .form-actions {
    grid-template-columns: 1fr;
  }

  .form-row {
    display: grid;
  }

  .form-actions {
    display: grid;
    justify-items: end;
  }

  .contact-map iframe {
    min-height: 320px;
  }

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

  .gallery-card figcaption {
    opacity: 1;
    transform: none;
    font-size: 0.68rem;
    left: 7px;
    bottom: 7px;
    padding: 4px 7px;
  }

  .stats-grid {
    gap: 10px;
  }

  .stat-card {
    min-height: 104px;
    padding: 14px 8px;
  }

  .stat-card span {
    font-size: 0.82rem;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .production-collage {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 112px;
    transform: none;
  }

  .production-collage .collage-large {
    grid-column: span 2;
    grid-row: span 2;
  }

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

  .service-item {
    min-height: auto;
  }

  .process-grid {
    gap: 22px;
  }

  .clients-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 8px;
  }

  .site-footer {
    padding-bottom: 120px;
  }

  .footer-grid {
    gap: 30px;
  }

  .floating-contact {
    width: calc(100% - 22px);
    grid-template-columns: 1fr 1fr;
    bottom: 10px;
    border-radius: 18px;
  }

  .floating-contact a {
    min-height: 56px;
    padding: 8px;
    font-size: 0.82rem;
  }

  .to-top {
    right: 14px;
    bottom: 82px;
  }

  .lightbox-nav {
    top: auto;
    bottom: 22px;
    width: 42px;
    height: 42px;
    font-size: 2rem;
    transform: none;
  }

  .lightbox-nav:hover,
  .lightbox-nav:focus-visible {
    transform: scale(1.04);
  }
}

@media (max-width: 430px) {
  .hero-frame,
  .hero-frame img {
    height: 310px;
  }

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

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

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

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

  .contact-symbol {
    width: 30px;
    min-width: 30px;
    height: 22px;
    font-size: 0.46rem;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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