/* ===========================================================
   CMS Plumbing & Bathrooms — styles.css
   Editorial · Architectural · Mobile-first
   Boston, Lincolnshire — Chris Whitelam
   =========================================================== */

@font-face {
  font-family: 'Fraunces';
  font-style: normal;
  font-weight: 300 500;
  font-display: swap;
  src: url('assets/fonts/fraunces-latin.woff2') format('woff2');
}

@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('assets/fonts/inter-latin.woff2') format('woff2');
}

/* ====== 1. TOKENS ====== */
:root {
  --paper:        #f4f1ec;   /* warm off-white background */
  --paper-2:      #ebe4d6;   /* slightly darker cream for sections */
  --paper-3:      #fbf9f5;   /* lightest cream for cards */
  --ink:          #111111;   /* deep ink for headings */
  --ink-2:        #1a1a1a;   /* slightly softer ink */
  --line:         #e3dcd0;   /* hairline border on cream */
  --line-dark:    rgba(255,255,255,0.10);
  --mute:         #6b665c;   /* muted body copy on cream */
  --brass:        #20c0b0;   /* CMS brand teal (from logo) */
  --brass-dark:   #189c8e;
  --brass-soft:   rgba(32,192,176,0.10);
  --action:       #08766f;   /* accessible teal for filled buttons */
  --action-dark:  #065e58;
  --text:         #2a2620;
  --text-on-dark: rgba(255,255,255,0.78);
  --mute-on-dark: rgba(255,255,255,0.50);

  --font-display: 'Fraunces', 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Inter', system-ui, -apple-system, sans-serif;

  --section:  clamp(80px, 9vw, 140px);
  --container: 1240px;
  --pad:      clamp(20px, 4vw, 40px);

  --radius:    4px;
  --radius-lg: 8px;
  --trans:     0.4s cubic-bezier(0.22, 0.61, 0.36, 1);
  --trans-fast: 0.2s ease;
}

/* ====== 2. RESET / BASE ====== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--paper);
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}
body.menu-lock { overflow: hidden; }
img, svg { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; }
::selection { background: var(--action); color: #fff; }

/* ====== 3. TYPOGRAPHY ====== */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
h1 { font-size: clamp(2.6rem, 6.2vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4.2vw, 3.4rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); font-weight: 400; }
h4 { font-size: 1.05rem; font-weight: 500; letter-spacing: -0.01em; }
p  { font-size: 1.02rem; line-height: 1.7; color: var(--mute); max-width: 60ch; }
.lead {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.15rem, 1.8vw, 1.4rem);
  line-height: 1.55;
  color: var(--text);
  max-width: 52ch;
  letter-spacing: -0.01em;
}

.kicker {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 22px;
}
.kicker::before {
  content: '';
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--brass);
}
.kicker--light { color: var(--brass); }
.kicker--center { justify-content: center; }
.kicker--center::before { display: none; }

/* ====== 4. LAYOUT ====== */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 var(--pad);
}
.section { padding: var(--section) 0; }
.section--paper-2 { background: var(--paper-2); }
.section--ink {
  background: var(--ink);
  color: var(--text-on-dark);
}
.section--ink h1,
.section--ink h2,
.section--ink h3,
.section--ink h4 { color: #fff; }
.section--ink p  { color: var(--text-on-dark); }

.split {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
}
.split--reverse > :first-child { order: 2; }

.split-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--line);
  border-radius: var(--radius);
}
.split-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.split-img:hover img { transform: scale(1.04); }

.section-head {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
  margin-bottom: clamp(48px, 6vw, 80px);
  align-items: end;
}
.section-head h2 { max-width: 18ch; }
.section-head p  { max-width: 48ch; }

/* ====== 5. BUTTONS ====== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 18px 32px;
  font-family: var(--font-body);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  border: 1px solid transparent;
  border-radius: 2px;
  cursor: pointer;
  transition: var(--trans-fast);
  min-height: 52px;
  white-space: nowrap;
}
.btn--ink   { background: var(--ink); color: #fff; border-color: var(--ink); }
.btn--ink:hover { background: var(--action); border-color: var(--action); }
.btn--brass { background: var(--action); color: #fff; border-color: var(--action); }
.btn--brass:hover { background: var(--action-dark); border-color: var(--action-dark); }
.btn--outline-ink { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--outline-ink:hover { background: var(--ink); color: #fff; }
.btn--outline-light { background: transparent; color: #fff; border-color: rgba(255,255,255,0.5); }
.btn--outline-light:hover { background: #fff; color: var(--ink); border-color: #fff; }
.btn--ghost { background: transparent; color: var(--ink); padding: 14px 0; }
.btn--ghost:hover { color: var(--brass); }
.btn .arrow { transition: transform var(--trans-fast); }
.btn:hover .arrow { transform: translateX(4px); }

.btn-row { display: flex; flex-wrap: wrap; gap: 14px; }

/* ====== 6. NAV / HEADER ======
   Header is ALWAYS dark so the teal logo stays visible on every page.
   Over the hero (.on-dark), it becomes a more transparent dark gradient so the
   bathroom photo bleeds through; after the hero it locks to solid dark.
*/
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(17,17,17,0.94);
  backdrop-filter: saturate(140%) blur(14px);
  -webkit-backdrop-filter: saturate(140%) blur(14px);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: background var(--trans-fast);
}
.site-header .nav-link { color: rgba(255,255,255,0.82); }
.site-header .nav-link:hover { color: var(--brass); }
.site-header .nav-link.active { color: var(--brass); }
.site-header .nav-toggle span { background: #fff; }
.site-header .btn--ink { background: var(--action); color: #fff; border-color: var(--action); }
.site-header .btn--ink:hover { background: var(--action-dark); color: #fff; border-color: var(--action-dark); }

/* Over hero — slightly more transparent so the photo shows through */
.site-header.on-dark {
  background: linear-gradient(180deg, rgba(17,17,17,0.55) 0%, rgba(17,17,17,0.20) 100%);
  border-bottom-color: transparent;
}
.site-header.menu-open,
.site-header.menu-open.on-dark {
  background: #0a0a0a;
  border-bottom-color: rgba(255,255,255,0.08);
}
.site-header .container {
  position: relative;
  z-index: 102;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 96px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
}
.nav-logo img {
  /* Logo is itself a wordmark — let it speak for itself. Mobile is ~78px, desktop scales up. */
  height: 78px;
  width: auto;
  display: block;
}
/* By default the text wordmark is hidden — the image logo IS the wordmark.
   The footer brand overrides this and shows it for footer SEO context. */
.nav-logo-text { display: none; }
.site-header .nav-logo-text { display: none !important; }
.footer-brand .nav-logo-text { display: block; color: #fff; font-family: var(--font-display); font-weight: 400; font-size: 1.05rem; letter-spacing: -0.01em; line-height: 1; }
.nav-logo-text small {
  display: block;
  font-family: var(--font-body);
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-top: 4px;
}
.nav-links {
  display: none;
  align-items: center;
  gap: 36px;
}
.nav-link {
  font-size: 0.88rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  color: var(--ink);
  transition: color var(--trans-fast);
  position: relative;
}
.nav-link:hover { color: var(--brass); }
.nav-link.active { color: var(--brass); }
.nav-cta { display: none; }
.nav-cta .btn { padding: 12px 22px; min-height: 44px; font-size: 0.82rem; }

.nav-toggle {
  background: none;
  border: none;
  width: 40px;
  height: 40px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  padding: 0;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--ink);
  transition: var(--trans-fast);
  transform-origin: center;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

.nav-mobile {
  position: fixed;
  inset: 0;
  min-height: 100vh;
  min-height: 100svh;
  background: #0a0a0a;
  padding: calc(96px + 24px) var(--pad) 40px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 101;
  overflow-y: auto;
  color: #fff;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-10px);
  transition: opacity var(--trans-fast), transform var(--trans-fast), visibility var(--trans-fast);
}
.nav-mobile.open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateY(0);
}
.nav-mobile a {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.9rem;
  color: #fff;
  padding: 18px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  letter-spacing: -0.01em;
}
.nav-mobile a:hover, .nav-mobile a:focus { color: var(--brass); }
.nav-mobile a:last-of-type { border-bottom: none; }
.nav-mobile .btn {
  margin-top: 26px;
  width: 100%;
  background: var(--action);
  color: #fff;
  border-color: var(--action);
  border-bottom: 1px solid var(--action);
  font-family: var(--font-body);
  font-size: 0.95rem;
  padding: 18px;
}
.nav-mobile .btn:hover { background: var(--action-dark); border-color: var(--action-dark); color: #fff; }
.nav-mobile .mobile-contact {
  margin-top: 32px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,0.10);
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.nav-mobile .mobile-contact a {
  font-family: var(--font-body);
  font-size: 0.95rem;
  font-weight: 500;
  padding: 6px 0;
  border: 0;
  color: var(--brass);
  display: inline-block;
}

.page-offset { padding-top: 96px; }
.page-offset--transparent { padding-top: 0; }

/* ====== 7. HERO ====== */
.hero {
  position: relative;
  min-height: 100vh;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  color: #fff;
  overflow: hidden;
  background: var(--ink);
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg,
    rgba(17,17,17,0.55) 0%,
    rgba(17,17,17,0.35) 40%,
    rgba(17,17,17,0.85) 100%);
}
.hero-inner {
  position: relative;
  z-index: 1;
  width: 100%;
  padding-bottom: clamp(60px, 9vw, 120px);
  padding-top: clamp(140px, 18vw, 220px);
}
.hero h1 {
  color: #fff;
  max-width: 14ch;
  margin-bottom: 24px;
}
.hero .lead {
  color: rgba(255,255,255,0.78);
  margin-bottom: 36px;
  max-width: 48ch;
}
.hero .kicker { color: var(--brass); }
.hero .kicker::before { background: var(--brass); }

.hero-meta {
  position: relative;
  z-index: 1;
  margin-top: clamp(24px, 4vw, 48px);
  padding-top: 20px;
  border-top: 1px solid rgba(255,255,255,0.18);
  /* MOBILE: 3 small items in a single horizontal row */
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.hero-meta-item {
  display: flex;
  flex-direction: column;
  gap: 3px;
  min-width: 0;
}
.hero-meta-item strong {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 0.95rem;
  color: #fff;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.hero-meta-item span {
  font-size: 0.56rem;
  letter-spacing: 0.10em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  line-height: 1.35;
}

/* ====== 8. PAGE HERO (inner pages) ====== */
.page-hero {
  background: var(--paper-2);
  padding: clamp(140px, 16vw, 200px) 0 clamp(60px, 8vw, 100px);
  border-bottom: 1px solid var(--line);
}
.page-hero h1 { max-width: 18ch; margin-bottom: 24px; }
.page-hero p  { max-width: 56ch; font-size: 1.1rem; }
.breadcrumb {
  font-size: 0.76rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 22px;
}
.breadcrumb a { color: var(--brass); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb .sep { margin: 0 10px; opacity: 0.4; }

/* ====== 9. INTRO BLOCK ====== */
.intro {
  text-align: left;
  max-width: 920px;
}
.intro h2 {
  font-size: clamp(1.6rem, 3vw, 2.3rem);
  font-weight: 300;
  margin-bottom: 28px;
  max-width: 22ch;
}
.intro p {
  font-size: 1.08rem;
  color: var(--text);
  max-width: 60ch;
  margin-bottom: 18px;
}

/* ====== 10. SERVICE CARDS ====== */
.service-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}
.service-card {
  background: var(--paper);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: background var(--trans-fast);
}
.service-card:hover { background: var(--paper-3); }
.service-card-num {
  font-family: var(--font-body);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  color: var(--brass);
}
.service-card h3 {
  font-size: 1.3rem;
  font-weight: 400;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.service-card p {
  font-size: 0.93rem;
  color: var(--mute);
  max-width: 34ch;
}

/* ====== 11. WHY / FEATURE LIST ====== */
.feature-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 38px;
}
.feature-item {
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.feature-item .num {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--brass);
  margin-bottom: 12px;
  display: block;
}
.feature-item h3,
.feature-item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.01em;
}
.feature-item p {
  font-size: 0.95rem;
  color: var(--mute);
  max-width: 38ch;
}

/* ====== 12. EDITORIAL GALLERY ====== */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
}
.gallery-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--line);
}
.gallery-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 1.6s ease;
}
.gallery-tile:hover img { transform: scale(1.06); }
.gallery-tile::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 55%, rgba(0,0,0,0.55) 100%);
  opacity: 0;
  transition: opacity var(--trans);
}
.gallery-tile:hover::after { opacity: 1; }
.gallery-tile figcaption {
  position: absolute;
  left: 22px;
  bottom: 18px;
  font-family: var(--font-body);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #fff;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity var(--trans), transform var(--trans);
  z-index: 1;
}
.gallery-tile:hover figcaption { opacity: 1; transform: translateY(0); }

/* Editorial "selected work" mini-grid for homepage */
.selected-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.selected-tile {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--line);
}
.selected-tile img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s ease;
}
.selected-tile:hover img { transform: scale(1.05); }

/* ====== 13. TESTIMONIAL (editorial blockquote) ====== */
.testimonial-block {
  text-align: center;
  max-width: 880px;
  margin: 0 auto;
  padding: 20px var(--pad);
}
.testimonial-block .kicker { margin-bottom: 32px; }
.testimonial-block blockquote {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.5rem, 3.2vw, 2.4rem);
  line-height: 1.35;
  letter-spacing: -0.015em;
  color: var(--ink);
  margin-bottom: 30px;
}
.testimonial-block blockquote::before { content: '“'; opacity: 0.45; margin-right: 4px; }
.testimonial-block blockquote::after  { content: '”'; opacity: 0.45; margin-left: 4px;  }
.testimonial-block .attribution {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.testimonial-block .attribution strong { color: var(--ink); font-weight: 600; }

/* Dark variant inside section--ink */
.section--ink .testimonial-block blockquote { color: #fff; }
.section--ink .testimonial-block .attribution { color: var(--mute-on-dark); }
.section--ink .testimonial-block .attribution strong { color: #fff; }

/* Multi-card review wall */
.review-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.review-card {
  background: var(--paper-3);
  border: 1px solid var(--line);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.review-card .stars {
  font-size: 0.95rem;
  letter-spacing: 4px;
  color: var(--brass);
}
.review-card p {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.15rem;
  line-height: 1.5;
  color: var(--ink);
  max-width: none;
}
.review-card .who {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.review-card .who strong {
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.review-card .who span {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ====== 14. CTA BLOCK ====== */
.cta-block {
  background: var(--ink);
  color: #fff;
  text-align: center;
  padding: clamp(80px, 10vw, 140px) var(--pad);
}
.cta-block .kicker { color: var(--brass); justify-content: center; }
.cta-block .kicker::before { display: none; }
.cta-block h2 {
  color: #fff;
  max-width: 22ch;
  margin: 0 auto 24px;
  font-weight: 300;
}
.cta-block p {
  color: var(--text-on-dark);
  max-width: 52ch;
  margin: 0 auto 36px;
}
.cta-block .phone-line {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  color: var(--brass);
  margin-bottom: 28px;
  display: inline-block;
  letter-spacing: -0.01em;
}
.cta-block .phone-line:hover { color: #fff; }
.cta-block .btn-row { justify-content: center; }

/* ====== 15. SERVICE DETAIL (services.html) ====== */
.service-row {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(28px, 4vw, 56px);
  padding: clamp(50px, 7vw, 90px) 0;
  border-bottom: 1px solid var(--line);
}
.service-row:last-child { border-bottom: none; }
.service-row .num-large {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--brass);
  letter-spacing: -0.02em;
}
.service-row h3 { margin-bottom: 18px; }
.service-row p { font-size: 1rem; color: var(--text); margin-bottom: 14px; }
.service-row ul {
  margin-top: 18px;
  display: grid;
  grid-template-columns: 1fr;
  gap: 8px;
}
.service-row ul li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.94rem;
  color: var(--text);
  line-height: 1.5;
}
.service-row ul li::before {
  content: '';
  display: inline-block;
  width: 14px;
  height: 1px;
  background: var(--brass);
  margin-top: 13px;
  flex-shrink: 0;
}

/* ====== 16. PROCESS STEPS ====== */
.process {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}
.process-step {
  padding-top: 28px;
  border-top: 1px solid var(--line);
}
.process-step .num {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 2.2rem;
  color: var(--brass);
  letter-spacing: -0.02em;
  display: block;
  margin-bottom: 14px;
}
.process-step h3,
.process-step h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 10px;
  letter-spacing: -0.01em;
}
.process-step p {
  font-size: 0.95rem;
  color: var(--mute);
  max-width: 38ch;
}

/* ====== 17. CONTACT PAGE ====== */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: clamp(40px, 6vw, 80px);
}
.contact-info {
  display: grid;
  gap: 30px;
}
.contact-block {
  padding-top: 22px;
  border-top: 1px solid var(--line);
}
.contact-block .label {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--brass);
  font-weight: 500;
  margin-bottom: 10px;
}
.contact-block .value {
  font-family: var(--font-display);
  font-weight: 300;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  display: block;
}
.contact-block .value:hover { color: var(--brass); }
.contact-block .sub {
  font-size: 0.92rem;
  color: var(--mute);
  margin-top: 6px;
}

.contact-form {
  background: var(--paper-3);
  border: 1px solid var(--line);
  padding: clamp(28px, 4vw, 44px);
}
.contact-form h3 {
  font-size: 1.4rem;
  margin-bottom: 8px;
}
.contact-form .form-intro {
  font-size: 0.95rem;
  color: var(--mute);
  margin-bottom: 28px;
}
.contact-form label {
  display: block;
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 8px;
}
.contact-form .field { margin-bottom: 22px; }
.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: inherit;
  font-size: 1rem;
  color: var(--ink);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 2px;
  transition: border-color var(--trans-fast);
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--brass);
}
.contact-form textarea {
  min-height: 130px;
  resize: vertical;
  font-family: inherit;
}
.contact-form .btn { width: 100%; margin-top: 6px; }

/* Area tags */
.areas-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
}
.area-tag {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ink);
  padding: 8px 16px;
  background: var(--paper-3);
  border: 1px solid var(--line);
  border-radius: 100px;
}

/* ====== 18. ABOUT / VALUES ====== */
.values-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 36px;
}
.value-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 22px;
  align-items: start;
}
.value-item .marker {
  width: 36px;
  height: 36px;
  border: 1px solid var(--brass);
  color: var(--brass);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 0.9rem;
  border-radius: 50%;
  flex-shrink: 0;
}
.value-item h3,
.value-item h4 {
  font-family: var(--font-display);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 8px;
  letter-spacing: -0.01em;
}
.value-item p { font-size: 0.96rem; color: var(--mute); max-width: 52ch; }

/* ====== 19. PRICING / OFFER PILL ====== */
.offer-pill {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 10px 20px;
  background: var(--brass-soft);
  border: 1px solid rgba(32,192,176,0.3);
  color: var(--brass-dark);
  font-size: 0.84rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  border-radius: 100px;
  margin-bottom: 18px;
}
.offer-pill strong { color: var(--brass-dark); font-weight: 600; }

/* ====== 20. FOOTER ====== */
.site-footer {
  background: var(--ink);
  color: var(--text-on-dark);
  padding: clamp(60px, 8vw, 90px) 0 30px;
  border-top: 1px solid var(--ink);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-bottom: 50px;
}
.footer-brand .nav-logo-text { display: block; color: #fff; }
.footer-brand .nav-logo-text small { color: var(--mute-on-dark); }
.footer-brand p {
  font-size: 0.92rem;
  color: var(--mute-on-dark);
  max-width: 32ch;
  margin-top: 18px;
  line-height: 1.65;
}
.footer-heading {
  font-family: var(--font-body);
  font-weight: 500;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: #fff;
  margin-bottom: 22px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.92rem;
  color: var(--mute-on-dark);
  transition: color var(--trans-fast);
}
.footer-links a:hover { color: var(--brass); }
.footer-contact-item {
  font-size: 0.92rem;
  color: var(--mute-on-dark);
  margin-bottom: 12px;
  line-height: 1.6;
}
.footer-contact-item a { color: var(--mute-on-dark); transition: color var(--trans-fast); }
.footer-contact-item a:hover { color: var(--brass); }
.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 6px;
}
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid var(--line-dark);
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text-on-dark);
  transition: var(--trans-fast);
}
.footer-social a:hover { border-color: var(--brass); color: var(--brass); }
.footer-social svg { width: 16px; height: 16px; }

.footer-bottom {
  border-top: 1px solid var(--line-dark);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.78rem;
  color: var(--mute-on-dark);
  align-items: flex-start;
}
.footer-bottom .legal-links { display: flex; flex-wrap: wrap; gap: 18px; }
.footer-bottom .legal-links a { color: var(--mute-on-dark); transition: color var(--trans-fast); }
.footer-bottom .legal-links a:hover { color: var(--brass); }
.footer-bottom .reg-line { line-height: 1.55; }

/* Floating WhatsApp action */
.whatsapp-widget {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: var(--action);
  color: #fff;
  z-index: 120;
  min-height: 54px;
  padding: 0 16px 0 14px;
  display: none;
  align-items: center;
  gap: 8px;
  border-radius: 100px;
  box-shadow: 0 14px 34px rgba(0,0,0,0.22);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--trans-fast), transform var(--trans-fast), box-shadow var(--trans-fast);
}
.whatsapp-widget:hover {
  background: var(--action-dark);
  transform: translateY(-2px);
  box-shadow: 0 18px 38px rgba(0,0,0,0.26);
}
.whatsapp-widget svg {
  width: 22px;
  height: 22px;
  flex: 0 0 auto;
}

/* ====== 21. PRIVACY / LEGAL PAGE ====== */
.legal-doc {
  max-width: 760px;
  margin: 0 auto;
  padding: clamp(40px, 5vw, 70px) 0;
}
.legal-doc h2 {
  font-size: clamp(1.4rem, 2.4vw, 1.85rem);
  font-weight: 400;
  margin: 50px 0 16px;
  color: var(--ink);
}
.legal-doc h3 {
  font-size: 1.1rem;
  font-weight: 500;
  font-family: var(--font-body);
  margin: 30px 0 10px;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.legal-doc p,
.legal-doc li {
  font-size: 1rem;
  color: var(--text);
  margin-bottom: 14px;
  line-height: 1.75;
  max-width: none;
}
.legal-doc ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 18px;
}
.legal-doc a { color: var(--brass); border-bottom: 1px solid rgba(32,192,176,0.4); }
.legal-doc a:hover { color: var(--brass-dark); border-bottom-color: var(--brass-dark); }
.legal-doc .updated {
  font-size: 0.82rem;
  color: var(--mute);
  margin-bottom: 30px;
  letter-spacing: 0.02em;
}

/* ====== 22. UTILITIES ====== */
.text-center { text-align: center; }
.text-center p, .text-center .lead { margin-left: auto; margin-right: auto; }
.text-center .kicker { justify-content: center; }
.text-center .kicker::before { display: none; }
.mt-sm { margin-top: 18px; }
.mt-md { margin-top: 32px; }
.mt-lg { margin-top: 56px; }
.divider {
  height: 1px;
  background: var(--line);
  border: 0;
  margin: clamp(40px, 6vw, 80px) 0;
}
.full-bleed-img {
  width: 100%;
  aspect-ratio: 21/9;
  overflow: hidden;
  background: var(--line);
}
.full-bleed-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 6s ease;
}
.full-bleed-img:hover img { transform: scale(1.04); }

/* Anim: subtle fade-up on scroll (set by JS adding .in) */
.reveal { opacity: 0; transform: translateY(16px); transition: opacity 0.9s ease, transform 0.9s ease; }
.reveal.in { opacity: 1; transform: translateY(0); }

/* ====== 23. RESPONSIVE BREAKPOINTS ====== */
@media (min-width: 560px) {
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .selected-grid { grid-template-columns: repeat(2, 1fr); }
  .review-grid { grid-template-columns: repeat(2, 1fr); }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .feature-list { grid-template-columns: repeat(2, 1fr); gap: 50px; }
  .process { grid-template-columns: repeat(2, 1fr); }
  .contact-info { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 820px) {
  /* Logo gets bigger from tablet up */
  .nav { height: 116px; }
  .nav-logo img { height: 96px; }
  .nav-mobile { padding-top: calc(116px + 28px); }
  .page-offset { padding-top: 116px; }
  .nav-mobile a { font-size: 2.2rem; }
  .split { grid-template-columns: 1fr 1fr; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 6px; }
  .selected-grid { grid-template-columns: repeat(3, 1fr); gap: 28px; }
  .service-grid { grid-template-columns: repeat(3, 1fr); }
  .service-row {
    grid-template-columns: 90px 1fr 1fr;
    gap: clamp(28px, 4vw, 60px);
  }
  .section-head {
    grid-template-columns: 1fr 1fr;
    gap: clamp(40px, 6vw, 80px);
  }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 24px; }
  .hero-meta-item strong { font-size: 1.3rem; }
  .hero-meta-item span { font-size: 0.72rem; letter-spacing: 0.14em; }
  .footer-grid { grid-template-columns: 1.6fr 1fr 1fr 1.2fr; }
  .footer-bottom { flex-direction: row; justify-content: space-between; align-items: center; }
  .contact-grid { grid-template-columns: 1fr 1fr; }
  .contact-info { grid-template-columns: 1fr; gap: 36px; }
  .values-list { grid-template-columns: 1fr 1fr; gap: 50px 60px; }
}

@media (min-width: 1024px) {
  .nav { height: 128px; }
  .nav-logo img { height: 108px; }
  .page-offset { padding-top: 128px; }
  .nav-links { display: flex; }
  .nav-cta { display: inline-flex; }
  .nav-toggle { display: none; }
  .nav-mobile { display: none !important; }
  .review-grid { grid-template-columns: repeat(3, 1fr); }
  .feature-list { grid-template-columns: repeat(3, 1fr); }
  .process { grid-template-columns: repeat(4, 1fr); gap: 30px; }
  .gallery-grid { grid-template-columns: repeat(3, 1fr); gap: 8px; }
  .hero-meta { grid-template-columns: repeat(3, 1fr); gap: 36px; }
  .hero-meta-item strong { font-size: 1.6rem; }
  .hero-meta-item span { font-size: 0.78rem; }
  .service-row { grid-template-columns: 110px 1.2fr 2fr; }
  .service-row ul { grid-template-columns: 1fr 1fr; gap: 8px 24px; }
}

@media (max-width: 819px) {
  .whatsapp-widget { display: inline-flex; }
}

/* ====== Mobile-only polish (≤559px) ====== */
@media (max-width: 559px) {
  /* Tighter sections */
  :root { --section: 64px; }
  .hero h1 { font-size: clamp(2.35rem, 10.5vw, 3.15rem); margin-bottom: 18px; }
  .hero .lead { font-size: 0.98rem; margin-bottom: 24px; }
  .hero-inner { padding-top: 112px; padding-bottom: 86px; }
  .hero-meta-item strong {
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    line-height: 1.15;
  }
  .hero .btn-row { gap: 10px; }
  .hero .btn { padding: 14px 22px; min-height: 48px; font-size: 0.82rem; flex: 1; }
  /* Page hero tighter */
  .page-hero { padding: 120px 0 50px; }
  .page-hero h1 { font-size: clamp(1.9rem, 7.5vw, 2.4rem); }
  .page-hero p { font-size: 0.98rem; }
  /* Section headers */
  h2 { font-size: clamp(1.6rem, 6.5vw, 2.2rem); }
  .section-head { margin-bottom: 36px; gap: 18px; }
  /* CTA block tighter */
  .cta-block { padding: 70px 20px; }
  .cta-block .phone-line { font-size: 1.5rem; }
  /* Map smaller on mobile */
  .contact-grid iframe, section .container iframe { height: 280px !important; }
  /* Service grid card padding */
  .service-card { padding: 28px 22px; }
  /* Reviews tighter */
  .review-card { padding: 28px 22px; }
  .review-card p { font-size: 1.02rem; }
  /* Gallery tighter gap */
  .gallery-grid { gap: 3px; }
  /* Selected work full-width single column with smaller gap */
  .selected-grid { gap: 14px; }
  /* Footer tighter */
  .site-footer { padding: 50px 0 24px; }
  .footer-grid { gap: 32px; padding-bottom: 36px; }
  .whatsapp-widget { right: 16px; bottom: 16px; }
  /* Page offset on hero pages — keep transparent header offset working */
  .nav { height: 84px; }
  .nav-logo img { height: 64px; }
  .nav-mobile { padding-top: calc(84px + 22px); }
  .page-offset { padding-top: 84px; }
}

@media (max-width: 380px) {
  .whatsapp-widget {
    width: 54px;
    padding: 0;
    justify-content: center;
  }
  .whatsapp-widget span { display: none; }
}

/* ====== 24. PRINT ====== */
@media print {
  .site-header, .whatsapp-widget, .nav-mobile, .cta-block { display: none !important; }
  body { background: #fff; color: #000; }
  a { color: #000; }
}
