:root {
  --bg: #f5f9ff;
  --ink: #102038;
  --muted: #607089;
  --line: #d5e4f8;
  --card: #fff;
  --blue: #2f7cf6;
  --blue-2: #1d5fd0;
  --sky: #e7f0ff;
  --mint: #dff7f1;
  --radius: 24px;
  --font: "Plus Jakarta Sans", system-ui, sans-serif;
  --display: "Fraunces", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink);
  background:
    radial-gradient(circle at 85% 8%, #cfe0ff 0%, transparent 42%),
    linear-gradient(180deg, #eaf2ff, var(--bg) 28%);
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(1120px, calc(100% - 32px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.ico { width: 42px; height: 42px; border-radius: 14px; display: grid; place-items: center; background: var(--sky); color: var(--blue-2); }
.ico svg { width: 22px; height: 22px; }

.site-header {
  position: sticky; top: 0; z-index: 40;
  backdrop-filter: blur(14px);
  background: rgba(245, 249, 255, 0.86);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, background .2s ease;
}
.site-header.is-scrolled { border-color: var(--line); background: rgba(255,255,255,.92); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 72px; gap: 16px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; letter-spacing: -0.02em; }
.brand-mark {
  width: 34px; height: 34px; border-radius: 12px;
  background: linear-gradient(135deg, var(--blue), #6eb6ff);
  box-shadow: 0 8px 20px rgba(47,124,246,.35);
}
.nav { display: flex; align-items: center; gap: 18px; }
.nav a { color: var(--muted); font-weight: 600; font-size: 0.95rem; }
.nav-cta {
  background: var(--blue); color: #fff !important; padding: 10px 16px; border-radius: 999px;
  box-shadow: 0 10px 24px rgba(47,124,246,.28);
}
.nav-toggle { display: none; background: none; border: 0; width: 42px; height: 42px; }
.nav-toggle span { display: block; height: 2px; margin: 6px 8px; background: var(--ink); }

.hero { padding: 36px 0 20px; }
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 36px; align-items: center; }
.eyebrow { text-transform: uppercase; letter-spacing: .12em; font-size: .72rem; font-weight: 700; color: var(--blue-2); margin: 0 0 10px; }
.hero h1 {
  font-family: var(--display); font-size: clamp(2.6rem, 6vw, 4.4rem);
  line-height: 1.02; letter-spacing: -0.03em; margin: 0;
}
.tag { font-size: 1.25rem; font-weight: 700; margin: 12px 0; color: var(--blue-2); }
.lede { color: var(--muted); line-height: 1.6; max-width: 46ch; }
.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.btn { display: inline-flex; align-items: center; justify-content: center; padding: 14px 18px; border-radius: 999px; font-weight: 700; border: 1px solid transparent; }
.btn-primary { background: var(--blue); color: #fff; box-shadow: 0 14px 30px rgba(47,124,246,.3); }
.btn-ghost { border-color: var(--line); background: #fff; }
.hero-media {
  position: relative;
  width: min(100%, 380px);
  justify-self: end;
  align-self: center;
  aspect-ratio: 3 / 4;
  height: auto;
  max-height: 500px;
  border-radius: 32px;
  overflow: hidden;
  box-shadow: 0 30px 60px rgba(20, 60, 140, .18);
  background: #e8f1ff;
}
.hero-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  max-width: none;
  object-fit: cover;
  object-position: center 22%;
  display: block;
}
.float-card {
  position: absolute; left: 18px; bottom: 18px;
  background: rgba(255,255,255,.94); backdrop-filter: blur(8px);
  border-radius: 18px; padding: 14px 16px; display: grid; gap: 2px;
  box-shadow: 0 12px 28px rgba(16,32,56,.12);
}

.section { padding: 64px 0; }
.section-head { margin-bottom: 28px; max-width: 50ch; }
.section-head h2 { font-family: var(--display); font-size: clamp(1.8rem, 3vw, 2.5rem); margin: 0 0 8px; letter-spacing: -0.02em; }
.section-head p { margin: 0; color: var(--muted); }
.service-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.service-card {
  background: var(--card); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 20px; display: grid; gap: 10px; min-height: 220px;
  box-shadow: 0 12px 28px rgba(40,90,180,.06);
}
.service-card h3 { margin: 0; font-size: 1.1rem; }
.service-card p { margin: 0; color: var(--muted); font-size: .92rem; line-height: 1.45; }
.price { margin-top: auto; font-weight: 800; color: var(--blue-2); }

.section-prices { background: linear-gradient(180deg, transparent, #eaf2ff 20%, #eaf2ff); }
.price-table {
  background: #fff; border: 1px solid var(--line); border-radius: 28px; overflow: hidden;
  box-shadow: 0 18px 40px rgba(40,90,180,.08);
}
.price-row {
  display: grid; grid-template-columns: 140px 1fr auto; gap: 12px; align-items: center;
  padding: 14px 20px; border-bottom: 1px solid var(--line);
}
.price-row:last-child { border-bottom: 0; }
.price-row .g { color: var(--blue-2); font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; }
.price-row .p { font-weight: 800; white-space: nowrap; }
.fine { color: var(--muted); font-size: .88rem; margin-top: 14px; }

.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 14px; }
.gallery figure { margin: 0; border-radius: 22px; overflow: hidden; background: #dfeafc; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; transition: transform .35s ease; }
.gallery figure:hover img { transform: scale(1.04); }

.site-footer { background: #102038; color: #d7e4f8; padding: 48px 0 28px; margin-top: 20px; }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr; gap: 24px; }
.footer-label { display: block; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; opacity: .7; margin-bottom: 10px; }
.site-footer a { display: block; margin: 6px 0; color: #fff; font-weight: 600; }
.site-footer .back { margin-top: 16px; opacity: .8; }

html, body { overflow-x: clip; }
.nav-toggle { cursor: pointer; }

@media (max-width: 960px) {
  .hero-grid, .service-grid, .gallery, .footer-grid { grid-template-columns: 1fr 1fr; }
  .gallery.mosaic { grid-template-columns: 1fr 1fr; }
  .gallery.mosaic .shot:first-child { grid-column: span 1; grid-row: span 1; }
  .gallery.mosaic .shot:first-child img { min-height: 0; aspect-ratio: 1; }
}
@media (max-width: 720px) {
  .wrap { width: min(1120px, calc(100% - 24px)); }
  .header-inner { min-height: 64px; gap: 10px; }
  .brand-text { font-size: .95rem; }
  .nav-toggle {
    display: inline-grid; place-items: center;
    width: 44px; height: 44px; border-radius: 12px; flex: 0 0 auto;
  }
  .nav {
    position: fixed; inset: 64px 12px auto; z-index: 60;
    display: none; flex-direction: column; align-items: stretch;
    background: #fff; border: 1px solid var(--line); border-radius: 18px;
    padding: 14px; gap: 4px; max-height: min(70vh, 520px); overflow: auto;
    box-shadow: 0 20px 40px rgba(0,0,0,.14);
  }
  .nav a { padding: 12px 10px; border-radius: 12px; }
  .nav a:active { background: var(--sky); }
  .nav-cta { text-align: center; margin-top: 6px; }
  .nav.is-open { display: flex; }
  .hero { padding: 24px 0 12px; }
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 22px;
  }
  .hero-media {
    justify-self: center;
    width: min(100%, 300px);
    max-height: 400px;
  }
  .hero-cta { flex-direction: column; }
  .hero-cta .btn { width: 100%; }
  .float-card { left: 12px; right: 12px; bottom: 12px; }
  .section { padding: 44px 0; }
  .service-grid, .gallery, .footer-grid, .price-row { grid-template-columns: 1fr; }
  .price-row { flex-wrap: wrap; gap: 6px 12px; }
  .price-row .g { display: none; }
  .gallery.strip { grid-auto-columns: minmax(160px, 72vw); }
  .shot-overlay { opacity: 1; transform: none; }
  .site-footer { padding: 36px 0 24px; }
}

/* Instagram gallery shots */
.gallery .shot {
  position: relative;
  display: block;
  margin: 0;
  border-radius: 22px;
  overflow: hidden;
  background: #dfeafc;
  text-decoration: none;
  color: inherit;
  isolation: isolate;
}
.gallery .shot img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
  transition: transform .45s ease;
}
.shot-overlay {
  position: absolute;
  inset: auto 0 0 0;
  padding: 18px 14px 14px;
  display: grid;
  gap: 4px;
  background: linear-gradient(180deg, transparent, rgba(12, 24, 48, .78));
  color: #fff;
  transform: translateY(8px);
  opacity: 0;
  transition: opacity .25s ease, transform .25s ease;
}
.shot-title { font-weight: 700; font-size: .92rem; line-height: 1.25; }
.shot-link { font-size: .78rem; opacity: .9; letter-spacing: .02em; }
.gallery .shot:hover img,
.gallery .shot:focus-visible img { transform: scale(1.05); }
.gallery .shot:hover .shot-overlay,
.gallery .shot:focus-visible .shot-overlay { opacity: 1; transform: translateY(0); }
.gallery-more { margin-top: 16px; }
.gallery-more a { font-weight: 700; color: var(--blue-2, var(--teal-2, #1d5fd0)); }
.gallery.strip {
  display: grid;
  grid-auto-flow: column;
  grid-auto-columns: minmax(200px, 22vw);
  gap: 12px;
  overflow-x: auto;
  padding-bottom: 8px;
}
.gallery.mosaic { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.gallery.mosaic .shot:first-child { grid-column: span 2; grid-row: span 2; }
.gallery.mosaic .shot:first-child img { aspect-ratio: auto; height: 100%; min-height: 280px; }
