/* Sonia Aliz Design — shared site styles */
:root {
  /* White & off-white palette */
  --bg:        #ffffff;
  --bg-warm:   #f8f5f0;
  --bg-deep:   #2a221a;
  --paper:     #ffffff;
  --ink:       #1c1a17;
  --ink-soft:  #6b6661;
  --ink-mute:  #9a948c;
  --clay:      #a8714a;
  --clay-deep: #8a5a3a;
  --sand:      #d9c4a3;
  --olive:     #7e8568;
  --line:      rgba(28, 26, 23, 0.12);
  --line-soft: rgba(28, 26, 23, 0.06);

  /* Type */
  --serif: "Cormorant Garamond", "EB Garamond", Georgia, serif;
  --sans:  "Hanken Grotesk", "Helvetica Neue", system-ui, sans-serif;

  /* Layout */
  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 56px);

  /* Hero rotation (overridden via Tweaks) */
  --hero-rotate-ms: 6000ms;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  font-size: 16.5px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: -0.005em;
  color: var(--ink);
  margin: 0;
  text-wrap: balance;
}
h1 { font-size: clamp(2.4rem, 5.4vw, 5.2rem); line-height: 1.02; }
h2 { font-size: clamp(2rem, 3.8vw, 3.4rem); line-height: 1.08; }
h3 { font-size: clamp(1.4rem, 2vw, 1.85rem); line-height: 1.18; }
h4 { font-size: 1.15rem; line-height: 1.25; }

p { margin: 0 0 1em; text-wrap: pretty; }
.italic, em, i { font-family: var(--serif); font-style: italic; }

.eyebrow {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}
.eyebrow .dot {
  display: inline-block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: currentColor;
  vertical-align: middle;
  margin: 0 0.7em;
  opacity: 0.6;
}
.muted { color: var(--ink-soft); }
.serif-italic { font-family: var(--serif); font-style: italic; font-weight: 400; }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding-left: var(--gutter);
  padding-right: var(--gutter);
}
.section {
  padding: clamp(72px, 9vw, 140px) 0;
}
.section.tight { padding: clamp(56px, 6vw, 96px) 0; }
.section.warm { background: var(--bg-warm); }
.section.deep { background: var(--bg-deep); color: var(--paper); }
.section.deep h1, .section.deep h2, .section.deep h3 { color: var(--paper); }
.section.deep .eyebrow { color: var(--sand); }
.section.paper { background: var(--paper); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95em 1.6em;
  font-family: var(--sans);
  font-weight: 500;
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform .25s ease, background .25s ease, color .25s ease, border-color .25s ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn .arrow {
  display: inline-block;
  transition: transform .25s ease;
}
.btn:hover .arrow { transform: translateX(3px); }

.btn-primary {
  background: var(--clay);
  color: var(--paper);
}
.btn-primary:hover { background: var(--clay-deep); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--ink);
}
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-ghost-light {
  background: transparent;
  color: var(--paper);
  border-color: rgba(255,255,255,0.65);
}
.btn-ghost-light:hover { background: var(--paper); color: var(--ink); }
.btn-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5em;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
  color: var(--ink);
}
.btn-link:hover { color: var(--clay); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
}
.site-header.on-hero {
  background: transparent;
  border-bottom-color: transparent;
  color: var(--paper);
}
.site-header.on-hero .nav-link,
.site-header.on-hero .brand-mark,
.site-header.on-hero .brand-sub,
.site-header.on-hero .header-phone {
  color: var(--paper);
}
.site-header.on-hero .nav-link:hover { color: var(--sand); }
.site-header.on-hero .menu-toggle span { background: var(--paper); }

.nav-wrap {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px var(--gutter);
  max-width: var(--maxw);
  margin: 0 auto;
}
.nav-left, .nav-right {
  display: flex;
  align-items: center;
  gap: 28px;
}
.nav-right { justify-content: flex-end; }
.nav-link {
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  position: relative;
  padding: 6px 0;
  transition: color .2s ease;
}
.nav-link:hover { color: var(--clay); }
.nav-link.active::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: currentColor;
}
.brand {
  text-align: center;
  line-height: 1;
}
.brand-mark {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.55rem;
  letter-spacing: 0.01em;
  color: var(--ink);
  display: block;
}
.brand-sub {
  display: block;
  margin-top: 4px;
  font-size: 0.58rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.header-phone {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.header-phone .phone-icon {
  width: 14px; height: 14px;
  display: inline-block;
}
.menu-toggle {
  display: none;
  width: 32px; height: 32px;
  border: 0; background: transparent;
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--ink);
  transition: transform .25s ease, opacity .25s ease;
}
.menu-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

@media (max-width: 880px) {
  .menu-toggle { display: flex; }
  .nav-wrap { grid-template-columns: auto 1fr auto; }
  .nav-left { display: none; }
  .nav-right .nav-link { display: none; }
  .header-phone span:not(.phone-icon) { display: none; }
  .brand { text-align: left; }
  .mobile-menu.open { display: flex; }
}
.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  background: #1a1410 url('sonia-pink-2.jpg') center / cover no-repeat;
  z-index: 60;
  flex-direction: column;
  padding: 100px var(--gutter) 40px;
  gap: 8px;
}
.mobile-menu::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(34,27,20,0.55) 0%, rgba(34,27,20,0.25) 35%, rgba(34,27,20,0.78) 100%);
  pointer-events: none;
}
.mobile-menu > * { position: relative; z-index: 1; }
.mobile-menu .nav-link {
  font-size: 1.55rem;
  font-family: var(--serif);
  font-style: italic;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
  padding: 16px 0;
  border-bottom: 1px solid rgba(251,247,236,0.22);
  color: var(--paper);
  text-shadow: 0 1px 10px rgba(0,0,0,0.35);
}
.mobile-menu .nav-link:hover { color: var(--sand); }
.mobile-menu .btn { margin-top: 32px; align-self: flex-start; }

/* ===========================================================
   Hero — full-bleed, full-viewport, image cover (blessedlittlebungalow style)
   =========================================================== */
.hero {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -73px;            /* pull under sticky header */
  height: 100vh;
  min-height: 100vh;
  overflow: hidden;
  color: var(--paper);
}
.hero-image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;            /* fills the screen, no bars */
  object-position: center;
  opacity: 0;
  transition: opacity 1.4s ease;
  z-index: 0;
}
.hero-image.is-active,
.hero-image.solo { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 0 var(--gutter) clamp(60px, 10vh, 130px);
  /* dark gradient for white-text contrast */
  background: linear-gradient(180deg,
    rgba(0,0,0,0.30) 0%,
    rgba(0,0,0,0.08) 30%,
    rgba(0,0,0,0.12) 55%,
    rgba(0,0,0,0.65) 100%);
  color: var(--paper);
}
.hero-overlay-inner {
  max-width: var(--maxw);
  width: 100%;
  margin: 0 auto;
}
.hero-overlay .eyebrow { color: rgba(251,247,236,0.92); }
.hero-overlay .eyebrow .dot { background: var(--sand); }
.hero-overlay h1 {
  color: var(--paper);
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  max-width: 18ch;
  margin: 18px 0 22px;
  text-shadow: 0 2px 28px rgba(0,0,0,0.55);
}
.hero-overlay h1 em {
  color: var(--sand);
  font-style: italic;
  display: block;
  line-height: 1.12;
}
.hero-overlay p {
  font-family: var(--sans);
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  line-height: 1.55;
  color: rgba(251,247,236,0.95);
  max-width: 48ch;
  margin: 0 0 32px;
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}
.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

/* Prominent Call Now button */
.hf-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.95em 1.6em;
  background: var(--clay);
  color: var(--paper);
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(168, 113, 74, 0.42),
              0 2px 6px rgba(0,0,0,0.18);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  white-space: nowrap;
  text-decoration: none;
}
.hf-call:hover {
  background: var(--clay-deep);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(168, 113, 74, 0.5);
}
.hf-call .hf-call-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.hf-call .hf-call-icon svg { width: 14px; height: 14px; }
.hf-call .hf-call-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 2px;
}
.hf-call .hf-call-text .lbl {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  opacity: 0.85;
}
.hf-call .hf-call-text .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: 0;
  text-transform: none;
}

/* Rotator controls (homepage) */
.hero-meta {
  position: absolute;
  top: clamp(96px, 12vh, 120px);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,247,236,0.85);
}
.hero-counter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper);
}
.hero-counter .total { color: rgba(251,247,236,0.55); }
.hero-progress {
  width: 110px;
  height: 1px;
  background: rgba(251,247,236,0.28);
  position: relative;
  overflow: hidden;
}
.hero-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--sand);
  animation: heroProgress var(--hero-rotate-ms) linear infinite;
}
@keyframes heroProgress {
  from { width: 0%; }
  to   { width: 100%; }
}
.hero-arrows {
  position: absolute;
  bottom: clamp(28px, 5vh, 56px);
  right: var(--gutter);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(251,247,236,0.5);
  background: rgba(0,0,0,0.22);
  backdrop-filter: blur(8px);
  color: var(--paper);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, border-color .2s ease;
}
.hero-arrow:hover { background: rgba(0,0,0,0.55); border-color: var(--paper); }
@media (max-width: 720px) {
  .hero-arrows, .hero-meta { display: none; }
  .hf-call { width: 100%; justify-content: center; }
}

/* Cards / common blocks */
.intro-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 7vw, 100px);
  align-items: center;
}
@media (max-width: 820px) { .intro-grid { grid-template-columns: 1fr; } }

.signature {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--clay);
}

.split-image {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: 4px;
  overflow: hidden;
  background: var(--bg-warm);
}
.split-image img { width: 100%; height: 100%; object-fit: cover; }
.split-image .badge {
  position: absolute;
  left: 20px; bottom: 20px;
  background: var(--paper);
  padding: 12px 16px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 500;
  color: var(--ink);
  border-radius: 2px;
}

/* Services grid */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.services-grid::after {
  /* Fill any trailing empty cells so the grid background line doesn't show through */
  content: "";
  background: var(--bg);
  min-height: 0;
}
.section.warm .services-grid::after { background: var(--bg); }
@media (max-width: 920px) { .services-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .services-grid { grid-template-columns: 1fr; } }
.service-cell {
  background: var(--bg);
  padding: clamp(28px, 3vw, 44px);
  display: flex;
  flex-direction: column;
  gap: 18px;
  min-height: 280px;
  position: relative;
  transition: background .3s ease;
}
.service-cell:hover { background: var(--paper); }
.service-cell .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  color: var(--clay);
}
.service-cell h3 { max-width: 14ch; }
.service-cell .more {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex;
  gap: 8px;
  align-items: center;
}
.service-cell:hover .more { color: var(--clay); }

/* Portfolio strip */
.portfolio-strip {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 18px;
}
.portfolio-strip .pf {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--bg-warm);
}
.portfolio-strip .pf img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .8s ease;
}
.portfolio-strip .pf:hover img { transform: scale(1.05); }
.portfolio-strip .pf .label {
  position: absolute;
  left: 16px; bottom: 16px;
  color: var(--paper);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  text-shadow: 0 1px 12px rgba(0,0,0,0.3);
}
.pf-1 { grid-column: span 4; }
.pf-2 { grid-column: span 4; aspect-ratio: 1; align-self: end; }
.pf-3 { grid-column: span 4; }
.pf-4 { grid-column: span 5; aspect-ratio: 5/4; }
.pf-5 { grid-column: span 4; }
.pf-6 { grid-column: span 3; aspect-ratio: 3/4; }
@media (max-width: 820px) {
  .portfolio-strip { grid-template-columns: repeat(2, 1fr); }
  .portfolio-strip .pf { grid-column: span 1 !important; aspect-ratio: 4/5 !important; }
}

/* Testimonials */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
}
@media (max-width: 880px) { .testimonials { grid-template-columns: 1fr; } }
.testimonial {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.testimonial .stars {
  color: var(--clay);
  letter-spacing: 4px;
  font-size: 0.95rem;
}
.testimonial blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.4rem;
  line-height: 1.42;
  color: var(--ink);
  text-wrap: pretty;
}
.testimonial blockquote::before { content: "\201C"; font-style: italic; color: var(--clay); margin-right: 0.05em; }
.testimonial blockquote::after { content: "\201D"; font-style: italic; color: var(--clay); margin-left: 0.05em; }
.testimonial cite {
  font-style: normal;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.testimonial cite span {
  display: block;
  margin-top: 4px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.95rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--clay);
}

/* CTA band */
.cta-band {
  background: var(--bg-deep);
  color: var(--paper);
  padding: clamp(80px, 9vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 18% 20%, rgba(168,113,74,0.18), transparent 45%),
    radial-gradient(circle at 80% 80%, rgba(217,196,163,0.12), transparent 50%);
  pointer-events: none;
}
.cta-band .container { position: relative; }
.cta-band h2 { color: var(--paper); }
.cta-band h2 em { color: var(--sand); font-style: italic; }
.cta-band .row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}
.cta-band .phone-block {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  color: var(--paper);
  line-height: 1.05;
}
.cta-band .phone-block small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 10px;
}

/* Footer */
.site-footer {
  background: var(--bg-warm);
  padding: 90px 0 30px;
  color: var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 56px;
  padding-bottom: 60px;
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; } }
@media (max-width: 540px) { .footer-grid { grid-template-columns: 1fr; } }
.footer-grid h5 {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin: 0 0 18px;
  color: var(--ink-soft);
  font-weight: 500;
  font-family: var(--sans);
}
.footer-grid ul { list-style: none; padding: 0; margin: 0; display: flex; flex-direction: column; gap: 10px; }
.footer-grid a { color: var(--ink); transition: color .2s ease; }
.footer-grid a:hover { color: var(--clay); }
.footer-brand .brand-mark { font-size: 1.8rem; color: var(--ink); }
.footer-brand p { margin: 16px 0 0; max-width: 32ch; color: var(--ink-soft); font-size: 0.95rem; }
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.78rem;
  color: var(--ink-soft);
}

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .8s ease, transform .8s ease; }
.reveal.in { opacity: 1; transform: none; }

/* Page hero (non-rotating, used on inner pages) */
.page-hero {
  padding: clamp(120px, 16vw, 200px) 0 clamp(60px, 7vw, 100px);
  background: var(--bg-warm);
  border-bottom: 1px solid var(--line-soft);
}
.page-hero .eyebrow { margin-bottom: 16px; }
.page-hero h1 { max-width: 18ch; }
.page-hero .lede {
  margin-top: 26px;
  max-width: 56ch;
  font-size: 1.12rem;
  color: var(--ink-soft);
}

/* ===========================================================
   Full-viewport, no-crop hero (used on every page)
   Shows the ENTIRE image (object-fit: contain) on a warm cream
   stage, with an elegant glass card holding headline + Call CTA.
   =========================================================== */
.hero-fit {
  position: relative;
  width: 100vw;
  margin-left: calc(50% - 50vw);
  margin-right: calc(50% - 50vw);
  margin-top: -73px;
  height: 100vh;
  min-height: 100vh;
  background: var(--bg-deep);          /* warm dark letterbox */
  overflow: hidden;
  color: var(--paper);
  isolation: isolate;
}
.hero-fit .hf-stage {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--bg-deep);
  background-image:
    radial-gradient(ellipse at 50% 50%, rgba(168,113,74,0.10), transparent 70%);
}
.hero-fit .hf-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;                  /* ENTIRE image, never cropped */
  object-position: center;
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 1.2s ease;
}
.hero-fit .hf-img.is-active { opacity: 1; }
.hero-fit .hf-img.solo { opacity: 1; position: absolute; }

/* Soft vignette over the whole stage so white text reads on bright images */
.hero-fit .hf-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg,
      rgba(0,0,0,0.35) 0%,
      rgba(0,0,0,0.10) 30%,
      rgba(0,0,0,0.10) 55%,
      rgba(0,0,0,0.62) 100%);
  pointer-events: none;
  z-index: 1;
}

.hero-fit .hf-content {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  z-index: 3;
  padding: 0 var(--gutter) clamp(48px, 9vh, 110px);
  max-width: var(--maxw);
  margin: 0 auto;
}
/* No card — text sits directly on the image with shadow */
.hero-fit .hf-card {
  background: none;
  backdrop-filter: none;
  -webkit-backdrop-filter: none;
  border: 0;
  padding: 0;
  box-shadow: none;
  margin: 0;
  max-width: 820px;
  color: var(--paper);
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
}
.hero-fit .hf-card .eyebrow {
  color: rgba(251,247,236,0.92);
}
.hero-fit .hf-card .eyebrow .dot { background: var(--sand); }
.hero-fit .hf-card h1 {
  margin: 18px 0 22px;
  max-width: 18ch;
  font-weight: 400;
  font-size: clamp(2.6rem, 6vw, 5.6rem);
  line-height: 1.06;
  letter-spacing: -0.01em;
  color: var(--paper);
  text-shadow: 0 2px 28px rgba(0,0,0,0.5);
}
.hero-fit .hf-card h1 em {
  color: var(--sand);
  font-style: italic;
  display: block;
  line-height: 1.12;
}
.hero-fit .hf-card .lede {
  font-size: clamp(1rem, 1.15vw, 1.12rem);
  color: rgba(251,247,236,0.94);
  margin: 0 0 32px;
  max-width: 48ch;
  line-height: 1.55;
  text-shadow: 0 1px 14px rgba(0,0,0,0.5);
}

.hero-fit .hf-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}
/* Prominent Call Now button — clay, with the phone number baked in */
.hf-call {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 0.95em 1.5em;
  background: var(--clay);
  color: var(--paper);
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  box-shadow: 0 14px 34px rgba(168, 113, 74, 0.38),
              0 2px 6px rgba(34, 27, 20, 0.08);
  transition: transform .22s ease, background .22s ease, box-shadow .22s ease;
  white-space: nowrap;
}
.hf-call:hover {
  background: var(--clay-deep);
  transform: translateY(-1px);
  box-shadow: 0 18px 40px rgba(168, 113, 74, 0.45);
}
.hf-call .hf-call-icon {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.hf-call .hf-call-icon svg { width: 14px; height: 14px; }
.hf-call .hf-call-text {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  line-height: 1.1;
  gap: 2px;
}
.hf-call .hf-call-text .lbl {
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  opacity: 0.82;
}
.hf-call .hf-call-text .num {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 500;
  font-size: 1.18rem;
  letter-spacing: 0;
  text-transform: none;
}

/* Hero rotator controls (homepage) — sit on the dark stage */
.hero-fit .hf-meta {
  position: absolute;
  top: clamp(96px, 12vh, 120px);
  right: var(--gutter);
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: rgba(251,247,236,0.85);
}
.hero-fit .hf-counter {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1rem;
  letter-spacing: 0;
  text-transform: none;
  color: var(--paper);
}
.hero-fit .hf-counter .total { color: rgba(251,247,236,0.55); }
.hero-fit .hf-progress {
  width: 110px;
  height: 1px;
  background: rgba(251,247,236,0.28);
  position: relative;
  overflow: hidden;
}
.hero-fit .hf-progress::after {
  content: "";
  position: absolute;
  inset: 0;
  width: 0%;
  background: var(--sand);
  animation: heroProgress var(--hero-rotate-ms) linear infinite;
}
.hero-fit .hf-arrows {
  position: absolute;
  bottom: clamp(28px, 4.5vh, 56px);
  right: var(--gutter);
  z-index: 4;
  display: flex;
  gap: 8px;
}
.hero-fit .hf-arrow {
  width: 44px; height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(251,247,236,0.5);
  background: rgba(34,27,20,0.22);
  backdrop-filter: blur(8px);
  color: var(--paper);
  cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.hero-fit .hf-arrow:hover {
  background: rgba(34,27,20,0.6);
  border-color: var(--paper);
}

@media (max-width: 880px) {
  .hero-fit .hf-card { max-width: none; margin-left: 0; }
  .hero-fit .hf-meta { display: none; }
  .hero-fit .hf-arrows { display: none; }
  .hf-call { width: 100%; justify-content: center; }
}
@media (max-width: 540px) {
  .hero-fit .hf-card { padding: 22px; }
  .hero-fit .hf-card h1 { font-size: 1.85rem; }
}

/* ----- Old .page-hero.has-image kept for compatibility (unused now) ----- */
.page-hero.has-image {
  position: relative;
  padding: 0;
  margin-top: -73px;  /* pull under sticky header */
  background: #f8f5f0;
  border-bottom: 0;
  overflow: hidden;
  color: var(--ink);
  display: block;
}
.page-hero.has-image .ph-image-wrap {
  position: relative;
  width: 100%;
  background: #f8f5f0;
  padding-top: 73px;  /* compensate for negative margin */
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 56vh;
  overflow: hidden;
}
.page-hero.has-image .ph-image {
  display: block;
  width: 100%;
  max-height: calc(86vh - 73px);
  object-fit: contain;
  object-position: center;
  background-color: #f8f5f0;
}
.page-hero.has-image .container {
  position: relative;
  z-index: 2;
  padding-top: clamp(40px, 5vw, 64px);
  padding-bottom: clamp(56px, 7vw, 88px);
  background: #f8f5f0;
}
.page-hero.has-image h1,
.page-hero.has-image .lede {
  color: var(--ink);
}
.page-hero.has-image .lede { color: var(--ink-soft); }
.page-hero.has-image .eyebrow { color: var(--clay); }
.page-hero.has-image h1 em { color: var(--clay); }
.page-hero.has-image .btn-ghost {
  color: var(--ink);
  border-color: var(--ink);
}
.page-hero.has-image .btn-ghost:hover { background: var(--ink); color: var(--paper); }

/* Before / After */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(28px, 4vw, 56px) clamp(20px, 3vw, 36px);
}
@media (max-width: 760px) { .ba-grid { grid-template-columns: 1fr; } }
.ba {
  position: relative;
  user-select: none;
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
  cursor: ew-resize;
}
.ba img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  user-select: none;
  -webkit-user-drag: none;
  pointer-events: none;
}
.ba .after-wrap {
  position: absolute;
  inset: 0;
  width: 50%;
  overflow: hidden;
}
.ba .after-wrap img { width: 200%; max-width: none; }
.ba .handle {
  position: absolute;
  top: 0; bottom: 0;
  left: 50%;
  width: 2px;
  background: var(--paper);
  transform: translateX(-1px);
  pointer-events: none;
}
.ba .handle::after {
  content: "";
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 8px 24px rgba(0,0,0,0.25);
  background-image:
    linear-gradient(90deg, transparent calc(50% - 9px), var(--ink) calc(50% - 9px) calc(50% - 7px), transparent calc(50% - 7px) calc(50% + 7px), var(--ink) calc(50% + 7px) calc(50% + 9px), transparent calc(50% + 9px));
}
.ba .tag {
  position: absolute;
  top: 14px;
  font-size: 0.65rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--paper);
  background: rgba(34,27,20,0.55);
  padding: 6px 10px;
  font-weight: 500;
}
.ba .tag.before { left: 14px; }
.ba .tag.after  { right: 14px; }
.ba-caption {
  margin-top: 14px;
  display: flex;
  justify-content: space-between;
  gap: 12px;
  align-items: baseline;
}
.ba-caption h3 { font-size: 1.4rem; }
.ba-caption span {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Social wall (Contact page) */
.social-wall {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
@media (max-width: 880px) { .social-wall { grid-template-columns: repeat(2, 1fr); } }
.social-tile {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-warm);
}
.social-tile .play {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 56px; height: 56px;
  border-radius: 50%;
  background: rgba(34,27,20,0.45);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  pointer-events: none;
  transition: background .25s ease, transform .25s ease;
  z-index: 2;
}
.social-tile .play svg { fill: var(--paper); width: 18px; height: 18px; margin-left: 3px; }
.social-tile:hover .play { background: var(--clay); transform: translate(-50%, -50%) scale(1.05); }
.social-tile img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .6s ease;
}
.social-tile:hover img { transform: scale(1.06); }
.social-tile::after {
  content: "";
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(34,27,20,0.55) 100%);
  opacity: 0;
  transition: opacity .3s ease;
}
.social-tile:hover::after { opacity: 1; }
.social-tile .ig {
  position: absolute;
  bottom: 10px; left: 10px;
  color: var(--paper);
  font-size: 0.72rem;
  font-weight: 500;
  opacity: 0;
  transition: opacity .3s ease;
  z-index: 2;
}
.social-tile:hover .ig { opacity: 1; }

/* Forms */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
}
@media (max-width: 700px) { .form-grid { grid-template-columns: 1fr; } }
.field { display: flex; flex-direction: column; gap: 8px; }
.field.full { grid-column: 1 / -1; }
.field label {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  font-weight: 500;
}
.field input, .field textarea, .field select {
  font-family: var(--sans);
  font-size: 1rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  padding: 10px 0 12px;
  color: var(--ink);
  resize: vertical;
  min-height: 44px;
  transition: border-color .2s ease;
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: 0;
  border-bottom-color: var(--clay);
}
.field textarea { min-height: 130px; }

/* Stats / accolade strip */
.accolades {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 720px) { .accolades { grid-template-columns: repeat(2, 1fr); } }
.accolade {
  padding: 36px 24px;
  text-align: center;
  border-right: 1px solid var(--line);
}
.accolade:last-child { border-right: 0; }
@media (max-width: 720px) {
  .accolade { border-bottom: 1px solid var(--line); }
  .accolade:nth-child(2n) { border-right: 0; }
}
.accolade .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(2.2rem, 3.4vw, 3rem);
  color: var(--clay);
  display: block;
  line-height: 1;
}
.accolade .lbl {
  margin-top: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}

/* Press grid */
.press-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--line);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 820px) { .press-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .press-grid { grid-template-columns: 1fr; } }
.press-cell {
  background: var(--bg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 240px;
  transition: background .3s ease;
}
.press-cell:hover { background: var(--paper); }
.press-cell .pub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.4rem;
  color: var(--clay);
}
.press-cell .date {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.press-cell .quote {
  font-family: var(--serif);
  font-size: 1.1rem;
  line-height: 1.4;
}
.press-cell .read {
  margin-top: auto;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
}

/* ===== Press / Journal page ===== */
/* "As seen in" wordmark strip */
.pubs-strip {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
@media (max-width: 880px) { .pubs-strip { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 520px) { .pubs-strip { grid-template-columns: repeat(2, 1fr); } }
.pubs-strip .pub-mark {
  padding: 30px 14px;
  text-align: center;
  border-right: 1px solid var(--line);
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
  line-height: 1.15;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 4px;
  transition: color .25s ease;
}
.pubs-strip .pub-mark:hover { color: var(--clay); }
.pubs-strip .pub-mark:last-child { border-right: 0; }
.pubs-strip .pub-mark small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.6rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
@media (max-width: 880px) {
  .pubs-strip .pub-mark:nth-child(3n) { border-right: 0; }
  .pubs-strip .pub-mark { border-bottom: 1px solid var(--line); }
  .pubs-strip .pub-mark:nth-last-child(-n+3) { border-bottom: 0; }
}
@media (max-width: 520px) {
  .pubs-strip .pub-mark:nth-child(3n) { border-right: 1px solid var(--line); }
  .pubs-strip .pub-mark:nth-child(2n) { border-right: 0; }
}

/* Featured press — magazine-style asymmetric */
.feature-press {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(36px, 6vw, 84px);
  align-items: center;
}
@media (max-width: 820px) { .feature-press { grid-template-columns: 1fr; } }
.feature-press .ph {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: var(--bg-warm);
}
.feature-press .ph img { width: 100%; height: 100%; object-fit: cover; }
.feature-press .ph .tear {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--paper);
  padding: 8px 12px;
  font-size: 0.62rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink);
  font-weight: 500;
}
.feature-press .pub-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--clay);
  margin-bottom: 10px;
}
.feature-press .meta {
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-bottom: 24px;
}
.feature-press .feature-title {
  font-family: var(--serif);
  font-size: clamp(1.8rem, 2.6vw, 2.6rem);
  line-height: 1.12;
  margin: 0 0 20px;
}
.feature-press .pull {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  line-height: 1.45;
  color: var(--ink-soft);
  border-left: 1px solid var(--clay);
  padding-left: 20px;
  margin: 24px 0 30px;
}

/* Press tiles (image + cite) — more layered than the old text-only press-grid */
.press-tiles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 3vw, 44px) clamp(20px, 2.4vw, 32px);
}
@media (max-width: 880px) { .press-tiles { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .press-tiles { grid-template-columns: 1fr; } }
.press-tile { display: flex; flex-direction: column; gap: 18px; }
.press-tile .ph {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
}
.press-tile .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s ease;
}
.press-tile:hover .ph img { transform: scale(1.04); }
.press-tile .pub {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.25rem;
  color: var(--clay);
}
.press-tile .date {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.press-tile .head {
  display: flex; justify-content: space-between; align-items: baseline; gap: 12px;
  border-bottom: 1px solid var(--line-soft);
  padding-bottom: 14px;
}
.press-tile .quote {
  font-family: var(--serif);
  font-size: 1.08rem;
  line-height: 1.45;
  color: var(--ink);
  margin: 0;
}
.press-tile .read {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: inline-flex; align-items: center; gap: 8px;
  margin-top: 2px;
}
.press-tile:hover .read { color: var(--clay); }

/* Section header w/ kicker on left and meta on right */
.section-head {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 32px;
  flex-wrap: wrap;
  padding-bottom: clamp(28px, 3vw, 44px);
  border-bottom: 1px solid var(--line);
  margin-bottom: clamp(36px, 4vw, 60px);
}
.section-head h2 { max-width: 18ch; }
.section-head .filters {
  display: flex; gap: 8px; flex-wrap: wrap;
}
.section-head .filter {
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 8px 16px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--ink-soft);
  cursor: pointer;
  transition: all .2s ease;
  background: transparent;
  font-family: var(--sans);
  font-weight: 500;
}
.section-head .filter.on,
.section-head .filter:hover { color: var(--paper); background: var(--ink); border-color: var(--ink); }

/* Journal — featured post (asymmetric) */
.journal-feature {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: center;
  margin-bottom: clamp(56px, 7vw, 96px);
}
@media (max-width: 820px) { .journal-feature { grid-template-columns: 1fr; } }
.journal-feature .ph {
  aspect-ratio: 5 / 4;
  overflow: hidden;
  background: var(--bg-warm);
}
.journal-feature .ph img { width: 100%; height: 100%; object-fit: cover; }
.journal-feature .cat {
  display: inline-block;
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
  margin-bottom: 18px;
}
.journal-feature h3 {
  font-size: clamp(1.7rem, 2.6vw, 2.6rem);
  line-height: 1.12;
  margin-bottom: 22px;
}
.journal-feature .dek {
  font-size: 1.05rem;
  color: var(--ink-soft);
  margin-bottom: 26px;
  max-width: 44ch;
  line-height: 1.6;
}
.journal-feature .byline {
  display: flex; align-items: center; gap: 14px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-bottom: 28px;
}
.journal-feature .byline .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }

/* Journal — recent posts grid */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(36px, 4vw, 56px) clamp(24px, 3vw, 40px);
}
@media (max-width: 880px) { .journal-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .journal-grid { grid-template-columns: 1fr; } }
.post { display: flex; flex-direction: column; gap: 20px; }
.post .ph {
  aspect-ratio: 4 / 3;
  overflow: hidden;
  background: var(--bg-warm);
  position: relative;
}
.post .ph img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .9s ease;
}
.post:hover .ph img { transform: scale(1.04); }
.post .cat {
  font-size: 0.64rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--clay);
}
.post h4 {
  font-family: var(--serif);
  font-size: 1.45rem;
  line-height: 1.2;
  font-weight: 500;
  max-width: 22ch;
}
.post .meta {
  display: flex; gap: 10px;
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
  align-items: center;
}
.post .meta .dot { width: 3px; height: 3px; border-radius: 50%; background: currentColor; opacity: 0.5; }
.post .excerpt {
  font-size: 0.97rem;
  color: var(--ink-soft);
  line-height: 1.55;
  margin: 0;
}

/* Newsletter inline form */
.newsletter {
  background: var(--paper);
  padding: clamp(48px, 6vw, 88px) clamp(36px, 5vw, 80px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(28px, 4vw, 56px);
  align-items: center;
  border: 1px solid var(--line-soft);
}
@media (max-width: 760px) { .newsletter { grid-template-columns: 1fr; } }
.newsletter h2 { font-size: clamp(1.7rem, 2.8vw, 2.4rem); max-width: 18ch; }
.newsletter .small { font-size: 0.92rem; color: var(--ink-soft); margin-top: 14px; max-width: 42ch; }
.newsletter form { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter input[type=email] {
  flex: 1; min-width: 220px;
  font-family: var(--sans);
  font-size: 1rem;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--ink);
  padding: 12px 0;
  color: var(--ink);
}
.newsletter input[type=email]:focus { outline: 0; border-bottom-color: var(--clay); }
.newsletter .fineprint {
  font-size: 0.68rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
  margin-top: 14px;
}


/* Blog divider band on Press page */
.blog-divider {
  background: var(--bg-deep);
  color: var(--paper);
  padding: clamp(80px, 10vw, 140px) 0;
  position: relative;
  overflow: hidden;
}
.blog-divider::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(168,113,74,0.22), transparent 50%),
    radial-gradient(circle at 10% 90%, rgba(217,196,163,0.10), transparent 55%);
  pointer-events: none;
}
.blog-divider .container { position: relative; z-index: 1; }
.blog-divider .eyebrow { color: var(--sand); }
.blog-divider-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: end;
}
@media (max-width: 880px) { .blog-divider-inner { grid-template-columns: 1fr; } }
.blog-mark {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(3.6rem, 9vw, 7.2rem);
  line-height: 0.95;
  color: var(--paper);
  margin-top: 22px;
  letter-spacing: -0.01em;
}
.blog-mark em {
  font-style: italic;
  color: var(--sand);
}
.blog-meta {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 28px 0;
  border-top: 1px solid rgba(251,247,236,0.22);
  border-bottom: 1px solid rgba(251,247,236,0.22);
}
.blog-meta-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: 24px;
}
.blog-meta-row .lbl {
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--sand);
  font-weight: 500;
}
.blog-meta-row .val {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--paper);
  text-align: right;
}

/* Floating call now (mobile) */
.float-call {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 40;
  display: none;
  align-items: center;
  gap: 8px;
  background: var(--clay);
  color: var(--paper);
  padding: 14px 20px;
  border-radius: 999px;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
  box-shadow: 0 14px 32px rgba(34,27,20,0.25);
}
@media (max-width: 720px) { .float-call { display: inline-flex; } }

/* Tweaks panel */
.tweaks-panel {
  position: fixed;
  right: 18px;
  bottom: 18px;
  width: 300px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 24px 60px rgba(34,27,20,0.2);
  z-index: 100;
  font-family: var(--sans);
  font-size: 13px;
  color: var(--ink);
  display: none;
}
.tweaks-panel.open { display: block; }
.tweaks-panel header {
  display: flex; justify-content: space-between; align-items: center;
  margin-bottom: 12px;
}
.tweaks-panel h6 {
  margin: 0; font-size: 11px; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.tweaks-panel .x {
  border: 0; background: transparent; cursor: pointer; color: var(--ink-soft);
  font-size: 16px; line-height: 1;
}
.tweak-row { display: flex; flex-direction: column; gap: 6px; margin-bottom: 14px; }
.tweak-row label {
  font-size: 10.5px; letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--ink-soft); font-weight: 500;
}
.swatches { display: flex; gap: 6px; flex-wrap: wrap; }
.swatches button {
  width: 28px; height: 28px; border-radius: 50%;
  border: 2px solid transparent; cursor: pointer; padding: 0;
  background-clip: content-box;
}
.swatches button.sel { border-color: var(--ink); }
.tweak-row input[type=range] { width: 100%; }
.seg { display: flex; gap: 4px; background: var(--bg-warm); padding: 3px; border-radius: 8px; }
.seg button {
  flex: 1; padding: 6px 8px; font-size: 11px; border: 0; background: transparent;
  cursor: pointer; border-radius: 6px; color: var(--ink-soft);
  font-family: var(--sans); letter-spacing: 0.06em; text-transform: uppercase; font-weight: 500;
}
.seg button.sel { background: var(--paper); color: var(--ink); box-shadow: 0 1px 2px rgba(0,0,0,0.06); }

/* Utility */
.center { text-align: center; }
.lead { font-size: 1.18rem; color: var(--ink-soft); max-width: 56ch; }
hr.rule { border: 0; border-top: 1px solid var(--line); margin: 0; }
.spacer-sm { height: 32px; }
.spacer-md { height: 56px; }
.spacer-lg { height: 96px; }
