/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', sans-serif;
  color: #e8e2d8;
  background: #111010;
  line-height: 1.7;
  font-size: 16px;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* ===== VARIABLES ===== */
:root {
  --gold: #c49a4e;
  --gold-dim: #8a6a2e;
  --dark: #111010;
  --dark-2: #1a1917;
  --dark-3: #222120;
  --dark-4: #2d2b29;
  --mid: #9a9088;
  --light: #e8e2d8;
  --cream: #f0ebe0;
  --border: #333130;
  --border-light: #3d3b38;
  --white: #ffffff;
  --shadow: 0 8px 40px rgba(0,0,0,0.5);
}

/* ===== TYPOGRAPHY ===== */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.1;
  color: var(--cream);
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(3rem, 6vw, 5.5rem); font-weight: 700; }
h2 { font-size: clamp(2rem, 3.5vw, 3rem); font-weight: 600; margin-bottom: 1rem; }
h3 { font-size: 1.2rem; font-weight: 600; margin-bottom: 0.6rem; color: var(--cream); }

p { font-size: 0.93rem; color: var(--mid); line-height: 1.85; }

.section-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.75rem;
  display: block;
}

.center { text-align: center; }

/* ===== LAYOUT ===== */
.container { max-width: 1120px; margin: 0 auto; padding: 0 32px; }
section { padding: 112px 0; }

.divider {
  display: block;
  width: 40px;
  height: 2px;
  background: var(--gold);
  margin: 1.25rem 0 2rem;
}
.divider.center { margin-left: auto; margin-right: auto; }

/* ===== BUTTON ===== */
.btn {
  display: inline-block;
  background: var(--gold);
  color: var(--dark);
  padding: 15px 42px;
  border: none;
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s, transform 0.15s;
}
.btn:hover {
  background: #d4aa5e;
  transform: translateY(-1px);
}

/* ===== NAVBAR ===== */
#navbar {
  position: fixed;
  top: 0;
  width: 100%;
  z-index: 100;
  background: rgba(17,16,16,0.97);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
#navbar.scrolled { box-shadow: 0 2px 30px rgba(0,0,0,0.5); }

.nav-container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
}
.logo img {
  height: 36px;
  width: auto;
  background: var(--dark-3);
  padding: 6px;
  border-radius: 4px;
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav-links a {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--cream); }

.sister-link {
  color: var(--gold) !important;
  border: 1px solid var(--gold-dim);
  padding: 6px 14px;
  border-radius: 2px;
  transition: all 0.2s !important;
}
.sister-link:hover {
  background: var(--gold) !important;
  color: var(--dark) !important;
  border-color: var(--gold) !important;
}

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--cream);
  transition: 0.3s;
}

/* ===== MOBILE MENU ===== */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  width: 100%;
  background: var(--dark-2);
  border-bottom: 1px solid var(--border);
  z-index: 99;
  flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu a {
  padding: 18px 32px;
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  border-bottom: 1px solid var(--border);
  transition: background 0.2s, color 0.2s;
}
.mobile-menu a:hover { background: var(--dark-3); color: var(--cream); }
.sister-link-mobile { color: var(--gold) !important; }

/* ===== HERO ===== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

#hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  background-image: url('images/hero.webp');
  background-size: cover;
  background-position: center center;
  position: relative;
  padding: 140px 32px 100px;
  text-align: center;
  overflow: hidden;
}

/* Dark overlay */
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(17, 16, 16, 0.72) 0%,
    rgba(17, 16, 16, 0.55) 45%,
    rgba(17, 16, 16, 0.78) 100%
  );
  z-index: 0;
}

/* Subtle grid texture */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(var(--border) 1px, transparent 1px),
    linear-gradient(90deg, var(--border) 1px, transparent 1px);
  background-size: 60px 60px;
  opacity: 0.12;
  z-index: 1;
}

/* Gold glow */
#hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 70% 50% at 50% 80%, rgba(196,154,78,0.07) 0%, transparent 70%);
  pointer-events: none;
  z-index: 2;
}

.hero-content { max-width: 800px; position: relative; z-index: 3; }

.hero-eyebrow {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}

#hero h1 {
  color: var(--white);
  margin-bottom: 0;
  text-shadow: 0 2px 40px rgba(0,0,0,0.6);
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.3s both;
}

.hero-tagline-divider {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin: 2.25rem auto;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.45s both;
}

.hero-sub {
  font-family: 'Inter', sans-serif;
  font-size: 0.95rem;
  color: rgba(232, 226, 216, 0.75);
  margin-bottom: 3rem;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.9;
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.55s both;
}

#hero .btn {
  animation: heroFadeUp 0.9s cubic-bezier(0.22, 1, 0.36, 1) 0.7s both;
}

/* ===== STATS BAR ===== */
#stats {
  background: var(--dark-3);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}
.stats-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 52px 32px;
}
.stat { text-align: center; flex: 1; }
.stat-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 8px;
}
.stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mid);
}
.stat-license {
  font-size: 0.62rem;
  color: var(--gold-dim);
  letter-spacing: 0.08em;
  margin-top: 4px;
}
.stat-divider { width: 1px; height: 48px; background: var(--border); flex-shrink: 0; }

/* ===== TRUST BAR ===== */
#trust-bar {
  background: var(--dark-3);
  border-bottom: 1px solid var(--border);
  padding: 20px 0;
}

.trust-grid {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 28px;
  flex: 1;
  justify-content: center;
}

.trust-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  flex-shrink: 0;
}

.trust-item span {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}

.trust-divider {
  width: 1px;
  height: 24px;
  background: var(--border);
  flex-shrink: 0;
}

/* ===== PROCESS ===== */
#process {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  border: 1px solid var(--border);
}

.process-step {
  padding: 44px 32px;
  border-right: 1px solid var(--border);
  position: relative;
  transition: background 0.25s;
}

.process-step:last-child { border-right: none; }
.process-step:hover { background: var(--dark-3); }

.process-number {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--border-light);
  line-height: 1;
  margin-bottom: 1.25rem;
  transition: color 0.25s;
}

.process-step:hover .process-number { color: var(--gold-dim); }

.process-body h3 {
  font-size: 1.1rem;
  margin-bottom: 0.75rem;
  color: var(--cream);
}

.process-body p { font-size: 0.87rem; }

/* ===== BEFORE & AFTER ===== */
#before-after {
  padding: 100px 0;
  background: var(--dark);
}
#before-after h2 { color: var(--cream); }
#before-after .divider { background: var(--gold); }
.ba-intro {
  text-align: center;
  color: var(--mid);
  font-size: 0.9rem;
  margin-bottom: 48px;
  margin-top: -16px;
}
.ba-card {
  max-width: 900px;
  margin: 0 auto;
}
.ba-project-label {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.ba-slider {
  position: relative;
  overflow: hidden;
  cursor: col-resize;
  user-select: none;
  line-height: 0;
}
.ba-after,
.ba-before {
  width: 100%;
}
.ba-after img,
.ba-before img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  object-position: center;
  display: block;
  pointer-events: none;
}
.ba-before {
  position: absolute;
  top: 0;
  left: 0;
  width: 50%;
  overflow: hidden;
}
.ba-before img {
  width: auto;
  min-width: 900px;
  max-width: none;
}
.ba-handle {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  pointer-events: none;
  z-index: 10;
}
.ba-handle-line {
  flex: 1;
  width: 2px;
  background: white;
  opacity: 0.9;
}
.ba-handle-circle {
  width: 44px;
  height: 44px;
  background: white;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(0,0,0,0.3);
}
.ba-handle-circle svg {
  width: 14px;
  height: 14px;
  color: var(--dark);
  flex-shrink: 0;
}
.ba-label {
  position: absolute;
  bottom: 16px;
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 2px;
}
.ba-label-before {
  left: 16px;
  background: rgba(0,0,0,0.55);
  color: white;
}
.ba-label-after {
  right: 16px;
  background: var(--gold);
  color: var(--dark);
}

@media (max-width: 640px) {
  .ba-after img, .ba-before img { height: 320px; }
  .ba-before img { min-width: 100vw; }
}

/* ===== TESTIMONIALS ===== */
#testimonials {
  background: var(--dark);
  border-top: 1px solid var(--border);
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
}

.testimonial-card {
  background: var(--dark-2);
  padding: 44px 36px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  transition: background 0.25s;
}

.testimonial-card:hover { background: var(--dark-3); }

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 5rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 0.6;
  opacity: 0.6;
}

.quote-text {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.85;
  font-style: italic;
  flex: 1;
}

.quote-author {
  border-top: 1px solid var(--border);
  padding-top: 16px;
}

.author-name {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.04em;
  margin-bottom: 2px;
}

.author-location {
  font-family: 'Inter', sans-serif;
  font-size: 0.72rem;
  color: var(--gold);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

/* ===== ABOUT ===== */
#about { background: var(--dark-2); }

.about-grid {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 88px;
  align-items: start;
}

.about-grid--no-photo {
  grid-template-columns: 1fr;
  max-width: 720px;
}

.about-text { padding-top: 4px; }
.about-text h2 { margin-bottom: 0; }
.about-text p { margin-bottom: 1.1rem; }

.about-details {
  margin-top: 2rem;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border-top: 1px solid var(--border);
  padding-top: 1.75rem;
}
.detail { display: flex; gap: 16px; font-size: 0.88rem; }
.detail-label {
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  min-width: 110px;
  padding-top: 2px;
}
.detail span:last-child, .detail a {
  font-family: 'Inter', sans-serif;
  color: var(--mid);
  transition: color 0.2s;
}
.detail a:hover { color: var(--gold); }

/* ===== TEAM ===== */
.team-section {
  margin-top: 72px;
  padding-top: 56px;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.team-section .section-label { margin-bottom: 4px; }

.team-card {
  display: flex;
  gap: 40px;
  align-items: flex-start;
  background: var(--dark-3);
  border: 1px solid var(--border);
  border-top: 2px solid var(--gold);
  padding: 40px;
}

.team-photo-placeholder {
  width: 160px;
  min-width: 160px;
  height: 160px;
  background: var(--dark-4);
  border: 1px solid var(--border-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.5rem;
  font-weight: 300;
  color: var(--gold-dim);
  flex-shrink: 0;
}

.team-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 6px;
}
.team-role {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 16px;
}
.team-bio {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.85;
  margin: 0;
  max-width: 600px;
}

@media (max-width: 600px) {
  .team-card { flex-direction: column; gap: 24px; padding: 28px; }
  .team-photo-placeholder { width: 110px; min-width: 110px; height: 110px; font-size: 2.5rem; }
}

/* ===== SERVICES ===== */
#services { background: var(--dark); }
#services h2 { margin-bottom: 0; }
#services h2, #services .section-label { color: var(--cream); }

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

.service-card {
  background: var(--dark-2);
  padding: 44px 32px;
  transition: background 0.25s;
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 2px; height: 0;
  background: var(--gold);
  transition: height 0.35s ease;
}
.service-card:hover { background: var(--dark-3); }
.service-card:hover::before { height: 100%; }

.service-icon {
  width: 40px;
  height: 40px;
  color: var(--gold);
  margin-bottom: 1.5rem;
  opacity: 0.85;
}
.service-icon svg { width: 100%; height: 100%; }
.service-card p { font-size: 0.88rem; color: var(--mid); }

/* ===== ADU SPECIALTY ===== */
#adu {
  background: var(--dark-2);
  border-top: 1px solid var(--border);
}

.adu-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 64px;
  align-items: center;
}

.adu-image-wrap { position: relative; }

.adu-image-wrap img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  display: block;
}

.adu-image-badge {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  background: linear-gradient(rgba(0,0,0,0.5), transparent);
  padding: 20px 24px 48px;
}

.adu-process-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
  margin-top: 4px;
}

.adu-process-img {
  position: relative;
  overflow: hidden;
}

.adu-process-img img {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  transition: transform 0.4s ease;
}

.adu-process-img:hover img { transform: scale(1.05); }

.adu-process-tag {
  position: absolute;
  bottom: 8px;
  left: 8px;
  font-family: 'Inter', sans-serif;
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  background: rgba(0,0,0,0.6);
  color: var(--gold);
  padding: 4px 8px;
}

.adu-badge-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold);
}

.adu-text h2 { margin-bottom: 0; }
.adu-text > p { margin-bottom: 1rem; }

.adu-features {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin: 2rem 0;
  padding: 2rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
}

.adu-feature {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.adu-feature-icon {
  width: 20px;
  height: 20px;
  color: var(--gold);
  flex-shrink: 0;
  margin-top: 2px;
}
.adu-feature-icon svg { width: 100%; height: 100%; }

.adu-feature-title {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--cream);
  letter-spacing: 0.02em;
  margin-bottom: 3px;
}

.adu-feature-desc {
  font-size: 0.86rem;
  color: var(--mid);
  line-height: 1.7;
  margin: 0;
}

.adu-stats-row {
  display: flex;
  align-items: center;
  gap: 0;
  margin-bottom: 2.5rem;
}

.adu-stat { flex: 1; text-align: center; }

.adu-stat-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.4rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 4px;
}

.adu-stat-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
}

.adu-stat-divider { width: 1px; height: 40px; background: var(--border); flex-shrink: 0; }

@media (max-width: 900px) {
  .adu-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* ===== PROJECTS ===== */
#projects { background: var(--dark-2); }
#projects h2, #projects .section-label { color: var(--cream); }

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

.project-card {
  background: var(--dark-3);
  overflow: hidden;
  transition: transform 0.3s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s;
  display: flex;
  flex-direction: column;
  cursor: pointer;
}
.project-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 50px rgba(0,0,0,0.5);
}

.project-img {
  width: 100%;
  aspect-ratio: 4/3;
  overflow: hidden;
  flex-shrink: 0;
}

.project-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.project-card:hover img { transform: scale(1.06); }

.project-info {
  padding: 24px 28px 28px;
  border-top: 1px solid var(--border);
  flex: 1;
}
.project-type {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 8px;
}
.project-info h3 {
  font-size: 1.15rem;
  margin-bottom: 10px;
  color: var(--cream);
}
.project-info p {
  font-size: 0.88rem;
  line-height: 1.75;
  margin: 0;
}

/* ===== PROJECT MODAL ===== */
@keyframes projectModalIn {
  from { opacity: 0; transform: translateY(16px) scale(0.98); }
  to   { opacity: 1; transform: translateY(0) scale(1); }
}

.project-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(0, 0, 0, 0.85);
  backdrop-filter: blur(4px);
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 24px;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.25s ease;
}

.project-modal-backdrop.open {
  opacity: 1;
  pointer-events: all;
}

.project-modal-card {
  background: var(--dark-3);
  border: 1px solid var(--border);
  max-width: 700px;
  width: 100%;
  position: relative;
  animation: projectModalIn 0.32s cubic-bezier(0.22, 1, 0.36, 1) both;
  max-height: 90vh;
  overflow-y: auto;
}

.project-modal-close {
  position: absolute;
  top: 14px;
  right: 16px;
  background: none;
  border: none;
  font-size: 1.6rem;
  line-height: 1;
  color: var(--mid);
  cursor: pointer;
  z-index: 10;
  width: 32px;
  height: 32px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
}
.project-modal-close:hover { color: var(--cream); }

.project-modal-image-wrap {
  position: relative;
  aspect-ratio: 16/9;
  overflow: hidden;
  background: var(--dark-4);
}

.project-modal-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.project-modal-type-badge {
  position: absolute;
  bottom: 14px;
  left: 14px;
  background: rgba(0,0,0,0.7);
  color: var(--gold);
  padding: 5px 12px;
  font-size: 0.65rem;
  letter-spacing: 0.16em;
}

.project-modal-body {
  padding: 28px 32px 36px;
}

.project-modal-body h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--cream);
  margin-bottom: 12px;
}

.project-modal-body p {
  font-size: 0.92rem;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 28px;
}

/* ===== CONTACT ===== */
#contact { background: var(--dark); }
#contact h2, #contact .section-label { color: var(--cream); }

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 72px;
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: 32px; }
.contact-item { display: flex; gap: 16px; align-items: flex-start; }
.contact-icon { width: 18px; height: 18px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.contact-icon svg { width: 100%; height: 100%; }
.contact-label {
  font-family: 'Inter', sans-serif;
  font-size: 0.66rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: var(--gold);
  margin-bottom: 4px;
}
.contact-item p { font-family: 'Inter', sans-serif; font-size: 0.9rem; line-height: 1.7; color: var(--mid); }
.contact-item a { font-family: 'Inter', sans-serif; font-size: 0.9rem; color: var(--mid); transition: color 0.2s; }
.contact-item a:hover { color: var(--gold); }

.map-wrap {
  overflow: hidden;
  border: 1px solid var(--border);
  margin-top: 8px;
}

.contact-form { display: flex; flex-direction: column; gap: 0; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 0; }

.contact-form input,
.contact-form textarea,
.contact-form select {
  width: 100%;
  padding: 16px 0;
  border: none;
  border-bottom: 1px solid var(--border);
  border-radius: 0;
  font-family: 'Inter', sans-serif;
  font-size: 0.88rem;
  color: var(--light);
  background: transparent;
  transition: border-color 0.2s;
  outline: none;
  resize: none;
  appearance: none;
  margin-bottom: 4px;
}
.contact-form input:focus,
.contact-form textarea:focus,
.contact-form select:focus { border-color: var(--gold); }
.contact-form input::placeholder,
.contact-form textarea::placeholder {
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: #444;
}
.contact-form select { color: #444; cursor: pointer; }
.contact-form select option { color: var(--dark); background: #fff; }
.contact-form .btn { margin-top: 28px; align-self: flex-start; }
.form-note { font-family: 'Inter', sans-serif; font-size: 0.8rem; color: var(--gold); min-height: 1.2em; margin-top: 12px; }

/* ===== FOOTER ===== */
footer {
  background: var(--dark);
  padding: 40px 0;
  border-top: 1px solid var(--border);
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  color: var(--mid);
}
.footer-logo img { height: 26px; width: auto; opacity: 0.6; }
.footer-copy { font-family: 'Inter', sans-serif; font-size: 0.7rem; letter-spacing: 0.08em; color: #3a3836; }
.footer-socials { display: flex; gap: 16px; align-items: center; }
.footer-socials a { color: #a09890; transition: color 0.2s; display: flex; }
.footer-socials a:hover { color: var(--cream); }
.footer-socials svg { width: 24px; height: 24px; }

/* ===== CUSTOM CURSOR ===== */
@media (pointer: fine) {
  body { cursor: none; }
  a, button { cursor: none; }

  #cursor-dot {
    position: fixed;
    top: 0;
    left: 0;
    width: 5px;
    height: 5px;
    background: var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s;
    will-change: left, top;
  }

  #cursor-ring {
    position: fixed;
    top: 0;
    left: 0;
    width: 32px;
    height: 32px;
    border: 1px solid rgba(196, 154, 78, 0.6);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9998;
    transform: translate(-50%, -50%);
    transition: width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
    will-change: left, top;
  }

  #cursor-ring.hovering {
    width: 52px;
    height: 52px;
    border-color: rgba(196, 154, 78, 0.9);
  }
}

/* ===== SCROLL REVEAL ===== */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}

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

/* ===== HAMBURGER → X ===== */
.hamburger span {
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.hamburger.open span:nth-child(1) {
  transform: translateY(6.5px) rotate(45deg);
}

.hamburger.open span:nth-child(2) {
  opacity: 0;
  transform: scaleX(0);
}

.hamburger.open span:nth-child(3) {
  transform: translateY(-6.5px) rotate(-45deg);
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-step { border-bottom: 1px solid var(--border); }
  .testimonials-grid { grid-template-columns: 1fr; }
  .trust-item { flex: 1 1 40%; }
  .trust-divider { display: none; }
  .about-grid { grid-template-columns: 1fr; gap: 48px; }
  .services-grid { grid-template-columns: 1fr 1fr; }
  .projects-grid { grid-template-columns: 1fr 1fr; }
  .adu-process-strip { grid-template-columns: repeat(3, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .stat-divider { display: none; }
  .stats-grid { flex-wrap: wrap; gap: 32px; }
  .stat { flex: 1 1 40%; }
}

@media (max-width: 640px) {
  section { padding: 80px 0; }
  .container { padding: 0 20px; }
  .process-grid { grid-template-columns: 1fr; }
  .trust-item { flex: 1 1 100%; }
  .nav-links { display: none; }
  .hamburger { display: flex; }
  .form-row { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
  .projects-grid { grid-template-columns: 1fr; }
  .footer-inner { flex-direction: column; text-align: center; }
  .stats-grid { flex-direction: column; gap: 28px; }
}
