:root {
  --forest: #1b3022;
  --forest-deep: #101c15;
  --forest-mid: #2f4a38;
  --sage: #8ba889;
  --sage-bright: #a8c2a5;
  --mist: #eef2ec;
  --white: #ffffff;
  --ink: #16251c;
  --muted: #5c6b61;
  --line: rgba(22, 37, 28, 0.12);

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Manrope", "Segoe UI", sans-serif;

  --space: clamp(1rem, 3vw, 2rem);
  --max: 72rem;
  --header-h: 4.5rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --radius: 0.85rem;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -3rem;
  z-index: 100;
  padding: 0.6rem 1rem;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  border-radius: 0.35rem;
}

.skip-link:focus {
  top: 1rem;
}

/* Header */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 50;
  background: var(--white);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 8px 24px rgba(16, 28, 21, 0.06);
}

.header-inner {
  width: min(100% - (var(--space) * 2), var(--max));
  min-height: var(--header-h);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.header-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.header-brand img {
  width: 2.6rem;
  height: 2.6rem;
  object-fit: contain;
}

.header-brand-text {
  display: flex;
  flex-direction: column;
  gap: 0.12rem;
  line-height: 1;
}

.header-brand-name {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--forest);
}

.header-brand-sub {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.header-nav {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.header-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
  transition: color 0.2s ease;
}

.header-nav a:hover {
  color: var(--forest);
}

.header-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  min-height: 2.5rem;
  padding: 0.55rem 1.15rem;
  border-radius: 999px;
  background: var(--forest);
  color: var(--white);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.header-cta:hover {
  background: var(--forest-deep);
  transform: translateY(-1px);
}

.menu-toggle {
  display: none;
  width: 2.6rem;
  height: 2.6rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
}

.menu-toggle span {
  display: block;
  width: 14px;
  height: 1.5px;
  background: var(--forest);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.menu-toggle.is-open span:first-child {
  transform: translateY(3.25px) rotate(45deg);
}

.menu-toggle.is-open span:last-child {
  transform: translateY(-3.25px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: var(--header-h) 0 0;
  z-index: 45;
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  padding: 1.5rem var(--space) 2rem;
  background: var(--forest-deep);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-display);
  font-size: 1.7rem;
  font-weight: 600;
  padding: 0.7rem 0.4rem;
}

.mobile-menu .btn {
  margin-top: 1rem;
  justify-content: center;
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 3rem;
  padding: 0.75rem 1.45rem;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 0.25s var(--ease), background 0.25s ease, border-color 0.25s ease,
    color 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--sage);
  color: var(--forest-deep);
  box-shadow: 0 10px 28px rgba(139, 168, 137, 0.35);
}

.btn-accent:hover {
  background: var(--sage-bright);
}

.btn-accent svg {
  color: var(--forest-deep);
}

.btn-outline-light {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.4);
  background: transparent;
}

.btn-outline-light:hover {
  border-color: var(--white);
  background: rgba(255, 255, 255, 0.08);
}

.btn-primary {
  background: var(--sage);
  color: var(--forest-deep);
}

.btn.full {
  width: 100%;
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: calc(var(--header-h) + 1.5rem) 0 0;
  overflow: hidden;
  color: var(--white);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 70% center;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(8, 10, 9, 0.82) 0%, rgba(8, 10, 9, 0.5) 42%, rgba(8, 10, 9, 0.18) 72%, rgba(8, 10, 9, 0.28) 100%),
    linear-gradient(to top, rgba(8, 10, 9, 0.88) 0%, rgba(8, 10, 9, 0.35) 34%, transparent 58%);
}

.hero-shell {
  position: relative;
  z-index: 1;
  width: min(100% - (var(--space) * 2), var(--max));
  margin: 0 auto;
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: clamp(2.5rem, 7vh, 4.5rem);
  padding: 1rem 0 1.5rem;
  animation: fade-up 0.9s var(--ease) both;
}

.hero-content {
  width: min(100%, 42rem);
  margin-top: clamp(1rem, 4vh, 3rem);
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.4rem;
  padding: 0.48rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #fff;
}

.hero-eyebrow svg {
  flex-shrink: 0;
}

.hero h1 {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: clamp(2.75rem, 6.4vw, 4.6rem);
  font-weight: 600;
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: #fff;
}

.hero h1 em {
  font-family: var(--font-display);
  font-style: italic;
  font-weight: 600;
  color: #b7c9a8;
}

.hero-rule {
  width: 2.75rem;
  height: 2px;
  margin: 0 0 1.15rem;
  background: #c4a574;
}

.hero-lede {
  margin: 0 0 1.85rem;
  max-width: 34rem;
  font-size: 1.05rem;
  font-weight: 400;
  line-height: 1.6;
  color: rgba(255, 255, 255, 0.88);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
}

.btn-hero-call {
  background: #8fa882;
  color: #fff;
  box-shadow: 0 10px 28px rgba(143, 168, 130, 0.35);
}

.btn-hero-call:hover {
  background: #9db693;
  color: #fff;
}

.btn-hero-call svg {
  color: #fff;
}

.btn-outline-light {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
  background: transparent;
  padding-inline: 1.5rem;
}

.btn-outline-light:hover {
  border-color: #fff;
  background: rgba(255, 255, 255, 0.08);
}

.trust-bar {
  list-style: none;
  margin: 0;
  padding: 0.35rem 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  border-radius: 0.9rem;
  background: rgba(20, 22, 21, 0.78);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  overflow: hidden;
}

.trust-bar li {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  padding: 1.05rem 1.2rem;
}

.trust-bar li:not(:last-child) {
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.trust-icon {
  display: grid;
  place-items: center;
  width: 2.45rem;
  height: 2.45rem;
  flex-shrink: 0;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 50%;
  color: #fff;
}

.trust-bar strong {
  display: block;
  font-size: 0.95rem;
  font-weight: 750;
  line-height: 1.2;
  color: #fff;
}

.trust-bar span:not(.trust-icon) {
  display: block;
  margin-top: 0.18rem;
  font-size: 0.74rem;
  line-height: 1.3;
  color: rgba(255, 255, 255, 0.62);
}

.hero-ribbon {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 0.55rem 1.15rem;
  margin: 0;
  padding: 0.95rem var(--space);
  background: #101812;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.9);
}

.hero-ribbon span:not(:last-child)::after {
  content: "|";
  margin-left: 1.15rem;
  color: rgba(255, 255, 255, 0.3);
  font-weight: 500;
}

/* Shared section bits */
.eyebrow {
  margin: 0 0 0.7rem;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--sage);
}

.eyebrow.light {
  color: var(--sage-bright);
}

.section-intro {
  max-width: 38rem;
  margin-bottom: clamp(2rem, 5vw, 3.25rem);
}

.section-intro.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.15rem);
  font-weight: 600;
  line-height: 1.12;
  letter-spacing: -0.02em;
  color: var(--forest);
}

.lede {
  margin: 0;
  font-size: 1.05rem;
  color: var(--muted);
}

.lede.light {
  color: rgba(255, 255, 255, 0.75);
}

/* Services */
.services {
  padding: clamp(2.5rem, 5vw, 4rem) var(--space);
  background:
    radial-gradient(ellipse at top right, rgba(139, 168, 137, 0.16), transparent 55%),
    radial-gradient(ellipse at bottom left, rgba(47, 74, 56, 0.45), transparent 50%),
    var(--forest-deep);
  color: var(--white);
}

.services .section-intro {
  width: min(100%, var(--max));
  max-width: none;
  margin: 0 auto 1.5rem;
}

.services .eyebrow {
  color: var(--sage-bright);
}

.services h2 {
  color: var(--white);
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
}

.services .lede {
  color: rgba(255, 255, 255, 0.75);
}

.service-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(0.75rem, 1.5vw, 1.15rem);
  align-items: start;
}

.price-panel {
  display: flex;
  flex-direction: column;
  width: 100%;
  min-width: 0;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 1rem;
  background: rgba(255, 255, 255, 0.05);
  overflow: hidden;
  isolation: isolate;
}

.price-panel-featured {
  border-color: rgba(168, 194, 165, 0.45);
  background: rgba(255, 255, 255, 0.08);
  box-shadow: 0 0 0 1px rgba(139, 168, 137, 0.2), 0 18px 40px rgba(0, 0, 0, 0.2);
}

.price-panel-head {
  flex-shrink: 0;
  padding: clamp(0.85rem, 1.8vw, 1.25rem) clamp(0.85rem, 1.8vw, 1.2rem) clamp(0.7rem, 1.4vw, 1rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.price-panel-head p {
  margin: 0 0 0.25rem;
  font-size: clamp(0.58rem, 1vw, 0.68rem);
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--sage-bright);
}

.price-panel-head h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: clamp(1rem, 1.8vw, 1.3rem);
  font-weight: 600;
  color: var(--white);
  line-height: 1.2;
}

.price-rows {
  list-style: none;
  margin: 0;
  padding: 0;
  flex: 1;
  display: flex;
  flex-direction: column;
  min-height: 0;
}

.price-rows li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  flex: 1;
  padding: 0 clamp(0.85rem, 1.8vw, 1.2rem);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.price-rows li:nth-child(2) {
  background: rgba(255, 255, 255, 0.04);
}

.price-rows strong {
  display: block;
  font-size: clamp(0.78rem, 1.3vw, 0.92rem);
  font-weight: 700;
  color: var(--white);
}

.price-rows span {
  font-size: clamp(0.65rem, 1vw, 0.75rem);
  color: rgba(255, 255, 255, 0.45);
}

.price-rows em {
  font-family: var(--font-display);
  font-style: normal;
  font-size: clamp(1.25rem, 2.4vw, 1.65rem);
  font-weight: 700;
  color: var(--sage-bright);
}

.price-panel-foot {
  flex-shrink: 0;
  margin-top: auto;
  padding: clamp(0.7rem, 1.5vw, 1rem) clamp(0.85rem, 1.8vw, 1.2rem) clamp(0.85rem, 1.8vw, 1.15rem);
  box-sizing: border-box;
  width: 100%;
}

.price-panel-foot .btn {
  display: flex;
  width: 100%;
  margin: 0;
  min-height: 2.5rem;
  padding: 0.55rem 0.9rem;
  font-size: clamp(0.72rem, 1.1vw, 0.82rem);
  cursor: pointer;
  font-family: inherit;
  box-sizing: border-box;
}

.price-panel.is-open {
  aspect-ratio: auto;
  z-index: 2;
}

.include-toggle[aria-expanded="true"] {
  background: var(--sage-bright);
}

.include-list {
  list-style: none;
  margin: 0.85rem 0 0;
  padding: 0.85rem 0 0;
  display: grid;
  gap: 0.55rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  width: 100%;
  box-sizing: border-box;
}

.include-list[hidden] {
  display: none;
}

.include-list li {
  position: relative;
  padding-left: 1.35rem;
  font-size: clamp(0.78rem, 1.2vw, 0.9rem);
  line-height: 1.35;
  color: rgba(255, 255, 255, 0.82);
}

.include-list li::before {
  content: "";
  position: absolute;
  left: 0.1rem;
  top: 0.35rem;
  width: 0.5rem;
  height: 0.3rem;
  border-left: 2px solid var(--sage);
  border-bottom: 2px solid var(--sage);
  transform: rotate(-45deg);
}

/* Work / projects */
.work {
  width: min(100% - (var(--space) * 2), var(--max));
  margin: 0 auto;
  padding: clamp(4rem, 9vw, 6.5rem) 0;
}

.project {
  display: grid;
  grid-template-columns: 1.35fr 0.85fr;
  gap: 0.85rem;
  align-items: stretch;
}

.project-hero {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 28rem;
  background: var(--forest-deep);
}

.project-hero img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}

.project-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(16, 28, 21, 0.88) 0%, rgba(16, 28, 21, 0.15) 45%, transparent 70%);
}

.project-hero-copy {
  position: absolute;
  inset: auto 0 0;
  z-index: 1;
  padding: 1.5rem 1.5rem 1.65rem;
  color: var(--white);
}

.project-hero-copy p:first-child {
  margin: 0 0 0.4rem;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sage-bright);
}

.project-hero-copy h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 600;
}

.project-hero-copy p:last-child {
  margin: 0;
  max-width: 28rem;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.78);
}

.project-side {
  display: grid;
  grid-template-rows: 1fr 1fr;
  gap: 0.85rem;
}

.project-side figure {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--mist);
}

.project-side img {
  width: 100%;
  height: 100%;
  min-height: 13.5rem;
  object-fit: cover;
}

.project-side figcaption {
  position: absolute;
  left: 0.85rem;
  bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  background: rgba(16, 28, 21, 0.72);
  color: var(--white);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.compare-block {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(1.5rem, 4vw, 3rem);
  align-items: center;
  margin-top: clamp(2.5rem, 6vw, 4rem);
  padding: clamp(1.5rem, 4vw, 2.25rem);
  border-radius: 1rem;
  background: var(--forest-deep);
  color: var(--white);
}

.compare-intro .eyebrow {
  color: var(--sage-bright);
}

.compare-intro h3 {
  margin: 0 0 0.7rem;
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
  font-weight: 600;
  line-height: 1.15;
}

.compare-intro p:last-child {
  margin: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.98rem;
}

.ba-slider {
  position: relative;
  overflow: hidden;
  border-radius: 0.85rem;
  aspect-ratio: 3 / 4;
  user-select: none;
  touch-action: none;
  background: #0a1210;
}

.ba-before,
.ba-after {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  pointer-events: none;
}

.ba-after-wrap {
  position: absolute;
  inset: 0;
  clip-path: inset(0 0 0 var(--pos));
}

.ba-handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--pos);
  z-index: 2;
  width: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transform: translateX(-50%);
}

.ba-line {
  position: absolute;
  inset: 0 auto;
  width: 2px;
  background: var(--white);
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.45);
}

.ba-knob {
  position: relative;
  z-index: 1;
  display: grid;
  place-items: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 50%;
  background: var(--white);
  color: var(--forest);
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.28);
}

.ba-label {
  position: absolute;
  z-index: 2;
  bottom: 0.85rem;
  padding: 0.35rem 0.7rem;
  border-radius: 999px;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  pointer-events: none;
}

.ba-label-before {
  left: 0.85rem;
  background: rgba(0, 0, 0, 0.55);
  color: var(--white);
}

.ba-label-after {
  right: 0.85rem;
  background: rgba(27, 48, 34, 0.9);
  color: var(--white);
}

.ba-range {
  position: absolute;
  inset: 0;
  z-index: 3;
  width: 100%;
  height: 100%;
  margin: 0;
  opacity: 0;
  cursor: ew-resize;
}

/* Why */
.why {
  padding: clamp(4rem, 8vw, 6rem) var(--space);
  background: var(--mist);
}

.why-grid {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.25rem;
}

.why-item {
  padding: 0.25rem 0.2rem;
}

.why-item span {
  display: block;
  margin-bottom: 0.85rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--sage);
}

.why-item h3 {
  margin: 0 0 0.55rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--forest);
}

.why-item p {
  margin: 0;
  font-size: 0.94rem;
  color: var(--muted);
}

/* FAQ */
.faq {
  width: min(100% - (var(--space) * 2), 44rem);
  margin: 0 auto;
  padding: clamp(4rem, 8vw, 6rem) 0;
}

.faq-list {
  display: grid;
  gap: 0.75rem;
}

.faq-list details {
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  padding: 0.15rem 1.15rem;
  background: var(--white);
}

.faq-list summary {
  list-style: none;
  cursor: pointer;
  padding: 1.05rem 0;
  font-weight: 700;
  color: var(--forest);
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  float: right;
  color: var(--sage);
  font-weight: 500;
  font-size: 1.2rem;
}

.faq-list details[open] summary::after {
  content: "–";
}

.faq-list details p {
  margin: 0 0 1.1rem;
  color: var(--muted);
  font-size: 0.95rem;
}

/* Contact */
.contact {
  padding: clamp(4.5rem, 10vw, 7rem) var(--space);
  background:
    radial-gradient(circle at 15% 20%, rgba(139, 168, 137, 0.22), transparent 40%),
    linear-gradient(160deg, var(--forest-deep), var(--forest) 55%, #243f31);
  color: var(--white);
  text-align: center;
}

.contact-inner {
  width: min(100%, 40rem);
  margin: 0 auto;
}

.contact h2 {
  color: var(--white);
}

.phone {
  display: inline-block;
  margin: 1.5rem 0 1.6rem;
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 7vw, 3.7rem);
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1;
  text-decoration: none;
  color: var(--white);
}

.phone:hover {
  color: var(--sage-bright);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.85rem;
}

/* Footer */
.site-footer {
  background: var(--white);
  border-top: 1px solid var(--line);
  padding: 2rem var(--space) 2.25rem;
}

.footer-inner {
  width: min(100%, var(--max));
  margin: 0 auto 1.1rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  flex-wrap: wrap;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  text-decoration: none;
}

.footer-brand img {
  width: 2.8rem;
  height: 2.8rem;
  object-fit: contain;
}

.footer-brand span {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  line-height: 1;
}

.footer-brand strong {
  font-family: var(--font-display);
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--forest);
}

.footer-brand small {
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 1.25rem;
}

.footer-nav a {
  text-decoration: none;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--muted);
}

.footer-nav a:hover {
  color: var(--forest);
}

.footer-phone {
  font-weight: 800;
  text-decoration: none;
  color: var(--forest);
}

.footer-fine {
  width: min(100%, var(--max));
  margin: 0 auto;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

/* Motion */
.reveal {
  opacity: 0;
  transform: translateY(1.25rem);
  transition: opacity 0.75s var(--ease), transform 0.75s var(--ease);
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

@keyframes fade-up {
  from {
    opacity: 0;
    transform: translateY(1.5rem);
  }
  to {
    opacity: 1;
    transform: none;
  }
}

@media (max-width: 980px) {
  .why-grid,
  .project {
    grid-template-columns: 1fr;
  }

  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar li:not(:last-child) {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .project-hero {
    min-height: 22rem;
  }

  .project-side {
    grid-template-rows: none;
    grid-template-columns: 1fr 1fr;
  }

  .compare-block {
    grid-template-columns: 1fr;
  }

  .ba-slider {
    max-width: 28rem;
    margin: 0 auto;
    width: 100%;
  }

  .header-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }
}

@media (max-width: 700px) {
  .service-grid {
    grid-template-columns: 1fr;
  }

  .price-panel {
    aspect-ratio: auto;
    min-height: 22rem;
  }
}

@media (max-width: 640px) {
  .trust-bar {
    grid-template-columns: 1fr;
  }

  .trust-bar li {
    border-right: 0 !important;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  }

  .trust-bar li:last-child {
    border-bottom: 0;
  }

  .hero-ribbon {
    gap: 0.35rem 0.75rem;
    letter-spacing: 0.1em;
    font-size: 0.64rem;
  }

  .hero-ribbon span:not(:last-child)::after {
    margin-left: 0.75rem;
  }

  .project-side {
    grid-template-columns: 1fr;
  }

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

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

  .hero-shell,
  .reveal {
    animation: none !important;
    transition: none !important;
  }

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