/* ==========================================================================
   LUXMI MOTORS — Stylesheet
   Design tokens: near-black base, LUXMI red, muted metallic gold, warm white
   Type: Big Shoulders Display (headlines) / Manrope (body) / Space Grotesk (data)
   Signature motif: gold "trim line" dividers + dashboard gauge-dial stats
   ========================================================================== */

/* ---------------------------------- */
/* 1. TOKENS                          */
/* ---------------------------------- */
:root {
  /* Color */
  --black: #0d0d0d;
  --charcoal: #171512;
  --charcoal-light: #221f1a;
  --red: #b01730;
  --red-dark: #7a0f21;
  --red-bright: #d41f3c;
  --gold: #c9a24b;
  --gold-bright: #e8c874;
  --white: #f5f3ef;
  --white-dim: #cfcbc2;
  --line: rgba(245, 243, 239, 0.1);

  /* Type */
  --font-display: 'Big Shoulders Display', sans-serif;
  --font-body: 'Manrope', sans-serif;
  --font-mono: 'Space Grotesk', sans-serif;

  /* Layout */
  --container: 1240px;
  --radius-sm: 4px;
  --radius: 10px;
  --radius-lg: 18px;

  /* Motion */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --dur: 0.5s;

  /* Shadow */
  --shadow-lg: 0 30px 60px -20px rgba(0, 0, 0, 0.6);
  --shadow-gold: 0 0 0 1px rgba(201, 162, 75, 0.35), 0 20px 40px -15px rgba(201, 162, 75, 0.25);
}

/* ---------------------------------- */
/* 2. RESET                           */
/* ---------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { margin: 0; font-family: var(--font-display); font-weight: 700; letter-spacing: 0.01em; text-transform: uppercase; }
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }
.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; scroll-behavior: auto !important; }
}

/* visible keyboard focus */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible, select:focus-visible {
  outline: 2px solid var(--gold-bright);
  outline-offset: 3px;
}

/* ---------------------------------- */
/* 3. UTILITIES                       */
/* ---------------------------------- */
.text-gold { color: var(--gold-bright); }
.text-light { color: var(--white); }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--gold-bright); }
.eyebrow__line { width: 28px; height: 2px; background: var(--gold); display: inline-block; }

.section { padding: 110px 0; position: relative; }
.section__head { max-width: 640px; margin-bottom: 56px; }
.section__head--light { max-width: 640px; }
.section__title { font-size: clamp(2rem, 4vw, 2.9rem); line-height: 1.05; color: var(--white); }
.section__desc { margin-top: 16px; color: var(--white-dim); font-size: 1.02rem; max-width: 54ch; }
.section__cta { margin-top: 48px; text-align: center; }

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

/* reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------------------------------- */
/* 4. PLACEHOLDER IMAGE SYSTEM         */
/* Named divs with background-image;  */
/* a styled gradient fallback shows    */
/* until a same-named file exists.     */
/* ---------------------------------- */
.ph {
  position: relative;
  background-color: var(--charcoal);
  background-image:
    linear-gradient(135deg, rgba(176,23,48,0.35), rgba(201,162,75,0.12) 45%, rgba(13,13,13,0.9)),
    repeating-linear-gradient(45deg, rgba(245,243,239,0.035) 0 2px, transparent 2px 14px);
  background-size: cover, auto;
  background-position: center;
}
.ph::after {
  content: attr(data-img);
  position: absolute;
  inset: auto 14px 14px auto;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.06em;
  color: rgba(245, 243, 239, 0.55);
  background: rgba(13, 13, 13, 0.55);
  border: 1px solid rgba(201, 162, 75, 0.35);
  padding: 4px 8px;
  border-radius: var(--radius-sm);
  pointer-events: none;
}
/* Once script.js confirms the real photo has loaded, it adds .has-photo
   and sets the background-image directly — this hides the gradient
   texture and the filename label so only the real photo shows. */
.ph.has-photo {
  background-image: none;
  background-color: transparent;
}
.ph.has-photo::after { display: none; }

/* ---------------------------------- */
/* 5. BUTTONS                         */
/* ---------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-mono);
  font-weight: 600;
  font-size: 0.85rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  padding: 13px 26px;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease), color 0.3s var(--ease), border-color 0.3s var(--ease);
  white-space: nowrap;
}
.btn__icon { width: 15px; height: 15px; fill: currentColor; }
.btn--lg { padding: 16px 32px; font-size: 0.9rem; }

.btn--primary {
  background: linear-gradient(135deg, var(--red-bright), var(--red-dark));
  color: var(--white);
  box-shadow: 0 12px 24px -10px rgba(176, 23, 48, 0.55);
}
.btn--primary:hover { transform: translateY(-2px); box-shadow: 0 18px 32px -12px rgba(176, 23, 48, 0.7); }

.btn--ghost { background: transparent; color: var(--white); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-bright); }

.btn--outline { background: transparent; color: var(--gold-bright); border-color: var(--gold); }
.btn--outline:hover { background: var(--gold); color: var(--black); box-shadow: var(--shadow-gold); transform: translateY(-2px); }

.btn--outline-light { background: transparent; color: var(--white); border-color: rgba(245,243,239,0.5); }
.btn--outline-light:hover { border-color: var(--white); background: rgba(245,243,239,0.08); }

/* ---------------------------------- */
/* 6. PRELOADER                       */
/* ---------------------------------- */
#preloader {
  position: fixed; inset: 0; z-index: 999;
  background: var(--black);
  display: flex; align-items: center; justify-content: center;
  transition: opacity 0.6s var(--ease), visibility 0.6s var(--ease);
}
#preloader.is-hidden { opacity: 0; visibility: hidden; }
.preloader__ring { stroke: rgba(201,162,75,0.25); }
.preloader__needle { stroke: var(--gold-bright); transform-origin: 60px 60px; animation: needleSweep 1.1s ease-in-out infinite; }
.preloader__hub { fill: var(--gold-bright); }
@keyframes needleSweep {
  0%, 100% { transform: rotate(-55deg); }
  50% { transform: rotate(55deg); }
}

/* ---------------------------------- */
/* 7. NAVIGATION                      */
/* ---------------------------------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 500;
  background: rgba(13, 13, 13, 0.35);
  backdrop-filter: blur(14px) saturate(140%);
  -webkit-backdrop-filter: blur(14px) saturate(140%);
  border-bottom: 1px solid transparent;
  transition: background 0.4s var(--ease), border-color 0.4s var(--ease), padding 0.4s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.82);
  border-bottom-color: rgba(201, 162, 75, 0.28);
}
.nav {
  max-width: var(--container);
  margin: 0 auto;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand { display: flex; align-items: center; gap: 12px; }
.nav__logo { width: 42px; height: 42px; object-fit: contain; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1; }
.nav__brand-name { font-family: var(--font-display); font-size: 1.35rem; font-weight: 800; letter-spacing: 0.04em; color: var(--white); }
.nav__brand-sub { font-family: var(--font-mono); font-size: 0.6rem; letter-spacing: 0.35em; color: var(--gold-bright); margin-top: 3px; }

.nav__menu { display: flex; align-items: center; gap: 40px; }
.nav__links { display: flex; gap: 34px; }
.nav__links a {
  font-family: var(--font-mono);
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white-dim);
  position: relative;
  padding-bottom: 4px;
  transition: color 0.3s;
}
.nav__links a::after {
  content: ''; position: absolute; left: 0; bottom: 0; height: 2px; width: 0;
  background: var(--gold-bright); transition: width 0.3s var(--ease);
}
.nav__links a:hover, .nav__links a.is-active { color: var(--white); }
.nav__links a:hover::after, .nav__links a.is-active::after { width: 100%; }

.nav__actions { display: flex; gap: 12px; }
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none; border: none; padding: 8px;
}
.nav__toggle span { width: 24px; height: 2px; background: var(--white); transition: transform 0.3s, opacity 0.3s; }

/* ---------------------------------- */
/* 8. HERO                            */
/* ---------------------------------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(13,13,13,0.55) 0%, rgba(13,13,13,0.65) 55%, var(--black) 100%),
    linear-gradient(90deg, rgba(13,13,13,0.85) 0%, transparent 55%);
}
.hero__gear {
  position: absolute; right: -60px; bottom: -60px; width: 380px; height: 380px;
  color: rgba(201, 162, 75, 0.09);
  animation: spin 40s linear infinite;
}
@keyframes spin { to { transform: rotate(360deg); } }

.hero__content { position: relative; z-index: 2; padding-top: 80px; }
.hero__title {
  font-size: clamp(2.6rem, 6vw, 5rem);
  line-height: 0.98;
  color: var(--white);
  max-width: 16ch;
  text-shadow: 0 10px 40px rgba(0,0,0,0.5);
}
.hero__subtitle {
  margin-top: 22px;
  font-size: 1.15rem;
  color: var(--white-dim);
  max-width: 42ch;
  font-weight: 500;
}
.hero__actions { display: flex; gap: 18px; margin-top: 40px; flex-wrap: wrap; }

.hero__scroll {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  width: 26px; height: 42px; border: 2px solid rgba(245,243,239,0.4); border-radius: 20px;
  z-index: 2;
}
.hero__scroll span {
  position: absolute; top: 8px; left: 50%; transform: translateX(-50%);
  width: 4px; height: 8px; background: var(--gold-bright); border-radius: 2px;
  animation: scrollDot 1.8s ease-in-out infinite;
}
@keyframes scrollDot {
  0% { top: 8px; opacity: 1; }
  70% { top: 22px; opacity: 0; }
  100% { top: 8px; opacity: 0; }
}

/* ---------------------------------- */
/* 9. TRIM LINE (signature divider)    */
/* ---------------------------------- */
.trim-line {
  height: 1px; position: relative;
  background: linear-gradient(90deg, transparent, var(--line) 15%, var(--line) 85%, transparent);
  max-width: var(--container); margin: 0 auto;
}
.trim-line span {
  position: absolute; top: -1px; left: 0; height: 3px; width: 0;
  background: linear-gradient(90deg, transparent, var(--gold-bright), transparent);
  box-shadow: 0 0 16px 1px rgba(232, 200, 116, 0.6);
  transition: width 1.4s var(--ease);
}
.trim-line.is-visible span { width: 100%; }
.trim-line--footer { margin: 0 auto; opacity: 0.6; }

/* ---------------------------------- */
/* 10. SERVICE CARDS                  */
/* ---------------------------------- */
.service-card {
  display: flex; flex-direction: column; gap: 14px;
  background: linear-gradient(180deg, var(--charcoal-light), var(--charcoal));
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px 30px;
  transition: transform 0.4s var(--ease), border-color 0.4s var(--ease), box-shadow 0.4s var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(circle at 85% -10%, rgba(201,162,75,0.16), transparent 55%);
  opacity: 0; transition: opacity 0.4s;
}
.service-card:hover { transform: translateY(-6px); border-color: rgba(201,162,75,0.4); box-shadow: var(--shadow-lg); }
.service-card:hover::before { opacity: 1; }
.service-card__icon {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  background: rgba(201, 162, 75, 0.08); color: var(--gold-bright);
  border: 1px solid rgba(201, 162, 75, 0.3);
  transition: transform 0.4s var(--ease), background 0.4s var(--ease);
}
.service-card__icon svg { width: 28px; height: 28px; }
.service-card:hover .service-card__icon { transform: rotate(-8deg) scale(1.06); background: rgba(201,162,75,0.16); }
.service-card h3 { font-size: 1.35rem; color: var(--white); }
.service-card p { color: var(--white-dim); font-size: 0.95rem; }
.service-card__link {
  margin-top: auto; font-family: var(--font-mono); font-size: 0.8rem;
  letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-bright);
  display: inline-flex; align-items: center; gap: 6px;
}
.service-card__link span { transition: transform 0.3s var(--ease); }
.service-card:hover .service-card__link span { transform: translateX(5px); }

/* ---------------------------------- */
/* 11. WHY CHOOSE US                  */
/* ---------------------------------- */
.why-card { text-align: left; padding: 8px 0; }
.why-card__icon {
  width: 46px; height: 46px; color: var(--gold-bright); margin-bottom: 18px;
  transition: transform 0.4s var(--ease);
}
.why-card:hover .why-card__icon { transform: translateY(-4px) scale(1.05); }
.why-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
.why-card p { color: var(--white-dim); font-size: 0.92rem; }

/* ---------------------------------- */
/* 12. STATS / GAUGES                 */
/* ---------------------------------- */
.stats { padding: 130px 0; position: relative; overflow: hidden; }
.stats__media { position: absolute; inset: 0; }
.stats__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0.92), rgba(13,13,13,0.88)); }
.stats .container { position: relative; z-index: 2; }

.gauge { display: flex; flex-direction: column; align-items: center; text-align: center; }
.gauge__svg { width: 140px; height: auto; }
.gauge__track { stroke: rgba(245,243,239,0.12); }
.gauge__fill { stroke: var(--gold-bright); stroke-linecap: round; filter: drop-shadow(0 0 6px rgba(232,200,116,0.6)); transition: stroke-dashoffset 1.6s var(--ease); }
.gauge__needle { stroke: var(--red-bright); transform-origin: 60px 65px; transform: rotate(-90deg); transition: transform 1.6s var(--ease); }
.gauge__hub { fill: var(--white); }
.gauge__value { font-family: var(--font-mono); font-size: 2.1rem; font-weight: 700; color: var(--white); margin-top: 6px; }
.gauge__label { font-family: var(--font-mono); font-size: 0.75rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--white-dim); margin-top: 4px; }

/* ---------------------------------- */
/* 13. TESTIMONIALS                   */
/* ---------------------------------- */
.testimonial-slider { max-width: 760px; margin: 0 auto; overflow: hidden; }
.testimonial-track { display: flex; transition: transform 0.6s var(--ease); }
.testimonial {
  min-width: 100%; margin: 0; padding: 44px 48px;
  background: linear-gradient(180deg, var(--charcoal-light), var(--charcoal));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  text-align: center;
}
.testimonial__stars { color: var(--gold-bright); letter-spacing: 4px; font-size: 1.1rem; margin-bottom: 18px; }
.testimonial p { font-size: 1.15rem; line-height: 1.65; color: var(--white); font-style: italic; }
.testimonial cite { display: block; margin-top: 22px; font-family: var(--font-mono); font-style: normal; font-size: 0.8rem; letter-spacing: 0.06em; color: var(--gold-bright); text-transform: uppercase; }

.testimonial-controls { display: flex; align-items: center; justify-content: center; gap: 22px; margin-top: 32px; }
.testimonial-btn {
  width: 42px; height: 42px; border-radius: 50%; border: 1px solid var(--line);
  background: transparent; color: var(--white); display: flex; align-items: center; justify-content: center;
  transition: border-color 0.3s, color 0.3s;
}
.testimonial-btn:hover { border-color: var(--gold); color: var(--gold-bright); }
.testimonial-btn svg { width: 18px; height: 18px; }
.testimonial-dots { display: flex; gap: 8px; }
.testimonial-dots button { width: 8px; height: 8px; border-radius: 50%; background: var(--line); border: none; padding: 0; transition: background 0.3s, transform 0.3s; }
.testimonial-dots button.is-active { background: var(--gold-bright); transform: scale(1.3); }

/* ---------------------------------- */
/* 14. GALLERY (masonry)              */
/* ---------------------------------- */
.masonry { columns: 4 220px; column-gap: 20px; }
.masonry__item {
  break-inside: avoid; margin-bottom: 20px; border-radius: var(--radius);
  min-height: 200px; position: relative; overflow: hidden;
  transition: transform 0.5s var(--ease);
  border: 1px solid var(--line);
}
.masonry__item--tall { min-height: 320px; }
.masonry__item:hover { transform: scale(1.02); }
.masonry__item::before {
  content: ''; position: absolute; inset: 0; background: linear-gradient(180deg, transparent 60%, rgba(13,13,13,0.7));
  opacity: 0; transition: opacity 0.4s;
}
.masonry__item:hover::before { opacity: 1; }

/* ---------------------------------- */
/* 15. CTA BANNER                     */
/* ---------------------------------- */
.cta-banner { position: relative; padding: 120px 0; overflow: hidden; text-align: center; }
.cta-banner__media { position: absolute; inset: 0; }
.cta-banner__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0.85), rgba(122,15,33,0.55)); }
.cta-banner__content { position: relative; z-index: 2; }
.cta-banner h2 { font-size: clamp(2rem, 4.5vw, 3.2rem); color: var(--white); max-width: 18ch; margin: 0 auto; }
.cta-banner p { margin-top: 16px; color: var(--white-dim); font-size: 1.05rem; }
.cta-banner__actions { display: flex; gap: 18px; justify-content: center; margin-top: 36px; flex-wrap: wrap; }

/* ---------------------------------- */
/* 16. FOOTER                         */
/* ---------------------------------- */
.site-footer { background: var(--charcoal); padding-top: 80px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 40px; padding-bottom: 60px; }
.footer__tagline { color: var(--white-dim); font-size: 0.92rem; margin: 18px 0 22px; max-width: 32ch; }
.footer__social { display: flex; gap: 12px; }
.social-icon {
  width: 38px; height: 38px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--white-dim);
  transition: border-color 0.3s, color 0.3s;
}
.social-icon svg { width: 17px; height: 17px; }
.social-icon:hover { border-color: var(--gold); color: var(--gold-bright); }

.footer__col h4 { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.12em; color: var(--gold-bright); margin-bottom: 18px; text-transform: uppercase; }
.footer__links li, .footer__contact li { margin-bottom: 12px; }
.footer__links a { color: var(--white-dim); font-size: 0.92rem; transition: color 0.3s; }
.footer__links a:hover { color: var(--white); }
.footer__contact li { display: flex; align-items: flex-start; gap: 10px; color: var(--white-dim); font-size: 0.92rem; }
.footer__icon { width: 18px; height: 18px; flex-shrink: 0; margin-top: 2px; color: var(--gold-bright); }
.footer__contact a { color: var(--white-dim); }
.footer__contact a:hover { color: var(--gold-bright); }
.footer__map-link { color: var(--gold-bright) !important; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.05em; }

.footer__hours li { display: flex; justify-content: space-between; font-size: 0.88rem; color: var(--white-dim); margin-bottom: 10px; font-family: var(--font-mono); }
.footer__hours span:last-child { color: var(--white); }

.footer__bottom { display: flex; justify-content: space-between; padding: 26px 0; font-size: 0.8rem; color: var(--white-dim); flex-wrap: wrap; gap: 8px; }

/* ---------------------------------- */
/* 17. RESPONSIVE                     */
/* ---------------------------------- */
@media (max-width: 980px) {
  .grid--services, .grid--why { grid-template-columns: repeat(2, 1fr); }
  .grid--gauges { grid-template-columns: repeat(2, 1fr); }
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .masonry { columns: 3 180px; }
}

@media (max-width: 860px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed; top: 74px; left: 0; right: 0; bottom: 0;
    background: rgba(13,13,13,0.98); backdrop-filter: blur(10px);
    flex-direction: column; align-items: flex-start; justify-content: flex-start;
    padding: 40px 28px; gap: 36px;
    transform: translateX(100%); transition: transform 0.4s var(--ease);
  }
  .nav__menu.is-open { transform: translateX(0); }
  .nav__links { flex-direction: column; gap: 22px; }
  .nav__links a { font-size: 1.1rem; }
  .nav__actions { flex-direction: column; width: 100%; }
  .nav__actions .btn { width: 100%; justify-content: center; }
}

@media (max-width: 720px) {
  .section { padding: 76px 0; }
  .grid--services, .grid--why, .grid--gauges { grid-template-columns: 1fr; }
  .footer__grid { grid-template-columns: 1fr; }
  .masonry { columns: 2 150px; }
  .testimonial { padding: 32px 26px; }
  .hero__actions .btn { width: 100%; justify-content: center; }
  .hero__title { max-width: 100%; }
  .footer__bottom { flex-direction: column; }
}

@media (max-width: 400px) {
  .nav { padding: 14px 16px; }
  .nav__logo { width: 34px; height: 34px; }
  .nav__brand-name { font-size: 1.1rem; }
  .nav__brand-sub { font-size: 0.52rem; letter-spacing: 0.28em; }
  .nav__brand { gap: 8px; }
}

/* ==========================================================================
   18. INNER PAGE HERO (services / about / contact)
   ========================================================================== */
.page-hero { position: relative; padding: 200px 0 100px; overflow: hidden; }
.page-hero--sm { padding: 180px 0 80px; }
.page-hero__media { position: absolute; inset: 0; }
.page-hero__overlay { position: absolute; inset: 0; background: linear-gradient(180deg, rgba(13,13,13,0.72), var(--black) 92%), linear-gradient(90deg, rgba(13,13,13,0.85), transparent 60%); }
.page-hero__content { position: relative; z-index: 2; max-width: 640px; }
.page-hero__content h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); color: var(--white); line-height: 1.02; }
.page-hero__content p { margin-top: 16px; color: var(--white-dim); font-size: 1.05rem; }

/* ==========================================================================
   19. SERVICES PAGE — full grid + detail sections
   ========================================================================== */
.grid--services-full { grid-template-columns: repeat(4, 1fr); }

.service-details__stack { display: flex; flex-direction: column; gap: 26px; }
.service-detail {
  display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 0;
  background: linear-gradient(180deg, var(--charcoal-light), var(--charcoal));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  overflow: hidden; scroll-margin-top: 110px;
  transition: box-shadow 0.6s var(--ease), border-color 0.6s var(--ease);
}
.service-detail.is-highlighted { border-color: var(--gold); box-shadow: var(--shadow-gold); }
.service-detail:nth-child(even) { grid-template-columns: 1.15fr 0.85fr; }
.service-detail:nth-child(even) .service-detail__media { order: 2; }
.service-detail__media { min-height: 320px; }
.service-detail__body { padding: 44px 46px; display: flex; flex-direction: column; gap: 6px; }
.service-detail__body h2 { font-size: 1.9rem; color: var(--white); margin-bottom: 8px; }
.service-detail__body > p { color: var(--white-dim); margin-bottom: 6px; }
.service-detail__body h3 { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-bright); margin-top: 18px; margin-bottom: 8px; }
.benefits-list { display: flex; flex-direction: column; gap: 8px; margin-bottom: 4px; }
.benefits-list li { position: relative; padding-left: 22px; color: var(--white-dim); font-size: 0.94rem; }
.benefits-list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 8px; height: 8px; border-radius: 50%; background: var(--gold-bright); }
.service-detail .btn { margin-top: 22px; align-self: flex-start; }

/* ==========================================================================
   20. ABOUT PAGE
   ========================================================================== */
.about-block { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.about-block--reverse .about-block__media { order: 2; }
.about-block__media { min-height: 380px; border-radius: var(--radius-lg); overflow: hidden; }
.about-block__body p { color: var(--white-dim); margin-top: 16px; }
.about-block__body .section__title { margin-bottom: 4px; }

.grid--values { grid-template-columns: repeat(4, 1fr); }
.value-card { padding: 6px 0; }
.value-card__icon { width: 44px; height: 44px; color: var(--gold-bright); margin-bottom: 16px; }
.value-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.value-card p { color: var(--white-dim); font-size: 0.9rem; }

.grid--team { grid-template-columns: repeat(3, 1fr); }
.team-card__media { height: 260px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px; }
.team-card h3 { font-size: 1.2rem; color: var(--white); margin-bottom: 6px; }
.team-card p { color: var(--white-dim); font-size: 0.92rem; }

.grid--trust { grid-template-columns: repeat(3, 1fr); }
.trust-card__media { height: 220px; border-radius: var(--radius-lg); overflow: hidden; margin-bottom: 18px; }
.trust-card h3 { font-size: 1.15rem; color: var(--white); margin-bottom: 8px; }
.trust-card p { color: var(--white-dim); font-size: 0.92rem; }

/* ==========================================================================
   21. CONTACT PAGE
   ========================================================================== */
.grid--contact-cards { grid-template-columns: repeat(3, 1fr); }
.contact-card {
  background: linear-gradient(180deg, var(--charcoal-light), var(--charcoal));
  border: 1px solid var(--line); border-radius: var(--radius-lg);
  padding: 32px 28px; text-align: left;
}
.contact-card svg { width: 40px; height: 40px; color: var(--gold-bright); margin-bottom: 16px; }
.contact-card h3 { font-size: 1.1rem; color: var(--white); margin-bottom: 8px; }
.contact-card p { color: var(--white-dim); font-size: 0.94rem; }
.contact-card p a { color: var(--white-dim); }
.contact-card__link { display: inline-block; margin-top: 14px; font-family: var(--font-mono); font-size: 0.8rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--gold-bright); }

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

.booking-form { margin-top: 32px; display: flex; flex-direction: column; gap: 20px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-field { display: flex; flex-direction: column; gap: 8px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label { font-family: var(--font-mono); font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--white-dim); }
.form-field input, .form-field select, .form-field textarea {
  background: var(--charcoal); border: 1px solid var(--line); border-radius: var(--radius-sm);
  color: var(--white); padding: 13px 14px; font-family: var(--font-body); font-size: 0.95rem;
  transition: border-color 0.3s;
}
.form-field input::placeholder, .form-field textarea::placeholder { color: rgba(245,243,239,0.35); }
.form-field input:focus, .form-field select:focus, .form-field textarea:focus { border-color: var(--gold); outline: none; }
.form-field.has-error input, .form-field.has-error select { border-color: var(--red-bright); }
.form-field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23c9a24b' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; background-size: 16px; }
.booking-form textarea { resize: vertical; min-height: 100px; }
.booking-form .btn { align-self: flex-start; }

.form-status { font-size: 0.9rem; min-height: 1.2em; }
.form-status--success { color: var(--gold-bright); }
.form-status--error { color: var(--red-bright); }

.booking__map-wrap { display: flex; flex-direction: column; gap: 18px; position: sticky; top: 110px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); height: 340px; }
.map-actions { display: flex; gap: 14px; }
.map-actions .btn { flex: 1; justify-content: center; }

/* ==========================================================================
   22. INNER PAGE RESPONSIVE
   ========================================================================== */
@media (max-width: 980px) {
  .grid--services-full { grid-template-columns: repeat(2, 1fr); }
  .grid--values { grid-template-columns: repeat(2, 1fr); }
  .grid--team, .grid--trust, .grid--contact-cards { grid-template-columns: repeat(2, 1fr); }
  .service-detail, .service-detail:nth-child(even) { grid-template-columns: 1fr; }
  .service-detail__media { order: -1 !important; min-height: 240px; }
  .about-block, .about-block--reverse { grid-template-columns: 1fr; }
  .about-block--reverse .about-block__media { order: -1; }
  .booking__grid { grid-template-columns: 1fr; }
  .booking__map-wrap { position: static; }
}

@media (max-width: 720px) {
  .grid--services-full { grid-template-columns: 1fr; }
  .grid--values, .grid--team, .grid--trust, .grid--contact-cards { grid-template-columns: 1fr; }
  .service-detail__body { padding: 30px 26px; }
  .form-row { grid-template-columns: 1fr; }
  .page-hero { padding: 150px 0 70px; }
}