@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,400;0,9..144,600;0,9..144,700;1,9..144,400;1,9..144,600&family=Outfit:wght@300;400;500;600&display=swap');

:root {
  --forest:      #0A1A0B;
  --forest-mid:  #1B3A1C;
  --forest-soft: #2D5E30;
  --cream:       #F5F2EC;
  --cream-dark:  #EAE5DB;
  --amber:      #1B6CA8;
  --amber-light: #4A9FD4;
  --ink:         #1A1A1A;
  --ink-mid:     #4A4A4A;
  --ink-soft:    #7A7A7A;
  --white:       #FFFFFF;
  --border:      #D8D2C6;

  --display: 'Fraunces', Georgia, serif;
  --body:    'Outfit', system-ui, sans-serif;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* =========================================
   TOP BAR
   ========================================= */
.topbar {
  background: var(--forest);
  padding: 8px 0;
}
.topbar__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
}
.topbar__items {
  display: flex; gap: 28px; align-items: center;
}
.topbar__item {
  font-size: 0.73rem; color: rgba(255,255,255,0.5);
  font-family: var(--body); font-weight: 400; letter-spacing: 0.03em;
}
.topbar__item strong { color: rgba(255,255,255,0.8); font-weight: 500; }
.topbar__phone {
  font-size: 0.82rem; font-weight: 600;
  color: var(--amber); letter-spacing: 0.02em;
}
.topbar__phone a { color: inherit; }
@media (max-width: 768px) { .topbar { display: none; } }

/* =========================================
   NAV
   ========================================= */
.nav {
  position: sticky; top: 0; z-index: 200;
  background: var(--white);
  border-bottom: 1px solid var(--border);
}
.nav__inner {
  max-width: 1200px; margin: 0 auto; padding: 0 32px;
  display: flex; align-items: center; justify-content: space-between;
  height: 64px;
}
.nav__logo {
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--forest); letter-spacing: -0.01em;
}
.nav__logo em { font-style: italic; color: var(--amber); }
.nav__links {
  display: flex; align-items: center; gap: 36px; list-style: none;
}
.nav__links a {
  font-size: 0.85rem; font-weight: 500; color: var(--ink-mid);
  transition: color 0.15s;
}
.nav__links a:hover, .nav__links a.active { color: var(--forest); }
.nav__cta {
  background: var(--amber) !important;
  color: var(--white) !important;
  padding: 9px 22px;
  border-radius: 4px;
  font-weight: 600 !important;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.nav__cta:hover { background: var(--forest) !important; }
.nav__phone {
  font-size: 0.85rem; font-weight: 500; color: var(--ink-mid);
  white-space: nowrap; letter-spacing: 0;
  transition: color 0.15s;
  margin-left: auto;
  margin-right: 36px;
}
.nav__phone:hover { color: var(--amber); }
.nav__toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 4px;
}
.nav__toggle span {
  display: block; width: 22px; height: 1.5px;
  background: var(--forest); margin: 5px 0;
}
@media (max-width: 900px) {
  .nav__toggle { display: block; }
  .nav__phone { display: none; }
  .nav { position: relative; }
  .nav__links {
    display: none; flex-direction: column; gap: 0;
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--white);
    border-bottom: 2px solid var(--border);
    padding: 0 32px 16px;
  }
  .nav__links.open { display: flex; }
  .nav__links li { border-bottom: 1px solid var(--border); width: 100%; }
  .nav__links a { display: block; padding: 13px 0; }
  .nav__links li:last-child { border: none; padding-top: 12px; }
}

/* =========================================
   HERO
   ========================================= */
.hero {
  position: relative;
  height: 92vh; min-height: 580px; max-height: 900px;
  overflow: hidden;
  display: flex; align-items: flex-end;
}
.hero__bg {
  position: absolute; inset: 0;
}
.hero__bg img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 30%;
}
.hero__bg::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to top,
    rgba(10,26,11,0.92) 0%,
    rgba(10,26,11,0.5) 45%,
    rgba(10,26,11,0.1) 100%
  );
}
.hero__content {
  position: relative; z-index: 2;
  width: 100%; max-width: 1200px;
  margin: 0 auto; padding: 0 32px 72px;
  display: grid;
  grid-template-columns: 1fr 360px;
  gap: 40px; align-items: flex-end;
}
.hero__left {}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 0.72rem; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 20px;
}
.hero__eyebrow::before {
  content: '';
  display: block; width: 24px; height: 1px;
  background: var(--amber);
}
.hero h1 {
  font-family: var(--display);
  font-size: clamp(2.8rem, 5.5vw, 4.8rem);
  font-weight: 700; line-height: 1.06;
  color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 28px;
}
.hero h1 em {
  font-style: italic; color: var(--amber-light);
  font-weight: 400;
}
.hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.65);
  max-width: 460px; margin-bottom: 36px; line-height: 1.7;
}
.hero__btns { display: flex; gap: 12px; flex-wrap: wrap; }
.hero__scroll-hint {
  position: absolute;
  bottom: 32px; right: 32px; z-index: 2;
  display: flex; flex-direction: column; gap: 6px; align-items: flex-end;
}
.hero__scroll-hint span {
  font-size: 0.7rem; font-weight: 500; letter-spacing: 0.1em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
}
.hero__mini-card {
  background: rgba(255,255,255,0.08);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 8px;
  padding: 20px 24px;
  display: flex; flex-direction: column; gap: 14px;
}
.hero__mini-stat { text-align: center; }
.hero__mini-stat strong {
  display: block;
  font-family: var(--display);
  font-size: 2rem; font-weight: 700;
  color: var(--amber-light);
  line-height: 1;
}
.hero__mini-stat span {
  font-size: 0.75rem; color: rgba(255,255,255,0.5);
  font-weight: 400; margin-top: 3px;
}
.hero__mini-divider { height: 1px; background: rgba(255,255,255,0.1); }
@media (max-width: 900px) {
  .hero__content { grid-template-columns: 1fr; }
  .hero__mini-card { display: none; }
  .hero { height: 80vh; }
  .hero__content { padding-bottom: 48px; }
}

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--body); font-weight: 600;
  font-size: 0.88rem; padding: 13px 28px;
  border-radius: 4px; border: none; cursor: pointer;
  transition: all 0.18s; text-decoration: none; white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-amber { background: var(--amber); color: var(--white); }
.btn-amber:hover { background: #B8701A; transform: translateY(-1px); }
.btn-white-outline {
  background: transparent; color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.35);
}
.btn-white-outline:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.7); }
.btn-forest { background: var(--forest); color: var(--white); }
.btn-forest:hover { background: var(--forest-mid); }
.btn-outline-forest {
  background: transparent; color: var(--forest);
  border: 1.5px solid var(--forest);
}
.btn-outline-forest:hover { background: var(--forest); color: var(--white); }

/* =========================================
   MARQUEE TRUST STRIP
   ========================================= */
.trust-strip {
  background: var(--forest);
  padding: 14px 0;
  overflow: hidden;
}
.trust-strip__track {
  display: flex; gap: 0;
  animation: marquee 30s linear infinite;
  width: max-content;
}
.trust-strip__track:hover { animation-play-state: paused; }
.trust-item {
  display: flex; align-items: center; gap: 10px;
  padding: 0 40px;
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,0.08);
}
.trust-item__dot {
  width: 5px; height: 5px; border-radius: 50%;
  background: var(--amber); flex-shrink: 0;
}
.trust-item span {
  font-size: 0.78rem; font-weight: 500;
  color: rgba(255,255,255,0.65); letter-spacing: 0.04em;
}
.trust-item strong { color: rgba(255,255,255,0.9); font-weight: 600; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* =========================================
   SECTION SHARED
   ========================================= */
.section { padding: 100px 0; }
.section--tinted { background: var(--cream-dark); }
.section--dark { background: var(--forest); }
.eyebrow {
  font-size: 0.7rem; font-weight: 600; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 14px; display: block;
}
.section-title {
  font-family: var(--display);
  font-size: clamp(1.9rem, 3.5vw, 2.8rem);
  font-weight: 700; line-height: 1.12;
  color: var(--forest); letter-spacing: -0.02em;
}
.section-title--white { color: var(--white); }
.section-title em {
  font-style: italic; font-weight: 400;
  color: var(--amber);
}
.section-intro {
  font-size: 1rem; color: var(--ink-mid);
  max-width: 560px; line-height: 1.75; margin-top: 12px;
}
.section-intro--white { color: rgba(255,255,255,0.6); }

/* =========================================
   SERVICES — editorial numbered list
   ========================================= */
.services-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px; align-items: end;
  margin-bottom: 64px;
}
.services-header__right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 20px;
}
.service-items { display: flex; flex-direction: column; }
.service-item {
  display: grid;
  grid-template-columns: 72px 1fr 200px;
  align-items: center; gap: 0;
  padding: 28px 0;
  border-top: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.18s;
  cursor: pointer;
}
.service-item:last-child { border-bottom: 1px solid var(--border); }
.service-item:hover { background: var(--cream-dark); margin: 0 -32px; padding: 28px 32px; }
.service-item__num {
  font-family: var(--display);
  font-size: 1.05rem; font-weight: 400;
  color: var(--border); font-style: italic;
}
.service-item__body {}
.service-item__title {
  font-family: var(--display);
  font-size: 1.25rem; font-weight: 600;
  color: var(--forest); margin-bottom: 5px;
}
.service-item__desc {
  font-size: 0.87rem; color: var(--ink-soft);
  max-width: 500px; line-height: 1.6;
}
.service-item__right {
  display: flex; flex-direction: column;
  align-items: flex-end; gap: 6px;
}
.service-item__price {
  font-family: var(--display);
  font-size: 1.3rem; font-weight: 600;
  color: var(--amber);
}
.service-item__price-sub {
  font-size: 0.75rem; color: var(--ink-soft);
}
.service-item__arrow {
  font-size: 1.1rem; color: var(--border);
  transition: color 0.18s, transform 0.18s;
}
.service-item:hover .service-item__arrow {
  color: var(--amber); transform: translateX(4px);
}
@media (max-width: 900px) {
  .services-header { grid-template-columns: 1fr; gap: 24px; }
  .services-header__right { align-items: flex-start; }
  .service-item { grid-template-columns: 48px 1fr; }
  .service-item__right { display: none; }
}

/* =========================================
   FULL WIDTH PHOTO BREAK
   ========================================= */
.photo-break {
  position: relative; height: 480px; overflow: hidden;
}
.photo-break img {
  width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.photo-break::after {
  content: '';
  position: absolute; inset: 0;
  background: rgba(10,26,11,0.55);
}
.photo-break__overlay {
  position: absolute; inset: 0; z-index: 2;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 0 32px;
}
.photo-break__quote {
  font-family: var(--display);
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400; font-style: italic;
  color: var(--white); line-height: 1.3;
  max-width: 800px;
}
.photo-break__quote strong {
  font-style: normal; font-weight: 700;
  color: var(--amber-light);
}

/* =========================================
   WHY US — large pull-quote style
   ========================================= */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 100px; align-items: center;
}
.why-image {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
}
.why-image img {
  width: 100%; height: 520px;
  object-fit: cover; display: block;
}
.why-image__badge {
  position: absolute;
  bottom: 24px; left: 24px;
  background: var(--amber);
  color: var(--white);
  font-size: 0.8rem; font-weight: 700;
  padding: 10px 18px; border-radius: 4px;
  letter-spacing: 0.02em;
}
.why-text {}
.why-pull {
  font-family: var(--display);
  font-size: clamp(1.4rem, 2.5vw, 1.9rem);
  font-weight: 400; font-style: italic;
  color: var(--forest); line-height: 1.4;
  border-left: 3px solid var(--amber);
  padding-left: 24px;
  margin: 28px 0 32px;
}
.why-list { display: flex; flex-direction: column; gap: 14px; margin-top: 8px; }
.why-list-item {
  display: flex; gap: 14px; align-items: flex-start;
  font-size: 0.9rem; color: var(--ink-mid); line-height: 1.6;
}
.why-list-item::before {
  content: '';
  display: block; flex-shrink: 0;
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--amber); margin-top: 7px;
}
@media (max-width: 900px) {
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================
   TESTIMONIALS — horizontal with large quotes
   ========================================= */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 56px;
}
.testimonial-card {
  background: var(--white);
  padding: 40px 36px;
  position: relative;
}
.testimonial-card::before {
  content: '\201C';
  font-family: var(--display);
  font-size: 6rem; line-height: 0.8;
  color: var(--cream-dark);
  position: absolute; top: 28px; left: 28px;
}
.testimonial-card blockquote {
  font-size: 0.95rem; color: var(--ink-mid);
  line-height: 1.75; margin-bottom: 28px;
  position: relative; z-index: 1; padding-top: 32px;
  font-style: italic;
}
.testimonial-author strong { display: block; font-size: 0.88rem; color: var(--forest); font-weight: 600; }
.testimonial-author span { font-size: 0.78rem; color: var(--ink-soft); }
@media (max-width: 900px) {
  .testimonials-grid { grid-template-columns: 1fr; gap: 1px; }
}

/* =========================================
   PROCESS — clean numbered horizontal
   ========================================= */
.process-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 64px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.process-step {
  padding: 36px 32px;
  border-right: 1px solid var(--border);
  position: relative;
}
.process-step:last-child { border-right: none; }
.process-step__num {
  font-family: var(--display);
  font-size: 3rem; font-weight: 700;
  color: var(--cream-dark); line-height: 1;
  margin-bottom: 16px; font-style: italic;
}
.process-step h4 {
  font-family: var(--display);
  font-size: 1.05rem; font-weight: 600;
  color: var(--forest); margin-bottom: 8px;
}
.process-step p { font-size: 0.84rem; color: var(--ink-soft); line-height: 1.65; }
@media (max-width: 900px) {
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(n+3) { border-top: 1px solid var(--border); }
}
@media (max-width: 600px) {
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-top: 1px solid var(--border); }
  .process-step:first-child { border-top: none; }
}

/* =========================================
   AREAS
   ========================================= */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  margin-top: 48px;
  border: 1px solid var(--border);
  border-radius: 4px;
  overflow: hidden;
}
.area-item {
  display: block;
  padding: 18px 24px;
  border-right: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  text-decoration: none;
  transition: background 0.15s;
}
.area-item:hover { background: var(--forest); }
.area-item:hover .area-item__name { color: var(--white); }
.area-item:hover .area-item__sub { color: rgba(255,255,255,0.5); }
.area-item__name {
  display: block;
  font-size: 0.9rem; font-weight: 600;
  color: var(--forest); transition: color 0.15s;
}
.area-item__sub {
  font-size: 0.75rem; color: var(--ink-soft);
  margin-top: 2px; transition: color 0.15s;
}
@media (max-width: 768px) {
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
}

/* =========================================
   FAQ
   ========================================= */
.faq-layout {
  display: grid;
  grid-template-columns: 340px 1fr;
  gap: 80px;
  margin-top: 0;
  align-items: start;
}
.faq-sidebar-text {
  position: sticky; top: 96px;
}
.faq-list { display: flex; flex-direction: column; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-item:first-child { border-top: 1px solid var(--border); }
.faq-item__q {
  width: 100%; background: none; border: none;
  text-align: left; padding: 20px 0;
  font-family: var(--body); font-size: 0.93rem; font-weight: 600;
  color: var(--forest); cursor: pointer;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  line-height: 1.4;
}
.faq-item__q::after {
  content: '+'; font-size: 1.3rem; color: var(--amber); flex-shrink: 0;
  transition: transform 0.2s;
}
.faq-item__q.open::after { transform: rotate(45deg); }
.faq-item__a {
  display: none; padding: 0 0 20px;
  font-size: 0.9rem; color: var(--ink-mid); line-height: 1.75;
}
.faq-item__a.open { display: block; }
@media (max-width: 900px) {
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar-text { position: static; }
}

/* =========================================
   CONTACT SECTION
   ========================================= */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 480px;
  gap: 80px; align-items: start;
}
.contact-left h2 { color: var(--white); margin-bottom: 12px; }
.contact-left .section-intro { margin-bottom: 40px; }
.contact-details { display: flex; flex-direction: column; gap: 20px; }
.contact-detail { display: flex; gap: 16px; align-items: flex-start; }
.contact-detail__icon {
  width: 40px; height: 40px; flex-shrink: 0;
  background: rgba(255,255,255,0.06);
  border-radius: 4px;
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
}
.contact-detail__text strong {
  display: block; font-size: 0.7rem; font-weight: 600;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); margin-bottom: 3px;
}
.contact-detail__text span, .contact-detail__text a {
  font-size: 0.92rem; color: rgba(255,255,255,0.8); font-weight: 400;
}
.contact-card {
  background: var(--white);
  border-radius: 4px;
  padding: 40px;
}
.contact-card h3 {
  font-family: var(--display);
  font-size: 1.4rem; font-weight: 600;
  color: var(--forest); margin-bottom: 6px;
}
.contact-card p {
  font-size: 0.88rem; color: var(--ink-soft);
  margin-bottom: 24px;
}
@media (max-width: 900px) {
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================
   FOOTER
   ========================================= */
.footer {
  background: #070F07;
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  margin-bottom: 28px;
}
.footer__brand-name {
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--white); margin-bottom: 12px;
}
.footer__brand-name em { font-style: italic; color: var(--amber); }
.footer__brand-desc {
  font-size: 0.82rem; color: rgba(255,255,255,0.35);
  line-height: 1.7; max-width: 260px;
}
.footer__col-title {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: rgba(255,255,255,0.35);
  margin-bottom: 16px; font-family: var(--body);
}
.footer__col ul { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.footer__col ul a {
  font-size: 0.84rem; color: rgba(255,255,255,0.5);
  transition: color 0.15s;
}
.footer__col ul a:hover { color: var(--amber); }
.footer__bottom {
  display: flex; justify-content: space-between;
  flex-wrap: wrap; gap: 8px;
}
.footer__bottom p {
  font-size: 0.75rem; color: rgba(255,255,255,0.2);
}
@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__bottom { flex-direction: column; }
}

/* =========================================
   PAGE HERO (inner pages)
   ========================================= */
.page-hero {
  background: var(--forest);
  padding: 80px 0 72px;
  position: relative; overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 70% 50%, rgba(212,136,42,0.06) 0%, transparent 60%);
}
.page-hero__inner { position: relative; z-index: 1; }
.page-hero__breadcrumb {
  display: flex; gap: 8px; align-items: center;
  font-size: 0.75rem; color: rgba(255,255,255,0.3);
  margin-bottom: 20px;
}
.page-hero__breadcrumb a { color: rgba(255,255,255,0.3); transition: color 0.15s; }
.page-hero__breadcrumb a:hover { color: var(--amber); }
.page-hero h1 {
  font-family: var(--display);
  font-size: clamp(2rem, 4.5vw, 3.4rem);
  font-weight: 700; color: var(--white);
  line-height: 1.1; letter-spacing: -0.02em;
  margin-bottom: 16px;
}
.page-hero__sub {
  font-size: 1rem; color: rgba(255,255,255,0.6);
  max-width: 560px; margin-bottom: 32px; line-height: 1.7;
}
.page-hero__actions { display: flex; gap: 12px; flex-wrap: wrap; align-items: center; }
.page-hero__phone { color: rgba(255,255,255,0.6); font-size: 0.95rem; font-weight: 500; }

/* =========================================
   CONTENT LAYOUT (inner pages)
   ========================================= */
.content-layout {
  display: grid;
  grid-template-columns: 1fr 320px;
  gap: 72px; align-items: start;
}
.content-body h2 {
  font-family: var(--display);
  font-size: 1.7rem; font-weight: 700;
  color: var(--forest); margin: 44px 0 14px;
  letter-spacing: -0.01em;
}
.content-body h2:first-child { margin-top: 0; }
.content-body h3 {
  font-family: var(--display);
  font-size: 1.15rem; font-weight: 600;
  color: var(--forest); margin: 32px 0 10px;
}
.content-body p { font-size: 0.93rem; color: var(--ink-mid); margin-bottom: 16px; line-height: 1.75; }
.content-body ul { list-style: none; display: flex; flex-direction: column; gap: 9px; margin-bottom: 16px; }
.content-body ul li {
  font-size: 0.9rem; color: var(--ink-mid);
  padding-left: 18px; position: relative; line-height: 1.6;
}
.content-body ul li::before { content: '—'; position: absolute; left: 0; color: var(--amber); }
.content-body a { color: var(--amber); text-decoration: underline; text-underline-offset: 3px; }
.info-box {
  background: var(--cream-dark);
  border-left: 3px solid var(--amber);
  border-radius: 0 4px 4px 0;
  padding: 18px 22px; margin: 22px 0;
}
.info-box h4 { color: var(--forest); font-size: 0.92rem; font-weight: 600; margin-bottom: 5px; }
.info-box p { color: var(--ink-mid); font-size: 0.86rem; margin: 0; }
.content-img {
  border-radius: 4px; overflow: hidden; margin: 28px 0;
}
.content-img img { width: 100%; height: 260px; object-fit: cover; }
.content-img figcaption {
  padding: 10px 14px; font-size: 0.76rem;
  color: var(--ink-soft); background: var(--cream-dark);
}
.sidebar { display: flex; flex-direction: column; gap: 20px; position: sticky; top: 84px; }
.sidebar-widget {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 24px;
}
.sidebar-widget__title {
  font-family: var(--display);
  font-size: 0.95rem; font-weight: 600;
  color: var(--forest); margin-bottom: 14px;
  padding-bottom: 12px; border-bottom: 1px solid var(--border);
}
.sidebar-nav { list-style: none; }
.sidebar-nav li { border-bottom: 1px solid var(--border); }
.sidebar-nav li:last-child { border-bottom: none; }
.sidebar-nav a {
  display: flex; justify-content: space-between; align-items: center;
  padding: 10px 0; font-size: 0.86rem; color: var(--ink-mid);
  font-weight: 500; transition: color 0.15s;
}
.sidebar-nav a::after { content: '→'; color: var(--border); font-size: 0.85rem; transition: color 0.15s; }
.sidebar-nav a:hover, .sidebar-nav a.active { color: var(--amber); }
.sidebar-nav a:hover::after, .sidebar-nav a.active::after { color: var(--amber); }
.sidebar-cta {
  background: var(--forest);
  border-radius: 4px; padding: 24px;
}
.sidebar-cta h4 { color: var(--white); font-size: 1rem; margin-bottom: 6px; }
.sidebar-cta p { color: rgba(255,255,255,0.55); font-size: 0.83rem; margin-bottom: 16px; }
.sidebar-cta .phone { color: var(--amber); font-weight: 700; font-size: 0.95rem; display: block; margin-bottom: 12px; }
.price-rows { display: flex; flex-direction: column; }
.price-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 9px 0; border-bottom: 1px solid var(--border);
  font-size: 0.83rem;
}
.price-row:last-child { border-bottom: none; }
.price-row span { color: var(--ink-mid); }
.price-row strong { color: var(--amber); font-family: var(--display); font-size: 0.95rem; }
@media (max-width: 900px) {
  .content-layout { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* =========================================
   LOCATION PAGE
   ========================================= */
.location-hero-grid {
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 48px; align-items: center;
}
.loc-form-card {
  background: var(--white);
  border-radius: 4px;
  padding: 32px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.25);
}
.loc-form-card h3 { font-family: var(--display); font-size: 1.15rem; color: var(--forest); margin-bottom: 6px; }
.loc-form-card p { font-size: 0.84rem; color: var(--ink-soft); margin-bottom: 20px; }
.loc-services {
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 12px; margin-top: 28px;
}
.loc-service {
  display: flex; flex-direction: column;
  padding: 18px 20px;
  background: var(--cream-dark);
  border: 1px solid var(--border);
  border-radius: 4px; text-decoration: none;
  transition: all 0.18s;
}
.loc-service:hover { border-color: var(--amber); background: var(--white); }
.loc-service__icon { font-size: 1.3rem; margin-bottom: 10px; }
.loc-service h4 { font-family: var(--display); font-size: 0.95rem; font-weight: 600; color: var(--forest); margin-bottom: 4px; }
.loc-service p { font-size: 0.79rem; color: var(--ink-soft); line-height: 1.45; margin: 0; }
.loc-service__price { font-size: 0.76rem; font-weight: 700; color: var(--amber); margin-top: 8px; }
@media (max-width: 900px) {
  .location-hero-grid { grid-template-columns: 1fr; }
  .loc-form-card { display: none; }
  .loc-services { grid-template-columns: 1fr; }
}

/* =========================================
   CTA SECTION
   ========================================= */
.cta-section {
  background: var(--forest);
  position: relative; overflow: hidden;
  padding: 100px 0;
  text-align: center;
}
.cta-section::before {
  content: '';
  position: absolute;
  width: 700px; height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212,136,42,0.08) 0%, transparent 70%);
  top: -200px; left: 50%; transform: translateX(-50%);
}
.cta-section__inner { position: relative; z-index: 1; }
.cta-section h2 { color: var(--white); margin-bottom: 12px; }
.cta-section p { color: rgba(255,255,255,0.55); max-width: 480px; margin: 0 auto 36px; }
.cta-btns { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; align-items: center; }
.cta-phone-text { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.cta-phone-text a { color: rgba(255,255,255,0.8); font-weight: 600; }

/* =========================================
   REVIEWS ON INNER PAGES
   ========================================= */
.reviews-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px; margin-top: 48px;
}
.review-card {
  background: var(--cream-dark);
  padding: 32px; position: relative;
}
.review-card::before {
  content: '\201C';
  font-family: var(--display); font-size: 5rem; line-height: 0.8;
  color: var(--border); position: absolute; top: 20px; left: 24px;
}
.review-card blockquote {
  font-size: 0.9rem; color: var(--ink-mid);
  line-height: 1.7; font-style: italic;
  padding-top: 28px; margin-bottom: 20px; position: relative; z-index: 1;
}
.review-author strong { font-size: 0.85rem; color: var(--forest); font-weight: 600; display: block; }
.review-author span { font-size: 0.76rem; color: var(--ink-soft); }
@media (max-width: 768px) {
  .reviews-row { grid-template-columns: 1fr; }
}

/* =========================================
   CONTACT PAGE SPECIFIC
   ========================================= */
.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 460px;
  gap: 72px; align-items: start;
  margin-top: 56px;
}
.contact-page-info h2 { color: var(--forest); margin-bottom: 12px; }
.contact-page-details { display: flex; flex-direction: column; gap: 18px; margin-top: 28px; }
.cpd { display: flex; gap: 14px; align-items: flex-start; }
.cpd__icon { width: 38px; height: 38px; flex-shrink: 0; background: var(--cream-dark); border: 1px solid var(--border); border-radius: 4px; display: flex; align-items: center; justify-content: center; font-size: 0.95rem; }
.cpd__text strong { display: block; font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-soft); margin-bottom: 3px; }
.cpd__text span, .cpd__text a { font-size: 0.9rem; color: var(--ink); font-weight: 500; }
@media (max-width: 900px) {
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
}

/* =========================================
   FLOATING PHONE BUTTON (mobile)
   ========================================= */
.float-phone {
  display: none;
  position: fixed; bottom: 20px; right: 20px; z-index: 999;
  background: var(--amber); color: var(--white);
  width: 54px; height: 54px; border-radius: 50%;
  align-items: center; justify-content: center;
  font-size: 1.3rem; box-shadow: 0 4px 20px rgba(212,136,42,0.5);
  text-decoration: none;
  animation: pulse-phone 2s infinite;
}
@keyframes pulse-phone {
  0%, 100% { box-shadow: 0 4px 20px rgba(212,136,42,0.5); }
  50% { box-shadow: 0 4px 32px rgba(212,136,42,0.8); }
}
@media (max-width: 768px) {
  .float-phone { display: flex; }
}

.hero__tagline {
  font-family: var(--display);
  font-size: clamp(2.2rem, 4.5vw, 3.8rem);
  font-weight: 700; line-height: 1.1;
  color: var(--white); letter-spacing: -0.02em;
  margin-bottom: 28px; margin-top: 6px;
}
.hero__tagline em {
  font-style: italic; color: var(--amber-light);
  font-weight: 400;
}
.hero h1 {
  font-size: 1rem; font-weight: 500;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.06em; text-transform: uppercase;
  font-family: var(--body); margin-bottom: 4px;
}

/* =========================================
   RESPONSIVE — tablet (≤900px)
   ========================================= */
@media (max-width: 900px) {
  .nav__inner { height: 58px; }
  .hero__content { grid-template-columns: 1fr; }
  .hero__mini-card { display: none; }
  .hero { height: 80vh; }
  .hero__content { padding-bottom: 48px; }
  .services-header { grid-template-columns: 1fr; gap: 20px; }
  .services-header__right { align-items: flex-start; }
  .service-item { grid-template-columns: 48px 1fr; }
  .service-item__right { display: none; }
  .why-grid { grid-template-columns: 1fr; gap: 40px; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 1px; }
  .reviews-row { grid-template-columns: 1fr; gap: 1px; }
  .process-steps { grid-template-columns: repeat(2, 1fr); }
  .process-step:nth-child(2) { border-right: none; }
  .process-step:nth-child(n+3) { border-top: 1px solid var(--border); }
  .faq-layout { grid-template-columns: 1fr; gap: 32px; }
  .faq-sidebar-text { position: static; }
  .contact-layout { grid-template-columns: 1fr; gap: 40px; }
  .contact-page-grid { grid-template-columns: 1fr; gap: 40px; }
  .content-layout { grid-template-columns: 1fr; gap: 40px; }
  .sidebar { position: static; }
  .location-hero-grid { grid-template-columns: 1fr; }
  .loc-form-card { display: none; }
  .loc-services { grid-template-columns: 1fr 1fr; }
}

/* =========================================
   RESPONSIVE — mobile (≤768px)
   ========================================= */
@media (max-width: 768px) {
  .container { padding: 0 18px; }
  .section { padding: 52px 0; }

  /* Hero */
  .hero { height: 88vh; min-height: 520px; }
  .hero__content { padding: 0 18px 44px; }
  .hero h1 { font-size: 0.85rem; }
  .hero__tagline { font-size: 1.75rem; margin-bottom: 18px; }
  .hero__sub { font-size: 0.92rem; margin-bottom: 28px; }
  .hero__btns { flex-direction: column; gap: 10px; }
  .hero__btns .btn { width: 100%; text-align: center; justify-content: center; }

  /* Page hero */
  .page-hero { padding: 44px 0 36px; }
  .page-hero h1 { font-size: 1.75rem; }
  .page-hero__sub { font-size: 0.9rem; }
  .page-hero__actions { flex-direction: column; gap: 10px; align-items: flex-start; }

  /* Section titles */
  .section-title { font-size: 1.65rem; }

  /* Services */
  .service-item { grid-template-columns: 40px 1fr; gap: 0 14px; padding: 18px 0; }
  .service-item:hover { margin: 0; padding: 18px 0; background: none; }
  .service-item__title { font-size: 1rem; }

  /* Why */
  .why-image img { height: 240px; }
  .why-pull { font-size: 1.05rem; }

  /* Process */
  .process-step { padding: 22px 18px; }
  .process-step__num { font-size: 2.2rem; }

  /* Areas */
  .areas-grid { grid-template-columns: 1fr 1fr; }
  .area-item { padding: 12px 14px; }

  /* Photo break */
  .photo-break { height: 240px; }
  .photo-break__quote { font-size: 1.2rem; }

  /* Testimonials / reviews */
  .testimonial-card { padding: 28px 22px; }
  .review-card { padding: 24px 20px; }

  /* Contact card (form card) */
  .contact-card { padding: 24px 18px; }

  /* Content body */
  .content-body h2 { font-size: 1.4rem; margin: 32px 0 12px; }
  .content-body h3 { font-size: 1.05rem; }
  .info-box { padding: 14px 16px; }

  /* Price rows */
  .price-row { font-size: 0.8rem; }
  .price-row strong { font-size: 0.85rem; }

  /* Footer */
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer__bottom { flex-direction: column; text-align: center; gap: 6px; }

  /* Trust strip / intro band */
  .intro-band__inner { flex-wrap: wrap; }
  .intro-band__stat { flex: 0 0 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
}

/* =========================================
   RESPONSIVE — small mobile (≤480px)
   ========================================= */
@media (max-width: 480px) {
  .container { padding: 0 14px; }
  .hero__tagline { font-size: 1.5rem; }
  .section-title { font-size: 1.45rem; }
  .process-steps { grid-template-columns: 1fr; }
  .process-step { border-right: none; border-top: 1px solid var(--border); }
  .process-step:first-child { border-top: none; }
  .footer__grid { grid-template-columns: 1fr; }
  .cta-btns { flex-direction: column; align-items: center; }
  .cta-btns .btn { width: 100%; text-align: center; justify-content: center; }
  .page-hero__actions .btn { width: 100%; text-align: center; justify-content: center; }
  .loc-services { grid-template-columns: 1fr; }
}

/* Inline 2-col grids in HTML */
@media (max-width: 768px) {
  [style*="grid-template-columns: 1fr 1fr"],
  [style*="grid-template-columns:1fr 1fr"] { display: block !important; }
  [style*="grid-template-columns: 1fr 1fr"] > div,
  [style*="grid-template-columns:1fr 1fr"] > div { margin-bottom: 28px; }
  [style*="grid-template-columns: 1fr 1fr"] > div:last-child,
  [style*="grid-template-columns:1fr 1fr"] > div:last-child { margin-bottom: 0; }
}



/* =========================================
   GHL QUOTE FORM
   ========================================= */
.ghl-form { display: flex; flex-direction: column; gap: 14px; }
.ghl-form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; }
.ghl-form__field { display: flex; flex-direction: column; gap: 5px; }
.ghl-form__label {
  font-size: 0.78rem; font-weight: 600;
  color: var(--forest); letter-spacing: 0.02em;
}
.ghl-form__req { color: var(--amber); }
.ghl-form__input,
.ghl-form__select,
.ghl-form__textarea {
  border: 1.5px solid var(--border);
  border-radius: 4px;
  padding: 10px 14px;
  font-family: var(--body);
  font-size: 0.88rem;
  color: var(--ink);
  background: var(--white);
  transition: border-color 0.15s;
  width: 100%;
  box-sizing: border-box;
}
.ghl-form__input:focus,
.ghl-form__select:focus,
.ghl-form__textarea:focus {
  outline: none;
  border-color: var(--amber);
}
.ghl-form__input.ghl-invalid,
.ghl-form__select.ghl-invalid { border-color: #c0392b; }
.ghl-form__select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7A7A' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 14px center;
  padding-right: 36px;
  cursor: pointer;
}
.ghl-form__textarea { resize: vertical; min-height: 90px; }
.ghl-form__check {
  display: flex; align-items: flex-start; gap: 10px; cursor: pointer;
}
.ghl-form__check input {
  margin-top: 2px; accent-color: var(--amber);
  width: 16px; height: 16px; flex-shrink: 0; cursor: pointer;
}
.ghl-form__check span { font-size: 0.82rem; color: var(--ink-mid); line-height: 1.5; }
.ghl-form__submit { width: 100%; justify-content: center; margin-top: 4px; }
.ghl-form__submit:disabled { opacity: 0.65; cursor: not-allowed; transform: none !important; }
.ghl-form__feedback {
  border-radius: 4px; padding: 13px 16px;
  font-size: 0.88rem; line-height: 1.55; margin-top: 2px;
}
.ghl-form__success { background: #f0faf0; border: 1px solid #a8d5a8; color: #2a6a2a; }
.ghl-form__error   { background: #faf0f0; border: 1px solid #d5a8a8; color: #6a2a2a; }
.ghl-form__error a { color: var(--amber); font-weight: 600; text-decoration: underline; }
@media (max-width: 768px) {
  .ghl-form__row { grid-template-columns: 1fr; }
}

/* Price estimate disclaimer */
.price-disclaimer {
  font-size: 0.75rem; color: var(--ink-soft);
  margin-top: 8px; font-style: italic; line-height: 1.5;
}

