/* PS LETTERING SL — multi-page static site */

:root {
  --bg: #060a10;
  --bg-elevated: #0c121c;
  --bg-card: #111827;
  --surface: #1a2332;
  --text: #f1f5f9;
  --text-muted: #94a3b8;
  --accent: #38bdf8;
  --accent-2: #818cf8;
  --accent-soft: rgba(56, 189, 248, 0.14);
  --accent-glow: rgba(56, 189, 248, 0.4);
  --border: rgba(148, 163, 184, 0.14);
  --radius: 16px;
  --radius-lg: 24px;
  --radius-sm: 10px;
  --header-h: 68px;
  --mobile-bar-h: 72px;
  --font: "Segoe UI", system-ui, -apple-system, Roboto, Ubuntu, sans-serif;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow: 0 24px 60px -24px rgba(0, 0, 0, 0.75);
  --reveal-distance: 28px;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1 !important; transform: none !important; }
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    transition-duration: 0.01ms !important;
  }
}

body {
  margin: 0;
  font-family: var(--font);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
  padding-bottom: calc(var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  opacity: 0;
  transition: opacity 0.5s var(--ease);
}
body.is-ready { opacity: 1; }
body.menu-open { overflow: hidden; touch-action: none; }
body.page-legal { padding-bottom: 0; }

@media (min-width: 900px) { body { padding-bottom: 0; } }

img {
  display: block;
  max-width: 100%;
  height: auto;
}
a { color: var(--accent); text-decoration: none; }
a:hover { text-decoration: underline; }
address { font-style: normal; }

.container {
  width: min(1140px, 100% - 2rem);
  margin-inline: auto;
}

.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 9999;
  padding: 0.6rem 1rem;
  background: var(--accent);
  color: #0f172a;
  border-radius: var(--radius-sm);
  font-weight: 700;
}
.skip-link:focus { top: 1rem; }

/* ── Header ── */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 320;
  height: var(--header-h);
  background: rgba(6, 10, 16, 0.97);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.35s var(--ease), background 0.35s;
}
.site-header.is-scrolled {
  background: rgba(6, 10, 16, 0.96);
  box-shadow: var(--shadow);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--header-h);
  gap: 1rem;
}

.logo {
  display: inline-flex;
  align-items: center;
  flex-shrink: 1;
  min-width: 0;
  max-width: calc(100% - 54px);
  text-decoration: none;
  line-height: 0;
}
.logo:hover { text-decoration: none; opacity: 0.92; }
.logo__brand {
  display: block;
  height: 40px;
  width: auto;
  max-width: min(200px, 58vw);
}
.logo--footer .logo__brand {
  height: 48px;
  max-width: 220px;
}
@media (max-width: 380px) {
  .logo__brand { height: 36px; max-width: 52vw; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 46px;
  height: 46px;
  padding: 0;
  border: 1px solid var(--border);
  background: var(--surface);
  border-radius: var(--radius-sm);
  cursor: pointer;
  position: relative;
  z-index: 410;
  -webkit-tap-highlight-color: transparent;
}
.nav-toggle-bar {
  display: block;
  width: 20px;
  height: 2px;
  margin-inline: auto;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.35s var(--ease), opacity 0.35s;
  pointer-events: none;
}
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer — outside header stacking issues */
.nav-backdrop {
  position: fixed;
  inset: 0;
  z-index: 390;
  background: rgba(0, 0, 0, 0.65);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s var(--ease), visibility 0.35s;
}
.nav-backdrop.is-visible {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.site-nav {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: var(--mobile-bar-h);
  width: 100%;
  max-width: 100%;
  padding: 1.25rem 1.25rem 2rem;
  background: linear-gradient(165deg, #141c2b 0%, #060a10 100%);
  border-top: 1px solid var(--border);
  box-shadow: 0 -8px 40px rgba(0, 0, 0, 0.4);
  z-index: 400;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  -webkit-overflow-scrolling: touch;
  transform: translateY(-108%);
  visibility: hidden;
  pointer-events: none;
  transition: transform 0.4s var(--ease), visibility 0.4s;
}
.site-nav.is-open {
  transform: translateY(0);
  visibility: visible;
  pointer-events: auto;
}
.site-nav__label {
  display: block;
  margin-bottom: 1rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.site-nav ul { list-style: none; margin: 0 0 1.25rem; padding: 0; }
.site-nav a {
  display: block;
  padding: 0.95rem 0.75rem;
  margin-bottom: 0.35rem;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  border-radius: var(--radius-sm);
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}
.site-nav a:hover,
.site-nav a.is-active {
  color: var(--accent);
  background: var(--accent-soft);
  text-decoration: none;
}
.nav-cta { margin-top: 0.5rem; width: 100%; text-align: center; }

@media (min-width: 900px) {
  .nav-toggle { display: none; }
  .nav-backdrop { display: none !important; }

  .site-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: var(--header-h);
    width: 100%;
    max-width: none;
    padding: 0 max(1rem, calc((100vw - 1140px) / 2 + 1rem));
    background: transparent;
    border: none;
    box-shadow: none;
    transform: none !important;
    visibility: visible !important;
    pointer-events: none;
    z-index: 321;
    flex-direction: row;
    align-items: center;
    justify-content: flex-end;
    gap: 1rem;
    overflow: visible;
  }
  .site-nav__label { display: none; }
  .site-nav ul,
  .site-nav .nav-cta {
    pointer-events: auto;
  }
  .site-nav ul {
    display: flex;
    gap: 0.15rem;
    margin: 0;
  }
  .site-nav a {
    padding: 0.5rem 0.9rem;
    margin: 0;
    font-size: 0.92rem;
  }
  .site-nav a.is-active { background: var(--accent-soft); }
  .nav-cta { margin-top: 0; width: auto; }
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 48px;
  padding: 0.8rem 1.5rem;
  font-size: 0.95rem;
  font-weight: 700;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s, background 0.25s;
  -webkit-tap-highlight-color: transparent;
}
.btn:active { transform: scale(0.97); }
.btn-primary {
  background: linear-gradient(135deg, var(--accent), #0ea5e9);
  color: #0f172a;
  box-shadow: 0 10px 30px -10px var(--accent-glow);
}
.btn-primary:hover { text-decoration: none; box-shadow: 0 14px 36px -8px var(--accent-glow); }
.btn-secondary {
  background: var(--surface);
  color: var(--text);
  border: 1px solid var(--border);
}
.btn-secondary:hover { text-decoration: none; background: var(--bg-card); }
.btn-ghost {
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  border: 1px solid var(--border);
  backdrop-filter: blur(8px);
}
.btn-ghost:hover { text-decoration: none; border-color: var(--accent); }
.btn-block { width: 100%; }

.eyebrow {
  margin: 0 0 0.75rem;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Reveal animations ── */
.reveal {
  opacity: 0;
  transform: translateY(var(--reveal-distance));
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}
@keyframes pulse-glow {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}
@keyframes hero-zoom {
  from { transform: scale(1.08); }
  to { transform: scale(1); }
}

/* ── Page hero (inner pages) ── */
.page-hero {
  position: relative;
  min-height: 42vh;
  display: flex;
  align-items: flex-end;
  padding: calc(var(--header-h) + 3rem) 0 3rem;
  overflow: hidden;
}
.page-hero__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  animation: hero-zoom 1.2s var(--ease) forwards;
}
.page-hero__bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(6, 10, 16, 0.35) 0%, rgba(6, 10, 16, 0.92) 85%);
}
.page-hero .container { position: relative; z-index: 1; }
.page-hero h1 {
  margin: 0 0 0.75rem;
  font-size: clamp(2rem, 6vw, 3.2rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.1;
}
.page-hero p {
  margin: 0;
  max-width: 36rem;
  color: var(--text-muted);
  font-size: 1.1rem;
}
.breadcrumb {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem;
  margin-bottom: 1rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.breadcrumb a { color: var(--accent); text-decoration: none; }
.breadcrumb span { opacity: 0.5; }

/* ── Home hero ── */
.hero-home {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2rem) 0 4rem;
  overflow: hidden;
}
.hero-home__media {
  position: absolute;
  inset: 0;
}
.hero-home__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: hero-zoom 1.4s var(--ease) forwards;
}
.hero-home__overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(105deg, rgba(6, 10, 16, 0.97) 0%, rgba(6, 10, 16, 0.75) 45%, rgba(6, 10, 16, 0.4) 100%),
    radial-gradient(ellipse 70% 60% at 80% 20%, rgba(56, 189, 248, 0.12), transparent);
}
.hero-home .container {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 2rem;
  align-items: center;
}
.hero-home h1 {
  margin: 0 0 1rem;
  font-size: clamp(2.1rem, 7vw, 3.5rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.08;
}
.hero-home__lead {
  margin: 0 0 1.75rem;
  max-width: 32rem;
  color: var(--text-muted);
  font-size: 1.08rem;
}
.hero-home__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-bottom: 2rem;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.9rem;
  margin-bottom: 1.25rem;
  background: var(--accent-soft);
  border: 1px solid rgba(56, 189, 248, 0.25);
  border-radius: 999px;
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--accent);
  animation: pulse-glow 3s ease-in-out infinite;
}
.hero-stats-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}
.hero-stats-inline div strong {
  display: block;
  font-size: 1.5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #fff, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-stats-inline div span {
  font-size: 0.8rem;
  color: var(--text-muted);
}

@media (min-width: 900px) {
  .hero-home .container { grid-template-columns: 1.1fr 0.9fr; }
  .hero-home__card {
    justify-self: end;
    width: min(100%, 380px);
  }
}

.hero-home__card {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
  animation: float 6s ease-in-out infinite;
}
.hero-home__card img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero-home__card-caption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.25rem;
  background: linear-gradient(transparent, rgba(6, 10, 16, 0.95));
}
.hero-home__card-caption strong { display: block; font-size: 1.1rem; }
.hero-home__card-caption span { font-size: 0.85rem; color: var(--text-muted); }

/* ── Sections ── */
.section { padding: 4.5rem 0; }
.section--alt { background: var(--bg-elevated); }
.section-head {
  margin-bottom: 2.5rem;
  max-width: 34rem;
}
.section-head h2 {
  margin: 0;
  font-size: clamp(1.65rem, 4vw, 2.35rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.section-head p { margin: 0.75rem 0 0; color: var(--text-muted); }

/* Stats bar */
.stats-bar {
  padding: 2.5rem 0;
  background: var(--bg-elevated);
  border-block: 1px solid var(--border);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  text-align: center;
}
.stat-item strong {
  display: block;
  font-size: clamp(1.8rem, 5vw, 2.6rem);
  font-weight: 800;
  background: linear-gradient(135deg, #fff 30%, var(--accent));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.stat-item span { font-size: 0.82rem; color: var(--text-muted); }

/* Image cards */
.card-grid {
  display: grid;
  gap: 1.25rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .card-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .card-grid--3 { grid-template-columns: repeat(3, 1fr); } }

.img-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease), box-shadow 0.4s, border-color 0.4s;
}
.img-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow);
  border-color: rgba(56, 189, 248, 0.35);
  text-decoration: none;
}
.img-card__media {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.img-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease);
}
.img-card:hover .img-card__media img { transform: scale(1.06); }
.img-card__body { padding: 1.35rem 1.35rem 1.5rem; color: var(--text); }
.img-card__body h3 {
  margin: 0 0 0.4rem;
  font-size: 1.15rem;
}
.img-card__body p {
  margin: 0 0 1rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}
.img-card__link {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--accent);
}

/* Split feature rows */
.feature-row {
  display: grid;
  gap: 2rem;
  align-items: center;
  margin-bottom: 3.5rem;
}
.feature-row:last-child { margin-bottom: 0; }
@media (min-width: 768px) {
  .feature-row { grid-template-columns: 1fr 1fr; gap: 3rem; }
  .feature-row--reverse .feature-row__media { order: 2; }
}
.feature-row__media {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.feature-row__media img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}
.feature-row__media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 50%, rgba(56, 189, 248, 0.08));
  pointer-events: none;
}
.feature-row h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
  font-weight: 800;
}
.feature-row p { margin: 0 0 1rem; color: var(--text-muted); }
.feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
}
.feature-list li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.5rem;
  color: var(--text-muted);
}
.feature-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
}

/* Values grid */
.values-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: 1fr;
}
@media (min-width: 600px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 900px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }
.value-card {
  padding: 1.5rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  text-align: center;
  transition: transform 0.35s var(--ease), border-color 0.35s;
}
.value-card:hover {
  transform: translateY(-4px);
  border-color: rgba(56, 189, 248, 0.3);
}
.value-card__icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  margin: 0 auto 1rem;
  border-radius: 14px;
  background: var(--accent-soft);
  font-size: 1.4rem;
}
.value-card h3 { margin: 0 0 0.35rem; font-size: 1rem; }
.value-card p { margin: 0; font-size: 0.88rem; color: var(--text-muted); }

/* CTA banner */
.cta-banner {
  position: relative;
  padding: 3.5rem 0;
  overflow: hidden;
}
.cta-banner__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0.25;
}
.cta-banner__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, var(--bg) 0%, rgba(6, 10, 16, 0.85) 100%);
}
.cta-banner .container {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start;
}
@media (min-width: 768px) {
  .cta-banner .container {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
.cta-banner h2 {
  margin: 0;
  font-size: clamp(1.5rem, 4vw, 2rem);
  font-weight: 800;
  max-width: 20ch;
}
.cta-banner p { margin: 0.5rem 0 0; color: var(--text-muted); max-width: 40ch; }

/* Product detail blocks */
.product-showcase {
  display: grid;
  gap: 2rem;
}
@media (min-width: 768px) {
  .product-showcase { grid-template-columns: 1.1fr 0.9fr; align-items: center; }
}
@media (min-width: 768px) {
  .product-showcase--reverse .product-showcase__img { order: 2; }
}
.product-showcase__img {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow);
}
.product-showcase__img img {
  width: 100%;
  aspect-ratio: 16/11;
  object-fit: cover;
}
.product-tag {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  margin-bottom: 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border-radius: 999px;
}

/* Contact page */
.contact-layout {
  display: grid;
  gap: 2rem;
}
@media (min-width: 900px) {
  .contact-layout { grid-template-columns: 1fr 1.1fr; align-items: start; }
}
.contact-panel {
  padding: 2rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
}
.contact-panel h2 {
  margin: 0 0 1rem;
  font-size: 1.5rem;
}
.contact-list { list-style: none; margin: 0; padding: 0; }
.contact-list li {
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}
.contact-list li:last-child { border-bottom: none; }
.contact-label {
  display: block;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-muted);
  margin-bottom: 0.25rem;
}
.contact-list a {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text);
  text-decoration: none;
}
.contact-list a:hover { color: var(--accent); }

.contact-form .field { margin-bottom: 1rem; }
.contact-form label {
  display: block;
  margin-bottom: 0.4rem;
  font-size: 0.85rem;
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  font: inherit;
  color: var(--text);
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-soft);
}
.contact-form textarea { min-height: 130px; resize: vertical; }
.checkbox {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
  margin-bottom: 1.25rem;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}
.checkbox input { width: 20px; height: 20px; margin-top: 2px; accent-color: var(--accent); }
.form-honey {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}
.form-note { margin: 0.75rem 0 0; font-size: 0.85rem; color: var(--text-muted); }
.form-note.is-success { color: #4ade80; }
.form-note.is-error { color: #f87171; }
.btn:disabled { opacity: 0.65; cursor: not-allowed; }

.map-wrap {
  margin-top: 2.5rem;
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid var(--border);
}
.map-wrap iframe { width: 100%; height: 260px; border: 0; }
@media (min-width: 600px) { .map-wrap iframe { height: 320px; } }
.map-link {
  display: block;
  padding: 1rem;
  text-align: center;
  font-weight: 600;
  background: var(--surface);
  color: var(--accent);
  text-decoration: none;
}

/* Gallery strip */
.gallery-strip {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (min-width: 768px) { .gallery-strip { grid-template-columns: repeat(4, 1fr); } }
.gallery-strip img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  transition: transform 0.4s var(--ease);
}
.gallery-strip img:hover { transform: scale(1.03); }

/* Footer */
.site-footer {
  position: relative;
  margin-top: 2rem;
  padding: 0 0 calc(1.5rem + var(--mobile-bar-h) + env(safe-area-inset-bottom, 0px));
  background: #080d14;
  border-top: 1px solid var(--border);
  overflow: hidden;
}
@media (min-width: 900px) {
  .site-footer { padding-bottom: 2rem; }
}
body.page-legal .site-footer { padding-bottom: 2rem; }

.footer-glow {
  position: absolute;
  top: -120px;
  left: 50%;
  transform: translateX(-50%);
  width:  min(600px, 90vw);
  height: 200px;
  background: radial-gradient(ellipse, rgba(56, 189, 248, 0.12), transparent 70%);
  pointer-events: none;
}

.footer-top {
  display: grid;
  gap: 2.5rem;
  padding: 3rem 0 2rem;
}
@media (min-width: 768px) {
  .footer-top { grid-template-columns: 1.35fr 1.65fr; align-items: start; }
}

.footer-tagline {
  margin: 1rem 0 1.25rem;
  color: var(--text-muted);
  font-size: 0.95rem;
  line-height: 1.7;
  max-width: 30rem;
}
.footer-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-badges span {
  padding: 0.35rem 0.75rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent);
  background: var(--accent-soft);
  border: 1px solid rgba(56, 189, 248, 0.2);
  border-radius: 999px;
}

.footer-links {
  display: grid;
  gap: 2rem;
  grid-template-columns: 1fr 1fr;
}
@media (min-width: 500px) {
  .footer-links { grid-template-columns: repeat(3, 1fr); }
}
.footer-col h4 {
  margin: 0 0 1rem;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--accent);
}
.footer-col a {
  display: block;
  margin-bottom: 0.55rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.92rem;
  transition: color 0.2s, transform 0.2s;
}
.footer-col a:hover {
  color: var(--text);
  text-decoration: none;
  transform: translateX(3px);
}

.footer-contact-bar {
  display: grid;
  gap: 0.75rem;
  padding: 1.25rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
@media (min-width: 600px) {
  .footer-contact-bar { grid-template-columns: 1fr 1fr; }
}
.footer-contact-item {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 0.85rem 1rem;
  background: var(--bg-card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.25s, background 0.25s;
}
.footer-contact-item:hover {
  text-decoration: none;
  border-color: rgba(56, 189, 248, 0.4);
  background: var(--surface);
}
.footer-contact-item svg {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  color: var(--accent);
}
.footer-contact-item strong {
  display: block;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}
.footer-contact-item span {
  font-size: 0.95rem;
  font-weight: 600;
}

.footer-bottom {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  padding-top: 1.5rem;
  font-size: 0.8rem;
  color: var(--text-muted);
}
@media (min-width: 600px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-legal-links a {
  color: var(--text-muted);
  text-decoration: none;
}
.footer-legal-links a:hover { color: var(--accent); text-decoration: none; }

/* Mobile bar */
.mobile-bar {
  position: fixed;
  inset: auto 0 0 0;
  z-index: 90;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  height: var(--mobile-bar-h);
  padding-bottom: env(safe-area-inset-bottom, 0px);
  background: rgba(12, 18, 28, 0.96);
  backdrop-filter: blur(16px);
  border-top: 1px solid var(--border);
}
@media (min-width: 900px) { .mobile-bar { display: none; } }
.mobile-bar-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 3px;
  font-size: 0.62rem;
  font-weight: 600;
  color: var(--text-muted);
  text-decoration: none;
}
.mobile-bar-item svg { width: 22px; height: 22px; }
.mobile-bar-item.is-active,
.mobile-bar-item:hover { color: var(--accent); text-decoration: none; }
.mobile-bar-item--cta { color: var(--accent); }

/* Legal */
.legal-page {
  padding: calc(var(--header-h) + 2.5rem) 0 3rem;
}
.legal-page h1 { font-size: clamp(1.5rem, 4vw, 2rem); margin: 0 0 1rem; }
.legal-page h2 { font-size: 1.15rem; margin: 2rem 0 0.75rem; }
.legal-page p, .legal-page li { color: var(--text-muted); }
.legal-back { display: inline-flex; margin-bottom: 1.5rem; font-weight: 700; text-decoration: none; }
