/* Rent-A-Mailbox — practical shop typography (Archivo + Source Sans 3) */

:root {
  --brand: #2f9fd0;
  --brand-dark: #2486b0;
  --brand-darker: #1b6c90;
  --brand-light: #e7f5fb;
  --brand-glow: rgba(47, 159, 208, 0.3);

  --deep: #12303c;
  --deep-soft: #1a4152;
  --navy: #1d3d52;

  --background: #f5f7f8;
  --sand: #ebf0f2;
  --cream: #f7fafb;
  --card: #ffffff;
  --white: #ffffff;

  --text: #1e2a32;
  --text-muted: #5c6973;
  --text-faint: #8a96a0;
  --border: #d7dee3;
  --border-soft: rgba(215, 222, 227, 0.7);

  --gold: #c9962e;
  --gold-soft: #f4e8cc;

  --container: 1320px;
  --header-h: 88px;
  --radius: 8px;
  --radius-lg: 10px;
  --radius-xl: 12px;

  --shadow-sm: 0 1px 2px rgba(18, 48, 60, 0.06);
  --shadow-md: 0 6px 20px rgba(18, 48, 60, 0.1);
  --shadow-lg: 0 16px 40px rgba(18, 48, 60, 0.14);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);

  --font-display: 'Archivo', 'Arial Narrow', Arial, sans-serif;
  --font-body: 'Source Sans 3', 'Segoe UI', system-ui, sans-serif;
}

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

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--text);
  background: var(--background);
  overflow-x: hidden;
}

img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(20px, 4vw, 36px);
}

/* Typography */
.display {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.08;
  letter-spacing: -0.02em;
  text-transform: none;
  color: var(--text);
}

h2.display { font-size: clamp(2rem, 4vw, 3rem); }

.display em {
  font-style: normal;
  font-weight: 700;
  color: var(--brand-dark);
}

.mono-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: var(--text-muted);
  margin-bottom: 12px;
}

.section-lead {
  font-size: clamp(1rem, 1.4vw, 1.0625rem);
  color: var(--text-muted);
  max-width: 560px;
  line-height: 1.75;
  margin-top: 18px;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 26px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  border-radius: 6px;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s, border-color 0.25s, color 0.25s;
  white-space: nowrap;
}

.btn--brand {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  box-shadow: 0 6px 20px var(--brand-glow);
}

.btn--brand:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
  box-shadow: 0 10px 28px var(--brand-glow);
}

.btn--deep {
  background: var(--deep);
  color: var(--cream);
  border-color: var(--deep);
}

.btn--deep:hover {
  background: var(--deep-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn--gold {
  background: var(--gold);
  color: var(--deep);
  border-color: var(--gold);
}

.btn--gold:hover { filter: brightness(1.08); transform: translateY(-1px); }

.btn--white {
  background: var(--white);
  color: var(--deep);
  border-color: var(--white);
}

.btn--white:hover { transform: translateY(-1px); box-shadow: var(--shadow-lg); }

.btn--ghost {
  background: rgba(255, 255, 255, 0.1);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.32);
  backdrop-filter: blur(10px);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--outline {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn--outline:hover {
  border-color: var(--brand);
  color: var(--brand-dark);
  background: var(--brand-light);
}

.btn--outline-light {
  background: transparent;
  color: var(--cream);
  border-color: rgba(255, 255, 255, 0.3);
}

.btn--outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.55);
}

.btn--sm { padding: 9px 18px; font-size: 0.8125rem; }
.btn--lg { padding: 16px 34px; font-size: 1rem; }
.btn--full { width: 100%; }

.btn--success { background: #16a34a !important; border-color: #16a34a !important; color: var(--white) !important; }
.btn--error { background: #dc2626 !important; border-color: #dc2626 !important; color: var(--white) !important; }

/* Header — always light, sticky (troop style) */
.header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  height: var(--header-h);
  background: rgba(250, 249, 245, 0.88);
  backdrop-filter: blur(16px) saturate(160%);
  border-bottom: 1px solid var(--border-soft);
  transition: box-shadow 0.3s;
}

.header--solid { box-shadow: var(--shadow-sm); }

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

/* Text/image logo — fits sticky header */
.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 0;
  line-height: 0;
  transition: opacity 0.2s;
}

.logo:hover { opacity: 0.88; }

.logo__img {
  display: block;
  height: clamp(42px, 5.2vw, 56px);
  width: auto;
  max-width: min(260px, 52vw);
  object-fit: contain;
  object-position: left center;
}

.logo--footer {
  background: #ffffff;
  padding: 10px 14px;
  border-radius: 12px;
  box-shadow: 0 1px 0 rgba(255, 255, 255, 0.08);
}

.logo--footer .logo__img {
  height: 44px;
  max-width: 220px;
}

.logo__name {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 620;
  letter-spacing: -0.01em;
  color: var(--brand);
  white-space: nowrap;
}

.logo__tagline {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 2px;
  white-space: nowrap;
}

.nav { display: flex; align-items: center; gap: 2px; }

.nav a {
  padding: 8px 14px;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-muted);
  border-radius: 100px;
  transition: background 0.2s, color 0.2s;
}

.nav a:hover { background: var(--sand); color: var(--text); }

.nav a[aria-current="page"] {
  background: var(--brand-light);
  color: var(--brand-dark);
  font-weight: 600;
}

.header__actions { display: flex; align-items: center; gap: 12px; }

.header__phone {
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--text);
  transition: color 0.2s;
}

.header__phone:hover { color: var(--brand-dark); }

.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  width: 42px; height: 42px;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: 50%;
  cursor: pointer;
  padding: 4px;
}

.menu-toggle span {
  display: block; height: 2px; width: 18px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}

.menu-toggle.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.active span:nth-child(2) { opacity: 0; }
.menu-toggle.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Hero — troop style: centered, content at bottom, light scrim */
.hero {
  position: relative;
  min-height: min(88vh, 900px);
  min-height: min(88dvh, 900px);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: stretch;
  color: var(--cream);
  overflow: hidden;
  background: #0c3a4a;
  text-align: center;
}

.hero__media { position: absolute; inset: 0; z-index: 0; }

.hero__photo {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 40%;
  animation: heroKenBurns 28s var(--ease) forwards;
}

@keyframes heroKenBurns {
  from { transform: scale(1.06); }
  to { transform: scale(1.0); }
}

.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg,
      rgba(8, 36, 48, 0.35) 0%,
      rgba(8, 36, 48, 0.28) 35%,
      rgba(8, 36, 48, 0.72) 68%,
      rgba(8, 36, 48, 0.94) 100%);
}

.hero__stack {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 860px;
  margin: 0 auto;
  padding: calc(var(--header-h) + 36px) clamp(20px, 4vw, 36px) 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeUp 0.9s var(--ease) both;
}

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}

.hero__open {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 13px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  margin-bottom: 22px;
  backdrop-filter: blur(10px);
}

.pulse {
  width: 8px; height: 8px;
  background: #4ade80;
  border-radius: 50%;
  animation: pulse 2s infinite;
  flex-shrink: 0;
}

.pulse--closed {
  background: #cbd5e1;
  animation: none;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.5); }
  50% { box-shadow: 0 0 0 8px rgba(74, 222, 128, 0); }
}

.hero__kicker {
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 600;
  color: rgba(251, 248, 240, 0.88);
  margin-bottom: 10px;
}

.hero__title {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 6vw, 4.25rem);
  font-weight: 800;
  line-height: 1.02;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 16px;
  text-shadow: 0 2px 28px rgba(8, 36, 48, 0.45);
}

.hero__title em {
  font-style: normal;
  font-weight: 800;
  color: #7fd0e8;
}

.hero__subtitle {
  font-size: clamp(1rem, 1.5vw, 1.125rem);
  line-height: 1.75;
  color: rgba(251, 248, 240, 0.9);
  max-width: 620px;
  margin: 0 auto 28px;
  font-weight: 450;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  margin-bottom: 36px;
}

.hero__stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  width: 100%;
  max-width: 980px;
  margin: 0 auto;
  padding-top: 28px;
  border-top: 1px solid rgba(251, 248, 240, 0.2);
  text-align: left;
}

.hero__stat-label {
  display: block;
  font-size: 0.8125rem;
  color: rgba(251, 248, 240, 0.62);
  margin-bottom: 6px;
  font-weight: 500;
}

.hero__stat-value {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.2rem, 2.2vw, 1.65rem);
  font-weight: 700;
  color: var(--cream);
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.hero__stat-value--gold { color: var(--gold); }
.hero__stat-value--brand { color: #7fd0e8; }

.hero__stat-carriers {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 8px;
  margin-top: 4px;
}

/* Shared carrier logo badges — equal visual footprint */
.carrier-logo {
  display: block;
  width: 72px;
  height: 36px;
  object-fit: contain;
  object-position: center;
  flex-shrink: 0;
  background: transparent;
}

.carrier-logo--hero {
  width: 76px;
  height: 38px;
}

.carrier-logo--marquee {
  width: 72px;
  height: 36px;
}

.carrier-logo--card {
  width: 68px;
  height: 34px;
}

.carrier-logo--service {
  width: 96px;
  height: 48px;
}

.carrier-logo-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px;
  margin-top: 14px;
}

.carrier-logo-row--service {
  margin: 22px 0 4px;
  gap: 10px;
}

.carrier-logo-row--inline {
  margin-top: 10px;
  gap: 6px;
}

.carrier-logo-row--inline .carrier-logo--card {
  width: 64px;
  height: 32px;
}

.partner-chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.partner-chip-row--service {
  margin: 22px 0 4px;
}

.partner-chip {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border: 1px solid var(--border);
  background: var(--sand);
  color: var(--text);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  line-height: 1.2;
}

/* Marquee — soft sand strip */
.marquee {
  background: var(--sand);
  border-bottom: 1px solid var(--border-soft);
  color: var(--text-muted);
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
}

.marquee__track {
  display: inline-flex;
  align-items: center;
  animation: marquee 34s linear infinite;
}

.marquee__track span {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0 26px;
  display: inline-flex;
  align-items: center;
  gap: 26px;
}

.marquee__track span::after {
  content: '·';
  color: var(--brand);
  font-size: 1.25rem;
}

.marquee__logo {
  padding: 0 18px !important;
  gap: 18px !important;
}

.marquee__logo::after {
  margin-left: 2px;
}

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

/* Services */
.services {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--background);
}

.services__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 52px;
}

.services__head-text { max-width: 720px; }

.services__head-note {
  max-width: 24rem;
  font-size: 0.9375rem;
  color: var(--text-muted);
  font-weight: 450;
  line-height: 1.7;
}

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

.svc-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  min-height: 200px;
  height: 100%;
  padding: clamp(24px, 2.5vw, 30px);
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.3s, transform 0.3s var(--ease), box-shadow 0.3s;
}

.svc-card:hover {
  border-color: rgba(40, 158, 196, 0.5);
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
}

.svc-card--link { cursor: pointer; }

.svc-card__media {
  margin: -clamp(24px, 2.5vw, 30px) -clamp(24px, 2.5vw, 30px) 0;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
  overflow: hidden;
  aspect-ratio: 16 / 9;
  background: var(--sand);
}

.svc-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.svc-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px; height: 48px;
  border-radius: 50%;
  background: var(--brand-light);
  color: var(--brand-dark);
  transition: background 0.3s, color 0.3s;
  flex-shrink: 0;
}

.svc-card:hover .svc-card__icon {
  background: var(--brand);
  color: var(--white);
}

.svc-card__icon svg { width: 22px; height: 22px; }

.svc-card__tag {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-faint);
  padding-top: 4px;
  text-align: right;
}

.svc-card h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.015em;
  color: var(--text);
  margin-bottom: 7px;
  display: flex;
  align-items: center;
  gap: 8px;
}

.svc-card__arrow {
  width: 18px; height: 18px;
  flex-shrink: 0;
  color: var(--brand);
  opacity: 0;
  transform: translateX(-4px);
  transition: opacity 0.3s, transform 0.3s;
}

.svc-card:hover .svc-card__arrow { opacity: 1; transform: translateX(0); }

.svc-card p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 450;
  line-height: 1.65;
  max-width: 28rem;
}

.mini-carrier {
  display: inline-flex;
  align-items: center;
  padding: 0;
  border-radius: 4px;
  overflow: hidden;
  line-height: 0;
}

.mini-carrier img,
.mini-carrier .carrier-logo {
  height: 18px;
  width: auto;
  display: block;
  border-radius: 4px;
  box-shadow: none;
}

.mini-carrier--ups,
.mini-carrier--fedex,
.mini-carrier--usps,
.mini-carrier--dhl {
  background: transparent;
  color: inherit;
}

/* Manifesto — plain reasons, no numbered marketing cards */
.manifesto {
  padding: clamp(72px, 9vw, 110px) 0;
  background: var(--sand);
  border-block: 1px solid var(--border-soft);
  color: var(--text);
}

.manifesto .mono-label { color: var(--text-muted); }
.manifesto h2 { color: var(--text); margin-bottom: clamp(36px, 5vw, 52px); }

.manifesto__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 48px);
}

.manifesto__item {
  background: transparent;
  border: none;
  border-radius: 0;
  padding: 0 0 0 18px;
  border-left: 3px solid var(--brand);
  box-shadow: none;
}

.manifesto__item:hover {
  transform: none;
  box-shadow: none;
}

.manifesto__num { display: none; }

.manifesto__item h3 {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  margin-bottom: 10px;
  color: var(--text);
  letter-spacing: -0.015em;
}

.manifesto__item p {
  font-size: 0.9875rem;
  color: var(--text-muted);
  font-weight: 450;
  line-height: 1.7;
}

/* Showcase */
.showcase {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--background);
}

.showcase__grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 72px);
  align-items: center;
}

.showcase__visual {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.showcase__visual img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  object-position: center 35%;
}

.showcase__badge {
  position: absolute;
  bottom: 18px;
  left: 18px;
  z-index: 2;
  padding: 9px 18px;
  background: var(--white);
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--deep);
  box-shadow: var(--shadow-md);
}

.showcase__features {
  display: flex;
  flex-direction: column;
  margin-top: 32px;
  border-top: 1px solid var(--border);
}

.showcase__feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  padding: 20px 0;
  border-bottom: 1px solid var(--border-soft);
}

.showcase__feature-icon {
  flex-shrink: 0;
  width: 44px; height: 44px;
  display: grid;
  place-items: center;
  background: var(--brand-light);
  border-radius: 12px;
  color: var(--brand-dark);
}

.showcase__feature-icon svg { width: 20px; height: 20px; }

.showcase__feature h4 { font-size: 0.9375rem; font-weight: 700; margin-bottom: 3px; }

.showcase__feature p {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 450;
  line-height: 1.6;
}

.showcase__content .btn { margin-top: 30px; }

/* Fingerprint — deep petrol band */
.fingerprint {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--deep);
  color: var(--cream);
}

.fingerprint .mono-label { color: #7fd0e8; }
.fingerprint h2 { color: var(--cream); }
.fingerprint h2 em { color: var(--gold); }

.fingerprint__grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}

.fingerprint__info > p {
  color: rgba(251, 248, 240, 0.72);
  margin: 18px 0 28px;
  line-height: 1.8;
  max-width: 460px;
  font-weight: 450;
}

.fingerprint__list { margin-bottom: 32px; border-top: 1px solid rgba(251, 248, 240, 0.14); }

.fingerprint__list li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 13px 0;
  border-bottom: 1px solid rgba(251, 248, 240, 0.1);
  font-size: 0.9375rem;
  font-weight: 500;
  color: rgba(251, 248, 240, 0.9);
}

.fingerprint__list li::before {
  content: '';
  width: 20px; height: 20px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--brand);
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='white' stroke-width='3.5'%3E%3Cpath d='M5 12l5 5L20 7'/%3E%3C/svg%3E");
  background-size: 11px;
  background-repeat: no-repeat;
  background-position: center;
}

/* Forms */
.booking-form,
.contact-form {
  background: var(--card);
  border-radius: var(--radius-xl);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-lg);
  color: var(--text);
  border: 1px solid var(--border);
}

.booking-form h3,
.contact-form h3 {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 560;
  margin-bottom: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.booking-form label,
.contact-form label,
.tshirt-form label { display: block; margin-bottom: 16px; }

.booking-form label span,
.contact-form label span,
.tshirt-form label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 7px;
  color: var(--text-muted);
}

.booking-form input,
.booking-form select,
.booking-form textarea,
.contact-form input,
.contact-form select,
.contact-form textarea,
.tshirt-form input:not([type="number"]),
.tshirt-form select,
.tshirt-form textarea {
  width: 100%;
  padding: 13px 15px;
  font-family: var(--font-body);
  font-size: 0.9375rem;
  font-weight: 500;
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  background: var(--background);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus,
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus,
.tshirt-form input:focus,
.tshirt-form select:focus,
.tshirt-form textarea:focus {
  outline: none;
  border-color: var(--brand);
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(40, 158, 196, 0.12);
}

.form-note {
  margin-top: 16px;
  font-size: 0.8125rem;
  color: var(--text-muted);
  text-align: center;
  font-weight: 450;
}

/* Reviews */
.reviews {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--background);
  overflow: hidden;
}

.reviews__head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 48px;
}

.reviews__score-card {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 20px 28px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-sm);
}

.reviews__score-num {
  font-family: var(--font-display);
  font-size: 2.75rem;
  font-weight: 560;
  color: var(--gold);
  line-height: 1;
}

.reviews__score-meta strong { display: block; font-size: 0.9375rem; font-weight: 700; margin-bottom: 2px; }
.reviews__score-meta span { font-size: 0.8125rem; color: var(--text-muted); font-weight: 500; }
.reviews__stars { color: var(--gold); letter-spacing: 3px; font-size: 1rem; margin-top: 2px; }

.reviews__track {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  -ms-overflow-style: none;
  scrollbar-width: none;
  padding: 4px 0 22px;
}

.reviews__track::-webkit-scrollbar { display: none; }

.review-card {
  flex: 0 0 min(400px, 86vw);
  scroll-snap-align: start;
  display: flex;
  flex-direction: column;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 30px;
  box-shadow: var(--shadow-sm);
  transition: transform 0.35s var(--ease), box-shadow 0.35s, border-color 0.3s;
}

.review-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-md);
  border-color: rgba(40, 158, 196, 0.45);
}

.review-card__stars { color: var(--gold); font-size: 0.875rem; letter-spacing: 2px; margin-bottom: 15px; }

.review-card blockquote {
  font-size: 0.9375rem;
  line-height: 1.75;
  color: var(--text);
  font-weight: 450;
  margin-bottom: 22px;
  flex: 1;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 12px;
  padding-top: 16px;
  border-top: 1px solid var(--border-soft);
}

.review-card__avatar {
  width: 42px; height: 42px;
  flex-shrink: 0;
  display: grid;
  place-items: center;
  background: linear-gradient(135deg, var(--brand) 0%, var(--deep) 100%);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-display);
  font-size: 0.875rem;
  font-weight: 600;
}

.review-card footer strong { display: block; font-size: 0.875rem; font-weight: 700; }
.review-card footer span { font-size: 0.75rem; color: var(--text-muted); font-weight: 500; }

.reviews__nav { display: flex; justify-content: center; gap: 12px; margin-top: 4px; }

.reviews__btn {
  width: 48px; height: 48px;
  display: grid;
  place-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 50%;
  font-size: 1.125rem;
  cursor: pointer;
  transition: all 0.25s var(--ease);
  color: var(--text);
}

.reviews__btn:hover {
  background: var(--brand);
  border-color: var(--brand);
  color: var(--white);
  transform: scale(1.05);
}

.reviews__cta { text-align: center; margin-top: 34px; }

/* Visit */
.visit {
  padding: clamp(80px, 10vw, 120px) 0;
  background: var(--sand);
  border-top: 1px solid var(--border-soft);
}

.visit__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 64px);
  align-items: start;
}

.visit__details {
  display: flex;
  flex-direction: column;
  margin: 28px 0;
  border-top: 1px solid var(--border);
}

.visit-detail {
  display: flex;
  gap: 16px;
  padding: 18px 0;
  border-bottom: 1px solid var(--border-soft);
}

.visit-detail svg {
  flex-shrink: 0;
  width: 22px; height: 22px;
  color: var(--brand-dark);
  margin-top: 2px;
}

.visit-detail strong {
  display: block;
  font-size: 0.6875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--text-muted);
  margin-bottom: 3px;
}

.visit-detail a:hover { color: var(--brand-dark); }
.visit-detail p, .visit-detail address { font-weight: 500; font-size: 0.9375rem; }

.visit__map {
  margin-top: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.visit__map iframe { display: block; width: 100%; height: 240px; border: 0; }

/* Footer — deep petrol */
.footer {
  background: var(--deep);
  color: rgba(251, 248, 240, 0.6);
  padding: clamp(64px, 8vw, 96px) 0 32px;
  overflow: hidden;
}

.footer__cta {
  display: block;
  width: 100%;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: var(--font-display);
  font-size: clamp(3rem, 10vw, 7.5rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  margin-bottom: clamp(44px, 6vw, 64px);
  transition: color 0.3s;
}

.footer__cta:hover { color: var(--white); }

.footer__cta-arrow {
  display: inline-block;
  color: var(--brand);
  transition: transform 0.35s var(--ease);
  margin-left: 10px;
}

.footer__cta:hover .footer__cta-arrow { transform: translate(10px, -10px); }

.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr repeat(3, 1fr);
  gap: 44px;
  margin-bottom: 44px;
  border-top: 1px solid rgba(251, 248, 240, 0.12);
  padding-top: 48px;
}

.footer .logo--footer { display: inline-flex; }
.footer .logo__name { color: #7fd0e8; }
.footer .logo__tagline { color: rgba(251, 248, 240, 0.5); }

.footer__brand p {
  font-size: 0.875rem;
  line-height: 1.75;
  margin: 18px 0;
  max-width: 320px;
  font-weight: 450;
}

.footer__contact { font-size: 0.875rem; line-height: 2.1; font-weight: 450; }
.footer__contact a:hover { color: var(--gold); }
.footer__hours { margin-top: 8px; color: rgba(251, 248, 240, 0.4); font-size: 0.8125rem; }

.footer__links h4 {
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #7fd0e8;
  margin-bottom: 16px;
}

.footer__links li { margin-bottom: 10px; }
.footer__links a { font-size: 0.875rem; font-weight: 450; transition: color 0.2s; }
.footer__links a:hover { color: var(--cream); }

.footer__carriers {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  padding: 26px 0;
  border-top: 1px solid rgba(251, 248, 240, 0.1);
  border-bottom: 1px solid rgba(251, 248, 240, 0.1);
  margin-bottom: 26px;
}

.footer__carriers > span {
  font-size: 0.625rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(251, 248, 240, 0.4);
}

.footer__carrier-logos { display: flex; gap: 16px; flex-wrap: wrap; align-items: center; }

.footer-carrier-img {
  width: 80px;
  height: 40px;
  object-fit: contain;
  object-position: center;
  opacity: 0.92;
  transition: opacity 0.2s, transform 0.2s;
}
.footer-carrier-img:hover { opacity: 1; transform: translateY(-1px); }

.footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.8125rem;
  font-weight: 450;
  color: rgba(251, 248, 240, 0.35);
}

.footer__bottom a:hover { color: var(--gold); }

/* Scroll reveal */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

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

/* Inner pages */
.page-hero {
  padding: calc(var(--header-h) + 64px) 0 64px;
  background: var(--deep);
  color: var(--cream);
}

.page-hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.page-hero__content .section-tag,
.page-hero .section-tag {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 600;
  letter-spacing: 0.01em;
  text-transform: none;
  color: #7fd0e8;
  margin-bottom: 12px;
}

.page-hero h1 {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 5.5vw, 3.75rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.025em;
  color: var(--cream);
  margin-bottom: 14px;
}

.page-hero h1 em {
  font-style: normal;
  font-weight: 800;
  color: #7fd0e8;
}

.page-hero p { color: rgba(251, 248, 240, 0.72); max-width: 560px; font-weight: 450; }

.page-hero__list {
  margin-top: 22px;
  display: grid;
  gap: 10px;
}

.page-hero__list li {
  position: relative;
  padding-left: 22px;
  color: rgba(251, 248, 240, 0.88);
  font-size: 0.9375rem;
}

.page-hero__list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--gold);
}

.page-hero__visual { display: grid; gap: 12px; }
.page-hero__img {
  width: 100%;
  border-radius: var(--radius-xl);
  object-fit: cover;
  aspect-ratio: 4 / 3;
}

.mockup-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.mockup-strip img {
  width: 100%;
  border-radius: var(--radius);
  aspect-ratio: 1;
  object-fit: cover;
}

.page-section { padding: clamp(56px, 8vw, 96px) 0; }

.service-detail__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.service-detail__body {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 40rem;
  margin: 12px 0 28px;
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-detail__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--sand);
  box-shadow: var(--shadow-md);
}

.service-detail__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
  align-items: center;
}

.service-detail__body {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  line-height: 1.75;
  color: var(--text-muted);
  max-width: 40rem;
  margin: 12px 0 28px;
}

.service-detail__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.service-detail__media img {
  width: 100%;
  border-radius: var(--radius-xl);
  aspect-ratio: 4 / 3;
  object-fit: cover;
  background: var(--sand);
  box-shadow: var(--shadow-md);
}

@media (max-width: 900px) {
  .service-detail__grid { grid-template-columns: 1fr; }
}

.btn--primary {
  background: var(--brand);
  color: var(--white);
  border-color: var(--brand);
  box-shadow: 0 6px 20px var(--brand-glow);
}

.btn--primary:hover {
  background: var(--brand-dark);
  border-color: var(--brand-dark);
  transform: translateY(-1px);
}

.tshirt-order { padding: 0 0 96px; }

/* T-shirt page */
.page-tshirts { background: var(--background); }

.tshirt-page { padding: 76px 0 96px; }

.tshirt-page__grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 60px;
  align-items: start;
}

.tshirt-form {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: 40px;
  box-shadow: var(--shadow-sm);
}

.tshirt-form__section {
  margin-bottom: 40px;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--border-soft);
}

.tshirt-form__section:last-of-type { border-bottom: none; margin-bottom: 28px; padding-bottom: 0; }

.tshirt-form__section h2 {
  font-family: var(--font-display);
  font-size: 1.375rem;
  font-weight: 560;
  margin-bottom: 6px;
}

.tshirt-form__hint { font-size: 0.875rem; color: var(--text-muted); font-weight: 450; margin-bottom: 18px; }

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

@media (min-width: 640px) {
  .size-grid { grid-template-columns: repeat(5, minmax(0, 1fr)); }
}

@media (min-width: 900px) {
  .size-grid { grid-template-columns: repeat(9, minmax(88px, 1fr)); }
}

.size-grid label {
  text-align: center;
  margin-bottom: 0 !important;
  min-width: 0;
}

.size-grid label span {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-bottom: 6px;
}

.size-grid input {
  text-align: center;
  width: 100%;
  min-width: 0;
  padding: 12px 8px !important;
  font-size: 1rem;
}

.size-total { margin-top: 14px; font-size: 0.9375rem; color: var(--text-muted); font-weight: 500; }
.size-total strong { color: var(--brand-dark); font-size: 1.125rem; }

.upload-zone {
  border: 2px dashed var(--border);
  border-radius: var(--radius-lg);
  padding: 36px 24px;
  text-align: center;
  cursor: pointer;
  background: var(--background);
  transition: border-color 0.2s, background 0.2s;
}

.upload-zone:hover,
.upload-zone--active { border-color: var(--brand); background: var(--brand-light); }

.upload-zone__inner svg { margin: 0 auto 10px; color: var(--text-muted); }
.upload-zone__inner p { font-size: 0.9375rem; color: var(--text-muted); font-weight: 450; margin-bottom: 6px; }

.upload-browse {
  background: none; border: none;
  font-family: inherit; font-weight: 700;
  color: var(--brand-dark); cursor: pointer; text-decoration: underline;
}

.upload-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(110px, 1fr));
  gap: 14px;
  margin-top: 16px;
}

.upload-preview__item {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--sand);
  border: 1px solid var(--border);
}

.upload-preview__item img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.upload-preview__remove {
  position: absolute;
  top: 4px; right: 4px;
  width: 22px; height: 22px;
  border: none; border-radius: 50%;
  background: rgba(0, 0, 0, 0.6);
  color: var(--white);
  font-size: 0.875rem;
  cursor: pointer;
}

.upload-preview__remove:hover { background: #dc2626; }

.footer__grid--compact { grid-template-columns: 1fr !important; margin-bottom: 20px !important; }

/* Responsive */
@media (max-width: 1100px) {
  .svc-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 1024px) {
  .showcase__grid,
  .fingerprint__grid,
  .visit__grid,
  .tshirt-page__grid,
  .service-detail__grid { grid-template-columns: 1fr; gap: 44px; }
  .manifesto__grid { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .hero__stats-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav {
    position: fixed;
    top: var(--header-h); left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    background: var(--background);
    padding: 16px 24px 24px;
    transform: translateY(-130%);
    opacity: 0;
    transition: transform 0.4s var(--ease), opacity 0.35s;
    border-bottom: 1px solid var(--border);
    box-shadow: var(--shadow-md);
  }

  .nav.open { transform: translateY(0); opacity: 1; }
  .nav a { padding: 14px 16px; font-size: 1rem; color: var(--text); }
  .nav a:hover { background: var(--sand); }

  .menu-toggle { display: flex; }
  .header__phone { display: none; }
  .header__actions .btn--sm { display: none; }

  .hero__cta { width: 100%; }
  .hero__cta .btn { flex: 1; }
  .page-hero__grid { grid-template-columns: 1fr; }

  .svc-grid { grid-template-columns: 1fr 1fr; }
  .svc-card { min-height: 160px; }

  .form-row { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; gap: 10px; text-align: center; }
  .reviews__head { flex-direction: column; align-items: flex-start; }
}

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

@media (max-width: 480px) {
  .logo__img { height: 40px; max-width: min(190px, 58vw); }
  .logo--footer .logo__img { height: 36px; }
  .hero__stats-grid { grid-template-columns: 1fr 1fr; gap: 18px; }
  .booking-form, .contact-form, .tshirt-form { padding: 24px 20px; }
}
