/* ============================================
   THE CLEANING QUEEN LLC — v2
   Design tokens
   ============================================
   Signature element: the Royal Seal — a circular
   crest badge (crown + ring text) that stamps key
   trust moments throughout the page, echoing the
   "Queen" brand in an ownable, non-generic way.
   ============================================ */

html {
  color-scheme: light only;
  forced-color-adjust: none;
  -webkit-forced-color-adjust: none;
}

body {
  forced-color-adjust: none;
  -webkit-forced-color-adjust: none;
}

:root {
  color-scheme: light;

  /* Color */
  --ink: #0a0a0a;
  --ink-soft: #1a1814;
  --paper: #faf7f0;
  --paper-dim: #f1ece0;
  --gold: #c9a227;
  --gold-light: #f3de8a;
  --gold-deep: #8a6a1f;
  --rose: #e91e7a;
  --rose-deep: #b4135c;
  --text-muted: #6b6458;
  --line: rgba(255,255,255,0.12);
  --line-dark: rgba(10,10,10,0.12);

  /* Type */
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Inter', -apple-system, sans-serif;

  /* Layout */
  --max: 1180px;
  --pad: 20px;
  --radius: 14px;
}

* { box-sizing: border-box; }

html, body {
  margin: 0;
  padding: 0;
  background: var(--paper);
  color: var(--ink);
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  margin: 0;
  letter-spacing: -0.01em;
}
p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

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

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 16px 30px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 15px;
  letter-spacing: 0.01em;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  white-space: nowrap;
}
.btn--gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink);
  box-shadow: 0 6px 24px rgba(201,162,39,0.35);
}
.btn--gold:hover { transform: translateY(-2px); box-shadow: 0 10px 30px rgba(201,162,39,0.45); }
.btn--dark {
  background: var(--ink);
  color: var(--gold-light);
}
.btn--dark:hover { transform: translateY(-2px); background: var(--ink-soft); }
.btn--ghost {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.5);
  color: #fff;
}
.btn--ghost:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn--rose {
  background: var(--rose);
  color: #fff;
  box-shadow: 0 6px 24px rgba(233,30,122,0.30);
}
.btn--rose:hover { transform: translateY(-2px); background: var(--rose-deep); }

/* ============================================
   ROYAL SEAL (signature element)
   ============================================ */
.seal {
  --seal-size: 132px;
  width: var(--seal-size);
  height: var(--seal-size);
  border-radius: 50%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: radial-gradient(circle at 32% 28%, #fff7df, var(--gold-light) 38%, var(--gold) 72%, var(--gold-deep) 100%);
  box-shadow:
    0 0 0 4px var(--paper),
    0 0 0 6px var(--gold-deep),
    0 14px 34px rgba(10,10,10,0.28);
}
.seal__inner {
  width: 78%;
  height: 78%;
  border-radius: 50%;
  border: 1.5px dashed rgba(10,10,10,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}
.seal__crown {
  width: 46%;
  height: auto;
}
.seal__ring-text {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
}
.seal__ring-text text {
  font-family: var(--font-body);
  font-size: 7.6px;
  font-weight: 800;
  fill: var(--ink);
  text-transform: uppercase;
}
.seal--sm { --seal-size: 86px; }
.seal--sm .seal__ring-text text { font-size: 6.2px; }

/* ============================================
   TOP BAR
   ============================================ */
.top-bar {
  background: var(--ink);
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.02em;
}
.top-bar__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 9px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}
.top-bar__link { display: inline-flex; align-items: center; gap: 7px; }
.top-bar__link:hover { color: #fff; }
.top-bar__badge {
  color: rgba(255,255,255,0.55);
  font-weight: 600;
}
@media (max-width: 640px) {
  .top-bar__badge { display: none; }
}

/* ============================================
   HEADER / NAV
   ============================================ */
.site-header {
  background: var(--ink);
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
}
.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 14px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 12px; color: #fff; }
.brand__crest { height: 44px; width: auto; flex-shrink: 0; }
.brand__text { display: flex; flex-direction: column; line-height: 1.15; }
.brand__name { font-family: var(--font-display); font-weight: 600; font-size: 19px; }
@media (max-width: 480px) {
  .brand__name { font-size: 15px; }
}
.brand__loc { font-size: 10.5px; letter-spacing: 0.12em; color: var(--gold-light); font-weight: 700; }

.nav {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav a { margin-right: 30px; }
.nav a:last-of-type { margin-right: 0; }
.nav__cta { margin-right: 0 !important; }
.nav a {
  color: rgba(255,255,255,0.82);
  font-size: 14.5px;
  font-weight: 600;
  transition: color 0.15s ease;
}
.nav a:hover { color: #fff; }
.nav__cta {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--ink) !important;
  padding: 11px 22px;
  border-radius: 999px;
  font-weight: 800 !important;
}
.nav__cta:hover { filter: brightness(1.05); }

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 8px;
}
.nav-toggle span { width: 24px; height: 2px; background: #fff; border-radius: 2px; }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav {
    position: fixed;
    top: 0;
    right: 0;
    height: 100vh;
    width: min(320px, 80vw);
    background: var(--ink-soft);
    flex-direction: column;
    align-items: flex-start;
    padding: 100px 32px 32px;
    gap: 24px;
    transform: translateX(100%);
    transition: transform 0.3s ease;
    box-shadow: -10px 0 40px rgba(0,0,0,0.3);
  }
  .nav.is-open { transform: translateX(0); }
  .nav a { font-size: 18px; }
  .nav__cta { width: 100%; text-align: center; }
}

/* ============================================
   HERO — diagonal split, oversized type
   ============================================ */
.hero {
  position: relative;
  background: var(--ink);
  overflow: hidden;
  max-height: 800px;
}
.hero__grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 40px var(--pad);
  display: flex;
  align-items: stretch;
  min-height: 640px;
  max-height: 760px;
  gap: 40px;
  position: relative;
  z-index: 2;
}
.hero__content { padding: 60px 0; flex: 1.05 1 0; display: flex; flex-direction: column; justify-content: center; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 22px;
}
.hero__eyebrow::before {
  content: '';
  width: 28px;
  height: 1.5px;
  background: var(--gold);
}
.hero h1 {
  font-size: clamp(46px, 6vw, 76px);
  color: #fff;
  margin-bottom: 22px;
}
@media (max-width: 420px) {
  .hero h1 { font-size: 38px; }
}
.hero h1 em {
  font-style: italic;
  color: var(--gold-light);
  background: linear-gradient(135deg, var(--gold-light), var(--rose) 130%);
  -webkit-background-clip: text;
  background-clip: text;
}
@supports (-webkit-background-clip: text) or (background-clip: text) {
  .hero h1 em { color: transparent; }
}
.hero__sub {
  font-size: 17.5px;
  color: rgba(255,255,255,0.72);
  max-width: 46ch;
  margin-bottom: 36px;
  line-height: 1.6;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 38px;
}
.hero__trust {
  display: flex;
  align-items: center;
  gap: 14px;
  color: rgba(255,255,255,0.6);
  font-size: 13.5px;
  font-weight: 600;
  margin-bottom: 8px;
}
.hero__trust-stars { color: var(--gold-light); letter-spacing: 1px; }

.hero__media {
  position: relative;
  display: flex;
  align-items: stretch;
  flex: 0.95 1 0;
  overflow: hidden;
}
.hero__photo-outer {
  position: relative;
  width: 100%;
  display: flex;
  align-items: stretch;
  overflow: hidden;
  border-radius: 28px;
}
.hero__photo-wrap {
  position: relative;
  width: 100%;
  border-radius: 28px;
  overflow: hidden;
  clip-path: polygon(8% 0%, 100% 0%, 100% 92%, 92% 100%, 0% 100%, 0% 8%);
  box-shadow: 0 30px 70px rgba(0,0,0,0.5);
}
.hero__photo-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
}

@media (max-width: 980px) {
  .hero { overflow: hidden; max-height: none; }
  .hero__grid {
    flex-direction: column;
    min-height: 0;
    max-height: none;
    padding-bottom: 0;
  }
  .hero__content { padding: 40px 0 24px; text-align: left; display: block; }
  .hero__actions { margin-bottom: 24px; }
  .hero__trust { margin-bottom: 0; }
  .hero__media {
    height: auto;
    min-height: 0;
    max-height: none;
    width: 100%;
    flex: none;
    padding: 0;
    overflow: hidden;
  }
  .hero__photo-outer {
    overflow: hidden;
    border-radius: 20px;
    height: 300px;
  }
  .hero__photo-wrap {
    aspect-ratio: unset;
    height: 300px;
    min-height: 0 !important;
    max-height: 300px;
    border-radius: 20px;
    clip-path: polygon(4% 0%, 100% 0%, 100% 96%, 96% 100%, 0% 100%, 0% 4%);
  }
  .hero__media { padding-bottom: 40px; }
  .hero__seal-float { display: none; }
  .hero__bg-glow { display: none; }
}

.hero__seal-float {
  position: absolute;
  bottom: 16px;
  left: 16px;
  z-index: 3;
  animation: seal-spin 22s linear infinite;
}
@keyframes seal-spin {
  from { transform: rotate(0deg); }
  to { transform: rotate(360deg); }
}
.hero__seal-float .seal__crown { animation: none; }

.hero__bg-glow {
  position: absolute;
  top: -10%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(circle, rgba(201,162,39,0.18), transparent 65%);
  z-index: 1;
  pointer-events: none;
}

/* ============================================
   MARQUEE STRIP
   ============================================ */
.marquee {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  overflow: hidden;
  padding: 13px 0;
  border-bottom: 1px solid rgba(10,10,10,0.08);
}
.marquee__track {
  display: flex;
  width: max-content;
  animation: marquee-scroll 28s linear infinite;
}
.marquee__item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 0 28px;
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.03em;
  color: var(--ink);
  white-space: nowrap;
}
.marquee__dot { color: var(--rose); font-size: 18px; }
@keyframes marquee-scroll {
  from { transform: translateX(0); }
  to { transform: translateX(-50%); }
}
@media (prefers-reduced-motion: reduce) {
  .marquee__track { animation: none; }
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section { padding: 96px 0; }
.section--tight { padding: 72px 0; }
.section-head {
  max-width: 640px;
  margin-bottom: 56px;
}
.section-head--center { margin-left: auto; margin-right: auto; text-align: center; }
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-deep);
  font-size: 12.5px;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 16px;
}
.eyebrow::before {
  content: '';
  width: 24px;
  height: 1.5px;
  background: var(--gold-deep);
}
.section-head--center .eyebrow::before { display: none; }
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 48px);
  color: var(--ink);
}
.section-head p {
  margin-top: 16px;
  color: var(--text-muted);
  font-size: 16.5px;
  line-height: 1.65;
}

/* ============================================
   SERVICES — asymmetric photo cards
   ============================================ */
.services-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}
.service-card { flex: 1 1 calc(33.333% - 16px); }
.service-card--wide { flex: 1 1 calc(66.666% - 8px); }

.service-card {
  position: relative;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--ink);
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
  isolation: isolate;
}
.service-card__bg {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -2;
}
.service-card__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}
.service-card:hover .service-card__bg img { transform: scale(1.06); }
.service-card__scrim {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(10,10,10,0.05) 0%, rgba(10,10,10,0.55) 55%, rgba(10,10,10,0.92) 100%);
}
.service-card__num {
  position: absolute;
  top: 22px;
  right: 24px;
  font-family: var(--font-display);
  font-style: italic;
  font-size: 15px;
  color: rgba(255,255,255,0.5);
}
.service-card h3 {
  color: #fff;
  font-size: 23px;
  margin-bottom: 8px;
}
.service-card p {
  color: rgba(255,255,255,0.72);
  font-size: 14.5px;
  line-height: 1.55;
}

@media (max-width: 880px) {
  .services-grid { flex-direction: column; }
  .service-card, .service-card--wide { flex: 1 1 100%; }
}

/* ============================================
   BEFORE / AFTER SLIDER
   ============================================ */
.ba-section { background: var(--ink); color: #fff; }

/* Prevent horizontal overflow site-wide */
html, body { overflow-x: hidden; max-width: 100%; }
.ba-section .section-head h2 { color: #fff; }
.ba-section .section-head p { color: rgba(255,255,255,0.6); }
.ba-section .eyebrow { color: var(--gold-light); }
.ba-section .eyebrow::before { background: var(--gold-light); }

.ba-slider {
  position: relative;
  max-width: 760px;
  width: 100%;
  margin: 0 auto;
  aspect-ratio: 4 / 3;
  min-height: 0;
  border-radius: 20px;
  overflow: hidden;
  cursor: ew-resize;
  user-select: none;
  box-shadow: 0 30px 70px rgba(0,0,0,0.45);
  touch-action: pan-y;
  box-sizing: border-box;
}
.ba-slider__img {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  pointer-events: none;
}
.ba-slider__after-wrap {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  width: 50%;
  overflow: hidden;
}
.ba-slider__after-wrap img {
  width: var(--ba-img-w, 100%);
  max-width: none;
  height: 100%;
  object-fit: cover;
}
.ba-slider__handle {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: 4px;
  background: #fff;
  transform: translateX(-50%);
  pointer-events: none;
}
.ba-slider__handle::after {
  content: '⇆';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 48px;
  height: 48px;
  background: #fff;
  color: var(--ink);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  box-shadow: 0 6px 20px rgba(0,0,0,0.3);
}
.ba-slider__label {
  position: absolute;
  bottom: 18px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(6px);
  color: #fff;
  pointer-events: none;
}
.ba-slider__label--before { left: 18px; }
.ba-slider__label--after { right: 18px; }
.ba-caption {
  text-align: center;
  margin-top: 22px;
  color: rgba(255,255,255,0.55);
  font-size: 13.5px;
}

/* ============================================
   SERVICE AREAS
   ============================================ */
.areas-section { background: var(--paper-dim); }
.areas-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 8px;
}
.area-chip { flex: 1 1 150px; }
.area-chip {
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  padding: 13px 22px;
  text-align: center;
  font-weight: 700;
  font-size: 14.5px;
  color: var(--ink);
  transition: border-color 0.15s ease, transform 0.15s ease;
}
.area-chip:hover { border-color: var(--gold); transform: translateY(-2px); }

/* ============================================
   REVIEWS — pull quote carousel-style row
   ============================================ */
.reviews-section { background: var(--ink); }
.reviews-section .section-head h2 { color: #fff; }
.reviews-section .section-head p { color: rgba(255,255,255,0.6); }
.reviews-section .eyebrow { color: var(--gold-light); }
.reviews-section .eyebrow::before { background: var(--gold-light); }

.reviews-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}
.review-card { flex: 1 1 calc(33.333% - 15px); }
.review-card {
  background: var(--ink-soft);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 26px;
}
.review-card__stars { color: var(--gold-light); font-size: 15px; letter-spacing: 2px; margin-bottom: 16px; }
.review-card h4 {
  color: #fff;
  font-size: 19px;
  margin-bottom: 10px;
}
.review-card p {
  color: rgba(255,255,255,0.68);
  font-size: 14.5px;
  line-height: 1.6;
  margin-bottom: 18px;
}
.review-card__author {
  color: var(--gold-light);
  font-weight: 700;
  font-size: 13.5px;
}

@media (max-width: 880px) {
  .reviews-grid { flex-direction: column; }
}

/* ============================================
   CTA BAND
   ============================================ */
.cta-band {
  position: relative;
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  text-align: center;
  padding: 88px var(--pad);
  overflow: hidden;
}
.cta-band__seal {
  margin: 0 auto 26px;
}
.cta-band h2 {
  font-size: clamp(32px, 4.4vw, 50px);
  color: var(--ink);
  margin-bottom: 16px;
}
.cta-band p {
  color: rgba(10,10,10,0.7);
  font-size: 17px;
  max-width: 50ch;
  margin: 0 auto 34px;
}
.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer { background: var(--ink); color: rgba(255,255,255,0.75); }
.site-footer__top {
  max-width: var(--max);
  margin: 0 auto;
  padding: 64px var(--pad) 40px;
  display: flex;
  flex-wrap: wrap;
  gap: 48px;
  border-bottom: 1px solid var(--line);
}
.site-footer__brand { flex: 1.4 1 260px; }
.site-footer__brand-row { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.site-footer__crest { height: 38px; width: auto; }
.site-footer__name { font-family: var(--font-display); font-size: 19px; color: #fff; font-weight: 600; }
.site-footer__tagline { font-size: 14px; color: rgba(255,255,255,0.5); margin-bottom: 18px; max-width: 32ch; }
.site-footer__phone { font-family: var(--font-display); font-size: 24px; color: var(--gold-light); font-weight: 600; }
.site-footer__phone:hover { color: #fff; }

.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: rgba(255,255,255,0.08);
  display: flex; align-items: center; justify-content: center;
  color: #fff;
  transition: background 0.15s ease;
}
.social-links a:hover { background: var(--gold); color: var(--ink); }

.site-footer__col { flex: 1 1 150px; }
.site-footer__col h4 {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 16px;
  font-family: var(--font-body);
  font-weight: 800;
}
.site-footer__col a {
  display: block;
  font-size: 14.5px;
  color: rgba(255,255,255,0.62);
  margin-bottom: 11px;
  transition: color 0.15s ease;
}
.site-footer__col a:hover { color: #fff; }

.site-footer__bottom {
  border-top: 1px solid var(--line);
  text-align: center;
  padding: 18px var(--pad);
}
.site-footer__bottom p {
  margin: 0;
  font-size: 12.5px;
  color: rgba(255,255,255,0.4);
}

@media (max-width: 700px) {
  .site-footer__top { padding-top: 48px; }
  .site-footer__col { flex: 1 1 calc(50% - 16px); }
  .site-footer__brand { flex: 1 1 100%; margin-bottom: 8px; }
}

/* ============================================
   PAGE HERO (About / Contact title bands)
   ============================================ */
.page-hero {
  background: var(--ink);
  text-align: center;
  padding: 72px var(--pad) 64px;
  border-bottom: 1px solid var(--line);
  position: relative;
  overflow: hidden;
}
.page-hero__seal { margin: 0 auto 24px; }
.page-hero h1 {
  color: #fff;
  font-size: clamp(34px, 5.4vw, 56px);
  margin: 0 0 12px;
}
.page-hero__sub {
  color: rgba(255,255,255,0.68);
  font-size: 16px;
  max-width: 50ch;
  margin: 0 auto;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-section { background: var(--paper); padding: 88px 0; }
.about-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 56px;
  align-items: center;
}
.about-media { flex: 1 1 380px; min-width: 280px; position: relative; }
.about-media__photo-wrap {
  border-radius: 24px;
  overflow: hidden;
  clip-path: polygon(0 0, 92% 0, 100% 10%, 100% 100%, 8% 100%, 0 90%);
  box-shadow: 0 24px 60px rgba(10,10,10,0.18);
}
.about-media img { width: 100%; }
.about-media__seal {
  position: absolute;
  bottom: -22px;
  right: -22px;
}
.about-content { flex: 1 1 440px; min-width: 280px; }
.about-content h2 {
  font-size: clamp(26px, 3.6vw, 36px);
  line-height: 1.22;
  margin-bottom: 20px;
}
.about-content h2 em {
  font-style: italic;
  color: var(--gold-deep);
}
.about-tagline {
  font-weight: 800;
  font-size: 14px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--rose-deep);
  margin-bottom: 18px;
}
.about-body { color: var(--text-muted); font-size: 16px; line-height: 1.7; margin-bottom: 30px; }
.about-stats { display: flex; gap: 32px; margin-bottom: 32px; flex-wrap: wrap; }
.about-stat__num {
  font-family: var(--font-display);
  font-size: 34px;
  font-weight: 600;
  color: var(--ink);
  display: block;
}
.about-stat__label { font-size: 12.5px; color: var(--text-muted); font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; }
.about-cta { border-top: 1px solid var(--paper-dim); padding-top: 24px; display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.about-cta__phone { font-family: var(--font-display); font-size: 30px; font-weight: 600; color: var(--ink); }
.about-cta__phone:hover { color: var(--gold-deep); }

@media (max-width: 760px) {
  .about-grid { gap: 36px; }
  .about-media__seal { right: 0; bottom: -18px; }
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-section { background: var(--paper); padding: 72px 0 88px; }
.contact-grid {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 var(--pad);
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: stretch;
}
.contact-info-card {
  flex: 1 1 300px;
  background: var(--ink);
  border-radius: var(--radius);
  padding: 40px 32px;
  color: #fff;
  position: relative;
  overflow: hidden;
}
.contact-info-card__glow {
  position: absolute;
  top: -30%;
  right: -30%;
  width: 70%;
  height: 70%;
  background: radial-gradient(circle, rgba(201,162,39,0.25), transparent 70%);
  pointer-events: none;
}
.contact-info-card h2 { font-size: 24px; color: #fff; margin: 0 0 8px; position: relative; }
.contact-info-card__sub { font-size: 14.5px; color: rgba(255,255,255,0.65); margin: 0 0 30px; position: relative; }
.contact-info-block { margin-bottom: 30px; position: relative; }
.contact-info-block__city { font-weight: 700; font-size: 16px; margin: 0 0 10px; }
.contact-info-block__line { display: flex; align-items: center; gap: 10px; color: var(--gold-light); font-size: 15px; margin-bottom: 8px; }
.contact-info-block__line:hover { color: #fff; }
.contact-info-card__social { margin-top: 8px; position: relative; }

.contact-form-card {
  flex: 2 1 420px;
  background: #fff;
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 40px 36px;
}
.form-row { display: flex; gap: 16px; flex-wrap: wrap; }
.form-field { flex: 1 1 200px; margin-bottom: 18px; display: flex; flex-direction: column; }
.form-field label { font-size: 13px; font-weight: 700; margin-bottom: 7px; color: var(--ink); }
.form-field .req { color: var(--rose-deep); }
.form-field input,
.form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 12px 15px;
  border: 1.5px solid var(--line-dark);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
}
.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: #fff;
}
.form-field textarea { resize: vertical; min-height: 120px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.5;
  margin: 6px 0 26px;
  cursor: pointer;
}
.form-consent input { margin-top: 3px; }
.form-submit { width: 100%; border: none; cursor: pointer; }

@media (max-width: 760px) {
  .contact-info-card, .contact-form-card { padding: 30px 24px; }
}

/* ============================================
   FOCUS / A11Y
   ============================================ */
a:focus-visible, button:focus-visible, input:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
