/* ──────────────────────────────────────────────────────────────
   Hilke's Ice Co. — site stylesheet
   Brand: royal blue / silver / white · Yellowtail + Inter
   ────────────────────────────────────────────────────────────── */
:root {
  --blue: #1B3FA8;
  --blue-deep: #142e7d;
  --blue-soft: #2c52c0;
  --silver: #B8BCC2;
  --silver-soft: #D7DBE0;
  --white: #FFFFFF;
  --ink: #1A1A1A;
  --ink-soft: #2c2c2c;
  --muted: #6B7280;
  --bg-band: #EDEFF2;
  --bg-band-2: #F4F6FA;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 8px;

  --t-fast: 180ms;
  --t-base: 280ms;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: 17px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
.script { font-family: 'Yellowtail', cursive; font-weight: 400; }
.wrap { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.eyebrow {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--blue);
}
.eyebrow.on-blue { color: rgba(255,255,255,0.75); }

/* ─── Buttons ─── */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  padding: 15px 26px;
  border-radius: var(--radius);
  font-weight: 600; font-size: 15px; letter-spacing: 0.01em;
  border: 2px solid transparent;
  transition: transform var(--t-fast) ease, background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
  white-space: nowrap;
}
.btn:active { transform: translateY(1px); }
.btn .arrow { display: inline-block; transition: transform var(--t-base); font-size: 18px; line-height: 1; }
.btn:hover .arrow { transform: translateX(4px); }
.btn-primary { background: var(--white); color: var(--blue); box-shadow: 0 1px 0 rgba(0,0,0,0.06); }
.btn-primary:hover { background: var(--blue-deep); color: var(--white); }
.btn-outline { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-outline:hover { background: var(--white); color: var(--blue); border-color: var(--white); }
.btn-primary-blue { background: var(--blue); color: var(--white); }
.btn-primary-blue:hover { background: var(--blue-deep); }
.btn-ghost { background: transparent; color: var(--blue); border-color: var(--blue); }
.btn-ghost:hover { background: var(--blue); color: var(--white); }

/* ─── Topbar ─── */
.topbar {
  background: var(--blue-deep);
  color: rgba(255,255,255,0.85);
  font-size: 13px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.topbar .wrap {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 32px; gap: 16px;
}
.topbar a { color: rgba(255,255,255,0.85); transition: color var(--t-fast); }
.topbar a:hover { color: var(--white); }
.topbar .meta { display: flex; gap: 22px; }
.topbar .meta span { display: inline-flex; align-items: center; gap: 6px; }
.topbar .meta svg { width: 13px; height: 13px; }

/* ─── Header ─── */
.header {
  position: sticky; top: 0; z-index: 50;
  background: var(--blue);
  color: var(--white);
  box-shadow: 0 2px 12px rgba(15,30,80,0.15);
}
.header .wrap { display: flex; align-items: center; gap: 32px; padding: 16px 32px; }
.header .logo { display: block; }
.header .logo img { height: 56px; width: auto; }
.header nav { flex: 1; }
.header nav ul { display: flex; gap: 28px; list-style: none; justify-content: center; }
.header nav a {
  font-size: 14px; font-weight: 600; letter-spacing: 0.04em;
  padding: 6px 0; position: relative;
  color: rgba(255,255,255,0.85);
  transition: color var(--t-fast);
}
.header nav a::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -2px;
  height: 2px; background: var(--white);
  transform: scaleX(0); transform-origin: left;
  transition: transform var(--t-base);
}
.header nav a:hover, .header nav a.active { color: var(--white); }
.header nav a.active::after, .header nav a:hover::after { transform: scaleX(1); }
.header .call {
  display: inline-flex; align-items: center; gap: 10px;
  font-weight: 700; padding: 11px 18px;
  border-radius: var(--radius);
  border: 2px solid rgba(255,255,255,0.4);
  transition: background var(--t-fast), border-color var(--t-fast);
  font-size: 15px;
}
.header .call:hover { background: var(--white); color: var(--blue); border-color: var(--white); }

/* ─── Hero (home) ─── */
.hero {
  position: relative;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
  padding: 96px 0 120px;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; left: 50%; top: 50%; transform: translate(-50%, -55%);
  width: 1100px; height: 1100px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.10) 0%, rgba(255,255,255,0) 60%);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(800px 400px at 20% 0%, rgba(255,255,255,0.05), transparent 60%),
    radial-gradient(600px 400px at 80% 100%, rgba(255,255,255,0.04), transparent 60%);
  pointer-events: none;
}
.hero .wrap { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: center; text-align: center; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 12px;
  font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.85);
  margin-bottom: 18px;
}
.hero-eyebrow .dot { width: 4px; height: 4px; border-radius: 50%; background: rgba(255,255,255,0.5); }

.wordmark-stage { position: relative; display: block; margin: 0 auto 28px; max-width: 560px; width: 100%; text-align: center; }
.wordmark-stage img {
  position: relative; z-index: 2;
  width: 100%; max-width: 560px; height: auto;
  filter: drop-shadow(0 12px 32px rgba(0,0,0,0.18));
}
.ice-fall {
  position: absolute; left: 50%; top: 78%;
  transform: translateX(-50%);
  width: 460px; height: 240px;
  pointer-events: none; z-index: 1; overflow: visible;
}
.ice {
  position: absolute; width: 22px; height: 22px; border-radius: 4px;
  background: linear-gradient(135deg, rgba(255,255,255,0.92) 0%, rgba(220,232,255,0.6) 60%, rgba(180,200,240,0.5) 100%);
  box-shadow:
    inset 1px 1px 0 rgba(255,255,255,0.9),
    inset -1px -2px 0 rgba(140,170,220,0.4),
    0 4px 12px rgba(0,0,0,0.15);
  opacity: 0; will-change: transform, opacity;
}
.ice::before {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 7px; height: 2px; border-radius: 1px;
  background: rgba(255,255,255,0.85);
  transform: rotate(-30deg);
}
.ice:nth-child(1) { left: 18%; width: 20px; height: 20px; animation: fall1 5.5s linear infinite; animation-delay: 0s; }
.ice:nth-child(2) { left: 32%; width: 18px; height: 18px; animation: fall2 6.2s linear infinite; animation-delay: -0.8s; }
.ice:nth-child(3) { left: 46%; width: 24px; height: 24px; animation: fall3 5.0s linear infinite; animation-delay: -2.1s; }
.ice:nth-child(4) { left: 58%; width: 19px; height: 19px; animation: fall1 5.8s linear infinite; animation-delay: -3.4s; }
.ice:nth-child(5) { left: 72%; width: 22px; height: 22px; animation: fall2 6.5s linear infinite; animation-delay: -1.6s; }
.ice:nth-child(6) { left: 26%; width: 16px; height: 16px; animation: fall3 4.5s linear infinite; animation-delay: -3.0s; }
.ice:nth-child(7) { left: 52%; width: 17px; height: 17px; animation: fall1 5.2s linear infinite; animation-delay: -4.4s; }
.ice:nth-child(8) { left: 66%; width: 21px; height: 21px; animation: fall2 6.0s linear infinite; animation-delay: -0.3s; }
@keyframes fall1 {
  0%   { transform: translateY(-10px) rotate(0deg);   opacity: 0; }
  10%  { opacity: 0.85; }
  80%  { opacity: 0.6; }
  100% { transform: translateY(260px) rotate(180deg); opacity: 0; }
}
@keyframes fall2 {
  0%   { transform: translateY(-10px) translateX(0)    rotate(0deg);    opacity: 0; }
  10%  { opacity: 0.9; }
  50%  { transform: translateY(140px) translateX(8px)  rotate(120deg);  opacity: 0.7; }
  100% { transform: translateY(280px) translateX(-6px) rotate(220deg);  opacity: 0; }
}
@keyframes fall3 {
  0%   { transform: translateY(-10px) translateX(0)    rotate(0deg);    opacity: 0; }
  10%  { opacity: 1; }
  50%  { transform: translateY(120px) translateX(-10px) rotate(-90deg); opacity: 0.7; }
  100% { transform: translateY(260px) translateX(4px)  rotate(-200deg); opacity: 0; }
}
@media (prefers-reduced-motion: reduce) {
  .ice { animation: none !important; opacity: 0.3 !important; }
}

.hero h1 {
  font-family: 'Yellowtail', cursive; font-weight: 400;
  font-size: clamp(40px, 5.6vw, 72px);
  line-height: 1.05;
  margin: 32px 0 18px;
  letter-spacing: -0.01em;
  text-wrap: balance;
}
.hero .lede {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 640px;
  margin: 0 auto 32px;
  color: rgba(255,255,255,0.9);
  text-wrap: pretty;
}
.hero .cta-row { display: inline-flex; flex-wrap: wrap; gap: 14px; justify-content: center; }
.hero .trust-row {
  margin-top: 56px;
  display: flex; flex-wrap: wrap; justify-content: center; gap: 36px;
  font-size: 13px; color: rgba(255,255,255,0.7);
  font-weight: 500; letter-spacing: 0.04em;
}
.hero .trust-row span { display: inline-flex; align-items: center; gap: 8px; }

/* ─── Inner-page hero ─── */
.inner-hero {
  position: relative;
  background: var(--blue);
  color: var(--white);
  overflow: hidden;
}
.inner-hero.with-photo { min-height: 540px; display: flex; align-items: center; }
.inner-hero.with-photo .bg { position: absolute; inset: 0; z-index: 1; }
.inner-hero.with-photo .bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.32; }
.inner-hero.with-photo .bg::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, var(--blue-deep) 0%, rgba(27,63,168,0.55) 60%, var(--blue-deep) 100%);
}
.inner-hero::before {
  content: '';
  position: absolute; left: -120px; top: -120px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.inner-hero .wrap { position: relative; z-index: 3; padding-top: 80px; padding-bottom: 80px; }
.breadcrumbs {
  display: flex; gap: 8px; align-items: center;
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
  color: rgba(255,255,255,0.7);
  margin-bottom: 18px;
}
.breadcrumbs a { color: rgba(255,255,255,0.7); transition: color var(--t-fast); }
.breadcrumbs a:hover { color: var(--white); }
.breadcrumbs .sep { opacity: 0.5; }
.breadcrumbs .current { color: var(--white); }
.inner-hero h1 {
  font-family: 'Yellowtail', cursive; font-weight: 400;
  font-size: clamp(40px, 5.4vw, 68px);
  line-height: 1.04;
  margin: 4px 0 18px;
  letter-spacing: -0.005em;
  text-wrap: balance;
  max-width: 880px;
}
.inner-hero .lede {
  font-size: clamp(17px, 1.4vw, 20px);
  max-width: 640px;
  margin-bottom: 32px;
  color: rgba(255,255,255,0.9);
  text-wrap: pretty;
}
.inner-hero .cta-row { display: inline-flex; flex-wrap: wrap; gap: 14px; }
.inner-hero .stats-row {
  display: flex; gap: 48px; margin-top: 48px;
  padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.18);
  flex-wrap: wrap;
}
.inner-hero .stats-row .stat .n {
  font-family: 'Yellowtail', cursive;
  font-size: 40px; line-height: 1;
  color: var(--white);
}
.inner-hero .stats-row .stat .l {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  font-weight: 600; margin-top: 4px;
}

/* ─── Section base ─── */
section.band { padding: 88px 0; }
section.band.light { background: var(--bg-band); }
section.band.lightest { background: var(--bg-band-2); }
section.band.dark { background: var(--blue); color: var(--white); }
.section-head {
  text-align: center;
  margin-bottom: 56px;
  max-width: 760px; margin-left: auto; margin-right: auto;
}
.section-head h2 {
  font-family: 'Yellowtail', cursive; font-weight: 400;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.05;
  margin: 12px 0 14px;
  color: var(--blue);
  text-wrap: balance;
}
.section-head p { font-size: 17px; color: var(--muted); text-wrap: pretty; }
section.band.dark .section-head h2 { color: var(--white); }
section.band.dark .section-head p { color: rgba(255,255,255,0.85); }

/* ─── Services grid (home) ─── */
.services { display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px; }
.svc-card {
  position: relative; background: var(--white);
  border: 1px solid #e5e7eb; border-radius: var(--radius-lg);
  overflow: hidden; display: flex; flex-direction: column;
  transition: transform var(--t-base), box-shadow var(--t-base), border-color var(--t-base);
}
.svc-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(15,30,80,0.12); border-color: var(--blue); }
.svc-card .photo { aspect-ratio: 4/3; overflow: hidden; background: var(--bg-band); position: relative; }
.svc-card .photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 520ms ease; }
.svc-card:hover .photo img { transform: scale(1.04); }
.svc-card .photo::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,63,168,0) 60%, rgba(27,63,168,0.25) 100%);
}
.svc-card .num {
  position: absolute; top: 12px; left: 14px; z-index: 2;
  font-size: 11px; font-weight: 700; letter-spacing: 0.16em;
  color: var(--white); background: rgba(0,0,0,0.35);
  backdrop-filter: blur(4px); padding: 4px 8px; border-radius: 3px;
}
.svc-card .body { padding: 22px 22px 26px; flex: 1; display: flex; flex-direction: column; }
.svc-card h3 { font-family: 'Inter', sans-serif; font-size: 20px; font-weight: 700; margin-bottom: 8px; letter-spacing: -0.005em; }
.svc-card p { color: var(--muted); font-size: 14.5px; line-height: 1.55; margin-bottom: 18px; flex: 1; }
.svc-card .more {
  font-size: 13px; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--blue); display: inline-flex; align-items: center; gap: 6px;
}
.svc-card .more .arrow { transition: transform var(--t-base); }
.svc-card:hover .more .arrow { transform: translateX(4px); }

/* ─── Founded band (home) ─── */
.founded { background: var(--bg-band); }
.founded .wrap { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.founded .copy h2 {
  font-family: 'Yellowtail', cursive; font-weight: 400;
  font-size: clamp(38px, 4vw, 56px);
  line-height: 1.05; margin: 14px 0 18px; color: var(--blue);
}
.founded .copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 16px; }
.founded .copy p:last-child { margin-bottom: 0; }
.founded .copy .sig { margin-top: 24px; font-family: 'Yellowtail', cursive; font-size: 28px; color: var(--blue); line-height: 1; }
.founded .copy .sig + .sig-meta {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--muted); font-weight: 600; margin-top: 6px;
}
.founded .stats { position: relative; }
.founded .stat-card {
  background: var(--blue); color: var(--white);
  border-radius: var(--radius-lg);
  padding: 48px 44px; position: relative; overflow: hidden;
}
.founded .stat-card::before {
  content: '1974';
  position: absolute; top: -28px; right: -10px;
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 280px; line-height: 1;
  color: rgba(255,255,255,0.06); letter-spacing: -0.03em;
  pointer-events: none;
}
.founded .stat-card .big { position: relative; z-index: 1; font-family: 'Yellowtail', cursive; font-size: 96px; line-height: 1; margin-bottom: 4px; }
.founded .stat-card .big-sub {
  position: relative; z-index: 1;
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,255,255,0.7); font-weight: 700; margin-bottom: 28px;
}
.founded .stat-card .pillars {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 18px 24px;
  border-top: 1px solid rgba(255,255,255,0.16);
  padding-top: 28px;
}
.founded .stat-card .pillar .n { font-family: 'Yellowtail', cursive; font-size: 40px; line-height: 1; color: var(--white); }
.founded .stat-card .pillar .l {
  font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.75); font-weight: 600; margin-top: 4px;
}

/* ─── Equipment band (home) ─── */
.equip { background: var(--white); }
.equip .wrap { display: grid; grid-template-columns: 1fr 1.1fr; gap: 64px; align-items: center; }
.equip .photo-frame { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/5; }
.equip .photo-frame img { width: 100%; height: 100%; object-fit: cover; }
.equip .photo-frame::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(27,63,168,0) 60%, rgba(27,63,168,0.3) 100%);
}
.equip .photo-frame .tag {
  position: absolute; bottom: 20px; left: 20px; color: var(--white);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; z-index: 2;
}
.equip .copy h2 {
  font-family: 'Yellowtail', cursive; font-weight: 400;
  font-size: clamp(38px, 4vw, 54px);
  line-height: 1.05; margin: 12px 0 16px; color: var(--blue);
}
.equip .copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 14px; }
.equip .brand-row {
  display: flex; gap: 32px; align-items: center;
  margin: 28px 0 8px;
  padding: 24px 0;
  border-top: 1px solid #e5e7eb;
  border-bottom: 1px solid #e5e7eb;
}
.equip .brand-row .label { font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; font-weight: 700; color: var(--muted); }
.equip .brand-row .brands { display: flex; gap: 28px; flex: 1; }
.equip .brand-row .brand {
  font-family: 'Inter', sans-serif; font-weight: 800;
  font-size: 22px; letter-spacing: -0.01em;
  color: var(--blue); position: relative; padding-left: 18px;
}
.equip .brand-row .brand::before {
  content: '*'; position: absolute; left: 0; top: -2px; color: var(--blue); font-size: 18px;
}
.equip .copy .cta { margin-top: 24px; display: flex; gap: 14px; flex-wrap: wrap; }

/* ─── Area band (home) ─── */
.area {
  background: linear-gradient(180deg, var(--blue) 0%, var(--blue-deep) 100%);
  color: var(--white); position: relative; overflow: hidden;
}
.area::before {
  content: ''; position: absolute;
  top: -200px; right: -200px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.06) 0%, rgba(255,255,255,0) 70%);
  pointer-events: none;
}
.area .wrap {
  display: grid; grid-template-columns: 0.95fr 1.05fr;
  gap: 56px; align-items: center;
  position: relative; z-index: 2;
}
.area .copy h2 { color: var(--white); }
.area .copy .eyebrow.on-blue { display: block; margin-bottom: 4px; }
.area .copy p { font-size: 17px; color: rgba(255,255,255,0.88); line-height: 1.7; margin-bottom: 28px; }
.area .city-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; margin-top: 20px; }
.area .city {
  display: flex; align-items: center; gap: 12px;
  padding: 14px 16px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: var(--radius);
}
.area .city .pin {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--white);
  box-shadow: 0 0 0 4px rgba(255,255,255,0.18);
}
.area .city b { font-weight: 600; font-size: 15px; }
.area .city .st { color: rgba(255,255,255,0.6); font-size: 13px; margin-left: 6px; }
.area-map {
  position: relative; aspect-ratio: 5/4;
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 24px; overflow: hidden;
}
.area-map svg { width: 100%; height: 100%; display: block; }
.area-map .legend {
  position: absolute; bottom: 14px; left: 18px;
  font-size: 11px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; color: rgba(255,255,255,0.7);
}

/* ─── Final CTA ─── */
.final-cta {
  background: var(--white); text-align: center;
  padding: 96px 0 110px;
  border-top: 1px solid #eef0f3;
}
.final-cta .eyebrow { display: block; margin-bottom: 14px; }
.final-cta h2 {
  font-family: 'Yellowtail', cursive; font-weight: 400;
  font-size: clamp(42px, 5vw, 64px);
  line-height: 1.05; margin: 0 auto 18px;
  max-width: 880px; color: var(--blue);
  text-wrap: balance;
}
.final-cta p { font-size: 18px; color: var(--ink-soft); max-width: 580px; margin: 0 auto 32px; }
.final-cta .cta-row { display: inline-flex; gap: 14px; flex-wrap: wrap; justify-content: center; }

/* ─── Two-column copy + visual ─── */
.split { display: grid; grid-template-columns: 1.05fr 1fr; gap: 64px; align-items: center; }
.split.reverse { grid-template-columns: 1fr 1.05fr; }
.split.reverse .copy { order: 2; }
.split.reverse .visual { order: 1; }
.split .copy h2 {
  font-family: 'Yellowtail', cursive; font-weight: 400;
  font-size: clamp(36px, 3.6vw, 50px);
  line-height: 1.05; color: var(--blue);
  margin: 12px 0 16px;
}
.split .copy p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; margin-bottom: 14px; }
.split .copy p:last-child { margin-bottom: 0; }
.split .copy .cta-row { margin-top: 24px; display: flex; flex-wrap: wrap; gap: 14px; }
.split .visual { position: relative; border-radius: var(--radius-lg); overflow: hidden; aspect-ratio: 4/3; }
.split .visual img { width: 100%; height: 100%; object-fit: cover; }
.split .visual.tall { aspect-ratio: 4/5; }
.split .visual .caption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 14px 18px;
  background: linear-gradient(180deg, transparent 0%, rgba(20,46,125,0.85) 100%);
  color: var(--white);
  font-size: 12px; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700;
}

/* ─── Feature bullet list ─── */
.features { display: grid; grid-template-columns: repeat(2, 1fr); gap: 18px 28px; margin: 24px 0 0; list-style: none; }
.features li {
  position: relative;
  padding: 18px 18px 18px 56px;
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius);
  font-size: 15.5px; line-height: 1.55;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.features li:hover { border-color: var(--blue); transform: translateY(-2px); }
.features li::before {
  content: ''; position: absolute;
  left: 18px; top: 22px;
  width: 24px; height: 24px;
  border-radius: 50%; background: var(--blue);
}
.features li::after {
  content: ''; position: absolute;
  left: 24px; top: 30px;
  width: 12px; height: 6px;
  border-left: 2px solid var(--white);
  border-bottom: 2px solid var(--white);
  transform: rotate(-45deg);
}
.features li b { display: block; margin-bottom: 2px; font-size: 16px; color: var(--ink); }
.features li span { color: var(--muted); font-size: 14px; }

/* ─── How-it-works steps ─── */
.steps {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 0; margin-top: 48px;
  position: relative;
}
.steps::before {
  content: '';
  position: absolute; top: 38px; left: 12%; right: 12%; height: 2px;
  background: repeating-linear-gradient(90deg, var(--silver) 0 6px, transparent 6px 12px);
  z-index: 0;
}
.step { position: relative; z-index: 1; text-align: center; padding: 0 20px; }
.step .num {
  width: 76px; height: 76px; margin: 0 auto 20px;
  background: var(--blue); color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Yellowtail', cursive;
  font-size: 44px; line-height: 1;
  box-shadow: 0 0 0 8px var(--white), 0 0 0 9px var(--silver-soft);
}
.step h3 { font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.005em; }
.step p { color: var(--muted); font-size: 14.5px; line-height: 1.5; }
.dark .step h3 { color: var(--white); }
.dark .step p { color: rgba(255,255,255,0.8); }
.dark .step .num { box-shadow: 0 0 0 8px var(--blue), 0 0 0 9px rgba(255,255,255,0.3); background: var(--white); color: var(--blue); }

/* ─── Pricing / option cards (3-up) ─── */
.options { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 8px; }
.option-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 32px 28px 28px;
  display: flex; flex-direction: column;
  transition: border-color var(--t-fast), transform var(--t-fast), box-shadow var(--t-fast);
}
.option-card:hover { border-color: var(--blue); transform: translateY(-3px); box-shadow: 0 12px 32px rgba(15,30,80,0.10); }
.option-card.featured {
  background: var(--blue); color: var(--white); border-color: var(--blue); position: relative;
}
.option-card.featured::before {
  content: 'Most flexible'; position: absolute; top: -12px; right: 20px;
  background: var(--white); color: var(--blue);
  font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  padding: 5px 10px; border-radius: 3px;
}
.option-card .o-name { font-family: 'Yellowtail', cursive; font-size: 40px; line-height: 1; color: var(--blue); margin-bottom: 4px; }
.option-card.featured .o-name { color: var(--white); }
.option-card .o-sub {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); margin-bottom: 20px;
}
.option-card.featured .o-sub { color: rgba(255,255,255,0.75); }
.option-card .o-body { font-size: 15px; color: var(--ink-soft); line-height: 1.6; margin-bottom: 16px; }
.option-card.featured .o-body { color: rgba(255,255,255,0.9); }
.option-card .o-list { list-style: none; margin: 0 0 22px; padding-top: 16px; border-top: 1px solid #eef0f3; flex: 1; }
.option-card.featured .o-list { border-top-color: rgba(255,255,255,0.18); }
.option-card .o-list li { position: relative; padding-left: 22px; padding-block: 6px; font-size: 14px; }
.option-card .o-list li::before {
  content: ''; position: absolute; left: 0; top: 12px;
  width: 11px; height: 5px;
  border-left: 2px solid var(--blue);
  border-bottom: 2px solid var(--blue);
  transform: rotate(-45deg);
}
.option-card.featured .o-list li::before { border-color: var(--white); }
.option-card .o-foot {
  font-size: 13px; color: var(--muted);
  border-top: 1px solid #eef0f3; padding-top: 14px;
  font-style: italic;
}
.option-card.featured .o-foot { color: rgba(255,255,255,0.75); border-top-color: rgba(255,255,255,0.18); }

/* ─── Photo gallery ─── */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery .item {
  aspect-ratio: 4/3; overflow: hidden;
  border-radius: var(--radius);
  background: var(--bg-band);
  cursor: zoom-in; position: relative;
}
.gallery .item img { width: 100%; height: 100%; object-fit: cover; transition: transform 500ms ease; }
.gallery .item:hover img { transform: scale(1.06); }
.gallery .item.tall { grid-row: span 2; aspect-ratio: 4/6; }
.gallery .item.wide { grid-column: span 2; aspect-ratio: 8/3; }
.lightbox {
  position: fixed; inset: 0; z-index: 200;
  background: rgba(10, 18, 50, 0.92);
  display: none; align-items: center; justify-content: center;
  padding: 32px;
  opacity: 0;
  transition: opacity var(--t-base);
}
.lightbox.open { display: flex; opacity: 1; }
.lightbox img { max-width: 92vw; max-height: 86vh; border-radius: 4px; box-shadow: 0 24px 64px rgba(0,0,0,0.4); }
.lightbox .close {
  position: absolute; top: 24px; right: 28px;
  width: 44px; height: 44px;
  background: rgba(255,255,255,0.15);
  border: none; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 22px; cursor: pointer;
  transition: background var(--t-fast);
}
.lightbox .close:hover { background: rgba(255,255,255,0.3); }
.lightbox .nav {
  position: absolute; top: 50%; transform: translateY(-50%);
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.12);
  border: none; color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; cursor: pointer;
  transition: background var(--t-fast);
}
.lightbox .nav:hover { background: rgba(255,255,255,0.28); }
.lightbox .nav.prev { left: 24px; }
.lightbox .nav.next { right: 24px; }
.lightbox .counter {
  position: absolute; bottom: 24px; left: 50%; transform: translateX(-50%);
  color: rgba(255,255,255,0.7);
  font-size: 13px; letter-spacing: 0.16em; text-transform: uppercase;
}

/* ─── Use-case cards ─── */
.usecase-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.usecase {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 24px 22px 26px;
  text-align: left;
  transition: transform var(--t-fast), border-color var(--t-fast);
}
.usecase:hover { transform: translateY(-3px); border-color: var(--blue); }
.usecase .ic {
  width: 44px; height: 44px;
  border-radius: 50%; background: var(--blue); color: var(--white);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 16px;
  font-family: 'Yellowtail', cursive; font-size: 28px; line-height: 1;
}
.usecase h3 { font-size: 16px; font-weight: 700; margin-bottom: 6px; }
.usecase p { font-size: 14px; color: var(--muted); line-height: 1.5; }

/* ─── Brand cards ─── */
.brand-cards { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; }
.brand-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  transition: border-color var(--t-fast), transform var(--t-fast);
}
.brand-card:hover { border-color: var(--blue); transform: translateY(-3px); }
.brand-card .b-name {
  font-family: 'Inter', sans-serif;
  font-weight: 800; font-size: 36px;
  letter-spacing: -0.01em;
  color: var(--blue); margin-bottom: 4px;
}
.brand-card .b-sub {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--muted); margin-bottom: 18px;
}
.brand-card p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; margin-bottom: 16px; }
.brand-card .b-tags { display: flex; flex-wrap: wrap; gap: 8px; }
.brand-card .b-tag {
  font-size: 12px; font-weight: 600;
  padding: 4px 10px;
  background: var(--bg-band);
  color: var(--ink-soft);
  border-radius: 999px;
}

/* ─── History timeline ─── */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding: 0 0 0 56px; }
.timeline::before {
  content: ''; position: absolute;
  left: 17px; top: 16px; bottom: 16px;
  width: 2px; background: var(--silver);
}
.tl-item { position: relative; padding-bottom: 36px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ''; position: absolute;
  left: -47px; top: 8px;
  width: 14px; height: 14px;
  border-radius: 50%;
  background: var(--blue);
  box-shadow: 0 0 0 4px var(--bg-band);
}
.tl-item .yr { font-family: 'Yellowtail', cursive; font-size: 32px; line-height: 1; color: var(--blue); margin-bottom: 4px; }
.tl-item h4 { font-size: 18px; font-weight: 700; margin-bottom: 6px; letter-spacing: -0.005em; }
.tl-item p { color: var(--ink-soft); font-size: 15.5px; line-height: 1.6; }

/* ─── Logo refresh callout ─── */
.refresh-callout {
  background: var(--blue); color: var(--white);
  border-radius: var(--radius-lg);
  padding: 56px 56px;
  display: grid; grid-template-columns: auto 1fr; gap: 56px;
  align-items: center;
  position: relative; overflow: hidden;
}
.refresh-callout::before {
  content: '';
  position: absolute; right: -150px; top: -150px;
  width: 500px; height: 500px; border-radius: 50%;
  background: radial-gradient(circle, rgba(255,255,255,0.08), rgba(255,255,255,0));
}
.refresh-callout .mark { position: relative; z-index: 2; width: 280px; }
.refresh-callout .mark img { width: 100%; }
.refresh-callout .text { position: relative; z-index: 2; }
.refresh-callout h3 {
  font-family: 'Yellowtail', cursive; font-weight: 400;
  font-size: 44px; line-height: 1.1;
  color: var(--white); margin-bottom: 12px;
}
.refresh-callout p { color: rgba(255,255,255,0.88); font-size: 16px; line-height: 1.65; }

/* ─── Contact form ─── */
.contact-grid { display: grid; grid-template-columns: 1.4fr 1fr; gap: 48px; align-items: flex-start; }
.form-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.form-card h3 {
  font-family: 'Yellowtail', cursive; font-weight: 400;
  font-size: 36px; color: var(--blue); margin-bottom: 6px; line-height: 1;
}
.form-card .desc { color: var(--muted); font-size: 14.5px; margin-bottom: 28px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-row.full { grid-template-columns: 1fr; }
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field label {
  font-size: 12px; font-weight: 700; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink);
}
.form-field label .req { color: var(--blue); margin-left: 2px; }
.form-field input, .form-field select, .form-field textarea {
  font: inherit; font-size: 15px;
  padding: 12px 14px;
  border: 1px solid var(--silver-soft);
  border-radius: var(--radius);
  background: var(--white); color: var(--ink);
  transition: border-color var(--t-fast), box-shadow var(--t-fast);
}
.form-field textarea { min-height: 130px; resize: vertical; line-height: 1.5; }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none; border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(27,63,168,0.15);
}
.form-card .submit-row { margin-top: 18px; display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.form-card .submit-row .helper { font-size: 13px; color: var(--muted); }
.form-card .form-status {
  margin-top: 14px; font-size: 14px;
  padding: 10px 14px; border-radius: var(--radius); display: none;
}
.form-card .form-status.show { display: block; }
.form-card .form-status.ok { background: #e6f6ee; color: #145a36; }

.contact-info { display: flex; flex-direction: column; gap: 18px; }
.contact-card {
  background: var(--white);
  border: 1px solid #e5e7eb;
  border-radius: var(--radius-lg);
  padding: 24px 26px;
}
.contact-card h4 {
  font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase;
  font-weight: 700; color: var(--blue); margin-bottom: 12px;
}
.contact-card .big-line {
  font-family: 'Yellowtail', cursive;
  font-size: 36px; color: var(--blue); line-height: 1; margin-bottom: 4px;
}
.contact-card .big-line a { color: var(--blue); }
.contact-card p { color: var(--ink-soft); font-size: 15px; line-height: 1.55; }
.contact-card.dark { background: var(--blue); color: var(--white); border-color: var(--blue); }
.contact-card.dark h4 { color: rgba(255,255,255,0.75); }
.contact-card.dark .big-line, .contact-card.dark .big-line a { color: var(--white); }
.contact-card.dark p { color: rgba(255,255,255,0.9); }

.map-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  border: 1px solid #e5e7eb;
  background: var(--bg-band);
  aspect-ratio: 16/9;
}
.map-frame iframe { width: 100%; height: 100%; border: 0; display: block; }

/* ─── Footer ─── */
footer.site-footer {
  background: var(--blue);
  color: rgba(255,255,255,0.85);
  padding: 64px 0 32px;
}
footer.site-footer .wrap { display: block; }
.foot-top {
  display: grid; grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 48px; padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.16);
}
.foot-top .brand img { height: 70px; margin-bottom: 18px; }
.foot-top .brand p { font-size: 14px; color: rgba(255,255,255,0.75); max-width: 280px; line-height: 1.6; }
.foot-top .brand .social { display: flex; gap: 10px; margin-top: 20px; }
.foot-top .brand .social a {
  width: 38px; height: 38px;
  display: inline-flex; align-items: center; justify-content: center;
  border-radius: 50%;
  background: rgba(255,255,255,0.1);
  transition: background var(--t-fast);
}
.foot-top .brand .social a:hover { background: rgba(255,255,255,0.25); }
.foot-top .brand .social svg { width: 16px; height: 16px; fill: var(--white); }
.foot-col h4 {
  font-size: 12px; letter-spacing: 0.16em; text-transform: uppercase;
  font-weight: 700; color: var(--white); margin-bottom: 16px;
}
.foot-col ul { list-style: none; }
.foot-col li + li { margin-top: 9px; }
.foot-col a { font-size: 14px; color: rgba(255,255,255,0.78); transition: color var(--t-fast); }
.foot-col a:hover { color: var(--white); }
.foot-col p { font-size: 14px; line-height: 1.6; color: rgba(255,255,255,0.78); }
.foot-col .big-phone, .foot-col .big-phone a { font-family: 'Yellowtail', cursive; font-size: 30px; color: var(--white); margin-bottom: 6px; line-height: 1; letter-spacing: -0.005em; }
.foot-bottom {
  padding-top: 22px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 13px; color: rgba(255,255,255,0.6);
}
.foot-bottom a { color: rgba(255,255,255,0.85); }
.foot-bottom a:hover { color: var(--white); text-decoration: underline; }
.foot-bottom .legal { display: inline; }

.skip { position: absolute; top: -100px; left: 12px; background: var(--white); color: var(--blue); padding: 8px 14px; z-index: 100; border-radius: 4px; }
.skip:focus { top: 12px; }

@media (max-width: 980px) {
  .header nav { display: none; }
  .header .call { font-size: 14px; padding: 9px 14px; }
  .hero { padding: 72px 0 96px; }
  .wordmark-stage img { max-width: 440px; }
  .services { grid-template-columns: repeat(2, 1fr); }
  .founded .wrap, .equip .wrap, .area .wrap, .split { grid-template-columns: 1fr; gap: 40px; }
  .split.reverse .copy { order: 1; }
  .split.reverse .visual { order: 2; }
  .equip .photo-frame { aspect-ratio: 4/3; max-height: 420px; }
  .foot-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .foot-bottom { flex-direction: column; gap: 12px; text-align: center; }
  .steps { grid-template-columns: 1fr; gap: 32px; }
  .steps::before { display: none; }
  .options, .brand-cards, .contact-grid { grid-template-columns: 1fr; gap: 18px; }
  .usecase-grid, .gallery { grid-template-columns: repeat(2, 1fr); }
  .refresh-callout { grid-template-columns: 1fr; padding: 40px 32px; gap: 32px; text-align: center; }
  .refresh-callout .mark { margin: 0 auto; max-width: 240px; }
  .timeline { padding-left: 36px; }
  .timeline::before { left: 8px; }
  .tl-item::before { left: -37px; }
}
@media (max-width: 560px) {
  .wrap { padding: 0 20px; }
  .topbar .meta { gap: 14px; flex-wrap: wrap; }
  .topbar .meta span:nth-child(3) { display: none; }
  .header .logo img { height: 44px; }
  .hero { padding: 56px 0 72px; }
  .wordmark-stage img { max-width: 80vw; }
  .ice-fall { width: 90vw; }
  section.band { padding: 64px 0; }
  .services, .features, .gallery, .usecase-grid { grid-template-columns: 1fr; }
  .area .city-grid { grid-template-columns: 1fr; }
  .foot-top { grid-template-columns: 1fr; gap: 28px; padding-bottom: 32px; }
  .founded .stat-card { padding: 32px 28px; }
  .founded .stat-card::before { font-size: 200px; }
  .founded .stat-card .big { font-size: 72px; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 28px 22px; }
}
