/* ─────────────────────────────────────────────
   RED ROCK PALMS — Shared Stylesheet
   Design: Desert Premium
   Fonts: Oswald (headings) + DM Sans (body)
───────────────────────────────────────────── */

:root {
  --tc:         #C85A1A;   /* terracotta — matches logo exactly */
  --tc-dark:    #A04612;
  --tc-light:   #E8793A;
  --black:      #0D0D0D;
  --dark:       #181818;
  --dark-2:     #222222;
  --white:      #FFFFFF;
  --sand:       #F7F4F0;
  --sand-2:     #EDE9E3;
  --gray:       #6B6B6B;
  --gray-light: #AAAAAA;
  --border:     rgba(0,0,0,0.09);
  --border-w:   rgba(255,255,255,0.1);

  --radius-pill: 100px;
  --radius-card: 14px;
  --radius-icon: 16px;
  --radius-sm:   8px;

  --shadow-sm:  0 2px 8px rgba(0,0,0,0.07);
  --shadow-md:  0 8px 32px rgba(0,0,0,0.12);
  --shadow-lg:  0 20px 60px rgba(0,0,0,0.18);

  --nav-h: 80px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

/* ── RESET ────────────────────────────────── */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  background: var(--white);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 16px;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* ── TYPOGRAPHY ──────────────────────────── */
h1, h2, h3, h4 {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.8rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: 1.35rem; font-weight: 600; }
h4 { font-size: 1.1rem; font-weight: 600; }

p { color: var(--gray); line-height: 1.75; }

.section-label {
  display: inline-block;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--tc);
  margin-bottom: 12px;
}
.section-label-w { color: rgba(255,255,255,0.55); }

.section-title { margin-bottom: 16px; }
.section-sub {
  font-size: 1.05rem;
  color: var(--gray);
  max-width: 560px;
  line-height: 1.75;
}
.section-sub-w { color: rgba(255,255,255,0.65); }

/* ── LAYOUT ──────────────────────────────── */
.container {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
}
.section {
  padding: 96px 0;
}
.section-sm { padding: 72px 0; }
.section-dark { background: var(--black); }
.section-dark-2 { background: var(--dark); }
.section-sand { background: var(--sand); }

/* ── BUTTONS ─────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 14px 34px;
  border-radius: var(--radius-pill);
  transition: transform 0.2s var(--ease), box-shadow 0.2s, background 0.2s;
  white-space: nowrap;
  cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn svg { width: 16px; height: 16px; transition: transform 0.2s; }
.btn:hover svg { transform: translateX(3px); }

.btn-primary {
  background: var(--tc);
  color: var(--white);
  box-shadow: 0 4px 20px rgba(200,90,26,0.3);
}
.btn-primary:hover {
  background: var(--tc-dark);
  box-shadow: 0 8px 28px rgba(200,90,26,0.4);
}
.btn-outline-white {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline-white:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.8);
}
.btn-outline-dark {
  background: transparent;
  color: var(--black);
  border: 2px solid var(--black);
}
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-lg { padding: 17px 42px; font-size: 1rem; }

/* ── NAVIGATION ──────────────────────────── */
.nav {
  position: sticky;
  top: 0;
  z-index: 200;
  height: var(--nav-h);
  background: var(--white);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s;
}
.nav.scrolled { box-shadow: 0 2px 20px rgba(0,0,0,0.08); }
.nav-inner {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
  flex-shrink: 0;
}
.nav-logo img {
  height: 54px;
  width: auto;
  object-fit: contain;
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--dark);
  padding: 8px 14px;
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--tc); background: rgba(200,90,26,0.07); }
.nav-links .has-drop { position: relative; }
.nav-drop-toggle { display: none; }
.nav-drop {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  padding: 8px;
  min-width: 220px;
  box-shadow: var(--shadow-md);
  opacity: 0;
  pointer-events: none;
  transform: translateY(-8px);
  transition: opacity 0.2s, transform 0.2s;
}
.nav-links .has-drop:hover .nav-drop {
  opacity: 1;
  pointer-events: all;
  transform: translateY(0);
}
.nav-drop a {
  display: block;
  padding: 9px 14px;
  font-size: 0.85rem;
  border-radius: 6px;
  color: var(--dark) !important;
  background: transparent !important;
  letter-spacing: 0.05em;
}
.nav-drop a:hover { background: var(--sand) !important; color: var(--tc) !important; }
.nav-right {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--dark);
  transition: color 0.2s;
}
.nav-phone:hover { color: var(--tc); }
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--black);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── HERO ────────────────────────────────── */
.hero {
  position: relative;
  min-height: calc(100vh - var(--nav-h));
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.04);
  transition: transform 8s ease;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(0,0,0,0.82) 0%,
    rgba(0,0,0,0.55) 55%,
    rgba(0,0,0,0.25) 100%
  );
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px;
  width: 100%;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(200,90,26,0.18);
  border: 1px solid rgba(200,90,26,0.5);
  color: var(--tc-light);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  margin-bottom: 24px;
}
.hero-badge svg { width: 13px; height: 13px; }
.hero-title {
  color: var(--white);
  font-size: clamp(3rem, 7vw, 5.6rem);
  letter-spacing: -0.02em;
  line-height: 1.0;
  margin-bottom: 6px;
  max-width: 780px;
}
.hero-title .accent { color: var(--tc-light); }
.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  max-width: 500px;
  margin: 20px 0 40px;
}
.hero-btns {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 14px;
}
.hero-trust {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 56px;
  padding-top: 36px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-trust-item {
  display: flex;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.7);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}
.hero-trust-item svg { width: 15px; height: 15px; color: var(--tc-light); flex-shrink: 0; }

/* ── TRUST TICKER ────────────────────────── */
.trust-bar {
  background: var(--black);
  padding: 14px 0;
  overflow: hidden;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.trust-bar-track {
  display: flex;
  align-items: center;
  width: max-content;
  animation: ticker 32s linear infinite;
}
.trust-bar-track:hover { animation-play-state: paused; }
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}
.trust-tick {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 36px;
  white-space: nowrap;
  font-family: 'Oswald', sans-serif;
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.65);
}
.trust-tick svg { width: 13px; height: 13px; color: var(--tc); flex-shrink: 0; }
.trust-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(200,90,26,0.5);
  flex-shrink: 0;
}

/* ── SERVICE CARDS ───────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 52px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  transition: transform 0.3s var(--ease), box-shadow 0.3s, border-color 0.3s;
  display: block;
  color: inherit;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-md);
  border-color: rgba(200,90,26,0.2);
}
.service-icon {
  width: 48px;
  height: 48px;
  background: var(--tc);
  border-radius: var(--radius-icon);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background 0.2s;
}
.service-card:hover .service-icon { background: var(--tc-dark); }
.service-icon svg { width: 22px; height: 22px; color: var(--white); }
.service-card h3 {
  color: var(--black);
  margin-bottom: 10px;
  font-size: 1.2rem;
}
.service-card p { font-size: 0.92rem; line-height: 1.7; }
.service-card-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--tc);
  margin-top: 18px;
}
.service-card-link svg { width: 14px; height: 14px; transition: transform 0.2s; }
.service-card:hover .service-card-link svg { transform: translateX(4px); }

/* ── WHY US (DARK) ───────────────────────── */
.why-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.why-list {
  display: flex;
  flex-direction: column;
  gap: 28px;
  margin-top: 36px;
}
.why-item {
  display: flex;
  align-items: flex-start;
  gap: 18px;
}
.why-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,90,26,0.15);
  border: 1px solid rgba(200,90,26,0.3);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.why-icon svg { width: 19px; height: 19px; color: var(--tc-light); }
.why-item-text h4 {
  color: var(--white);
  font-size: 1.05rem;
  margin-bottom: 5px;
  letter-spacing: 0;
}
.why-item-text p {
  color: rgba(255,255,255,0.55);
  font-size: 0.9rem;
  line-height: 1.65;
}
.why-photo {
  position: relative;
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.why-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}
.why-photo-badge {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: var(--tc);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 8px 16px;
  border-radius: var(--radius-pill);
}

/* ── GALLERY ─────────────────────────────── */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
@media (max-width: 640px) {
  .gallery-grid { grid-template-columns: 1fr; gap: 12px; }
}
.gallery-item {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 4/3;
  position: relative;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}
.gallery-item:hover img { transform: scale(1.06); }
.gallery-item-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0);
  transition: background 0.3s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-item:hover .gallery-item-overlay { background: rgba(0,0,0,0.25); }

/* ── SERVICE AREAS ───────────────────────── */
.areas-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 48px;
}
.area-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 22px 24px;
  display: flex;
  align-items: center;
  gap: 14px;
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
  text-decoration: none;
  color: inherit;
}
.area-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-sm);
  border-color: rgba(200,90,26,0.25);
}
.area-icon { color: var(--tc); flex-shrink: 0; }
.area-icon svg { width: 18px; height: 18px; }
.area-card h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  color: var(--black);
  letter-spacing: 0.02em;
  margin: 0;
}
.area-card p {
  font-size: 0.8rem;
  color: var(--gray);
  margin: 0;
  line-height: 1.4;
}

/* ── CTA SECTION ─────────────────────────── */
.cta-section {
  position: relative;
  overflow: hidden;
  text-align: center;
  padding: 96px 40px;
}
.cta-section h2 { color: var(--white); margin-bottom: 16px; }
.cta-section p { color: rgba(255,255,255,0.65); margin: 0 auto 36px; max-width: 500px; }
.cta-section .btn-primary { box-shadow: 0 8px 32px rgba(200,90,26,0.4); }
.cta-promo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: rgba(200,90,26,0.15);
  border: 1px solid rgba(200,90,26,0.35);
  border-radius: var(--radius-pill);
  padding: 10px 24px;
  margin-bottom: 28px;
  color: var(--tc-light);
  font-family: 'Oswald', sans-serif;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}
.cta-promo svg { width: 14px; height: 14px; }

/* ── STATS STRIP ─────────────────────────── */
.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.06);
  margin-top: 56px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding-top: 56px;
}
.stat-item { text-align: center; padding: 0 20px; }
.stat-number {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 700;
  color: var(--white);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number span { color: var(--tc-light); }
.stat-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

/* ── FOOTER ──────────────────────────────── */
footer {
  background: var(--black);
  padding: 72px 0 0;
}
.footer-grid {
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 40px 64px;
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
  gap: 52px;
}
.footer-brand-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--white);
  letter-spacing: 0.02em;
  margin-bottom: 12px;
}
.footer-tagline {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.7;
  margin-bottom: 22px;
  max-width: 240px;
}
.footer-social {
  display: flex;
  gap: 10px;
  margin-bottom: 0;
}
.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(255,255,255,0.07);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.footer-social a:hover { background: var(--tc); }
.footer-social svg { width: 15px; height: 15px; color: rgba(255,255,255,0.7); }
.footer-col-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 20px;
}
.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links a {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--tc-light); }
.footer-contact-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer-contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.5);
  line-height: 1.5;
}
.footer-contact-list svg { width: 14px; height: 14px; color: var(--tc); flex-shrink: 0; margin-top: 2px; }
.footer-contact-list a { color: rgba(255,255,255,0.5); transition: color 0.2s; }
.footer-contact-list a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 40px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  margin: 0;
}
.footer-bottom a {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.3);
  transition: color 0.2s;
}
.footer-bottom a:hover { color: rgba(255,255,255,0.6); }

/* ── CONTACT FORM ────────────────────────── */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 72px;
  align-items: flex-start;
}
.contact-info { padding-top: 8px; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  margin-bottom: 28px;
}
.contact-detail-icon {
  width: 44px;
  height: 44px;
  background: rgba(200,90,26,0.1);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-detail-icon svg { width: 18px; height: 18px; color: var(--tc); }
.contact-detail h4 {
  font-size: 0.8rem;
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 4px;
}
.contact-detail a, .contact-detail p {
  font-size: 1rem;
  color: var(--black);
  font-weight: 500;
  font-family: 'DM Sans', sans-serif;
}
.form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.form-card-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 700;
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 6px;
}
.form-card-sub {
  font-size: 0.9rem;
  color: var(--gray);
  margin-bottom: 28px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; margin-bottom: 16px; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--sand);
  border: 1.5px solid rgba(0,0,0,0.08);
  border-radius: var(--radius-sm);
  color: var(--black);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  padding: 12px 14px;
  outline: none;
  width: 100%;
  transition: border-color 0.2s, background 0.2s;
  -webkit-appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--tc); background: var(--white); }
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='11' height='7'%3E%3Cpath d='M1 1l4.5 4.5L10 1' stroke='%23888' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 13px center;
  padding-right: 36px;
}
.checkbox-group {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.checkbox-label {
  display: flex;
  align-items: center;
  gap: 8px;
  cursor: pointer;
  font-size: 0.88rem;
  color: var(--dark);
}
.checkbox-label input[type="checkbox"] {
  width: 16px;
  height: 16px;
  min-width: 16px;
  padding: 0;
  accent-color: var(--tc);
  border-radius: 3px;
}

/* ── ABOUT PAGE ──────────────────────────── */
.about-hero {
  background: var(--black);
  padding: 96px 0;
  overflow: hidden;
  position: relative;
}
.about-hero-content { position: relative; z-index: 2; }
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.about-values {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
}
.value-card {
  background: var(--sand);
  border-radius: var(--radius-card);
  padding: 24px 20px;
}
.value-card > svg { width: 22px; height: 22px; color: var(--tc); margin-bottom: 12px; }
.value-card h4 { font-size: 1rem; margin-bottom: 6px; color: var(--black); }
.value-card p { font-size: 0.85rem; color: var(--gray); line-height: 1.6; }

/* ── PAGE HERO (INNER PAGES) ─────────────── */
.page-hero {
  background: var(--black);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 70% 50%, rgba(200,90,26,0.12) 0%, transparent 65%);
  pointer-events: none;
}
.page-hero-content { position: relative; z-index: 2; }
.page-hero h1 { color: var(--white); }
.page-hero p { color: rgba(255,255,255,0.6); max-width: 500px; margin-top: 16px; }
.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}
.breadcrumb a { color: rgba(255,255,255,0.35); transition: color 0.2s; }
.breadcrumb a:hover { color: var(--tc-light); }
.breadcrumb svg { width: 12px; height: 12px; }

/* ── CITY PAGE ───────────────────────────── */
.city-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

/* ── REVEAL ANIMATIONS ───────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-photo { aspect-ratio: 16/9; max-height: 380px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .areas-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-strip { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
  .contact-grid { grid-template-columns: 1fr; }
  .about-grid { grid-template-columns: 1fr; }
  .city-intro { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  :root { --nav-h: 60px; }
  .container { padding: 0 20px; }
  .section { padding: 64px 0; }
  .nav-inner { padding: 0 20px; }
  .nav-logo img { height: 40px; }
  .trust-bar { display: none; }
  .nav-links, .nav-phone, .nav-right .btn { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    padding: 16px 16px 32px;
    gap: 2px;
    overflow-y: auto;
    z-index: 199;
    border-top: 1px solid var(--border);
  }
  /* All nav links: full-width blocks, same indent */
  .nav-links.open li > a {
    display: block;
    font-size: 1.1rem;
    padding: 14px 20px;
    border-radius: var(--radius-sm);
  }
  /* Services: room for the chevron on the right */
  .nav-links.open .has-drop > a {
    padding-right: 52px;
  }
  /* ── chevron toggle — absolute over the link row only ── */
  .nav-drop-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    right: 0;
    top: 0;
    width: 48px;
    height: 52px;
    color: var(--gray);
    transition: color 0.2s;
  }
  .nav-drop-toggle svg { transition: transform 0.3s var(--ease); }
  .has-drop.open .nav-drop-toggle svg { transform: rotate(180deg); }
  .has-drop.open .nav-drop-toggle { color: var(--tc); }
  /* ── mobile sub-menu collapse/expand ── */
  .nav-drop {
    position: static !important;
    opacity: 1 !important;
    transform: none !important;
    box-shadow: none !important;
    border: none !important;
    background: var(--sand);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s var(--ease), padding 0.25s;
    padding: 0 0 0 16px;
    margin-top: 0;
    pointer-events: none;
  }
  .has-drop.open .nav-drop {
    max-height: 420px;
    padding: 6px 0 10px 16px;
    margin-top: 4px;
    pointer-events: all;
  }

  .nav-toggle { display: flex; }
  .hero-content { padding: 52px 20px 64px; }
  .hero-btns .btn { min-width: 0; }
  .services-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .areas-grid { grid-template-columns: 1fr; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding: 0 20px 48px; }
  .footer-bottom { padding: 16px 20px; flex-direction: column; text-align: center; gap: 8px; }
  .hero-trust { gap: 16px; margin-top: 40px; }
  .about-values { grid-template-columns: 1fr; }
  .form-card { padding: 28px 20px; }
  .form-row { grid-template-columns: 1fr; }
  .cta-section { padding: 72px 20px; }
  .page-hero { padding: 56px 0 48px; min-height: 320px; }
  .page-hero-content h1 { font-size: clamp(1.8rem, 7vw, 2.8rem); line-height: 1.15; }
  .page-hero-content p { font-size: 0.92rem; margin-top: 12px; }
  .hero-btns { gap: 12px; }
}
@media (max-width: 480px) {
  h1 { font-size: 2.5rem; }
  .hero-btns { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-btns .btn { width: 100%; justify-content: center; }
  .stats-strip { grid-template-columns: 1fr 1fr; }
  .service-card { padding: 24px 18px; }
  .process-step { padding: 24px 18px; }
  .cta-section { padding: 56px 20px; }
  .cta-section h2 { font-size: clamp(1.7rem, 7vw, 2.4rem); }
  .section { padding: 56px 0; }
  .section-title { font-size: clamp(1.6rem, 6vw, 2.2rem); }
}

/* ── PAGE HERO (PHOTO BG VARIANT) ────────── */
.page-hero {
  min-height: 420px;
  display: flex;
  align-items: center;
}
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transform: scale(1.02);
}
.page-hero .hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(0,0,0,0.84) 0%, rgba(0,0,0,0.55) 60%, rgba(0,0,0,0.3) 100%);
}
.page-hero-content {
  position: relative;
  z-index: 2;
  max-width: 1160px;
  margin: 0 auto;
  padding: 80px 40px 72px;
  width: 100%;
}
.page-hero-content h1 { color: var(--white); }
.page-hero-content p { color: rgba(255,255,255,0.65); max-width: 520px; margin-top: 16px; }
.page-hero-short { min-height: 320px; }
.page-breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 20px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}
.page-breadcrumb a { color: rgba(255,255,255,0.4); transition: color 0.2s; }
.page-breadcrumb a:hover { color: var(--tc-light); }
.page-breadcrumb svg { width: 12px; height: 12px; }

/* ── ABOUT STORY GRID ────────────────────── */
.about-story-grid {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 80px;
  align-items: center;
}
.about-photo-col { position: relative; }
.about-photo-stack { position: relative; }
.about-photo-main {
  width: 100%;
  border-radius: var(--radius-card);
  object-fit: cover;
  aspect-ratio: 3/4;
}
.about-photo-badge {
  position: absolute;
  bottom: 24px;
  right: -20px;
  background: var(--tc);
  color: var(--white);
  border-radius: 14px;
  padding: 14px 20px;
  text-align: center;
  box-shadow: 0 8px 24px rgba(200,90,26,0.4);
}
.about-photo-badge-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}
.about-photo-badge-label {
  font-size: 0.7rem;
  font-family: 'Oswald', sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  opacity: 0.85;
  margin-top: 4px;
}

/* ── VALUES GRID ─────────────────────────── */
.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}
.value-card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--radius-card);
  padding: 32px 28px;
}
.value-card h3 {
  color: var(--white);
  font-size: 1.15rem;
  margin-bottom: 10px;
  margin-top: 0;
}
.value-card p { color: rgba(255,255,255,0.55); font-size: 0.9rem; }
.values-grid-light { /* white bg — light variant */ }
.value-card-light {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 32px 28px;
  box-shadow: var(--shadow-sm);
}
.value-card-light h4 { color: var(--black); margin-bottom: 8px; }
.value-card-light p { color: var(--gray); font-size: 0.9rem; }

/* ── DIFFERENTIATORS LAYOUT ──────────────── */
.diff-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}
.diff-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.diff-photo img { width: 100%; height: 100%; object-fit: cover; }
.diff-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: 16px;
}
.diff-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
}
.diff-check svg { width: 20px; height: 20px; color: var(--tc); flex-shrink: 0; }
.diff-item p { font-size: 0.95rem; color: var(--gray); line-height: 1.65; margin: 0; }
.diff-item-w { display: flex; align-items: flex-start; gap: 12px; margin-bottom: 12px; }
.diff-check-w svg { width: 20px; height: 20px; color: var(--tc-light); flex-shrink: 0; }
.diff-item-w p { font-size: 0.95rem; color: rgba(255,255,255,0.6); line-height: 1.65; margin: 0; }

/* ── STATS LIGHT ─────────────────────────── */
.stats-strip-light {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: var(--border);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  overflow: hidden;
  text-align: center;
}
.stat-item-light {
  padding: 36px 20px;
  background: var(--white);
  text-align: center;
}
.stat-number-light {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  letter-spacing: -0.02em;
  line-height: 1;
  margin-bottom: 8px;
}
.stat-number-light span { color: var(--tc); }
.stat-label-light {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gray);
}

/* ── SERVICE DETAIL GRID ─────────────────── */
.service-detail-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 80px;
  align-items: center;
}
.service-detail-grid.reverse {
  grid-template-columns: 1fr 1.1fr;
}
.service-detail-grid.reverse .service-detail-photo {
  order: -1;
}
.service-detail-photo {
  border-radius: var(--radius-card);
  overflow: hidden;
  aspect-ratio: 3/4;
}
.service-detail-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.service-detail-checklist {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}
.service-detail-checklist-w {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 8px;
}

/* ── SERVICES JUMP NAV ───────────────────── */
.services-jump-nav {
  background: var(--sand);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 4px;
  padding: 12px 20px;
}
.services-jump-nav a {
  font-family: 'Oswald', sans-serif;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gray);
  padding: 7px 16px;
  border-radius: var(--radius-pill);
  transition: color 0.2s, background 0.2s;
}
.services-jump-nav a:hover { color: var(--tc); background: rgba(200,90,26,0.1); }

/* ── CONTACT PAGE ────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-cards {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 28px;
}
.contact-card {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--sand);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 16px 20px;
  transition: border-color 0.2s, box-shadow 0.2s;
  text-decoration: none;
  color: inherit;
}
.contact-card:hover {
  border-color: rgba(200,90,26,0.25);
  box-shadow: var(--shadow-sm);
}
.contact-card-icon {
  width: 42px;
  height: 42px;
  background: var(--white);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--tc);
}
.contact-card-icon svg { width: 18px; height: 18px; }
.contact-card-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gray);
  margin-bottom: 2px;
}
.contact-card-value {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem;
  font-weight: 500;
  color: var(--black);
}
.contact-promo-box {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  background: rgba(200,90,26,0.06);
  border: 1px solid rgba(200,90,26,0.2);
  border-radius: var(--radius-card);
  padding: 20px 20px;
}
.contact-promo-icon {
  width: 36px;
  height: 36px;
  background: var(--tc);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--white);
}
.contact-promo-icon svg { width: 16px; height: 16px; }
.contact-promo-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tc);
  margin-bottom: 6px;
}
.contact-promo-text { font-size: 0.88rem; color: var(--gray); line-height: 1.65; }
.contact-form-col { width: 100%; }
.contact-form-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-card);
  padding: 40px 36px;
  box-shadow: var(--shadow-sm);
}
.contact-form-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.5rem;
  color: var(--black);
  margin-bottom: 24px;
}
.form-checkboxes {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 6px;
}
.btn-full { width: 100%; justify-content: center; }

/* ── SERVICE CARD DARK ───────────────────── */
.service-card-dark {
  background: rgba(255,255,255,0.04);
  border-color: rgba(255,255,255,0.07);
}
.service-card-dark h3 { color: var(--white); }
.service-card-dark p { color: rgba(255,255,255,0.55); }
.service-card-dark:hover {
  background: rgba(255,255,255,0.07);
  border-color: rgba(200,90,26,0.3);
}

/* ── MISSING RESPONSIVE ADDITIONS ────────── */
@media (max-width: 1024px) {
  .about-story-grid { grid-template-columns: 1fr; gap: 48px; }
  .diff-layout { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid { grid-template-columns: 1fr; gap: 48px; }
  .service-detail-grid.reverse { grid-template-columns: 1fr; }
  .service-detail-grid.reverse .service-detail-photo { order: 0; }
  .service-detail-photo { aspect-ratio: 16/9; }
  .diff-photo { aspect-ratio: 16/9; }
  .about-photo-main { aspect-ratio: 16/9; }
  .about-photo-badge { right: 12px; bottom: 12px; }
  .values-grid { grid-template-columns: 1fr; }
  .stats-strip-light { grid-template-columns: repeat(2, 1fr); }
  .contact-layout { grid-template-columns: 1fr; gap: 48px; }
  .why-grid { grid-template-columns: 1fr; gap: 48px; }
  .why-photo { order: -1; }
}
@media (max-width: 768px) {
  .page-hero-content { padding: 56px 20px 48px; }
  .about-story-grid { gap: 36px; }
  .contact-form-card { padding: 28px 20px; }
  .services-jump-nav { gap: 4px; }
  .form-checkboxes { grid-template-columns: 1fr; }
  .stats-strip-light { grid-template-columns: 1fr 1fr; }
  .values-grid { grid-template-columns: 1fr; }
}

/* ── GALLERY ITEM AS LINK ────────────────── */
.gallery-item { cursor: pointer; }
.gallery-item-overlay-label {
  font-family: 'Oswald', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: white;
  display: flex;
  align-items: center;
  gap: 7px;
  opacity: 0;
  transform: translateY(8px);
  transition: opacity 0.3s, transform 0.3s;
}
.gallery-item-overlay-label svg { width: 14px; height: 14px; }
.gallery-item:hover .gallery-item-overlay-label {
  opacity: 1;
  transform: translateY(0);
}

/* ── FOCUS STATES ────────────────────────── */
:focus-visible {
  outline: 3px solid var(--tc);
  outline-offset: 3px;
  border-radius: 3px;
}
.btn:focus-visible {
  outline-offset: 5px;
  border-radius: var(--radius-pill);
}
.service-card:focus-visible,
.area-card:focus-visible,
.contact-card:focus-visible,
.gallery-item:focus-visible {
  outline-offset: 4px;
  border-radius: var(--radius-card);
}

/* ── MOBILE STICKY CTA ───────────────────── */
.sticky-cta-bar {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 90;
  background: var(--white);
  border-top: 1px solid var(--border);
  padding: 10px 20px 10px;
  box-shadow: 0 -4px 16px rgba(0,0,0,0.08);
  display: none;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  transform: translateY(100%);
  transition: transform 0.35s var(--ease);
}
.sticky-cta-bar.active { transform: translateY(0); }
.sticky-cta-bar .btn { width: 100%; justify-content: center; padding: 12px 20px; }
.sticky-cta-phone {
  font-family: 'Oswald', sans-serif;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gray);
}
.sticky-cta-phone a { color: var(--tc); font-weight: 600; }
@media (max-width: 768px) {
  .sticky-cta-bar { display: flex; }
  .sticky-cta-active { padding-bottom: 72px; }
}

/* ── REDUCED MOTION ──────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .trust-bar-track { animation: none; }
  .reveal,
  .reveal.visible {
    transition: none;
    transform: none;
    opacity: 1;
  }
  .reveal-delay-1,
  .reveal-delay-2,
  .reveal-delay-3,
  .reveal-delay-4,
  .reveal-delay-5 { transition-delay: 0s; }
  .btn { transition: background 0.15s, box-shadow 0.15s; }
  .btn:hover { transform: none; }
  .btn:hover svg { transform: none; }
  .service-card:hover,
  .area-card:hover { transform: none; }
  .gallery-item img { transition: none; }
  .gallery-item-overlay { transition: none; }
  .gallery-item-overlay-label { transition: none; transform: none; opacity: 0; }
  .gallery-item:hover .gallery-item-overlay-label { opacity: 1; }
  .sticky-cta-bar { transition: none; }
  .hero-bg { transition: none; }
  .faq-a { transition: none; }
  .faq-chevron { transition: none; }
}

/* ── PROCESS SECTION ─────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  align-items: start;
  gap: 0 24px;
  max-width: 900px;
  margin: 0 auto;
}
.process-step {
  text-align: center;
  padding: 32px 24px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
}
.process-step h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--black);
  margin: 0 0 8px;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.process-step p {
  font-size: 0.9rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.6;
}
.process-number {
  font-family: 'Oswald', sans-serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--tc);
  line-height: 1;
  margin-bottom: 16px;
}
.process-connector {
  width: 2px;
  height: 60px;
  background: var(--border);
  margin-top: 52px;
  position: relative;
}
.process-connector::after {
  content: '';
  position: absolute;
  bottom: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 8px;
  height: 8px;
  background: var(--tc);
  border-radius: 50%;
}
@media (max-width: 768px) {
  .process-grid {
    grid-template-columns: 1fr;
    gap: 0;
    max-width: 420px;
  }
  .process-connector {
    width: 2px;
    height: 36px;
    margin: 0 auto;
    margin-top: 0;
  }
  .process-connector::after {
    bottom: -6px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
  }
  .process-step {
    border-radius: var(--radius);
    margin: 0;
  }
}

/* ── FAQ SECTION ─────────────────────────── */
.faq-list {
  max-width: 760px;
  margin: 0 auto;
}
.faq-item {
  border-bottom: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 1px solid var(--border);
}
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 0;
  background: none;
  border: none;
  cursor: pointer;
  font-family: 'Oswald', sans-serif;
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--black);
  text-align: left;
  letter-spacing: 0.02em;
  text-transform: uppercase;
}
.faq-q:hover { color: var(--tc); }
.faq-chevron {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  color: var(--tc);
  transition: transform 0.25s var(--ease);
}
.faq-item.open .faq-chevron {
  transform: rotate(180deg);
}
.faq-a {
  overflow: hidden;
  max-height: 0;
  transition: max-height 0.35s var(--ease);
}
.faq-item.open .faq-a {
  max-height: 200px;
}
.faq-a p {
  padding-bottom: 20px;
  margin: 0;
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-muted);
}
.faq-a a {
  color: var(--tc);
  font-weight: 500;
}
