/* ============================================================
   Juyaz — Rental Property Management
   Dark theme · Slate-blue accent
   ============================================================ */

:root {
  --bg: #101215;
  --bg-deep: #0D0F12;
  --bg-soft: #121E2B;
  --surface: #161C24;
  --surface-2: #1B232E;
  --border: #253140;
  --line: #2A3644;

  --accent: #5B7C99;
  --accent-dark: #486581;
  --accent-light: #CBD5E1;
  --accent-deep: #121E2B;

  --text: #E9EEF2;
  --muted: #A3B3C2;
  --muted-2: #7E8FA0;

  --font: "Manrope", "Segoe UI", system-ui, sans-serif;
  --serif: "Lora", Georgia, serif;

  --shadow: 0 18px 40px rgba(0, 0, 0, 0.38);
  --shadow-soft: 0 10px 26px rgba(0, 0, 0, 0.30);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-size: 16px;
  font-family: var(--font);
  background-color: var(--bg);
  color: var(--text);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

ul {
  list-style: none;
}

h1, h2, h3 {
  font-family: var(--font);
  line-height: 1.15;
  font-weight: 800;
  letter-spacing: -0.02em;
}

.container {
  width: 100%;
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 700;
  font-size: 16px;
  padding: 13px 26px;
  border-radius: 8px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-accent {
  background-color: var(--accent);
  color: #0B0E12;
  border-color: var(--accent);
}

.btn-accent:hover {
  background-color: var(--accent-light);
  border-color: var(--accent-light);
}

.btn-ghost {
  background-color: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--accent-light);
  color: var(--accent-light);
}

.btn-block {
  width: 100%;
}

/* ---------- Building Navigation ---------- */
.building-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background-color: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

.building-nav.is-scrolled {
  box-shadow: var(--shadow-soft);
}

.nav-inner {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

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

.wordmark {
  font-weight: 800;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--text);
}

.building {
  width: 30px;
  height: 38px;
  display: inline-flex;
  flex-direction: column;
  flex-shrink: 0;
}

.building .roof {
  height: 4px;
  background-color: var(--accent-light);
  border-radius: 2px 2px 0 0;
  margin: 0 -2px;
}

.building .facade {
  flex: 1;
  background-color: var(--accent);
  border-radius: 0 0 3px 3px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  padding: 3px 3px 0;
}

.building .floor {
  display: flex;
  gap: 3px;
}

.building .win {
  width: 6px;
  height: 6px;
  background-color: var(--bg-soft);
  border-radius: 1px;
}

.building .door {
  width: 9px;
  height: 10px;
  margin-top: 1px;
  background-color: var(--accent-dark);
  border-radius: 2px 2px 0 0;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links a {
  font-weight: 600;
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--accent-light);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 14px;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px;
  height: 44px;
  padding: 10px;
  background-color: transparent;
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
}

.nav-toggle .bar {
  display: block;
  width: 100%;
  height: 2px;
  background-color: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.nav-toggle.is-open .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav-toggle.is-open .bar:nth-child(2) {
  opacity: 0;
}

.nav-toggle.is-open .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.mobile-menu {
  display: none;
  border-top: 1px solid var(--border);
  background-color: var(--bg-deep);
}

.mobile-menu ul {
  padding: 16px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.mobile-menu a {
  display: block;
  padding: 12px 0;
  font-weight: 600;
  color: var(--text);
  border-bottom: 1px solid var(--border);
}

.mobile-menu .btn {
  margin-top: 14px;
}

.mobile-menu.is-open {
  display: block;
}

/* ---------- Door Hero ---------- */
.door-hero {
  position: relative;
  padding: 84px 0 96px;
  background:
    radial-gradient(900px 420px at 82% 8%, #16283A 0%, rgba(22, 40, 58, 0) 60%),
    linear-gradient(180deg, var(--bg-deep) 0%, var(--bg) 100%);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero-inner {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: center;
  gap: 48px;
}

.hero-copy {
  max-width: 620px;
}

.eyebrow {
  display: inline-block;
  font-weight: 700;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.hero-copy h1 {
  font-size: 56px;
  font-weight: 800;
  color: var(--text);
  margin-bottom: 22px;
}

.hero-sub {
  font-size: 18px;
  color: var(--muted);
  max-width: 540px;
  margin-bottom: 30px;
}

.hero-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 28px;
}

.hero-points {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.hero-points li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-2);
}

.hero-points .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background-color: var(--accent);
}

/* Door scene */
.hero-visual {
  display: flex;
  justify-content: center;
}

.door-scene {
  position: relative;
  width: 320px;
  height: 400px;
}

.door-glow {
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 50% 42%, rgba(91, 124, 153, 0.30) 0%, rgba(91, 124, 153, 0) 62%);
}

.doorway {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 210px;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.fanlight {
  width: 148px;
  height: 40px;
  background-color: var(--accent-light);
  border: 6px solid var(--accent-dark);
  border-radius: 10px 10px 3px 3px;
  display: flex;
  justify-content: center;
  gap: 16px;
  padding: 6px 0;
}

.fan-bar {
  display: block;
  width: 4px;
  height: 100%;
  background-color: var(--accent);
  border-radius: 2px;
}

.door-frame {
  width: 196px;
  height: 250px;
  background-color: var(--accent-dark);
  border-radius: 10px 10px 0 0;
  padding: 12px;
  margin-top: 4px;
}

.door-panel {
  position: relative;
  width: 100%;
  height: 100%;
  background-color: var(--accent);
  border-radius: 5px 5px 0 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 14px 16px;
}

.recess {
  display: block;
  background-color: var(--accent-dark);
  border-radius: 4px;
}

.r-top {
  height: 44px;
}

.r-mid {
  height: 44px;
}

.r-bot {
  height: 64px;
}

.knob {
  position: absolute;
  right: 18px;
  top: 50%;
  transform: translateY(-50%);
  width: 15px;
  height: 15px;
  background-color: var(--accent-light);
  border-radius: 50%;
  box-shadow: 0 0 0 3px var(--accent-dark);
}

.door-mat {
  width: 132px;
  height: 15px;
  background-color: var(--surface-2);
  border-radius: 4px;
  margin-top: 8px;
  box-shadow: inset 0 1px 0 var(--border);
}

.plant {
  position: absolute;
  bottom: 36px;
  right: 4px;
  width: 74px;
  height: 82px;
}

.plant .leaf {
  position: absolute;
  width: 18px;
  height: 34px;
  background-color: var(--accent);
  border-radius: 50% 50% 50% 0;
}

.plant .l1 {
  bottom: 30px;
  left: 16px;
  transform: rotate(-38deg);
}

.plant .l2 {
  bottom: 32px;
  left: 28px;
  transform: rotate(0deg);
  background-color: var(--accent-dark);
}

.plant .l3 {
  bottom: 30px;
  left: 40px;
  transform: rotate(38deg);
}

.plant .pot {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 40px;
  height: 30px;
  background-color: var(--accent-dark);
  clip-path: polygon(14% 0, 86% 0, 100% 100%, 0 100%);
}

.door-caption {
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.04em;
  color: var(--muted-2);
  white-space: nowrap;
}

/* ---------- Statement ---------- */
.statement-section {
  padding: 88px 0;
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.statement {
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 500;
  line-height: 1.35;
  color: var(--text);
  max-width: 900px;
  text-align: center;
  margin: 0 auto;
}

.statement::before,
.statement::after {
  content: "";
  display: block;
  width: 64px;
  height: 4px;
  background-color: var(--accent);
  margin: 0 auto 26px;
  border-radius: 2px;
}

.statement::after {
  margin: 26px auto 0;
}

/* ---------- Stats ---------- */
.stats-section {
  padding: 72px 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.stat {
  text-align: center;
  padding: 38px 24px;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
}

.stat-num {
  font-size: 58px;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--accent-light);
  line-height: 1;
}

.stat-suffix {
  font-size: 30px;
  font-weight: 800;
  color: var(--accent-light);
}

.stat-label {
  display: block;
  margin-top: 12px;
  font-size: 15px;
  font-weight: 600;
  color: var(--muted);
}

/* ---------- Services ---------- */
.services-section {
  padding: 96px 0;
  background-color: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

.services-head {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 48px;
  align-items: end;
  margin-bottom: 56px;
}

.section-intro h2 {
  font-size: 40px;
  color: var(--text);
}

.services-lede {
  font-size: 17px;
  color: var(--muted);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 30px 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.service-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.service-num {
  display: inline-block;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
  color: var(--accent);
  margin-bottom: 16px;
}

.service-card h3 {
  font-size: 20px;
  margin-bottom: 12px;
  color: var(--text);
}

.service-card p {
  font-size: 15px;
  color: var(--muted);
}

/* ---------- Leasing process ---------- */
.leasing-section {
  padding: 96px 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.leasing-section .section-intro {
  margin-bottom: 56px;
}

.process-list {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  counter-reset: step;
}

.process-step {
  position: relative;
  padding: 0 22px 0 0;
}

.process-step::before {
  content: "";
  position: absolute;
  top: 26px;
  left: 0;
  right: 16px;
  height: 2px;
  background-color: var(--line);
}

.process-step:last-child::before {
  display: none;
}

.step-num {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background-color: var(--accent);
  color: #0B0E12;
  font-weight: 800;
  font-size: 16px;
  margin-bottom: 22px;
}

.process-step h3 {
  font-size: 19px;
  margin-bottom: 10px;
  color: var(--text);
}

.process-step p {
  font-size: 14px;
  color: var(--muted);
}

/* ---------- Compare table ---------- */
.compare-section {
  padding: 96px 0;
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.compare-section .section-intro {
  margin-bottom: 48px;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--border);
  border-radius: 12px;
  background-color: var(--surface);
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.compare-table th,
.compare-table td {
  padding: 18px 20px;
  text-align: left;
  font-size: 15px;
  color: var(--muted);
  border-bottom: 1px solid var(--border);
}

.compare-table thead th {
  background-color: var(--accent-dark);
  color: var(--text);
  font-weight: 700;
  font-size: 16px;
}

.compare-table tbody th {
  color: var(--text);
  font-weight: 700;
  white-space: nowrap;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-table tbody tr:hover td {
  background-color: var(--surface-2);
}

/* ---------- Properties ---------- */
.properties-section {
  padding: 96px 0 0;
  background-color: var(--bg-deep);
  border-bottom: 1px solid var(--border);
}

.properties-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-tabs {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.filter-tab {
  padding: 9px 18px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 999px;
  cursor: pointer;
  transition: background-color 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.filter-tab:hover {
  border-color: var(--accent);
  color: var(--accent-light);
}

.filter-tab.is-active {
  background-color: var(--accent);
  border-color: var(--accent);
  color: #0B0E12;
}

.property-track {
  display: flex;
  gap: 22px;
  overflow-x: auto;
  padding: 8px 24px 72px;
  scroll-snap-type: x mandatory;
  scrollbar-width: thin;
  scrollbar-color: var(--accent) var(--surface-2);
}

.property-track::-webkit-scrollbar {
  height: 10px;
}

.property-track::-webkit-scrollbar-track {
  background: var(--surface-2);
}

.property-track::-webkit-scrollbar-thumb {
  background: var(--accent-dark);
  border-radius: 6px;
}

.property-card {
  flex: 0 0 280px;
  scroll-snap-align: start;
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 22px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}

.property-card:hover {
  border-color: var(--accent);
  transform: translateY(-4px);
}

.prop-tag {
  display: inline-block;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent-light);
  background-color: var(--accent-deep);
  border: 1px solid var(--accent-dark);
  padding: 5px 12px;
  border-radius: 999px;
  margin-bottom: 16px;
}

.prop-art {
  height: 120px;
  border-radius: 10px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: flex-end;
  padding: 12px;
  margin-bottom: 18px;
}

.prop-roof {
  width: 64px;
  height: 8px;
  background-color: var(--accent-light);
  border-radius: 3px 3px 0 0;
}

.prop-body {
  width: 96px;
  height: 76px;
  background-color: var(--accent);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  position: relative;
}

.prop-win {
  width: 18px;
  height: 18px;
  background-color: var(--bg-soft);
  border-radius: 2px;
}

.prop-door {
  position: absolute;
  bottom: 0;
  width: 22px;
  height: 30px;
  background-color: var(--accent-dark);
  border-radius: 3px 3px 0 0;
}

.property-card h3 {
  font-size: 18px;
  margin-bottom: 8px;
  color: var(--text);
}

.prop-meta {
  font-size: 14px;
  color: var(--muted);
  margin-bottom: 12px;
}

.prop-price {
  font-size: 24px;
  font-weight: 800;
  color: var(--accent-light);
}

.prop-price span {
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-2);
}

.property-card.is-hidden {
  display: none;
}

/* ---------- About ---------- */
.about-section {
  padding: 96px 0;
  background-color: var(--bg);
  border-bottom: 1px solid var(--border);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 60px;
  align-items: center;
}

.about-copy h2 {
  font-size: 38px;
  margin-bottom: 22px;
  color: var(--text);
}

.about-copy p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 18px;
}

.about-list {
  margin-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.about-list li {
  position: relative;
  padding-left: 28px;
  font-weight: 600;
  color: var(--text);
}

.about-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 9px;
  width: 12px;
  height: 12px;
  border-radius: 3px;
  background-color: var(--accent);
}

.about-panel {
  display: flex;
  justify-content: center;
}

.about-building {
  width: 240px;
  height: 300px;
  background-color: var(--bg-soft);
  border: 1px solid var(--border);
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 28px;
}

.ab-roof {
  width: 150px;
  height: 10px;
  background-color: var(--accent-light);
  border-radius: 4px 4px 0 0;
}

.ab-floor {
  width: 150px;
  height: 44px;
  background-color: var(--accent);
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}

.ab-win {
  width: 24px;
  height: 24px;
  background-color: var(--bg-soft);
  border-radius: 2px;
}

.ab-door {
  width: 40px;
  height: 44px;
  background-color: var(--accent-dark);
  border-radius: 4px 4px 0 0;
  margin-top: 4px;
}

/* ---------- Contact ---------- */
.contact-section {
  padding: 96px 0;
  background-color: var(--bg-soft);
  border-bottom: 1px solid var(--border);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}

.contact-info h2 {
  font-size: 38px;
  margin-bottom: 18px;
  color: var(--text);
}

.contact-info > p {
  font-size: 17px;
  color: var(--muted);
  margin-bottom: 28px;
}

.contact-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-list li {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.contact-list strong {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted-2);
}

.contact-list a,
.contact-list span {
  font-size: 16px;
  color: var(--text);
  font-weight: 600;
}

.contact-list a:hover {
  color: var(--accent-light);
}

.contact-form {
  background-color: var(--surface);
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 32px;
}

.field {
  margin-bottom: 18px;
}

.field label {
  display: block;
  font-size: 14px;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 8px;
}

.field input,
.field textarea {
  width: 100%;
  padding: 13px 16px;
  font-size: 16px;
  font-family: var(--font);
  color: var(--text);
  background-color: var(--bg-deep);
  border: 1px solid var(--border);
  border-radius: 8px;
  resize: vertical;
}

.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--accent);
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.form-note {
  margin-top: 14px;
  font-size: 15px;
  font-weight: 600;
  color: var(--accent-light);
  min-height: 20px;
}

/* ---------- Split CTA ---------- */
.cta-section {
  padding: 96px 0;
  background-color: var(--bg-deep);
}

.cta-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.cta-panel {
  padding: 48px;
  border-radius: 14px;
  background-color: var(--surface);
  border: 1px solid var(--border);
}

.cta-panel h2 {
  font-size: 32px;
  margin-bottom: 14px;
  color: var(--text);
}

.cta-panel p {
  font-size: 16px;
  color: var(--muted);
  margin-bottom: 26px;
}

.cta-alt {
  background-color: var(--accent);
  border-color: var(--accent);
}

.cta-alt h2 {
  color: #0B0E12;
}

.cta-alt p {
  color: #1C2733;
}

.cta-alt .eyebrow {
  color: #0B0E12;
}

.cta-alt .btn-ghost {
  border-color: #0B0E12;
  color: #0B0E12;
}

.cta-alt .btn-ghost:hover {
  background-color: #0B0E12;
  color: var(--accent-light);
}

/* ---------- Footer ---------- */
.site-footer {
  background-color: var(--bg-deep);
  border-top: 3px solid var(--accent);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
  gap: 40px;
  padding-top: 60px;
  padding-bottom: 48px;
}

.footer-col h3 {
  font-size: 15px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 18px;
}

.footer-col ul {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-col a,
.footer-col span {
  font-size: 15px;
  color: var(--muted);
  transition: color 0.2s ease;
}

.footer-col a:hover {
  color: var(--accent-light);
}

.footer-about p {
  margin-top: 18px;
  font-size: 15px;
  color: var(--muted);
  max-width: 280px;
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 22px 0;
}

.footer-bottom p {
  font-size: 14px;
  color: var(--muted-2);
}

/* ---------- Scroll reveal ---------- */
.fade-up {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-up.visible {
  opacity: 1;
  transform: none;
}

/* ---------- Responsive ---------- */
@media (max-width: 980px) {
  .hero-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-copy h1 {
    font-size: 44px;
  }

  .hero-copy {
    max-width: none;
  }

  .hero-visual {
    justify-content: center;
  }

  .services-head {
    grid-template-columns: 1fr;
    gap: 20px;
  }

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

  .process-list {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .process-step {
    padding: 0 0 0 72px;
  }

  .process-step::before {
    top: 0;
    left: 25px;
    right: auto;
    bottom: -28px;
    width: 2px;
    height: auto;
  }

  .process-step:last-child::before {
    display: none;
  }

  .step-num {
    position: absolute;
    left: 0;
    top: 0;
    margin-bottom: 0;
  }

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

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }
}

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

  .nav-actions .btn-accent {
    display: none;
  }

  .nav-toggle {
    display: flex;
  }
}

@media (max-width: 640px) {
  .hero-copy h1 {
    font-size: 34px;
  }

  .hero-sub {
    font-size: 16px;
  }

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

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

  .statement {
    font-size: 25px;
  }

  .cta-split {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro h2,
  .about-copy h2,
  .contact-info h2 {
    font-size: 30px;
  }

  .door-scene {
    width: 280px;
    height: 360px;
  }
}
