/* ============================================================
   DC PROPERTY SOLUTIONS LLC — Design Tokens & Styles
   Brand: navy + forest green, sampled directly from the company
   logo, on a clean white/off-white ground. "One Call Does It All."
   ============================================================ */

html,
body {
  overflow-x: hidden;
}

:root {
  /* ---- Type scale (fluid) ---- */
  --text-xs: clamp(0.75rem, 0.72rem + 0.15vw, 0.875rem);
  --text-sm: clamp(0.875rem, 0.83rem + 0.2vw, 1rem);
  --text-base: clamp(1rem, 0.96rem + 0.2vw, 1.125rem);
  --text-lg: clamp(1.125rem, 1.02rem + 0.55vw, 1.375rem);
  --text-xl: clamp(1.5rem, 1.25rem + 1.1vw, 2.125rem);
  --text-2xl: clamp(2rem, 1.4rem + 2.2vw, 3.25rem);
  --text-3xl: clamp(2.4rem, 1.2rem + 3.6vw, 4.5rem);
  --text-hero: clamp(2.75rem, 1rem + 5.5vw, 6.25rem);

  /* ---- 4px spacing system ---- */
  --space-1: 0.25rem;
  --space-2: 0.5rem;
  --space-3: 0.75rem;
  --space-4: 1rem;
  --space-5: 1.25rem;
  --space-6: 1.5rem;
  --space-8: 2rem;
  --space-10: 2.5rem;
  --space-12: 3rem;
  --space-16: 4rem;
  --space-20: 5rem;
  --space-24: 6rem;
  --space-32: 8rem;

  /* ---- Radius ---- */
  --radius-sm: 0.3rem;
  --radius-md: 0.5rem;
  --radius-lg: 0.85rem;
  --radius-xl: 1.25rem;
  --radius-full: 9999px;

  /* ---- Motion ---- */
  --transition-interactive: 180ms cubic-bezier(0.16, 1, 0.3, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);

  /* ---- Content widths ---- */
  --content-narrow: 640px;
  --content-default: 1000px;
  --content-wide: 1240px;
  --content-full: 100%;

  /* ---- Fonts ---- */
  --font-display: 'Boska', 'Georgia', serif;
  --font-body: 'General Sans', 'Segoe UI', sans-serif;
}

/* ================= LIGHT MODE (default) ================= */
:root,
[data-theme='light'] {
  --color-bg: #faf9f6;
  --color-surface: #ffffff;
  --color-surface-2: #f4f5f1;
  --color-surface-offset: #eef0ea;
  --color-surface-offset-2: #e6e9e1;
  --color-surface-dynamic: #dfe3da;
  --color-divider: #dfe2d9;
  --color-border: #d3d7cc;

  --color-text: #10192a;
  --color-text-muted: #57626f;
  --color-text-faint: #93998f;
  --color-text-inverse: #f7f8f4;

  /* Primary = brand navy */
  --color-primary: #0e2340;
  --color-primary-hover: #16314f;
  --color-primary-active: #081729;
  --color-primary-highlight: #d7dde6;

  /* Accent = brand forest green */
  --color-accent: #2f5525;
  --color-accent-hover: #3d6b30;
  --color-accent-active: #234015;
  --color-accent-highlight: #dbe6d5;

  --color-success: #2f5525;
  --color-success-highlight: #dbe6d5;
  --color-warning: #96541b;
  --color-warning-highlight: #e6d6c4;
  --color-error: #9a2c2c;
  --color-error-hover: #7d2323;
  --color-error-highlight: #e6cfcf;

  --shadow-sm: 0 1px 2px oklch(0.2 0.02 250 / 0.07);
  --shadow-md: 0 6px 18px oklch(0.2 0.02 250 / 0.1);
  --shadow-lg: 0 18px 44px oklch(0.2 0.02 250 / 0.16);
}

/* ================= DARK MODE ================= */
[data-theme='dark'] {
  --color-bg: #0a1220;
  --color-surface: #101c2c;
  --color-surface-2: #142335;
  --color-surface-offset: #182739;
  --color-surface-offset-2: #1c2e42;
  --color-surface-dynamic: #223650;
  --color-divider: #223349;
  --color-border: #2b3f58;

  --color-text: #e6eaef;
  --color-text-muted: #9baabb;
  --color-text-faint: #5f7186;
  --color-text-inverse: #101c2c;

  --color-primary: #6fa0d6;
  --color-primary-hover: #8fb6e2;
  --color-primary-active: #558bc4;
  --color-primary-highlight: #223349;

  --color-accent: #67b04d;
  --color-accent-hover: #7fc465;
  --color-accent-active: #549c3c;
  --color-accent-highlight: #1e3020;

  --color-success: #67b04d;
  --color-success-highlight: #1e3020;
  --color-warning: #d19a5c;
  --color-warning-highlight: #3a2c1c;
  --color-error: #d3736f;
  --color-error-hover: #de908c;
  --color-error-highlight: #3a2020;

  --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
  --shadow-md: 0 6px 18px oklch(0 0 0 / 0.45);
  --shadow-lg: 0 18px 44px oklch(0 0 0 / 0.55);
}

@media (prefers-color-scheme: dark) {
  :root:not([data-theme]) {
    --color-bg: #0a1220;
    --color-surface: #101c2c;
    --color-surface-2: #142335;
    --color-surface-offset: #182739;
    --color-surface-offset-2: #1c2e42;
    --color-surface-dynamic: #223650;
    --color-divider: #223349;
    --color-border: #2b3f58;
    --color-text: #e6eaef;
    --color-text-muted: #9baabb;
    --color-text-faint: #5f7186;
    --color-text-inverse: #101c2c;
    --color-primary: #6fa0d6;
    --color-primary-hover: #8fb6e2;
    --color-primary-active: #558bc4;
    --color-primary-highlight: #223349;
    --color-accent: #67b04d;
    --color-accent-hover: #7fc465;
    --color-accent-active: #549c3c;
    --color-accent-highlight: #1e3020;
    --shadow-sm: 0 1px 2px oklch(0 0 0 / 0.35);
    --shadow-md: 0 6px 18px oklch(0 0 0 / 0.45);
    --shadow-lg: 0 18px 44px oklch(0 0 0 / 0.55);
  }
}

/* ============================================================
   LAYOUT PRIMITIVES
   ============================================================ */

.container {
  max-width: var(--content-wide);
  margin-inline: auto;
  padding-inline: var(--space-5);
}
.container--default {
  max-width: var(--content-default);
}
.container--narrow {
  max-width: var(--content-narrow);
}

.section {
  padding-block: clamp(var(--space-16), 9vw, var(--space-32));
}
.section--tight {
  padding-block: clamp(var(--space-10), 6vw, var(--space-20));
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--color-accent);
}
.eyebrow::before {
  content: '';
  width: 22px;
  height: 2px;
  background: var(--color-accent);
  display: inline-block;
}

h1,
.h1 {
  font-family: var(--font-display);
  font-weight: 600;
}
h2,
.h2 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-2xl);
  color: var(--color-primary);
  letter-spacing: -0.01em;
}
[data-theme='dark'] h2,
[data-theme='dark'] .h2 {
  color: var(--color-text);
}
h3,
.h3 {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: var(--text-lg);
  color: var(--color-primary);
}
[data-theme='dark'] h3,
[data-theme='dark'] .h3 {
  color: var(--color-text);
}

.lede {
  font-size: var(--text-lg);
  color: var(--color-text-muted);
  max-width: 56ch;
}

/* ============================================================
   BUTTONS
   ============================================================ */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: var(--space-2);
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  padding: var(--space-4) var(--space-6);
  border-radius: var(--radius-md);
  white-space: nowrap;
  line-height: 1;
  min-height: 48px;
}
.btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.btn--primary {
  background: var(--color-accent);
  color: #fdfdfb;
  box-shadow: var(--shadow-sm);
}
.btn--primary:hover {
  background: var(--color-accent-hover);
  box-shadow: var(--shadow-md);
  transform: translateY(-1px);
}
.btn--primary:active {
  background: var(--color-accent-active);
  transform: translateY(0);
}
.btn--outline {
  background: transparent;
  color: #fdfdfb;
  border: 1.5px solid oklch(from #fdfdfb l c h / 0.5);
}
.btn--outline:hover {
  background: oklch(from #fdfdfb l c h / 0.12);
  border-color: #fdfdfb;
}
.btn--ghost {
  background: transparent;
  color: var(--color-primary);
  border: 1.5px solid var(--color-border);
}
[data-theme='dark'] .btn--ghost {
  color: var(--color-text);
}
.btn--ghost:hover {
  background: var(--color-surface-2);
  border-color: var(--color-accent);
}
.btn--sm {
  padding: var(--space-2) var(--space-4);
  min-height: 38px;
  font-size: var(--text-xs);
}
.btn--block {
  width: 100%;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--color-accent);
  color: #fff;
  padding: var(--space-3) var(--space-5);
  z-index: 200;
  border-radius: 0 0 var(--radius-md) 0;
}
.skip-link:focus {
  left: 0;
}

.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: oklch(from var(--color-bg) l c h / 0.92);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--color-divider);
  transition:
    transform 0.3s var(--ease-out),
    box-shadow 0.3s var(--ease-out);
}
.header--hidden {
  transform: translateY(-100%);
}
.header--scrolled {
  box-shadow: var(--shadow-sm);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-6);
  padding-block: var(--space-3);
}

.brand {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  text-decoration: none;
  color: var(--color-text);
  flex-shrink: 0;
}
.brand__icon {
  height: 44px;
  width: auto;
}
.brand__name {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}
.brand__name strong {
  font-family: var(--font-display);
  font-size: var(--text-base);
  font-weight: 600;
  color: var(--color-primary);
}
[data-theme='dark'] .brand__name strong {
  color: var(--color-text);
}
.brand__name span {
  font-size: 0.65rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--color-accent);
  font-weight: 600;
}

.nav {
  display: flex;
  align-items: center;
  gap: var(--space-6);
}
.nav__links {
  display: flex;
  gap: var(--space-6);
}
.nav__links a {
  font-size: var(--text-sm);
  font-weight: 500;
  color: var(--color-text-muted);
  text-decoration: none;
  padding-block: var(--space-2);
  position: relative;
}
.nav__links a:hover {
  color: var(--color-primary);
}
[data-theme='dark'] .nav__links a:hover {
  color: var(--color-text);
}
.nav__links a::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: -2px;
  width: 0;
  height: 2px;
  background: var(--color-accent);
  transition: width var(--transition-interactive);
}
.nav__links a:hover::after {
  width: 100%;
}

.header__actions {
  display: flex;
  align-items: center;
  gap: var(--space-3);
}
.phone-chip {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  font-weight: 600;
  color: var(--color-primary);
  text-decoration: none;
}
[data-theme='dark'] .phone-chip {
  color: var(--color-text);
}
.phone-chip svg {
  width: 16px;
  height: 16px;
  color: var(--color-accent);
}

.theme-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: var(--radius-full);
  color: var(--color-text-muted);
  border: 1px solid var(--color-border);
}
.theme-toggle:hover {
  color: var(--color-primary);
  border-color: var(--color-accent);
}
.theme-toggle svg {
  width: 18px;
  height: 18px;
}

.lang-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 38px;
  min-width: 38px;
  padding-inline: var(--space-2);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text-muted);
  font-family: var(--font-body);
  font-size: var(--text-xs);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: none;
}
.lang-toggle:hover {
  color: var(--color-primary);
  border-color: var(--color-accent);
}
[data-theme='dark'] .lang-toggle {
  color: var(--color-text-muted);
}
[data-theme='dark'] .lang-toggle:hover {
  color: var(--color-text);
}

.mobile-menu__lang {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 40px;
  min-width: 52px;
  padding-inline: var(--space-3);
  border-radius: var(--radius-full);
  border: 1px solid var(--color-border);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: var(--text-sm);
  font-weight: 700;
  letter-spacing: 0.04em;
  background: none;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
}
[data-theme='dark'] .nav-toggle {
  color: var(--color-text);
}
.nav-toggle svg {
  width: 24px;
  height: 24px;
}

@media (max-width: 860px) {
  .nav__links {
    display: none;
  }
  .header__actions .btn--primary.btn--sm {
    display: none;
  }
  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 560px) {
  .header__actions .phone-chip {
    display: none;
  }
  .header__actions {
    gap: var(--space-2);
  }
  .brand__icon {
    height: 36px;
  }
  .brand__name span {
    display: none;
  }
  .lang-toggle {
    width: 34px;
    height: 34px;
    min-width: 34px;
    padding-inline: 0;
    font-size: 11px;
  }
}

@media (max-width: 400px) {
  .brand__name strong {
    font-size: var(--text-sm);
  }
}

/* Mobile menu panel */
.mobile-menu {
  position: fixed;
  inset: 0;
  background: var(--color-bg);
  z-index: 150;
  display: flex;
  flex-direction: column;
  padding: var(--space-6);
  transform: translateX(100%);
  transition: transform 0.35s var(--ease-out);
}
.mobile-menu.is-open {
  transform: translateX(0);
}
.mobile-menu__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.mobile-menu__close {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-text);
}
.mobile-menu__close svg {
  width: 24px;
  height: 24px;
}
.mobile-menu__links {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-top: var(--space-8);
}
.mobile-menu__links a {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  text-decoration: none;
  padding-block: var(--space-3);
  border-bottom: 1px solid var(--color-divider);
}
[data-theme='dark'] .mobile-menu__links a {
  color: var(--color-text);
}
.mobile-menu__footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: var(--space-4);
}

/* ============================================================
   HERO
   ============================================================ */

.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  color: #fdfdfb;
}
.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    100deg,
    oklch(0.08 0.03 250 / 0.92) 0%,
    oklch(0.1 0.03 250 / 0.72) 42%,
    oklch(0.15 0.04 250 / 0.28) 68%,
    oklch(0.2 0.02 150 / 0.1) 100%
  );
}
.hero__scrim::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, oklch(0.06 0.03 250 / 0.55), transparent 55%);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding-block: clamp(var(--space-20), 14vw, var(--space-32)) clamp(var(--space-16), 8vw, var(--space-20));
  max-width: 760px;
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #cfe3c6;
  margin-bottom: var(--space-5);
}
.hero__badge svg {
  width: 14px;
  height: 14px;
}

.hero h1 {
  font-size: var(--text-hero);
  margin-bottom: var(--space-5);
  color: #ffffff;
}
.hero h1 em {
  font-style: normal;
  color: #a9d19a;
}

.hero p.lede {
  color: #dfe4e0;
  font-size: var(--text-lg);
  margin-bottom: var(--space-8);
}

.hero__ctas {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-4);
  margin-bottom: var(--space-8);
}

.hero__trust {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-5);
  font-size: var(--text-xs);
  color: #cfd6cf;
  letter-spacing: 0.03em;
}
.hero__trust li {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  list-style: none;
}
.hero__trust svg {
  width: 15px;
  height: 15px;
  color: #a9d19a;
  flex-shrink: 0;
}

@media (max-width: 640px) {
  .hero {
    min-height: 100vh;
    align-items: flex-end;
  }
  .hero__ctas .btn {
    width: 100%;
  }
  .hero__ctas {
    flex-direction: column;
  }
}

/* ============================================================
   VALUES STRIP
   ============================================================ */

.values-strip {
  background: var(--color-primary);
  color: #eef1ee;
  padding-block: var(--space-8);
}
[data-theme='dark'] .values-strip {
  background: var(--color-surface-2);
}
.values-strip__row {
  display: flex;
  flex-wrap: wrap;
  gap: var(--space-6) var(--space-10);
  justify-content: space-between;
  align-items: center;
}
.values-strip__item {
  display: flex;
  align-items: center;
  gap: var(--space-3);
  font-size: var(--text-sm);
  font-weight: 500;
  flex: 1 1 200px;
}
.values-strip__item svg {
  width: 20px;
  height: 20px;
  color: #a9d19a;
  flex-shrink: 0;
}

/* ============================================================
   SERVICES
   ============================================================ */

.services-head {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-12);
  align-items: end;
  margin-bottom: var(--space-16);
}
@media (max-width: 780px) {
  .services-head {
    grid-template-columns: 1fr;
    gap: var(--space-5);
  }
}

.service-feature {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-10);
  align-items: center;
  padding-block: var(--space-12);
  border-top: 1px solid var(--color-divider);
}
.service-feature:first-of-type {
  border-top: none;
}
.service-feature--reverse .service-feature__media {
  order: 2;
}
.service-feature--reverse .service-feature__text {
  order: 1;
}
.service-feature__media {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4/3;
}
.service-feature__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.service-feature:hover .service-feature__media img {
  transform: scale(1.04);
}
.service-feature__index {
  font-family: var(--font-display);
  font-size: var(--text-sm);
  color: var(--color-accent);
  font-weight: 600;
  margin-bottom: var(--space-3);
  display: block;
}
.service-feature__text h3 {
  font-size: var(--text-xl);
  margin-bottom: var(--space-3);
}
.service-feature__text p {
  color: var(--color-text-muted);
}

@media (max-width: 780px) {
  .service-feature,
  .service-feature--reverse {
    grid-template-columns: 1fr;
  }
  .service-feature--reverse .service-feature__media,
  .service-feature--reverse .service-feature__text {
    order: initial;
  }
}

.more-services {
  margin-top: var(--space-16);
  padding-top: var(--space-12);
  border-top: 1px solid var(--color-divider);
}
.more-services__label {
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-muted);
  margin-bottom: var(--space-6);
}
.more-services__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: var(--space-6) var(--space-8);
}
.more-services__item {
  display: flex;
  align-items: flex-start;
  gap: var(--space-3);
}
.more-services__item svg {
  width: 20px;
  height: 20px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.more-services__item h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-base);
  color: var(--color-text);
  margin-bottom: var(--space-1);
}
.more-services__item p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
}

/* ============================================================
   ABOUT / VALUES
   ============================================================ */

.about {
  background: var(--color-surface-2);
}
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: var(--space-16);
  align-items: center;
}
@media (max-width: 860px) {
  .about__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}
.about__pull {
  border-left: none;
  padding-left: 0;
}
.about__pull blockquote {
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-primary);
  line-height: 1.3;
  margin-bottom: var(--space-5);
  position: relative;
}
[data-theme='dark'] .about__pull blockquote {
  color: var(--color-text);
}
.about__rule {
  width: 64px;
  height: 3px;
  background: var(--color-accent);
  margin-bottom: var(--space-6);
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-6);
  margin-top: var(--space-10);
}
.about__stat strong {
  display: block;
  font-family: var(--font-display);
  font-size: var(--text-xl);
  color: var(--color-accent);
}
.about__stat span {
  font-size: var(--text-xs);
  color: var(--color-text-muted);
  letter-spacing: 0.04em;
}
@media (max-width: 480px) {
  .about__stats {
    grid-template-columns: 1fr;
    gap: var(--space-4);
  }
}

.faith-note {
  margin-top: var(--space-10);
  padding: var(--space-6);
  background: var(--color-surface);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  display: flex;
  gap: var(--space-4);
  align-items: flex-start;
}
.faith-note svg {
  width: 26px;
  height: 26px;
  color: var(--color-accent);
  flex-shrink: 0;
  margin-top: 2px;
}
.faith-note p {
  font-size: var(--text-sm);
  color: var(--color-text-muted);
  font-style: italic;
}

/* ============================================================
   GALLERY
   ============================================================ */

.gallery {
  columns: 3 260px;
  column-gap: var(--space-5);
}
.gallery__item {
  break-inside: avoid;
  margin-bottom: var(--space-5);
  border-radius: var(--radius-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow-sm);
}
.gallery__item img {
  width: 100%;
  display: block;
}
.gallery__caption {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: var(--space-4) var(--space-4) var(--space-3);
  background: linear-gradient(to top, oklch(0.08 0.03 250 / 0.82), transparent);
  color: #fff;
  font-size: var(--text-xs);
  font-weight: 600;
  letter-spacing: 0.03em;
}

/* ============================================================
   QUOTE FORM
   ============================================================ */

.quote {
  background: var(--color-primary);
  color: #eef1ee;
  position: relative;
  overflow: hidden;
}
[data-theme='dark'] .quote {
  background: var(--color-surface-2);
}
.quote__grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: var(--space-16);
  align-items: start;
}
@media (max-width: 900px) {
  .quote__grid {
    grid-template-columns: 1fr;
    gap: var(--space-10);
  }
}
.quote__intro h2 {
  color: #ffffff;
  margin-bottom: var(--space-4);
}
.quote__intro p {
  color: #cfd6cf;
  margin-bottom: var(--space-8);
}
.quote__contact-list {
  display: flex;
  flex-direction: column;
  gap: var(--space-5);
}
.quote__contact-item {
  display: flex;
  align-items: center;
  gap: var(--space-4);
}
.quote__contact-item .icon-wrap {
  width: 44px;
  height: 44px;
  border-radius: var(--radius-md);
  border: 1.5px solid oklch(0.9 0.02 150 / 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.quote__contact-item .icon-wrap svg {
  width: 20px;
  height: 20px;
  color: #a9d19a;
}
.quote__contact-item a,
.quote__contact-item span {
  color: #fff;
  font-weight: 600;
  text-decoration: none;
  font-size: var(--text-base);
}
.quote__contact-item small {
  display: block;
  color: #b9c2b8;
  font-size: var(--text-xs);
  font-weight: 400;
}

.quote-form {
  background: var(--color-surface);
  border-radius: var(--radius-xl);
  padding: clamp(var(--space-6), 4vw, var(--space-10));
  box-shadow: var(--shadow-lg);
  color: var(--color-text);
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--space-5);
}
@media (max-width: 560px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
.field {
  display: flex;
  flex-direction: column;
  gap: var(--space-2);
  margin-bottom: var(--space-5);
}
.field label {
  font-size: var(--text-xs);
  font-weight: 600;
  color: var(--color-text-muted);
  letter-spacing: 0.03em;
}
.field input,
.field textarea {
  background: var(--color-surface-2);
  border: 1.5px solid var(--color-border);
  border-radius: var(--radius-md);
  padding: var(--space-3) var(--space-4);
  font-size: var(--text-base);
  color: var(--color-text);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--color-accent);
  outline: none;
  box-shadow: 0 0 0 3px var(--color-accent-highlight);
}
.field textarea {
  resize: vertical;
  min-height: 96px;
}
.field-error {
  font-size: var(--text-xs);
  color: var(--color-error);
  min-height: 1em;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--space-3);
  margin-bottom: var(--space-2);
}
@media (max-width: 560px) {
  .checkbox-grid {
    grid-template-columns: 1fr;
  }
}
.checkbox-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
  padding: var(--space-2) var(--space-3);
  border: 1px solid var(--color-border);
  border-radius: var(--radius-md);
  cursor: pointer;
}
.checkbox-item:hover {
  border-color: var(--color-accent);
  background: var(--color-surface-2);
}
.checkbox-item input {
  width: 16px;
  height: 16px;
  accent-color: var(--color-accent);
  flex-shrink: 0;
}

.radio-row {
  display: flex;
  gap: var(--space-4);
  flex-wrap: wrap;
}
.radio-item {
  display: flex;
  align-items: center;
  gap: var(--space-2);
  font-size: var(--text-sm);
}
.radio-item input {
  accent-color: var(--color-accent);
}

.form-success {
  display: none;
  align-items: flex-start;
  gap: var(--space-3);
  background: var(--color-success-highlight);
  color: var(--color-success);
  border-radius: var(--radius-md);
  padding: var(--space-4);
  font-size: var(--text-sm);
  margin-top: var(--space-4);
}
.form-success.is-visible {
  display: flex;
}
.form-success svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  margin-top: 1px;
}

/* ============================================================
   FOOTER
   ============================================================ */

.footer {
  background: var(--color-bg);
  border-top: 1px solid var(--color-divider);
  padding-block: var(--space-16) var(--space-8);
}
.footer__grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: var(--space-10);
}
@media (max-width: 860px) {
  .footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 540px) {
  .footer__grid {
    grid-template-columns: 1fr;
  }
}
.footer__brand img {
  width: 180px;
  margin-bottom: var(--space-4);
}
.footer__brand p {
  color: var(--color-text-muted);
  font-size: var(--text-sm);
  max-width: 34ch;
}
.footer h4 {
  font-family: var(--font-body);
  font-weight: 600;
  font-size: var(--text-sm);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--color-text);
  margin-bottom: var(--space-4);
}
.footer ul {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
}
.footer ul a {
  color: var(--color-text-muted);
  text-decoration: none;
  font-size: var(--text-sm);
  display: flex;
  align-items: center;
  gap: var(--space-2);
}
.footer ul a:hover {
  color: var(--color-accent);
}
.footer ul a svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
}
.footer__bottom {
  margin-top: var(--space-12);
  padding-top: var(--space-6);
  border-top: 1px solid var(--color-divider);
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: var(--space-4);
  font-size: var(--text-xs);
  color: var(--color-text-faint);
}
.footer__bottom .tagline {
  color: var(--color-accent);
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* ============================================================
   REVEAL ANIMATION
   ============================================================ */

[data-reveal] {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 0.7s var(--ease-out),
    transform 0.7s var(--ease-out);
}
[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Back to top */
.back-to-top {
  position: fixed;
  right: var(--space-5);
  bottom: var(--space-5);
  width: 46px;
  height: 46px;
  border-radius: var(--radius-full);
  background: var(--color-accent);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-md);
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  z-index: 90;
}
.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}
.back-to-top svg {
  width: 20px;
  height: 20px;
}
