:root {
  --background: #090909;
  --surface: #111311;
  --card: #141414;
  --card-soft: #181918;
  --green: #2e7d32;
  --green-bright: #48a64d;
  --green-deep: #143b17;
  --gold: #c9a227;
  --gold-soft: #e0c86b;
  --text: #ffffff;
  --muted: #b5b5b5;
  --muted-dark: #828482;
  --border: rgba(255, 255, 255, 0.08);
  --border-strong: rgba(255, 255, 255, 0.14);
  --shell: min(1180px, calc(100% - 40px));
  --radius-lg: 28px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 105px;
  background: var(--background);
}

section[id] {
  scroll-margin-top: 105px;
}

body {
  margin: 0;
  overflow-x: hidden;
  background:
    radial-gradient(circle at 85% 18%, rgba(46, 125, 50, 0.08), transparent 28rem),
    var(--background);
  color: var(--text);
  font-family: "Manrope", Arial, Helvetica, sans-serif;
  text-rendering: optimizeLegibility;
}

button,
input,
select,
textarea {
  font-family: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

::selection {
  background: var(--gold);
  color: #0b0b0b;
}

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.section {
  position: relative;
  padding: 132px 0;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 0 0 22px;
  color: var(--green-bright);
  font-size: 0.7rem;
  font-weight: 760;
  letter-spacing: 0.19em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow > span {
  width: 28px;
  height: 1px;
  background: currentColor;
}

.eyebrow-light {
  color: rgba(255, 255, 255, 0.76);
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.035em;
}

h2 {
  margin-bottom: 0;
  font-size: clamp(2.35rem, 5.1vw, 4.65rem);
  font-weight: 570;
  line-height: 0.99;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid var(--green);
  border-radius: 999px;
  background: var(--green);
  color: #fff;
  cursor: pointer;
  font-size: 0.83rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  transition:
    transform 180ms ease,
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  border-color: var(--green-bright);
  background: var(--green-bright);
  box-shadow: 0 13px 35px rgba(46, 125, 50, 0.22);
}

.button svg {
  width: 18px;
  height: 18px;
}

.button-small {
  min-height: 42px;
  padding: 0 19px;
  font-size: 0.76rem;
}

.button-large {
  min-height: 60px;
  padding: 0 27px;
  font-size: 0.88rem;
}

.button-ghost {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(14px);
}

.button-ghost:hover {
  border-color: rgba(255, 255, 255, 0.42);
  background: rgba(255, 255, 255, 0.13);
  box-shadow: none;
}

.button-gold {
  border-color: var(--gold);
  background: var(--gold);
  color: #0a0a0a;
}

.button-gold:hover {
  border-color: var(--gold-soft);
  background: var(--gold-soft);
  box-shadow: 0 16px 40px rgba(201, 162, 39, 0.22);
}

/* Navigation */

.site-header {
  position: fixed;
  z-index: 50;
  top: 0;
  right: 0;
  left: 0;
  border-bottom: 1px solid transparent;
  transition:
    background 250ms ease,
    border-color 250ms ease,
    backdrop-filter 250ms ease;
}

.site-header-solid {
  border-bottom-color: var(--border);
  background: rgba(9, 9, 9, 0.86);
  backdrop-filter: blur(18px);
}

.nav-shell {
  width: min(1320px, calc(100% - 40px));
  min-height: 84px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.brand {
  display: inline-flex;
  flex-shrink: 0;
  align-items: center;
  gap: 11px;
}

.brand-mark {
  width: 39px;
  height: 39px;
  display: inline-grid;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, 0.36);
  border-radius: 50%;
  background:
    linear-gradient(145deg, rgba(201, 162, 39, 0.19), rgba(46, 125, 50, 0.12)),
    rgba(10, 10, 10, 0.72);
  color: var(--gold-soft);
  box-shadow: inset 0 0 0 4px rgba(255, 255, 255, 0.025);
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  font-size: 1.02rem;
  font-weight: 760;
  letter-spacing: 0.19em;
  line-height: 1;
}

.brand small {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.5rem;
  font-weight: 650;
  letter-spacing: 0.21em;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: clamp(17px, 2vw, 29px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.74rem;
  font-weight: 560;
  transition: color 180ms ease;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: var(--green-bright);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

.desktop-nav a:hover {
  color: #fff;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.nav-actions {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  gap: 15px;
}

.nav-phone {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 0.74rem;
  font-weight: 600;
}

.nav-phone svg {
  color: var(--green-bright);
}

.menu-button {
  width: 43px;
  height: 43px;
  display: none;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  cursor: pointer;
}

.mobile-menu {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 27px 24px 35px;
  background:
    radial-gradient(circle at 90% 5%, rgba(46, 125, 50, 0.24), transparent 22rem),
    #090909;
}

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.mobile-menu-top > button {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
}

.mobile-menu nav {
  display: grid;
}

.mobile-menu nav a {
  display: grid;
  grid-template-columns: 37px 1fr auto;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
  font-size: clamp(1.7rem, 8vw, 2.8rem);
  font-weight: 540;
  letter-spacing: -0.04em;
}

.mobile-menu nav a span {
  color: var(--gold);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.mobile-menu nav a svg {
  width: 20px;
  color: var(--muted-dark);
}

.mobile-menu > .button {
  width: 100%;
}

/* Hero */

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 160px 0 76px;
  background: #070807;
}

.hero-image,
.hero-scrim,
.hero-glow {
  position: absolute;
  inset: 0;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 60% center;
  transform: scale(1.012);
  animation: hero-scale 16s ease-out both;
}

@keyframes hero-scale {
  from { transform: scale(1.08); }
  to { transform: scale(1.012); }
}

.hero-scrim {
  background:
    linear-gradient(90deg, rgba(5, 6, 5, 0.97) 0%, rgba(5, 6, 5, 0.75) 42%, rgba(5, 6, 5, 0.2) 72%, rgba(5, 6, 5, 0.38) 100%),
    linear-gradient(0deg, rgba(9, 9, 9, 0.95) 0%, transparent 40%, rgba(0, 0, 0, 0.2) 100%);
}

.hero-glow {
  background: radial-gradient(circle at 30% 70%, rgba(46, 125, 50, 0.15), transparent 32rem);
}

.hero-content {
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  margin-bottom: 28px;
  color: rgba(255, 255, 255, 0.69);
}

.hero-eyebrow span {
  background: var(--gold);
}

.hero h1 {
  max-width: 940px;
  margin-bottom: 28px;
  font-size: clamp(3.75rem, 7.4vw, 7.6rem);
  font-weight: 520;
  line-height: 0.87;
  text-wrap: balance;
}

.hero h1 em {
  color: var(--gold-soft);
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  letter-spacing: -0.055em;
}

.hero-copy {
  max-width: 690px;
  margin-bottom: 34px;
  color: rgba(255, 255, 255, 0.67);
  font-size: clamp(1rem, 1.5vw, 1.17rem);
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: 26px;
  margin-top: 43px;
}

.hero-trust span {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.75rem;
  font-weight: 570;
}

.hero-trust svg,
.hero-trust .dashicons {
  width: 17px;
  height: 17px;
  padding: 3px;
  border-radius: 50%;
  background: rgba(72, 166, 77, 0.15);
  color: #76ca79;
  font-size: 17px;
  line-height: 17px;
}

.hero-side-note {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 56px;
  display: flex;
  align-items: center;
  gap: 17px;
  transform: rotate(90deg);
  transform-origin: right bottom;
}

.hero-side-note span {
  color: rgba(255, 255, 255, 0.44);
  font-size: 0.56rem;
  font-weight: 650;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-side-note i {
  width: 65px;
  height: 1px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.17);
}

.hero-side-note i::after {
  width: 50%;
  height: 100%;
  display: block;
  background: var(--gold);
  content: "";
  animation: scroll-line 2.2s ease-in-out infinite;
}

@keyframes scroll-line {
  0% { transform: translateX(-100%); }
  100% { transform: translateX(220%); }
}

/* Trust */

.trust-strip {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background: #0e0f0e;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.trust-stat {
  min-height: 148px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px 9%;
  border-right: 1px solid var(--border);
}

.trust-stat:first-child {
  padding-left: 0;
}

.trust-stat:last-child {
  border-right: 0;
}

.trust-stat strong {
  margin-bottom: 9px;
  color: #fff;
  font-size: clamp(1.65rem, 3vw, 2.65rem);
  font-weight: 590;
  letter-spacing: -0.045em;
}

.trust-stat:first-child strong,
.trust-stat:last-child strong {
  color: var(--gold-soft);
}

.trust-stat span {
  color: var(--muted-dark);
  font-size: 0.65rem;
  font-weight: 650;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* Services */

.services-section {
  background:
    linear-gradient(180deg, #0b0c0b 0%, #090909 100%);
}

.section-intro-row,
.gallery-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.55fr) minmax(240px, 0.65fr);
  align-items: end;
  gap: 80px;
  margin-bottom: 66px;
}

.section-intro-row > p,
.gallery-heading > p {
  max-width: 430px;
  margin-bottom: 4px;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.7;
}

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

.service-card {
  position: relative;
  min-height: 330px;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  padding: 28px;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  background:
    linear-gradient(155deg, rgba(255, 255, 255, 0.025), transparent 55%),
    var(--card);
  transition:
    transform 240ms ease,
    border-color 240ms ease,
    background 240ms ease;
}

.service-card::before {
  position: absolute;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: rgba(46, 125, 50, 0.18);
  content: "";
  filter: blur(70px);
  opacity: 0;
  right: -70px;
  top: -70px;
  transition: opacity 240ms ease;
}

.service-card:hover {
  z-index: 2;
  transform: translateY(-7px);
  border-color: rgba(72, 166, 77, 0.36);
  background-color: #171a17;
}

.service-card:hover::before {
  opacity: 1;
}

.service-card-featured {
  border-color: rgba(201, 162, 39, 0.28);
  background:
    linear-gradient(150deg, rgba(201, 162, 39, 0.09), transparent 55%),
    #161511;
}

.service-card-top {
  position: relative;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 44px;
}

.service-icon {
  width: 49px;
  height: 49px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(72, 166, 77, 0.25);
  border-radius: 15px;
  background: rgba(46, 125, 50, 0.1);
  color: #67bd6c;
}

.service-card-featured .service-icon {
  border-color: rgba(201, 162, 39, 0.28);
  background: rgba(201, 162, 39, 0.09);
  color: var(--gold-soft);
}

.service-icon svg {
  width: 23px;
}

.service-number {
  color: #555855;
  font-size: 0.62rem;
  font-weight: 650;
  letter-spacing: 0.14em;
}

.service-card h3 {
  margin-bottom: 13px;
  font-size: 1.18rem;
  font-weight: 590;
}

.service-card p {
  color: #909290;
  font-size: 0.79rem;
  line-height: 1.65;
}

.service-card > a {
  position: relative;
  display: flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: #d7d7d7;
  font-size: 0.7rem;
  font-weight: 650;
  transition: color 180ms ease;
}

.service-card > a:hover {
  color: var(--green-bright);
}

/* About */

.about-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 0 50%, rgba(46, 125, 50, 0.12), transparent 26rem),
    #0c0d0c;
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(340px, 0.9fr) minmax(0, 1.1fr);
  align-items: center;
  gap: clamp(60px, 8vw, 110px);
}

.about-visual {
  position: relative;
  min-height: 710px;
  overflow: visible;
}

.about-visual > img {
  width: 100%;
  height: 680px;
  object-fit: cover;
  border-radius: var(--radius-lg);
  filter: saturate(0.88) contrast(1.05);
}

.about-visual::before {
  position: absolute;
  z-index: -1;
  width: 86%;
  height: 90%;
  border: 1px solid rgba(201, 162, 39, 0.22);
  border-radius: var(--radius-lg);
  content: "";
  left: -18px;
  top: -18px;
}

.about-visual-card {
  position: absolute;
  right: -34px;
  bottom: 50px;
  min-width: 245px;
  display: flex;
  align-items: center;
  gap: 15px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 17px;
  background: rgba(17, 19, 17, 0.78);
  box-shadow: 0 25px 70px rgba(0, 0, 0, 0.35);
  backdrop-filter: blur(18px);
}

.about-visual-card > svg {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(46, 125, 50, 0.15);
  color: #70c675;
}

.about-visual-card strong,
.about-visual-card span {
  display: block;
}

.about-visual-card strong {
  margin-bottom: 5px;
  font-size: 0.82rem;
}

.about-visual-card span {
  color: var(--muted-dark);
  font-size: 0.68rem;
}

.about-years {
  position: absolute;
  top: 55px;
  left: -23px;
  min-width: 134px;
  padding: 20px;
  border-left: 2px solid var(--gold);
  background: rgba(8, 8, 8, 0.78);
  backdrop-filter: blur(15px);
}

.about-years strong,
.about-years span {
  display: block;
}

.about-years strong {
  margin-bottom: 5px;
  color: var(--gold-soft);
  font-size: 1.35rem;
  font-weight: 600;
}

.about-years span {
  color: var(--muted-dark);
  font-size: 0.6rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.about-content h2 {
  max-width: 720px;
  font-size: clamp(2.4rem, 4.4vw, 4.3rem);
}

.section-copy {
  max-width: 650px;
  margin: 30px 0 47px;
  color: var(--muted);
  font-size: 0.93rem;
  line-height: 1.75;
}

.reasons-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border);
}

.reason {
  min-height: 127px;
  display: flex;
  gap: 15px;
  padding: 24px 24px 20px 0;
  background: #0c0d0c;
}

.reason:nth-child(even) {
  padding-left: 24px;
}

.reason > svg {
  width: 21px;
  flex-shrink: 0;
  color: var(--gold);
}

.reason h3 {
  margin-bottom: 8px;
  font-size: 0.89rem;
  font-weight: 620;
}

.reason p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.7rem;
  line-height: 1.55;
}

/* Gallery */

.gallery-section {
  background: #090909;
}

.gallery-grid {
  display: grid;
  grid-auto-flow: dense;
  grid-auto-rows: 245px;
  grid-template-columns: repeat(3, 1fr);
  gap: 13px;
}

.gallery-grid > div {
  min-width: 0;
}

.gallery-grid .gallery-tall {
  grid-row: span 2;
}

.gallery-grid .gallery-wide {
  grid-column: span 2;
}

.gallery-card {
  position: relative;
  width: 100%;
  height: 100%;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: var(--radius-md);
  background: var(--card);
  cursor: pointer;
  text-align: left;
}

.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.76) contrast(1.02);
  transition:
    transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1),
    filter 500ms ease;
}

.gallery-card:hover img {
  transform: scale(1.055);
  filter: saturate(1) contrast(1.02);
}

.gallery-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.82), transparent 62%);
}

.gallery-tag {
  position: absolute;
  top: 18px;
  left: 18px;
  padding: 7px 10px;
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 999px;
  background: rgba(7, 7, 7, 0.5);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.54rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(12px);
}

.gallery-copy {
  position: absolute;
  right: 23px;
  bottom: 22px;
  left: 23px;
}

.gallery-copy span,
.gallery-copy strong {
  display: block;
}

.gallery-copy span {
  margin-bottom: 7px;
  color: var(--gold-soft);
  font-size: 0.58rem;
  font-weight: 680;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.gallery-copy strong {
  font-size: 1.05rem;
  font-weight: 570;
}

.gallery-open {
  position: absolute;
  top: 17px;
  right: 17px;
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #fff;
  color: #080808;
  opacity: 0;
  transform: translateY(8px);
  transition:
    opacity 220ms ease,
    transform 220ms ease;
}

.gallery-open svg {
  width: 17px;
}

.gallery-card:hover .gallery-open {
  opacity: 1;
  transform: translateY(0);
}

.lightbox {
  position: fixed;
  z-index: 120;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 70px;
  background: rgba(3, 4, 3, 0.93);
  backdrop-filter: blur(18px);
}

.lightbox figure {
  max-width: min(1050px, 80vw);
  margin: 0;
}

.lightbox figure img {
  width: 100%;
  max-height: 76vh;
  object-fit: contain;
  border-radius: 18px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.5);
}

.lightbox figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
}

.lightbox figcaption span {
  color: var(--gold-soft);
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.lightbox figcaption strong {
  font-size: 0.9rem;
}

.lightbox-close,
.lightbox-arrow {
  position: absolute;
  width: 48px;
  height: 48px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  cursor: pointer;
  transition: background 180ms ease;
}

.lightbox-close:hover,
.lightbox-arrow:hover {
  background: rgba(255, 255, 255, 0.14);
}

.lightbox-close {
  top: 24px;
  right: 24px;
}

.lightbox-arrow {
  top: 50%;
}

.lightbox-arrow-left {
  left: 25px;
}

.lightbox-arrow-right {
  right: 25px;
}

/* Process */

.process-section {
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  background:
    radial-gradient(circle at 50% 0, rgba(46, 125, 50, 0.13), transparent 35rem),
    #0d0f0d;
}

.process-heading {
  max-width: 720px;
  margin: 0 auto 84px;
  text-align: center;
}

.process-heading .eyebrow {
  justify-content: center;
}

.process-grid {
  position: relative;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.process-line {
  position: absolute;
  top: 38px;
  right: 12%;
  left: 12%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(201, 162, 39, 0.55), transparent);
}

.process-step {
  position: relative;
  padding: 0 clamp(15px, 2.8vw, 38px);
  text-align: center;
}

.process-icon {
  position: relative;
  z-index: 2;
  width: 76px;
  height: 76px;
  display: grid;
  margin: 0 auto 30px;
  place-items: center;
  border: 1px solid rgba(201, 162, 39, 0.3);
  border-radius: 50%;
  background: #101210;
  box-shadow: 0 0 0 9px #0d0f0d;
  color: var(--gold-soft);
}

.process-icon svg {
  width: 25px;
}

.process-number {
  display: block;
  margin-bottom: 12px;
  color: #555855;
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.process-step h3 {
  margin-bottom: 12px;
  font-size: 1.06rem;
  font-weight: 610;
}

.process-step p {
  color: var(--muted-dark);
  font-size: 0.73rem;
  line-height: 1.65;
}

/* Reviews */

.reviews-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 95% 50%, rgba(201, 162, 39, 0.06), transparent 30rem),
    #090909;
}

.reviews-shell {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: stretch;
  gap: clamp(45px, 8vw, 110px);
}

.reviews-aside {
  padding-top: 24px;
}

.reviews-aside h2 {
  margin-bottom: 28px;
  font-size: clamp(2.45rem, 4.6vw, 4.4rem);
}

.reviews-aside p:not(.eyebrow) {
  max-width: 420px;
  color: var(--muted);
  font-size: 0.89rem;
  line-height: 1.7;
}

.review-stars {
  display: flex;
  gap: 5px;
  margin: 34px 0 10px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  letter-spacing: 0.16em;
}

.review-stars svg {
  width: 17px;
}

.review-score {
  color: #d4d4d4;
  font-size: 0.68rem;
  font-weight: 600;
}

.review-stage {
  position: relative;
  min-height: 500px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: clamp(34px, 5vw, 64px);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.03), transparent),
    #111311;
}

.quote-icon {
  display: block;
  width: auto;
  height: 54px;
  color: rgba(201, 162, 39, 0.5);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 5rem;
  line-height: 0.8;
}

.review-stage blockquote {
  margin: 56px 0 65px;
  color: #eee;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.55rem, 3.05vw, 2.65rem);
  font-weight: 400;
  letter-spacing: -0.035em;
  line-height: 1.36;
}

.review-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}

.review-person {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-person > span {
  width: 46px;
  height: 46px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--green-deep), var(--green));
  color: #fff;
  font-size: 0.88rem;
  font-weight: 700;
}

.review-person strong,
.review-person small {
  display: block;
}

.review-person strong {
  margin-bottom: 5px;
  font-size: 0.78rem;
}

.review-person small {
  color: var(--muted-dark);
  font-size: 0.61rem;
}

.review-controls {
  display: flex;
  align-items: center;
  gap: 13px;
}

.review-controls button {
  width: 43px;
  height: 43px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  background: transparent;
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease;
}

.review-controls button:hover {
  border-color: rgba(72, 166, 77, 0.45);
  background: rgba(46, 125, 50, 0.12);
}

.review-controls button svg {
  width: 16px;
}

.review-controls > span {
  color: var(--muted-dark);
  font-size: 0.58rem;
  letter-spacing: 0.08em;
}

.review-progress {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 2px;
  overflow: hidden;
  background: rgba(255, 255, 255, 0.04);
}

.review-progress span {
  height: 100%;
  display: block;
  background: linear-gradient(90deg, var(--green), var(--gold));
  transition: width 350ms ease;
}

/* FAQ */

.faq-section {
  background: #0c0d0c;
}

.faq-grid {
  display: grid;
  grid-template-columns: minmax(270px, 0.67fr) minmax(0, 1.33fr);
  align-items: start;
  gap: clamp(50px, 9vw, 120px);
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  margin-bottom: 27px;
  font-size: clamp(2.35rem, 4vw, 3.9rem);
}

.faq-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 0.86rem;
  line-height: 1.7;
}

.faq-intro > a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  margin-top: 18px;
  color: var(--gold-soft);
  font-size: 0.82rem;
  font-weight: 650;
}

.faq-item {
  border-bottom: 1px solid var(--border-strong);
}

.faq-item:first-child {
  border-top: 1px solid var(--border-strong);
}

.faq-item > button {
  width: 100%;
  min-height: 97px;
  display: grid;
  grid-template-columns: 39px 1fr auto;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
  text-align: left;
}

.faq-item > button > span {
  color: #555855;
  font-size: 0.58rem;
  font-weight: 700;
  letter-spacing: 0.1em;
}

.faq-item > button > strong {
  font-size: clamp(0.96rem, 1.5vw, 1.18rem);
  font-weight: 560;
}

.faq-item > button > svg {
  width: 19px;
  color: var(--muted-dark);
  transition:
    color 220ms ease,
    transform 220ms ease;
}

.faq-item-open > button > svg {
  color: var(--green-bright);
  transform: rotate(180deg);
}

.faq-answer {
  overflow: hidden;
}

.faq-answer p {
  max-width: 680px;
  margin: 0;
  padding: 0 50px 30px 39px;
  color: var(--muted);
  font-size: 0.82rem;
  line-height: 1.75;
}

/* CTA */

.cta-section {
  padding: 32px 0;
  background: #090909;
}

.cta-banner {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 50px;
  overflow: hidden;
  padding: clamp(34px, 6vw, 72px);
  border-radius: var(--radius-lg);
}

.cta-banner > img,
.cta-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.cta-banner > img {
  object-fit: cover;
  object-position: center 63%;
  filter: saturate(0.85);
}

.cta-overlay {
  background:
    linear-gradient(90deg, rgba(8, 9, 8, 0.94) 0%, rgba(8, 9, 8, 0.77) 45%, rgba(8, 9, 8, 0.3) 100%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.6), transparent);
}

.cta-banner > div:not(.cta-overlay),
.cta-banner > a {
  position: relative;
}

.cta-banner h2 {
  max-width: 750px;
  font-size: clamp(2.5rem, 5vw, 5rem);
}

.cta-banner > a {
  flex-shrink: 0;
}

/* Contact */

.contact-section {
  background:
    radial-gradient(circle at 0 80%, rgba(46, 125, 50, 0.13), transparent 30rem),
    #0b0c0b;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(300px, 0.77fr) minmax(0, 1.23fr);
  gap: clamp(60px, 9vw, 120px);
}

.contact-copy h2 {
  max-width: 540px;
  margin-bottom: 28px;
  font-size: clamp(2.6rem, 5vw, 4.8rem);
}

.contact-copy > div:first-child > p:not(.eyebrow) {
  max-width: 490px;
  color: var(--muted);
  font-size: 0.91rem;
  line-height: 1.7;
}

.contact-details {
  display: grid;
  gap: 0;
  margin-top: 55px;
}

.contact-detail {
  display: flex;
  align-items: center;
  gap: 17px;
  padding: 19px 0;
  border-bottom: 1px solid var(--border);
}

.contact-detail > span {
  width: 45px;
  height: 45px;
  display: grid;
  flex-shrink: 0;
  place-items: center;
  border: 1px solid rgba(72, 166, 77, 0.2);
  border-radius: 13px;
  background: rgba(46, 125, 50, 0.09);
  color: #67bb6b;
}

.contact-detail svg {
  width: 19px;
}

.contact-detail small,
.contact-detail strong,
.contact-detail a {
  display: block;
}

.contact-detail small {
  margin-bottom: 5px;
  color: var(--muted-dark);
  font-size: 0.57rem;
  font-weight: 680;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-detail strong,
.contact-detail a {
  font-size: 0.81rem;
  font-weight: 550;
}

.contact-form-shell {
  padding: clamp(28px, 4.2vw, 52px);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(145deg, rgba(255, 255, 255, 0.025), transparent),
    #131513;
  box-shadow: 0 35px 100px rgba(0, 0, 0, 0.25);
}

.form-heading {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 36px;
}

.form-heading span {
  display: block;
  margin-bottom: 7px;
  color: var(--green-bright);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.form-heading h3 {
  margin: 0;
  font-size: 1.45rem;
  font-weight: 580;
}

.form-heading > svg {
  width: 50px;
  height: 50px;
  padding: 12px;
  border-radius: 15px;
  background: rgba(46, 125, 50, 0.1);
  color: #6dc272;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 13px;
}

.contact-form-shell form {
  display: grid;
  gap: 13px;
}

.contact-form-shell label {
  display: block;
}

.contact-form-shell label > span {
  display: block;
  margin: 0 0 9px 4px;
  color: #b8b9b8;
  font-size: 0.62rem;
  font-weight: 620;
}

.contact-form-shell input,
.contact-form-shell select,
.contact-form-shell textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  outline: none;
  background: #0d0f0d;
  color: #fff;
  font-size: 0.78rem;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    box-shadow 180ms ease;
}

.contact-form-shell input,
.contact-form-shell select {
  height: 53px;
  padding: 0 15px;
}

.contact-form-shell textarea {
  min-height: 116px;
  resize: vertical;
  padding: 15px;
  line-height: 1.5;
}

.contact-form-shell input::placeholder,
.contact-form-shell textarea::placeholder {
  color: #626562;
}

.contact-form-shell input:focus,
.contact-form-shell select:focus,
.contact-form-shell textarea:focus {
  border-color: rgba(72, 166, 77, 0.55);
  background: #101210;
  box-shadow: 0 0 0 3px rgba(46, 125, 50, 0.1);
}

.contact-form-shell select {
  color-scheme: dark;
}

.form-submit {
  width: 100%;
  margin-top: 8px;
}

.form-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 7px;
  margin: 2px 0 0;
  color: #656865;
  font-size: 0.59rem;
}

.form-success {
  position: relative;
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 6px;
  padding: 14px 42px 14px 14px;
  border: 1px solid rgba(72, 166, 77, 0.28);
  border-radius: 13px;
  background: rgba(46, 125, 50, 0.11);
}

.form-success > svg {
  flex-shrink: 0;
  color: #74c978;
}

.form-success strong,
.form-success span {
  display: block;
}

.form-success strong {
  margin-bottom: 4px;
  font-size: 0.76rem;
}

.form-success span {
  color: var(--muted);
  font-size: 0.64rem;
  line-height: 1.45;
}

.form-success button {
  position: absolute;
  top: 12px;
  right: 12px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

/* Footer */

.site-footer {
  padding: 85px 0 28px;
  border-top: 1px solid var(--border);
  background: #070807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(3, 0.65fr);
  gap: 55px;
  padding-bottom: 70px;
}

.footer-brand > p {
  max-width: 320px;
  margin: 26px 0;
  color: var(--muted-dark);
  font-size: 0.76rem;
  line-height: 1.65;
}

.socials {
  display: flex;
  gap: 8px;
}

.socials a {
  width: 40px;
  height: 40px;
  display: grid;
  place-items: center;
  border: 1px solid var(--border-strong);
  border-radius: 50%;
  color: var(--muted);
  transition:
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.socials a:hover {
  transform: translateY(-2px);
  border-color: rgba(201, 162, 39, 0.35);
  color: var(--gold-soft);
}

.socials svg {
  width: 16px;
}

.footer-grid > div:not(.footer-brand) {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 14px;
}

.footer-grid h3 {
  margin-bottom: 13px;
  color: #fff;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.footer-grid > div:not(.footer-brand) a,
.footer-grid > div:not(.footer-brand) p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.7rem;
  line-height: 1.5;
  transition: color 180ms ease;
}

.footer-grid > div:not(.footer-brand) a:hover {
  color: #fff;
}

.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-menu li {
  margin: 0;
  padding: 0;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 25px;
  border-top: 1px solid var(--border);
  color: #5f615f;
  font-size: 0.59rem;
}

.footer-bottom > div {
  display: flex;
  gap: 23px;
}

.mobile-sticky-cta {
  position: fixed;
  z-index: 45;
  right: 15px;
  bottom: 15px;
  left: 15px;
  min-height: 54px;
  display: none;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 999px;
  background: var(--green);
  box-shadow: 0 15px 45px rgba(0, 0, 0, 0.45);
  font-size: 0.8rem;
  font-weight: 700;
  opacity: 0;
  pointer-events: none;
  transform: translateY(22px);
  transition:
    opacity 200ms ease,
    transform 200ms ease;
}

.mobile-sticky-cta.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.mobile-sticky-cta svg {
  width: 17px;
}

/* Responsive */

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .menu-button {
    display: grid;
  }

  .services-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .service-card {
    min-height: 300px;
  }

  .about-grid {
    grid-template-columns: 0.85fr 1.15fr;
    gap: 65px;
  }

  .about-visual {
    min-height: 620px;
  }

  .about-visual > img {
    height: 590px;
  }

  .about-visual-card {
    right: -20px;
  }

  .reasons-grid {
    grid-template-columns: 1fr;
  }

  .reason:nth-child(even) {
    padding-left: 0;
  }

  .reason {
    min-height: 100px;
  }
}

@media (max-width: 900px) {
  :root {
    --shell: min(100% - 30px, 720px);
  }

  .section {
    padding: 100px 0;
  }

  .nav-phone {
    display: none;
  }

  .hero {
    min-height: 880px;
    align-items: flex-end;
    padding-bottom: 68px;
  }

  .hero-image {
    object-position: 67% center;
  }

  .hero-scrim {
    background:
      linear-gradient(90deg, rgba(5, 6, 5, 0.9), rgba(5, 6, 5, 0.35)),
      linear-gradient(0deg, rgba(9, 9, 9, 0.98) 0%, rgba(9, 9, 9, 0.5) 49%, rgba(0, 0, 0, 0.25) 100%);
  }

  .hero h1 {
    max-width: 780px;
  }

  .hero-side-note {
    display: none;
  }

  .trust-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .trust-stat {
    min-height: 125px;
    padding-left: 28px;
  }

  .trust-stat:nth-child(2) {
    border-right: 0;
  }

  .trust-stat:nth-child(-n + 2) {
    border-bottom: 1px solid var(--border);
  }

  .trust-stat:first-child {
    padding-left: 0;
  }

  .section-intro-row,
  .gallery-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    min-height: 620px;
    width: calc(100% - 20px);
  }

  .about-visual > img {
    height: 600px;
  }

  .about-visual-card {
    right: -20px;
  }

  .gallery-grid {
    grid-auto-rows: 220px;
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery-grid .gallery-wide {
    grid-column: span 1;
  }

  .process-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 55px 12px;
  }

  .process-line {
    display: none;
  }

  .reviews-shell,
  .faq-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .faq-intro {
    position: static;
  }

  .cta-banner {
    min-height: 500px;
    align-items: flex-start;
    flex-direction: column;
    justify-content: flex-end;
  }

  .cta-banner > a {
    align-self: flex-start;
  }

  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 30px);
    --radius-lg: 22px;
    --radius-md: 16px;
  }

  .section {
    padding: 84px 0;
  }

  h2 {
    font-size: clamp(2.25rem, 11.5vw, 3.3rem);
  }

  .nav-shell {
    width: calc(100% - 30px);
    min-height: 74px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .brand strong {
    font-size: 0.91rem;
  }

  .brand small {
    font-size: 0.45rem;
  }

  .nav-actions > .button {
    display: none;
  }

  .hero {
    min-height: 820px;
    padding: 135px 0 47px;
  }

  .hero-image {
    object-position: 70% center;
  }

  .hero-scrim {
    background:
      linear-gradient(0deg, rgba(7, 8, 7, 0.99) 0%, rgba(7, 8, 7, 0.78) 43%, rgba(7, 8, 7, 0.15) 90%),
      linear-gradient(90deg, rgba(7, 8, 7, 0.6), rgba(7, 8, 7, 0.12));
  }

  .hero-eyebrow {
    margin-bottom: 21px;
    font-size: 0.6rem;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(3.15rem, 16vw, 4.5rem);
    line-height: 0.9;
  }

  .hero-copy {
    font-size: 0.88rem;
    line-height: 1.62;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-trust {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 14px 11px;
    margin-top: 29px;
  }

  .hero-trust span {
    font-size: 0.64rem;
  }

  .trust-stat {
    min-height: 112px;
    padding: 19px 0 19px 19px;
  }

  .trust-stat strong {
    font-size: 1.65rem;
  }

  .trust-stat span {
    font-size: 0.51rem;
    letter-spacing: 0.08em;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: 285px;
  }

  .about-visual {
    min-height: 475px;
  }

  .about-visual > img {
    height: 455px;
  }

  .about-years {
    top: 32px;
    left: -8px;
  }

  .about-visual-card {
    right: -8px;
    bottom: 24px;
    min-width: 225px;
  }

  .reasons-grid {
    margin-top: 35px;
  }

  .reason {
    min-height: 98px;
    padding-right: 5px;
  }

  .gallery-grid {
    grid-auto-rows: 240px;
    grid-template-columns: 1fr;
  }

  .gallery-grid .gallery-tall {
    grid-row: span 1;
  }

  .lightbox {
    padding: 65px 15px;
  }

  .lightbox figure {
    max-width: 100%;
  }

  .lightbox-arrow {
    top: auto;
    bottom: 20px;
  }

  .process-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    max-width: 340px;
    margin-inline: auto;
  }

  .review-stage {
    min-height: 530px;
    padding: 29px 25px;
  }

  .review-stage blockquote {
    margin: 45px 0;
    font-size: 1.55rem;
  }

  .review-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .review-controls {
    width: 100%;
    justify-content: space-between;
  }

  .faq-item > button {
    min-height: 88px;
    grid-template-columns: 31px 1fr auto;
  }

  .faq-answer p {
    padding-left: 31px;
  }

  .cta-section {
    padding: 14px 0;
  }

  .cta-banner {
    min-height: 530px;
    padding: 30px 24px;
  }

  .cta-overlay {
    background:
      linear-gradient(0deg, rgba(7, 8, 7, 0.98), rgba(7, 8, 7, 0.38)),
      linear-gradient(90deg, rgba(7, 8, 7, 0.55), transparent);
  }

  .cta-banner .button {
    width: 100%;
    min-height: 56px;
    padding-inline: 19px;
    font-size: 0.74rem;
  }

  .field-row {
    grid-template-columns: 1fr;
  }

  .contact-form-shell {
    padding: 26px 19px;
  }

  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 42px 24px;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }

  .footer-grid > div:last-child {
    grid-column: 1 / -1;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-bottom: 72px;
  }

  .mobile-sticky-cta {
    display: flex;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* WordPress integration and no-library interactions */

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(1px, 1px, 1px, 1px);
  clip-path: inset(50%);
  white-space: nowrap;
}

.screen-reader-text:focus {
  z-index: 1000;
  top: 12px;
  left: 12px;
  width: auto;
  height: auto;
  clip: auto;
  clip-path: none;
  padding: 12px 18px;
  border-radius: 8px;
  background: #fff;
  color: #090909;
}

.admin-bar .site-header {
  top: 32px;
}

.admin-bar .mobile-menu {
  top: 32px;
}

.desktop-nav .menu {
  display: contents;
  margin: 0;
  padding: 0;
  list-style: none;
}

.desktop-nav .menu > li {
  display: contents;
}

.custom-logo-link {
  display: flex;
  align-items: center;
}

.custom-logo {
  width: auto;
  max-width: 220px;
  max-height: 58px;
}

.brand-mark .dashicons,
.service-icon .dashicons,
.process-icon .dashicons {
  width: auto;
  height: auto;
  font-size: 23px;
}

.menu-button {
  gap: 4px;
}

.menu-button span {
  width: 18px;
  height: 1px;
  display: block;
  background: #fff;
}

.mobile-menu[hidden],
.lightbox[hidden],
.faq-answer[hidden] {
  display: none !important;
}

body.menu-open,
body.lightbox-open {
  overflow: hidden;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal-ready .reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 650ms ease,
    transform 650ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.reveal-ready .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.reason > .dashicons {
  width: 21px;
  height: 21px;
  flex-shrink: 0;
  color: var(--gold);
  font-size: 21px;
}

.about-visual-card > .dashicons {
  width: 40px;
  height: 40px;
  padding: 9px;
  border-radius: 12px;
  background: rgba(46, 125, 50, 0.15);
  color: #70c675;
  font-size: 22px;
}

.gallery-open {
  font-size: 18px;
}

.review-slides {
  min-height: 315px;
}

.review-slide {
  display: none;
}

.review-slide.is-active {
  display: block;
  animation: dorado-review-in 350ms ease both;
}

@keyframes dorado-review-in {
  from { opacity: 0; transform: translateX(20px); }
  to { opacity: 1; transform: translateX(0); }
}

.review-slide footer {
  display: flex;
  align-items: center;
  gap: 13px;
  margin-top: 42px;
  font-style: normal;
  font-family: "Manrope", Arial, Helvetica, sans-serif;
}

.review-slide footer > span {
  width: 47px;
  height: 47px;
  display: grid;
  place-items: center;
  flex: 0 0 47px;
  border-radius: 50%;
  background: var(--green);
  color: #fff;
  font-size: 0.9rem;
  font-weight: 750;
}

.review-slide footer strong,
.review-slide footer small {
  display: block;
}

.review-slide footer strong {
  margin-bottom: 5px;
  font-size: 0.82rem;
}

.review-slide footer small {
  color: var(--muted-dark);
  font-size: 0.65rem;
}

.review-stage .review-controls {
  position: absolute;
  right: 46px;
  bottom: 54px;
}

.button [aria-hidden="true"],
.service-card a [aria-hidden="true"],
.mobile-sticky-cta [aria-hidden="true"],
.gallery-open {
  font-family: Arial, Helvetica, sans-serif;
  font-variant-emoji: text;
}

/* WordPress outputs a native ul/li menu; style that structure directly. */
.mobile-menu nav {
  display: block;
}

.mobile-menu nav .menu {
  display: block;
  margin: 0;
  padding: 0;
  list-style: none;
  counter-reset: dorado-mobile-nav;
}

.mobile-menu nav .menu > li {
  margin: 0;
  padding: 0;
  list-style: none;
  counter-increment: dorado-mobile-nav;
}

.mobile-menu nav .menu > li > a {
  display: grid;
  grid-template-columns: 34px minmax(0, 1fr) auto;
  gap: 10px;
}

.mobile-menu nav .menu > li > a::before {
  color: var(--gold);
  content: "0" counter(dorado-mobile-nav);
  font-size: 0.6rem;
  font-weight: 750;
  letter-spacing: 0.12em;
}

.mobile-menu nav .menu > li > a::after {
  color: var(--muted-dark);
  content: "→";
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.review-progress span {
  width: 16.666%;
  transition: width 300ms ease;
}

.faq-item > button > i {
  width: 24px;
  color: var(--muted-dark);
  font-size: 1.35rem;
  font-style: normal;
  transition: transform 200ms ease;
}

.faq-item-open > button > i {
  transform: rotate(180deg);
}

.faq-answer:not([hidden]) {
  display: block;
  animation: dorado-answer-in 240ms ease both;
}

@keyframes dorado-answer-in {
  from { opacity: 0; transform: translateY(-7px); }
  to { opacity: 1; transform: translateY(0); }
}

.form-heading > .dashicons {
  width: 41px;
  height: 41px;
  color: var(--green-bright);
  font-size: 41px;
}

.form-note .dashicons {
  width: 15px;
  height: 15px;
  font-size: 15px;
}

.dorado-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.form-error {
  margin: 0 0 20px;
  padding: 14px 16px;
  border: 1px solid rgba(220, 80, 80, 0.35);
  border-radius: 12px;
  background: rgba(160, 30, 30, 0.12);
  color: #ffb5b5;
  font-size: 0.8rem;
}

.socials .dashicons,
.contact-detail .dashicons,
.faq-intro .dashicons,
.nav-phone .dashicons {
  width: auto;
  height: auto;
  font-size: 18px;
}

.interior-page {
  min-height: 70vh;
  padding-top: 150px;
}

.content-shell {
  max-width: 850px;
}

.content-shell h1 {
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 0.95;
}

.entry-image img {
  width: 100%;
  margin: 35px 0;
  border-radius: var(--radius-md);
}

.entry-content {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.8;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }

  .admin-bar .mobile-menu {
    top: 46px;
  }
}

@media (max-width: 640px) {
  .review-slides {
    min-height: 430px;
  }

  .review-stage .review-controls {
    position: static;
    margin-top: 22px;
  }

  .review-slide footer {
    margin-top: 28px;
  }

  .hero {
    min-height: 100svh;
    padding: 128px 0 68px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13.5vw, 3.65rem);
    line-height: 0.94;
  }

  .hero-trust {
    margin-bottom: 0;
  }

  .hero-side-note {
    display: none;
  }

  .service-card {
    min-height: 255px;
    padding: 24px;
  }

  .service-card-top {
    margin-bottom: 30px;
  }

  .mobile-menu nav .menu > li > a {
    font-size: clamp(1.65rem, 8vw, 2.35rem);
  }

  .mobile-sticky-cta {
    display: flex;
  }
}
