/* ============================================
   Solera Studio
   Light, airy base with vibrant colour fields.
   Coral accent. Separation by whitespace, not
   borders. Colour is used to do work — the two
   verticals are colour-coded throughout.
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Instrument+Sans:wght@400;500;600&family=Inter:wght@400;450;500;600&display=swap');

:root {
  --bg:        #FFFCFA;
  --white:     #FFFFFF;
  --tint:      #FFF6F1;
  --tint-2:    #FFF9F3;

  --ink:       #16141A;
  --ink-block: #1A171F;
  --muted:     #6A6472;
  --faint:     #9B94A3;
  --line:      #EDE5E1;
  --line-mid:  #DED3CD;

  --accent:      #FF6A45;
  --accent-deep: #E8532F;
  --accent-soft: #FFB498;
  --accent-wash: #FFEDE5;

  /* vertical colour coding */
  --clinic:      #FF6A45;
  --clinic-wash: #FFEDE5;
  --venue:       #E08A1E;
  --venue-wash:  #FFF3DF;
  --estate:      #5C6AD0;
  --estate-wash: #F1F2FD;

  --display: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --sans:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --page: 1200px;
  --gut:  clamp(22px, 5vw, 60px);
  --r:    20px;
  --r-sm: 13px;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; background: var(--bg); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
p { margin: 0; }

h1, h2, h3, h4 {
  font-family: var(--display);
  font-weight: 500;
  margin: 0;
  line-height: 1.03;
  letter-spacing: -0.035em;
}

.wrap { width: 100%; max-width: var(--page); margin: 0 auto; padding-inline: var(--gut); }

section { padding-block: clamp(84px, 11vw, 156px); }

/* ---------- shared type ---------- */

.eyebrow {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent-deep);
  margin-bottom: 26px;
}

.section-title { font-size: clamp(34px, 5.2vw, 62px); max-width: 19ch; }

.lede {
  font-size: clamp(17px, 1.7vw, 20px);
  color: var(--muted);
  line-height: 1.6;
  max-width: 56ch;
  letter-spacing: -0.005em;
}

/* ---------- buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: -0.01em;
  padding: 15px 28px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  white-space: nowrap;
  transition: background .25s ease, color .25s ease, border-color .25s ease,
              transform .25s ease, box-shadow .25s ease;
}

.btn-primary { background: var(--accent); color: #fff; }
.btn-primary:hover {
  background: var(--accent-deep);
  transform: translateY(-2px);
  box-shadow: 0 16px 32px -14px rgba(255,106,69,.6);
}

.btn-ghost { border-color: var(--line-mid); color: var(--ink); }
.btn-ghost:hover { border-color: var(--ink); background: rgba(0,0,0,.03); }

.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { transform: translateY(-2px); box-shadow: 0 16px 32px -14px rgba(0,0,0,.3); }

.btn svg { width: 16px; height: 16px; flex: none; }

/* ---------- nav ---------- */

.nav {
  position: sticky; top: 0; z-index: 60;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease;
}
.nav.is-stuck {
  background: rgba(255,252,250,.82);
  backdrop-filter: saturate(180%) blur(18px);
  border-bottom-color: var(--line);
}

.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 80px; gap: 24px; }

.logo {
  display: flex; align-items: baseline; gap: 11px;
  font-family: var(--display); font-size: 20px; font-weight: 500; letter-spacing: -0.03em;
}
.logo-mark { width: 20px; height: 20px; flex: none; color: var(--accent); align-self: center; }
.logo span { color: var(--faint); font-family: var(--sans); font-size: 12.5px; font-weight: 450; letter-spacing: .02em; }

.nav-links { display: flex; align-items: center; gap: 34px; }
.nav-links a { font-size: 14.5px; color: var(--muted); transition: color .2s ease; }
.nav-links a:hover { color: var(--accent-deep); }

.nav-cta { display: flex; align-items: center; gap: 12px; }
.nav-cta .btn { padding: 12px 22px; font-size: 14.5px; }

.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; color: var(--ink); }
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- hero ---------- */

.hero {
  position: relative;
  overflow: hidden;
  padding-top: clamp(64px, 9vw, 116px);
  padding-bottom: clamp(76px, 10vw, 140px);
}
.hero::before {
  content: '';
  position: absolute;
  top: -420px; left: 50%;
  width: min(1500px, 170vw); height: 1000px;
  transform: translateX(-50%);
  /* Derived from --accent so a client demo's glow matches its own palette. */
  background:
    radial-gradient(closest-side, color-mix(in srgb, var(--accent) 22%, transparent), transparent 70%),
    radial-gradient(closest-side at 70% 60%, color-mix(in srgb, var(--accent-deep) 14%, transparent), transparent 70%);
  pointer-events: none;
}
.hero > .wrap { position: relative; }

.hero h1 { font-size: clamp(40px, 5.4vw, 66px); max-width: 15ch; margin-bottom: 32px; }
.hero:not(:has(.hero-visual)) h1 { font-size: clamp(42px, 7.2vw, 92px); max-width: 16ch; }
.hero h1 em { font-style: normal; color: var(--accent); }

.hero-lede { max-width: 54ch; margin-bottom: 42px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; }

.hero-note { font-size: 13.5px; color: var(--faint); margin-top: 28px; display: flex; align-items: center; gap: 9px; }
.dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: #22A06B; flex: none;
  box-shadow: 0 0 0 4px rgba(34,160,107,.16);
}

/* ---------- markets strip ---------- */

.strip { padding-block: 0; }
.strip-inner {
  display: flex; flex-wrap: wrap; align-items: baseline;
  gap: clamp(18px, 4vw, 52px);
  padding-top: 34px;
  border-top: 1px solid var(--line);
}
.strip-label { font-size: 11.5px; letter-spacing: .2em; text-transform: uppercase; color: var(--faint); font-weight: 600; }
.strip-items { display: flex; flex-wrap: wrap; gap: clamp(18px, 4vw, 44px); }
.strip-items span {
  font-family: var(--display); font-size: clamp(16px, 2vw, 19px);
  font-weight: 400; color: var(--muted); letter-spacing: -0.02em;
}

/* ---------- split layout ---------- */

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(44px, 8vw, 110px); align-items: start; }

.check-list { display: grid; gap: 34px; }
.check-item { display: flex; gap: 16px; align-items: flex-start; }
.check-item svg { width: 20px; height: 20px; flex: none; margin-top: 3px; color: var(--accent); }
.check-item h4 { font-family: var(--sans); font-size: 16px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 7px; }
.check-item p { font-size: 15.5px; color: var(--muted); line-height: 1.6; }

/* ---------- two paths ---------- */

.paths { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; }
.path {
  border-radius: var(--r);
  overflow: hidden;
  display: flex; flex-direction: column;
  background: var(--clinic-wash);
  transition: transform .3s ease, box-shadow .3s ease;
}
.path:nth-child(2) { background: var(--venue-wash); }
.path:nth-child(3) { background: var(--estate-wash); }
.path:hover { transform: translateY(-5px); box-shadow: 0 30px 56px -30px rgba(80,50,40,.35); }

.path-photo { position: relative; aspect-ratio: 16 / 9; overflow: hidden; }
.path-photo img {
  width: 100%; height: 100%; object-fit: cover;
  transform: scale(1.02);
  transition: transform .7s cubic-bezier(.16,1,.3,1);
}
.path:hover .path-photo img { transform: scale(1.06); }

.path-body { padding: 4px 30px 34px; position: relative; }
.path-icon {
  width: 52px; height: 52px;
  display: grid; place-items: center;
  border-radius: 16px;
  background: var(--clinic); color: #fff;
  margin: -30px 0 24px; position: relative; z-index: 2;
  box-shadow: 0 10px 22px -10px rgba(255,106,69,.7);
}
.path:nth-child(2) .path-icon { background: var(--venue); box-shadow: 0 10px 22px -10px rgba(224,138,30,.7); }
.path:nth-child(3) .path-icon { background: var(--estate); box-shadow: 0 10px 22px -10px rgba(92,106,208,.7); }
.path-icon svg { width: 25px; height: 25px; }
.path h3 { font-size: 24px; margin-bottom: 13px; }
.path p { font-size: 15.5px; color: var(--muted); line-height: 1.58; margin-bottom: 28px; }
.path-link { margin-top: auto; display: inline-flex; align-items: center; gap: 10px; font-size: 14.5px; font-weight: 600; color: var(--accent-deep); }
.path:nth-child(2) .path-link { color: #B36A0F; }
.path:nth-child(3) .path-link { color: #4653B8; }
.path-link svg { width: 15px; height: 15px; transition: transform .3s ease; }
.path:hover .path-link svg { transform: translateX(5px); }

.paths-note { margin-top: 34px; font-size: 15.5px; color: var(--muted); }
.paths-note a { color: var(--accent-deep); font-weight: 500; border-bottom: 1px solid currentColor; }

/* ---------- services (tinted field) ---------- */

.services { background: var(--tint); }

.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; background: none; border: 0; }
.svc {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 34px 32px 38px;
  transition: transform .3s ease, box-shadow .3s ease, border-color .3s ease;
}
.svc:hover { transform: translateY(-5px); box-shadow: 0 26px 48px -28px rgba(80,50,40,.35); border-color: transparent; }
.svc-num { font-family: var(--sans); font-size: 11.5px; font-weight: 600; letter-spacing: .18em; margin-bottom: 26px; }
.svc h3 { font-size: 22px; margin-bottom: 14px; }
.svc p { font-size: 15.5px; color: var(--muted); line-height: 1.62; }

/* each card gets its own hue so the grid reads as colour, not as boxes */
.svc:nth-child(1) .svc-num { color: #E8532F; }
.svc:nth-child(2) .svc-num { color: #D18A2C; }
.svc:nth-child(3) .svc-num { color: #2E9B7C; }
.svc:nth-child(4) .svc-num { color: #5C6AD0; }
.svc:nth-child(5) .svc-num { color: #C74F86; }
.svc:nth-child(6) .svc-num { color: #8A7B5C; }
.svc:nth-child(1):hover { background: #FFF3EE; }
.svc:nth-child(2):hover { background: #FFF8EC; }
.svc:nth-child(3):hover { background: #EFF9F5; }
.svc:nth-child(4):hover { background: #F2F3FD; }
.svc:nth-child(5):hover { background: #FDF2F7; }
.svc:nth-child(6):hover { background: #F8F6F0; }

/* ---------- work ---------- */

.work-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 64px; }
.work-card { position: relative; display: block; }
.work-thumb {
  aspect-ratio: 4 / 3;
  background: var(--tint);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 16px;
  display: grid; place-items: stretch;
  margin-bottom: 20px;
  overflow: hidden;
  transition: transform .3s ease, box-shadow .3s ease;
}
.work-card:hover .work-thumb { transform: translateY(-5px); box-shadow: 0 26px 48px -28px rgba(80,50,40,.35); }
.work-tag {
  position: absolute; top: 28px; left: 28px; z-index: 2;
  font-size: 10px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--muted);
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(6px);
  border: 1px solid var(--line);
  border-radius: 999px; padding: 5px 11px;
}
.work-meta h4 { font-family: var(--sans); font-size: 15.5px; font-weight: 600; letter-spacing: -0.01em; margin-bottom: 3px; }
.work-meta p { font-size: 14px; color: var(--faint); }

/* ---------- process ---------- */

.process { background: var(--bg); }
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; margin-top: 64px; background: none; border: 0; }
.step { background: transparent; border-top: 2px solid var(--line-mid); padding: 26px 0 0; }
.step:nth-child(1) { border-top-color: #E8532F; }
.step:nth-child(2) { border-top-color: #D18A2C; }
.step:nth-child(3) { border-top-color: #2E9B7C; }
.step:nth-child(4) { border-top-color: #5C6AD0; }
.step-num { font-family: var(--display); font-size: 14px; font-weight: 600; letter-spacing: .04em; margin-bottom: 40px; color: var(--muted); }
.step:nth-child(1) .step-num { color: #E8532F; }
.step:nth-child(2) .step-num { color: #D18A2C; }
.step:nth-child(3) .step-num { color: #2E9B7C; }
.step:nth-child(4) .step-num { color: #5C6AD0; }
.step h3 { font-size: 20px; margin-bottom: 12px; }
.step p { font-size: 15px; color: var(--muted); line-height: 1.62; }

/* ---------- packages (tinted field) ---------- */

#packages { background: var(--tint-2); }

.price-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-top: 64px; align-items: stretch; }
.price-card {
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 40px 32px 36px;
  background: var(--white);
  display: flex; flex-direction: column; position: relative;
  transition: transform .3s ease, box-shadow .3s ease;
}
.price-card:hover { transform: translateY(-4px); box-shadow: 0 26px 48px -28px rgba(80,50,40,.35); }
.price-card.featured {
  border-color: transparent;
  background: linear-gradient(180deg, var(--accent-wash), var(--white) 40%);
  box-shadow: 0 0 0 2px var(--accent), 0 24px 44px -28px rgba(255,106,69,.6);
}
.price-tag {
  position: absolute; top: -12px; left: 32px;
  background: var(--accent); color: #fff;
  font-size: 10.5px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  padding: 5px 13px; border-radius: 999px;
}
.price-card h3 { font-size: 25px; margin-bottom: 10px; }
.price-card > .price-sub { font-size: 15px; color: var(--muted); margin-bottom: 20px; min-height: 46px; line-height: 1.55; }
.price-terms {
  font-size: 12px; font-weight: 600; letter-spacing: .13em; text-transform: uppercase;
  color: var(--faint); margin-bottom: 28px; padding-bottom: 22px; border-bottom: 1px solid var(--line);
}
.price-list { list-style: none; padding: 0; margin: 0 0 34px; display: grid; gap: 14px; }
.price-list li { font-size: 15px; color: var(--muted); display: flex; gap: 12px; align-items: flex-start; line-height: 1.5; }
.price-list svg { width: 15px; height: 15px; flex: none; margin-top: 4px; color: var(--accent); }
.price-card .btn { margin-top: auto; width: 100%; }

.care-note {
  margin-top: 22px; padding: 34px 38px;
  background: var(--white); border: 1px solid var(--line); border-radius: var(--r);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 24px;
}
.care-note h4 { font-family: var(--display); font-size: 23px; font-weight: 500; letter-spacing: -0.03em; margin-bottom: 8px; }
.care-note p { font-size: 15.5px; color: var(--muted); max-width: 64ch; line-height: 1.6; }
.care-price { white-space: nowrap; }

/* ---------- faq ---------- */

.faq { background: var(--bg); }
.faq-list { margin-top: 56px; border-top: 1px solid var(--line); }
details { border-bottom: 1px solid var(--line); }
summary {
  list-style: none; cursor: pointer;
  padding: 28px 52px 28px 0;
  font-size: 18px; font-weight: 500;
  font-family: var(--display); letter-spacing: -0.025em;
  position: relative; transition: color .2s ease;
}
summary::-webkit-details-marker { display: none; }
summary:hover { color: var(--accent-deep); }
summary::after {
  content: ''; position: absolute; right: 8px; top: 50%;
  width: 10px; height: 10px;
  border-right: 1.6px solid var(--faint); border-bottom: 1.6px solid var(--faint);
  transform: translateY(-70%) rotate(45deg);
  transition: transform .3s ease, border-color .2s ease;
}
summary:hover::after { border-color: var(--accent); }
details[open] summary::after { transform: translateY(-30%) rotate(225deg); }
details p { padding: 0 64px 32px 0; color: var(--muted); font-size: 16px; line-height: 1.68; max-width: 76ch; }

/* ---------- cta (solid colour block) ---------- */

.cta {
  position: relative; overflow: hidden; text-align: center;
  background: linear-gradient(150deg, #FF7A4E 0%, #FF6A45 45%, #F1532C 100%);
  color: #fff;
}
.cta::before {
  content: ''; position: absolute; top: -240px; right: -120px;
  width: 720px; height: 720px; border-radius: 50%;
  background: radial-gradient(closest-side, rgba(255,255,255,.22), transparent 70%);
  pointer-events: none;
}
.cta > .wrap { position: relative; }
.cta h2 { font-size: clamp(36px, 6vw, 72px); color: #fff; max-width: 17ch; margin: 0 auto 26px; }
.cta p { color: rgba(255,255,255,.9); max-width: 52ch; margin: 0 auto 42px; font-size: 18px; line-height: 1.6; }
.cta-actions { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.cta .btn-ghost { border-color: rgba(255,255,255,.5); color: #fff; }
.cta .btn-ghost:hover { border-color: #fff; background: rgba(255,255,255,.14); }
.cta-meta { margin-top: 34px; font-size: 13.5px; color: rgba(255,255,255,.75); }

/* ---------- footer ---------- */

.footer { padding-block: 52px; background: var(--bg); }
.footer-inner { display: flex; flex-wrap: wrap; gap: 26px; align-items: center; justify-content: space-between; }
.footer-links { display: flex; flex-wrap: wrap; gap: 28px; font-size: 14.5px; color: var(--muted); }
.footer-links a:hover { color: var(--accent-deep); }
.footer-legal { font-size: 13.5px; color: var(--faint); }

/* ---------- reveal ---------- */

.reveal { opacity: 0; transform: translateY(22px); }
.reveal.in { opacity: 1; transform: none; transition: opacity .8s cubic-bezier(.16,1,.3,1), transform .8s cubic-bezier(.16,1,.3,1); }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; }
  * { transition-duration: .01ms !important; animation-duration: .01ms !important; }
}

/* ============================================
   Product mockups — light UI
   ============================================ */

.hero-grid { display: grid; grid-template-columns: 1.02fr .98fr; gap: clamp(40px, 6vw, 76px); align-items: center; }
.hero-visual { position: relative; }

.browser {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 46px 90px -34px rgba(80,50,40,.45);
}
.browser-bar { display: flex; align-items: center; gap: 6px; padding: 11px 13px; background: #F7F2EF; border-bottom: 1px solid var(--line); }
.browser-dot { width: 8px; height: 8px; border-radius: 50%; background: #DCD2CC; flex: none; }
.browser-url {
  margin-left: 9px; flex: 1; height: 19px; border-radius: 999px;
  background: var(--white); border: 1px solid var(--line);
  display: flex; align-items: center; padding: 0 11px;
  font-size: 9px; letter-spacing: .02em; color: var(--faint);
  overflow: hidden; white-space: nowrap;
}
.browser-body { padding: 16px 18px 20px; background: var(--white); }

.device {
  width: 190px; border-radius: 32px;
  border: 8px solid #26222B; background: var(--white);
  overflow: hidden;
  box-shadow: 0 44px 80px -26px rgba(60,40,35,.55);
}
.device-notch { height: 20px; display: grid; place-items: center; }
.device-notch::after { content: ''; width: 52px; height: 4px; border-radius: 999px; background: #E7DED9; }
.device-screen { padding: 4px 13px 18px; }

.hero-visual .device { position: absolute; right: -10px; bottom: -46px; }

.mk-row { display: flex; align-items: center; gap: 7px; }
.mk-between { display: flex; align-items: center; justify-content: space-between; gap: 8px; }
.mk-nav { display: flex; gap: 9px; }
.mk-line { height: 6px; border-radius: 4px; background: #E7DFDA; flex: none; }
.mk-line.faint { background: #F0EAE6; }
.mk-dot { width: 13px; height: 13px; border-radius: 5px; background: var(--accent); flex: none; }
.mk-photo {
  border-radius: 9px;
  background: linear-gradient(140deg, #FFC3A8, #FFE3D2 55%, #FFF1E8);
  border: 1px solid rgba(0,0,0,.04);
  overflow: hidden;
}
.mk-photo img { width: 100%; height: 100%; object-fit: cover; display: block; }
.mk-card { background: var(--white); border: 1px solid var(--line); border-radius: 10px; padding: 9px; }
.mk-h { font-family: var(--display); font-weight: 500; letter-spacing: -0.03em; color: var(--ink); line-height: 1.12; }
.mk-t { color: var(--muted); letter-spacing: -0.005em; }
.mk-t.tiny { font-size: 7.5px; }
.mk-t.dim { color: var(--faint); }
.mk-pill { display: inline-flex; align-items: center; border-radius: 999px; background: var(--accent); color: #fff; font-weight: 600; letter-spacing: -0.01em; }
.mk-pill.ghost { background: transparent; border: 1px solid var(--line-mid); color: var(--muted); font-weight: 500; }
.mk-eyebrow { font-size: 6.5px; letter-spacing: .22em; text-transform: uppercase; color: var(--accent-deep); font-weight: 700; }

.mkp-nav { margin-bottom: 16px; }
.mkp-hero { display: grid; grid-template-columns: 1.1fr .9fr; gap: 12px; align-items: center; margin-bottom: 14px; }
.mkp-title { font-size: 15px; margin-bottom: 7px; }
.mkp-sub { font-size: 7.5px; line-height: 1.5; margin-bottom: 10px; }
.mkp-cta { font-size: 7px; padding: 5px 11px; }
.mkp-shot { aspect-ratio: 1 / 1; }
.mkp-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 8px; }
.mkp-cards .mk-photo { aspect-ratio: 3 / 2; margin-bottom: 7px; }
.mkp-cards .mk-t { font-size: 7px; }

.mks-head { display: flex; align-items: center; justify-content: space-between; margin: 10px 0 14px; }
.mks-title { font-size: 13px; margin-bottom: 3px; }
.mks-photo { aspect-ratio: 16 / 9; margin-bottom: 12px; }
.mks-list { display: grid; gap: 7px; margin-bottom: 13px; }
.mks-item { display: flex; align-items: center; justify-content: space-between; gap: 8px; padding: 8px 9px; }
.mks-item .mk-t { font-size: 8px; }
.mks-item.on { border-color: var(--accent-soft); background: var(--accent-wash); }
.mks-btn {
  display: block; text-align: center; border-radius: 999px;
  background: var(--accent); color: #fff;
  font-size: 8.5px; font-weight: 600; padding: 9px; letter-spacing: -0.01em;
}

.work-thumb .browser { box-shadow: none; height: 100%; display: flex; flex-direction: column; }
.work-thumb .browser-body { flex: 1; }

/* ---------- photography ---------- */

.path { padding: 0; }

.band {
  position: relative;
  height: clamp(220px, 27vw, 360px);
  overflow: hidden;
}
.band img { width: 100%; height: 100%; object-fit: cover; }
.band::after {
  content: ''; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(26,20,18,.55), rgba(26,20,18,.35) 50%, rgba(26,20,18,.6));
}
.band-quote { position: absolute; inset: 0; z-index: 2; display: grid; place-items: center; text-align: center; padding-inline: var(--gut); }
.band-quote p {
  font-family: var(--display); font-weight: 500; letter-spacing: -0.03em;
  font-size: clamp(20px, 3vw, 34px); line-height: 1.2; max-width: 22ch; color: #fff;
}

/* ---------- responsive ---------- */

@media (max-width: 980px) {
  .svc-grid, .work-grid, .steps, .price-grid { grid-template-columns: 1fr 1fr; }
  .paths { grid-template-columns: 1fr; }
  .path-body { padding: 4px 32px 34px; }
  .split { grid-template-columns: 1fr; gap: 48px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero-visual { max-width: 560px; }
  .hero h1 { font-size: clamp(40px, 6.4vw, 62px); }
  .hero-visual .device { right: 0; bottom: -34px; width: 168px; }
}

@media (max-width: 760px) {
  .nav-links { display: none; }
  .nav-toggle { display: block; }
  .nav.is-open { background: rgba(255,252,250,.96); backdrop-filter: saturate(180%) blur(18px); }
  .nav.is-open .nav-links {
    display: flex; position: absolute; top: 80px; left: 0; right: 0;
    flex-direction: column; align-items: flex-start; gap: 0;
    background: var(--bg); border-bottom: 1px solid var(--line);
    padding: 10px var(--gut) 24px;
  }
  .nav.is-open .nav-links a { padding: 14px 0; width: 100%; border-bottom: 1px solid var(--line); }
  .nav-cta .btn-ghost { display: none; }

  .svc-grid, .work-grid, .steps, .price-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { flex: 1 1 auto; }
  .care-note { flex-direction: column; align-items: flex-start; padding: 30px 26px; }
  .path-body { padding: 4px 26px 30px; }
  .svc, .price-card { padding: 30px 26px 32px; }
  .check-list { gap: 28px; }
  .hero-visual .device { display: none; }
  .browser-body { padding: 13px 14px 16px; }
  .mkp-title { font-size: 13px; }

  .nav-cta { gap: 8px; }
  .nav-cta .btn-primary { padding: 11px 18px; font-size: 14px; gap: 8px; }
}

@media (max-width: 390px) {
  .nav-cta .btn-primary { padding: 11px 14px; }
  .nav-cta .btn-primary .label { display: none; }
}

/* Portfolio thumbnails hold a real screenshot rather than the mockup kit. */
.work-thumb img { width: 100%; height: 100%; object-fit: cover; object-position: top center; display: block; border-radius: 12px; }
.work-thumb:has(img) { padding: 0; }
