/* ============================================================
   Ultra Men Property Services, ultramenpropertyservices.com
   THEME v2, "Crowned" style: black / light gray sections,
   desert-gold accent, Rajdhani condensed display headings.
   ============================================================ */

:root {
  --black: #121212;
  --ink: #1a1a1a;
  --charcoal: #202020;
  --gray-bg: #f5f5f5;
  --gray-bg-2: #ededed;
  --white: #ffffff;
  --gold: #d9a843;
  --gold-light: #e8c470;
  --gold-dark: #b8892f;
  --text: #2b2b2b;
  --text-muted: #6b6b6b;
  --text-on-dark: #d6d6d6;
  --radius: 3px;
  --shadow: 0 4px 20px rgba(0, 0, 0, 0.10);
  --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.18);
  --max-w: 1180px;
  --display: 'Rajdhani', 'Arial Narrow', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
}

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

.container { max-width: var(--max-w); margin: 0 auto; padding: 0 22px; }

h1, h2, h3, h4 {
  font-family: var(--display);
  line-height: 1.08;
  color: var(--black);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.02em;
}
h1 { font-size: clamp(2.2rem, 5.5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 3.6vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin-bottom: 1em; }

a { color: var(--gold-dark); }

.section { padding: 84px 0; }
.section-alt { background: var(--gray-bg); }
.section-dark { background: var(--black); color: var(--text-on-dark); }
.section-dark h2, .section-dark h3 { color: var(--white); }

.kicker {
  display: inline-block;
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.28em;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--gold-dark);
  margin-bottom: 12px;
}
.kicker::after {
  content: "";
  display: block;
  width: 54px;
  height: 3px;
  background: var(--gold);
  margin-top: 10px;
}
.section-head.center .kicker::after { margin-left: auto; margin-right: auto; }
.section-dark .kicker { color: var(--gold); }

.section-head { max-width: 760px; margin-bottom: 48px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head p { color: var(--text-muted); margin-top: 14px; margin-bottom: 0; font-size: 1.05rem; }
.section-dark .section-head p { color: #a8a8a8; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--display);
  padding: 15px 34px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 1.05rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  text-align: center;
  cursor: pointer;
  border: 2px solid transparent;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:hover { transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-primary { background: var(--gold); color: var(--black); }
.btn-primary:hover { background: var(--gold-light); }
.btn-outline { border-color: var(--black); color: var(--black); background: transparent; }
.btn-outline:hover { background: var(--black); color: var(--white); }
.btn-outline-light { border-color: var(--gold); color: var(--gold); background: transparent; }
.btn-outline-light:hover { background: var(--gold); color: var(--black); }
.btn-lg { padding: 18px 44px; font-size: 1.15rem; }

/* ---------- Top bar ---------- */
.topbar {
  background: var(--black);
  color: #bdbdbd;
  font-size: 0.86rem;
  padding: 8px 0;
  border-bottom: 1px solid #2a2a2a;
}
.topbar .container { display: flex; justify-content: space-between; align-items: center; gap: 12px; flex-wrap: wrap; }
.topbar a { color: var(--gold); text-decoration: none; font-weight: 700; }
.topbar a:hover { color: var(--gold-light); }

/* ---------- Header / Nav ---------- */
.site-header {
  background: var(--white);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 2px 14px rgba(0, 0, 0, 0.10);
  border-bottom: 3px solid var(--gold);
}
.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 80px;
}
.brand { display: flex; align-items: center; gap: 12px; text-decoration: none; }
.brand img { height: 58px; width: auto; }
.brand-name {
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.2rem;
  color: var(--black);
  line-height: 1.05;
  text-transform: uppercase;
  letter-spacing: 0.03em;
}
.brand-name small { display: block; font-size: 0.66rem; font-weight: 600; color: var(--gold-dark); letter-spacing: 0.22em; text-transform: uppercase; margin-top: 3px; }

.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav > a, .dropdown > button {
  white-space: nowrap;
  font-family: var(--display);
  color: var(--black);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px 0;
}
.main-nav > a:hover, .dropdown > button:hover { color: var(--gold-dark); }

.dropdown { position: relative; }
.dropdown > button::after { content: " ▾"; font-size: 0.75em; }
.dropdown-menu {
  display: none;
  position: absolute;
  top: 100%;
  left: -10px;
  background: var(--black);
  border-top: 3px solid var(--gold);
  border-radius: 0 0 var(--radius) var(--radius);
  box-shadow: var(--shadow-lg);
  padding: 8px 0;
  min-width: 280px;
}
.dropdown:hover .dropdown-menu, .dropdown:focus-within .dropdown-menu { display: block; }
.dropdown-menu a {
  display: block;
  padding: 12px 22px;
  color: #d6d6d6;
  text-decoration: none;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}
.dropdown-menu a:hover { background: var(--charcoal); color: var(--gold); }

.nav-cta { display: flex; align-items: center; gap: 16px; }
.nav-phone { font-family: var(--display); font-weight: 700; font-size: 1.1rem; color: var(--black); text-decoration: none; white-space: nowrap; letter-spacing: 0.04em; }
.nav-phone:hover { color: var(--gold-dark); }
.nav-cta .btn { padding: 11px 24px; font-size: 0.95rem; white-space: nowrap; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span { display: block; width: 26px; height: 3px; background: var(--black); border-radius: 2px; }

/* ---------- Hero (cinematic, Crowned-style) ---------- */
.hero {
  position: relative;
  color: var(--white);
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--black);
  text-align: center;
  padding: 100px 0;
}
.hero-media {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-media img, .hero-media video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  animation: heroZoom 22s ease-in-out infinite alternate;
}
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.12); }
}
.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,0.62) 0%, rgba(0,0,0,0.45) 45%, rgba(0,0,0,0.72) 100%);
}
.hero .container { position: relative; z-index: 1; max-width: 900px; }
.hero .hero-kicker {
  font-family: var(--display);
  color: var(--gold);
  letter-spacing: 0.34em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 0.95rem;
  margin-bottom: 18px;
  display: block;
}
.hero h1 { color: var(--white); margin-bottom: 20px; text-shadow: 0 2px 24px rgba(0,0,0,0.5); }
.hero h1 em { font-style: normal; color: var(--gold); }
.hero-sub { font-size: 1.18rem; color: #e2e2e2; max-width: 640px; margin: 0 auto 32px; }
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-bottom: 34px; }

.trust-strip { display: flex; gap: 30px; flex-wrap: wrap; justify-content: center; }
.trust-item { display: flex; align-items: center; gap: 9px; font-family: var(--display); font-weight: 600; font-size: 1rem; text-transform: uppercase; letter-spacing: 0.08em; color: #e2e2e2; }
.trust-item .tick { color: var(--gold); font-size: 1.1rem; }
.trust-item .review-stars { color: var(--gold); letter-spacing: 1px; }

/* ---------- Service cards ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  padding: 34px 28px 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.card .icon { font-size: 2rem; margin-bottom: 14px; }
.card h3 { margin-bottom: 10px; }
.card p { color: var(--text-muted); font-size: 0.96rem; flex-grow: 1; }
.card .price { font-family: var(--display); font-weight: 700; color: var(--gold-dark); font-size: 1.02rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 16px; }
.card .card-link {
  display: inline-block;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  text-decoration: none;
  color: var(--black);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 10px 20px;
  align-self: flex-start;
  transition: background 0.15s ease, color 0.15s ease;
}
.card .card-link:hover { background: var(--black); color: var(--gold); }

/* ---------- Steps (How it works) ---------- */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; counter-reset: step; }
.step { position: relative; background: var(--white); border-radius: var(--radius); padding: 60px 24px 26px; box-shadow: var(--shadow); border-top: 4px solid var(--gold); }
.step::before {
  counter-increment: step;
  content: counter(step, decimal-leading-zero);
  position: absolute;
  top: 14px;
  left: 24px;
  font-family: var(--display);
  color: var(--gold);
  font-weight: 700;
  font-size: 2rem;
  line-height: 1;
}
.step h3 { font-size: 1.12rem; margin-bottom: 8px; }
.step p { font-size: 0.92rem; color: var(--text-muted); margin: 0; }

/* ---------- Stats band (Crowned-style counters) ---------- */
.stats-band {
  background: var(--black);
  color: var(--white);
  padding: 84px 0;
  background-image: linear-gradient(rgba(10,10,10,0.88), rgba(10,10,10,0.88)), url("../assets/bg-turf-backyard.jpg");
  background-size: cover;
  background-position: center;
  background-attachment: fixed;
}
.stats-band .section-head { margin-bottom: 40px; }
.stats-band h2 { color: var(--white); }
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; text-align: center; }
.stat .stat-num {
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 3.6rem);
  font-weight: 700;
  color: var(--gold);
  line-height: 1;
}
.stat .stat-label {
  font-family: var(--display);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-weight: 600;
  font-size: 0.88rem;
  color: #cfcfcf;
  margin-top: 10px;
}

/* ---------- Quick quote strip ---------- */
.quickquote {
  background: var(--gold);
  color: var(--black);
  padding: 46px 0;
}
.quickquote .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.quickquote h2 { color: var(--black); font-size: clamp(1.6rem, 3vw, 2.2rem); }
.quickquote p { margin: 6px 0 0; font-weight: 600; color: #4a3a12; }
.quickquote-phone {
  font-family: var(--display);
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--black);
  text-decoration: none;
  white-space: nowrap;
  letter-spacing: 0.02em;
}
.quickquote-phone:hover { color: var(--white); }

/* ---------- Gallery ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.gallery-item { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); background: var(--white); text-decoration: none; color: inherit; position: relative; }
.gallery-item img { width: 100%; aspect-ratio: 4 / 5; object-fit: cover; transition: transform 0.3s ease; }
.gallery-item:hover img { transform: scale(1.05); }
.gallery-item figcaption {
  padding: 14px 18px;
  font-family: var(--display);
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--black);
  border-top: 3px solid var(--gold);
}

/* ---------- Pillars / Why us ---------- */
.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.pillar { text-align: center; padding: 38px 26px; background: var(--charcoal); border-top: 4px solid var(--gold); border-radius: var(--radius); }
.pillar .icon { font-size: 2.2rem; margin-bottom: 12px; }
.pillar h3 { color: var(--white); margin-bottom: 8px; font-size: 1.15rem; }
.pillar p { color: #a8a8a8; font-size: 0.93rem; margin: 0; }

/* ---------- About ---------- */
.about-grid { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 52px; align-items: start; }
.about-grid img { border-radius: var(--radius); box-shadow: var(--shadow-lg); aspect-ratio: 4 / 5; object-fit: cover; border-bottom: 5px solid var(--gold); }
.about-quote {
  font-size: 1.15rem;
  font-weight: 500;
  border-left: 4px solid var(--gold);
  padding-left: 22px;
  color: #444;
  margin: 22px 0;
}
.about-sign { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--black); }

/* ---------- Testimonials (dark slider, Crowned-style) ---------- */
.testimonials { background: var(--black); }
.t-slider { position: relative; max-width: 860px; margin: 0 auto; overflow: hidden; }
.t-track { display: flex; transition: transform 0.5s ease; }
.t-slide { min-width: 100%; padding: 10px 60px 0; text-align: center; }
.t-slide blockquote { font-size: 1.12rem; color: #d6d6d6; line-height: 1.8; margin-bottom: 22px; font-style: italic; }
.t-slide .t-stars { color: var(--gold); font-size: 1.3rem; letter-spacing: 4px; margin-bottom: 18px; }
.t-slide .t-name { font-family: var(--display); font-weight: 700; text-transform: uppercase; letter-spacing: 0.16em; color: var(--gold); font-size: 1rem; }
.t-slide .t-loc { font-size: 0.85rem; color: #8a8a8a; margin-top: 4px; }
.t-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: transparent;
  border: 2px solid var(--gold);
  color: var(--gold);
  width: 42px; height: 42px;
  border-radius: 50%;
  font-size: 1.2rem;
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
  z-index: 2;
}
.t-nav:hover { background: var(--gold); color: var(--black); }
.t-prev { left: 0; }
.t-next { right: 0; }
.t-dots { display: flex; justify-content: center; gap: 10px; margin-top: 30px; }
.t-dot { width: 10px; height: 10px; border-radius: 50%; background: #3a3a3a; border: none; cursor: pointer; padding: 0; }
.t-dot.active { background: var(--gold); }

/* ---------- Reviews banner ---------- */
.review-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 46px;
}
.stars { color: var(--gold); font-size: 1.7rem; letter-spacing: 3px; }
.review-banner h2 { margin: 10px 0 12px; }

/* ---------- Service areas ---------- */
.areas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 18px; }
.area-chip {
  background: var(--white);
  border: 2px solid var(--black);
  border-radius: var(--radius);
  padding: 9px 22px;
  font-family: var(--display);
  font-weight: 700;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--black);
}

/* ---------- FAQ ---------- */
.faq { max-width: 800px; margin: 0 auto; }
.faq details {
  background: var(--white);
  border-radius: var(--radius);
  border-left: 4px solid var(--gold);
  box-shadow: var(--shadow);
  margin-bottom: 14px;
  overflow: hidden;
}
.faq summary {
  cursor: pointer;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.08rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  padding: 20px 54px 20px 24px;
  list-style: none;
  position: relative;
  color: var(--black);
}
.faq summary::-webkit-details-marker { display: none; }
.faq summary::after { content: "+"; position: absolute; right: 24px; top: 18px; font-size: 1.5rem; color: var(--gold-dark); line-height: 1; }
.faq details[open] summary::after { content: ""; }
.faq details p { padding: 0 24px 20px; color: var(--text-muted); margin: 0; }

/* ---------- Quote form ---------- */
.quote-section { background: var(--black); background-image: linear-gradient(rgba(12,12,12,0.92), rgba(12,12,12,0.92)), url("../assets/bg-turf-borders.jpg"); background-size: cover; background-position: center; }
.quote-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 52px; align-items: start; }
.quote-info h2 { color: var(--white); }
.quote-info p { color: #a8a8a8; }
.quote-perks { list-style: none; margin: 24px 0; }
.quote-perks li { padding: 8px 0; color: #d6d6d6; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.07em; font-size: 0.98rem; }
.quote-perks li::before { content: "✓  "; color: var(--gold); font-weight: 800; }
.quote-phone { font-family: var(--display); font-size: 1.9rem; font-weight: 700; color: var(--gold); text-decoration: none; letter-spacing: 0.02em; }
.quote-phone:hover { color: var(--gold-light); }

.quote-form {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 5px solid var(--gold);
  padding: 36px;
  box-shadow: var(--shadow-lg);
}
.quote-form h3 { margin-bottom: 4px; }
.form-note { font-size: 0.88rem; color: var(--text-muted); margin-bottom: 18px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }
.quote-form label { display: block; font-family: var(--display); font-weight: 700; font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.08em; margin: 14px 0 5px; color: var(--black); }
.quote-form input, .quote-form select, .quote-form textarea {
  width: 100%;
  padding: 13px 14px;
  border: 1.5px solid #d5d5d5;
  border-radius: var(--radius);
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--gray-bg);
  color: var(--text);
}
.quote-form input:focus, .quote-form select:focus, .quote-form textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
}
.quote-form textarea { resize: vertical; min-height: 90px; }
.quote-form .btn { width: 100%; margin-top: 22px; }
.form-privacy { font-size: 0.8rem; color: var(--text-muted); margin-top: 12px; text-align: center; }

/* ---------- Footer ---------- */
.site-footer { background: #0d0d0d; color: #9a9a9a; padding: 60px 0 0; font-size: 0.94rem; border-top: 4px solid var(--gold); }
.footer-grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 36px; padding-bottom: 44px; }
.site-footer h4 { color: var(--gold); font-size: 1.05rem; margin-bottom: 16px; letter-spacing: 0.14em; }
.site-footer a { color: #9a9a9a; text-decoration: none; }
.site-footer a:hover { color: var(--gold); }
.site-footer ul { list-style: none; }
.site-footer li { padding: 4px 0; }
.footer-brand img { height: 62px; margin-bottom: 14px; }
.footer-bottom { border-top: 1px solid #242424; padding: 18px 0; text-align: center; font-size: 0.84rem; color: #6f6f6f; }

/* ---------- Sticky mobile call bar ---------- */
.mobile-callbar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 200;
  background: var(--black);
  box-shadow: 0 -4px 16px rgba(0,0,0,0.3);
  padding: 10px 14px;
  gap: 10px;
}
.mobile-callbar a {
  flex: 1;
  text-align: center;
  padding: 13px 8px;
  border-radius: var(--radius);
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  text-decoration: none;
  font-size: 1rem;
}
.callbar-phone { background: var(--charcoal); color: var(--white); border: 1px solid #3a3a3a; }
.callbar-quote { background: var(--gold); color: var(--black); }

/* ---------- Service page hero ---------- */
.page-hero {
  background: var(--black);
  background-image: linear-gradient(rgba(10,10,10,0.78), rgba(10,10,10,0.86)), url("../assets/bg-pergola.jpg");
  background-size: cover;
  background-position: center;
  color: var(--white);
  padding: 72px 0 62px;
}
.page-hero h1 { color: var(--white); max-width: 860px; }
.page-hero .hero-sub { margin: 16px 0 0; max-width: 680px; }
.breadcrumb { font-family: var(--display); font-size: 0.88rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 20px; color: #9a9a9a; }
.breadcrumb a { color: var(--gold); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.price-anchor {
  display: inline-block;
  background: rgba(217, 168, 67, 0.14);
  border: 1px solid var(--gold);
  color: var(--gold-light);
  border-radius: var(--radius);
  padding: 9px 22px;
  font-family: var(--display);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.98rem;
  margin-top: 22px;
}

.content-grid { display: grid; grid-template-columns: 1.6fr 1fr; gap: 48px; align-items: start; }
.content-main h2 { margin: 38px 0 14px; }
.content-main h2:first-child { margin-top: 0; }
.content-main ul { margin: 0 0 1em 22px; }
.content-main li { margin-bottom: 8px; }

.sidebar-card {
  background: var(--white);
  border-radius: var(--radius);
  border-top: 4px solid var(--gold);
  box-shadow: var(--shadow);
  padding: 30px;
  position: sticky;
  top: 104px;
}
.sidebar-card h3 { margin-bottom: 12px; }
.sidebar-card .btn { width: 100%; margin-top: 14px; }
.sidebar-links { list-style: none; margin-top: 10px; }
.sidebar-links li { padding: 7px 0; border-bottom: 1px solid #e8e8e8; }
.sidebar-links a { text-decoration: none; font-family: var(--display); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--black); font-size: 0.95rem; }
.sidebar-links a:hover { color: var(--gold-dark); }

/* ---------- Thank you ---------- */
.thanks-wrap { max-width: 640px; margin: 0 auto; text-align: center; padding: 90px 20px; }
.thanks-wrap .big { font-size: 3rem; }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .brand-name { display: none; }
  .main-nav { gap: 18px; }
}

@media (max-width: 960px) {
  .cards, .pillars, .gallery { grid-template-columns: 1fr 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .stats { grid-template-columns: 1fr 1fr; row-gap: 40px; }
  .about-grid, .quote-grid, .review-banner, .content-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .sidebar-card { position: static; }
  .stats-band { background-attachment: scroll; }
}

@media (max-width: 720px) {
  .section { padding: 56px 0; }
  .cards, .pillars, .gallery, .steps, .form-row { grid-template-columns: 1fr; }
  .hero { min-height: 76vh; padding: 70px 0; }
  .t-slide { padding: 10px 8px 0; }
  .t-nav { display: none; }
  .quickquote .container { justify-content: center; text-align: center; }

  .main-nav {
    display: none;
    position: absolute;
    top: 80px;
    left: 0; right: 0;
    background: var(--black);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px 22px 22px;
    box-shadow: 0 12px 24px rgba(0,0,0,0.4);
  }
  .main-nav.open { display: flex; }
  .main-nav > a, .dropdown > button { padding: 14px 0; border-bottom: 1px solid #2a2a2a; width: 100%; text-align: left; font-size: 1.1rem; color: var(--white); }
  .main-nav > a:hover, .dropdown > button:hover { color: var(--gold); }
  .dropdown-menu { position: static; box-shadow: none; border-top: none; padding-left: 14px; min-width: 0; }
  .nav-toggle { display: flex; }
  .nav-cta .btn { display: none; }
  .nav-phone { font-size: 1rem; }

  .mobile-callbar { display: flex; }
  body { padding-bottom: 66px; }

  .topbar .container { justify-content: center; text-align: center; }
  .topbar .topbar-areas { display: none; }
}
