/* === Da Kine Cleaning — shared mockup stylesheet ===
   Style: Nature Distilled (per UI/UX Pro Max recommendation)
   Layout: Editorial / magazine
   Type: Cormorant Garamond + Inter
============================================================ */

:root {
  /* Tropical palette pulled from the existing logo (coral / teal / sunshine / leaf) */
  --terracotta: #E84A6B;        /* coral pink — primary brand accent */
  --terracotta-deep: #C73655;   /* deep coral — hovers */
  --clay: #F5A623;              /* sunshine yellow — secondary accent */
  --olive: #2A9DA8;             /* teal — eyebrows, secondary */
  --olive-deep: #1B7785;        /* deep teal */
  --sand: #FCD9B6;              /* warm peach — gradient stop */
  --cream: #FFF1E0;             /* warm cream — section bg */
  --cream-warm: #FFE4C7;        /* peach-cream */
  --paper: #FFFBF2;             /* off-white page bg */
  --ink: #1B2735;               /* deep navy ink — text/buttons */
  --ink-soft: #3D4D5F;
  --ink-mute: #7B8593;
  --line: #F1DDC4;              /* warm hairline border */
  --shadow-soft: 0 1px 3px rgba(27,39,53,.06), 0 8px 24px rgba(27,39,53,.06);
  --container: 1200px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='3'/><feColorMatrix values='0 0 0 0 0.16 0 0 0 0 0.12 0 0 0 0 0.09 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}
img { max-width: 100%; display: block; }
a { color: var(--terracotta-deep); text-decoration: underline; text-decoration-thickness: 1px; text-underline-offset: 3px; transition: color .2s; }
a:hover { color: var(--ink); }

h1, h2, h3, h4 { font-family: 'Cormorant Garamond', Georgia, serif; font-weight: 500; line-height: 1.1; color: var(--ink); letter-spacing: -0.005em; }
h1 { font-size: clamp(3rem, 6vw, 5.2rem); font-weight: 500; }
h2 { font-size: clamp(2.2rem, 4.2vw, 3.4rem); font-weight: 500; }
h3 { font-size: 1.6rem; font-weight: 500; }
em, .display-italic { font-style: italic; font-family: 'Cormorant Garamond', serif; color: var(--terracotta-deep); }

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

/* === BUTTONS === */
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  font-size: 0.95rem;
  letter-spacing: 0.01em;
  border-radius: 2px;
  border: 1.5px solid;
  cursor: pointer;
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
}
.btn:hover { text-decoration: none; }
.btn-primary { background: var(--ink); color: var(--paper); border-color: var(--ink); }
.btn-primary:hover { background: var(--terracotta-deep); border-color: var(--terracotta-deep); color: var(--paper); }
.btn-ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn-ghost:hover { background: var(--ink); color: var(--paper); }
.btn-large { padding: 18px 32px; font-size: 1rem; }

/* === HEADER === */
.site-header {
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 50;
}
.header-inner {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  padding: 10px 32px;
  max-width: var(--container);
  margin: 0 auto;
  gap: 32px;
}
.logo {
  display: flex; align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo:hover { text-decoration: none; }
.logo img { display: block; height: 88px; width: auto; }
.logo .ampersand { font-style: italic; font-weight: 400; color: var(--terracotta-deep); }
/* Fallback when the logo image is missing — script swaps img for .logo-text */
.logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.015em;
  white-space: nowrap;
}
/* Footer logo (image variant) — sized as a brand mark, not a hero */
.footer-logo { display: block; margin: 0 0 14px; max-width: 205px; }
.footer-logo img { display: block; width: 100%; height: auto; }
/* Footer fallback (when image fails or not present) */
.footer-logo-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--paper);
  letter-spacing: -0.015em;
  margin: 0 0 14px;
  display: block;
}
.footer-logo-text .ampersand { font-style: italic; color: var(--terracotta); }
.main-nav { display: flex; gap: 36px; align-items: center; justify-content: center; }
.main-nav a {
  color: var(--ink-soft);
  font-weight: 400;
  font-size: 0.95rem;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
  transition: border-color .2s;
}
.main-nav a:hover, .main-nav a.active { border-color: var(--terracotta); color: var(--ink); }
.header-actions { display: flex; gap: 16px; align-items: center; }
.header-phone {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink);
  text-decoration: none;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 2px;
}
.header-phone:hover { color: var(--terracotta-deep); border-color: var(--terracotta-deep); text-decoration: none; }
.menu-toggle {
  display: none;
  background: none;
  border: 1.5px solid var(--ink);
  border-radius: 2px;
  width: 44px; height: 44px;
  align-items: center; justify-content: center;
  cursor: pointer;
}

/* === SECTION HELPERS === */
section { padding: 96px 0; }
.section-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--olive-deep);
  margin-bottom: 18px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 14px;
}
.section-eyebrow::before { content: '—'; color: var(--olive); font-weight: 400; }

.page-hero {
  padding: 72px 0 56px;
  border-bottom: 1px solid var(--line);
  background: linear-gradient(160deg, var(--cream) 0%, var(--paper) 55%, var(--cream-warm) 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='nph'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='6'/><feColorMatrix values='0 0 0 0 0.7 0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0.04 0'/></filter><rect width='100%' height='100%' filter='url(%23nph)'/></svg>");
  pointer-events: none;
}
.page-hero::after {
  content: '';
  position: absolute;
  top: -80px; right: -80px;
  width: 240px; height: 240px;
  background: var(--terracotta);
  opacity: 0.08;
  border-radius: 50%;
  pointer-events: none;
}
.page-hero > .container,
.page-hero > .container-narrow { position: relative; z-index: 1; }
.page-hero .eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--olive-deep);
  margin-bottom: 20px;
  display: flex; align-items: center; gap: 14px;
}
.page-hero .eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--olive); }
.page-hero h1 { font-size: clamp(2.6rem, 5.5vw, 4.2rem); margin-bottom: 24px; max-width: 18ch; }
.page-hero .lede { font-size: 1.18rem; color: var(--ink-soft); max-width: 60ch; }

/* === HERO (homepage) === */
.hero {
  padding: 80px 0 112px;
  position: relative;
  background: linear-gradient(160deg, var(--cream) 0%, var(--cream-warm) 50%, var(--sand) 100%);
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='nh'><feTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2' seed='4'/><feColorMatrix values='0 0 0 0 0.7 0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0.05 0'/></filter><rect width='100%' height='100%' filter='url(%23nh)'/></svg>");
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 380px; height: 380px;
  background: var(--terracotta);
  opacity: 0.10;
  border-radius: 50%;
  pointer-events: none;
}
.hero > .container { position: relative; }
.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}
.hero-copy {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--olive-deep);
  margin-bottom: 24px;
  display: flex; align-items: center; gap: 14px;
}
.hero-eyebrow::before { content: ''; width: 36px; height: 1px; background: var(--olive); }
.hero-headline {
  font-size: clamp(2.8rem, 5.8vw, 5rem);
  margin-bottom: 28px;
  font-weight: 500;
  letter-spacing: -0.02em;
  line-height: 1.05;
}
.hero-headline em { font-family: 'Cormorant Garamond', serif; font-weight: 400; }
.hero-sub {
  font-size: 1.18rem;
  color: var(--ink-soft);
  margin-bottom: 36px;
  max-width: 540px;
  line-height: 1.55;
}
.quote-form {
  display: flex; gap: 12px; max-width: 520px; margin-bottom: 18px;
  border-bottom: 1.5px solid var(--ink);
  padding-bottom: 12px;
  align-items: center;
}
.quote-form input {
  flex: 1;
  padding: 10px 0;
  border: none;
  background: transparent;
  font-size: 1.1rem;
  font-family: inherit;
  color: var(--ink);
}
.quote-form input::placeholder { color: var(--ink-mute); }
.quote-form input:focus { outline: none; }
.quote-form button {
  background: var(--ink);
  color: var(--paper);
  border: none;
  padding: 14px 24px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  cursor: pointer;
  transition: background .2s;
  border-radius: 2px;
  letter-spacing: 0.02em;
}
.quote-form button:hover { background: var(--terracotta-deep); }
.hero-microcopy { font-style: italic; font-family: 'Cormorant Garamond', serif; font-size: 1.05rem; color: var(--ink-mute); }

/* === IMAGE BLOCKS === */
.img-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, var(--cream-warm) 0%, var(--sand) 60%, var(--terracotta) 130%);
  border-radius: 2px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.img-block::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='n2'><feTurbulence type='fractalNoise' baseFrequency='1.2' numOctaves='2' seed='5'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.4 0 0 0 0 0.3 0 0 0 0.18 0'/></filter><rect width='100%' height='100%' filter='url(%23n2)'/></svg>");
  pointer-events: none;
}
.img-block.olive { background: linear-gradient(135deg, var(--sand) 0%, var(--olive) 100%); }
.img-block.terra { background: linear-gradient(135deg, var(--terracotta) 0%, var(--clay) 50%, var(--terracotta-deep) 100%); }
.img-block.cream { background: linear-gradient(135deg, var(--cream-warm) 0%, var(--sand) 100%); }
.img-block.tall { aspect-ratio: 3/4; }
.img-block.wide { aspect-ratio: 16/10; }
.img-block.portrait { aspect-ratio: 4/5; }
.img-block.square { aspect-ratio: 1/1; }

.placeholder-note {
  position: relative;
  background: rgba(251,248,240,.95);
  padding: 20px 24px;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-soft);
  border-left: 2px solid var(--terracotta);
  max-width: 320px;
  line-height: 1.5;
}

/* Brand snapshot card — used inside an .img-block when there's no real photo to show.
   Looks like an intentional editorial brand label, not a photo placeholder. */
.brand-snapshot {
  position: relative;
  background: rgba(251,248,240,.95);
  padding: 28px 30px;
  max-width: 300px;
  border-radius: 2px;
  box-shadow: 0 8px 24px rgba(27,39,53,.10);
  text-align: left;
}
.brand-snapshot-eyebrow {
  display: block;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.brand-snapshot-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 18px;
}
.brand-snapshot-meta {
  display: block;
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--ink-mute);
  letter-spacing: 0.02em;
  border-top: 1px solid var(--line);
  padding-top: 14px;
}
/* Real photos inside an .img-block fill the box, edge to edge */
.img-block img.photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
/* Embedded maps (Google Maps iframe) fill the .img-block area */
.img-block.map-block { background: var(--cream); padding: 0; }
.img-block.map-block::before { display: none; }
.img-block.map-block iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}
.placeholder-note .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-style: normal;
  display: block;
  margin-bottom: 6px;
  font-weight: 600;
}

/* === TRUST STRIP === */
.trust {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--cream);
  padding: 24px 0;
}
.trust-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  font-size: 0.92rem;
  color: var(--ink-soft);
}
.trust-row span { display: flex; align-items: center; gap: 8px; }
.trust-row .divider { color: var(--ink-mute); margin: 0 8px; opacity: .4; }

/* === SERVICES (homepage balanced grid) === */
.services-header {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(0, 1fr);
  gap: 56px;
  align-items: end;
  margin-bottom: 48px;
}
.services-header h2 { max-width: 22ch; }
.services-header p {
  color: var(--ink-soft);
  font-size: 1.05rem;
  max-width: 44ch;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}

a.service {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 28px 28px 24px;
  text-decoration: none;
  color: inherit;
  position: relative;
  transition: border-color .2s ease, transform .2s ease, box-shadow .2s ease;
}
a.service:hover,
a.service:focus-visible {
  border-color: var(--terracotta);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(27,39,53,.06);
  text-decoration: none;
}
a.service:focus-visible { outline: 2px solid var(--terracotta); outline-offset: 2px; }

.service-num {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 0.95rem;
  color: var(--terracotta-deep);
  margin-bottom: 10px;
}
.service h3 {
  margin-bottom: 10px;
  font-size: 1.55rem;
  line-height: 1.15;
}
.service p {
  color: var(--ink-soft);
  font-size: 0.97rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.service-link {
  margin-top: auto;
  color: var(--ink);
  font-size: 0.92rem;
  font-family: 'Inter', sans-serif;
  font-weight: 500;
  letter-spacing: 0.01em;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  align-self: flex-start;
  transition: color .2s ease, border-color .2s ease;
}
a.service:hover .service-link,
a.service:focus-visible .service-link {
  color: var(--terracotta-deep);
  border-color: var(--terracotta-deep);
}

@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 880px) {
  .services-header {
    grid-template-columns: 1fr;
    gap: 18px;
    margin-bottom: 36px;
  }
  .services-header h2 { max-width: none; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  a.service { padding: 24px 22px 20px; }
  .service h3 { font-size: 1.4rem; }
}

/* === SERVICES HUB GRID (services.html) === */
.services-hub {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 48px;
}
.svc-tile { border-top: 1px solid var(--line); padding-top: 28px; }
.svc-tile .img-block { aspect-ratio: 16/10; margin-bottom: 24px; }
.svc-tile h3 { font-size: 2rem; margin-bottom: 12px; }
.svc-tile p { color: var(--ink-soft); margin-bottom: 18px; font-size: 1rem; line-height: 1.6; max-width: 50ch; }

/* === HOW IT WORKS === */
.how { background: var(--cream); }
.how-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; }
.how-step { position: relative; padding-top: 40px; border-top: 1px solid var(--line); }
.how-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 500;
  color: var(--terracotta-deep);
  line-height: 1;
  margin-bottom: 18px;
  font-style: italic;
}
.how-step h3 { margin-bottom: 10px; font-size: 1.5rem; }
.how-step p { color: var(--ink-soft); font-size: 0.98rem; line-height: 1.6; }

/* === TWO-COL EDITORIAL (about, etc.) === */
.two-col { display: grid; grid-template-columns: 1fr 1.3fr; gap: 80px; align-items: start; }
.two-col-image { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.two-col h2 { margin-bottom: 24px; }
.two-col p { color: var(--ink-soft); font-size: 1.05rem; line-height: 1.7; margin-bottom: 18px; max-width: 60ch; }
@media (max-width: 880px) {
  .two-col, .two-col-image { grid-template-columns: 1fr; gap: 40px; }
}

/* === REVIEWS === */
.reviews { background: var(--paper); }
.reviews-header { text-align: center; margin-bottom: 64px; max-width: 720px; margin-left: auto; margin-right: auto; }
.reviews-header h2 { margin-bottom: 18px; }
.reviews-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.15rem;
  color: var(--ink-soft);
}
.reviews-empty {
  background: var(--cream);
  border: 1px dashed var(--terracotta);
  padding: 48px 32px;
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
}
.reviews-empty .label {
  font-family: 'Inter', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta-deep);
  font-weight: 600;
  margin-bottom: 14px;
}
.reviews-empty p {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.2rem;
  color: var(--ink-soft);
  line-height: 1.5;
  margin-bottom: 8px;
}

/* === SERVICE AREA === */
.area { background: var(--cream); }
.area .container { display: grid; grid-template-columns: 1.4fr 1fr; gap: 80px; align-items: center; }
.area h2 { margin-bottom: 24px; max-width: 14ch; }
.area p { color: var(--ink-soft); font-size: 1.05rem; max-width: 48ch; margin-bottom: 32px; }
.area-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4px 32px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.2rem;
}
.area-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: baseline;
}
.area-list li::after {
  content: '→';
  color: var(--terracotta);
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.area-list li:hover::after { opacity: 1; transform: translateX(3px); }
.area-note {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.95rem;
  margin: 14px 0 0;
  text-align: center;
  line-height: 1.5;
}
@media (max-width: 880px) {
  .area .container { grid-template-columns: 1fr; gap: 40px; }
  .area-list { grid-template-columns: 1fr; }
}

/* === FAQ === */
.faq { background: var(--paper); }
.faq h2 { text-align: center; margin-bottom: 64px; }
.faq-list { max-width: 880px; margin: 0 auto; }
.faq-item { border-top: 1px solid var(--line); padding: 24px 0; position: relative; }
.faq-item:last-child { border-bottom: 1px solid var(--line); }
.faq-q {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  color: var(--ink);
  list-style: none;
  font-weight: 500;
  padding-right: 36px;
  line-height: 1.3;
}
.faq-q::after {
  content: '+';
  position: absolute;
  right: 0;
  top: 24px;
  font-size: 1.6rem;
  font-family: 'Cormorant Garamond', serif;
  font-weight: 400;
  color: var(--terracotta-deep);
  transition: transform .2s;
}
.faq-item[open] .faq-q::after { content: '−'; }
.faq-a { margin-top: 16px; color: var(--ink-soft); font-size: 1rem; line-height: 1.65; max-width: 60ch; }

/* === LEGAL PAGES (privacy, terms) === */
.legal { padding-bottom: 64px; }
.legal h2 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.8rem;
  font-weight: 500;
  color: var(--ink);
  margin-top: 48px;
  margin-bottom: 16px;
  letter-spacing: -0.005em;
}
.legal h2:first-of-type { margin-top: 32px; }
.legal p, .legal li { color: var(--ink-soft); line-height: 1.7; margin-bottom: 14px; max-width: 64ch; }
.legal ul { margin: 0 0 20px 0; padding-left: 22px; }
.legal ul li { margin-bottom: 8px; }
.legal-meta {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 1rem;
  margin-bottom: 24px;
}
.legal a { color: var(--terracotta-deep); }
.legal strong { color: var(--ink); font-weight: 600; }

/* === SERVICE-DETAIL PAGE (long-form) === */
.svc-includes { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; }
.svc-list { list-style: none; }
.svc-list li {
  padding: 14px 0 14px 28px;
  border-bottom: 1px solid var(--line);
  position: relative;
  font-size: 1rem;
  line-height: 1.5;
  color: var(--ink-soft);
}
.svc-list li::before {
  content: '✦';
  position: absolute;
  left: 0;
  color: var(--terracotta);
  font-size: 1rem;
  top: 14px;
}
.svc-list.x li::before { content: '×'; color: var(--ink-mute); font-size: 1.4rem; top: 8px; }

.svc-process { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; counter-reset: step; }
.svc-process .step { counter-increment: step; padding-top: 40px; border-top: 1px solid var(--line); }
.svc-process .step::before {
  content: counter(step, lower-roman) ".";
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 3.5rem;
  color: var(--terracotta-deep);
  line-height: 1;
  display: block;
  margin-bottom: 14px;
}
.svc-process h3 { font-size: 1.4rem; margin-bottom: 8px; }
.svc-process p { color: var(--ink-soft); font-size: 0.97rem; line-height: 1.55; }

@media (max-width: 880px) {
  .svc-includes, .svc-process { grid-template-columns: 1fr; gap: 32px; }
  .how-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* === TALLY EMBED (contact form provider) ===
   Iframe height is driven by Tally's dynamicHeight postMessage
   (see initTallyResize in script.js). min-height is the smallest
   sensible floor — Tally pushes it taller as the form needs. */
.tally-embed {
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 2px;
  padding: 12px 16px 16px;
  max-width: 620px;
  width: 100%;
}
.tally-embed iframe {
  display: block;
  width: 100%;
  border: 0;
  background: transparent;
  min-height: 320px;
}
.tally-embed .help {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.95rem;
  margin: 12px 4px 0;
}
@media (max-width: 880px) {
  .tally-embed { padding: 10px 12px 14px; }
  .tally-embed iframe { min-height: 380px; }
}

/* === CONTACT FORM === */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 80px; }
.contact-info h3 { font-size: 1.3rem; font-family: 'Inter', sans-serif; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--olive-deep); font-size: 0.78rem; margin-bottom: 8px; }
.contact-info .field { margin-bottom: 32px; }
.contact-info .value {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  color: var(--ink);
}
.contact-info .value a { color: var(--ink); text-decoration: none; border-bottom: 1.5px solid var(--ink); padding-bottom: 2px; }
.contact-info .value a:hover { color: var(--terracotta-deep); border-color: var(--terracotta-deep); }

.contact-form .row { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; margin-bottom: 16px; }
.contact-form .row.three { grid-template-columns: 1fr 1fr 1fr; }
.contact-form .field { display: flex; flex-direction: column; gap: 6px; }
.contact-form .field.full { grid-column: 1 / -1; }
.contact-form label {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--olive-deep);
  font-weight: 500;
}
.contact-form input, .contact-form select, .contact-form textarea {
  padding: 12px 14px;
  border: 1px solid var(--line);
  background: var(--paper);
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  border-radius: 2px;
  transition: border-color .2s;
}
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus {
  outline: none; border-color: var(--terracotta);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .checkbox-row { display: flex; flex-wrap: wrap; gap: 16px; }
.contact-form .checkbox-row label {
  display: flex; align-items: center; gap: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  letter-spacing: normal;
  text-transform: none;
  color: var(--ink-soft);
  font-weight: 400;
  cursor: pointer;
}
.contact-form .checkbox-row input { width: 16px; height: 16px; padding: 0; }
.contact-form .submit-row { margin-top: 24px; }
.contact-form .help {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  color: var(--ink-mute);
  font-size: 0.95rem;
  margin-top: 8px;
}
@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-form .row, .contact-form .row.three { grid-template-columns: 1fr; }
}

/* === ABOUT === */
.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 56px 64px; align-items: start; }
.about-value { padding-top: 28px; padding-bottom: 8px; border-top: 1px solid var(--line); }
.about-value h3 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 2.2rem;
  color: var(--terracotta-deep);
  margin-bottom: 12px;
  line-height: 1;
}
.about-value p { color: var(--ink-soft); line-height: 1.6; max-width: 50ch; }

.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 48px; }
.team-member .img-block { aspect-ratio: 4/5; margin-bottom: 16px; }
.team-member h4 {
  font-family: 'Cormorant Garamond', serif;
  font-style: italic;
  font-size: 1.5rem;
  color: var(--ink);
  margin-bottom: 4px;
  text-transform: none;
  letter-spacing: 0;
  font-weight: 500;
}
.team-member .role {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--olive-deep);
}
@media (max-width: 880px) {
  .about-values, .team-grid { grid-template-columns: 1fr; gap: 32px; }
}

/* === CTA BAND === */
.cta-band {
  background: var(--terracotta);
  color: var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band::before {
  content: '';
  position: absolute; inset: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='200' height='200'><filter id='nc'><feTurbulence type='fractalNoise' baseFrequency='1' numOctaves='2' seed='11'/><feColorMatrix values='0 0 0 0 0.5 0 0 0 0 0.3 0 0 0 0 0.2 0 0 0 0.16 0'/></filter><rect width='100%' height='100%' filter='url(%23nc)'/></svg>");
  pointer-events: none;
}
.cta-band > .container { position: relative; }
.cta-band h2 { color: var(--paper); margin-bottom: 18px; font-size: clamp(2rem, 4vw, 3.4rem); }
.cta-band p { color: rgba(245,240,225,.92); max-width: 540px; margin: 0 auto 32px; font-size: 1.15rem; font-family: 'Cormorant Garamond', serif; font-style: italic; }
.cta-band .btn-primary { background: var(--ink); border-color: var(--ink); }
.cta-band .btn-primary:hover { background: var(--paper); color: var(--ink); border-color: var(--paper); }

/* === FOOTER === */
.site-footer {
  background: var(--ink);
  color: var(--cream-warm);
  padding: 64px 0 32px;
  font-size: 0.95rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 0.8fr;
  gap: 48px;
  margin-bottom: 48px;
  align-items: start;
}
.site-footer h4 {
  color: var(--terracotta);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  margin-bottom: 18px;
  font-weight: 600;
}
.site-footer ul { list-style: none; }
.site-footer ul li { margin-bottom: 10px; }
.site-footer a { color: var(--cream-warm); text-decoration: none; transition: color .2s; }
.site-footer a:hover { color: var(--terracotta); text-decoration: none; }
.footer-brand {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.7rem;
  color: var(--paper);
  margin-bottom: 14px;
  letter-spacing: -0.015em;
}
.footer-brand .ampersand { font-style: italic; color: var(--terracotta); }
.footer-tag { margin-bottom: 18px; max-width: 320px; line-height: 1.55; color: var(--sand); font-size: 0.92rem; }
.footer-contact { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: 1.1rem; }
.footer-contact p { margin-bottom: 4px; }
.footer-contact a { border-bottom: 1px solid rgba(212,196,168,.3); padding-bottom: 1px; }
.footer-bottom {
  border-top: 1px solid rgba(212,196,168,.18);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
  color: var(--ink-mute);
}

/* === STICKY MOBILE CTA === */
.mobile-cta {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
  padding: 14px 16px;
  gap: 10px;
  z-index: 100;
  box-shadow: 0 -2px 16px rgba(42,31,24,.06);
}
.mobile-cta a { flex: 1; }

/* === MOBILE === */
@media (max-width: 880px) {
  body { padding-bottom: 80px; }
  .container, .container-narrow { padding: 0 24px; }
  .main-nav {
    display: none;
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--paper);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    padding: 12px 24px 20px;
    gap: 0;
    box-shadow: 0 8px 24px rgba(27,39,53,.08);
  }
  .main-nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
    color: var(--ink);
  }
  .main-nav a:last-child { border-bottom: none; }
  body.nav-open .main-nav { display: flex; }
  .header-actions .header-phone { display: none; }
  .header-actions .btn { display: none; }
  .menu-toggle { display: flex; }
  .header-inner { grid-template-columns: 1fr auto; gap: 16px; padding: 10px 20px; }
  .logo { font-size: 1.35rem; }
  .hero { padding: 48px 0 64px; }
  .hero::after { width: 220px; height: 220px; top: -80px; right: -80px; }
  .hero-grid { grid-template-columns: 1fr; gap: 32px; }
  .services-header { grid-template-columns: 1fr; gap: 40px; }
  .img-block.tall, .img-block.portrait { aspect-ratio: 4/5; max-height: 480px; }
  .logo img { height: 60px; }
  .footer-logo { max-width: 170px; }
  .img-block.square { aspect-ratio: 16/10; max-height: 280px; }
  .reviews-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .services-hub { grid-template-columns: 1fr; gap: 32px; }
  section { padding: 64px 0; }
  .page-hero { padding: 48px 0 40px; }
  .page-hero::after { width: 140px; height: 140px; top: -40px; right: -40px; }
  .mobile-cta { display: flex; }
  .quote-form { flex-direction: column; align-items: stretch; border-bottom: none; padding-bottom: 0; }
  .quote-form input { border-bottom: 1.5px solid var(--ink); padding: 14px 0; }
  .quote-form button { width: 100%; padding: 16px; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; gap: 32px; }
  .trust-row { flex-direction: column; align-items: flex-start; gap: 10px; }
  .trust-row .divider { display: none; }
}
