/* Schafs Design — studio site
   Palette, type, and background gradient follow the brief exactly. */

:root {
  --canvas: #AFD8F0;
  --frame: #FFFFFF;
  --ink: #14202B;
  --ink-soft: #4A6173;
  --ink-faint: #8AA6B8;
  --brand: #F0531C;
  --brand-deep: #D2410E;
  --tool: #0D99FF;
  --blue: var(--tool);
  --faint: var(--ink-faint);
  --grid: #EFEEE9;
  --line: #14202b12;
  --line-2: #14202b22;
  --soft: #F1F6FA;
  --sh: 0 20px 50px -32px rgba(20, 19, 16, .32);
  --mono: 'Space Mono', ui-monospace, monospace;
  --display: 'Bricolage Grotesque', sans-serif;
  --body: 'Hanken Grotesk', system-ui, sans-serif;
  --hand: 'Shantell Sans', cursive;

  --max: 1180px;
  --gap: clamp(1rem, 2.5vw, 2rem);
  --radius-lg: 28px;
  --radius-md: 18px;
  --radius-sm: 10px;
}

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

html {
  scroll-behavior: smooth;
}

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

body {
  margin: 0;
  font-family: var(--body);
  background:
    radial-gradient(130% 95% at 82% -18%, rgba(255, 255, 255, .7) 0%, rgba(255, 255, 255, 0) 40%),
    radial-gradient(120% 80% at 10% 118%, rgba(196, 230, 255, .75) 0%, rgba(196, 230, 255, 0) 52%),
    linear-gradient(180deg, #3E97E2 0%, #5EAEEA 40%, #86C4EF 76%, #AcD8F4 100%);
  background-attachment: fixed;
  color: var(--ink);
  -webkit-font-smoothing: antialiased;
  overflow-x: clip;
  line-height: 1.45;
  position: relative;
}

/* background-attachment: fixed is unreliable on iOS Safari (glitchy repaints,
   occasionally broken layout) — fall back to normal scrolling background on
   touch devices and narrow screens, where the fixed/parallax effect isn't
   noticeable anyway. */
@media (max-width: 820px), (pointer: coarse) {
  body {
    background-attachment: scroll;
  }
}

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

a {
  color: inherit;
}

button {
  font-family: inherit;
}

/* Focus visibility */
a:focus-visible,
button:focus-visible,
summary:focus-visible,
input:focus-visible {
  outline: 3px solid var(--tool);
  outline-offset: 3px;
  border-radius: 6px;
}

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

/* ---------- cloud backdrop ---------- */
.clouds {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  /* wide, mostly-empty viewBox so the repeating tile reads as sparse drifting
     clouds rather than a wall-to-wall pattern once it's tiled both ways.
     three differently-shaped cloud clusters are stacked into one tall tile
     (each its own row, at a different x offset) so consecutive rows don't
     look like copies of each other. */
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='860' height='1560' viewBox='0 0 860 1560'%3E%3Cg fill='white' opacity='0.55'%3E%3Cellipse cx='90' cy='70' rx='90' ry='36'/%3E%3Cellipse cx='150' cy='50' rx='55' ry='26'/%3E%3Cellipse cx='40' cy='55' rx='42' ry='22'/%3E%3C/g%3E%3Cg fill='white' opacity='0.35'%3E%3Cellipse cx='115' cy='140' rx='36' ry='16'/%3E%3C/g%3E%3Cg fill='white' opacity='0.5'%3E%3Cellipse cx='560' cy='650' rx='58' ry='24'/%3E%3Cellipse cx='610' cy='632' rx='36' ry='18'/%3E%3Cellipse cx='520' cy='665' rx='30' ry='15'/%3E%3C/g%3E%3Cg fill='white' opacity='0.3'%3E%3Cellipse cx='640' cy='670' rx='20' ry='10'/%3E%3C/g%3E%3Cg fill='white' opacity='0.45'%3E%3Cellipse cx='260' cy='1160' rx='100' ry='16'/%3E%3Cellipse cx='340' cy='1150' rx='55' ry='13'/%3E%3Cellipse cx='190' cy='1170' rx='40' ry='11'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: repeat;
  background-position: -40px 0;
  background-size: 860px 1560px;
  opacity: 0.7;
  animation: cloud-drift 110s linear infinite;
}

@keyframes cloud-drift {
  from {
    background-position: -40px 0;
  }
  to {
    /* exactly one tile width to the right so the loop is seamless */
    background-position: 820px 0;
  }
}

section,
header,
footer {
  position: relative;
  z-index: 1;
}

/* ---------- eyebrow / hand labels ---------- */
.eyebrow {
  font-family: var(--hand);
  /* ink, not brand-deep: background-attachment:fixed means this label can land
     against the darkest stop of the gradient at any scroll position, where the
     lighter brand orange drops under 2:1 contrast */
  color: var(--ink);
  font-size: clamp(1rem, 1.2vw + .6rem, 1.25rem);
  display: block;
  margin-bottom: .35rem;
}

.tag-pill {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: var(--frame);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: .4rem .9rem;
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-soft);
  box-shadow: var(--sh);
}

.tag-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1CA362;
  flex: none;
}

h1, h2, h3 {
  font-family: var(--display);
  color: var(--ink);
  line-height: 1.05;
  letter-spacing: -0.02em;
  margin: 0;
}

h2 {
  font-size: clamp(2.1rem, 4.2vw, 3.4rem);
  font-weight: 700;
}

.section-head {
  text-align: center;
  max-width: 640px;
  margin: 0 auto clamp(2rem, 5vw, 3.5rem);
}

.section-head p {
  color: var(--ink);
  margin-top: .9rem;
  font-size: 1.05rem;
}

.section {
  padding: clamp(3.5rem, 8vw, 6.5rem) 0;
}

/* ---------- buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-weight: 600;
  font-size: .95rem;
  padding: .8rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  text-decoration: none;
  min-height: 44px;
  transition: transform .15s ease, background .15s ease, border-color .15s ease;
}

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

.btn-primary {
  /* brand-deep, not brand: white-on-brand measures ~3.5:1, short of the 4.5:1
     floor for normal-size button text; brand-deep clears it at ~4.7:1 */
  background: var(--brand-deep);
  color: #fff;
}

.btn-primary:hover {
  filter: brightness(0.9);
}

.btn-outline {
  background: var(--frame);
  border-color: var(--line-2);
  color: var(--ink);
}

.btn-outline:hover {
  border-color: var(--ink-faint);
}

/* An sms: link only does something on a phone. On a desktop pointer, spell the
   number out instead so the visitor can message it from their own handset. */
.cta-msg-full {
  display: none;
}

@media (hover: hover) and (pointer: fine) {
  .cta-msg-short {
    display: none;
  }

  .cta-msg-full {
    display: inline;
  }
}

.btn-dark {
  background: var(--ink);
  color: #fff;
}

.btn-dark:hover {
  background: #24384a;
}

/* ================= HEADER ================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  padding-top: clamp(.9rem, 2vw, 1.4rem);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand-mark {
  display: flex;
  align-items: center;
  gap: .6rem;
  text-decoration: none;
  flex: none;
}

.brand-mark img {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: #0b0f13;
  object-fit: cover;
}

.brand-mark span {
  font-family: var(--mono);
  font-size: .82rem;
  letter-spacing: .06em;
  color: var(--ink);
  font-weight: 700;
  white-space: nowrap;
}

.pill-nav {
  display: none;
  align-items: center;
  gap: .2rem;
  background: rgba(255, 255, 255, .78);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line-2);
  border-radius: 999px;
  padding: .35rem;
  box-shadow: var(--sh);
}

.pill-nav a {
  text-decoration: none;
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  padding: .55rem 1rem;
  border-radius: 999px;
  transition: background .15s ease, color .15s ease;
}

.pill-nav a:hover,
.pill-nav a:focus-visible {
  background: var(--soft);
  color: var(--ink);
}

.header-actions {
  display: none;
  align-items: center;
  gap: .6rem;
  flex: none;
}

.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 999px;
  border: 1px solid var(--line-2);
  background: var(--frame);
  box-shadow: var(--sh);
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: var(--ink);
  position: relative;
  transition: transform .2s ease, opacity .2s ease;
}

.menu-toggle span::before {
  position: absolute;
  top: -6px;
}

.menu-toggle span::after {
  position: absolute;
  top: 6px;
}

.menu-toggle[aria-expanded="true"] span {
  background: transparent;
}

.menu-toggle[aria-expanded="true"] span::before {
  transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle[aria-expanded="true"] span::after {
  transform: rotate(-45deg) translate(4px, -5px);
}

.mobile-menu {
  display: none;
  flex-direction: column;
  gap: .2rem;
  background: var(--frame);
  border: 1px solid var(--line-2);
  border-radius: var(--radius-md);
  box-shadow: var(--sh);
  margin-top: .7rem;
  padding: .6rem;
}

.mobile-menu.open {
  display: flex;
}

.mobile-menu a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 600;
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  min-height: 44px;
  display: flex;
  align-items: center;
}

.mobile-menu a:hover {
  background: var(--soft);
}

.mobile-menu .tag-pill {
  margin: .4rem .25rem 0;
}

@media (min-width: 900px) {
  .pill-nav {
    display: flex;
  }
  .menu-toggle {
    display: none;
  }
}

@media (min-width: 1200px) {
  /* below this, the nav links + logo already fill the row; the availability
     and email pills have nowhere to go without overflowing */
  .header-actions {
    display: flex;
  }
}

/* ================= HERO ================= */
.hero {
  padding-top: clamp(2.5rem, 6vw, 4rem);
  padding-bottom: clamp(2.5rem, 6vw, 4rem);
}

.hero-top {
  display: flex;
  justify-content: center;
  margin-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.hero h1 {
  font-size: clamp(2.6rem, 8vw, 6.4rem);
  text-align: center;
  text-transform: uppercase;
}

.hero-sub {
  max-width: 640px;
  margin: clamp(1.25rem, 3vw, 1.75rem) auto 0;
  text-align: center;
}

.hero-sub .eyebrow {
  text-align: center;
}

.hero-sub p {
  color: var(--ink);
  font-size: 1.08rem;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .8rem;
  margin-top: clamp(1.5rem, 3vw, 2.2rem);
}

.hero-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--ink);
  flex-wrap: wrap;
}

.hero-meta div:last-child {
  text-align: right;
}

.hero-meta strong {
  display: block;
  color: var(--ink);
  font-size: .78rem;
  margin-bottom: .2rem;
}

/* ================= ABOUT / BENTO ================= */
.bento {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: var(--gap);
}

.card {
  background: var(--frame);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  padding: clamp(1.4rem, 3vw, 2rem);
}

.card-quote {
  grid-column: span 6;
}

.card-quote .quote-mark {
  font-family: var(--display);
  font-size: 3rem;
  color: var(--brand);
  line-height: 1;
  margin-bottom: .5rem;
}

.card-quote blockquote {
  margin: 0;
  font-family: var(--display);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  font-weight: 600;
  color: var(--ink);
}

.card-quote blockquote span {
  color: var(--brand);
}

.card-quote p {
  color: var(--ink-soft);
  margin-top: .9rem;
  max-width: 55ch;
}

.card-quote footer {
  margin-top: 1.25rem;
  padding-top: 1rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  font-family: var(--mono);
  font-size: .72rem;
  color: var(--ink-soft);
  flex-wrap: wrap;
  gap: .5rem;
}

.card-facts {
  grid-column: span 3;
  background: var(--ink);
  color: #fff;
}

.card-facts .label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  color: #ffffffa0;
  text-transform: uppercase;
}

.card-facts ul {
  list-style: none;
  margin: 1rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .85rem;
}

.card-facts li {
  display: flex;
  align-items: baseline;
  gap: .6rem;
}

.card-facts strong {
  font-family: var(--display);
  font-size: 1.4rem;
  color: var(--brand);
  flex: none;
}

.card-facts span {
  color: #dfe9f0;
  font-size: .92rem;
}

.card-caps {
  grid-column: span 3;
}

.card-caps .label,
.card-build .label,
.card-review .label {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.card-caps .label,
.card-review .label {
  color: var(--ink-soft);
}

.card-build .label {
  color: #ffffffa0;
}

.pill-group {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
  margin-top: 1rem;
}

.pill-group span {
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: .4rem .85rem;
  font-size: .82rem;
  color: var(--ink-soft);
  font-weight: 600;
}

.card-build {
  grid-column: span 3;
  background: var(--ink);
  color: #fff;
}

.card-build p {
  font-family: var(--display);
  font-size: 1.15rem;
  font-weight: 600;
  margin-top: .8rem;
  color: #fff;
}

.card-build .pill-group span {
  background: #ffffff14;
  border-color: #ffffff24;
  color: #dfe9f0;
}

.card-review {
  grid-column: span 3;
}

.stars {
  color: var(--brand);
  letter-spacing: .1em;
  font-size: .95rem;
}

.card-review p {
  margin-top: .7rem;
  color: var(--ink);
  font-size: .95rem;
}

.card-review cite {
  display: block;
  margin-top: .8rem;
  font-style: normal;
  font-weight: 700;
  font-size: .85rem;
  color: var(--ink-soft);
}

@media (max-width: 860px) {
  .bento {
    grid-template-columns: 1fr 1fr;
  }
  .card-quote {
    grid-column: span 2;
  }
  .card-facts,
  .card-caps,
  .card-build,
  .card-review {
    grid-column: span 2;
  }
}

@media (max-width: 560px) {
  .bento {
    grid-template-columns: 1fr;
  }
  .card-quote,
  .card-facts,
  .card-caps,
  .card-build,
  .card-review {
    grid-column: span 1;
  }
}

/* ================= PROCESS ================= */
.thread {
  max-width: 640px;
  margin: 0 auto;
  background: var(--frame);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  overflow: hidden;
}

.thread-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: .9rem 1.2rem;
  border-bottom: 1px solid var(--line);
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--ink-soft);
}

.thread-dots {
  display: flex;
  gap: .4rem;
}

.thread-dots span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--line-2);
}

.thread-online {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .72rem;
}

.thread-online .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: #1CA362;
}

.thread-body {
  padding: 1.4rem 1.2rem;
}

.thread-step {
  font-family: var(--mono);
  font-size: .68rem;
  letter-spacing: .1em;
  color: var(--brand-deep);
  text-align: center;
  margin: 1.4rem 0 .9rem;
  display: flex;
  align-items: center;
  gap: .7rem;
}

.thread-step::before,
.thread-step::after {
  content: "";
  flex: 1;
  height: 1px;
  background: var(--line-2);
}

.thread-step:first-child {
  margin-top: 0;
}

.msg {
  display: flex;
  gap: .7rem;
  margin-bottom: .9rem;
  max-width: 85%;
}

.msg .who {
  flex: none;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--mono);
  font-size: .72rem;
  font-weight: 700;
  color: #fff;
}

.msg.you {
  margin-left: auto;
  flex-direction: row-reverse;
}

.msg.you .who {
  /* darker than --tool: white initials on the raw token measure ~3:1 at this size */
  background: #0A6FB8;
}

.msg.studio .who {
  background: var(--brand-deep);
}

.msg .bubble {
  background: var(--soft);
  border-radius: var(--radius-sm);
  padding: .6rem .9rem;
  font-size: .92rem;
  color: var(--ink);
}

.msg.you .bubble {
  background: #e7f2fb;
}

/* ================= SERVICES ================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.service-card {
  background: var(--frame);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  padding: clamp(1.5rem, 3vw, 2rem);
  display: flex;
  flex-direction: column;
}

.service-num {
  font-family: var(--mono);
  font-size: .78rem;
  color: var(--ink-soft);
  background: var(--soft);
  border-radius: 999px;
  width: 2.2rem;
  height: 2.2rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
}

.service-card h3 {
  font-size: 1.4rem;
}

.service-card h3 span {
  display: block;
  color: var(--brand);
}

.service-card p {
  color: var(--ink-soft);
  margin-top: .7rem;
  font-size: .95rem;
}

.service-card .pill-group {
  margin-top: auto;
  padding-top: 1.2rem;
}

.service-card .pill-group span {
  background: var(--soft);
}

@media (max-width: 860px) {
  .services-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TEAM ================= */
.team-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--gap);
}

.team-card {
  background: var(--frame);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  overflow: hidden;
}

.team-photo {
  aspect-ratio: 1 / 1;
  overflow: hidden;
}

.team-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.team-info {
  padding: 1.1rem 1.2rem 1.4rem;
}

.team-info h3 {
  font-size: 1.1rem;
}

.team-role {
  font-family: var(--mono);
  font-size: .72rem;
  letter-spacing: .04em;
  color: var(--brand-deep);
  text-transform: uppercase;
  margin-top: .3rem;
  display: block;
}

.team-info p {
  color: var(--ink-soft);
  font-size: .88rem;
  margin-top: .7rem;
}

@media (max-width: 860px) {
  .team-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .team-grid {
    grid-template-columns: 1fr;
  }
}

.founder-highlight {
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-top: clamp(2rem, 5vw, 3rem);
  text-align: center;
}

.founder-highlight .eyebrow {
  text-align: center;
}

.founder-card {
  width: 100%;
  max-width: 320px;
}

/* ================= COMPARISON ================= */
.compare {
  background: var(--frame);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  padding: clamp(1.4rem, 3vw, 1.8rem);
  max-width: 900px;
  margin: 0 auto;
}

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

.compare-col {
  border-radius: var(--radius-md);
  padding: 1.4rem;
}

.compare-col.muted {
  background: var(--soft);
}

.compare-col.picked {
  background: var(--ink);
  color: #fff;
}

.compare-col h4 {
  font-family: var(--mono);
  font-size: .75rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin: 0 0 1rem;
}

.compare-col.picked h4 {
  color: #ffffffa0;
}

.compare-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .8rem;
  font-size: .92rem;
}

.compare-col li {
  display: flex;
  gap: .6rem;
  align-items: flex-start;
}

.compare-col.muted li {
  color: var(--ink-soft);
}

.compare-col.picked li {
  color: #dfe9f0;
}

.mark {
  flex: none;
  font-weight: 700;
}

.compare-col.muted .mark {
  color: var(--ink-soft);
}

.compare-col.picked .mark {
  color: var(--brand);
}

.compare-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
}

.compare-foot p {
  font-weight: 700;
  font-size: 1rem;
}

.compare-foot p span {
  color: var(--brand-deep);
}

@media (max-width: 640px) {
  .compare-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= TESTIMONIALS ================= */
.testi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--gap);
}

.testi-card {
  background: var(--frame);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  padding: 1.6rem;
}

.testi-card p {
  margin-top: .8rem;
  font-size: .96rem;
  color: var(--ink);
}

.testi-card cite {
  display: block;
  margin-top: 1rem;
  font-style: normal;
  font-weight: 700;
  font-size: .85rem;
}

.testi-card cite span {
  display: block;
  font-weight: 400;
  color: var(--ink-soft);
  font-size: .8rem;
}

@media (max-width: 860px) {
  .testi-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= CONTACT CTA ================= */
.contact-cta {
  text-align: center;
}

.contact-icon {
  width: 3rem;
  height: 3rem;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  background: var(--ink);
  display: flex;
  align-items: center;
  justify-content: center;
}

.contact-icon svg {
  width: 1.3rem;
  height: 1.3rem;
}

#day-line {
  max-width: 480px;
  margin: 1rem auto 0;
  color: var(--ink);
}

#day-line strong {
  color: var(--ink);
}

.contact-cta .hero-ctas {
  margin-top: 1.8rem;
}

/* ================= PRICING ================= */
.pricing-note {
  text-align: center;
  color: var(--ink);
  font-size: .92rem;
  margin-top: -1.6rem;
  margin-bottom: 2.5rem;
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--gap);
  max-width: 900px;
}

.pricing-grid-single {
  grid-template-columns: 1fr;
  max-width: 440px;
  margin: 0 auto;
}

.price-card {
  background: var(--frame);
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  box-shadow: var(--sh);
  padding: clamp(1.6rem, 3vw, 2.2rem);
  position: relative;
}

.price-card.featured {
  border: 2px solid var(--brand);
}

.price-badge {
  position: absolute;
  top: -0.75rem;
  right: 1.4rem;
  background: var(--brand-deep);
  color: #fff;
  font-size: .7rem;
  font-weight: 700;
  padding: .3rem .7rem;
  border-radius: 999px;
}

.price-card h3 {
  font-size: 1.15rem;
}

.price-amount {
  font-family: var(--display);
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 700;
  margin-top: .5rem;
}

.price-amount span {
  font-family: var(--body);
  font-size: .9rem;
  font-weight: 500;
  color: var(--ink-soft);
}

.price-card > p {
  color: var(--ink-soft);
  font-size: .92rem;
  margin-top: .7rem;
}

.price-card ul {
  list-style: none;
  margin: 1.3rem 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .65rem;
  font-size: .9rem;
}

.price-card li {
  display: flex;
  gap: .5rem;
}

.price-card li .mark {
  color: var(--brand);
}

.price-card .btn {
  margin-top: 1.5rem;
  width: 100%;
  justify-content: center;
}

@media (max-width: 640px) {
  .pricing-grid {
    grid-template-columns: 1fr;
  }
}

/* ================= FAQ ================= */
.faq-list {
  max-width: 720px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: .8rem;
}

.faq-item {
  background: var(--frame);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: var(--sh);
  overflow: hidden;
}

.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 1.1rem 1.3rem;
  display: flex;
  align-items: center;
  gap: .9rem;
  min-height: 44px;
}

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

.faq-tag {
  font-family: var(--mono);
  font-size: .68rem;
  color: #0A6FB8;
  background: #0d99ff14;
  border-radius: 999px;
  padding: .2rem .55rem;
  flex: none;
}

.faq-item summary span.q {
  font-weight: 700;
  flex: 1;
}

.faq-item summary .plus {
  font-size: 1.3rem;
  color: var(--ink-soft);
  flex: none;
  transition: transform .2s ease;
}

.faq-item[open] summary .plus {
  transform: rotate(45deg);
}

.faq-item .a {
  padding: 0 1.3rem 1.2rem 1.3rem;
  color: var(--ink-soft);
  font-size: .92rem;
  max-width: 68ch;
}

/* ================= FOOTER ================= */
.site-footer {
  background: var(--ink);
  color: #fff;
  border-radius: clamp(20px, 4vw, 40px) clamp(20px, 4vw, 40px) 0 0;
  padding-top: clamp(2.5rem, 6vw, 4rem);
  margin-top: clamp(2rem, 5vw, 3rem);
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  padding-bottom: clamp(2rem, 5vw, 3rem);
  border-bottom: 1px solid #ffffff1c;
}

.footer-cta .eyebrow {
  color: #ff8a5f;
}

.footer-email {
  font-family: var(--display);
  font-size: clamp(1.5rem, 3.4vw, 2.2rem);
  color: #fff;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
}

.footer-cta .hero-ctas {
  justify-content: flex-start;
  margin-top: 1.3rem;
}

.footer-cta .tag-pill {
  background: #ffffff14;
  border-color: #ffffff28;
  color: #dfe9f0;
  box-shadow: none;
}

.footer-links {
  display: flex;
  gap: clamp(2rem, 6vw, 4.5rem);
  flex-wrap: wrap;
}

.footer-col h5 {
  font-family: var(--mono);
  font-size: .7rem;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: #ffffff70;
  margin: 0 0 .9rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: .6rem;
}

.footer-col a {
  color: #dfe9f0;
  text-decoration: none;
  font-size: .92rem;
}

.footer-col a:hover {
  color: #fff;
}

.footer-wordmark {
  font-family: var(--display);
  font-weight: 800;
  font-size: clamp(3.2rem, 14vw, 9rem);
  line-height: 1;
  letter-spacing: -0.03em;
  white-space: nowrap;
  overflow: hidden;
  padding: clamp(1rem, 4vw, 2rem) 0 0;
  margin-inline: clamp(-1rem, -4vw, -2rem);
  text-align: center;
}

.footer-wordmark .accent {
  color: var(--brand);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  padding: 1.2rem clamp(1.25rem, 4vw, 2.5rem);
  font-family: var(--mono);
  font-size: .72rem;
  color: #ffffff70;
  border-top: 1px solid #ffffff1c;
}

.footer-bottom .dot {
  color: #1CA362;
}

@media (max-width: 640px) {
  .footer-top {
    flex-direction: column;
  }
}
