/* Classic Concrete Transformations — shared styles
   Compiled from the Claude Design project "Classic Concrete landing page" (Home.dc.html + Header/Footer components).
   Brand: headlines Avenir (Mulish fallback), body Tenon (Source Sans 3 fallback). */

:root {
  --cream: #F4F1EB;
  --cream-line: #e7e2d8;
  --ink: #1E2227;
  --ink-deep: #141719;
  --orange: #d5410b;
  --orange-dark: #b8380a;
  --peach: #f0b49a;
  --cloud: #EAEEF1;
  --sand: #E7DDD2;
  --gray-soft: #D8DADC;
  --font-head: 'Avenir Next', 'Avenir', 'Mulish', sans-serif;
  --font-body: 'Tenon', 'Source Sans 3', system-ui, sans-serif;
}

* { box-sizing: border-box; }

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

img { max-width: 100%; }

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

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

.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16.5px;
  padding: 17px 32px;
  border-radius: 4px;
  text-decoration: none;
}

.btn-primary { background: var(--orange); color: #fff; }
.btn-primary:hover { background: var(--orange-dark); }

.btn-ghost {
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.4);
  color: #fff;
  font-family: var(--font-body);
  font-weight: 700;
  padding: 17px 28px;
}
.btn-ghost:hover { background: rgba(255,255,255,0.18); }

.btn-outline {
  color: #fff;
  border: 1.5px solid rgba(255,255,255,0.55);
  font-family: var(--font-body);
  font-weight: 700;
  padding: 17px 30px;
}
.btn-outline:hover { border-color: #fff; }

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

.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 40;
  background: transparent;
}

.site-header.solid {
  position: sticky;
  background: var(--ink);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.site-header .logo { display: block; line-height: 0; }
.site-header .logo img {
  height: 40px;
  width: auto;
  display: block;
  filter: drop-shadow(0 2px 8px rgba(0,0,0,0.4));
}

.site-nav { display: flex; align-items: center; gap: 30px; }

.site-nav > a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
}
.site-nav > a:hover { color: var(--peach); }
.site-nav > a.active { color: var(--peach); }

.site-nav .btn-nav {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 15px;
  padding: 11px 22px;
  border-radius: 4px;
  text-decoration: none;
}
.site-nav .btn-nav:hover { background: var(--orange-dark); }

.nav-drop { position: relative; }
.nav-drop > a {
  color: #fff;
  font-weight: 600;
  font-size: 15px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
}
.nav-drop > a:hover, .nav-drop > a.active { color: var(--peach); }
.nav-drop-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  padding-top: 16px;
  display: none;
  min-width: 176px;
}
.nav-drop:hover .nav-drop-menu, .nav-drop:focus-within .nav-drop-menu { display: block; }
.nav-drop-menu-inner {
  background: var(--ink);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 6px;
  padding: 8px 0;
  box-shadow: 0 14px 34px rgba(0,0,0,0.35);
}
.nav-drop-menu a {
  display: block;
  padding: 10px 20px;
  color: #fff;
  font-weight: 600;
  font-size: 14.5px;
  text-decoration: none;
  white-space: nowrap;
}
.nav-drop-menu a:hover, .nav-drop-menu a.active { color: var(--peach); }

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  padding: 8px;
  cursor: pointer;
  color: #fff;
}

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

.hero {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18,16,15,0.6) 0%, rgba(18,16,15,0.42) 45%, rgba(18,16,15,0.78) 100%),
    url('../images/charcoal-woodplank.jpg');
  background-size: cover;
  background-position: center;
}

.hero .container { padding-top: 190px; padding-bottom: 120px; }

.hero-inner { max-width: 760px; color: #fff; }

.hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 22px;
}

.hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(42px, 7vw, 78px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 24px;
  text-wrap: balance;
}

.hero p {
  font-size: 21px;
  line-height: 1.55;
  color: var(--cloud);
  margin: 0 0 34px;
  max-width: 560px;
}

.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }

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

.trust { background: var(--ink); }

.trust .container {
  padding-top: 30px;
  padding-bottom: 30px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.trust-item { display: flex; align-items: center; gap: 12px; }
.trust-item svg { flex: none; }
.trust-item span { color: var(--cloud); font-size: 15px; line-height: 1.3; }
.trust-item strong { color: #fff; }

/* ---------- Section shells ---------- */

.section { background: var(--cream); }
.section .container { padding-top: 88px; padding-bottom: 88px; }
.section.bordered { border-top: 1px solid var(--cream-line); }
.section.bordered .container { padding-top: 84px; padding-bottom: 84px; }

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 44px;
  gap: 24px;
  flex-wrap: wrap;
}

.kicker {
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}

.section-head h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 44px);
  margin: 0;
  color: var(--ink);
  letter-spacing: -0.015em;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--orange);
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 16px;
  text-decoration: none;
  padding-bottom: 6px;
  transition: gap 0.15s ease;
}
.link-arrow:hover { gap: 12px; }

/* ---------- Services preview ---------- */

/* Two-band grouping: "finishes" (cream) vs "spaces" (ink) */

.tint-band {
  background: var(--cloud);
  border-top: 1px solid #d6dde2;
  border-bottom: 1px solid #d6dde2;
}
.section.tint-band .container { padding-top: 78px; padding-bottom: 88px; }
.tint-band .svc-group-head { border-bottom-color: #cdd6dc; }

.svc-group-head {
  margin: 0 0 26px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--cream-line);
}

.svc-group-head .tag {
  display: inline-block;
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
  background: var(--orange);
  padding: 6px 12px;
  border-radius: 3px;
  margin-bottom: 14px;
}

.svc-group-head h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 27px;
  margin: 0 0 6px;
  color: var(--ink);
  letter-spacing: -0.01em;
}

.svc-group-head p {
  margin: 0;
  font-size: 16.5px;
  line-height: 1.5;
  color: #5d6671;
}

.svc-group-head.alt .tag { background: var(--ink); }

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

.service-card {
  position: relative;
  border-radius: 6px;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  box-shadow: 0 10px 30px rgba(0,0,0,0.14);
  text-decoration: none;
  display: block;
}

.service-card .bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.service-card .shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12,11,10,0.9) 0%, rgba(12,11,10,0.15) 55%, rgba(12,11,10,0.05) 100%);
}

.service-card .label {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 20px;
}

.service-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  color: #fff;
  margin: 0 0 6px;
  line-height: 1.1;
}

.service-card p {
  font-size: 13.5px;
  line-height: 1.4;
  color: var(--gray-soft);
  margin: 0;
}

/* ---------- Why band ---------- */

.why { background: var(--ink); color: #fff; }

.why .container {
  padding-top: 88px;
  padding-bottom: 88px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.why .kicker { color: var(--peach); }

.why h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 42px);
  line-height: 1.08;
  margin: 0 0 22px;
  letter-spacing: -0.015em;
}

.why-points { display: flex; flex-direction: column; gap: 16px; }

.why-point { display: flex; gap: 13px; align-items: flex-start; }
.why-point svg { flex: none; margin-top: 2px; }
.why-point span { font-size: 16.5px; line-height: 1.5; color: var(--sand); }

.why .btn-primary { margin-top: 30px; font-size: 16px; padding: 15px 30px; }

.why-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

.why-photos img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

.why-photos img:nth-child(even) { margin-top: 24px; }

/* ---------- Gallery preview ---------- */

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

.gallery-grid img {
  width: 100%;
  height: 240px;
  object-fit: cover;
  border-radius: 6px;
  display: block;
}

/* ---------- Final CTA ---------- */

.cta {
  position: relative;
  background:
    linear-gradient(180deg, rgba(18,16,15,0.74), rgba(18,16,15,0.86)),
    url('../images/brown-stamped-patio.jpg');
  background-size: cover;
  background-position: center;
}

.cta .container {
  max-width: 720px;
  padding-top: 96px;
  padding-bottom: 96px;
  text-align: center;
}

.cta h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(34px, 5.5vw, 50px);
  line-height: 1.03;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta p {
  font-size: 18px;
  line-height: 1.55;
  color: var(--sand);
  margin: 0 0 32px;
}

.cta-ctas { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

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

.site-footer { background: var(--ink-deep); }

.footer-main {
  padding-top: 60px;
  padding-bottom: 40px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr;
  gap: 48px;
}

.footer-brand img { height: 40px; width: auto; display: block; margin-bottom: 18px; }

.footer-brand p {
  font-size: 15px;
  line-height: 1.6;
  color: #9199a1;
  margin: 0 0 20px;
  max-width: 340px;
}

.footer-phone {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  text-decoration: none;
}

.footer-phone .icon {
  width: 40px;
  height: 40px;
  border-radius: 8px;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.footer-phone .hint {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #7c848c;
}

.footer-phone .number {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  color: #fff;
}

.footer-col-title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--peach);
  margin-bottom: 16px;
}

.footer-links { display: flex; flex-direction: column; gap: 11px; }

.footer-links a {
  color: #b8c0c8;
  font-size: 15px;
  text-decoration: none;
}
.footer-links a:hover { color: #fff; }

.footer-bar { border-top: 1px solid rgba(255,255,255,0.08); }

.footer-bar .container {
  padding-top: 20px;
  padding-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.footer-bar span { font-size: 13px; color: #6b737b; }

/* ---------- Subpage hero (centered) ---------- */

.page-hero {
  position: relative;
  background-size: cover;
  background-position: center;
}

.page-hero.stamped { background: linear-gradient(180deg, rgba(18,16,15,0.72), rgba(18,16,15,0.82)), url('../images/slate-stamped-patio.jpg'); background-size: cover; background-position: center; }
.page-hero.overlay { background: linear-gradient(180deg, rgba(18,16,15,0.72), rgba(18,16,15,0.82)), url('../images/gray-overlay-patio.jpg'); background-size: cover; background-position: center; }
.page-hero.woodplank { background: linear-gradient(180deg, rgba(18,16,15,0.7), rgba(18,16,15,0.8)), url('../images/charcoal-woodplank.jpg'); background-size: cover; background-position: center; }
.page-hero.tan { background: linear-gradient(180deg, rgba(18,16,15,0.72), rgba(18,16,15,0.84)), url('../images/tan-stamped-patio.jpg'); background-size: cover; background-position: center; }

.page-hero .container {
  padding-top: 84px;
  padding-bottom: 84px;
  text-align: center;
  color: #fff;
}

.page-hero .kicker { color: var(--peach); letter-spacing: 0.18em; margin-bottom: 16px; }

.page-hero h1 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(38px, 6vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  text-wrap: balance;
}

.page-hero p {
  font-size: 19px;
  line-height: 1.55;
  color: var(--cloud);
  margin: 0 auto;
  max-width: 620px;
}

/* ---------- Services detail rows ---------- */

.svc-detail .container {
  max-width: 1080px;
  padding-top: 84px;
  padding-bottom: 84px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.svc-row {
  display: flex;
  gap: 40px;
  align-items: center;
}
.svc-row.reverse { flex-direction: row-reverse; }

.svc-row img {
  width: 380px;
  height: 280px;
  object-fit: cover;
  border-radius: 8px;
  flex: none;
  display: block;
  box-shadow: 0 16px 40px rgba(0,0,0,0.14);
}

.svc-row .body { flex: 1; }

.svc-tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 12px;
}
.svc-tag .dash { width: 28px; height: 2px; background: var(--orange); display: inline-block; }

.svc-row h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 32px;
  margin: 0 0 12px;
  letter-spacing: -0.01em;
}

.svc-row p {
  font-size: 17px;
  line-height: 1.6;
  color: #5d6671;
  margin: 0 0 16px;
}

.svc-row .link-arrow { font-size: 15.5px; padding-bottom: 0; }

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

.process { background: var(--ink); color: #fff; }
.process .container { padding-top: 84px; padding-bottom: 84px; }

.section-head.centered { flex-direction: column; align-items: center; text-align: center; margin-bottom: 48px; }
.process .kicker { color: var(--peach); }
.process h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 42px);
  margin: 0;
  letter-spacing: -0.015em;
}

.steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.step .num {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 46px;
  color: var(--orange);
  line-height: 1;
  margin-bottom: 14px;
}

.step h3 {
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 20px;
  margin: 0 0 8px;
}

.step p { font-size: 15px; line-height: 1.55; color: #b8c0c8; margin: 0; }

/* ---------- Simple centered CTA ---------- */

.cta-simple { position: relative; background-size: cover; background-position: center; }
.cta-simple.pool { background: linear-gradient(180deg, rgba(18,16,15,0.74), rgba(18,16,15,0.86)), url('../images/pool-deck.jpg'); background-size: cover; background-position: center; }
.cta-simple.brown { background: linear-gradient(180deg, rgba(18,16,15,0.74), rgba(18,16,15,0.86)), url('../images/brown-stamped-patio.jpg'); background-size: cover; background-position: center; }
.cta-simple.solid { background: var(--ink); }

.cta-simple .container {
  max-width: 760px;
  padding-top: 84px;
  padding-bottom: 84px;
  text-align: center;
}

.cta-simple h2 {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: clamp(32px, 5vw, 46px);
  line-height: 1.04;
  margin: 0 0 16px;
  color: #fff;
  letter-spacing: -0.02em;
}

.cta-simple p { font-size: 18px; line-height: 1.55; color: var(--sand); margin: 0 0 30px; }
.cta-simple.solid p { color: #b8c0c8; }

/* ---------- Gallery (masonry) ---------- */

.masonry .container { padding-top: 72px; padding-bottom: 72px; }

.masonry-cols { columns: 3; column-gap: 16px; }

.masonry-cols figure {
  break-inside: avoid;
  margin: 0 0 16px;
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 10px 30px rgba(0,0,0,0.12);
  position: relative;
}

.masonry-cols img { width: 100%; display: block; }

.masonry-cols figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 26px 18px 14px;
  background: linear-gradient(0deg, rgba(12,11,10,0.82), rgba(12,11,10,0));
  color: #fff;
  font-family: var(--font-head);
  font-weight: 700;
  font-size: 15px;
}

/* ---------- About ---------- */

.split .container {
  max-width: 1080px;
  padding-top: 84px;
  padding-bottom: 84px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.split h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 38px);
  line-height: 1.1;
  margin: 0 0 20px;
  letter-spacing: -0.015em;
}

.split p { font-size: 17px; line-height: 1.65; color: #5d6671; margin: 0 0 16px; }
.split p:last-of-type { margin-bottom: 0; }

.split img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 8px;
  display: block;
  box-shadow: 0 24px 50px rgba(0,0,0,0.16);
}

.split.area img { height: 380px; box-shadow: 0 20px 44px rgba(0,0,0,0.14); }
.split .btn-primary { margin-top: 6px; font-size: 16px; padding: 15px 30px; }
.split .kicker.with-icon { display: inline-flex; align-items: center; gap: 8px; }

.values { background: var(--ink); color: #fff; }
.values .container { padding-top: 84px; padding-bottom: 84px; }
.values .kicker { color: var(--peach); }
.values h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(30px, 4.5vw, 42px);
  margin: 0;
  letter-spacing: -0.015em;
}

.value-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 8px;
  padding: 30px;
}

.value-card .icon {
  width: 48px;
  height: 48px;
  border-radius: 10px;
  background: var(--orange);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.value-card h3 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 21px;
  margin: 0 0 10px;
}

.value-card p { font-size: 15.5px; line-height: 1.6; color: #b8c0c8; margin: 0; }

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

.contact-grid .container {
  max-width: 1120px;
  padding-top: 72px;
  padding-bottom: 72px;
  display: grid;
  grid-template-columns: 1fr 500px;
  gap: 56px;
  align-items: start;
}

.contact-grid h2 {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: clamp(28px, 4vw, 34px);
  line-height: 1.1;
  margin: 0 0 22px;
  letter-spacing: -0.015em;
}

.contact-grid .lead { font-size: 17px; line-height: 1.65; color: #5d6671; margin: 0 0 30px; max-width: 440px; }

.contact-methods { display: flex; flex-direction: column; gap: 14px; margin-bottom: 34px; }

.contact-method {
  display: flex;
  align-items: center;
  gap: 15px;
  background: #fff;
  border: 1px solid #e6e0d4;
  border-radius: 8px;
  padding: 18px 22px;
  text-decoration: none;
}
a.contact-method:hover { border-color: var(--orange); }

.contact-method .icon {
  width: 46px;
  height: 46px;
  border-radius: 10px;
  background: #fbe8df;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: none;
}

.contact-method .over {
  display: block;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #8a8175;
}

.contact-method .big {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 24px;
  color: var(--ink);
}
.contact-method .med {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 19px;
  color: var(--ink);
}

.expect { border-top: 1px solid #e2dccf; padding-top: 26px; }
.expect .title {
  font-family: var(--font-head);
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--orange);
  margin-bottom: 16px;
}
.expect-list { display: flex; flex-direction: column; gap: 12px; }
.expect-item { display: flex; gap: 12px; align-items: flex-start; }
.expect-item svg { flex: none; margin-top: 2px; }
.expect-item span { font-size: 16px; line-height: 1.5; color: #45505a; }

.form-card {
  background: #fff;
  border-radius: 10px;
  box-shadow: 0 24px 60px rgba(0,0,0,0.14);
  overflow: hidden;
}

.form-card .head {
  background: var(--orange);
  color: #fff;
  text-align: center;
  padding: 18px 20px;
}
.form-card .head .t {
  font-family: var(--font-head);
  font-weight: 900;
  font-size: 22px;
}
.form-card .head .s { font-size: 13.5px; color: #ffe0d2; margin-top: 2px; }
.form-card .body { padding: 8px; }
.form-card iframe { width: 100%; height: 660px; border: none; border-radius: 4px; display: block; }

/* ---------- Responsive ---------- */

@media (max-width: 1020px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why .container { grid-template-columns: 1fr; gap: 44px; }
  .contact-grid .container { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 960px) {
  .masonry-cols { columns: 2; }
}

@media (max-width: 900px) {
  .svc-row, .svc-row.reverse { flex-direction: column; align-items: stretch; gap: 22px; }
  .svc-row img { width: 100%; height: 260px; }
  .steps { grid-template-columns: repeat(2, 1fr); gap: 32px 24px; }
  .split .container, .split.area .container { grid-template-columns: 1fr; gap: 36px; }
  .split.area .split-img-first { order: -1; }
  .split img, .split.area img { height: 320px; }
  .value-cards { grid-template-columns: 1fr; }
}

@media (max-width: 900px) {
  .trust .container { grid-template-columns: repeat(2, 1fr); }
  .footer-main { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 820px) {
  .site-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--ink);
    padding: 8px 0 16px;
    border-bottom: 1px solid rgba(255,255,255,0.08);
  }
  .site-nav.open { display: flex; }
  .site-nav > a { padding: 13px 30px; font-size: 16px; }
  .nav-drop > a { padding: 13px 30px; font-size: 16px; display: flex; }
  .nav-drop > a svg { display: none; }
  .nav-drop-menu { position: static; transform: none; display: block; padding-top: 0; min-width: 0; }
  .nav-drop-menu-inner { background: none; border: 0; border-radius: 0; padding: 0; box-shadow: none; }
  .nav-drop-menu a { padding: 11px 30px 11px 48px; font-size: 15px; color: rgba(255,255,255,0.85); }
  .site-nav .btn-nav { margin: 10px 30px 0; justify-content: center; }
  .nav-toggle { display: block; }
  .site-header, .site-header.solid { position: sticky; top: 0; background: var(--ink); }
  .hero .container { padding-top: 110px; }
}

@media (max-width: 640px) {
  .container { padding-left: 22px; padding-right: 22px; }
  .hero .container { padding-bottom: 80px; }
  .hero p { font-size: 18px; }
  .section .container, .section.bordered .container, .why .container { padding-top: 64px; padding-bottom: 64px; }
  .page-hero .container { padding-top: 60px; padding-bottom: 60px; }
  .svc-detail .container, .process .container, .split .container, .split.area .container,
  .values .container, .contact-grid .container, .cta-simple .container, .masonry .container { padding-top: 60px; padding-bottom: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
  .gallery-grid img { height: 170px; }
  .why-photos img { height: 160px; }
  .cta .container { padding-top: 72px; padding-bottom: 72px; }
  .btn { width: 100%; justify-content: center; }
  .hero-ctas, .cta-ctas { flex-direction: column; }
  .masonry-cols { columns: 1; }
  .form-card iframe { height: 720px; }
}

@media (max-width: 560px) {
  .trust .container { grid-template-columns: 1fr; gap: 16px; }
  .footer-main { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .contact-grid .container { grid-template-columns: 1fr; }
}

/* ---------- Legal pages ---------- */

.legal .container { max-width: 780px; padding-top: 70px; padding-bottom: 90px; }
.legal h1 { font-family: var(--font-head); font-weight: 800; font-size: clamp(34px, 5vw, 48px); letter-spacing: -0.015em; margin: 0 0 10px; }
.legal h2 { font-family: var(--font-head); font-size: 24px; margin: 44px 0 12px; }
.legal p, .legal li { font-size: 16.5px; line-height: 1.7; color: var(--ink-soft, #3a3f45); }
.legal ul { padding-left: 22px; }
.legal .updated { font-size: 14px; color: #767c83; margin-top: -6px; }
