/* IBG Media — shared styles ("Front Porch" direction: warm cream, deep teal, sky blue) */

:root {
  --cream: #F7F1E8;
  --cream-2: #EFE6D8;
  --cream-3: #E7DCCA;
  --card: #FFFDF9;
  --teal: #36577D;
  --teal-dark: #243B55;
  --ink: #243B55;
  --sage: #8FC6E3;
  --sage-dark: #35647D;
  --btn-fill: var(--cream-2);
  --btn-fill-hover: var(--cream-3);
  --btn-ink: var(--ink);
  --body: #46545B;
  --body-2: #34444D;
  --muted: #6E695F;
  --nav-link: #34444D;
  --footer-link: #52616A;
  --border: rgba(54, 87, 125, .16);
  --border-2: rgba(54, 87, 125, .12);
  --teal-heading: #F3EBDD;
  --teal-body: #F3EBDD;
  --teal-body-2: var(--cream-3);
  --teal-muted: #D8CCB2;
  --serif: 'Libre Caslon Text', Georgia, serif;
  --sans: Karla, system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, Menlo, monospace;
}

* { box-sizing: border-box; }

html { font-size: 100%; } /* 100% = 16px baseline; rem values below are relative to this */

body {
  margin: 0;
  background: var(--cream);
  font-family: var(--sans);
  color: var(--ink);
}

a { color: var(--teal); text-decoration: none; }
a:hover { color: var(--teal); }

img { max-width: 100%; }

.container { max-width: 1280px; margin: 0 auto; padding-left: 56px; padding-right: 56px; }

/* ── Header ─────────────────────────────────────────── */
.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 20px 56px;
  border-bottom: 1px solid var(--border);
  position: relative;
}

.logo { display: inline-flex; align-items: center; flex: none; }
.logo-lockup { display: block; width: 150px; height: 38px; object-fit: contain; object-position: left center; transform: scale(1.393); transform-origin: left center; }
.logo-lockup-reversed { filter: brightness(0) invert(1); }

.nav { display: flex; gap: 32px; font-size: 0.90625rem; font-weight: 600; }
.nav a { color: var(--nav-link); }
.nav a:hover { color: var(--teal); }
.nav a.active {
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
}

.btn-book {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 0.875rem;
  font-weight: 700;
  color: var(--cream);
  background: var(--teal);
  padding: 11px 20px;
  border-radius: 6px;
  white-space: nowrap;
}
.btn-book:hover { background: var(--teal-dark); color: var(--cream); }

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  min-width: 44px;
  background: none;
  border: 1.5px solid rgba(31, 75, 74, .35);
  border-radius: 6px;
  color: var(--teal);
  font-size: 1.125rem;
  line-height: 1;
  padding: 8px 12px;
  cursor: pointer;
}

:where(a, button, input, textarea, select):focus-visible {
  outline: 3px solid var(--sage-dark);
  outline-offset: 3px;
}

/* ── Buttons ────────────────────────────────────────── */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--btn-ink);
  background: var(--btn-fill);
  border: 1px solid #d8cdb8;
  padding: 14px 25px;
  border-radius: 6px;
}
.btn-primary:hover { background: var(--btn-fill-hover); color: var(--btn-ink); }

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-size: 1rem;
  font-weight: 700;
  color: var(--teal);
  padding: 15px 22px;
  border: 1.5px solid rgba(31, 75, 74, .4);
  border-radius: 6px;
}

/* ── Shared bits ────────────────────────────────────── */
.eyebrow {
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: .08em;
  color: var(--sage-dark);
  margin-bottom: 14px;
}

.badge-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--mono);
  font-size: 0.75rem;
  letter-spacing: .08em;
  color: var(--sage-dark);
  border: 1px solid rgba(143, 198, 227, .55);
  border-radius: 999px;
  padding: 6px 14px;
  margin-bottom: 24px;
}

h1 {
  font-family: var(--serif);
  font-weight: 400;
  color: var(--ink);
  letter-spacing: -0.015em;
  text-wrap: pretty;
  margin: 0;
}

.card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 10px;
}

.placeholder {
  background: repeating-linear-gradient(45deg, var(--cream-2), var(--cream-2) 12px, var(--cream-3) 12px, var(--cream-3) 24px);
  border: 1px solid rgba(31, 75, 74, .16);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.placeholder span { font-family: var(--mono); font-size: 0.75rem; color: var(--muted); }

/* ── Footer ─────────────────────────────────────────── */
.site-footer {
  padding: 32px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  border-top: 1px solid var(--border);
}
.site-footer .logo-lockup { width: 132px; height: 34px; }
.site-footer nav { display: flex; gap: 24px; font-size: 0.84375rem; font-weight: 600; flex-wrap: wrap; }
.site-footer nav a { color: var(--footer-link); }
.site-footer nav a:hover { color: var(--teal); }
.footer-meta { font-size: 0.8125rem; color: var(--muted); }

/* ── Home ───────────────────────────────────────────── */
.hero {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 48px;
  padding-top: 76px;
  padding-bottom: 68px;
  align-items: center;
}
.hero h1 { font-size: 3.25rem; line-height: 1.12; }
.hero .lede { font-size: 1.125rem; line-height: 1.65; color: var(--body); margin: 22px 0 0; max-width: 52ch; }
.hero-actions { display: flex; gap: 14px; margin-top: 32px; align-items: center; flex-wrap: wrap; }
.hero-checks { display: flex; gap: 26px; margin-top: 36px; font-size: 0.84375rem; color: var(--muted); flex-wrap: wrap; }
.leaf-icon {
  display: inline-block;
  width: 15px;
  height: 12px;
  margin-right: 6px;
  vertical-align: 0px;
  transform: rotate(-32deg);
  background-color: var(--teal);
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M2 10C3 4 10 2 18 10C11 15 5 15 2 10Z'/%3E%3Cpath d='M0 9.8L3 9.8L3 10.2L0 10.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 20 20'%3E%3Cpath d='M2 10C3 4 10 2 18 10C11 15 5 15 2 10Z'/%3E%3Cpath d='M0 9.8L3 9.8L3 10.2L0 10.2Z'/%3E%3C/svg%3E") center / contain no-repeat;
}
.service-card.featured .leaf-icon, .plan.featured .leaf-icon { background-color: #CAE1FF; }
.hero-photo { position: relative; }
.hero-photo .placeholder { height: 380px; }
.brand-panel {
  min-height: 380px;
  display: grid;
  place-items: center;
  padding: 46px;
  background: var(--cream-2);
  border: 1px solid var(--border);
  border-radius: 14px;
}
.brand-panel img { width: min(100%, 330px); max-height: 310px; object-fit: contain; }
.portrait-space {
  min-height: 380px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: linear-gradient(145deg, var(--cream-2), var(--card));
}
img.portrait-space {
  width: 100%;
  height: 380px;
  display: block;
  object-fit: cover;
}
.hero-photo-tag {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: var(--card);
  border: 1px solid rgba(31, 75, 74, .16);
  border-radius: 8px;
  padding: 14px 18px;
  box-shadow: 0 8px 24px rgba(22, 48, 47, .12);
}
.hero-photo-tag .k { font-size: 0.75rem; color: var(--muted); }
.hero-photo-tag .v { font-size: 0.9375rem; font-weight: 700; color: var(--ink); }

.band-teal { background: var(--teal); padding: 52px 56px; }
.band-teal-inner { max-width: 1168px; margin: 0 auto; }
.band-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.band-head .title { font-family: var(--serif); font-size: 1.625rem; font-weight: 400; color: var(--teal-heading); margin: 0; }
.band-head .tag { font-family: var(--mono); font-size: 0.75rem; letter-spacing: .08em; color: var(--teal-heading); }

.steps { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; }
.step {
  background: rgba(247, 241, 232, .06);
  border: 1px solid rgba(247, 241, 232, .14);
  border-radius: 10px;
  padding: 24px 26px;
}
.step .num { font-family: var(--mono); font-size: 0.8125rem; color: var(--teal-heading); margin-bottom: 12px; }
.step .head { font-size: 1.03125rem; font-weight: 700; color: var(--teal-heading); margin-bottom: 8px; }
.step .body { font-size: 0.90625rem; line-height: 1.6; color: var(--teal-body); }

.section-head { display: flex; justify-content: space-between; align-items: baseline; gap: 16px; flex-wrap: wrap; margin-bottom: 24px; }
.section-head .title { font-family: var(--serif); font-size: 1.625rem; font-weight: 400; color: var(--ink); margin: 0; }
.section-head a { font-size: 0.875rem; font-weight: 700; color: var(--sage-dark); }

.work-grid { display: grid; grid-template-columns: minmax(0, 1.55fr) minmax(260px, .45fr); gap: 20px; }
.work-card { overflow: hidden; display: block; }
.work-card:hover { box-shadow: 0 8px 24px rgba(22, 48, 47, .12); }
.work-card img, .work-card .thumb { width: 100%; display: block; }
.work-card img { height: auto; aspect-ratio: 16 / 9; object-fit: contain; object-position: top; background: var(--cream-2); }
.work-card .thumb { height: 160px; object-fit: cover; object-position: top; }
.work-card .thumb { border: none; border-radius: 0; }
.work-card .meta { padding: 14px 16px; }
.work-card .meta .name { font-size: 0.9375rem; font-weight: 700; color: var(--ink); }
.work-card .meta .sub { font-size: 0.78125rem; color: var(--muted); }
.work-note { padding: 30px; display: flex; flex-direction: column; justify-content: center; }
.work-note .eyebrow { margin-bottom: 10px; }
.work-note h3 { font-family: var(--serif); font-size: 1.5rem; font-weight: 400; margin: 0; }
.work-note p { color: var(--body); font-size: 0.90625rem; line-height: 1.65; margin: 12px 0 0; }

.pricing-peek {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 12px;
  overflow: hidden;
}
.pricing-peek > div, .pricing-peek > a { padding: 30px; }
.pricing-peek > div { border-right: 1px solid var(--border-2); }
.pricing-peek .k { font-size: 0.8125rem; font-weight: 700; letter-spacing: .06em; color: var(--sage-dark); margin-bottom: 8px; }
.pricing-peek .v { font-size: 0.90625rem; line-height: 1.55; color: var(--body); }
.pricing-peek a { background: var(--teal); display: block; }
.pricing-peek a:hover { background: var(--teal-dark); }
.pricing-peek a .k { color: var(--teal-heading); }
.pricing-peek a .v { color: var(--teal-body-2); }

.story-banner {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 48px;
  align-items: center;
  background: var(--cream-2);
  border-radius: 12px;
  padding: 44px 48px;
}
.story-banner .placeholder { height: 260px; background: repeating-linear-gradient(45deg, var(--cream), var(--cream) 12px, var(--cream-2) 12px, var(--cream-2) 24px); }
.story-brand-mark { display: grid; place-items: center; min-height: 260px; padding: 28px; background: var(--card); border: 1px solid var(--border); border-radius: 12px; }
.story-brand-mark img { width: min(100%, 220px); max-height: 220px; object-fit: contain; }
.portrait-space-story { min-height: 260px; }
img.portrait-space-story { height: 260px; border-radius: 12px; }
.story-banner blockquote {
  font-family: var(--serif);
  font-size: 1.875rem;
  line-height: 1.25;
  color: var(--ink);
  text-wrap: pretty;
  margin: 0;
}
.quote-attr { display: block; margin-top: 10px; font-family: var(--mono); font-size: 0.75rem; letter-spacing: .06em; text-transform: uppercase; color: var(--muted); }
.story-banner p { font-size: 0.96875rem; line-height: 1.65; color: var(--body); margin: 16px 0 0; }
.link-underline {
  display: inline-block;
  margin-top: 20px;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--teal);
  border-bottom: 2px solid var(--teal);
  padding-bottom: 2px;
}

.cta-band { background: var(--teal); padding: 56px; text-align: center; }
.cta-band .title { font-family: var(--serif); font-size: 2.125rem; font-weight: 400; color: var(--teal-heading); text-wrap: pretty; margin: 0; }
.cta-band p { font-size: 1rem; color: var(--teal-body); margin: 12px auto 26px; max-width: 48ch; line-height: 1.6; }
.cta-band .btn-primary { padding: 15px 30px; }

/* ── Page intro (Work / Services / Pricing) ─────────── */
.page-intro { padding-top: 64px; padding-bottom: 20px; }
.page-intro h1 { font-size: 2.75rem; line-height: 1.15; max-width: 26ch; }
.page-intro .lede { font-size: 1.0625rem; line-height: 1.65; color: var(--body); margin: 16px 0 0; max-width: 62ch; }

/* ── Work page ──────────────────────────────────────── */
.case-card { border-radius: 14px; overflow: hidden; box-shadow: 0 16px 40px rgba(22, 48, 47, .08); }
.browser-bar { display: flex; gap: 6px; align-items: center; background: var(--cream-2); padding: 10px 18px; }
.browser-bar i { width: 10px; height: 10px; border-radius: 50%; background: #d8cdb8; }
.browser-bar span { font-family: var(--mono); font-size: 0.6875rem; color: var(--muted); margin-left: 10px; }
.case-card > img { width: 100%; display: block; aspect-ratio: 1877 / 520; object-fit: cover; }
.case-body { display: grid; grid-template-columns: 1.2fr .8fr; gap: 40px; padding: 32px 40px; border-top: 1px solid var(--border-2); }
.case-body .title { font-family: var(--serif); font-size: 1.625rem; font-weight: 400; color: var(--ink); margin: 0 0 10px; }
.case-body p { font-size: 0.9375rem; line-height: 1.65; color: var(--body); margin: 0; }
.case-side { display: flex; flex-direction: column; gap: 14px; }
.tags { display: flex; flex-wrap: wrap; gap: 8px; }
.tag-pill {
  font-family: var(--mono);
  font-size: 0.71875rem;
  color: var(--teal);
  background: rgba(31, 75, 74, .08);
  border-radius: 999px;
  padding: 6px 12px;
}
.live-link { font-size: 0.9375rem; font-weight: 700; color: var(--sage-dark); }

.next-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.next-slot { background: var(--card); border: 1px dashed rgba(31, 75, 74, .3); border-radius: 12px; overflow: hidden; }
.next-slot .placeholder { height: 200px; border: none; border-radius: 0; }
.next-slot .meta { padding: 18px 22px; }
.next-slot .meta .name { font-size: 1rem; font-weight: 700; color: var(--ink); }
.next-slot .meta .sub { font-size: 0.84375rem; color: var(--muted); margin-top: 4px; }
.reserved {
  background: var(--teal);
  border-radius: 12px;
  padding: 36px 34px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 12px;
}
.reserved .title { font-family: var(--serif); font-size: 1.625rem; color: var(--teal-heading); text-wrap: pretty; }
.reserved p { font-size: 0.9375rem; line-height: 1.6; color: var(--teal-body); margin: 0; }
.reserved .btn-primary { align-self: flex-start; margin-top: 8px; font-size: 0.9375rem; padding: 13px 24px; }

/* ── Services page ──────────────────────────────────── */
.service-groups { display: flex; flex-direction: column; gap: 36px; }
.service-group-header { display: grid; grid-template-columns: 130px 1fr; gap: 22px; align-items: baseline; margin-bottom: 14px; }
.service-group-header h2 { font-family: var(--serif); font-size: 1.6875rem; font-weight: 400; margin: 0; }
.service-group-header p { color: var(--body); font-size: 0.90625rem; margin: 0; }
.services-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.service-card { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 28px; }
.service-card .k {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.71875rem;
  letter-spacing: .06em;
  color: var(--teal);
  background: rgba(31, 75, 74, .08);
  border-radius: 999px;
  padding: 6px 12px;
  margin-bottom: 14px;
}
.service-card .head { font-size: 1.125rem; font-weight: 700; color: var(--ink); margin-bottom: 10px; }
.service-card .body { font-size: 0.90625rem; line-height: 1.62; color: var(--body); }
.service-card .best-for { margin-top: 16px; padding-top: 14px; border-top: 1px solid var(--border-2); font-size: 0.8125rem; color: var(--muted); }

.service-card.featured { background: var(--teal); border: none; box-shadow: 0 16px 40px rgba(22, 48, 47, .18); position: relative; }
.service-card.featured .k { color: var(--teal-heading); background: rgba(247, 241, 232, .14); }
.service-card.featured .head { color: var(--teal-heading); }
.service-card.featured .body { color: var(--teal-body-2); }
.service-card.featured .best-for { color: var(--teal-muted); border-top-color: rgba(247, 241, 232, .18); }
.service-card-flag {
  position: absolute;
  top: -12px;
  right: 22px;
  background: #CAE1FF;
  color: var(--ink);
  font-size: 0.71875rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 12px;
  border-radius: 999px;
}

.help-banner {
  background: var(--cream-2);
  border-radius: 12px;
  padding: 36px 44px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
}
.help-banner .title { font-family: var(--serif); font-size: 1.5rem; color: var(--ink); text-wrap: pretty; }
.help-banner p { font-size: 0.9375rem; line-height: 1.6; color: var(--body); margin: 8px 0 0; max-width: 56ch; }
.help-banner .actions { display: flex; gap: 12px; flex: none; flex-wrap: wrap; }
.help-banner .btn-outline, .help-banner .btn-primary { font-size: 0.9375rem; padding: 13px 22px; }
.help-banner.teal { background: var(--teal); }
.help-banner.teal .title { color: var(--teal-heading); }
.help-banner.teal p { color: var(--teal-body); }
.help-banner.teal .btn-outline { color: var(--teal-heading); border-color: rgba(243, 235, 221, .5); }
.help-banner.teal .btn-primary { background: var(--btn-fill); color: var(--btn-ink); }

/* ── Pricing page ───────────────────────────────────── */
.plans { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 20px; align-items: stretch; }
.plan { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 30px; display: flex; flex-direction: column; }
.plan .k { font-family: var(--mono); font-size: 0.75rem; font-weight: 500; letter-spacing: .06em; color: var(--sage-dark); margin: 0; }
.plan .price { font-family: var(--serif); font-size: 2.375rem; color: var(--ink); margin-top: 10px; }
.plan .price-note { font-size: 0.84375rem; color: var(--muted); margin-top: 2px; }
.plan .blurb { font-size: 0.90625rem; line-height: 1.6; color: var(--body); margin-top: 14px; }
.plan ul { list-style: none; margin: 18px 0 0; padding: 0; display: flex; flex-direction: column; gap: 9px; font-size: 0.875rem; color: var(--body-2); flex: 1; }
.plan .plan-cta {
  margin-top: 22px;
  text-align: center;
  font-size: 0.9375rem;
  font-weight: 700;
  color: var(--teal);
  border: 1.5px solid rgba(31, 75, 74, .4);
  padding: 12px 0;
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
}
.plan.featured { background: var(--teal); border: none; box-shadow: 0 16px 40px rgba(22, 48, 47, .18); position: relative; }
.plan.featured .k { color: var(--teal-heading); }
.plan.featured .price { color: var(--teal-heading); }
.plan.featured .price-note { color: var(--teal-muted); }
.plan.featured .blurb, .plan.featured ul { color: var(--teal-body-2); }
.plan.featured .plan-cta { color: var(--btn-ink); background: var(--btn-fill); border: 1px solid #d8cdb8; padding: 12px 0; }
.plan.featured .plan-cta:hover { background: var(--btn-fill-hover); }
.popular-flag {
  position: absolute;
  top: -12px;
  right: 22px;
  background: var(--sage-dark);
  color: var(--cream);
  font-size: 0.71875rem;
  font-weight: 700;
  letter-spacing: .05em;
  padding: 5px 12px;
  border-radius: 999px;
}
.plans-fineprint { text-align: center; font-size: 0.84375rem; color: var(--muted); margin-top: 18px; }
.plans-fineprint strong { color: var(--ink); }

.estimator {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
}
.estimator-form { padding: 36px 40px; border-right: 1px solid var(--border-2); }
.estimator-form .title { font-family: var(--serif); font-size: 1.625rem; font-weight: 400; color: var(--ink); margin: 0 0 24px; }
.field-label { font-size: 0.84375rem; font-weight: 700; letter-spacing: .04em; color: var(--nav-link); margin-bottom: 10px; }
.type-row { display: flex; gap: 10px; margin-bottom: 26px; flex-wrap: wrap; }
.type-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 11px 16px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.875rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(31, 75, 74, .35);
}
.type-btn.selected { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.range-head { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 8px; }
.range-head .val { font-family: var(--mono); font-size: 0.875rem; color: var(--sage-dark); }
input[type=range] { accent-color: var(--teal); width: 100%; margin-bottom: 6px; }
.range-note { font-size: 0.78125rem; color: var(--muted); margin-bottom: 24px; }
.feats { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; }
.feat-btn {
  display: flex;
  justify-content: space-between;
  align-items: center;
  min-height: 44px;
  gap: 8px;
  text-align: left;
  padding: 12px 14px;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 0.84375rem;
  font-weight: 600;
  cursor: pointer;
  background: transparent;
  color: var(--body-2);
  border: 1.5px solid rgba(31, 75, 74, .22);
}
.feat-btn .price { font-family: var(--mono); font-size: 0.75rem; opacity: .75; }
.feat-btn.selected { background: rgba(143, 198, 227, .22); color: var(--sage-dark); border-color: var(--sage); }
.estimator-result { background: var(--teal); padding: 36px 40px; display: flex; flex-direction: column; justify-content: center; }
.estimator-result .k { font-family: var(--mono); font-size: 0.75rem; letter-spacing: .08em; color: var(--teal-heading); margin-bottom: 12px; }
.estimator-result .estimate { font-family: var(--serif); font-size: 2.875rem; color: var(--teal-heading); line-height: 1.1; }
.estimator-result .note { font-size: 0.875rem; color: var(--teal-muted); margin-top: 8px; }
.estimator-result hr { border: none; height: 1px; background: rgba(247, 241, 232, .18); margin: 24px 0; width: 100%; }
.estimator-result .rec { font-size: 0.875rem; color: var(--teal-body-2); line-height: 1.6; }
.estimator-result .rec strong { color: var(--teal-heading); }
.estimator-result .btn-primary { margin-top: 24px; text-align: center; font-size: 0.9375rem; padding: 14px 0; display: block; }
.estimator-result .fine { font-size: 0.78125rem; color: var(--teal-muted); margin-top: 12px; text-align: center; }

.pricing-page .feat-btn.selected { background: rgba(143, 198, 227, .22); border-color: var(--sage-dark); }
.pricing-page .popular-flag { background: #CAE1FF; color: var(--ink); }

/* ── About page ─────────────────────────────────────── */
.about-layout {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 56px;
  padding-top: 72px;
  padding-bottom: 56px;
  align-items: start;
}
.about-photo { position: sticky; top: 24px; }
.about-brand-panel { min-height: 420px; display: grid; place-items: center; padding: 46px; background: var(--cream-2); border: 1px solid var(--border); border-radius: 14px; }
.about-brand-panel img { width: min(100%, 320px); max-height: 330px; object-fit: contain; }
.portrait-space-about { min-height: 420px; }
img.portrait-space-about { height: 420px; }
.brand-signature { width: 58px; height: 64px; object-fit: contain; margin-bottom: 12px; }
.about-photo-meta {
  display: flex;
  justify-content: space-between;
  margin-top: 16px;
  padding: 16px 18px;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
}
.about-photo-meta .k { font-size: 0.75rem; color: var(--muted); }
.about-photo-meta .v { font-size: 0.9375rem; font-weight: 700; color: var(--ink); }
.about-copy h1 { font-size: 2.625rem; line-height: 1.18; }
.about-copy .prose { font-size: 1.03125rem; line-height: 1.75; color: var(--body-2); margin-top: 28px; display: flex; flex-direction: column; gap: 20px; }
.about-copy .prose p { margin: 0; }
.about-copy .prose h2 { font-family: var(--serif); font-size: 1.4375rem; font-weight: 400; color: var(--ink); margin: 8px 0 -10px; }
.promise-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-top: 36px; }
.promise-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 22px 24px; }
.promise-card .head { font-family: var(--serif); font-size: 1.25rem; color: var(--teal); margin-bottom: 6px; }
.promise-card .body { font-size: 0.875rem; line-height: 1.6; color: var(--body); }
.about-copy .btn-primary { margin-top: 32px; padding: 15px 28px; }

/* ── Contact page ───────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 56px;
  padding-top: 64px;
  padding-bottom: 60px;
  align-items: start;
}
.contact-intro h1 { font-size: 2.625rem; line-height: 1.18; }
.contact-intro .lede { font-size: 1.03125rem; line-height: 1.7; color: var(--body); margin: 18px 0 0; }
.contact-rows { display: flex; flex-direction: column; gap: 14px; margin-top: 30px; }
.contact-row {
  display: flex;
  gap: 14px;
  align-items: center;
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 16px 18px;
}
.contact-row .k { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: .06em; color: var(--sage-dark); width: 52px; flex: none; }
.contact-row .v { font-size: 0.9375rem; font-weight: 600; color: var(--ink); }
.contact-row .v em { font-weight: 400; font-style: normal; color: var(--muted); }

.contact-form-card { background: var(--card); border: 1px solid var(--border); border-radius: 14px; padding: 34px 36px; }
.contact-form-card form { display: flex; flex-direction: column; gap: 18px; }
.contact-form-card form[hidden] { display: none; }
.form-2col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-label { font-size: 0.8125rem; font-weight: 700; color: var(--nav-link); margin-bottom: 6px; }
.form-label { display: block; }
.choice-fieldset { border: 0; padding: 0; margin: 0; min-width: 0; }
.form-label em { font-weight: 400; font-style: normal; color: var(--muted); }
input[type=text], input[type=email], input[type=tel], input[type=password], input[type=date], textarea, select {
  font-family: var(--sans);
  font-size: 1rem;
  color: var(--ink);
  background: var(--card);
  border: 1.5px solid rgba(31, 75, 74, .25);
  border-radius: 6px;
  padding: 12px 14px;
  width: 100%;
  outline: none;
}
input:focus, textarea:focus, select:focus { border-color: var(--teal); }
.field-help { font-size: 0.75rem; color: var(--muted); margin-top: 5px; }
.need-chips { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 10px 16px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.84375rem;
  font-weight: 700;
  cursor: pointer;
  background: transparent;
  color: var(--teal);
  border: 1.5px solid rgba(31, 75, 74, .3);
}
.chip.selected { background: var(--teal); color: var(--cream); border-color: var(--teal); }
.submit-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 15px 0;
  border-radius: 6px;
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 700;
  border: none;
  cursor: pointer;
  background: rgba(31, 75, 74, .12);
  color: var(--muted);
}
.submit-btn:disabled { cursor: not-allowed; opacity: .72; }
.submit-btn.ready { background: var(--btn-fill); color: var(--btn-ink); border: 1px solid #d8cdb8; }
.submit-btn.ready:hover { background: var(--btn-fill-hover); }
.form-fine { font-size: 0.78125rem; color: var(--muted); text-align: center; }
.estimate-attach {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  padding: 12px 14px;
  border: 1.5px dashed rgba(31, 75, 74, .3);
  border-radius: 6px;
  background: rgba(31, 75, 74, .05);
}
.estimate-attach .k { font-family: var(--mono); font-size: 0.6875rem; letter-spacing: .08em; color: var(--teal); }
.estimate-attach .v { font-size: 0.84375rem; font-weight: 600; color: var(--ink); }
.estimate-attach .remove {
  margin-left: auto;
  background: none;
  border: none;
  padding: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--muted);
  text-decoration: underline;
}
.form-error { font-size: 0.84375rem; color: var(--sage-dark); text-align: center; }
.sent-note { text-align: center; padding: 60px 20px; }
.sent-note .title { font-family: var(--serif); font-size: 1.75rem; color: var(--teal); }
.sent-note p { font-size: 0.9375rem; color: var(--body); line-height: 1.6; margin: 12px 0 0; }

.faq-section { padding-top: 8px; padding-bottom: 68px; max-width: 760px; margin: 0 auto; }
.faq-section .title { font-family: var(--serif); font-size: 1.75rem; font-weight: 400; color: var(--ink); margin: 0 0 22px; }
.faq-grid { display: flex; flex-direction: column; gap: 12px; }
.faq-card { background: var(--card); border: 1px solid var(--border); border-radius: 10px; padding: 0; }
.faq-card .q {
  list-style: none;
  cursor: pointer;
  font-family: var(--sans); font-size: 1rem; font-weight: 700; color: var(--ink);
  padding: 18px 24px;
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.faq-card .q::-webkit-details-marker { display: none; }
.faq-card .q::after {
  content: "+";
  flex: 0 0 auto;
  font-family: var(--sans); font-weight: 400; font-size: 1.25rem; line-height: 1;
  color: var(--teal);
  transition: transform .2s ease;
}
.faq-card[open] .q::after { content: "\2212"; }
.faq-card .a { font-size: 0.90625rem; line-height: 1.62; color: var(--body); padding: 16px 24px 20px; }
.faq-card[open] .q { border-bottom: 1px solid var(--border); margin-bottom: 0; }

/* ── Services admin (internal) ──────────────────────── */
.admin-header { background: var(--ink); border-bottom: 1px solid var(--border); }
.admin-header .logo { color: var(--cream); }
.admin-header .logo span { color: var(--teal-heading); }
.admin-header .internal-flag {
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: .08em;
  color: var(--teal-heading);
  border: 1px solid rgba(243, 235, 221, .5);
  border-radius: 999px;
  padding: 5px 12px;
}
.admin-header .view-public { font-size: 0.875rem; font-weight: 700; color: var(--cream); }
.admin-container { max-width: 1100px; margin: 0 auto; padding-left: 56px; padding-right: 56px; }
.admin-intro { padding-top: 52px; padding-bottom: 16px; }
.admin-intro h1 { font-size: 2.375rem; line-height: 1.15; }
.admin-intro p { font-size: 0.96875rem; line-height: 1.65; color: var(--body); margin: 14px 0 0; max-width: 66ch; }
.service-list { padding-top: 32px; padding-bottom: 24px; display: flex; flex-direction: column; gap: 16px; }
.admin-service { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 26px 30px; }
.admin-service .top { display: flex; justify-content: space-between; align-items: flex-start; gap: 20px; }
.admin-service .name-row { display: flex; align-items: baseline; gap: 12px; flex-wrap: wrap; }
.admin-service .name { font-size: 1.1875rem; font-weight: 700; color: var(--ink); }
.admin-service .price { font-family: var(--mono); font-size: 0.75rem; color: var(--sage-dark); }
.admin-service .tagline { font-size: 0.875rem; font-weight: 600; color: var(--footer-link); margin-top: 4px; }
.admin-service .desc { font-size: 0.90625rem; line-height: 1.7; color: var(--body-2); margin-top: 14px; max-width: 80ch; white-space: pre-line; }
.admin-service .line-items { margin: 14px 0 0; padding-left: 20px; max-width: 70ch; }
.admin-service .line-items li { font-size: 0.875rem; line-height: 1.8; color: var(--body-2); }
.group-heading {
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--sage-dark);
  margin: 28px 0 -4px;
}
.group-heading:first-child { margin-top: 4px; }

.inventory-section { padding-top: 8px; padding-bottom: 24px; display: flex; flex-direction: column; gap: 16px; }
.inventory-service { background: var(--card); border: 1px solid var(--border); border-radius: 12px; padding: 22px 26px; }
.inventory-service-name { display: flex; justify-content: space-between; align-items: baseline; font-size: 1.0625rem; font-weight: 700; color: var(--ink); margin-bottom: 14px; }
.inventory-service-name span { font-family: var(--mono); font-size: 0.75rem; font-weight: 500; color: var(--sage-dark); }
.inventory-empty { font-size: 0.84375rem; color: var(--muted); font-style: italic; }
.inventory-table { width: 100%; border-collapse: collapse; font-size: 0.84375rem; }
.inventory-table th {
  text-align: left;
  font-family: var(--mono);
  font-size: 0.6875rem;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
  padding: 0 12px 8px 0;
  border-bottom: 1px solid var(--border);
}
.inventory-table td { padding: 10px 12px 10px 0; border-bottom: 1px solid var(--border); vertical-align: top; color: var(--body-2); }
.inventory-table tr:last-child td { border-bottom: none; }
.inventory-table td:first-child { font-weight: 600; color: var(--ink); white-space: nowrap; }
.inventory-price { font-family: var(--mono); color: var(--sage-dark); white-space: nowrap; }
.method-badge {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: .02em;
  padding: 3px 9px;
  border-radius: 999px;
  white-space: nowrap;
}
.method-badge.method-ai { background: rgba(31, 75, 74, .12); color: var(--teal); }
.method-badge.method-self { background: rgba(31, 43, 42, .08); color: var(--ink); }
.method-badge.method-whitelabel { background: rgba(143, 198, 227, .16); color: var(--sage-dark); }
.method-note { margin-top: 6px; font-size: 0.75rem; line-height: 1.6; color: var(--muted); max-width: 26ch; }

/* Admin inventory table → horizontal scroll — ≤700px */
@media (max-width: 700px) {
  .inventory-table { display: block; overflow-x: auto; }
}
.remove-btn {
  flex: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.8125rem;
  font-weight: 700;
  color: #a03b2c;
  background: transparent;
  border: 1.5px solid rgba(160, 59, 44, .4);
  border-radius: 6px;
  padding: 8px 14px;
  cursor: pointer;
}
.remove-btn:hover { background: rgba(160, 59, 44, .08); }
.add-panel { background: var(--cream-2); border: 1px solid rgba(31, 75, 74, .16); border-radius: 12px; padding: 30px 32px; margin-bottom: 64px; }
.add-panel .title { font-family: var(--serif); font-size: 1.375rem; color: var(--ink); margin-bottom: 18px; }
.add-grid { display: grid; grid-template-columns: 1.2fr .8fr 1fr; gap: 14px; margin-bottom: 14px; }
.add-desc { margin-bottom: 16px; }
.add-actions { display: flex; gap: 12px; align-items: center; }
.add-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  font-family: var(--sans);
  font-size: 0.9375rem;
  font-weight: 700;
  border: none;
  border-radius: 6px;
  padding: 13px 26px;
  cursor: pointer;
  background: rgba(31, 75, 74, .12);
  color: var(--muted);
}
.add-btn.ready { background: var(--teal); color: var(--cream); }
.reset-btn {
  font-family: var(--sans);
  font-size: 0.84375rem;
  font-weight: 700;
  color: var(--footer-link);
  background: transparent;
  border: none;
  cursor: pointer;
  text-decoration: underline;
}

/* ── Responsive ─────────────────────────────────────── */
/* Main layout collapse (hero/grids → single column) — ≤1000px */
@media (max-width: 1000px) {
  .container, .admin-container { padding-left: 28px; padding-right: 28px; }
  .site-header, .site-footer, .band-teal, .cta-band { padding-left: 28px; padding-right: 28px; }

  .hero, .about-layout, .contact-layout, .story-banner,
  .case-body, .estimator, .next-grid { grid-template-columns: 1fr; }
  .hero { gap: 36px; padding-top: 48px; padding-bottom: 48px; }
  .hero h1 { font-size: 2.375rem; }
  .page-intro h1, .about-copy h1, .contact-intro h1 { font-size: 2.125rem; }
  .about-photo { position: static; }
  .about-photo .placeholder { height: 300px; }
  img.portrait-space { height: 300px; }
  img.portrait-space-about { height: 320px; }

  .steps, .work-grid, .services-grid, .plans, .pricing-peek { grid-template-columns: 1fr; }
  .pricing-peek > div { border-right: none; border-bottom: 1px solid var(--border-2); }
  .estimator-form { border-right: none; border-bottom: 1px solid var(--border-2); }
  .promise-grid, .form-2col, .add-grid, .feats { grid-template-columns: 1fr; }
  .story-banner { padding: 28px; }
  .estimator-form, .estimator-result { padding: 28px; }
  .plan.featured { order: -1; }
}

/* Hero button stacking / service-group collapse — ≤520px */
@media (max-width: 520px) {
  .hero-actions { align-items: stretch; }
  .hero-actions .btn-primary, .hero-actions .btn-outline { width: 100%; text-align: center; }
  .service-group-header { grid-template-columns: 1fr; gap: 4px; }
  .logo-lockup { width: 184px; }
  .help-banner { padding: 28px 24px; }
  .help-banner .actions { flex: none; width: 100%; flex-direction: column; align-items: stretch; }
  .help-banner .btn-outline, .help-banner .btn-primary { width: 100%; text-align: center; }
}

/* Mobile nav (hamburger) trigger — ≤780px */
@media (max-width: 780px) {
  .nav-toggle { display: inline-flex; }
  .site-header .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--card);
    border-bottom: 1px solid var(--border);
    z-index: 20;
  }
  .site-header .nav.open { display: flex; }
  .site-header .nav a { padding: 14px 28px; border-bottom: 1px solid var(--border-2); }
  .site-header .nav a.active { border-bottom: 1px solid var(--border-2); }
  .site-header .btn-book { display: none; }
}
