/* ============================================================
   WebRight.uk — 2026 redesign
   Same brand system: ink / paper / cream / sand / coral / teal
   New scene: coastal sunrise arc, floating browser mockups,
   wave dividers, icon-chip buttons.
   ============================================================ */

:root {
  --ink: #020043;
  --ink-80: #2a2860;
  --ink-60: #55547e;
  --ink-40: #8a89a6;
  --paper: #fafaf8;
  --cream: #fbf6ef;
  --sand: #f4ede1;
  --sand-deep: #efe6d6;
  --coral: #f0603a;
  --coral-dark: #d84c28;
  --coral-soft: #ffe7dd;
  --teal: #17a2a0;
  --teal-soft: #d9efee;
  --line: #e8e2d6;
  --white: #ffffff;
  --shadow-sm: 0 2px 8px rgba(2, 0, 67, .06);
  --shadow-md: 0 12px 32px rgba(2, 0, 67, .09);
  --shadow-lg: 0 30px 70px rgba(2, 0, 67, .16);
  --shadow-coral: 0 12px 28px rgba(240, 96, 58, .32);
  --radius: 18px;
  --radius-lg: 30px;
  --radius-pill: 999px;
  --maxw: 1160px;
  --gap: clamp(1rem, 3vw, 2rem);
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Plus Jakarta Sans", system-ui, -apple-system, "Segoe UI", Roboto, sans-serif;
  --ease: cubic-bezier(.22, .61, .36, 1);
  --ease-spring: cubic-bezier(.34, 1.56, .64, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--paper);
  color: var(--ink);
  line-height: 1.6;
  font-size: 1rem;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

::selection { background: var(--coral); color: var(--white); }

:focus-visible {
  outline: 3px solid var(--teal);
  outline-offset: 3px;
  border-radius: 4px;
}

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

.wrap {
  max-width: var(--maxw);
  margin-inline: auto;
  padding-inline: clamp(1.25rem, 4vw, 2rem);
}

.section { padding-block: clamp(4rem, 9vw, 7rem); position: relative; }
.section--sand { background: var(--sand); }
.section--cream { background: var(--cream); }
.section--ink { background: var(--ink); color: var(--paper); }
.section--tight { padding-block: clamp(3rem, 6vw, 4.5rem); }

/* wave divider between sections */
.wave {
  display: block;
  width: 100%;
  height: clamp(34px, 6vw, 70px);
  margin-bottom: -1px;
}

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

h1, h2, h3, .display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 6.4vw, 4.4rem); }
h2 { font-size: clamp(1.9rem, 4.2vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.45rem); line-height: 1.25; }

.accent-i {
  font-style: italic;
  color: var(--coral);
  font-weight: 500;
}

.section--ink .accent-i { color: var(--coral); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.2rem);
  color: var(--ink-60);
  max-width: 34em;
}

.section--ink .lede { color: rgba(250, 250, 248, .72); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .6rem;
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: 1.1rem;
}

.eyebrow::before {
  content: "";
  width: 26px;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
}

.section--ink .eyebrow { color: var(--coral); }
.section--ink .eyebrow::before { background: var(--coral); }

.section-head { max-width: 620px; margin-bottom: clamp(2.2rem, 5vw, 3.5rem); }
.section-head .lede { margin-top: 1rem; }
.section-head--center { margin-inline: auto; text-align: center; }
.section-head--center .eyebrow { justify-content: center; }
.section-head--center .lede { margin-inline: auto; }

/* ---------- buttons with icon chips ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding: .5rem 1.5rem .5rem .5rem;
  border-radius: var(--radius-pill);
  font-family: var(--font-body);
  font-weight: 700;
  font-size: .95rem;
  line-height: 1.2;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease), background-color .25s var(--ease), border-color .25s var(--ease);
  will-change: transform;
}

.btn:hover { transform: translateY(-3px); }
.btn:active { transform: translateY(-1px); }

.btn .ic {
  width: 38px;
  height: 38px;
  flex: 0 0 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  transition: transform .45s var(--ease-spring), background-color .25s var(--ease);
}

.btn .ic svg { width: 17px; height: 17px; }

.btn:hover .ic { transform: rotate(-8deg) scale(1.08); }
.btn:hover .ic--arrow { transform: translateX(3px); }

.btn--coral { background: var(--coral); color: var(--white); }
.btn--coral:hover { background: var(--coral-dark); box-shadow: var(--shadow-coral); }
.btn--coral .ic { background: rgba(255, 255, 255, .18); color: var(--white); }

.btn--ink { background: var(--ink); color: var(--paper); }
.btn--ink:hover { box-shadow: var(--shadow-md); }
.btn--ink .ic { background: rgba(250, 250, 248, .14); color: var(--paper); }

.btn--ghost {
  background: rgba(255, 255, 255, .55);
  border-color: var(--line);
  color: var(--ink);
}
.btn--ghost:hover { background: var(--white); box-shadow: var(--shadow-sm); }
.btn--ghost .ic { background: var(--coral-soft); color: var(--coral-dark); }

.btn--paper { background: var(--paper); color: var(--ink); }
.btn--paper:hover { box-shadow: 0 12px 28px rgba(0, 0, 0, .25); }
.btn--paper .ic { background: var(--coral-soft); color: var(--coral-dark); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: .9rem;
  align-items: center;
}

/* text-link with arrow */
.tlink {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  font-weight: 700;
  font-size: .92rem;
  color: var(--coral-dark);
}
.tlink svg { width: 15px; height: 15px; transition: transform .3s var(--ease-spring); }
.tlink:hover svg { transform: translateX(4px); }

/* ---------- header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 60;
  background: rgba(250, 250, 248, .82);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .3s var(--ease), box-shadow .3s var(--ease);
}

.site-header.scrolled {
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}

.header-in {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: .8rem;
}

.logo {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.3rem;
  display: inline-flex;
  align-items: center;
  gap: .55rem;
}

.logo .logo-mark {
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: var(--coral);
  color: var(--white);
  display: grid;
  place-items: center;
  font-size: 1.02rem;
  box-shadow: var(--shadow-coral);
}

.logo .dot { color: var(--coral); }

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2.4vw, 1.9rem);
}

.nav-links a:not(.btn) {
  font-weight: 600;
  font-size: .93rem;
  color: var(--ink-80);
  position: relative;
  padding-block: .3rem;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  border-radius: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .3s var(--ease);
}

.nav-links a:not(.btn):hover::after,
.nav-links a[aria-current="page"]::after { transform: scaleX(1); }

.nav-links a[aria-current="page"] { color: var(--ink); }

.nav-social {
  display: flex;
  gap: .45rem;
  padding-right: .35rem;
  border-right: 1px solid var(--line);
  margin-right: .2rem;
}

.nav-cta { padding: .4rem 1.2rem .4rem .4rem; font-size: .88rem; }
.nav-cta .ic { width: 32px; height: 32px; flex-basis: 32px; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  place-items: center;
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  display: block;
  width: 22px;
  height: 2.4px;
  border-radius: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}

.nav-toggle span::before { position: absolute; top: -7px; }
.nav-toggle span::after { position: absolute; top: 7px; }

.nav-open .nav-toggle span { background: transparent; }
.nav-open .nav-toggle span::before { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span::after { transform: translateY(-7px) rotate(-45deg); }

/* social circle buttons */
.soc {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--ink);
  color: var(--paper);
  transition: transform .35s var(--ease-spring), background-color .25s var(--ease), box-shadow .3s var(--ease);
}
.soc svg { width: 17px; height: 17px; }
.soc:hover {
  background: var(--coral);
  transform: translateY(-3px) rotate(-6deg);
  box-shadow: var(--shadow-coral);
}
.soc--light { background: rgba(250, 250, 248, .12); color: var(--paper); }
.soc--light:hover { background: var(--coral); }
.nav-social .soc { width: 34px; height: 34px; background: var(--sand-deep); color: var(--ink); }
.nav-social .soc:hover { background: var(--coral); color: var(--white); }
.nav-social .soc svg { width: 15px; height: 15px; }

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

.hero {
  position: relative;
  overflow: clip;
  padding-block: clamp(3.5rem, 7vw, 6rem) 0;
  background: var(--cream);
}

.hero-in {
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
}

.hero-copy { padding-bottom: clamp(3rem, 6vw, 5rem); }

.hero-copy h1 { margin-bottom: 1.2rem; }

.hero-copy .lede { margin-bottom: 1.8rem; }

.hero-trust {
  display: flex;
  align-items: center;
  gap: .8rem;
  margin-top: 1.7rem;
  font-size: .86rem;
  color: var(--ink-60);
  font-weight: 600;
}

.hero-trust .stars { color: var(--coral); letter-spacing: .12em; font-size: .95rem; }

/* the sunrise arc */
.sun-arc {
  position: absolute;
  z-index: 1;
  right: clamp(-220px, -12vw, -80px);
  bottom: clamp(-260px, -18vw, -140px);
  width: clamp(520px, 58vw, 900px);
  aspect-ratio: 1;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, var(--coral) 0%, var(--coral) 38%, rgba(240, 96, 58, 0) 70%);
  opacity: .18;
  pointer-events: none;
}

.sun-rings {
  position: absolute;
  z-index: 1;
  right: clamp(-160px, -8vw, -40px);
  bottom: clamp(-200px, -14vw, -100px);
  width: clamp(460px, 52vw, 820px);
  aspect-ratio: 1;
  pointer-events: none;
  color: var(--teal);
  opacity: .35;
}

/* floating browser mockup stage */
.hero-stage {
  position: relative;
  z-index: 2;
  min-height: clamp(340px, 42vw, 520px);
  perspective: 1200px;
}

.browser {
  position: absolute;
  border-radius: 14px;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  overflow: hidden;
  border: 1px solid rgba(2, 0, 67, .07);
  transition: transform .5s var(--ease);
}

.browser-bar {
  display: flex;
  align-items: center;
  gap: .5rem;
  padding: .5rem .7rem;
  background: var(--paper);
  border-bottom: 1px solid var(--line);
}

.browser-bar .dots { display: flex; gap: .28rem; }
.browser-bar .dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--sand-deep);
}
.browser-bar .dots i:first-child { background: var(--coral); }
.browser-bar .dots i:nth-child(2) { background: var(--teal); }

.browser-bar .url {
  flex: 1;
  font-size: .58rem;
  font-weight: 600;
  color: var(--ink-40);
  background: var(--sand);
  border-radius: 999px;
  padding: .18rem .6rem;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.browser-body { padding: .9rem; }

/* mockup 1 — VIP valet (dark, the real client) */
.bw-vip {
  width: min(62%, 300px);
  right: 4%;
  top: 4%;
  transform: rotate(3deg);
  z-index: 3;
}
.bw-vip .browser-body { background: #0c0b26; color: var(--white); padding: 1rem; }
.bw-vip .tagline {
  font-size: .5rem;
  letter-spacing: .16em;
  color: var(--coral);
  font-weight: 700;
  text-transform: uppercase;
}
.bw-vip .bw-title {
  font-family: var(--font-display);
  font-size: .95rem;
  line-height: 1.2;
  margin: .4rem 0 .3rem;
}
.bw-vip .bw-sub { font-size: .58rem; color: rgba(255, 255, 255, .65); margin-bottom: .7rem; }
.bw-vip .bw-btns { display: flex; gap: .4rem; }
.bw-vip .bw-btn {
  font-size: .55rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 999px;
  background: var(--coral);
  color: var(--white);
}
.bw-vip .bw-btn.alt { background: rgba(255, 255, 255, .12); }

/* mockup 2 — café (sand/teal) */
.bw-cafe {
  width: min(52%, 250px);
  left: 0;
  top: 26%;
  transform: rotate(-4deg);
  z-index: 2;
}
.bw-cafe .browser-body { background: var(--sand); padding: .85rem; }
.bw-cafe .bw-chip {
  display: inline-block;
  font-size: .48rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  border-radius: 999px;
  padding: .2rem .55rem;
}
.bw-cafe .bw-title {
  font-family: var(--font-display);
  font-size: .85rem;
  margin: .4rem 0 .5rem;
  color: var(--ink);
}
.bw-cafe .bw-grid { display: grid; grid-template-columns: 1fr 1fr; gap: .35rem; }
.bw-cafe .bw-grid i {
  height: 26px;
  border-radius: 7px;
  background: var(--white);
  border: 1px solid var(--line);
}
.bw-cafe .bw-grid i:first-child { background: var(--teal); border: none; }

/* mockup 3 — trades (paper/coral) */
.bw-trade {
  width: min(46%, 225px);
  right: 16%;
  bottom: 2%;
  transform: rotate(-2deg);
  z-index: 4;
}
.bw-trade .browser-body { padding: .8rem; }
.bw-trade .bw-line { height: 7px; border-radius: 4px; background: var(--sand-deep); margin-bottom: .4rem; }
.bw-trade .bw-line.w60 { width: 60%; }
.bw-trade .bw-line.w80 { width: 80%; }
.bw-trade .bw-cta {
  display: inline-block;
  margin-top: .3rem;
  font-size: .55rem;
  font-weight: 700;
  color: var(--white);
  background: var(--coral);
  border-radius: 999px;
  padding: .3rem .75rem;
  box-shadow: var(--shadow-coral);
}

/* floating badge */
.float-badge {
  position: absolute;
  z-index: 5;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: var(--white);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
  border-radius: 999px;
  padding: .45rem .95rem .45rem .5rem;
  font-size: .78rem;
  font-weight: 700;
}

.float-badge .fb-ic {
  width: 26px;
  height: 26px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: var(--teal-soft);
  color: var(--teal);
}
.float-badge .fb-ic svg { width: 13px; height: 13px; }

.fb-days { left: 6%; top: 6%; animation: bob 5s ease-in-out infinite; }
.fb-mobile { right: 0; bottom: 24%; animation: bob 6s ease-in-out 1.2s infinite; }
.fb-mobile .fb-ic { background: var(--coral-soft); color: var(--coral-dark); }

@keyframes bob {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-9px); }
}

/* ---------- ticker ---------- */

.ticker {
  background: var(--ink);
  color: var(--paper);
  overflow: hidden;
  padding-block: .9rem;
  position: relative;
  z-index: 4;
}

.ticker-track {
  display: flex;
  gap: 2.6rem;
  width: max-content;
  animation: ticker 30s linear infinite;
}

.ticker span {
  display: inline-flex;
  align-items: center;
  gap: 2.6rem;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.02rem;
  white-space: nowrap;
}

.ticker .tick-star { color: var(--coral); font-style: normal; font-family: var(--font-body); }

@keyframes ticker {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}

/* ---------- cards ---------- */

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--gap);
}

.card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  box-shadow: var(--shadow-sm);
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease);
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.card h3 { margin-top: .2rem; }

.card p { color: var(--ink-60); font-size: .95rem; flex: 1; }

.icon-tile {
  width: 58px;
  height: 58px;
  border-radius: 16px;
  display: grid;
  place-items: center;
  background: var(--coral-soft);
  color: var(--coral-dark);
  transition: transform .45s var(--ease-spring);
}

.icon-tile svg { width: 26px; height: 26px; }

.icon-tile--teal { background: var(--teal-soft); color: var(--teal); }
.icon-tile--sand { background: var(--sand); color: var(--ink-80); }

.card:hover .icon-tile { transform: rotate(-6deg) scale(1.1); }

.chip-row { display: flex; flex-wrap: wrap; gap: .4rem; }

.chip {
  font-size: .72rem;
  font-weight: 700;
  padding: .28rem .7rem;
  border-radius: 999px;
  background: var(--sand);
  color: var(--ink-80);
}

/* ---------- dark statement (why webright) ---------- */

.why-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: start;
}

.check-list { display: grid; gap: 1.1rem; margin-block: 1.8rem; }

.check-list li {
  display: flex;
  gap: .85rem;
  align-items: flex-start;
  font-size: .98rem;
  color: rgba(250, 250, 248, .85);
}

.check-list li strong { color: var(--paper); }

.check-ic {
  flex: 0 0 26px;
  width: 26px;
  height: 26px;
  border-radius: 50%;
  background: var(--teal);
  color: var(--white);
  display: grid;
  place-items: center;
  margin-top: .1rem;
}
.check-ic svg { width: 13px; height: 13px; }

.stat-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--gap);
}

.stat {
  background: rgba(250, 250, 248, .06);
  border: 1px solid rgba(250, 250, 248, .12);
  border-radius: var(--radius);
  padding: 1.4rem 1.5rem;
}

.stat b {
  display: block;
  font-family: var(--font-display);
  font-size: clamp(1.9rem, 3.4vw, 2.6rem);
  font-weight: 600;
  color: var(--coral);
  line-height: 1;
  margin-bottom: .45rem;
}

.stat span { font-size: .85rem; color: rgba(250, 250, 248, .68); font-weight: 600; }

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

.steps { counter-reset: step; }

.step {
  position: relative;
  padding: clamp(1.4rem, 2.5vw, 1.9rem);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  font-family: var(--font-display);
  font-style: italic;
  font-size: 2.4rem;
  color: var(--coral);
  opacity: .9;
  line-height: 1;
  display: block;
  margin-bottom: .8rem;
}

.step h3 { margin-bottom: .5rem; }
.step p { color: var(--ink-60); font-size: .95rem; }

/* ---------- portfolio feature ---------- */

.feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: center;
}

.feature-shot {
  position: relative;
  padding: clamp(1.5rem, 3vw, 2.5rem);
  background: linear-gradient(145deg, var(--sand) 0%, var(--sand-deep) 100%);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.feature-shot .sun-mini {
  position: absolute;
  right: -60px;
  top: -60px;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral) 0%, rgba(240, 96, 58, 0) 68%);
  opacity: .25;
}

.feature-shot .browser { position: relative; inset: auto; width: 100%; transform: rotate(-1.5deg); }
.feature-shot .browser:hover { transform: rotate(0deg) scale(1.015); }

.feature-tags { margin-block: 1.2rem; }

.slot-card {
  border: 2px dashed var(--line);
  border-radius: var(--radius);
  background: transparent;
  box-shadow: none;
  align-items: flex-start;
}
.slot-card:hover { box-shadow: none; border-color: var(--coral); }
.slot-card .slot-tag {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--teal);
  background: var(--teal-soft);
  padding: .28rem .7rem;
  border-radius: 999px;
}

/* ---------- pricing ---------- */

.price-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: var(--gap);
  align-items: stretch;
}

.price-card {
  background: var(--white);
  border: 1.5px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  display: flex;
  flex-direction: column;
  gap: 1.1rem;
  position: relative;
  transition: transform .4s var(--ease-spring), box-shadow .4s var(--ease);
}

.price-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-md); }

.price-card--pop {
  border-color: var(--coral);
  box-shadow: var(--shadow-md);
  background: linear-gradient(180deg, var(--white) 70%, var(--coral-soft) 160%);
}

.pop-tag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--coral);
  color: var(--white);
  font-size: .68rem;
  font-weight: 800;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: .32rem .95rem;
  border-radius: 999px;
  box-shadow: var(--shadow-coral);
  white-space: nowrap;
}

.price-card h3 { font-size: 1.35rem; }
.price-card .p-desc { color: var(--ink-60); font-size: .9rem; min-height: 2.6em; }

.price {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 4vw, 2.9rem);
  font-weight: 600;
  line-height: 1;
}

.price .from {
  font-family: var(--font-body);
  font-size: .8rem;
  font-weight: 700;
  color: var(--ink-40);
  display: block;
  margin-bottom: .3rem;
}

.p-list { display: grid; gap: .55rem; flex: 1; }

.p-list li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
  font-size: .92rem;
  color: var(--ink-80);
}

.p-list .check-ic { flex-basis: 22px; width: 22px; height: 22px; margin-top: .12rem; }
.p-list .check-ic svg { width: 11px; height: 11px; }

.p-list li.p-plus { font-weight: 700; color: var(--ink); }

.care-strip {
  margin-top: var(--gap);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(1.4rem, 3vw, 2rem) clamp(1.5rem, 3.5vw, 2.5rem);
}

.care-strip h3 { color: var(--paper); }
.care-strip p { color: rgba(250, 250, 248, .7); font-size: .92rem; max-width: 42em; }
.care-strip .care-price { color: var(--coral); font-style: italic; }

.price-note { margin-top: 1.4rem; font-size: .85rem; color: var(--ink-60); text-align: center; }

/* ---------- testimonial ---------- */

.quote-wrap { max-width: 760px; margin-inline: auto; text-align: center; position: relative; }

.quote-mark {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 5rem;
  line-height: .6;
  color: var(--coral);
  display: block;
  margin-bottom: 1.4rem;
}

blockquote p {
  font-family: var(--font-display);
  font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 500;
  line-height: 1.4;
  margin-bottom: 1.6rem;
}

.quote-by { font-weight: 700; font-size: .95rem; }
.quote-by span { display: block; font-weight: 600; font-size: .82rem; color: var(--ink-60); margin-top: .15rem; }

/* ---------- CTA band ---------- */

.cta-band {
  position: relative;
  overflow: clip;
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: clamp(2.5rem, 6vw, 4.5rem);
  text-align: center;
}

.cta-band .sun-arc {
  right: auto;
  left: 50%;
  transform: translateX(-50%);
  bottom: -75%;
  width: 130%;
  opacity: .22;
}

.cta-band h2 { margin-bottom: 1rem; position: relative; z-index: 2; }
.cta-band .lede { margin: 0 auto 1.8rem; position: relative; z-index: 2; }
.cta-band .btn-row { justify-content: center; position: relative; z-index: 2; }

/* ---------- follow / social block ---------- */

.follow-inline {
  display: flex;
  align-items: center;
  gap: .8rem;
  flex-wrap: wrap;
}

.follow-inline .fl-label { font-weight: 700; font-size: .9rem; }

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

.site-footer {
  background: var(--ink);
  color: var(--paper);
  padding-block: clamp(3rem, 6vw, 4.5rem) 1.8rem;
  position: relative;
  overflow: clip;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: clamp(1.6rem, 4vw, 3rem);
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(250, 250, 248, .14);
  position: relative;
  z-index: 2;
}

.site-footer .logo { color: var(--paper); }

.footer-blurb { margin-top: 1rem; font-size: .9rem; color: rgba(250, 250, 248, .65); max-width: 26em; }

.footer-social { display: flex; gap: .6rem; margin-top: 1.3rem; }

.footer-col h4 {
  font-size: .78rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 1rem;
}

.footer-col ul { display: grid; gap: .55rem; }

.footer-col a {
  font-size: .92rem;
  color: rgba(250, 250, 248, .78);
  transition: color .2s var(--ease);
}

.footer-col a:hover { color: var(--coral); }

.footer-bottom {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: .8rem;
  padding-top: 1.6rem;
  font-size: .8rem;
  color: rgba(250, 250, 248, .5);
  position: relative;
  z-index: 2;
}

.footer-bottom .heart { color: var(--coral); }

.site-footer .sun-arc {
  right: -18%;
  bottom: -95%;
  width: 60%;
  opacity: .12;
}

/* ---------- inner-page hero ---------- */

.page-hero {
  background: var(--cream);
  padding-block: clamp(3rem, 6vw, 4.5rem) clamp(3.2rem, 7vw, 5rem);
  position: relative;
  overflow: clip;
}

.page-hero .sun-arc { width: clamp(380px, 40vw, 620px); opacity: .14; right: -10%; bottom: -70%; }
.page-hero .sun-rings { width: clamp(340px, 36vw, 560px); right: -6%; bottom: -60%; opacity: .3; }

.crumbs {
  display: flex;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-40);
  margin-bottom: 1.6rem;
}

.crumbs a:hover { color: var(--coral-dark); }
.crumbs .sep { color: var(--line); }
.crumbs [aria-current] { color: var(--ink-80); }

.page-hero h1 { max-width: 14em; margin-bottom: 1.1rem; }
.page-hero .lede { max-width: 38em; }
.page-hero .btn-row { margin-top: 1.8rem; }

/* ---------- FAQ ---------- */

.faq-list { max-width: 760px; margin-inline: auto; display: grid; gap: .8rem; }

.faq-list details {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: box-shadow .3s var(--ease);
}

.faq-list details[open] { box-shadow: var(--shadow-md); }

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  cursor: pointer;
  font-weight: 700;
  font-size: 1rem;
  list-style: none;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary .plus {
  flex: 0 0 30px;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--coral-soft);
  color: var(--coral-dark);
  display: grid;
  place-items: center;
  font-weight: 700;
  font-size: 1.1rem;
  transition: transform .35s var(--ease-spring), background-color .25s var(--ease);
}

.faq-list details[open] summary .plus {
  transform: rotate(45deg);
  background: var(--coral);
  color: var(--white);
}

.faq-list details p { margin-top: .9rem; color: var(--ink-60); font-size: .95rem; max-width: 56em; }

/* ---------- contact page ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, .85fr);
  gap: clamp(2rem, 4vw, 3.5rem);
  align-items: start;
}

.form-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: clamp(1.6rem, 3.5vw, 2.5rem);
  box-shadow: var(--shadow-md);
}

.form-card h2 { font-size: clamp(1.5rem, 2.6vw, 1.9rem); margin-bottom: .5rem; }
.form-card > p { color: var(--ink-60); font-size: .92rem; margin-bottom: 1.6rem; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1.1rem; }

.field { display: grid; gap: .4rem; }
.field--full { grid-column: 1 / -1; }

.field label { font-size: .85rem; font-weight: 700; }

.field input,
.field select,
.field textarea {
  font-family: var(--font-body);
  font-size: .95rem;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid var(--line);
  border-radius: 12px;
  padding: .75rem .95rem;
  transition: border-color .25s var(--ease), box-shadow .25s var(--ease);
  width: 100%;
}

.field textarea { resize: vertical; min-height: 120px; }

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 4px var(--coral-soft);
}

.form-note { grid-column: 1 / -1; font-size: .78rem; color: var(--ink-40); }

/* visual pickers (service) — real radios underneath, styled cards on top */
.picker-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .6rem;
}

.pick { position: relative; display: block; cursor: pointer; }

.pick-input {
  position: absolute;
  opacity: 0;
  width: 1px;
  height: 1px;
}

.pick-body {
  display: flex;
  align-items: center;
  gap: .65rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: .7rem .85rem;
  background: var(--paper);
  font-size: .85rem;
  font-weight: 700;
  line-height: 1.25;
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .3s var(--ease-spring), box-shadow .3s var(--ease);
}

.pick-body .pk-ic {
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  display: grid;
  place-items: center;
  background: var(--sand);
  color: var(--ink-80);
  transition: background-color .25s var(--ease), color .25s var(--ease), transform .35s var(--ease-spring);
}

.pick-body .pk-ic svg { width: 17px; height: 17px; }

.pick:hover .pick-body { border-color: var(--ink-40); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.pick-input:checked + .pick-body {
  border-color: var(--coral);
  background: var(--coral-soft);
  box-shadow: var(--shadow-sm);
}

.pick-input:checked + .pick-body .pk-ic {
  background: var(--coral);
  color: var(--white);
  transform: rotate(-6deg) scale(1.08);
}

.pick-input:focus-visible + .pick-body {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* budget pills */
.pill-group { display: flex; flex-wrap: wrap; gap: .5rem; }

.pill { position: relative; cursor: pointer; }

.pill .pick-input { position: absolute; opacity: 0; width: 1px; height: 1px; }

.pill-body {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: .05rem;
  border: 1.5px solid var(--line);
  border-radius: 14px;
  padding: .5rem 1rem;
  background: var(--paper);
  transition: border-color .25s var(--ease), background-color .25s var(--ease), transform .3s var(--ease-spring), box-shadow .3s var(--ease);
}

.pill-body b { font-size: .95rem; font-weight: 800; line-height: 1.2; }
.pill-body span { font-size: .68rem; font-weight: 700; color: var(--ink-40); letter-spacing: .04em; text-transform: uppercase; }

.pill:hover .pill-body { border-color: var(--ink-40); transform: translateY(-2px); box-shadow: var(--shadow-sm); }

.pill .pick-input:checked + .pill-body {
  border-color: var(--coral);
  background: var(--coral-soft);
  box-shadow: var(--shadow-sm);
}

.pill .pick-input:checked + .pill-body span { color: var(--coral-dark); }

.pill .pick-input:focus-visible + .pill-body {
  outline: 3px solid var(--teal);
  outline-offset: 2px;
}

/* live quote sketch */
.sketch-card {
  background: linear-gradient(145deg, var(--cream) 0%, var(--sand) 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.5rem 1.7rem;
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: clip;
  margin-bottom: 1.2rem;
}

.sketch-card .sun-mini {
  position: absolute;
  right: -50px;
  top: -50px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--coral) 0%, rgba(240, 96, 58, 0) 68%);
  opacity: .22;
  pointer-events: none;
}

.sketch-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .7rem;
  font-weight: 800;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--coral-dark);
  margin-bottom: .8rem;
}

.sketch-label svg { width: 14px; height: 14px; }

.sketch-line {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 500;
  font-size: clamp(1.15rem, 2vw, 1.4rem);
  line-height: 1.45;
  color: var(--ink);
  transition: opacity .25s var(--ease);
}

.sketch-line .sk { color: var(--coral-dark); }
.sketch-line.swap { opacity: .35; }

.sketch-foot { margin-top: .8rem; font-size: .78rem; font-weight: 600; color: var(--ink-60); }

.hp { position: absolute; left: -9999px; opacity: 0; height: 0; overflow: hidden; }

.contact-cards { display: grid; gap: 1rem; }

.contact-card {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.2rem 1.4rem;
  box-shadow: var(--shadow-sm);
  transition: transform .35s var(--ease-spring), box-shadow .35s var(--ease);
}

a.contact-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }

.contact-card .icon-tile { width: 46px; height: 46px; border-radius: 13px; flex: 0 0 46px; }
.contact-card .icon-tile svg { width: 20px; height: 20px; }

.contact-card b { display: block; font-size: .95rem; }
.contact-card span { font-size: .85rem; color: var(--ink-60); }

.reply-pill {
  display: inline-flex;
  align-items: center;
  gap: .55rem;
  background: var(--teal-soft);
  color: var(--teal);
  font-size: .82rem;
  font-weight: 700;
  border-radius: 999px;
  padding: .55rem 1.1rem;
}

.reply-pill .pulse {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--teal);
  animation: pulse 1.8s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(23, 162, 160, .45); }
  50% { box-shadow: 0 0 0 7px rgba(23, 162, 160, 0); }
}

/* ---------- values (about) ---------- */

.value-card .icon-tile { width: 50px; height: 50px; }

/* ---------- reveal on scroll ---------- */

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .7s var(--ease), transform .7s var(--ease);
}

.reveal.in { opacity: 1; transform: none; }

.reveal-d1 { transition-delay: .08s; }
.reveal-d2 { transition-delay: .16s; }
.reveal-d3 { transition-delay: .24s; }
.reveal-d4 { transition-delay: .32s; }
.reveal-d5 { transition-delay: .4s; }

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

@media (max-width: 980px) {
  .hero-in { grid-template-columns: 1fr; }
  .hero-stage { min-height: clamp(320px, 60vw, 460px); margin-bottom: 3rem; }
  .why-grid, .feature, .contact-grid { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr 1fr; }
  .price-grid { grid-template-columns: 1fr; max-width: 520px; margin-inline: auto; }
  .price-card--pop { order: -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  .nav-toggle { display: grid; }
  .nav-social { display: none; }
  .nav-links {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    padding: 1.2rem clamp(1.25rem, 4vw, 2rem) 1.6rem;
    gap: .3rem;
    display: none;
  }
  .nav-open .nav-links { display: flex; }
  .nav-links a:not(.btn) { padding-block: .65rem; font-size: 1.05rem; }
  .nav-links .nav-cta { margin-top: .8rem; justify-content: center; }
  .grid-3, .grid-2 { grid-template-columns: 1fr; }
  .stat-grid { grid-template-columns: 1fr 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .picker-grid { grid-template-columns: 1fr; }
  .pill-group .pill { flex: 1 1 45%; }
  .pill-body { width: 100%; }
  .care-strip { flex-direction: column; align-items: flex-start; }
}

/* ---------- reduced motion ---------- */

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