/*
Theme Name: Ark Roofer
Theme URI: https://arkroofer.com
Author: Ark Roofer
Author URI: https://arkroofer.com
Description: Premium roofing contractor theme with ArkBuild™ estimator wizard for Central Texas homeowners.
Version: 1.0.0
Requires at least: 6.0
Tested up to: 6.9
Requires PHP: 7.4
License: Proprietary
Text Domain: ark-roofer
*/

/* ─── BRAND TOKENS ──────────────────────────────────────────────────────── */
:root {
  --white: #ffffff;
  --off-white: #f7f5f1;
  --black: #0a0a0a;
  --navy: #213d56;
  --navy-dark: #0F2236;
  --navy-darker: #0a1d2c;
  --gold: #e0b162;
  --gold-dark: #c79749;
  --grey-soft: #e8e4dd;
  --grey-text: #6b6b6b;
  --serif: 'GFS Didot', 'Times New Roman', serif;
  --sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  font-weight: 400;
  color: var(--black);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ─── NAV ───────────────────────────────────────────────────────────────── */
nav.site-nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 28px 56px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.4s ease, padding 0.4s ease, box-shadow 0.4s ease;
}
nav.site-nav.scrolled {
  background: rgba(10, 18, 28, 0.78);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  padding: 16px 56px;
  box-shadow: 0 1px 0 rgba(255,255,255,0.06);
}
.nav-logo img { height: 38px; width: auto; display: block; transition: height 0.4s ease; }
.scrolled .nav-logo img { height: 32px; }
.nav-list {
  display: flex;
  gap: 44px;
  align-items: center;
  list-style: none;
  margin: 0; padding: 0;
}
.nav-list a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  transition: color 0.4s ease, opacity 0.2s ease;
}
.nav-list a:hover { opacity: 0.7; }
.nav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 12px 22px;
  border: 1px solid rgba(255,255,255,0.7);
  transition: all 0.3s ease;
}
.nav-cta:hover { background: var(--white); color: var(--navy) !important; border-color: var(--white); }
.nav-phone { color: var(--gold) !important; }

/* ─── HERO ───────────────────────────────────────────────────────────────── */
.hero {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://server5.buildingbrandsmarketing.com/demos/ark/Ark%20ROof.png');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: kenBurnsHero 28s ease-out forwards;
}
@keyframes kenBurnsHero {
  0% { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.16) translate(-1.5%, -2%); }
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(10,10,10,0.4) 0%, rgba(10,10,10,0.2) 35%, rgba(10,10,10,0.6) 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: var(--white);
  padding: 0 24px;
  max-width: 1100px;
}
.hero-eyebrow {
  font-family: var(--serif);
  font-size: 14px;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  margin-bottom: 28px;
  opacity: 0;
  animation: heroFadeUp 1.1s ease 0.2s forwards;
}
.hero-headline {
  font-family: var(--serif);
  font-size: clamp(48px, 7.2vw, 124px);
  line-height: 1.0;
  letter-spacing: -0.01em;
  margin-bottom: 28px;
  font-weight: 400;
}
.hero-headline em { font-style: italic; color: var(--gold); }
.hero-headline .letter {
  display: inline-block;
  opacity: 0;
  transform: translateY(40px);
  animation: letterIn 1s cubic-bezier(0.2, 0.7, 0.2, 1) forwards;
  animation-delay: calc(0.5s + var(--i, 0) * 28ms);
}
@keyframes letterIn { to { opacity: 1; transform: translateY(0); } }
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 0.92; transform: translateY(0); }
}
.hero-sub {
  font-size: 17px;
  font-weight: 300;
  letter-spacing: 0.01em;
  max-width: 680px;
  margin: 0 auto 48px;
  line-height: 1.7;
  opacity: 0;
  animation: heroFadeUp 1.1s ease 2.3s forwards;
}
.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding-bottom: 6px;
  border-bottom: 1px solid var(--white);
  transition: gap 0.3s ease, opacity 0.3s ease;
  opacity: 0;
  animation: heroFadeUp 1.1s ease 2.6s forwards;
}
.hero-cta:hover { gap: 18px; opacity: 0.85; }
.hero-cta::after { content: '→'; font-size: 16px; }
.hero-scroll {
  position: absolute;
  bottom: 36px; left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  color: var(--white);
  font-size: 10px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  opacity: 0.7;
}

/* ─── BOOKING CTA ─────────────────────────────────────────────────────────── */
.booking-section {
  padding: 140px 24px;
  background: var(--white);
  border-bottom: 1px solid var(--grey-soft);
}
.booking-inner {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 96px;
  align-items: center;
}
.booking-copy .eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--navy);
  margin-bottom: 28px;
  font-weight: 500;
}
.booking-copy h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 60px);
  line-height: 1.05;
  letter-spacing: -0.008em;
  color: var(--black);
  margin-bottom: 32px;
  font-weight: 400;
}
.booking-copy h2 em { font-style: italic; color: var(--navy); }
.booking-copy p {
  font-size: 16px;
  color: var(--grey-text);
  line-height: 1.8;
  margin-bottom: 36px;
  font-weight: 300;
}
.booking-list { list-style: none; border-top: 1px solid var(--grey-soft); }
.booking-list li {
  padding: 22px 0;
  border-bottom: 1px solid var(--grey-soft);
  display: flex;
  align-items: baseline;
  gap: 24px;
  font-size: 14.5px;
  color: var(--black);
  line-height: 1.5;
}
.booking-list li .num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold);
  width: 24px;
  flex-shrink: 0;
}
.booking-form {
  background: var(--off-white);
  padding: 64px 56px;
  border: 1px solid var(--grey-soft);
}
.booking-form .eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 14px;
  font-weight: 500;
  display: block;
}
.booking-form-headline {
  font-family: var(--serif);
  font-size: 30px;
  color: var(--black);
  margin-bottom: 40px;
  line-height: 1.2;
  font-weight: 400;
}
.booking-form-headline em { font-style: italic; color: var(--navy); }
.form-field { margin-bottom: 28px; }
.form-field label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-text);
  margin-bottom: 10px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.booking-form input, .booking-form select {
  width: 100%;
  padding: 8px 0 12px;
  border: none;
  border-bottom: 1px solid var(--grey-soft);
  font-family: var(--sans);
  font-size: 15px;
  background: transparent;
  color: var(--black);
  transition: border-color 0.3s;
}
.booking-form input::placeholder {
  color: #b6ada0;
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
}
.booking-form input:focus, .booking-form select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.booking-form select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%23e0b162' d='M6 8L1 3h10z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  color: var(--grey-text);
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
}
.form-submit {
  margin-top: 36px;
  width: 100%;
  background: var(--navy);
  color: var(--white);
  padding: 20px 28px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  transition: background 0.3s;
  border: 1px solid var(--navy);
}
.form-submit:hover { background: var(--gold); border-color: var(--gold); }
.form-fineprint {
  font-size: 11px;
  color: var(--grey-text);
  line-height: 1.6;
  margin-top: 20px;
  text-align: center;
  font-weight: 300;
}

/* ─── CREDIBILITY BAR ────────────────────────────────────────────────────── */
.credibility { background: var(--white); padding: 80px 24px; border-bottom: 1px solid var(--grey-soft); }
.cred-inner { max-width: 1200px; margin: 0 auto; }
.cred-stats {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 80px;
  max-width: 880px;
  margin: 0 auto 64px;
  text-align: center;
}
.cred-stat-num {
  font-family: var(--serif);
  font-size: 84px;
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.02em;
  font-weight: 400;
}
.cred-stat-num em { font-style: italic; color: var(--gold); font-size: 60px; }
.cred-stat-stars { color: var(--gold); font-size: 18px; margin-top: 12px; letter-spacing: 4px; }
.cred-stat-label { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--grey-text); margin-top: 16px; font-weight: 500; }
.cred-divider { width: 1px; height: 120px; background: var(--grey-soft); }
.cred-badges {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 28px;
  flex-wrap: wrap;
  padding-top: 48px;
  border-top: 1px solid var(--grey-soft);
}
.cred-badge {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--grey-text);
  transition: color 0.3s;
  position: relative;
}
.cred-badge:not(:last-child)::after { content: '·'; color: var(--gold); margin-left: 28px; font-size: 16px; }
.cred-badge:hover { color: var(--navy); }

/* ─── AGITATION ──────────────────────────────────────────────────────────── */
.agitation {
  padding: 180px 24px;
  text-align: center;
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.agitation::before {
  content: '\201C';
  position: absolute;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(400px, 50vw, 720px);
  color: var(--gold);
  opacity: 0.06;
  line-height: 0.8;
  top: 8%; left: 50%;
  transform: translateX(-50%);
  pointer-events: none;
  user-select: none;
  z-index: 0;
}
.agitation-inner { max-width: 920px; margin: 0 auto; position: relative; z-index: 1; }
.gold-rule { width: 56px; height: 1px; background: var(--gold); margin: 0 auto 40px; }
.agitation-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--navy); margin-bottom: 36px; font-weight: 500; }
.agitation h2 {
  font-family: var(--serif);
  font-size: clamp(38px, 4.6vw, 64px);
  line-height: 1.12;
  letter-spacing: -0.008em;
  color: var(--black);
  margin-bottom: 56px;
  font-weight: 400;
}
.agitation h2 em { font-style: italic; color: var(--gold); }
.agitation-body {
  font-size: 18px;
  line-height: 1.85;
  color: var(--grey-text);
  max-width: 740px;
  margin: 0 auto 40px;
  font-weight: 300;
  text-align: left;
}
.agitation-pullquote {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(28px, 3.4vw, 44px);
  line-height: 1.3;
  color: var(--gold-dark);
  margin: 56px auto;
  max-width: 720px;
  letter-spacing: -0.008em;
}
.agitation-closing {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(20px, 2vw, 26px);
  line-height: 1.55;
  color: var(--navy);
  padding-top: 56px;
  border-top: 1px solid var(--grey-soft);
  margin-top: 24px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

/* ─── SERVICES ──────────────────────────────────────────────────────────── */
.services { padding: 160px 0 180px; background: var(--white); }
.services-header { text-align: center; padding: 0 24px 90px; }
.services-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--navy); margin-bottom: 24px; font-weight: 500; }
.services-title { font-family: var(--serif); font-size: clamp(40px, 5vw, 76px); letter-spacing: -0.01em; line-height: 1.05; font-weight: 400; }
.services-title em { font-style: italic; color: var(--navy); }
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--grey-soft);
  max-width: 1600px;
  margin: 0 auto;
}
.service-card {
  background: var(--white);
  cursor: pointer;
  transition: background 0.4s ease;
  display: flex;
  flex-direction: column;
}
.service-card:hover { background: var(--off-white); }
.service-image { aspect-ratio: 4 / 3; overflow: hidden; position: relative; }
.service-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.8s cubic-bezier(0.2, 0.6, 0.2, 1); }
.service-card:hover .service-image img { transform: scale(1.04); }
.service-body { padding: 36px 32px 44px; flex: 1; display: flex; flex-direction: column; }
.service-num { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--gold); margin-bottom: 14px; letter-spacing: 0.04em; }
.service-name { font-family: var(--serif); font-size: 26px; color: var(--black); margin-bottom: 12px; letter-spacing: -0.005em; line-height: 1.15; font-weight: 400; }
.service-desc { font-size: 13.5px; line-height: 1.7; color: var(--grey-text); margin-bottom: 24px; font-weight: 300; flex: 1; }
.service-link { font-size: 10.5px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); display: inline-flex; align-items: center; gap: 10px; transition: gap 0.3s ease; }
.service-card:hover .service-link { gap: 16px; }
.service-link::after { content: '→'; }

/* ─── MATERIALS ─────────────────────────────────────────────────────────── */
.materials { background: var(--white); padding: 160px 0 0; border-top: 1px solid var(--grey-soft); }
.materials-header { text-align: center; padding: 0 24px 90px; }
.materials-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--navy); margin-bottom: 24px; font-weight: 500; }
.materials-title { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); letter-spacing: -0.01em; line-height: 1.05; font-weight: 400; }
.materials-title em { font-style: italic; color: var(--navy); }
.materials-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1px; background: var(--grey-soft); }
.material-cell { background: var(--white); overflow: hidden; position: relative; cursor: pointer; }
.material-image { aspect-ratio: 3 / 4; overflow: hidden; position: relative; }
.material-image img { width: 100%; height: 100%; object-fit: cover; transition: transform 1.2s cubic-bezier(0.2, 0.6, 0.2, 1); }
.material-cell:hover .material-image img { transform: scale(1.05); }
.material-meta { padding: 32px 36px 44px; }
.material-eyebrow { font-family: var(--serif); font-style: italic; font-size: 13px; color: var(--gold); margin-bottom: 12px; letter-spacing: 0.04em; }
.material-name { font-family: var(--serif); font-size: 24px; color: var(--black); letter-spacing: -0.005em; line-height: 1.15; font-weight: 400; margin-bottom: 10px; }
.material-spec { font-size: 13px; line-height: 1.6; color: var(--grey-text); font-weight: 300; }

/* ─── ARK DIFFERENCE ────────────────────────────────────────────────────── */
.difference {
  background: var(--navy-dark);
  padding: 220px 24px;
  position: relative;
  overflow: hidden;
}
.difference::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 30%, rgba(224, 177, 98, 0.05) 0%, transparent 60%);
  pointer-events: none;
}
.difference-frame { max-width: 1180px; margin: 0 auto; position: relative; }
.difference-eyebrow {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 56px;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
}
.difference-eyebrow::before { content: ''; display: block; width: 64px; height: 1px; background: var(--gold); }
.difference-title {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  color: #f7f3ea;
  line-height: 1.08;
  margin-bottom: 56px;
  letter-spacing: -0.01em;
  font-weight: 400;
  max-width: 980px;
}
.difference-title em { font-style: italic; color: var(--gold); }
.difference-intro {
  font-size: 19px;
  line-height: 1.85;
  color: rgba(247, 243, 234, 0.78);
  margin-bottom: 100px;
  max-width: 820px;
  font-weight: 300;
}
.difference-intro em { font-family: var(--serif); font-style: italic; color: var(--gold); font-size: 1.05em; }
.difference-manifesto { margin-bottom: 80px; }
.manifesto-row {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 56px;
  align-items: start;
  padding: 64px 0;
  border-top: 1px solid rgba(224, 177, 98, 0.18);
}
.manifesto-row:first-child { border-top: none; padding-top: 0; }
.manifesto-row:last-child { padding-bottom: 0; }
.manifesto-num { font-family: var(--serif); font-style: italic; font-size: 64px; color: var(--gold); letter-spacing: -0.02em; line-height: 1; margin-top: 28px; }
.manifesto-statement { font-family: var(--serif); font-size: clamp(26px, 3.2vw, 44px); line-height: 1.3; color: #f7f3ea; font-weight: 400; letter-spacing: -0.005em; }
.manifesto-statement em { font-style: italic; color: var(--gold); }
.difference-mark {
  font-size: 11px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: rgba(247, 243, 234, 0.55);
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 20px;
}
.difference-mark::before { content: ''; display: block; width: 64px; height: 1px; background: var(--gold); opacity: 0.6; }

/* ─── CERT TICKER ────────────────────────────────────────────────────────── */
.partners {
  background: var(--off-white);
  padding: 80px 0;
  overflow: hidden;
  border-top: 1px solid rgba(33, 61, 86, 0.08);
  border-bottom: 1px solid rgba(33, 61, 86, 0.08);
}
.partners-eyebrow { text-align: center; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--navy); margin-bottom: 56px; font-weight: 500; opacity: 0.7; }
.partners-marquee {
  display: flex;
  overflow: hidden;
  position: relative;
  mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 8%, black 92%, transparent 100%);
}
.partners-track {
  display: flex;
  gap: 80px;
  flex-shrink: 0;
  animation: marquee 70s linear infinite;
  padding-right: 80px;
}
.partners-marquee:hover .partners-track { animation-play-state: paused; }
.partner-name {
  font-family: var(--serif);
  font-size: clamp(22px, 2.6vw, 34px);
  color: var(--navy);
  letter-spacing: -0.005em;
  white-space: nowrap;
  font-weight: 400;
  flex-shrink: 0;
}
.partner-name em { font-style: italic; color: var(--gold); }
.partner-name + .partner-name::before { content: '·'; margin-right: 80px; color: var(--gold); opacity: 0.5; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─── AERIAL FILM ────────────────────────────────────────────────────────── */
.aerial {
  position: relative;
  height: 100vh;
  min-height: 720px;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.aerial-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1518780664697-55e3ad937233?w=2400&q=85');
  background-size: cover;
  background-position: center;
  transform: scale(1.05);
  animation: kenBurnsAerial 24s ease-out infinite alternate;
}
@keyframes kenBurnsAerial {
  0%   { transform: scale(1.05) translate(0, 0); }
  100% { transform: scale(1.18) translate(2%, -1.5%); }
}
.aerial-overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(10,10,10,0.5) 0%, rgba(10,10,10,0.25) 40%, rgba(10,10,10,0.65) 100%); }
.aerial-content { position: relative; z-index: 2; text-align: center; color: var(--white); padding: 0 24px; max-width: 1200px; }
.aerial-eyebrow { font-family: var(--serif); font-size: 14px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 40px; }
.aerial-headline { font-family: var(--serif); font-size: clamp(44px, 6vw, 96px); line-height: 1.05; letter-spacing: -0.01em; font-weight: 400; margin-bottom: 0; }
.aerial-headline em { font-style: italic; }
.aerial-mark { margin-top: 56px; font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; opacity: 0.7; display: inline-flex; align-items: center; gap: 16px; }
.aerial-mark::before, .aerial-mark::after { content: ''; display: block; width: 32px; height: 1px; background: var(--gold); }

/* ─── REVIEWS ────────────────────────────────────────────────────────────── */
.reviews { background: var(--white); padding: 180px 24px; }
.reviews-inner { max-width: 1280px; margin: 0 auto; }
.reviews-header { text-align: center; margin-bottom: 80px; }
.reviews-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--navy); margin-bottom: 24px; font-weight: 500; }
.reviews-title { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); letter-spacing: -0.01em; line-height: 1.05; font-weight: 400; }
.reviews-title em { font-style: italic; color: var(--gold); }
.reviews-rating { text-align: center; margin-bottom: 96px; padding-bottom: 96px; border-bottom: 1px solid var(--grey-soft); }
.reviews-rating-num { font-family: var(--serif); font-size: clamp(72px, 10vw, 128px); color: var(--navy); line-height: 1; letter-spacing: -0.03em; font-weight: 400; }
.reviews-rating-num em { color: var(--gold); font-style: italic; font-size: 0.6em; }
.reviews-rating-stars { color: var(--gold); font-size: 26px; margin: 20px 0; letter-spacing: 5px; }
.reviews-rating-source { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--grey-text); font-weight: 500; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 64px; }
.review { position: relative; padding-top: 40px; }
.review::before {
  content: '"';
  position: absolute;
  top: -28px; left: -8px;
  font-family: var(--serif);
  font-style: italic;
  font-size: 108px;
  color: var(--gold);
  line-height: 1;
  opacity: 0.75;
}
.review-text { font-family: var(--serif); font-size: 19px; color: var(--black); line-height: 1.55; margin-bottom: 36px; font-style: italic; font-weight: 400; }
.review-divider { width: 32px; height: 1px; background: var(--gold); margin-bottom: 18px; }
.review-author { font-size: 12px; letter-spacing: 0.22em; text-transform: uppercase; color: var(--navy); font-weight: 500; }
.review-location { font-family: var(--serif); font-style: italic; font-size: 14px; color: var(--grey-text); margin-top: 6px; }

/* ─── SERVICE AREAS ──────────────────────────────────────────────────────── */
.areas { background: var(--off-white); padding: 160px 0; border-top: 1px solid var(--grey-soft); }
.areas-header { text-align: center; padding: 0 24px 80px; }
.areas-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--navy); margin-bottom: 24px; font-weight: 500; }
.areas-title { font-family: var(--serif); font-size: clamp(40px, 5vw, 72px); letter-spacing: -0.01em; line-height: 1.05; font-weight: 400; }
.areas-title em { font-style: italic; color: var(--gold); }
.areas-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  max-width: 1400px;
  margin: 0 auto;
  border-top: 1px solid var(--grey-soft);
  border-left: 1px solid var(--grey-soft);
}
.area-tile {
  padding: 48px 24px;
  text-align: center;
  border-right: 1px solid var(--grey-soft);
  border-bottom: 1px solid var(--grey-soft);
  transition: all 0.3s ease;
  background: transparent;
  display: block;
}
.area-tile:hover { background: var(--white); }
.area-tile-name { font-family: var(--serif); font-size: 26px; color: var(--navy); line-height: 1.1; font-weight: 400; transition: all 0.3s; }
.area-tile:hover .area-tile-name { font-style: italic; color: var(--gold); }
.area-tile-state { font-size: 10px; letter-spacing: 0.3em; text-transform: uppercase; color: var(--grey-text); margin-top: 10px; font-weight: 500; }

/* ─── RISK REVERSAL ──────────────────────────────────────────────────────── */
.risk-reversal {
  background: var(--black);
  color: var(--white);
  padding: 160px 24px;
  position: relative;
  overflow: hidden;
}
.risk-reversal::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top, rgba(224, 177, 98, 0.08) 0%, transparent 55%);
  pointer-events: none;
}
.risk-inner { position: relative; z-index: 2; max-width: 980px; margin: 0 auto; text-align: center; }
.risk-eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 32px; font-weight: 500; }
.risk-title { font-family: var(--serif); font-size: clamp(38px, 5.2vw, 72px); line-height: 1.06; letter-spacing: -0.01em; margin-bottom: 40px; font-weight: 400; }
.risk-title em { font-style: italic; color: var(--gold); }
.risk-promises { display: flex; justify-content: center; gap: 80px; margin: 56px 0 72px; flex-wrap: wrap; }
.promise { text-align: center; position: relative; }
.promise-num { font-family: var(--serif); font-style: italic; font-size: 28px; color: var(--gold); margin-bottom: 8px; }
.promise-text { font-size: 11px; font-weight: 500; letter-spacing: 0.32em; text-transform: uppercase; color: rgba(255,255,255,0.85); }
.promise:not(:last-child)::after { content: ''; position: absolute; right: -40px; top: 50%; width: 1px; height: 36px; background: rgba(255,255,255,0.18); transform: translateY(-50%); }
.risk-form-wrap {
  max-width: 720px;
  margin: 0 auto;
  text-align: left;
  border: 1px solid rgba(255,255,255,0.12);
  padding: 56px;
}
.risk-form-wrap .eyebrow { font-size: 11px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; font-weight: 500; display: block; }
.risk-form-headline { font-family: var(--serif); font-size: 28px; color: var(--white); margin-bottom: 40px; line-height: 1.3; font-weight: 400; }
.risk-form-headline em { font-style: italic; color: var(--gold); }
.risk-form-wrap .form-field label { color: rgba(255,255,255,0.55); }
.risk-form-wrap input, .risk-form-wrap select {
  color: var(--white);
  border-bottom-color: rgba(255,255,255,0.2);
  width: 100%;
  padding: 8px 0 12px;
  border-top: none; border-left: none; border-right: none;
  background: transparent;
  font-family: var(--sans);
  font-size: 15px;
  transition: border-color 0.3s;
}
.risk-form-wrap input::placeholder { color: rgba(255,255,255,0.35); font-style: italic; font-family: var(--serif); font-size: 16px; }
.risk-form-wrap input:focus, .risk-form-wrap select:focus { outline: none; border-bottom-color: var(--gold); }
.risk-form-wrap select {
  cursor: pointer;
  appearance: none;
  background-image: url("data:image/svg+xml;charset=UTF-8,%3csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3e%3cpath fill='%23e0b162' d='M6 8L1 3h10z'/%3e%3c/svg%3e");
  background-repeat: no-repeat;
  background-position: right 4px center;
  padding-right: 28px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  font-family: var(--serif);
  font-size: 16px;
}
.risk-form-wrap .form-submit { background: var(--gold); border-color: var(--gold); color: var(--black); }
.risk-form-wrap .form-submit:hover { background: var(--white); border-color: var(--white); color: var(--black); }
.risk-form-wrap .form-fineprint { color: rgba(255,255,255,0.5); }

/* ─── FOOTER ─────────────────────────────────────────────────────────────── */
.site-footer {
  background: var(--black);
  color: var(--white);
  padding: 96px 56px 40px;
  border-top: 1px solid rgba(255,255,255,0.08);
}
.footer-grid {
  max-width: 1400px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 60px;
  padding-bottom: 60px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand img { height: 56px; margin-bottom: 28px; }
.footer-tag { font-size: 14px; line-height: 1.7; color: rgba(255,255,255,0.6); max-width: 320px; font-weight: 300; }
.footer-col-title { font-size: 10px; letter-spacing: 0.32em; text-transform: uppercase; color: var(--gold); margin-bottom: 24px; font-weight: 600; }
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 13px; opacity: 0.75; transition: opacity 0.2s; font-weight: 300; }
.footer-col a:hover { opacity: 1; }
.footer-bottom {
  max-width: 1400px;
  margin: 0 auto;
  padding-top: 40px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
}

/* ─── RESPONSIVE ─────────────────────────────────────────────────────────── */
@media (max-width: 1100px) {
  .nav-list { gap: 28px; }
  .booking-inner { grid-template-columns: 1fr; gap: 60px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .materials-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; gap: 56px; }
  .areas-grid { grid-template-columns: repeat(3, 1fr); }
}
@media (max-width: 860px) {
  nav.site-nav { padding: 20px 24px; }
  nav.site-nav.scrolled { padding: 14px 24px; }
  .nav-list { gap: 20px; }
  .nav-list li:not(:last-child):not(:nth-last-child(2)) { display: none; }
  .hero { min-height: 580px; }
  .hero-headline { font-size: clamp(44px, 12vw, 64px); }
  .booking-section { padding: 80px 24px; }
  .booking-form { padding: 40px 28px; }
  .form-row { grid-template-columns: 1fr; }
  .credibility { padding: 60px 24px; }
  .cred-stats { grid-template-columns: 1fr; gap: 40px; }
  .cred-divider { width: 80px; height: 1px; margin: 0 auto; }
  .cred-badges { gap: 16px; padding-top: 36px; }
  .cred-badge:not(:last-child)::after { margin-left: 16px; }
  .agitation { padding: 100px 24px; }
  .agitation h2 { margin-bottom: 40px; }
  .services { padding: 100px 0 120px; }
  .services-header { padding-bottom: 60px; }
  .services-grid { grid-template-columns: 1fr; }
  .service-body { padding: 32px 28px 40px; }
  .materials { padding: 100px 0 0; }
  .materials-header { padding-bottom: 60px; }
  .materials-grid { grid-template-columns: 1fr; }
  .material-meta { padding: 24px 24px 36px; }
  .difference { padding: 140px 24px; }
  .difference-eyebrow { margin-bottom: 40px; }
  .difference-intro { margin-bottom: 70px; }
  .manifesto-row { grid-template-columns: 1fr; gap: 24px; padding: 48px 0; }
  .manifesto-num { margin-top: 0; font-size: 44px; }
  .partners { padding: 60px 0; }
  .partners-track { gap: 50px; }
  .partner-name + .partner-name::before { margin-right: 50px; }
  .aerial { min-height: 560px; }
  .reviews { padding: 100px 24px; }
  .reviews-rating { padding-bottom: 72px; margin-bottom: 72px; }
  .areas { padding: 100px 0; }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .area-tile { padding: 32px 16px; }
  .area-tile-name { font-size: 20px; }
  .risk-reversal { padding: 100px 24px; }
  .risk-promises { gap: 48px; }
  .promise:not(:last-child)::after { display: none; }
  .risk-form-wrap { padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-bottom { flex-direction: column; }
  .site-footer { padding: 60px 24px 32px; }
}
