/* =====================================================================
   Right Image Builders — Florida (Greater Orlando)
   Design system: Premium serif · Cormorant Garamond + DM Sans
   Inspired by rightimagebuilders.com — gold accents, dark/cream palette
   ===================================================================== */

:root {
  --gold:   #C9A84C;
  --dark:   #181614;
  --cream:  #FAF8F5;
  --mid:    #6B6560;
  --white:  #FFFFFF;
  --amber:  #FBBB04;
  --amber-d:#D99E00;
  --line:   #E8E4DC;
  --maxw:   1200px;
}

/* ---- reset ---- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 90px; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--dark);
  background: var(--cream);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
.wrap { max-width: var(--maxw); margin: 0 auto; padding: 0 32px; }
.center { text-align: center; }
section { padding: 120px 0; }

/* ---- typography ---- */
h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  line-height: 1.08;
  font-weight: 600;
}
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; }

/* ---- buttons ---- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background .2s, color .2s, opacity .2s;
}
.btn-dark {
  background: var(--dark);
  color: var(--white);
  padding: 18px 40px;
}
.btn-dark:hover { background: #2a2724; }
.btn-amber {
  background: var(--amber);
  color: #1c1500;
  padding: 18px 40px;
}
.btn-amber:hover { background: var(--amber-d); }
.btn-line {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 17px 38px;
}
.btn-line:hover { background: var(--dark); color: var(--white); }

/* ---- eyebrow label ---- */
.eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ---- section head ---- */
.sec-head { max-width: 680px; margin: 0 auto 56px; }
.sec-head .eyebrow { margin-bottom: 16px; }
.sec-head h2 { font-size: clamp(36px, 5vw, 52px); }
.sec-head p { color: var(--mid); margin-top: 16px; font-size: 17px; }

/* ---- gold accent rule ---- */
.gold-rule {
  display: block;
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 20px 0;
}

/* =====================================================================
   HEADER / NAV
   ===================================================================== */
header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 248, 245, 0.94);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
}
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}
.logo {
  display: flex;
  align-items: baseline;
  gap: 0;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  font-size: 17px;
  letter-spacing: 0.06em;
  color: var(--dark);
  white-space: nowrap;
}
.logo .logo-sep {
  color: var(--gold);
  margin: 0 6px;
  font-weight: 400;
}
.logo small {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-left: 2px;
  align-self: center;
}
.menu {
  display: flex;
  align-items: center;
  gap: 32px;
  font-family: 'DM Sans', sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--dark);
}
.menu a {
  position: relative;
  padding-bottom: 2px;
}
.menu a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  right: 100%;
  height: 1px;
  background: var(--gold);
  transition: right .25s ease;
}
.menu a:hover::after { right: 0; }
.menu .ph {
  font-weight: 500;
  color: var(--dark);
}
.menu .ph::after { display: none; }
.menu .btn { margin-left: 8px; }
.navtoggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  width: 44px;
  height: 44px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 6px;
}
.navtoggle span {
  display: block;
  width: 24px;
  height: 1.5px;
  background: var(--dark);
  transition: .2s;
}
.navtoggle.open span:nth-child(1) { transform: translateY(7.5px) rotate(45deg); }
.navtoggle.open span:nth-child(2) { opacity: 0; }
.navtoggle.open span:nth-child(3) { transform: translateY(-7.5px) rotate(-45deg); }

/* =====================================================================
   MARQUEE STRIP
   ===================================================================== */
.marquee-strip {
  background: var(--dark);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid #2e2b28;
}
.marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
}
.marquee-track span {
  font-family: 'DM Sans', sans-serif;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding-right: 40px;
}
.marquee-track span.dot-sep {
  color: var(--gold);
  padding-right: 40px;
  letter-spacing: 0;
}
@keyframes marquee {
  0%   { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* =====================================================================
   HOME HERO
   ===================================================================== */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  background: var(--dark);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('https://images.unsplash.com/photo-1618221195710-dd6b41faaea6?w=1600&q=80');
  background-size: cover;
  background-position: center 40%;
  opacity: 1;
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(20, 18, 16, 0.45);
}
.hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 440px;
  gap: 80px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.hero-left { color: var(--white); }
.hero-left .eyebrow { color: rgba(201,168,76,0.9); margin-bottom: 28px; }
.hero-left h1 {
  font-size: clamp(52px, 6.5vw, 88px);
  color: var(--white);
  line-height: 1.0;
  margin-bottom: 28px;
}
.hero-left h1 em { color: rgba(255,255,255,0.88); }
.hero-left .sub {
  font-size: 17px;
  color: rgba(255,255,255,0.75);
  max-width: 500px;
  line-height: 1.7;
  margin-bottom: 36px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  margin-top: 48px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
  flex-wrap: wrap;
}
.hero-stat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 42px;
  font-weight: 600;
  color: var(--white);
  line-height: 1;
}
.hero-stat .lbl {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-top: 4px;
}

/* hero form card */
.hero-form {
  background: var(--white);
  padding: 36px 32px;
}
.hero-form h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 26px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 6px;
}
.hero-form p.small {
  font-size: 13px;
  color: var(--mid);
  margin-bottom: 20px;
}
.hero-form label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 16px;
  margin-bottom: 6px;
}
.hero-form input,
.hero-form textarea,
.hero-form select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: transparent;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}
.hero-form input:focus,
.hero-form textarea:focus,
.hero-form select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.hero-form textarea { min-height: 70px; resize: none; }
.hero-form .btn-dark { width: 100%; margin-top: 24px; }
.hero-form .legal {
  font-size: 11px;
  color: var(--mid);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.04em;
}
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }

/* =====================================================================
   SERVICES — NUMBERED LIST
   ===================================================================== */
#services { background: var(--cream); }
.svc-header {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 32px;
  margin-bottom: 64px;
  flex-wrap: wrap;
  border-bottom: 1px solid var(--line);
  padding-bottom: 40px;
}
.svc-header h2 { font-size: clamp(38px, 5vw, 58px); max-width: 520px; }
.svc-header p { color: var(--mid); max-width: 320px; font-size: 16px; }
.svc-list { display: grid; gap: 0; }
.svc-row {
  display: grid;
  grid-template-columns: 80px 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
  transition: background .15s;
}
.svc-row:first-child { border-top: 1px solid var(--line); }
.svc-row .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.06em;
  border-left: 2px solid var(--gold);
  padding-left: 14px;
}
.svc-row h3 {
  font-size: 22px;
  font-weight: 600;
  color: var(--dark);
  margin-bottom: 4px;
}
.svc-row p { font-size: 14px; color: var(--mid); }
.svc-row .arr {
  font-size: 20px;
  color: var(--gold);
  opacity: 0;
  transition: opacity .2s, transform .2s;
}
.svc-row:hover .arr { opacity: 1; transform: translateX(4px); }
a.svc-row { color: inherit; }
a.svc-row:hover { background: rgba(201,168,76,0.04); }

/* =====================================================================
   PROJECT PHOTOS GRID
   ===================================================================== */
.projects { background: var(--dark); padding: 120px 0; }
.projects .sec-head .eyebrow { color: rgba(201,168,76,0.9); }
.projects .sec-head h2 { color: var(--white); }
.projects .sec-head p { color: rgba(255,255,255,0.5); }
.photo-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2px;
}
.photo-cell {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4/3;
  background: #2a2724;
}
.photo-cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .6s ease;
}
.photo-cell:hover img { transform: scale(1.04); }
.photo-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 20px;
  background: linear-gradient(transparent, rgba(18,16,14,0.85));
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.8);
}

/* =====================================================================
   ABOUT / VLADIMIR
   ===================================================================== */
.about { background: var(--white); border-top: 1px solid var(--line); }
.about .wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.about-photo {
  position: relative;
}
.about-photo img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-photo::before {
  content: '';
  position: absolute;
  top: 20px;
  left: -20px;
  right: 20px;
  bottom: -20px;
  border: 1px solid var(--gold);
  z-index: 0;
}
.about-photo img { position: relative; z-index: 1; }
.about-text .eyebrow { margin-bottom: 20px; }
.about-text blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(26px, 3.5vw, 38px);
  font-weight: 400;
  font-style: italic;
  color: var(--dark);
  line-height: 1.35;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 20px;
}
.about-text .attribution {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 28px;
  padding-left: 26px;
}
.about-text p {
  font-size: 16px;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 32px;
}
.about-text .btn-dark { }

/* =====================================================================
   WHY / PROCESS
   ===================================================================== */
.why { background: var(--cream); }
.why .wrap {
  display: grid;
  grid-template-columns: .85fr 1.15fr;
  gap: 80px;
  align-items: start;
}
.why-head h2 {
  font-size: clamp(36px, 4.5vw, 52px);
  position: sticky;
  top: 110px;
}
.why-head .eyebrow { margin-bottom: 20px; }
.why-head p { color: var(--mid); font-size: 16px; margin-top: 16px; max-width: 340px; }
.why-list { display: grid; gap: 0; }
.why-row {
  display: flex;
  gap: 28px;
  padding: 32px 0;
  border-bottom: 1px solid var(--line);
}
.why-row:first-child { border-top: 1px solid var(--line); }
.why-row .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 36px;
  font-weight: 600;
  color: var(--line);
  flex: none;
  width: 52px;
  line-height: 1;
  padding-top: 4px;
}
.why-row h3 { font-size: 20px; margin-bottom: 8px; }
.why-row p { color: var(--mid); font-size: 15px; }

/* =====================================================================
   REVIEWS
   ===================================================================== */
.rev { background: var(--white); border-top: 1px solid var(--line); }
.rev .wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.rev .feat-q {
  background: var(--dark);
  color: var(--white);
  padding: 52px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.rev .feat-q .stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 4px;
  margin-bottom: 24px;
}
.rev .feat-q blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(22px, 3vw, 32px);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.45;
  border-left: 2px solid var(--gold);
  padding-left: 24px;
  margin-bottom: 24px;
}
.rev .feat-q .who {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
  padding-left: 26px;
}
.rev .side { display: grid; gap: 2px; }
.rev .qcard {
  background: var(--cream);
  padding: 36px;
  flex: 1;
}
.rev .qcard .stars { color: var(--gold); letter-spacing: 3px; font-size: 13px; margin-bottom: 16px; }
.rev .qcard p { color: var(--dark); font-size: 16px; line-height: 1.6; margin-bottom: 16px; }
.rev .qcard .who { font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--mid); }
.rev .qcard .who span { color: var(--gold); }

/* =====================================================================
   AREAS
   ===================================================================== */
.areas { background: var(--cream); border-top: 1px solid var(--line); }
.areas .cities {
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 22px;
  font-weight: 400;
  color: var(--dark);
  line-height: 2;
}
.areas .cities span { white-space: nowrap; }
.areas .cities .d { color: var(--gold); margin: 0 12px; }

/* =====================================================================
   FAQ
   ===================================================================== */
.faq { background: var(--white); border-top: 1px solid var(--line); }
.faq-list { max-width: 840px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item:first-child { border-top: 1px solid var(--line); }
.faq-q {
  width: 100%;
  text-align: left;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Cormorant Garamond', serif;
  font-size: 20px;
  font-weight: 600;
  color: var(--dark);
  padding: 24px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.faq-q .pm {
  flex: none;
  width: 28px;
  height: 28px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-family: 'DM Sans', sans-serif;
  font-size: 20px;
  font-weight: 300;
  color: var(--gold);
  transition: transform .2s;
  background: var(--cream);
}
.faq-item.open .faq-q .pm { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-a div { padding: 0 0 24px; color: var(--mid); font-size: 16px; line-height: 1.75; max-width: 680px; }
.faq-item.open .faq-a { max-height: 480px; }

/* =====================================================================
   CONTACT / QUOTE
   ===================================================================== */
.contact { background: var(--cream); border-top: 1px solid var(--line); }
.contact .grid2 {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.formcard {
  background: var(--white);
  padding: 48px 40px;
  border: 1px solid var(--line);
}
.formcard h3 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 30px;
  font-weight: 600;
  margin-bottom: 6px;
}
.formcard p.small { font-size: 13px; color: var(--mid); margin-bottom: 4px; }
.formcard label {
  display: block;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  margin-top: 20px;
  margin-bottom: 6px;
}
.formcard input,
.formcard textarea,
.formcard select {
  width: 100%;
  border: none;
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  padding: 8px 0 10px;
  font-family: 'DM Sans', sans-serif;
  font-size: 15px;
  color: var(--dark);
  background: transparent;
  transition: border-color .2s;
  appearance: none;
  -webkit-appearance: none;
}
.formcard input:focus,
.formcard textarea:focus,
.formcard select:focus {
  outline: none;
  border-bottom-color: var(--gold);
}
.formcard textarea { min-height: 80px; resize: none; }
.formcard .btn-dark { width: 100%; margin-top: 28px; }
.formcard .legal {
  font-size: 11px;
  color: var(--mid);
  text-align: center;
  margin-top: 12px;
  letter-spacing: 0.04em;
}
/* contact right col */
.contact-info { padding-top: 8px; }
.contact-info .eyebrow { margin-bottom: 20px; }
.contact-info h3 {
  font-size: 32px;
  margin-bottom: 28px;
  max-width: 320px;
}
.nap { display: grid; gap: 24px; }
.nap-row { display: flex; gap: 16px; align-items: flex-start; }
.nap-row .ic {
  flex: none;
  width: 40px;
  height: 40px;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  font-size: 15px;
}
.nap-row b { display: block; font-size: 15px; font-weight: 500; margin-bottom: 2px; }
.nap-row span { color: var(--mid); font-size: 13px; }
.mapwrap {
  margin-top: 32px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 260px;
}
.mapwrap iframe { width: 100%; height: 260px; border: none; display: block; }

/* =====================================================================
   CTA BAND
   ===================================================================== */
.cta-band { background: var(--dark); }
.cta-band .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 32px;
  flex-wrap: wrap;
  padding-top: 72px;
  padding-bottom: 72px;
}
.cta-band h2 {
  font-size: clamp(28px, 4vw, 46px);
  color: var(--white);
  max-width: 560px;
}
.cta-band h2 em { color: var(--gold); }
.cta-band .ph {
  font-family: 'Cormorant Garamond', serif;
  font-size: 28px;
  font-weight: 600;
  color: var(--white);
}
.cta-band .ph:hover { color: var(--gold); }

/* =====================================================================
   FOOTER
   ===================================================================== */
footer { background: #111009; color: rgba(255,255,255,0.5); font-size: 14px; }
footer .wrap {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 40px;
  padding: 72px 32px 40px;
}
footer .logo-f {
  font-family: 'Cormorant Garamond', serif;
  font-size: 18px;
  font-weight: 600;
  color: var(--white);
  letter-spacing: 0.06em;
  margin-bottom: 16px;
  display: block;
}
footer .logo-f .logo-sep { color: var(--gold); margin: 0 6px; }
footer p { color: rgba(255,255,255,0.4); font-size: 14px; line-height: 1.7; max-width: 280px; margin-bottom: 16px; }
footer .tag {
  display: inline-block;
  background: rgba(201,168,76,0.12);
  border: 1px solid rgba(201,168,76,0.25);
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
}
footer h4 {
  font-family: 'DM Sans', sans-serif;
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
footer a { display: block; color: rgba(255,255,255,0.5); padding: 5px 0; font-size: 14px; }
footer a:hover { color: var(--gold); }
.copy {
  border-top: 1px solid rgba(255,255,255,0.06);
  text-align: center;
  padding: 20px 32px;
  color: rgba(255,255,255,0.25);
  font-size: 12px;
}
.copy a { display: inline; color: rgba(255,255,255,0.35); }
.copy a:hover { color: var(--gold); }

/* =====================================================================
   STICKY MOBILE CALL
   ===================================================================== */
.mcall {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--dark);
  color: var(--white);
  text-align: center;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 16px;
  box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

/* =====================================================================
   SUB-PAGE HERO (split hero with form — service pages)
   ===================================================================== */
.sp-hero {
  position: relative;
  min-height: 80vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}
.sp-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 1;
}
.sp-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(18, 16, 14, 0.60);
}
.sp-hero .wrap {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 64px;
  align-items: center;
  padding-top: 60px;
  padding-bottom: 60px;
}
.sp-hero-left { color: var(--white); }
.sp-hero-left .crumb {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.4);
  margin-bottom: 20px;
}
.sp-hero-left .crumb a:hover { color: var(--gold); }
.sp-hero-left .eyebrow { color: rgba(201,168,76,0.85); margin-bottom: 20px; }
.sp-hero-left h1 {
  font-size: clamp(44px, 5.5vw, 72px);
  color: var(--white);
  line-height: 1.05;
  margin-bottom: 24px;
}
.sp-hero-left .sub {
  font-size: 16px;
  color: rgba(255,255,255,0.7);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.sp-tline {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.sp-tline .tp {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
  color: rgba(255,255,255,0.65);
}
.sp-tline .tp::before {
  content: '';
  display: block;
  width: 16px;
  height: 1px;
  background: var(--gold);
  flex: none;
}

/* =====================================================================
   FEATURES GRID (service pages)
   ===================================================================== */
.feat-section { background: var(--cream); }
.feat-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
  background: var(--line);
  border: 1px solid var(--line);
}
.feat-card {
  background: var(--white);
  padding: 40px;
}
.feat-card .num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 48px;
  font-weight: 600;
  color: var(--line);
  line-height: 1;
  margin-bottom: 16px;
}
.feat-card h3 { font-size: 22px; margin-bottom: 10px; }
.feat-card p { color: var(--mid); font-size: 15px; line-height: 1.7; }

/* =====================================================================
   PROCESS STEPS (service pages)
   ===================================================================== */
.process { background: var(--dark); }
.process .sec-head .eyebrow { color: rgba(201,168,76,0.85); }
.process .sec-head h2 { color: var(--white); }
.process .sec-head p { color: rgba(255,255,255,0.5); }
.steps-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.06);
}
.step-card {
  background: var(--dark);
  padding: 40px;
}
.step-card .sn {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.2em;
  color: var(--gold);
  text-transform: uppercase;
  margin-bottom: 24px;
  border-left: 2px solid var(--gold);
  padding-left: 12px;
}
.step-card h3 { font-size: 24px; color: var(--white); margin-bottom: 12px; }
.step-card p { font-size: 15px; color: rgba(255,255,255,0.5); line-height: 1.7; }

/* =====================================================================
   TRUST STRIP
   ===================================================================== */
.trust-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.trust-strip .wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 24px;
  padding-bottom: 24px;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--dark);
  letter-spacing: 0.04em;
}
.trust-item .ti {
  color: var(--gold);
  font-size: 16px;
}

/* =====================================================================
   DOC PAGES (privacy, thank-you)
   ===================================================================== */
.doc { max-width: 820px; margin: 0 auto; }
.doc h1 { font-size: 48px; margin-bottom: 8px; }
.doc .upd { color: var(--mid); font-size: 14px; margin-bottom: 32px; }
.doc h2 { font-size: 26px; margin: 36px 0 12px; }
.doc p, .doc li { color: var(--mid); font-size: 16px; margin-bottom: 12px; line-height: 1.75; }
.doc ul { padding-left: 24px; margin-bottom: 12px; }

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 1024px) {
  section { padding: 96px 0; }
  .hero .wrap { grid-template-columns: 1fr; gap: 48px; padding-top: 72px; padding-bottom: 72px; }
  .hero-form { max-width: 480px; }
  .sp-hero .wrap { grid-template-columns: 1fr; gap: 40px; }
  .about .wrap { grid-template-columns: 1fr; gap: 48px; }
  .about-photo::before { display: none; }
  .why .wrap { grid-template-columns: 1fr; gap: 48px; }
  .why-head h2 { position: static; }
  .rev .wrap { grid-template-columns: 1fr; gap: 2px; }
  .contact .grid2 { grid-template-columns: 1fr; gap: 48px; }
}
@media (max-width: 768px) {
  section { padding: 80px 0; }
  .wrap { padding: 0 20px; }
  .hero { min-height: auto; padding: 64px 0; }
  .hero-stats { gap: 28px; }
  .photo-grid { grid-template-columns: 1fr; }
  .feat-grid { grid-template-columns: 1fr; }
  .steps-list { grid-template-columns: 1fr; }
  .svc-row { grid-template-columns: 60px 1fr; }
  .svc-row .arr { display: none; }
  footer .wrap { grid-template-columns: 1fr 1fr; gap: 32px; padding: 48px 20px 24px; }
  .cta-band .wrap { flex-direction: column; text-align: center; }
  /* mobile nav */
  .navtoggle { display: flex; }
  .menu {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 8px 0 16px;
    display: none;
    box-shadow: 0 20px 40px rgba(0,0,0,0.08);
  }
  .menu.open { display: flex; }
  .menu a { padding: 14px 24px; border-top: 1px solid var(--line); }
  .menu a::after { display: none; }
  .menu .btn { margin: 12px 20px 0; width: calc(100% - 40px); }
  body { padding-bottom: 56px; }
  .mcall { display: block; }
}
@media (max-width: 560px) {
  .svc-row { grid-template-columns: 1fr; gap: 8px; }
  .svc-row .num { font-size: 11px; }
  footer .wrap { grid-template-columns: 1fr; }
  .hero-left h1 { font-size: 44px; }
  .sp-hero-left h1 { font-size: 38px; }
}
