:root {
  --bg: #f7fafc;
  --ink: #122033;
  --muted: #617289;
  --line: #d9e4ef;
  --card: #fff;
  --blue: #2470e8;
  --blue-2: #1557c0;
  --sky: #edf4ff;
  --font: "Manrope", system-ui, sans-serif;
  --display: "Literata", Georgia, serif;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0; font-family: var(--font); color: var(--ink);
  background:
    linear-gradient(90deg, transparent 79px, rgba(36,112,232,.06) 80px),
    linear-gradient(180deg, #eef5ff, var(--bg));
  background-size: 80px 100%, auto;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
.wrap { width: min(980px, calc(100% - 32px)); margin-inline: auto; }
.sr-only { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
.ico { width: 40px; height: 40px; border-radius: 12px; display: grid; place-items: center; background: var(--sky); color: var(--blue-2); flex: 0 0 auto; }
.ico svg { width: 20px; height: 20px; }

.site-header { position: sticky; top: 0; z-index: 40; background: rgba(247,250,252,.9); backdrop-filter: blur(12px); border-bottom: 1px solid var(--line); }
.header-inner { display: flex; align-items: center; justify-content: space-between; min-height: 68px; }
.brand { display: flex; align-items: center; gap: 10px; font-weight: 800; }
.brand-mark { width: 30px; height: 30px; border-radius: 10px; background: var(--blue); }
.nav { display: flex; gap: 16px; align-items: center; }
.nav a { color: var(--muted); font-weight: 600; }
.nav-cta { background: var(--blue); color: #fff !important; padding: 9px 14px; border-radius: 999px; }
.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: 48px 0 12px; }
.eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: .72rem; font-weight: 800; color: var(--blue-2); }
.hero h1 { font-family: var(--display); font-size: clamp(2.4rem, 6vw, 3.8rem); line-height: 1.05; margin: 8px 0 12px; letter-spacing: -0.02em; }
.lede { color: var(--muted); max-width: 52ch; line-height: 1.55; }
.chips { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.chip {
  border: 1px solid var(--line); background: #fff; border-radius: 999px;
  padding: 8px 14px; font-weight: 700; color: var(--muted); cursor: pointer;
}
.chip.is-on { background: var(--blue); color: #fff; border-color: var(--blue); }

.section { padding: 40px 0 56px; }
.board { display: grid; gap: 10px; }
.board-row {
  display: flex; justify-content: space-between; gap: 18px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 16px 18px;
  transition: opacity .2s ease, transform .2s ease;
}
.board-row.is-hidden { display: none; }
.board-row .g { display: block; font-size: .72rem; text-transform: uppercase; letter-spacing: .08em; color: var(--blue-2); font-weight: 800; margin-bottom: 4px; }
.board-row h3 { margin: 0; font-size: 1.05rem; }
.board-row .p { font-size: 1.1rem; white-space: nowrap; }
.fine { color: var(--muted); font-size: .88rem; }

.section-head h2 { font-family: var(--display); font-size: 2rem; margin: 0 0 8px; }
.section-head p { margin: 0; color: var(--muted); }
.service-list { display: grid; gap: 10px; margin-top: 22px; }
.service-line {
  display: grid; grid-template-columns: auto 1fr auto; gap: 14px; align-items: center;
  background: #fff; border: 1px solid var(--line); border-radius: 18px; padding: 14px 16px;
}
.service-line h3 { margin: 0; font-size: 1rem; }
.service-line p { margin: 2px 0 0; color: var(--muted); font-size: .9rem; }
.price { font-weight: 800; color: var(--blue-2); }

.gallery.strip { display: grid; grid-auto-flow: column; grid-auto-columns: minmax(180px, 22vw); gap: 12px; overflow-x: auto; padding-bottom: 8px; }
.gallery figure { margin: 0; border-radius: 16px; overflow: hidden; }
.gallery img { width: 100%; aspect-ratio: 1; object-fit: cover; }

.site-footer { background: #122033; color: #d5e2f2; padding: 42px 0 24px; }
.footer-grid { display: grid; grid-template-columns: 1.2fr 1fr 1fr; gap: 20px; }
.footer-label { display: block; opacity: .7; font-size: .75rem; text-transform: uppercase; letter-spacing: .1em; margin-bottom: 8px; }
.site-footer a { display: block; margin: 6px 0; color: #fff; font-weight: 600; }

html, body { overflow-x: clip; }
.nav-toggle { cursor: pointer; }

@media (max-width: 720px) {
  .wrap { width: min(980px, calc(100% - 24px)); }
  body { background-size: 48px 100%, auto; }
  .header-inner { min-height: 60px; 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: 60px 12px auto; z-index: 60;
    display: none; flex-direction: column; align-items: stretch;
    background: #fff; border: 1px solid var(--line); border-radius: 16px;
    padding: 12px; gap: 4px; max-height: min(70vh, 480px); overflow: auto;
    box-shadow: 0 18px 36px rgba(0,0,0,.12);
  }
  .nav a { padding: 12px 10px; border-radius: 12px; }
  .nav-cta { text-align: center; margin-top: 6px; }
  .nav.is-open { display: flex; }
  .hero { padding: 28px 0 8px; }
  .chips {
    flex-wrap: nowrap;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    padding-bottom: 4px;
    margin-right: -12px;
    padding-right: 12px;
  }
  .chip { flex: 0 0 auto; }
  .board-row {
    flex-direction: column; align-items: flex-start; gap: 8px;
  }
  .board-row .p { white-space: normal; }
  .service-line { grid-template-columns: auto 1fr; }
  .service-line .price { grid-column: 2; }
  .section { padding: 32px 0 44px; }
  .gallery.strip { grid-auto-columns: minmax(160px, 72vw); }
  .shot-overlay { opacity: 1; transform: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .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; }
