@import url("https://fonts.googleapis.com/css2?family=Barlow+Condensed:wght@500;600;700;800&family=Inter:wght@400;500;600;700&display=swap");

:root {
  --ink: #0b1115;
  --ink-2: #111a20;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --gold: #d5a63b;
  --gold-bright: #f1bd45;
  --green: #3f9159;
  --green-dark: #245d38;
  --muted: #69737a;
  --line: rgba(11, 17, 21, .14);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--paper); color: var(--ink); font-family: "Inter", Arial, sans-serif; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
:focus-visible { outline: 3px solid var(--green); outline-offset: 4px; }
::selection { background: var(--green); color: white; }
section[id] { scroll-margin-top: 104px; }

.announcement {
  min-height: 38px; padding: 9px clamp(20px, 5vw, 72px); display: flex; justify-content: space-between;
  background: var(--gold); color: var(--ink); font-size: 12px; font-weight: 700; letter-spacing: .08em; text-transform: uppercase;
}
.announcement a { border-bottom: 1px solid currentColor; }

.site-header {
  height: 88px; padding: 0 clamp(20px, 5vw, 72px); display: flex; align-items: center; justify-content: space-between;
  background: var(--ink); color: white; border-bottom: 1px solid rgba(255,255,255,.1); position: relative; z-index: 5;
}
.brand { display: inline-flex; align-items: center; gap: 12px; }
.brand-mark {
  width: 52px; height: 52px; display: grid; place-items: center; background: var(--gold); color: var(--ink);
  font-family: "Barlow Condensed", sans-serif; font-size: 22px; font-weight: 800; letter-spacing: -.02em;
  clip-path: polygon(10% 0, 100% 0, 90% 100%, 0 100%);
}
.brand-copy { display: flex; flex-direction: column; }
.brand-copy strong { font-family: "Barlow Condensed", sans-serif; font-size: 20px; line-height: 1; font-weight: 800; text-transform: uppercase; letter-spacing: .035em; white-space: nowrap; }
.brand-copy small { margin-top: 5px; color: #a9b2b7; font-size: 9px; letter-spacing: .12em; text-transform: uppercase; }
nav { display: flex; align-items: center; gap: 30px; }
nav a {
  position: relative; padding: 9px 0; color: #f1f4f5;
  font-family: "Barlow Condensed", Impact, sans-serif; font-size: 18px; font-weight: 700;
  letter-spacing: .11em; line-height: 1; text-transform: uppercase; transition: color .2s ease;
}
nav a::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--gold-bright); transition: right .25s ease;
}
nav a:hover, nav a:focus-visible { color: var(--gold-bright); }
nav a:hover::after, nav a:focus-visible::after { right: 0; }

.button {
  min-height: 54px; padding: 0 25px; display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-bright); color: var(--ink); border: 1px solid var(--gold-bright); font-weight: 800;
  text-transform: uppercase; letter-spacing: .05em; font-size: 13px; transition: transform .2s, background .2s;
  position: relative; overflow: hidden; isolation: isolate;
}
.button::after {
  content: ""; position: absolute; inset: -2px; z-index: 0; pointer-events: none;
  background: linear-gradient(105deg, transparent 25%, rgba(255,255,255,.5) 48%, transparent 70%);
  transform: translateX(-130%); transition: transform .55s ease;
}
.button:hover::after { transform: translateX(130%); }
.button:hover { transform: translateY(-2px); background: #ffd26a; }
.button-small { min-height: 43px; padding: 0 19px; font-size: 12px; }

.hero { background: var(--ink); color: white; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; width: 680px; height: 680px; right: -260px; top: -280px;
  border: 1px solid rgba(63,145,89,.22); border-radius: 50%; box-shadow: 0 0 0 80px rgba(63,145,89,.045);
}
.hero-grid {
  max-width: 1420px; min-height: 680px; margin: 0 auto; padding: 74px clamp(20px, 5vw, 72px) 82px;
  display: grid; grid-template-columns: 1.02fr .98fr; align-items: center; gap: clamp(45px, 8vw, 120px);
}
.eyebrow { margin: 0 0 18px; color: var(--gold); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.eyebrow::before { content: ""; display: inline-block; width: 28px; height: 2px; margin: 0 10px 3px 0; background: currentColor; }
h1, h2, h3 { font-family: "Barlow Condensed", Impact, sans-serif; margin-top: 0; text-transform: uppercase; }
h1 { margin-bottom: 22px; font-size: clamp(64px, 8vw, 112px); line-height: .83; letter-spacing: -.035em; }
h1 span { display: block; color: var(--gold-bright); }
.hero-lead { max-width: 630px; color: #c3ccd0; font-size: clamp(17px, 1.7vw, 20px); line-height: 1.75; }
.hero-actions { margin-top: 34px; display: flex; align-items: center; gap: 30px; }
.text-link { display: inline-flex; gap: 10px; align-items: center; color: white; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .06em; border-bottom: 1px solid rgba(255,255,255,.35); padding-bottom: 5px; }
.trust-row { margin-top: 40px; display: flex; gap: 24px; color: #b9c3c8; font-size: 13px; }
.trust-row b { color: var(--green); }
.hero-visual {
  position: relative; max-width: 610px; justify-self: end;
}
.hero-visual img { width: 100%; height: 500px; object-fit: cover; object-position: center 35%; filter: saturate(.85) contrast(1.03); position: relative; z-index: 2; }
.hero-visual::after { content: ""; position: absolute; inset: 0; z-index: 3; background: linear-gradient(180deg, transparent 55%, rgba(11,17,21,.55)); pointer-events: none; }
.photo-frame { position: absolute; inset: 24px -24px -24px 24px; border: 2px solid var(--gold); z-index: 1; }
.hero-badge {
  position: absolute; z-index: 4; left: -58px; bottom: 32px; padding: 18px 23px 18px 16px;
  display: flex; align-items: center; gap: 13px; background: var(--paper); color: var(--ink); box-shadow: 0 18px 40px rgba(0,0,0,.25);
}
.badge-icon {
  width: 52px; height: 52px; display: grid; place-items: center; flex: 0 0 auto; background: var(--green); color: white;
  border-radius: 50%; font-family: "Barlow Condensed"; font-size: 18px; font-weight: 800;
}
.hero-badge p { margin: 0; font-size: 12px; line-height: 1.45; }
.hero-badge strong { text-transform: uppercase; }
.water-line {
  height: 5px; background: linear-gradient(90deg, var(--gold) 0 30%, var(--green) 42% 66%, var(--green-dark) 78%);
}

.section { padding: 100px clamp(20px, 6vw, 90px); }
.section-heading { max-width: 1280px; margin: 0 auto 52px; display: grid; grid-template-columns: 1.2fr .8fr; align-items: end; gap: 60px; }
.section-heading h2, .about h2, .process h2, .cta h2 { margin-bottom: 0; font-size: clamp(48px, 6vw, 78px); line-height: .9; letter-spacing: -.02em; }
.section-heading > p { max-width: 520px; margin: 0 0 6px; color: #4d585e; font-size: 16px; line-height: 1.75; }

.service-intro { background: var(--cream); }
.service-grid { max-width: 1280px; margin: auto; display: grid; grid-template-columns: repeat(4, 1fr); border: 1px solid var(--line); }
.service-card { min-height: 465px; padding: 30px; background: var(--paper); border-right: 1px solid var(--line); position: relative; overflow: hidden; transition: transform .25s ease, background .25s ease, box-shadow .25s ease; }
.service-card:last-child { border-right: 0; }
.service-card:hover { background: white; transform: translateY(-8px); box-shadow: 0 18px 45px rgba(11,17,21,.08); z-index: 2; }
.service-icon {
  width: 100%; height: clamp(155px, 12vw, 180px); margin: 0 0 25px;
  display: block; border: 1px solid var(--line); border-bottom: 3px solid var(--gold); border-radius: 0;
  object-fit: cover; object-position: center; box-shadow: 0 8px 22px rgba(11,17,21,.06);
}
.service-card h3 { margin-bottom: 14px; font-size: 31px; letter-spacing: .01em; }
.service-card p { color: #4d585e; font-size: 15px; line-height: 1.72; }
.service-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 23px; }
.service-tags span { padding: 8px 10px; background: #e9efe9; color: #314d3a; font-size: 11px; font-weight: 800; text-transform: uppercase; }

.about { max-width: 1420px; margin: auto; display: grid; grid-template-columns: 1fr 1fr; gap: clamp(50px, 8vw, 120px); align-items: center; }
.about-photo { position: relative; }
.about-photo img { width: 100%; height: 610px; object-fit: cover; background: #dce1e3; }
.about-photo > span { position: absolute; right: -22px; bottom: -22px; padding: 22px 28px; background: var(--gold); font-family: "Barlow Condensed"; font-size: 24px; font-weight: 800; line-height: 1; text-transform: uppercase; }
.about-copy > p:not(.eyebrow) { color: var(--muted); line-height: 1.8; }
.about-copy ul { list-style: none; padding: 0; margin: 34px 0; border-top: 1px solid var(--line); }
.about-copy li { padding: 18px 0; display: flex; gap: 22px; border-bottom: 1px solid var(--line); }
.about-copy li > span { color: var(--gold); font-family: "Barlow Condensed"; font-weight: 800; }
.about-copy li div { display: flex; flex-direction: column; gap: 5px; }
.about-copy li strong { font-family: "Barlow Condensed"; font-size: 20px; text-transform: uppercase; }
.about-copy li small { color: var(--muted); }
.text-link.dark { color: var(--ink); border-color: var(--line); }
.about-button { margin-top: 2px; background: var(--ink); border-color: var(--ink); color: white; gap: 14px; }
.about-button span { color: var(--green); font-size: 18px; line-height: 1; }
.about-button:hover { background: var(--green-dark); border-color: var(--green-dark); color: white; }

.work { background: var(--ink-2); color: white; }
.work .section-heading > p { color: #aeb8bd; }
.gallery { max-width: 1280px; margin: auto; display: grid; grid-template-columns: 1.35fr .65fr; grid-template-rows: 260px 260px; gap: 16px; }
.gallery figure {
  margin: 0; position: relative; overflow: hidden; background: #1d3025;
  border: 1px solid rgba(223, 171, 50, .62);
  box-shadow: 0 10px 28px rgba(0, 0, 0, .16);
}
.gallery-feature { grid-row: 1 / 3; }
.gallery img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s; }
.gallery figure:hover img { transform: scale(1.035); }
.gallery figcaption { position: absolute; left: 0; right: 0; bottom: 0; padding: 35px 22px 18px; background: linear-gradient(transparent, rgba(0,0,0,.78)); font-family: "Barlow Condensed"; font-size: 21px; font-weight: 700; text-transform: uppercase; }
.gallery figcaption span { margin-right: 12px; color: var(--gold-bright); font-size: 12px; }

.reviews { background: var(--cream); }
.reviews-heading { align-items: center; }
.rating-summary {
  width: fit-content; justify-self: end; padding: 24px 30px; display: flex; align-items: center; gap: 22px;
  background: var(--ink); color: white; border-left: 5px solid var(--green);
  box-shadow: 0 18px 42px rgba(11,17,21,.12);
}
.rating-summary > strong {
  font-family: "Barlow Condensed"; font-size: 58px; line-height: .85;
}
.rating-summary div { display: flex; flex-direction: column; gap: 6px; }
.rating-summary p { margin: 0; color: #c4ced2; font-size: 12px; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; }
.rating-stars, .review-stars { color: var(--gold-bright); letter-spacing: .1em; }
.review-carousel {
  max-width: 1100px; margin: 0 auto; padding: 42px 48px 30px; background: var(--paper);
  border: 1px solid var(--line); box-shadow: 0 24px 65px rgba(11,17,21,.09); position: relative;
}
.review-carousel::before {
  content: "“"; position: absolute; top: 8px; right: 35px; color: rgba(63,145,89,.12);
  font-family: Georgia, serif; font-size: 150px; line-height: 1;
}
.review-track { min-height: 280px; position: relative; z-index: 1; }
.review-slide { animation: review-in .35s ease; }
.review-slide[hidden] { display: none; }
.review-slide .review-stars { margin-bottom: 24px; font-size: 18px; }
.review-slide blockquote {
  max-width: 900px; margin: 0; color: var(--ink); font-family: "Barlow Condensed", Impact, sans-serif;
  font-size: clamp(30px, 3.4vw, 45px); font-weight: 600; line-height: 1.16; letter-spacing: -.015em;
}
.review-slide footer {
  margin-top: 30px; padding: 0; display: flex; align-items: baseline; gap: 12px;
  background: transparent; color: inherit; font-size: inherit;
}
.review-slide footer strong { font-size: 14px; text-transform: uppercase; letter-spacing: .08em; }
.review-slide footer span { color: var(--muted); font-size: 12px; }
.review-controls { margin-top: 16px; display: flex; align-items: center; justify-content: center; gap: 20px; }
.review-arrow {
  width: 46px; height: 46px; display: grid; place-items: center; border: 1px solid var(--line);
  background: var(--ink); color: white; font-size: 21px; cursor: pointer; transition: transform .2s, background .2s;
}
.review-arrow:hover { transform: translateY(-2px); background: var(--green-dark); }
.review-dots { display: flex; align-items: center; gap: 9px; }
.review-dots button {
  width: 9px; height: 9px; padding: 0; border: 0; border-radius: 50%; background: #b6beb9;
  cursor: pointer; transition: width .2s, border-radius .2s, background .2s;
}
.review-dots button.is-active { width: 27px; border-radius: 9px; background: var(--green); }
.google-review-link {
  width: fit-content; margin: 25px auto 0; display: flex; align-items: center; gap: 9px;
  color: var(--green-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; letter-spacing: .08em;
  border-bottom: 1px solid currentColor; padding-bottom: 4px;
}
@keyframes review-in {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.motion-ready .motion-item {
  opacity: 0;
  transform: translate3d(0, 20px, 0);
  backface-visibility: hidden;
  transition:
    opacity .48s ease-out,
    transform .48s cubic-bezier(.22, .61, .36, 1),
    background-color .25s ease,
    box-shadow .25s ease;
  transition-delay: var(--motion-delay, 0ms);
}
.motion-ready .motion-item.is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-ready .service-card.motion-item.is-visible:hover { transform: translate3d(0, -8px, 0); }

.motion-ready .hero-copy.motion-item {
  opacity: 1;
  transform: none;
  transition: none;
}
.motion-ready .hero-copy.motion-item > * {
  opacity: 0;
  transform: translate3d(0, 18px, 0);
  transition:
    opacity .58s ease-out,
    transform .62s cubic-bezier(.22, .61, .36, 1);
}
.motion-ready .hero-copy.motion-item.is-visible > * {
  opacity: 1;
  transform: translate3d(0, 0, 0);
}
.motion-ready .hero-copy.motion-item > :nth-child(1) { transition-delay: 40ms; }
.motion-ready .hero-copy.motion-item > :nth-child(2) { transition-delay: 110ms; }
.motion-ready .hero-copy.motion-item > :nth-child(3) { transition-delay: 180ms; }
.motion-ready .hero-copy.motion-item > :nth-child(4) { transition-delay: 250ms; }
.motion-ready .hero-copy.motion-item > :nth-child(5) { transition-delay: 320ms; }
.motion-ready .hero-visual.motion-item {
  transform: translate3d(30px, 0, 0) scale(.985);
  transition:
    opacity .72s ease-out,
    transform .78s cubic-bezier(.22, .61, .36, 1);
  transition-delay: 160ms;
}
.motion-ready .hero-visual.motion-item.is-visible {
  transform: translate3d(0, 0, 0) scale(1);
}

.process { text-align: center; background: var(--paper); }
.process h2 { margin-bottom: 55px; }
.process-grid { max-width: 1100px; margin: auto; display: grid; grid-template-columns: repeat(3, 1fr); }
.process article { padding: 20px 55px; border-right: 1px solid var(--line); }
.process article:last-child { border: 0; }
.process article > span { width: 58px; height: 58px; margin: 0 auto 22px; display: grid; place-items: center; background: var(--green-dark); color: white; border: 3px solid #dbe8df; border-radius: 50%; font-family: "Barlow Condensed"; font-size: 21px; font-weight: 800; box-shadow: 0 8px 20px rgba(36,93,56,.16); }
.process h3 { font-size: 25px; margin-bottom: 8px; }
.process article p { margin: 0; color: var(--muted); font-size: 13px; line-height: 1.7; }

.cta {
  padding: 78px clamp(20px, 7vw, 110px); display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px;
  background: var(--gold); color: var(--ink); position: relative; overflow: hidden;
}
.cta::after { content: "RWC"; position: absolute; right: -30px; bottom: -85px; font-family: "Barlow Condensed"; font-size: 250px; font-weight: 800; color: rgba(255,255,255,.12); }
.cta .eyebrow { color: var(--ink); }
.cta > div > p:last-child { margin-bottom: 0; }
.cta-phone { min-width: 390px; padding: 25px 28px; display: grid; grid-template-columns: 1fr auto; background: var(--ink); color: white; font-family: "Barlow Condensed"; font-size: 32px; font-weight: 800; position: relative; z-index: 1; }
.cta-phone small { grid-column: 1 / 3; margin-bottom: 4px; color: var(--gold); font-family: "Inter"; font-size: 10px; letter-spacing: .12em; text-transform: uppercase; }
.cta-phone span { color: var(--gold); }

footer { padding: 38px clamp(20px, 5vw, 72px); display: grid; grid-template-columns: 1fr auto auto; align-items: center; gap: 45px; background: var(--ink); color: #9fa9ae; font-size: 11px; }
.footer-brand { color: white; }
.footer-brand .brand-mark { width: 43px; height: 43px; font-size: 18px; }
.footer-email { color: #d9e4dc; font-size: 12px; font-weight: 700; letter-spacing: .03em; border-bottom: 1px solid rgba(217,228,220,.35); }
.footer-email:hover { color: var(--gold-bright); border-color: currentColor; }
.mobile-call { display: none; }

@media (max-width: 980px) {
  nav { display: none; }
  .hero-grid { grid-template-columns: 1fr; padding-top: 60px; }
  .hero-visual { max-width: 720px; justify-self: stretch; margin: 0 25px 20px 55px; }
  .service-grid { grid-template-columns: repeat(2, 1fr); }
  .service-card { border-bottom: 1px solid var(--line); }
  .about { grid-template-columns: 1fr; }
  .about-photo img { height: 500px; }
  .rating-summary { justify-self: start; }
  .cta { grid-template-columns: 1fr; }
  .cta-phone { min-width: 0; max-width: 450px; }
  footer { grid-template-columns: 1fr; gap: 15px; }
}

@media (max-width: 640px) {
  body { padding-bottom: 56px; }
  .announcement { justify-content: center; }
  .announcement span { display: none; }
  .site-header { height: 75px; }
  .site-header > .button { display: none; }
  .brand-mark { width: 45px; height: 45px; font-size: 19px; }
  .brand-copy strong { font-size: 19px; }
  h1 { font-size: 62px; }
  .hero-grid { min-height: 0; padding: 54px 20px 70px; }
  .hero-actions { align-items: stretch; flex-direction: column; gap: 20px; }
  .hero-actions .text-link { align-self: flex-start; }
  .trust-row { flex-wrap: wrap; gap: 12px 18px; }
  .hero-visual { margin: 8px 13px 0 0; }
  .hero-visual img { height: 380px; }
  .photo-frame { inset: 13px -13px -13px 13px; }
  .hero-badge { left: 14px; bottom: -34px; }
  .section { padding: 78px 20px; }
  .section-heading { grid-template-columns: 1fr; gap: 28px; }
  .section-heading h2, .about h2, .process h2, .cta h2 { font-size: 50px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 0; border-right: 0; padding: 26px; }
  .service-icon { width: 100%; height: 190px; margin: 0 0 22px; }
  .about-photo img { height: 390px; }
  .about-photo > span { right: 0; }
  .gallery { grid-template-columns: 1fr; grid-template-rows: repeat(3, 300px); }
  .gallery-feature { grid-row: auto; }
  .review-carousel { padding: 34px 24px 26px; }
  .review-carousel::before { right: 16px; font-size: 110px; }
  .review-track { min-height: 330px; }
  .review-slide blockquote { font-size: 30px; }
  .review-slide footer { align-items: flex-start; flex-direction: column; gap: 5px; }
  .rating-summary { padding: 20px 22px; }
  .rating-summary > strong { font-size: 50px; }
  .process-grid { grid-template-columns: 1fr; }
  .process article { border-right: 0; border-bottom: 1px solid var(--line); padding: 28px 30px; }
  .cta { padding: 68px 20px; }
  .cta-phone { font-size: 26px; padding: 22px; }
  footer { padding: 35px 20px; }
  .mobile-call {
    position: fixed; z-index: 20; left: 0; right: 0; bottom: 0; height: 56px; display: grid; place-items: center;
    background: var(--gold-bright); color: var(--ink); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .05em;
  }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation: none !important; transition: none !important; }
  .motion-ready .motion-item { opacity: 1 !important; transform: none !important; }
  .motion-ready .hero-copy.motion-item > * { opacity: 1 !important; transform: none !important; }
}
