/* Pinellas Web Studio · v2
   Editorial layout: warm off-white surface, deep navy, restrained teal accent.
   Type pairing: Fraunces (display serif) + Inter (UI sans).
*/

:root {
  /* Brand */
  --navy:        #14233D;
  --navy-deep:   #0E1A2E;
  --navy-soft:   #2A3A55;
  --blue:        #1F6FB2;
  --teal:        #3FA9A8;
  --teal-deep:   #2F8786;

  /* Surfaces */
  --bg:          #FBF8F2;   /* warm off-white */
  --bg-card:    #FFFFFF;
  --bg-band:     #F1ECDF;   /* sand */
  --bg-band-2:   #ECE4D2;   /* deeper sand */
  --line:        #E3DCCB;   /* hairline against warm bg */
  --line-soft:   #ECE6D7;

  /* Text */
  --ink:         #131A26;
  --ink-soft:    #44505F;
  --ink-mute:    #6E7989;
  --ink-faint:   #9AA3AF;
  --ink-on-dark: #EFE9DC;
  --ink-on-dark-soft: #B6BFCE;

  /* Type */
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --font-serif: "Fraunces", "Iowan Old Style", "Charter", Georgia, "Times New Roman", serif;

  /* Geometry */
  --radius-xs: 4px;
  --radius-sm: 8px;
  --radius:    14px;
  --radius-lg: 22px;
  --container: 1180px;

  /* Shadows: subtle, used sparingly */
  --shadow-sm: 0 1px 2px rgba(20, 30, 50, 0.04);
  --shadow-md: 0 8px 24px rgba(20, 30, 50, 0.06), 0 1px 2px rgba(20,30,50,0.04);
  --shadow-lg: 0 24px 60px rgba(20, 30, 50, 0.10), 0 2px 4px rgba(20, 30, 50, 0.04);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
html, body { margin: 0; padding: 0; }
body {
  font-family: var(--font-sans);
  font-size: 16.5px;
  line-height: 1.6;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--teal-deep); }

/* ---------- Type ---------- */

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: normal;
  color: var(--navy);
  margin: 0 0 0.5em 0;
  line-height: 1.08;
  letter-spacing: -0.01em;
  font-variation-settings: "SOFT" 50, "WONK" 0, "opsz" 144;
}
h1 {
  font-size: clamp(2.4rem, 5.4vw, 4rem);
  letter-spacing: -0.025em;
  line-height: 1.02;
}
h2 {
  font-size: clamp(1.7rem, 3.6vw, 2.6rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
}
h3 {
  font-size: 1.18rem;
  font-family: var(--font-sans);
  font-weight: 600;
  letter-spacing: -0.005em;
  line-height: 1.3;
}
h4 {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.98rem;
}

p { margin: 0 0 1em 0; color: var(--ink-soft); }

.lede {
  font-size: clamp(1.05rem, 1.6vw, 1.18rem);
  color: var(--ink-soft);
  line-height: 1.55;
}

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
}

/* Italicize select words for editorial flair */
.serif-italic {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 400;
  font-variation-settings: "SOFT" 50, "WONK" 1, "opsz" 144;
  color: var(--teal-deep);
}

/* ---------- Container ---------- */

.container { max-width: var(--container); margin: 0 auto; padding: 0 28px; }

@media (max-width: 600px) { .container { padding: 0 22px; } }

/* ---------- Header ---------- */

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(251, 248, 242, 0.85);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}
.site-header.is-scrolled { border-bottom-color: var(--line); }
.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}
.brand { display: inline-flex; align-items: center; gap: 10px; }
.brand img { height: 28px; width: auto; }

.nav { display: flex; gap: 30px; align-items: center; }
.nav a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.nav a:hover { color: var(--navy); }
.nav-cta {
  color: var(--navy) !important;
  border: 1px solid var(--navy);
  border-radius: 999px;
  padding: 9px 16px;
  font-weight: 500;
  transition: background 0.18s ease, color 0.18s ease;
}
.nav-cta:hover { background: var(--navy); color: var(--bg) !important; }

.nav-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 999px;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 20px; height: 20px; color: var(--navy); }

@media (max-width: 820px) {
  .nav-toggle { display: inline-flex; }
  .nav {
    position: absolute;
    top: 76px; left: 0; right: 0;
    background: var(--bg);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 14px;
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    display: none;
  }
  .nav.is-open { display: flex; }
  .nav a {
    padding: 14px 28px;
    font-size: 1.05rem;
    border-bottom: 1px solid var(--line-soft);
  }
  .nav a:last-child { border-bottom: none; }
  .nav-cta { margin: 12px 28px 0; text-align: center; }
}

/* ---------- Buttons ---------- */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 13px 22px;
  border-radius: 999px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.97rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.06s ease, background 0.18s ease, color 0.18s ease, border-color 0.18s ease;
  text-decoration: none;
  letter-spacing: 0.01em;
}
.btn:active { transform: translateY(1px); }
.btn-primary { background: var(--navy); color: var(--bg); }
.btn-primary:hover { background: var(--navy-deep); color: var(--bg); }
.btn-ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn-ghost:hover { background: var(--navy); color: var(--bg); }
.btn-link {
  padding: 0;
  border: none;
  background: transparent;
  color: var(--navy);
  font-weight: 500;
  text-decoration: underline;
  text-decoration-color: var(--teal-deep);
  text-underline-offset: 4px;
  text-decoration-thickness: 1.5px;
}
.btn-link:hover { color: var(--teal-deep); }

/* ---------- Hero ---------- */

.hero {
  padding: 96px 0 72px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(900px 320px at 88% -10%, rgba(63, 169, 168, 0.10), transparent 70%),
    radial-gradient(800px 360px at -10% 110%, rgba(31, 111, 178, 0.06), transparent 70%);
  pointer-events: none;
}
.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 64px;
  align-items: center;
}
.hero__copy { max-width: 580px; }
.hero h1 { margin: 18px 0 22px; }
.hero .lede { max-width: 520px; margin-bottom: 32px; }
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__meta {
  margin-top: 36px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  font-size: 0.9rem;
  color: var(--ink-mute);
}
.hero__meta > div { display: flex; flex-direction: column; }
.hero__meta strong { color: var(--navy); font-weight: 600; font-size: 0.95rem; margin-bottom: 2px; }
.hero__meta span { color: var(--ink-mute); }

.hero__price-strip {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
  gap: 22px;
  margin-top: 28px;
  padding: 16px 22px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink-soft);
  box-shadow: var(--shadow-sm);
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}
.hero__price-strip:hover {
  border-color: var(--navy-soft);
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
  color: var(--ink-soft);
}
.hero__price-strip-grid {
  flex: 1 1 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 6px;
  min-width: 0;
}
.hero__price-cell {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 4px;
  padding-left: 16px;
  border-left: 1px solid var(--line-soft);
  flex: 0 0 auto;
}
.hero__price-cell:first-child { border-left: none; padding-left: 0; }
.hero__price-cell strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.1rem;
  color: var(--navy);
  letter-spacing: -0.015em;
  line-height: 1;
  white-space: nowrap;
}
.hero__price-cell strong small {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 500;
  color: var(--ink-mute);
  letter-spacing: 0;
  margin-left: 1px;
}
.hero__price-cell span {
  font-family: var(--font-sans);
  font-size: 0.74rem;
  font-weight: 500;
  color: var(--ink-mute);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  line-height: 1;
}
.hero__price-strip-cta {
  flex-shrink: 0;
  align-self: center;
  font-family: var(--font-sans);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--teal-deep);
  white-space: nowrap;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding-left: 18px;
  border-left: 1px solid var(--line-soft);
}
.hero__price-strip-cta-arrow {
  display: inline-block;
  transition: transform 0.18s ease;
}
.hero__price-strip:hover .hero__price-strip-cta-arrow { transform: translateX(3px); }

/* Between 940px (hero stacks) and 1180px the hero left column is too narrow
   for a 4-across price strip, so collapse to a 2x2 grid in that range too. */
@media (min-width: 941px) and (max-width: 1180px) {
  .hero__price-strip { padding: 14px 18px; }
  .hero__price-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0;
    row-gap: 12px;
    justify-content: stretch;
  }
  .hero__price-cell { padding-left: 14px; }
  .hero__price-cell:nth-child(odd) { border-left: none; padding-left: 0; }
  .hero__price-cell:nth-child(3),
  .hero__price-cell:nth-child(4) {
    padding-top: 12px;
    border-top: 1px solid var(--line-soft);
  }
}
@media (max-width: 720px) {
  .hero__price-strip {
    flex-direction: column;
    align-items: stretch;
    gap: 14px;
    padding: 16px 18px;
  }
  .hero__price-strip-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    column-gap: 0;
    row-gap: 14px;
    justify-content: stretch;
  }
  .hero__price-cell { padding-left: 14px; }
  .hero__price-cell:nth-child(odd) { border-left: none; padding-left: 0; }
  .hero__price-cell:nth-child(3),
  .hero__price-cell:nth-child(4) {
    padding-top: 14px;
    border-top: 1px solid var(--line-soft);
  }
  .hero__price-strip-cta {
    border-left: none;
    border-top: 1px solid var(--line-soft);
    padding: 12px 0 0;
    justify-content: space-between;
    align-self: stretch;
  }
}
@media (max-width: 380px) {
  .hero__price-cell strong { font-size: 1rem; }
}

.hero__art { position: relative; }

@media (max-width: 940px) {
  .hero { padding: 64px 0 56px; }
  .hero__grid { grid-template-columns: 1fr; gap: 48px; }
  .hero__art { order: 2; }
}

/* ---------- Browser-frame mockup
   Used in hero + selected work. Designed to look like a real screenshot.
*/
.browser {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.browser__bar {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 11px 14px;
  background: #F4F0E7;
  border-bottom: 1px solid var(--line);
}
.browser__dots { display: flex; gap: 6px; }
.browser__dots span {
  width: 9px; height: 9px;
  border-radius: 50%;
  background: #D6CFBE;
}
.browser__dots span:nth-child(1) { background: #E07A6E; }
.browser__dots span:nth-child(2) { background: #E3B463; }
.browser__dots span:nth-child(3) { background: #6FB689; }
.browser__url {
  flex: 1;
  background: rgba(255,255,255,0.7);
  border-radius: 999px;
  padding: 5px 14px;
  font-size: 0.78rem;
  font-family: ui-monospace, SFMono-Regular, Menlo, monospace;
  color: var(--ink-mute);
  display: flex;
  align-items: center;
  gap: 8px;
}
.browser__tag {
  font-family: var(--font-sans);
  font-size: 0.62rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  background: var(--teal-deep);
  color: #fff;
  padding: 2px 7px;
  border-radius: 999px;
}
.browser__body { background: #fff; }

.hero .browser { transform: rotate(-0.6deg); transition: transform 0.4s ease; }
.hero .browser:hover { transform: rotate(0deg); }

/* Floating accent behind hero browser */
.hero__art-wrap {
  position: relative;
  padding: 22px 22px 32px 6px;
}
.hero__art-wrap::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, var(--bg-band), transparent 60%);
  border-radius: 24px;
  z-index: 0;
  transform: rotate(-1deg);
}
.hero__art-wrap > * { position: relative; z-index: 1; }
.hero__art-wrap .browser { z-index: 2; }
.hero__photo-card {
  position: absolute;
  right: -6px;
  bottom: -16px;
  width: 46%;
  aspect-ratio: 16/10;
  margin: 0;
  border: 6px solid var(--bg);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-md);
  transform: rotate(1.4deg);
  z-index: 1;
}
.hero__photo-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media (max-width: 620px) {
  .hero__photo-card {
    right: 8px;
    bottom: -22px;
    width: 52%;
  }
}

/* ---------- Sections ---------- */

section { padding: 110px 0; }
@media (max-width: 800px) { section { padding: 78px 0; } }

.section-band  { background: var(--bg-band); }
.section-dark  { background: var(--navy); color: var(--ink-on-dark); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--ink-on-dark); }
.section-dark p { color: var(--ink-on-dark-soft); }
.section-dark .eyebrow { color: var(--teal); }

.section-head {
  max-width: 720px;
  margin-bottom: 56px;
}
.section-head .eyebrow { display: inline-block; margin-bottom: 14px; }
.section-head h2 { margin-bottom: 14px; }
.section-head p { font-size: 1.08rem; margin: 0; max-width: 560px; }

.section-head--center {
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}
.section-head--center p { margin-left: auto; margin-right: auto; }

/* ---------- Manifesto / approach ---------- */

.manifesto {
  display: grid;
  grid-template-columns: 1.2fr 1.8fr;
  gap: 56px;
  align-items: start;
}
.manifesto__quote {
  font-family: var(--font-serif);
  font-weight: 400;
  font-style: italic;
  color: var(--navy);
  font-size: clamp(1.5rem, 2.4vw, 1.95rem);
  line-height: 1.3;
  letter-spacing: -0.015em;
  margin: 0;
}
.manifesto__quote::before {
  content: "";
  display: block;
  width: 36px; height: 2px;
  background: var(--teal-deep);
  margin-bottom: 22px;
}
.manifesto__body p { font-size: 1.05rem; line-height: 1.65; }
.manifesto__body p:last-child { margin-bottom: 0; }
@media (max-width: 820px) {
  .manifesto { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Services list (editorial, not card grid) ---------- */

.services {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 80px 1fr 2fr;
  gap: 36px;
  align-items: start;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.2s ease;
}
.service-row:hover { padding-left: 8px; }
.service-row__num {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal-deep);
  font-weight: 400;
  padding-top: 4px;
}
.service-row__title {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 1.8vw, 1.5rem);
  color: var(--navy);
  letter-spacing: -0.01em;
  line-height: 1.2;
  margin: 0;
}
.service-row__desc { color: var(--ink-soft); margin: 0; max-width: 520px; }
@media (max-width: 760px) {
  .service-row { grid-template-columns: 60px 1fr; gap: 18px; padding: 26px 0; }
  .service-row__desc { grid-column: 2 / 3; }
}

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

.work-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 88px;
}
.work-item {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 56px;
  align-items: center;
}
.work-item:nth-child(even) {
  grid-template-columns: 1fr 1.4fr;
}
.work-item:nth-child(even) .work-item__art { order: 2; }
.work-item__caption .eyebrow { display: block; margin-bottom: 10px; }
.work-item__caption h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.4rem, 2.2vw, 1.85rem);
  letter-spacing: -0.015em;
  color: var(--navy);
  margin: 0 0 12px;
  line-height: 1.15;
}
.work-item__caption p {
  font-size: 1.02rem;
  margin-bottom: 20px;
  max-width: 460px;
}
.work-item__meta {
  display: flex;
  gap: 24px;
  font-size: 0.85rem;
  color: var(--ink-mute);
  margin: 18px 0 22px;
  padding: 14px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  flex-wrap: wrap;
}
.work-item__meta div strong { display: block; color: var(--navy); font-weight: 600; font-size: 0.86rem; margin-bottom: 2px; }

.work-item__art { position: relative; }
.work-item__art .browser { transform: rotate(0); transition: transform 0.5s cubic-bezier(.25,.8,.25,1); }
.work-item:hover .work-item__art .browser { transform: translateY(-4px); }

@media (max-width: 900px) {
  .work-grid { gap: 64px; }
  .work-item, .work-item:nth-child(even) {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .work-item:nth-child(even) .work-item__art { order: 0; }
}

/* ---------- Pricing ---------- */

.pricing {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
  max-width: 880px;
  margin: 0 auto;
}
.pricing--three {
  grid-template-columns: repeat(3, 1fr);
  max-width: 1080px;
  gap: 22px;
}
.pricing__note {
  max-width: 680px;
  margin: 28px auto 0;
  text-align: center;
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.55;
}
.pricing__guarantee {
  max-width: 720px;
  margin: 18px auto 0;
  text-align: center;
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.55;
  padding: 16px 22px;
  border-top: 1px solid var(--line);
}
.pricing__guarantee strong { color: var(--teal-deep); }
.price-card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, transform 0.2s ease;
}
.price-card:hover { border-color: var(--navy-soft); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.price-card.is-feature {
  background: var(--navy);
  color: var(--ink-on-dark);
  border-color: var(--navy);
}
.price-card.is-feature h3,
.price-card.is-feature .price-card__price,
.price-card.is-feature .price-card__name { color: var(--ink-on-dark); }
.price-card.is-feature .price-card__name { color: var(--teal); }
.price-card.is-feature p { color: var(--ink-on-dark-soft); }
.price-card.is-feature li { color: var(--ink-on-dark); }
.price-card.is-feature li svg { color: var(--teal); }
.price-card__badge {
  position: absolute;
  top: -12px;
  right: 24px;
  background: var(--teal-deep);
  color: #fff;
  font-family: var(--font-sans);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}

.price-card__name {
  font-family: var(--font-sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-deep);
  margin-bottom: 14px;
}
.price-card__price {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3rem;
  color: var(--navy);
  letter-spacing: -0.03em;
  margin-bottom: 4px;
  line-height: 1;
}
.price-card__price small {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: 4px;
}
.price-card.is-feature .price-card__price small { color: var(--ink-on-dark-soft); }

.price-card p.tagline { margin-bottom: 24px; font-size: 0.97rem; }
.price-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.5;
}
.price-card li svg {
  flex-shrink: 0;
  width: 16px; height: 16px;
  color: var(--teal-deep);
  margin-top: 5px;
}
.price-card .btn { margin-top: auto; }

@media (max-width: 980px) {
  .pricing--three { grid-template-columns: 1fr; max-width: 520px; }
  .price-card__badge { right: 50%; transform: translateX(50%); }
}
@media (max-width: 720px) { .pricing { grid-template-columns: 1fr; } }

/* ---------- Website Care ---------- */

.care {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
  max-width: 1080px;
  margin: 0 auto;
  padding: 56px 56px;
  background: var(--bg-band);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.care__copy h2 { margin: 12px 0 16px; }
.care__copy p { font-size: 1.02rem; line-height: 1.6; max-width: 460px; }
.care__copy .care__small {
  font-size: 0.9rem;
  color: var(--ink-mute);
  border-top: 1px solid var(--line);
  padding-top: 16px;
  margin-top: 18px;
  margin-bottom: 0;
}
.care__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  box-shadow: var(--shadow-sm);
}
.care__price {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 3rem;
  color: var(--navy);
  letter-spacing: -0.03em;
  line-height: 1;
  margin-bottom: 22px;
}
.care__price small {
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 400;
  color: var(--ink-mute);
  margin-left: 4px;
}
.care__list {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  display: flex;
  flex-direction: column;
  gap: 11px;
}
.care__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.96rem;
  color: var(--ink);
  line-height: 1.5;
}
.care__list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--teal-deep);
  margin-top: 5px;
}
.care .btn { margin-top: auto; }

@media (max-width: 880px) {
  .care { grid-template-columns: 1fr; gap: 32px; padding: 40px 32px; }
}
@media (max-width: 540px) {
  .care { padding: 32px 22px; }
}

/* ---------- Process ---------- */

.process {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 36px 32px;
  position: relative;
  padding-top: 28px;
}
.process::before {
  content: "";
  position: absolute;
  top: 18px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(to right,
    rgba(255,255,255,0) 0%,
    rgba(63,169,168,0.35) 6%,
    rgba(63,169,168,0.35) 94%,
    rgba(255,255,255,0) 100%);
}
.process-step {
  position: relative;
  padding: 0;
  display: flex;
  flex-direction: column;
}
.process-step::before {
  content: "";
  position: absolute;
  /* parent .process has padding-top: 28px; line is at parent top: 18px.
     Dot is 11px tall → top in parent coords needs to be 13px to center on
     the line (13 + 5.5 = 18.5). In step-local coords that's 13 - 28 = -15px. */
  top: -15px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 4px var(--navy);
}
.process-step__num {
  font-family: var(--font-serif);
  font-weight: 500;
  font-style: normal;
  font-size: 2.4rem;
  color: var(--teal);
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0 0 14px;
}
.process-step h4 {
  color: var(--ink-on-dark);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  margin: 0 0 8px;
  line-height: 1.2;
}
.process-step p {
  font-size: 0.92rem;
  color: var(--ink-on-dark-soft);
  margin: 0;
  line-height: 1.55;
}

@media (max-width: 980px) {
  .process {
    grid-template-columns: repeat(2, 1fr);
    gap: 32px 28px;
  }
  .process::before { display: none; }
  .process-step { padding-top: 0; }
  .process-step::before { display: none; }
}
@media (max-width: 540px) {
  .process { grid-template-columns: 1fr; gap: 28px; }
}

/* ---------- Trust strip ---------- */

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.trust-item {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px;
}
.trust-item .eyebrow { font-size: 0.7rem; }
.trust-item h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.18rem;
  color: var(--navy);
  margin: 12px 0 6px;
  letter-spacing: -0.01em;
}
.trust-item p { margin: 0; font-size: 0.95rem; line-height: 1.55; }

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

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

.faq {
  max-width: 820px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 26px 8px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--navy);
  font-size: 1.18rem;
  letter-spacing: -0.01em;
  line-height: 1.3;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
  content: "+";
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 1.6rem;
  color: var(--ink-mute);
  flex-shrink: 0;
  transition: transform 0.2s ease;
  width: 24px;
  text-align: center;
}
.faq-item[open] summary::after { content: "\2013"; transform: scale(1.1); color: var(--teal-deep); }
.faq-item .faq-body {
  padding: 0 8px 26px;
  color: var(--ink-soft);
  max-width: 680px;
  font-size: 1rem;
  line-height: 1.6;
}
.faq-item .faq-body p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 64px;
  align-items: start;
}
.contact-side h2 { margin-bottom: 18px; }
.contact-side .lede { margin-bottom: 28px; max-width: 420px; }
.contact-side .email-block {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 22px 24px;
}
.contact-side .email-block .eyebrow { display: block; margin-bottom: 6px; }
.contact-side .email-block a {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.25rem;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.contact-side .email-block a:hover { color: var(--teal-deep); }
.contact-side .local {
  margin-top: 20px;
  font-size: 0.92rem;
  color: var(--ink-mute);
  line-height: 1.55;
}

.contact-form {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
@media (max-width: 540px) { .field-row { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 7px; }
.field label {
  font-weight: 500;
  font-size: 0.85rem;
  color: var(--navy);
  letter-spacing: 0.01em;
}
.field label .muted { color: var(--ink-faint); font-weight: 400; font-size: 0.8rem; }
.field-optional {
  border: 1px dashed var(--line);
  border-radius: var(--radius-sm);
  padding: 0 14px;
  background: rgba(255,255,255,0.5);
}
.field-optional > summary {
  list-style: none;
  cursor: pointer;
  padding: 12px 0;
  font-size: 0.88rem;
  color: var(--ink-mute);
  font-weight: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.field-optional > summary::-webkit-details-marker { display: none; }
.field-optional > summary::after {
  content: "+";
  font-size: 1.1rem;
  color: var(--ink-mute);
  margin-left: 12px;
}
.field-optional[open] > summary::after { content: "–"; }
.field-optional[open] { padding-bottom: 16px; }
.field-optional .field-row, .field-optional .field { margin-top: 10px; }
.field input, .field textarea {
  font: inherit;
  font-size: 0.97rem;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: var(--bg);
  color: var(--ink);
  transition: border-color 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
}
.field input:focus, .field textarea:focus {
  outline: none;
  border-color: var(--navy);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(20, 35, 61, 0.10);
}
.field textarea { min-height: 120px; resize: vertical; }
.form-note { font-size: 0.83rem; color: var(--ink-mute); margin: 0; }
.form-status {
  font-size: 0.92rem;
  margin: 0;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  display: none;
}
.form-status.is-visible { display: block; }
.form-status.is-success { background: rgba(63, 169, 168, 0.14); color: var(--teal-deep); }
.form-status.is-error { background: #FBE9E9; color: #B5363B; }

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 36px; }
}

/* ---------- Footer ---------- */

.site-footer {
  background: var(--navy-deep);
  color: var(--ink-on-dark-soft);
  padding: 80px 0 40px;
}
.site-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 56px;
  align-items: start;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.site-footer__brand img { height: 26px; margin-bottom: 18px; filter: brightness(0) invert(1) sepia(0.05); opacity: 0.95; }
.site-footer__brand p { color: var(--ink-on-dark-soft); max-width: 360px; font-size: 0.96rem; }
.site-footer h4 {
  color: var(--ink-on-dark);
  font-size: 0.78rem;
  font-weight: 600;
  font-family: var(--font-sans);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
}
.site-footer ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.site-footer a { color: var(--ink-on-dark-soft); font-size: 0.95rem; }
.site-footer a:hover { color: var(--ink-on-dark); }
.site-footer__bottom {
  margin-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.84rem;
  color: rgba(182, 191, 206, 0.7);
}
@media (max-width: 760px) {
  .site-footer__top { grid-template-columns: 1fr; gap: 36px; padding-bottom: 36px; }
}

/* ---------- Mid-page CTA ---------- */

.midcta { padding: 0; }
.midcta .container { padding-top: 28px; padding-bottom: 28px; }
.midcta__inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 32px;
  align-items: center;
  background: linear-gradient(135deg, var(--bg-band), var(--bg-band-2));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px 40px;
}
.midcta__copy h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  color: var(--navy);
  margin: 8px 0 8px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.midcta__copy p { margin: 0; max-width: 560px; font-size: 1rem; }
.midcta .btn { white-space: nowrap; }

@media (max-width: 760px) {
  .midcta__inner { grid-template-columns: 1fr; padding: 28px 24px; gap: 20px; }
}

/* ---------- Sticky bottom-right CTA ---------- */

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 70;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--navy);
  color: var(--bg);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  font-weight: 500;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(20, 30, 50, 0.18), 0 2px 4px rgba(20, 30, 50, 0.08);
  text-decoration: none;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.18s ease;
}
.sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}
.sticky-cta:hover { background: var(--navy-deep); color: var(--bg); }
.sticky-cta svg { width: 16px; height: 16px; }

@media (max-width: 540px) {
  .sticky-cta { right: 14px; bottom: 14px; padding: 11px 16px; font-size: 0.88rem; }
}

/* ---------- Proof / launch-day section ---------- */

.proof__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1.1fr;
  gap: 22px;
  align-items: stretch;
}
.proof__card {
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  display: flex;
  flex-direction: column;
}
.proof__card .eyebrow { display: inline-block; margin-bottom: 16px; }
.proof__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.proof__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.97rem;
  color: var(--ink);
  line-height: 1.5;
}
.proof__list li svg {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  color: var(--teal-deep);
  margin-top: 5px;
}

.proof__card--founder {
  background: var(--navy);
  color: var(--ink-on-dark);
  border-color: var(--navy);
}
.proof__card--founder .eyebrow { color: var(--teal); }
.proof__card--founder h3 {
  color: var(--ink-on-dark);
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  line-height: 1.2;
}
.proof__card--founder p { color: var(--ink-on-dark-soft); margin-bottom: 18px; }
.proof__card--founder strong { color: var(--ink-on-dark); }
.proof__card--founder .btn-link {
  color: var(--teal);
  text-decoration-color: var(--teal);
  margin-top: auto;
  align-self: flex-start;
}
.proof__card--founder .btn-link:hover { color: #fff; }

.proof__stack-lede {
  font-size: 0.97rem;
  color: var(--ink-soft);
  margin-bottom: 18px;
  line-height: 1.55;
}
.proof__stack {
  list-style: none;
  padding: 0;
  margin: auto 0 0;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 18px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.proof__stack li {
  display: flex;
  flex-direction: column;
  font-size: 0.85rem;
  color: var(--ink-mute);
  line-height: 1.4;
}
.proof__stack strong {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1rem;
  color: var(--navy);
  letter-spacing: -0.005em;
  margin-bottom: 2px;
}

@media (max-width: 980px) {
  .proof__grid { grid-template-columns: 1fr 1fr; }
  .proof__card--stack { grid-column: 1 / -1; }
  .proof__stack { grid-template-columns: repeat(4, 1fr); }
}
@media (max-width: 720px) {
  .proof__grid { grid-template-columns: 1fr; }
  .proof__card--stack { grid-column: auto; }
  .proof__stack { grid-template-columns: 1fr 1fr; }
}

/* ---------- Footer stack line ---------- */

.site-footer__stack {
  padding: 28px 28px 0;
  margin-top: 0;
}
.site-footer__stack-line {
  margin: 0;
  font-size: 0.86rem;
  color: var(--ink-on-dark-soft);
  line-height: 1.6;
  text-align: center;
}
.site-footer__stack-line strong { color: var(--ink-on-dark); font-weight: 600; }
.site-footer__booking { color: var(--teal); font-weight: 600; }

/* ---------- Sample preview body styles
   (Used by both the homepage browser mockups and full sample pages.)
*/

/* The .preview blocks below are mini-screenshots that mirror each demo's full
   homepage. They're shown inside browser frames on the index page, and clicking
   navigates to the full demo. Each preview reproduces the demo's actual hero
   composition (typography, color, layout), not a generic "card" abstraction.
*/

.preview { font-family: var(--font-sans); }

/* ---------- Barber preview · mirrors samples/barber.html hero ---------- */
.preview-barber {
  background:
    radial-gradient(600px 240px at 80% 0%, rgba(201,161,90,0.10), transparent 70%),
    radial-gradient(500px 220px at 0% 100%, rgba(162,75,54,0.10), transparent 70%),
    #15171C;
  color: #F1E6CD;
  padding: 0;
  position: relative;
}
.preview-barber::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 8px, rgba(201,161,90,0.05) 8px 9px);
  pointer-events: none;
}
.preview-barber__nav {
  position: relative;
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(201,161,90,0.18);
}
.preview-barber__nav .logo {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 0.95rem; color: #F1E6CD; letter-spacing: 0.005em;
}
.preview-barber__nav .logo small {
  font-style: normal; font-family: var(--font-sans); font-size: 0.55rem;
  letter-spacing: 0.2em; text-transform: uppercase; color: #C9A15A;
  margin-left: 8px; font-weight: 600;
}
.preview-barber__nav .phone {
  background: #C9A15A; color: #15171C;
  padding: 5px 11px; border-radius: 2px;
  font-size: 0.6rem; letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
}
.preview-barber__hero {
  position: relative;
  display: grid; grid-template-columns: 1.3fr 1fr; gap: 18px;
  padding: 28px 22px 30px; align-items: center;
}
.preview-barber__hero .kicker {
  font-family: var(--font-serif); font-style: italic; color: #C9A15A;
  font-size: 0.78rem; margin-bottom: 12px;
  display: flex; align-items: center; gap: 8px;
}
.preview-barber__hero .kicker::before, .preview-barber__hero .kicker::after {
  content: ""; height: 1px; background: rgba(201,161,90,0.4); flex: 1; max-width: 24px;
}
.preview-barber__hero h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.3rem, 2.2vw, 1.65rem);
  color: #F1E6CD;
  margin: 0 0 12px;
  letter-spacing: -0.02em;
  line-height: 1.04;
}
.preview-barber__hero p {
  font-size: 0.78rem; color: rgba(241,230,205,0.7); margin: 0 0 14px; line-height: 1.5;
}
.preview-barber__hero .ctas { display: flex; gap: 8px; }
.preview-barber__hero .btn-gold {
  background: #C9A15A; color: #15171C;
  padding: 7px 12px; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 700;
  border-radius: 2px;
}
.preview-barber__hero .btn-out {
  border: 1px solid rgba(241,230,205,0.35); color: #F1E6CD;
  padding: 7px 12px; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 600;
  border-radius: 2px;
}
.preview-barber__art {
  position: relative;
  aspect-ratio: 4/5;
  border: 1px solid rgba(201,161,90,0.25);
  background:
    linear-gradient(180deg, rgba(0,0,0,0.45), rgba(0,0,0,0.05) 60%, rgba(0,0,0,0.55)),
    radial-gradient(closest-side at 50% 38%, #3A3027, #1B1A1A 70%);
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  padding: 14px;
  overflow: hidden;
}
.preview-barber__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.72) saturate(0.94);
}
.preview-barber__art::before {
  content: ""; position: absolute; inset: 0;
  background-image: repeating-linear-gradient(0deg, transparent 0 4px, rgba(0,0,0,0.18) 4px 5px);
  mix-blend-mode: multiply;
  z-index: 1;
}
.preview-barber__photo ~ .pole,
.preview-barber__photo ~ .seal { display: none; }
.preview-barber__art .pole {
  position: relative; z-index: 1;
  width: 16px; height: 86px;
  border-radius: 8px;
  background: repeating-linear-gradient(
    -45deg, #C8302E 0 8px, #f0e6d0 8px 16px, #2A4F8F 16px 24px, #f0e6d0 24px 32px
  );
  border: 1.5px solid #2a2a2a;
  margin-bottom: 12px;
  box-shadow: 0 3px 10px rgba(0,0,0,0.4);
}
.preview-barber__art .seal {
  position: relative; z-index: 1;
  width: 64px; height: 64px;
  border: 1.5px solid #C9A15A; border-radius: 50%;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  font-family: var(--font-sans); font-size: 0.45rem;
  letter-spacing: 0.18em; text-transform: uppercase; color: #C9A15A;
  font-weight: 600;
  text-align: center;
}
.preview-barber__art .seal strong {
  font-family: var(--font-serif); font-style: italic; color: #E0BC74;
  font-size: 0.78rem; font-weight: 500; letter-spacing: 0;
  text-transform: none; line-height: 1; margin: 1px 0;
}

/* ---------- Cleaning preview · mirrors samples/cleaning.html hero ---------- */
.preview-cleaning {
  background:
    radial-gradient(600px 240px at 90% 0%, rgba(46,174,174,0.12), transparent 70%),
    radial-gradient(500px 240px at -10% 100%, rgba(31,111,178,0.10), transparent 70%),
    #F5FAFD;
  color: #0F2436; padding: 0;
}
.preview-cleaning__nav {
  display: flex; justify-content: space-between; align-items: center;
  padding: 14px 22px; background: rgba(255,255,255,0.65);
  border-bottom: 1px solid #ECF1F6;
}
.preview-cleaning__nav .logo {
  display: inline-flex; align-items: center; gap: 9px;
  font-weight: 700; color: #103A60; font-size: 0.85rem;
  letter-spacing: -0.005em;
}
.preview-cleaning__nav .logo .mark {
  width: 22px; height: 22px; border-radius: 6px;
  background: linear-gradient(135deg, #1F6FB2, #2EAEAE);
  color: #fff; font-family: var(--font-serif); font-style: italic;
  font-size: 0.78rem; font-weight: 500;
  display: inline-flex; align-items: center; justify-content: center;
}
.preview-cleaning__nav .cta {
  background: #103A60; color: #fff; padding: 6px 14px;
  border-radius: 999px; font-size: 0.7rem; font-weight: 500;
}
.preview-cleaning__hero {
  display: grid; grid-template-columns: 1.05fr 1fr; gap: 18px;
  padding: 22px 22px 26px; align-items: center;
}
.preview-cleaning__hero .badges {
  display: flex; gap: 5px; flex-wrap: wrap; margin-bottom: 12px;
}
.preview-cleaning__hero .badge {
  background: rgba(46,174,174,0.14); color: #1d7e7e;
  padding: 3px 8px; border-radius: 999px;
  font-size: 0.6rem; font-weight: 500;
}
.preview-cleaning__hero .badge.alt { background: rgba(31,111,178,0.14); color: #185A93; }
.preview-cleaning__hero .badge.gold { background: rgba(217,165,71,0.18); color: #9b7415; }
.preview-cleaning__hero h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.2rem, 2.1vw, 1.55rem);
  color: #103A60;
  margin: 0 0 8px;
  letter-spacing: -0.025em;
  line-height: 1.05;
}
.preview-cleaning__hero p {
  color: #455B73; font-size: 0.78rem; margin: 0 0 12px; line-height: 1.5;
}
.preview-cleaning__hero .stats {
  display: flex; gap: 14px;
  padding-top: 12px; border-top: 1px solid #DCE6EF;
  font-size: 0.65rem; color: #6F8093;
}
.preview-cleaning__hero .stats strong {
  display: block; font-family: var(--font-serif);
  font-weight: 500; color: #103A60; font-size: 0.95rem;
  letter-spacing: -0.02em;
}
.preview-cleaning__quote {
  position: relative;
  padding: 8px;
  border-radius: 14px;
  background: linear-gradient(135deg, rgba(46,174,174,0.20), rgba(31,111,178,0.10));
}
.preview-cleaning__photo {
  position: relative;
  aspect-ratio: 4/3;
  border-radius: 12px;
  overflow: hidden;
  margin-bottom: -36px;
}
.preview-cleaning__photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(16,58,96,0.02), rgba(16,58,96,0.28));
}
.preview-cleaning__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.preview-cleaning__quote-card {
  background: #fff; border-radius: 10px; padding: 14px 16px 14px;
  box-shadow: 0 8px 22px rgba(16,58,96,0.10), 0 1px 3px rgba(16,58,96,0.05);
  position: relative;
  z-index: 2;
  margin: 0 10px;
}
.preview-cleaning__quote-card::before {
  content: "Get a free quote";
  position: absolute; top: -8px; left: 14px;
  background: #103A60; color: #fff;
  padding: 3px 9px; border-radius: 999px;
  font-size: 0.55rem; font-weight: 500; letter-spacing: 0.04em;
}
.preview-cleaning__quote-card .ttl {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 0.85rem; color: #103A60; margin: 4px 0 12px;
  letter-spacing: -0.01em;
}
.preview-cleaning__quote-card .field {
  display: flex; justify-content: space-between; align-items: center;
  border: 1px solid #DCE6EF; border-radius: 6px;
  padding: 6px 10px; margin-bottom: 6px; background: #fafdff;
  font-size: 0.7rem;
}
.preview-cleaning__quote-card .field .label { color: #6F8093; font-weight: 500; }
.preview-cleaning__quote-card .field .value { color: #103A60; font-weight: 500; }
.preview-cleaning__quote-card .field.is-active {
  border-color: #1F6FB2;
  box-shadow: 0 0 0 2px rgba(31,111,178,0.12);
}
.preview-cleaning__quote-card .est {
  display: flex; justify-content: space-between; align-items: center;
  background: linear-gradient(135deg, #F0F9FA, #E6F3F8);
  border: 1px solid rgba(46,174,174,0.2); border-radius: 8px;
  padding: 9px 12px; margin: 8px 0 10px;
}
.preview-cleaning__quote-card .est .est-l { font-size: 0.6rem; color: #6F8093; }
.preview-cleaning__quote-card .est .est-l strong { display: block; font-family: var(--font-serif); color: #103A60; font-size: 0.7rem; font-weight: 500; }
.preview-cleaning__quote-card .est .price {
  font-family: var(--font-serif); font-weight: 500;
  font-size: 1.25rem; color: #103A60; letter-spacing: -0.02em;
}
.preview-cleaning__quote-card .est .price small { font-family: var(--font-sans); font-size: 0.5rem; color: #6F8093; }
.preview-cleaning__quote-card .qcta {
  display: block; width: 100%; text-align: center;
  background: #103A60; color: #fff; padding: 8px;
  border-radius: 8px; font-size: 0.7rem; font-weight: 500;
}

/* ---------- Restaurant preview · mirrors samples/restaurant.html hero ---------- */
.preview-restaurant {
  position: relative;
  background:
    linear-gradient(180deg, rgba(20,56,56,0.0) 50%, rgba(20,56,56,0.55)),
    radial-gradient(700px 460px at 80% 30%, rgba(197,111,82,0.18), transparent 70%),
    radial-gradient(800px 600px at 20% 80%, rgba(20,56,56,0.30), transparent 70%),
    linear-gradient(135deg, #1F4F4F 0%, #14383B 60%, #0E2929 100%);
  color: #F5EFE2;
  padding: 0;
  overflow: hidden;
}
.preview-restaurant::before {
  content: ""; position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(45deg, transparent 0 14px, rgba(255,255,255,0.012) 14px 15px);
  pointer-events: none;
  z-index: 1;
}
/* atmospheric "plate" element bottom right */
.preview-restaurant::after {
  content: none; position: absolute;
  bottom: -90px; right: -70px;
  width: 240px; height: 240px;
  border-radius: 50%;
  background:
    radial-gradient(circle at 35% 35%, rgba(255,255,255,0.10) 0%, transparent 35%),
    radial-gradient(circle at 50% 50%, #C19166 0%, #8B603F 50%, #4A3322 100%);
  box-shadow:
    0 0 0 8px rgba(245,239,226,0.10),
    0 0 0 9px rgba(245,239,226,0.18);
  opacity: 0.85;
}
.preview-restaurant__photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: brightness(0.64) saturate(0.95);
}
.preview-restaurant__nav {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 14px 22px;
  border-bottom: 1px solid rgba(245,239,226,0.10);
}
.preview-restaurant__nav .links {
  font-family: var(--font-sans); font-size: 0.6rem;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(245,239,226,0.7); font-weight: 500;
}
.preview-restaurant__nav .logo {
  font-family: var(--font-serif); font-style: italic; font-weight: 500;
  font-size: 1.1rem; color: #F5EFE2; text-align: center; line-height: 1;
}
.preview-restaurant__nav .logo small {
  display: block; font-family: var(--font-sans); font-style: normal;
  font-size: 0.5rem; letter-spacing: 0.28em; text-transform: uppercase;
  color: #C56F52; font-weight: 600; margin-top: 1px;
}
.preview-restaurant__nav .cta {
  justify-self: end;
  background: #1F4F4F; color: #F5EFE2;
  padding: 5px 12px; border-radius: 999px;
  font-family: var(--font-sans); font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border: 1px solid rgba(245,239,226,0.4);
}
.preview-restaurant__hero {
  position: relative; z-index: 2;
  padding: 30px 22px 36px;
}
.preview-restaurant__hero .kicker {
  font-family: var(--font-sans); font-size: 0.6rem;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: #C56F52; font-weight: 500;
  display: inline-flex; align-items: center; gap: 10px;
  margin-bottom: 14px;
}
.preview-restaurant__hero .kicker::before {
  content: ""; width: 22px; height: 1px; background: #C56F52;
}
.preview-restaurant__hero h2 {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: clamp(1.4rem, 2.5vw, 1.85rem);
  color: #F5EFE2;
  margin: 0 0 14px;
  letter-spacing: -0.025em;
  line-height: 1;
  max-width: 320px;
}
.preview-restaurant__hero p {
  font-family: var(--font-serif);
  color: rgba(245,239,226,0.78);
  font-size: 0.78rem; margin: 0 0 18px; line-height: 1.5;
  max-width: 280px;
}
.preview-restaurant__hero .ctas { display: flex; gap: 8px; }
.preview-restaurant__hero .btn-coral {
  background: #C56F52; color: #F5EFE2;
  padding: 7px 14px; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border-radius: 999px;
}
.preview-restaurant__hero .btn-out {
  border: 1px solid rgba(245,239,226,0.4); color: #F5EFE2;
  padding: 7px 14px; font-size: 0.6rem;
  letter-spacing: 0.16em; text-transform: uppercase; font-weight: 500;
  border-radius: 999px;
}

/* ---------- Sample-page hero & expanded content (used on /samples/*) ---------- */

.sample-hero { padding: 96px 0 48px; }
.sample-hero h1 { margin-bottom: 18px; max-width: 760px; }
.sample-hero .lede { max-width: 680px; }
.sample-hero .breadcrumb { color: var(--ink-mute); font-size: 0.9rem; margin-bottom: 20px; }
.sample-hero .breadcrumb a { color: var(--ink-soft); }

.preview-shell {
  background: var(--bg-band);
  padding: 40px 0 80px;
}
.preview-shell .browser { max-width: 980px; margin: 0 auto; }
.preview-shell .browser .preview { padding: 36px 40px 40px; }

.case-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  margin-top: 24px;
}
.case-block h3 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: 1.5rem;
  letter-spacing: -0.01em;
  margin-bottom: 14px;
}
.case-block ul { padding-left: 18px; margin: 0; color: var(--ink-soft); line-height: 1.6; }
.case-block ul li { margin-bottom: 8px; }
@media (max-width: 760px) { .case-grid { grid-template-columns: 1fr; gap: 28px; } }

.cta-block {
  text-align: center;
  margin-top: 64px;
  padding: 56px 24px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
}
.cta-block h2 { margin-bottom: 14px; }
.cta-block p { max-width: 460px; margin: 0 auto 24px; }

/* ---------- Testimonials (placeholder until first clients land)
   Honest "coming soon" cards that build the slot now and convert into
   real quotes later. Uses the warm-bg surface, not a dark band, to
   read calm and trustworthy rather than promotional.
*/
.testimonials { padding: 110px 0; }
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1040px;
  margin: 0 auto;
}
.testimonial-card {
  background: var(--bg-card);
  border: 1px dashed var(--line);
  border-radius: var(--radius);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  position: relative;
}
.testimonial-card.is-empty { background: rgba(255,255,255,0.6); }
.testimonial-card__mark {
  font-family: var(--font-serif);
  font-style: italic;
  font-weight: 500;
  font-size: 3.4rem;
  line-height: 0.7;
  color: var(--teal-deep);
  opacity: 0.55;
  margin-bottom: 8px;
}
.testimonial-card__text {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.05rem;
  line-height: 1.5;
  color: var(--ink);
  letter-spacing: -0.005em;
  margin: 0 0 20px;
  flex: 1;
}
.testimonial-card__byline {
  border-top: 1px solid var(--line-soft);
  padding-top: 14px;
  font-size: 0.85rem;
  color: var(--ink-mute);
}
.testimonial-card__byline strong {
  display: block;
  font-family: var(--font-sans);
  font-weight: 600;
  color: var(--navy);
  font-size: 0.92rem;
  margin-bottom: 2px;
}
.testimonial-card__byline small {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--ink-mute);
}
@media (max-width: 880px) {
  .testimonial-grid { grid-template-columns: 1fr; gap: 16px; max-width: 520px; }
  .testimonials { padding: 78px 0; }
}

/* ---------- About section (homepage)
   Personal block with founder photo and short bio. Sits right after the
   hero so visitors see who they're hiring before they read anything else.
*/
.about {
  background: var(--bg-band);
  padding: 96px 0;
}
.about__grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 64px;
  align-items: center;
  max-width: 980px;
  margin: 0 auto;
}
.about__photo {
  margin: 0;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  border-radius: 4px;
  background: var(--bg-card);
  border: 1px solid var(--line);
  box-shadow: var(--shadow-md);
}
.about__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.about__copy .eyebrow { display: block; margin-bottom: 14px; }
.about__copy h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  font-size: clamp(1.8rem, 3.4vw, 2.4rem);
  letter-spacing: -0.02em;
  line-height: 1.08;
  margin: 0 0 22px;
  color: var(--navy);
}
.about__copy p {
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink-soft);
  margin: 0 0 16px;
}
.about__copy p:last-of-type { margin-bottom: 0; }
.about__sign {
  margin-top: 24px;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--teal-deep);
}
.about__sign small {
  font-style: normal;
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink-mute);
  display: block;
  margin-top: 4px;
}
@media (max-width: 760px) {
  .about { padding: 72px 0; }
  .about__grid { grid-template-columns: 1fr; gap: 32px; }
  .about__photo { max-width: 320px; margin: 0 auto; }
}
