/* =========================================
   Dilruba Hayta Hukuk & Danışmanlık Bürosu
   Tema: Bordo + Beyaz + Altın
   ========================================= */

:root {
  --bordo: #6b1e2b;
  --bordo-dark: #4a141d;
  --bordo-light: #8a2a3a;
  --gold: #c9a24b;
  --gold-light: #e1c47a;
  --gold-dark: #a07c2a;
  --white: #ffffff;
  --cream: #faf7f1;
  --ink: #1a1212;
  --muted: #5a5050;
  --line: #e6dfd2;
  --shadow: 0 10px 40px rgba(74, 20, 29, 0.08);
  --shadow-strong: 0 20px 60px rgba(74, 20, 29, 0.15);
  --serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink);
  background: var(--white);
  overflow-x: hidden;
}

body.menu-open { overflow: hidden; }

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

a { color: var(--bordo); text-decoration: none; transition: color .3s ease; }
a:hover { color: var(--gold-dark); }

h1, h2, h3, h4, h5, h6 {
  font-family: var(--serif);
  font-weight: 600;
  line-height: 1.2;
  color: var(--bordo-dark);
  letter-spacing: -0.01em;
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

.section { padding: 90px 0; }
.section-cream { background: var(--cream); }
.section-bordo { background: var(--bordo-dark); color: var(--white); }
.section-bordo h1, .section-bordo h2, .section-bordo h3 { color: var(--white); }

.section-title {
  text-align: center;
  margin-bottom: 60px;
}
.section-title .eyebrow {
  display: inline-block;
  font-family: var(--sans);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 14px;
  font-weight: 700;
}
.section-title h2 {
  font-size: clamp(28px, 4vw, 44px);
  margin-bottom: 14px;
}
.section-title p {
  color: var(--muted);
  max-width: 680px;
  margin: 0 auto;
  font-size: 17px;
}
.title-rule {
  width: 70px;
  height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

/* ============ NAVBAR ============ */
.topbar {
  background: var(--bordo-dark);
  color: var(--white);
  font-size: 13.5px;
  padding: 8px 0;
  letter-spacing: 0.02em;
}
.topbar .container {
  display: flex; justify-content: space-between; align-items: center; gap: 16px; flex-wrap: wrap;
}
.topbar a { color: var(--gold-light); }
.topbar a:hover { color: var(--white); }
.topbar-info { display: flex; gap: 22px; flex-wrap: wrap; }
.topbar-info span i { color: var(--gold); margin-right: 7px; }
.topbar-social { display: flex; align-items: center; gap: 10px; }
.topbar-social a,
.topbar-social span { color: var(--gold-light); display: inline-flex; align-items: center; }
.topbar-social span { opacity: .58; cursor: default; }

.navbar {
  background: var(--white);
  border-bottom: 1px solid var(--line);
  position: sticky; top: 0; z-index: 100;
  box-shadow: 0 2px 12px rgba(0,0,0,.04);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px 24px;
  max-width: 1200px;
  margin: 0 auto;
  gap: 24px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand img { height: 64px; width: 64px; border-radius: 50%; object-fit: cover; border: 2px solid var(--gold); }
.brand-text { font-family: var(--serif); }
.brand-text .name {
  display: block;
  font-size: 20px;
  color: var(--bordo-dark);
  font-weight: 700;
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.brand-text .tag {
  display: block;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-top: 4px;
}

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 26px;
  color: var(--bordo);
  cursor: pointer;
}

.nav-menu {
  display: flex;
  list-style: none;
  gap: 6px;
  align-items: center;
}
.nav-menu > li { position: relative; }
.nav-menu > li > a {
  display: block;
  padding: 10px 16px;
  color: var(--ink);
  font-weight: 600;
  font-size: 14.5px;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 2px solid transparent;
  transition: all .3s ease;
}
.nav-menu > li > a:hover,
.nav-menu > li.active > a {
  color: var(--bordo);
  border-bottom-color: var(--gold);
}
.has-submenu > a::after {
  content: '\f078';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  font-size: 10px;
  margin-left: 8px;
  color: var(--gold-dark);
}
.submenu {
  position: absolute;
  top: 100%; left: 0;
  min-width: 260px;
  background: var(--white);
  list-style: none;
  border-top: 3px solid var(--gold);
  box-shadow: var(--shadow-strong);
  padding: 8px 0;
  opacity: 0;
  visibility: hidden;
  transform: translateY(10px);
  transition: all .3s ease;
}
.has-submenu:hover > .submenu {
  opacity: 1; visibility: visible; transform: translateY(0);
}
.submenu li a {
  display: block;
  padding: 12px 22px;
  color: var(--ink);
  font-size: 14px;
  border-left: 3px solid transparent;
  transition: all .25s ease;
}
.submenu li a:hover {
  background: var(--cream);
  border-left-color: var(--bordo);
  color: var(--bordo);
  padding-left: 26px;
}

.nav-cta {
  background: var(--bordo);
  color: var(--white) !important;
  padding: 11px 22px !important;
  border-radius: 2px;
  border-bottom: none !important;
  letter-spacing: 0.06em;
}
.nav-menu .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 148px;
  white-space: nowrap;
  line-height: 1.2;
  text-align: center;
  flex-shrink: 0;
}
.nav-cta:hover {
  background: var(--gold-dark);
  color: var(--white) !important;
}

/* ============ BUTTONS ============ */
.btn {
  display: inline-block;
  padding: 14px 32px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  cursor: pointer;
  border: 2px solid transparent;
  transition: all .35s ease;
  border-radius: 2px;
}
.btn-primary { background: var(--bordo); color: var(--white); }
.btn-primary:hover { background: var(--gold-dark); color: var(--white); transform: translateY(-2px); box-shadow: 0 10px 30px rgba(160,124,42,.35); }
.btn-gold { background: var(--gold); color: var(--bordo-dark); }
.btn-gold:hover { background: var(--gold-dark); color: var(--white); }
.btn-outline-white { background: transparent; color: var(--white); border-color: var(--gold); }
.btn-outline-white:hover { background: var(--gold); color: var(--bordo-dark); }
.btn-outline { background: transparent; color: var(--bordo); border-color: var(--bordo); }
.btn-outline:hover { background: var(--bordo); color: var(--white); }

/* ============ HERO ============ */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(74,20,29,.92) 0%, rgba(107,30,43,.78) 60%, rgba(26,18,18,.85) 100%),
    url('https://images.unsplash.com/photo-1589994965851-a8f479c573a9?w=1920&auto=format&fit=crop&q=70') center/cover no-repeat;
  color: var(--white);
  overflow: hidden;
}
.hero .container { width: 100%; }
.hero::after {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 70% 30%, rgba(201,162,75,.18), transparent 60%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 2; max-width: 760px; padding: 80px 0; }
.hero .eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  margin-bottom: 22px;
  padding-left: 60px;
  position: relative;
}
.hero .eyebrow::before {
  content: '';
  position: absolute; left: 0; top: 50%;
  width: 44px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-size: clamp(36px, 5.5vw, 64px);
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 24px;
  font-weight: 700;
}
.hero h1 .accent { color: var(--gold-light); font-style: italic; }
.hero p {
  font-size: 18px;
  color: rgba(255,255,255,.85);
  margin-bottom: 36px;
  max-width: 580px;
}
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }

.hero-badge {
  position: absolute;
  right: 5%; bottom: 8%;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(201,162,75,.4);
  backdrop-filter: blur(10px);
  padding: 28px 36px;
  border-radius: 4px;
  z-index: 2;
  display: none;
}
.hero-badge .num { font-family: var(--serif); font-size: 48px; color: var(--gold-light); display: block; line-height: 1; }
.hero-badge .lbl { font-size: 12px; letter-spacing: 0.25em; text-transform: uppercase; color: rgba(255,255,255,.8); margin-top: 8px; display: block; }
@media (min-width: 992px) { .hero-badge { display: block; } }

.trust-strip {
  position: relative;
  z-index: 3;
  margin-top: -42px;
}
.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  background: var(--white);
  border: 1px solid rgba(201,162,75,.45);
  border-radius: 6px;
  box-shadow: var(--shadow-strong);
  overflow: hidden;
}
.trust-item {
  min-height: 118px;
  padding: 24px 22px;
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--ink);
  border-right: 1px solid var(--line);
}
.trust-item:last-child {
  border-right: 0;
}
.trust-item i {
  width: 46px;
  height: 46px;
  min-width: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  color: var(--bordo);
  border: 1px solid var(--gold);
  font-size: 18px;
}
.trust-item strong,
.trust-item small {
  display: block;
}
.trust-item strong {
  color: var(--bordo-dark);
  font-weight: 900;
  line-height: 1.25;
}
.trust-item small {
  margin-top: 5px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
}
.trust-item:hover {
  background: var(--cream);
  color: var(--ink);
}
.trust-item:hover i {
  background: var(--bordo);
  color: var(--gold-light);
}

/* ============ PAGE HEADER (inner pages) ============ */
.page-header {
  position: relative;
  padding: 120px 0 80px;
  background:
    linear-gradient(135deg, rgba(74,20,29,.93) 0%, rgba(26,18,18,.88) 100%),
    url('https://images.unsplash.com/photo-1505664194779-8beaceb93744?w=1920&auto=format&fit=crop&q=60') center/cover;
  color: var(--white);
  text-align: center;
}
.page-header h1 {
  color: var(--white);
  font-size: clamp(32px, 5vw, 52px);
  margin-bottom: 16px;
}
.page-header .breadcrumb {
  font-size: 14px;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,.75);
}
.page-header .breadcrumb a { color: var(--gold-light); }
.page-header .breadcrumb span { margin: 0 10px; color: var(--gold); }

/* ============ CARDS / SERVICES ============ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 40px 32px;
  text-align: left;
  transition: all .4s ease;
  position: relative;
  overflow: hidden;
  border-radius: 4px;
}
.service-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .5s ease;
}
.service-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-strong); border-color: var(--gold); }
.service-card:hover::before { transform: scaleX(1); }
.service-image {
  position: relative;
  height: 172px;
  margin: -18px -10px 26px;
  overflow: hidden;
  border-radius: 4px;
  background: var(--cream);
}
.service-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(74,20,29,0) 42%, rgba(74,20,29,.28) 100%);
  pointer-events: none;
}
.service-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
}
.service-card:hover .service-image img { transform: scale(1.05); }
.service-icon {
  width: 64px; height: 64px;
  background: var(--cream);
  color: var(--bordo);
  display: flex; align-items: center; justify-content: center;
  font-size: 26px;
  margin-bottom: 22px;
  border-radius: 50%;
  border: 1px solid var(--gold);
  transition: all .4s ease;
}
.service-card:hover .service-icon {
  background: var(--bordo);
  color: var(--gold-light);
  transform: rotate(-8deg);
}
.service-card h3 {
  font-size: 22px;
  margin-bottom: 12px;
}
.service-card p {
  color: var(--muted);
  font-size: 15.5px;
  margin-bottom: 20px;
}
.service-card .more {
  font-weight: 700;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--bordo);
  display: inline-flex;
  align-items: center;
  gap: 8px;
}
.service-card .more::after {
  content: '\f061';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  transition: transform .3s ease;
}
.service-card:hover .more::after { transform: translateX(6px); color: var(--gold-dark); }
.service-card.is-service-hidden,
.footer-links li.is-footer-extra-hidden {
  display: none;
}
.section-actions {
  display: flex;
  justify-content: center;
  margin-top: 34px;
}
.home-services-section {
  padding: clamp(36px, 5vh, 48px) 0 clamp(42px, 6vh, 56px);
}
.home-services-section .section-title {
  margin-bottom: clamp(26px, 4vh, 34px);
}
.home-services-section .section-title .eyebrow {
  margin-bottom: 8px;
  font-size: 12px;
}
.home-services-section .section-title h2 {
  font-size: clamp(32px, 3.6vw, 42px);
  line-height: 1.12;
  margin-bottom: 10px;
}
.home-services-section .section-title p {
  max-width: 820px;
  font-size: 16px;
  line-height: 1.55;
}
.home-services-section .title-rule {
  margin-top: 12px;
}
.home-services-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 22px;
}
.home-services-grid .service-card {
  padding: 24px 24px 26px;
}
.home-services-grid .service-image {
  height: clamp(124px, 13vw, 138px);
  margin: -4px -4px 18px;
}
.home-services-grid .service-icon {
  width: 52px;
  height: 52px;
  font-size: 22px;
  margin-bottom: 16px;
}
.home-services-grid .service-card h3 {
  font-size: 21px;
  margin-bottom: 8px;
}
.home-services-grid .service-card p {
  font-size: 15px;
  line-height: 1.55;
  margin-bottom: 14px;
}
.home-services-grid .service-card .more {
  font-size: 12px;
}
.home-services-section .section-actions {
  margin-top: 22px;
}
.footer-toggle {
  border: 0;
  background: transparent;
  color: var(--gold-light);
  padding: 4px 0 0;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  cursor: pointer;
  text-decoration: underline;
  text-underline-offset: 4px;
}
.footer-toggle:hover {
  color: var(--white);
}

/* ============ ABOUT SECTION ============ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 70px;
  align-items: center;
}
.about-image {
  position: relative;
}
.about-image img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  border-radius: 4px;
  box-shadow: var(--shadow-strong);
}
.about-image::before {
  content: '';
  position: absolute;
  top: -20px; left: -20px;
  width: 80%; height: 80%;
  border: 3px solid var(--gold);
  z-index: -1;
  border-radius: 4px;
}
.about-content .eyebrow {
  display: inline-block;
  color: var(--gold-dark);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 14px;
}
.about-content h2 {
  font-size: clamp(28px, 3.8vw, 40px);
  margin-bottom: 22px;
}
.about-content h1 {
  font-size: clamp(30px, 4vw, 44px);
  margin-bottom: 22px;
}
.about-content p { color: var(--muted); margin-bottom: 16px; font-size: 16px; }
.about-points { list-style: none; margin: 24px 0 30px; }
.about-points li {
  padding-left: 32px;
  position: relative;
  margin-bottom: 12px;
  color: var(--ink);
  font-weight: 500;
}
.about-points li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute; left: 0; top: 2px;
  width: 22px; height: 22px;
  background: var(--gold);
  color: var(--white);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 10px;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(28px);
  transition:
    opacity .75s ease,
    transform .75s cubic-bezier(.22, 1, .36, 1);
  transition-delay: var(--reveal-delay, 0ms);
  will-change: opacity, transform;
}
.reveal-on-scroll.is-revealed {
  opacity: 1;
  transform: translateY(0);
}
@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

@media (max-width: 880px) {
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-image::before { display: none; }
}

/* ============ CORPORATE PAGE ============ */
.corporate-about__grid {
  display: grid;
  grid-template-columns: minmax(300px, .9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 4vw, 56px);
  align-items: center;
}
.corporate-about {
  padding: clamp(28px, 4vh, 42px) 0 clamp(42px, 5vh, 58px);
}
.corporate-about__media {
  position: relative;
}
.corporate-about__media img {
  width: 100%;
  height: clamp(420px, 52vh, 540px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}
.corporate-about .about-content .eyebrow {
  margin-bottom: 10px;
}
.corporate-about .about-content h1 {
  font-size: clamp(32px, 3.5vw, 42px);
  line-height: 1.12;
  margin-bottom: 16px;
}
.corporate-about .about-content p {
  line-height: 1.62;
  margin-bottom: 12px;
}
.corporate-about .about-points {
  margin: 18px 0 24px;
}
.corporate-about .about-points li {
  margin-bottom: 8px;
}
.corporate-about__media::before {
  content: '';
  position: absolute;
  inset: 22px 22px auto auto;
  width: 58%;
  height: 58%;
  border: 3px solid var(--gold);
  border-radius: 8px;
  z-index: -1;
}
.corporate-about__badge {
  position: absolute;
  left: 22px;
  bottom: 22px;
  max-width: calc(100% - 44px);
  padding: 16px 18px;
  background: rgba(74,20,29,.92);
  color: var(--white);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 18px 40px rgba(0,0,0,.22);
}
.corporate-about__badge strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 22px;
  line-height: 1.1;
}
.corporate-about__badge span {
  display: block;
  margin-top: 4px;
  font-weight: 700;
}
.corporate-features {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
}
.corporate-feature {
  position: relative;
  padding: 30px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.corporate-feature::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s ease;
}
.corporate-feature:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
  border-color: var(--gold);
}
.corporate-feature:hover::before { transform: scaleX(1); }
.corporate-feature i {
  width: 56px;
  height: 56px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--bordo);
  font-size: 22px;
  margin-bottom: 18px;
}
.corporate-feature h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.corporate-feature p {
  color: var(--muted);
  font-size: 15.5px;
}
.corporate-process-section {
  background:
    linear-gradient(180deg, var(--white), #fffaf0);
}
.corporate-process {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  counter-reset: process;
}
.corporate-process__item {
  position: relative;
  padding: 30px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  box-shadow: var(--shadow);
  transition: transform .35s ease, box-shadow .35s ease;
}
.corporate-process__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-strong);
}
.corporate-process__item span {
  display: inline-flex;
  width: 46px;
  height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 800;
  margin-bottom: 18px;
}
.corporate-process__item h3 {
  font-size: 21px;
  margin-bottom: 10px;
}
.corporate-process__item p {
  color: var(--muted);
  font-size: 15.5px;
}
.corporate-service-links {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.corporate-service-link {
  min-height: 86px;
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--bordo-dark);
  font-weight: 900;
  box-shadow: 0 10px 30px rgba(74,20,29,.05);
  transition: transform .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.corporate-service-link:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
  color: var(--bordo);
}
.corporate-service-link i {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex: 0 0 46px;
  border-radius: 50%;
  background: var(--cream);
  border: 1px solid var(--gold);
  color: var(--bordo);
}
.corporate-proof-section {
  background:
    linear-gradient(135deg, rgba(74,20,29,.96), rgba(26,18,18,.94)),
    url('https://images.unsplash.com/photo-1589829545856-d10d557cf95f?w=1600&auto=format&fit=crop&q=70') center/cover no-repeat;
  color: var(--white);
}
.corporate-proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
}
.corporate-proof {
  padding: 32px 28px;
  border: 1px solid rgba(225,196,122,.38);
  border-radius: 8px;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(10px);
}
.corporate-proof strong {
  display: block;
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 34px;
  line-height: 1;
  margin-bottom: 16px;
}
.corporate-proof h3 {
  color: var(--white);
  font-size: 22px;
  margin-bottom: 10px;
}
.corporate-proof p {
  color: rgba(255,255,255,.82);
}
.corporate-faq {
  max-width: 920px;
  margin: 0 auto;
}
@media (max-width: 992px) {
  .corporate-about__grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }
  .corporate-about .about-content {
    order: 1;
  }
  .corporate-about__media {
    order: 2;
  }
  .corporate-features,
  .corporate-process,
  .corporate-proof-grid {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 700px) {
  .corporate-about {
    padding: 44px 0 64px;
  }
  .corporate-features,
  .corporate-process,
  .corporate-service-links,
  .corporate-proof-grid {
    grid-template-columns: 1fr;
  }
  .corporate-about .container,
  .corporate-about__grid,
  .corporate-about .about-content {
    width: 100%;
    max-width: calc(100vw - 36px);
    min-width: 0;
  }
  .corporate-about .about-content h1 {
    max-width: 100%;
    font-size: clamp(28px, 7.4vw, 34px);
    overflow-wrap: break-word;
  }
  .corporate-about .about-content p,
  .corporate-about .about-points li {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .corporate-about__media::before {
    display: none;
  }
  .corporate-about__media img {
    height: auto;
    aspect-ratio: 4 / 3;
  }
  .corporate-about__badge {
    position: static;
    max-width: none;
    margin-top: 14px;
  }
}

/* ============ STATS ============ */
.stats {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 30px;
  text-align: center;
}
.stat-box { padding: 30px 20px; border-left: 2px solid var(--gold); }
.stat-box:first-child { border-left: 0; }
.stat-box .num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold-light);
  line-height: 1;
  font-weight: 700;
}
.stat-box .lbl {
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 12px;
  color: rgba(255,255,255,.85);
}
@media (max-width: 700px) { .stat-box { border-left: 0; border-top: 1px solid rgba(201,162,75,.3); padding-top: 24px;} .stat-box:first-child{border-top:0;} }

/* ============ BLOG ============ */
.blog-hero {
  position: relative;
  overflow: hidden;
  display: flex;
  min-height: max(690px, calc(100vh - 132px));
  padding: 70px 0 62px;
  align-items: center;
  background:
    linear-gradient(90deg,
      rgba(255,255,255,.99) 0%,
      rgba(255,255,255,.97) 29%,
      rgba(255,255,255,.88) 40%,
      rgba(255,255,255,.48) 53%,
      rgba(255,255,255,.08) 67%,
      rgba(255,255,255,0) 78%),
    url('../assets/752cd992-69d4-40ca-b654-78a8758d67b0.png') center center / cover no-repeat;
  border-bottom: 1px solid var(--line);
}
.blog-hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255,255,255,.06), transparent 60%, rgba(74,20,29,.05));
  pointer-events: none;
}
.blog-hero__grid {
  position: relative;
  z-index: 1;
  width: 100%;
  max-width: 1360px;
}
.blog-hero__copy {
  max-width: 740px;
}
.blog-hero .section-kicker {
  margin-bottom: 20px;
}
.blog-hero h1 {
  max-width: 740px;
  margin-bottom: 26px;
  font-size: clamp(52px, 5.2vw, 80px);
  line-height: 1.02;
  letter-spacing: -.04em;
}
.blog-hero h1 > span {
  display: block;
}
.blog-hero h1 em {
  color: var(--bordo);
  font-weight: 500;
}
.blog-hero p {
  max-width: 570px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.72;
}
.blog-hero__actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 40px;
  margin-top: 30px;
}
.blog-hero__actions .btn i {
  margin-left: 8px;
}
.blog-hero__actions .btn {
  min-width: 258px;
}
.blog-hero__text-link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--bordo-dark);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: .04em;
}
.blog-hero__text-link:hover {
  color: var(--gold-dark);
}
.blog-hero__stats {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  margin-top: 50px;
}
.blog-hero__stats div {
  min-width: 155px;
  padding: 4px 28px;
  border-left: 1px solid var(--line);
}
.blog-hero__stats div:first-child { padding-left: 0; border-left: 0; }
.blog-hero__stats strong,
.blog-hero__stats span {
  display: block;
}
.blog-hero__stats strong {
  color: var(--bordo-dark);
  font-family: var(--serif);
  font-size: 25px;
  line-height: 1;
}
.blog-hero__stats span {
  margin-top: 5px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-featured-card {
  position: relative;
  min-height: 490px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  border: 1px solid rgba(201,162,75,.42);
  border-radius: 2px;
  box-shadow: 22px 24px 0 rgba(107,30,43,.07), 0 26px 75px rgba(74,20,29,.16);
  color: var(--white);
}
.blog-featured-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
}
.blog-featured-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(26,18,18,.03) 18%, rgba(40,15,20,.92) 100%);
}
.blog-featured-card:hover img {
  transform: scale(1.05);
}
.blog-featured-card > div {
  position: relative;
  z-index: 1;
  padding: 34px;
}
.blog-featured-card__tag {
  position: absolute;
  z-index: 2;
  top: 22px;
  left: 22px;
  padding: 8px 13px;
  background: var(--gold);
  color: var(--bordo-dark);
  border-radius: 3px;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.blog-featured-card small {
  display: block;
  margin-bottom: 10px;
  color: rgba(255,255,255,.82);
  font-weight: 800;
}
.blog-featured-card h2 {
  margin-bottom: 16px;
  color: var(--white);
  font-size: clamp(25px, 3vw, 36px);
}
.blog-featured-card__link {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--gold-light);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.blog-index-section {
  background: var(--white);
  padding-top: 86px;
}
.blog-category-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin: -20px 0 34px;
}
.blog-category-chip {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 13px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--bordo);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.blog-category-chip:hover {
  background: var(--bordo);
  border-color: var(--bordo);
  color: var(--white);
}
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}
.blog-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 3px;
  overflow: hidden;
  transition: transform .4s ease, box-shadow .4s ease, border-color .4s ease;
}
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-strong); border-color: var(--gold); }
.blog-card__media,
.blog-card .img {
  position: relative;
  height: 238px;
  display: block;
  overflow: hidden;
  background-size: cover;
  background-position: center;
}
.blog-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .55s ease;
  filter: saturate(.82) contrast(1.03);
}
.blog-card:hover .blog-card__media img {
  transform: scale(1.06);
}
.blog-card .tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bordo);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 3px;
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 800;
}
.blog-card .body {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 28px;
}
.blog-card .meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  color: var(--muted);
  font-size: 13px;
  margin-bottom: 12px;
}
.blog-card .meta i { color: var(--gold-dark); margin-right: 6px; }
.blog-card h2,
.blog-card h3 { font-size: 22px; margin-bottom: 12px; line-height: 1.32; }
.blog-card h2 a,
.blog-card h3 a { color: var(--bordo-dark); }
.blog-card h2 a:hover,
.blog-card h3 a:hover { color: var(--gold-dark); }
.blog-card p {
  display: -webkit-box;
  overflow: hidden;
  margin-bottom: 22px;
  color: var(--muted);
  font-size: 15px;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
}
.blog-card__footer {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}
.blog-card .more {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 900;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}
.blog-service-pill {
  display: inline-flex;
  padding: 7px 10px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--bordo);
  font-size: 12px;
  font-weight: 900;
}
.blog-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  margin-top: 48px;
}
.blog-pagination a,
.blog-pagination span {
  display: inline-flex;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  background: var(--white);
  color: var(--bordo);
  font-size: 13px;
  font-weight: 900;
}
.blog-pagination a:hover,
.blog-pagination a.is-active {
  border-color: var(--bordo);
  background: var(--bordo);
  color: var(--white);
}
.blog-pagination span.is-disabled {
  color: #b9b0aa;
  cursor: not-allowed;
}

/* ============ CONTENT PAGES (article style) ============ */
.content-wrap { display: grid; grid-template-columns: 2fr 1fr; gap: 50px; }
.content-main h2 { font-size: 30px; margin: 30px 0 16px; }
.content-main h3 { font-size: 22px; margin: 24px 0 12px; color: var(--bordo); }
.content-main p { color: var(--ink); margin-bottom: 18px; font-size: 16.5px; }
.content-main ul, .content-main ol { margin: 0 0 22px 22px; }
.content-main li { margin-bottom: 8px; color: var(--ink); }
.content-main .lead {
  font-size: 19px;
  color: var(--bordo-dark);
  font-family: var(--serif);
  font-style: italic;
  border-left: 3px solid var(--gold);
  padding-left: 20px;
  margin: 0 0 30px;
}
.content-main img { border-radius: 4px; margin: 24px 0; box-shadow: var(--shadow); }

/* ============ FAMILY LAW SERVICE PAGE ============ */
.family-law-page {
  background: var(--white);
}
.family-law-hero {
  padding: 28px 0 36px;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.family-law-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.family-law-breadcrumb a {
  color: var(--bordo);
  font-weight: 800;
}
.family-law-breadcrumb span {
  color: var(--gold-dark);
}
.family-law-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(340px, .82fr);
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
}
.family-law-hero__copy .eyebrow {
  display: inline-block;
  margin-bottom: 8px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}
.family-law-hero h1 {
  max-width: 820px;
  font-size: clamp(32px, 3.5vw, 46px);
  line-height: 1.08;
  margin-bottom: 12px;
}
.family-law-lead {
  max-width: 790px;
  color: var(--bordo-dark);
  font-family: var(--serif);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.38;
  margin-bottom: 10px;
}
.family-law-hero__copy p:not(.family-law-lead) {
  max-width: 800px;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.62;
}
.family-law-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0 0;
}
.family-law-page .family-law-keywords {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  width: 100%;
  margin: 18px 0 0;
  padding: 0;
  list-style: none;
}
.family-law-page .family-law-keywords li {
  flex: 0 0 auto;
  margin: 0;
  padding: 7px 11px;
  list-style: none;
  border: 1px solid rgba(107,30,43,.18);
  border-radius: 999px;
  background: rgba(255,255,255,.82);
  color: var(--bordo-dark);
  font-size: 12.5px;
  font-weight: 800;
  line-height: 1.25;
  white-space: nowrap;
}
.family-law-visual {
  position: relative;
  margin: 0;
}
.family-law-visual img {
  width: 100%;
  height: clamp(280px, 32vw, 400px);
  object-fit: cover;
  border-radius: 8px;
  box-shadow: var(--shadow-strong);
}
.family-law-layout {
  padding: 54px 0 76px;
}
.family-law-content {
  grid-template-columns: minmax(0, 1fr) 310px;
  gap: clamp(30px, 4vw, 48px);
  align-items: start;
}
.family-law-article {
  min-width: 0;
}
.family-law-section {
  margin-bottom: 48px;
}
.family-law-section:last-child {
  margin-bottom: 0;
}
.family-law-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.family-law-kicker::before {
  content: '';
  width: 34px;
  height: 1px;
  background: var(--gold);
}
.family-law-article h2 {
  font-size: clamp(27px, 2.8vw, 36px);
  line-height: 1.18;
  margin: 0 0 16px;
}
.family-law-article h3 {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--bordo-dark);
}
.family-law-article p {
  color: var(--muted);
  line-height: 1.74;
}
.family-law-topic-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin: 24px 0 0;
  list-style: none;
}
.family-law-topic-list li {
  margin: 0;
  padding: 18px 18px 18px 20px;
  border: 1px solid var(--line);
  border-left: 3px solid var(--gold);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(74,20,29,.05);
}
.family-law-topic-list strong {
  display: block;
  color: var(--bordo-dark);
  font-family: var(--serif);
  font-size: 20px;
  line-height: 1.25;
}
.family-law-topic-list span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}
.family-law-text-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  margin: 22px 0 18px;
}
.family-law-text-grid > div {
  padding: 22px;
  border: 1px solid var(--line);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  background: var(--white);
}
.family-law-text-grid h3 {
  margin: 0 0 10px;
}
.family-law-section--accent {
  padding: 28px;
  border: 1px solid rgba(201,162,75,.38);
  border-radius: 8px;
  background: linear-gradient(135deg, #fffaf0, var(--cream));
}
.family-law-process {
  display: grid;
  gap: 14px;
  margin: 26px 0 0;
  list-style: none;
}
.family-law-process li {
  display: grid;
  grid-template-columns: 50px 1fr;
  gap: 16px;
  align-items: start;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--white);
  box-shadow: 0 10px 28px rgba(74,20,29,.05);
}
.family-law-process span {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--gold-light);
  font-family: var(--serif);
  font-weight: 800;
}
.family-law-process h3 {
  margin: 0 0 6px;
}
.family-law-process p {
  margin: 0;
}
.family-law-sidebar .sidebar-box {
  border-radius: 6px;
}
@media (max-width: 980px) {
  .family-law-hero__grid,
  .family-law-content {
    grid-template-columns: 1fr;
  }
  .family-law-page .family-law-keywords {
    flex-wrap: wrap;
  }
  .family-law-visual img {
    height: auto;
    aspect-ratio: 16 / 9;
  }
}
@media (max-width: 640px) {
  .family-law-hero {
    padding: 34px 0 42px;
  }
  .family-law-breadcrumb {
    margin-bottom: 22px;
  }
  .family-law-topic-list,
  .family-law-text-grid,
  .family-law-process {
    grid-template-columns: 1fr;
  }
  .family-law-actions .btn {
    width: 100%;
    text-align: center;
  }
  .family-law-layout {
    padding: 42px 0 64px;
  }
  .family-law-section {
    margin-bottom: 42px;
  }
  .family-law-section--accent,
  .family-law-topic-list li,
  .family-law-text-grid > div,
  .family-law-process li {
    padding: 20px;
  }
  .family-law-process li {
    grid-template-columns: 1fr;
  }
}

/* ============ MODERN SERVICE DETAIL PAGES ============ */
.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 42px 0 46px;
  background:
    radial-gradient(circle at 8% 12%, rgba(201,162,75,.12), transparent 30%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.service-detail-hero::after {
  content: '';
  position: absolute;
  right: -110px;
  top: -130px;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(201,162,75,.28);
  border-radius: 50%;
  pointer-events: none;
}
.service-detail-hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr);
  gap: clamp(28px, 5vw, 58px);
  align-items: center;
}
.service-detail-breadcrumb {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 9px;
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 14px;
}
.service-detail-breadcrumb a {
  color: var(--bordo);
  font-weight: 800;
}
.service-detail-breadcrumb span {
  color: var(--gold-dark);
}
.service-detail-kicker,
.section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 13px;
  color: var(--gold-dark);
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.service-detail-kicker i {
  color: var(--bordo);
}
.service-detail-hero h1 {
  max-width: 860px;
  margin-bottom: 18px;
  color: var(--bordo-dark);
  font-size: clamp(34px, 5vw, 58px);
}
.service-detail-lead {
  max-width: 780px;
  margin-bottom: 26px;
  color: var(--ink);
  font-size: 18px;
  line-height: 1.8;
}
.service-detail-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.service-detail-panel {
  position: relative;
  padding: 30px 28px;
  background: var(--white);
  border: 1px solid rgba(201,162,75,.5);
  border-top: 4px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 18px 52px rgba(74,20,29,.1);
}
.service-detail-panel span {
  display: block;
  margin-bottom: 10px;
  color: var(--gold-dark);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.service-detail-panel h2 {
  margin-bottom: 18px;
  font-size: 25px;
}
.service-detail-panel ul {
  list-style: none;
  margin: 0;
}
.service-detail-panel li {
  position: relative;
  margin: 0;
  padding: 13px 0 13px 28px;
  border-top: 1px solid var(--line);
  color: var(--ink);
  font-weight: 800;
}
.service-detail-panel li::before {
  content: '\f105';
  position: absolute;
  left: 0;
  top: 13px;
  color: var(--gold-dark);
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.service-detail-strip {
  background: var(--white);
  border-bottom: 1px solid var(--line);
}
.service-detail-strip__grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  padding: 24px;
}
.service-detail-strip__grid > div {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 14px;
  align-items: center;
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
}
.service-detail-strip__grid > div:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.service-detail-strip i {
  grid-row: span 2;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--gold-light);
}
.service-detail-strip strong,
.service-detail-strip span {
  display: block;
}
.service-detail-strip strong {
  color: var(--bordo-dark);
  line-height: 1.2;
}
.service-detail-strip span {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.service-detail-main {
  padding: 70px 0 82px;
  background: var(--white);
}
.service-detail-content {
  min-width: 0;
}
.service-detail-section {
  margin-bottom: 46px;
}
.service-detail-section > h2 {
  margin-top: 0;
}
.service-detail-section > p {
  max-width: 850px;
  color: var(--muted);
  font-size: 17px;
}
.service-scope-grid,
.service-info-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 20px;
}
.service-scope-grid > div,
.service-info-grid > div {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 12px;
  align-items: start;
  padding: 18px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: transform .35s ease, border-color .35s ease, box-shadow .35s ease;
}
.service-scope-grid > div:hover,
.service-info-grid > div:hover {
  transform: translateY(-4px);
  border-color: var(--gold);
  box-shadow: var(--shadow);
}
.service-scope-grid i,
.service-info-grid i {
  width: 34px;
  height: 34px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(201,162,75,.22);
  color: var(--bordo);
}
.service-scope-grid span {
  color: var(--ink);
  font-weight: 800;
  line-height: 1.45;
}
.service-info-grid p {
  margin: 0;
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.55;
}
.service-process-grid {
  display: grid;
  gap: 14px;
  margin-top: 20px;
}
.service-process-grid > div {
  position: relative;
  display: grid;
  grid-template-columns: 46px 1fr;
  gap: 15px;
  align-items: start;
  padding: 20px;
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.service-process-grid span {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 22px;
  font-weight: 800;
}
.service-process-grid p {
  margin: 0;
  color: var(--ink);
}
.service-detail-section--accent {
  padding: 30px;
  background:
    linear-gradient(135deg, rgba(250,247,241,.95), rgba(255,255,255,.98));
  border: 1px solid var(--line);
  border-radius: 6px;
}
.service-risk-list {
  display: grid;
  gap: 12px;
  margin: 18px 0 0 !important;
  list-style: none;
}
.service-risk-list li {
  position: relative;
  margin: 0;
  padding: 14px 16px 14px 44px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 5px;
  color: var(--ink);
}
.service-risk-list li::before {
  content: '\f058';
  position: absolute;
  left: 16px;
  top: 14px;
  color: var(--gold-dark);
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
}
.service-detail-final-cta {
  padding: 56px 0;
  background: var(--cream);
  border-top: 1px solid var(--line);
}
.service-detail-final-cta__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 34px;
  background: var(--white);
  border: 1px solid rgba(201,162,75,.45);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.service-detail-final-cta h2 {
  margin-bottom: 8px;
  font-size: clamp(26px, 4vw, 38px);
}
.service-detail-final-cta p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
}
@media (max-width: 980px) {
  .blog-hero__grid,
  .article-hero__grid {
    grid-template-columns: 1fr;
  }
  .blog-hero {
    min-height: max(640px, calc(100vh - 132px));
    background:
      linear-gradient(90deg, rgba(255,255,255,.97) 0%, rgba(255,255,255,.90) 58%, rgba(255,255,255,.58) 100%),
      url('../assets/752cd992-69d4-40ca-b654-78a8758d67b0.png') 52% center / cover no-repeat;
  }
  .blog-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .blog-featured-card {
    min-height: 360px;
  }
  .article-summary ul {
    grid-template-columns: 1fr;
  }
  .service-detail-hero__grid,
  .service-detail-strip__grid,
  .service-scope-grid,
  .service-info-grid {
    grid-template-columns: 1fr;
  }
  .service-detail-strip__grid {
    padding-left: 0;
    padding-right: 0;
  }
  .service-detail-final-cta__inner {
    align-items: flex-start;
    flex-direction: column;
  }
}
@media (max-width: 640px) {
  .blog-hero,
  .article-hero {
    padding: 30px 0 38px;
  }
  .blog-hero {
    min-height: 620px;
    padding-top: 48px;
    padding-bottom: 42px;
    align-items: flex-end;
    background:
      linear-gradient(180deg, rgba(255,255,255,.56) 0%, rgba(255,255,255,.91) 38%, rgba(255,255,255,.98) 100%),
      url('../assets/752cd992-69d4-40ca-b654-78a8758d67b0.png') 52% center / cover no-repeat;
  }
  .blog-hero h1,
  .article-hero h1 {
    font-size: clamp(31px, 10vw, 40px);
  }
  .blog-hero h1 > span {
    display: inline;
  }
  .blog-hero h1 > span:not(:last-child)::after {
    content: ' ';
  }
  .blog-hero p,
  .article-hero p {
    font-size: 16.5px;
  }
  .blog-featured-card {
    min-height: 330px;
    box-shadow: 10px 12px 0 rgba(107,30,43,.07), 0 20px 50px rgba(74,20,29,.14);
  }
  .blog-grid {
    grid-template-columns: 1fr;
  }
  .blog-hero__actions {
    align-items: flex-start;
    flex-direction: column;
  }
  .blog-hero__actions .btn {
    width: 100%;
    min-width: 0;
    text-align: center;
  }
  .blog-hero__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    row-gap: 18px;
    margin-top: 34px;
  }
  .blog-hero__stats div {
    min-width: 0;
    padding: 0 14px;
  }
  .blog-hero__stats div:nth-child(3) {
    grid-column: 1 / -1;
    padding-left: 0;
    border-left: 0;
  }
  .blog-featured-card > div,
  .blog-card .body,
  .article-summary,
  .article-cta,
  .article-notice {
    padding: 22px;
  }
  .blog-card__media,
  .blog-card .img {
    height: 205px;
  }
  .article-hero__media img {
    height: 250px;
  }
  .article-main {
    padding: 48px 0 62px;
  }
  .service-detail-hero {
    padding: 30px 0 36px;
  }
  .service-detail-hero h1 {
    font-size: clamp(31px, 10vw, 40px);
  }
  .service-detail-lead {
    font-size: 16.5px;
  }
  .service-detail-actions .btn,
  .service-detail-final-cta .btn {
    width: 100%;
    text-align: center;
  }
  .service-detail-panel,
  .service-detail-section--accent,
  .service-detail-final-cta__inner {
    padding: 22px;
  }
  .service-detail-main {
    padding: 48px 0 62px;
  }
  .service-detail-section {
    margin-bottom: 38px;
  }
  .service-process-grid > div {
    grid-template-columns: 1fr;
  }
}
/* ============ PREMIUM SERVICE PAGE SYSTEM ============ */
.service-detail-hero {
  position: relative;
  overflow: hidden;
  padding: 74px 0 78px;
  background:
    radial-gradient(circle at 8% 10%, rgba(225,196,122,.16), transparent 27%),
    linear-gradient(128deg, #3b0e17 0%, #541622 57%, #2b0d13 100%);
  border-bottom: 0;
}
.service-detail-hero::before {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 46px 46px;
  content: '';
  pointer-events: none;
}
.service-detail-hero::after {
  right: -190px;
  top: -280px;
  width: 620px;
  height: 620px;
  border-color: rgba(225,196,122,.15);
}
.service-detail-hero__grid {
  grid-template-columns: minmax(0, 1.08fr) minmax(380px, .92fr);
  gap: clamp(44px, 6vw, 82px);
}
.service-detail-hero .service-detail-breadcrumb { margin-bottom: 30px; color: rgba(255,255,255,.62); }
.service-detail-hero .service-detail-breadcrumb a { color: rgba(255,255,255,.82); }
.service-detail-hero .service-detail-breadcrumb a:hover { color: var(--gold-light); }
.service-detail-hero .service-detail-breadcrumb span { color: var(--gold); }
.service-detail-hero .service-detail-kicker { margin-bottom: 20px; color: var(--gold-light); }
.service-detail-hero .service-detail-kicker i { color: var(--gold); }
.service-detail-hero h1 {
  max-width: 750px;
  margin-bottom: 24px;
  color: var(--white);
  font-size: clamp(41px, 5.2vw, 67px);
  line-height: 1.08;
  letter-spacing: -.035em;
}
.service-detail-hero .service-detail-lead {
  max-width: 720px;
  margin-bottom: 32px;
  color: rgba(255,255,255,.78);
  font-size: 17.5px;
  line-height: 1.78;
}
.service-detail-hero .btn-primary.nav-cta {
  padding: 14px 25px !important;
  background: var(--gold);
  color: var(--bordo-dark) !important;
  border-color: var(--gold);
}
.service-detail-hero .btn-primary.nav-cta:hover { background: var(--gold-light); transform: translateY(-2px); }
.service-detail-discover {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 12px 4px;
  color: rgba(255,255,255,.88);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: .04em;
}
.service-detail-discover:hover { color: var(--gold-light); }
.service-detail-assurance {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 34px;
  padding-top: 23px;
  border-top: 1px solid rgba(255,255,255,.14);
}
.service-detail-assurance span { color: rgba(255,255,255,.7); font-size: 12px; font-weight: 800; }
.service-detail-assurance i { margin-right: 7px; color: var(--gold); }
.service-detail-visual {
  position: relative;
  min-width: 0;
  height: auto;
  aspect-ratio: 3 / 2;
  margin: 0;
  overflow: hidden;
  background: #18080c;
  border: 1px solid rgba(225,196,122,.38);
  box-shadow: 26px 26px 0 rgba(0,0,0,.16), 0 34px 80px rgba(0,0,0,.26);
}
.service-detail-visual::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 48%, rgba(22,8,11,.88) 100%);
  content: '';
}
.service-detail-visual img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
}
.service-detail-visual figcaption {
  position: absolute;
  z-index: 2;
  right: 28px;
  bottom: 27px;
  left: 28px;
}
.service-detail-visual figcaption span,
.service-detail-visual figcaption strong { display: block; }
.service-detail-visual figcaption span { margin-bottom: 5px; color: var(--gold-light); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.service-detail-visual figcaption strong { color: var(--white); font-family: var(--serif); font-size: 23px; }
.service-detail-visual__mark {
  position: absolute;
  z-index: 2;
  top: 22px;
  right: 22px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  background: rgba(74,20,29,.9);
  border: 1px solid rgba(225,196,122,.6);
  color: var(--gold-light);
  font-size: 21px;
  backdrop-filter: blur(8px);
}
.service-detail-strip { background: var(--white); box-shadow: 0 8px 28px rgba(74,20,29,.05); }
.service-detail-strip__grid {
  grid-template-columns: repeat(5, minmax(0,1fr));
  gap: 0;
  padding: 0 24px;
}
.service-detail-strip__grid > a {
  display: flex;
  min-height: 82px;
  align-items: center;
  gap: 11px;
  padding: 20px 18px;
  border-left: 1px solid var(--line);
  color: var(--ink);
  transition: .25s ease;
}
.service-detail-strip__grid > a:last-child { border-right: 1px solid var(--line); }
.service-detail-strip__grid > a:hover { background: var(--cream); color: var(--bordo); }
.service-detail-strip__grid > a span { color: var(--gold-dark); font-family: var(--serif); font-size: 14px; font-weight: 800; }
.service-detail-strip__grid > a strong { font-size: 12px; letter-spacing: .035em; }
.service-detail-main { padding: 92px 0 100px; background: #fbfaf7; }
.service-detail-wrap { grid-template-columns: minmax(0, 1fr) 320px; gap: clamp(42px, 6vw, 74px); align-items: start; }
.service-detail-section {
  margin-bottom: 78px;
  scroll-margin-top: 120px;
}
.service-section-heading { max-width: 760px; margin-bottom: 28px; }
.service-section-heading .section-kicker { margin-bottom: 12px; }
.service-section-heading h2 { margin: 0; font-size: clamp(29px, 3.3vw, 43px); line-height: 1.16; }
.service-section-heading > p { margin: 14px 0 0; color: var(--muted); font-size: 16px; }
.service-detail-section > p { max-width: 820px; color: var(--muted); font-size: 17px; line-height: 1.82; }
.service-scope-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; margin-top: 28px; }
.service-scope-grid > div {
  display: grid;
  min-height: 112px;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
  box-shadow: 0 8px 26px rgba(74,20,29,.035);
}
.service-scope-grid > div:hover { transform: translateY(-3px); border-color: rgba(201,162,75,.75); box-shadow: var(--shadow); }
.service-scope-grid .service-scope-grid__number { align-self: start; color: var(--gold-dark); font-family: var(--serif); font-size: 15px; font-weight: 800; }
.service-scope-grid > div > div { display: flex; align-items: flex-start; gap: 11px; }
.service-scope-grid i { width: auto; height: auto; margin-top: 5px; flex: 0 0 auto; background: none; color: var(--gold-dark); font-size: 12px; }
.service-scope-grid strong { color: var(--bordo-dark); font-size: 15px; line-height: 1.5; }
.service-detail-section--process {
  padding: 40px;
  background: var(--white);
  border: 1px solid var(--line);
}
.service-process-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; margin-top: 34px; border-top: 1px solid var(--line); border-left: 1px solid var(--line); }
.service-process-grid > div {
  display: block;
  min-height: 210px;
  padding: 27px;
  background: transparent;
  border: 0;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  border-radius: 0;
  box-shadow: none;
}
.service-process-grid span {
  width: auto;
  height: auto;
  display: block;
  margin-bottom: 28px;
  background: none;
  color: var(--gold-dark);
  font-size: 15px;
}
.service-process-grid h3 { margin: 0 0 10px; color: var(--bordo-dark); font-size: 21px; }
.service-process-grid p { color: var(--muted); font-size: 14.5px; line-height: 1.65; }
.service-info-grid { grid-template-columns: repeat(2,minmax(0,1fr)); gap: 15px; margin-top: 27px; }
.service-info-grid > div {
  display: grid;
  min-height: 148px;
  grid-template-columns: 48px 1fr;
  gap: 16px;
  padding: 22px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0;
}
.service-info-grid i { width: 48px; height: 48px; background: var(--cream); border: 1px solid var(--line); color: var(--bordo); }
.service-info-grid strong { display: block; margin-bottom: 6px; color: var(--bordo-dark); font-size: 12px; letter-spacing: .04em; text-transform: uppercase; }
.service-info-grid p { color: var(--muted); font-size: 14px; }
.service-detail-section--accent {
  position: relative;
  overflow: hidden;
  padding: 44px;
  background: linear-gradient(135deg, var(--bordo-dark), #2d0d13);
  border: 0;
  border-radius: 0;
}
.service-detail-section--accent::after { position: absolute; right: -95px; bottom: -95px; width: 240px; height: 240px; border: 1px solid rgba(225,196,122,.16); border-radius: 50%; content: ''; }
.service-detail-section--accent .section-kicker { color: var(--gold-light); }
.service-detail-section--accent h2 { color: var(--white); }
.service-risk-list { position: relative; z-index: 1; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 0; margin-top: 27px !important; border-top: 1px solid rgba(255,255,255,.13); border-left: 1px solid rgba(255,255,255,.13); }
.service-risk-list li {
  min-height: 120px;
  padding: 23px 22px 22px 52px;
  background: transparent;
  border: 0;
  border-right: 1px solid rgba(255,255,255,.13);
  border-bottom: 1px solid rgba(255,255,255,.13);
  border-radius: 0;
  color: rgba(255,255,255,.78);
  font-size: 14px;
  line-height: 1.6;
}
.service-risk-list li::before { top: 24px; left: 22px; color: var(--gold); }
.service-detail-content .faq-list { display: grid; gap: 10px; }
.service-detail-content .faq-list details { background: var(--white); border: 1px solid var(--line); border-radius: 0; box-shadow: none; }
.service-detail-content .faq-list summary { padding: 20px 54px 20px 22px; color: var(--bordo-dark); font-family: var(--serif); font-size: 18px; }
.service-detail-content .faq-list details p { padding: 0 22px 21px; color: var(--muted); }
.service-related-section { margin-bottom: 0; }
.service-related-section .related-links { display: grid; grid-template-columns: repeat(2,minmax(0,1fr)); gap: 12px; }
.service-related-section .related-links a { position: relative; margin: 0; padding: 18px 46px 18px 18px; background: var(--white); border: 1px solid var(--line); color: var(--bordo-dark); font-weight: 800; }
.service-related-section .related-links a::after { position: absolute; top: 50%; right: 18px; color: var(--gold-dark); font-family: 'Font Awesome 6 Free'; font-weight: 900; content: '\f061'; transform: translateY(-50%); }
.service-detail-sidebar { min-width: 0; }
.service-sidebar-sticky { position: sticky; top: 112px; display: grid; gap: 18px; }
.service-sidebar-nav,
.service-sidebar-others { padding: 24px; background: var(--white); border: 1px solid var(--line); }
.service-sidebar-nav > span,
.service-sidebar-others > span { display: block; margin-bottom: 14px; color: var(--gold-dark); font-size: 10px; font-weight: 900; letter-spacing: .18em; text-transform: uppercase; }
.service-sidebar-nav a { display: flex; align-items: center; gap: 9px; padding: 11px 0; border-top: 1px solid var(--line); color: var(--ink); font-size: 13px; font-weight: 800; }
.service-sidebar-nav i { color: var(--gold-dark); font-size: 10px; }
.service-sidebar-contact { padding: 29px 25px; background: linear-gradient(145deg,var(--bordo),var(--bordo-dark)); color: var(--white); box-shadow: var(--shadow-strong); }
.service-sidebar-contact > i { display: grid; width: 48px; height: 48px; margin-bottom: 20px; place-items: center; border: 1px solid rgba(225,196,122,.5); color: var(--gold-light); }
.service-sidebar-contact > span { color: var(--gold-light); font-size: 10px; font-weight: 900; letter-spacing: .14em; text-transform: uppercase; }
.service-sidebar-contact h3 { margin: 8px 0 11px; color: var(--white); font-size: 25px; }
.service-sidebar-contact p { margin-bottom: 20px; color: rgba(255,255,255,.72); font-size: 13px; line-height: 1.65; }
.service-sidebar-contact .btn { width: 100%; padding: 12px 15px; }
.service-sidebar-phone { display: block; margin-top: 17px; color: var(--white); font-size: 13px; font-weight: 900; text-align: center; }
.service-sidebar-phone:hover { color: var(--gold-light); }
.service-sidebar-phone i { margin-right: 7px; color: var(--gold); }
.service-sidebar-others > a { display: flex; align-items: center; justify-content: space-between; gap: 10px; padding: 10px 0; border-top: 1px solid var(--line); color: var(--ink); font-size: 12.5px; font-weight: 800; }
.service-sidebar-others > a i { color: var(--gold-dark); font-size: 9px; }
.service-sidebar-others .service-sidebar-all { margin-top: 9px; color: var(--bordo); }
.service-detail-final-cta { position: relative; overflow: hidden; padding: 78px 0; background: linear-gradient(125deg,#2e0d14,var(--bordo-dark)); border: 0; }
.service-detail-final-cta::after { position: absolute; top: -180px; right: -80px; width: 440px; height: 440px; border: 1px solid rgba(225,196,122,.15); border-radius: 50%; content: ''; }
.service-detail-final-cta__inner { position: relative; z-index: 1; padding: 0; background: transparent; border: 0; border-radius: 0; box-shadow: none; }
.service-detail-final-cta .section-kicker { color: var(--gold-light); }
.service-detail-final-cta h2 { max-width: 760px; color: var(--white); font-size: clamp(30px,4vw,46px); }
.service-detail-final-cta p { color: rgba(255,255,255,.68); }
.service-final-actions { display: flex; min-width: 245px; flex-direction: column; align-items: stretch; gap: 13px; text-align: center; }
.service-detail-final-cta .btn-gold.nav-cta { padding: 14px 22px !important; background: var(--gold); color: var(--bordo-dark) !important; }
.service-final-actions > a:last-child { color: rgba(255,255,255,.82); font-size: 12px; font-weight: 900; }
.service-final-actions > a:last-child i { margin-left: 7px; color: var(--gold); }

@media (max-width: 1080px) {
  .service-detail-hero__grid { grid-template-columns: minmax(0,1fr) minmax(340px,.8fr); gap: 40px; }
  .service-detail-visual { height: auto; aspect-ratio: 3 / 2; }
  .service-detail-wrap { grid-template-columns: minmax(0,1fr) 285px; gap: 38px; }
}
@media (max-width: 900px) {
  .service-detail-hero { padding: 58px 0 68px; }
  .service-detail-hero__grid { grid-template-columns: 1fr; }
  .service-detail-visual { height: auto; aspect-ratio: 3 / 2; }
  .service-detail-strip__grid { display: flex; overflow-x: auto; padding: 0 18px; scrollbar-width: none; }
  .service-detail-strip__grid::-webkit-scrollbar { display: none; }
  .service-detail-strip__grid > a { min-width: 170px; }
  .service-detail-wrap { grid-template-columns: 1fr; }
  .service-sidebar-sticky { position: static; }
  .service-sidebar-nav, .service-sidebar-others { display: none; }
  .service-sidebar-contact { max-width: 540px; }
}
@media (max-width: 640px) {
  .service-detail-hero { padding: 38px 0 52px; }
  .service-detail-hero .service-detail-breadcrumb { margin-bottom: 22px; font-size: 12px; }
  .service-detail-hero h1 { font-size: clamp(33px,10vw,43px); }
  .service-detail-hero .service-detail-lead { font-size: 16px; }
  .service-detail-actions { align-items: stretch; flex-direction: column; }
  .service-detail-actions .btn, .service-detail-discover { width: 100%; justify-content: center; text-align: center; }
  .service-detail-assurance { display: grid; grid-template-columns: 1fr; }
  .service-detail-visual { aspect-ratio: 3 / 2; box-shadow: 12px 14px 0 rgba(0,0,0,.15); }
  .service-detail-visual figcaption { right: 20px; bottom: 20px; left: 20px; }
  .service-detail-visual figcaption strong { font-size: 19px; }
  .service-detail-main { padding: 58px 0 68px; }
  .service-detail-section { margin-bottom: 56px; scroll-margin-top: 88px; }
  .service-section-heading h2 { font-size: clamp(27px,8vw,35px); }
  .service-scope-grid, .service-info-grid, .service-process-grid, .service-risk-list, .service-related-section .related-links { grid-template-columns: 1fr; }
  .service-scope-grid > div { min-height: 96px; padding: 18px; }
  .service-detail-section--process, .service-detail-section--accent { padding: 24px 20px; }
  .service-process-grid > div { min-height: 0; padding: 22px; }
  .service-process-grid span { margin-bottom: 15px; }
  .service-risk-list li { min-height: 0; }
  .service-detail-content .faq-list summary { font-size: 16px; }
  .service-detail-final-cta { padding: 58px 0; }
  .service-detail-final-cta__inner { align-items: stretch; }
  .service-final-actions { width: 100%; min-width: 0; }
}

.seo-hero {
  position: relative;
  padding: 94px 0 78px;
  background:
    linear-gradient(135deg, rgba(74,20,29,.94), rgba(26,18,18,.9)),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&auto=format&fit=crop&q=70') center/cover no-repeat;
  color: var(--white);
}
.seo-hero .breadcrumb {
  color: rgba(255,255,255,.72);
  margin-bottom: 20px;
  font-size: 14px;
}
.seo-hero .breadcrumb a { color: var(--gold-light); }
.seo-hero .breadcrumb span { color: var(--gold); margin: 0 10px; }
.seo-hero .eyebrow {
  display: inline-block;
  color: var(--gold-light);
  font-size: 13px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  font-weight: 800;
  margin-bottom: 16px;
}
.seo-hero h1 {
  max-width: 860px;
  color: var(--white);
  font-size: clamp(34px, 5vw, 58px);
  margin-bottom: 22px;
}
.seo-hero p {
  max-width: 780px;
  color: rgba(255,255,255,.86);
  font-size: 18px;
  margin-bottom: 28px;
}
.seo-check-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin: 0 0 34px !important;
  list-style: none;
}
.seo-check-list li {
  position: relative;
  margin: 0;
  padding: 14px 14px 14px 42px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-radius: 4px;
  font-weight: 700;
}
.seo-check-list li::before {
  content: '\f00c';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  position: absolute;
  left: 14px;
  top: 15px;
  color: var(--gold-dark);
}
.process-steps {
  display: grid;
  gap: 14px;
  margin-bottom: 34px;
}
.process-steps div {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 14px;
  align-items: start;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  box-shadow: var(--shadow);
}
.process-steps span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 21px;
  font-weight: 800;
}
.process-steps p { margin: 0; color: var(--ink); }
.faq-list {
  display: grid;
  gap: 12px;
  margin-bottom: 34px;
}
.faq-list details {
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  overflow: hidden;
}
.faq-list summary {
  cursor: pointer;
  padding: 16px 18px;
  color: var(--bordo-dark);
  font-weight: 900;
}
.faq-list details[open] summary {
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}
.faq-list p {
  padding: 16px 18px 18px;
  margin: 0;
  color: var(--muted);
}

.consultation-process {
  background:
    linear-gradient(135deg, rgba(74,20,29,.96), rgba(26,18,18,.94)),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1600&auto=format&fit=crop&q=70') center/cover no-repeat;
  color: var(--white);
}
.consultation-process .section-title h2 {
  color: var(--white);
}
.consultation-process .section-title p {
  color: rgba(255,255,255,.78);
}
.home-process-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}
.home-process-card {
  position: relative;
  padding: 32px 28px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(201,162,75,.35);
  border-radius: 6px;
  box-shadow: 0 18px 50px rgba(0,0,0,.18);
}
.home-process-card span {
  width: 42px;
  height: 42px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gold);
  color: var(--bordo-dark);
  font-weight: 900;
  margin-bottom: 18px;
}
.home-process-card h3 {
  color: var(--white);
  font-size: 23px;
  margin-bottom: 10px;
}
.home-process-card p {
  color: rgba(255,255,255,.76);
  font-size: 15.5px;
}
.home-process-cta {
  margin-top: 26px;
  padding: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(201,162,75,.4);
  border-radius: 6px;
}
.home-process-cta h3 {
  color: var(--gold-light);
  margin-bottom: 6px;
}
.home-process-cta p {
  color: rgba(255,255,255,.78);
  margin: 0;
}
.home-process-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 310px;
}
.reviews-section {
  position: relative;
  overflow: hidden;
  background:
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
}
.reviews-title {
  margin-bottom: 38px;
}
.reviews-marquee {
  position: relative;
  overflow: hidden;
  padding: 8px 0 14px;
}
.reviews-marquee::before,
.reviews-marquee::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: min(12vw, 150px);
  z-index: 2;
  pointer-events: none;
}
.reviews-marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), rgba(255,255,255,0));
}
.reviews-marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--cream), rgba(250,247,241,0));
}
.reviews-track {
  width: max-content;
  display: flex;
  gap: 22px;
  padding: 0 22px;
  animation: reviews-scroll-right 108s linear infinite;
  will-change: transform;
}
.reviews-marquee:hover .reviews-track,
.reviews-marquee:focus-within .reviews-track {
  animation-play-state: paused;
}
.review-card {
  flex: 0 0 350px;
  width: 350px;
  min-height: 268px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  background: var(--white);
  border: 1px solid rgba(107,30,43,.12);
  border-top: 3px solid var(--gold);
  border-radius: 6px;
  box-shadow: 0 18px 46px rgba(74,20,29,.08);
}
.review-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 18px;
}
.review-photo {
  width: 48px;
  height: 48px;
  min-width: 48px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
  background: var(--cream);
  box-shadow: 0 8px 20px rgba(74,20,29,.12);
}
.review-stars {
  display: inline-flex;
  gap: 3px;
  color: var(--gold);
  font-size: 13px;
  white-space: nowrap;
}
.review-card p {
  color: var(--ink);
  font-size: 15.5px;
  line-height: 1.7;
  margin: 0 0 22px;
}
.review-author {
  padding-top: 16px;
  border-top: 1px solid var(--line);
}
.review-author strong {
  display: block;
  color: var(--bordo-dark);
  font-size: 16px;
}
.review-author span {
  display: block;
  margin-top: 2px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}
@keyframes reviews-scroll-right {
  from { transform: translateX(-50%); }
  to { transform: translateX(0); }
}
@media (prefers-reduced-motion: reduce) {
  .reviews-track {
    animation: none;
    transform: none;
  }
}
.related-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 6px 0 30px;
}
.related-links a {
  display: inline-flex;
  padding: 10px 13px;
  border: 1px solid rgba(107,30,43,.18);
  border-radius: 4px;
  background: var(--cream);
  color: var(--bordo);
  font-weight: 800;
}
.related-links a:hover {
  background: var(--bordo);
  color: var(--white);
}
.article-hero {
  padding: 42px 0 50px;
  background:
    radial-gradient(circle at 12% 8%, rgba(201,162,75,.12), transparent 34%),
    linear-gradient(180deg, var(--white) 0%, var(--cream) 100%);
  border-bottom: 1px solid var(--line);
}
.article-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, .78fr);
  gap: clamp(30px, 5vw, 58px);
  align-items: center;
}
.article-hero h1 {
  max-width: 850px;
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 56px);
}
.article-hero p {
  max-width: 760px;
  color: var(--ink);
  font-size: 18px;
}
.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}
.article-meta span,
.article-meta a {
  display: inline-flex;
  align-items: center;
  min-height: 36px;
  padding: 8px 12px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--bordo);
  font-size: 13px;
  font-weight: 900;
}
.article-meta i {
  margin-right: 7px;
  color: var(--gold-dark);
}
.article-hero__media {
  overflow: hidden;
  margin: 0;
  background: var(--white);
  border: 1px solid rgba(201,162,75,.45);
  border-radius: 6px;
  box-shadow: 0 22px 60px rgba(74,20,29,.12);
}
.article-hero__media img {
  width: 100%;
  height: 390px;
  object-fit: cover;
}
.article-hero__media figcaption {
  padding: 11px 14px;
  color: var(--muted);
  font-size: 12px;
}
.article-main {
  padding: 70px 0 82px;
}
.article-content--modern {
  min-width: 0;
}
.article-summary {
  margin-bottom: 34px;
  padding: 28px;
  background: var(--cream);
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
  border-radius: 6px;
}
.article-summary h2 {
  margin-top: 0;
}
.article-summary ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  margin: 16px 0 0 !important;
  list-style: none;
}
.article-summary li {
  margin: 0;
}
.article-summary a {
  display: block;
  height: 100%;
  padding: 12px 14px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 4px;
  color: var(--bordo-dark);
  font-weight: 900;
}
.article-summary a:hover {
  border-color: var(--gold);
  color: var(--bordo);
}
.article-section {
  padding: 4px 0 12px;
  border-bottom: 1px solid var(--line);
  scroll-margin-top: 110px;
}
.article-content h2 {
  margin-top: 34px;
}
.article-section h2 {
  margin-top: 28px;
}
.article-section p {
  color: var(--ink);
  font-size: 17px;
  line-height: 1.82;
}
.article-notice {
  margin: 34px 0;
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid rgba(201,162,75,.55);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
  box-shadow: var(--shadow);
}
.article-notice strong {
  display: block;
  margin-bottom: 6px;
  color: var(--bordo-dark);
  font-family: var(--serif);
  font-size: 21px;
}
.article-notice p {
  margin: 0;
  color: var(--muted);
}
.article-cta {
  margin: 38px 0;
  padding: 28px;
  border-left: 4px solid var(--gold);
  background: var(--cream);
}
.article-cta h2 { margin-top: 0; }
.seo-lead {
  max-width: 720px;
  margin: 14px auto 28px;
  color: var(--muted);
}
.profile-content,
.legal-text {
  max-width: 920px;
}
.sidebar { position: sticky; top: 100px; align-self: start; }
.sidebar-box {
  background: var(--cream);
  border: 1px solid var(--line);
  padding: 28px;
  margin-bottom: 24px;
  border-radius: 4px;
}
.sidebar-box h4 {
  font-size: 16px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bordo);
  margin-bottom: 18px;
  padding-bottom: 12px;
  border-bottom: 2px solid var(--gold);
}
.sidebar-list { list-style: none; }
.sidebar-list li { border-bottom: 1px solid var(--line); }
.sidebar-list li:last-child { border-bottom: 0; }
.sidebar-list a {
  display: block; padding: 12px 0; color: var(--ink); font-size: 15px; font-weight: 500;
  display: flex; justify-content: space-between; align-items: center;
}
.sidebar-list a::after {
  content: '\f105';
  font-family: 'Font Awesome 6 Free';
  font-weight: 900;
  color: var(--gold-dark);
}
.sidebar-list a:hover { color: var(--bordo); padding-left: 8px; }
.sidebar-cta {
  background: var(--bordo-dark);
  color: var(--white);
  padding: 32px 28px;
  text-align: center;
  border-radius: 4px;
}
.sidebar-cta h4 { color: var(--gold-light); }
.sidebar-cta p { color: rgba(255,255,255,.85); margin: 12px 0 20px; font-size: 14.5px; }
.sidebar-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  min-height: 46px;
  padding: 12px 16px !important;
  border-radius: 3px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-align: center;
  white-space: normal;
}
.sidebar-cta .nav-cta {
  margin-top: 0;
  background: var(--gold);
  color: var(--bordo-dark) !important;
}
.sidebar-cta .nav-cta:hover {
  background: var(--gold-light);
  color: var(--bordo-dark) !important;
}
.sidebar-cta a + a {
  margin-top: 10px;
  background: transparent;
  border: 1px solid rgba(255,255,255,.55);
  color: var(--white);
}
.sidebar-cta a + a:hover {
  background: var(--white);
  border-color: var(--white);
  color: var(--bordo-dark);
}

@media (max-width: 880px) {
  .content-wrap { grid-template-columns: 1fr; }
  .sidebar { position: static; }
}

/* ============ CTA BANNER ============ */
.cta-banner {
  background:
    linear-gradient(135deg, rgba(74,20,29,.95), rgba(107,30,43,.92)),
    url('https://images.unsplash.com/photo-1450101499163-c8848c66ca85?w=1920&auto=format&fit=crop&q=60') center/cover;
  color: var(--white);
  padding: 80px 0;
  text-align: center;
}
.cta-banner h2 { color: var(--white); font-size: clamp(28px, 4vw, 42px); margin-bottom: 14px; }
.cta-banner p { font-size: 18px; color: rgba(255,255,255,.85); margin-bottom: 30px; max-width: 640px; margin-left: auto; margin-right: auto; }

/* ============ CONTACT ============ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 50px;
}
.contact-info-box {
  background: var(--bordo-dark);
  color: var(--white);
  padding: 44px 36px;
  border-radius: 4px;
}
.contact-info-box h3 { color: var(--white); margin-bottom: 8px; }
.contact-info-box > p { color: rgba(255,255,255,.85); margin-bottom: 32px; }
.contact-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  margin-bottom: 24px;
}
.contact-item .ic {
  width: 46px; height: 46px;
  background: var(--gold);
  color: var(--bordo-dark);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.contact-item .txt strong { display: block; color: var(--gold-light); font-size: 13px; text-transform: uppercase; letter-spacing: 0.15em; margin-bottom: 4px; }
.contact-item .txt a, .contact-item .txt span { color: var(--white); font-size: 16px; overflow-wrap: anywhere; }

.contact-form {
  background: var(--white);
  border: 1px solid var(--line);
  padding: 44px 40px;
  border-radius: 4px;
}
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
  color: var(--bordo);
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 15px;
  color: var(--ink);
  border-radius: 2px;
  transition: all .3s ease;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,75,.15);
}
.form-group textarea { resize: vertical; min-height: 140px; }
.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin: 6px 0 18px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.45;
}
.form-consent input {
  width: 16px;
  min-width: 16px;
  height: 16px;
  margin-top: 3px;
}
.form-status {
  display: none;
  margin-bottom: 18px;
  padding: 12px 14px;
  border-radius: 4px;
  font-weight: 800;
  line-height: 1.45;
}
.form-status.is-visible {
  display: block;
}
.form-status.is-success {
  background: rgba(31,157,85,.1);
  color: #167341;
  border: 1px solid rgba(31,157,85,.2);
}
.form-status.is-error {
  background: rgba(107,30,43,.08);
  color: var(--bordo);
  border: 1px solid rgba(107,30,43,.2);
}
.contact-form button:disabled {
  opacity: .65;
  cursor: wait;
}
.anchor-target {
  display: block;
  position: relative;
  top: -120px;
  visibility: hidden;
}

@media (max-width: 880px) {
  .contact-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .trust-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
  .trust-item:nth-child(2) {
    border-right: 0;
  }
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    border-bottom: 1px solid var(--line);
  }
  .home-process-grid {
    grid-template-columns: 1fr;
  }
  .home-process-cta {
    align-items: flex-start;
    flex-direction: column;
  }
  .home-process-actions {
    min-width: 0;
    justify-content: flex-start;
  }
  .reviews-track {
    gap: 18px;
    padding: 0 18px;
    animation-duration: 126s;
  }
  .review-card {
    flex-basis: 320px;
    width: 320px;
    min-height: 280px;
  }
  .booking-hero .container {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .booking-promise,
  .booking-grid,
  .booking-steps {
    grid-template-columns: 1fr;
  }
}

.map-wrap { margin-top: 60px; border-radius: 4px; overflow: hidden; box-shadow: var(--shadow); }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; }

/* ============ FOOTER ============ */
.footer {
  background: #1a0e10;
  color: rgba(255,255,255,.75);
  padding: 80px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 40px;
  margin-bottom: 50px;
}
.footer h4 {
  color: var(--gold-light);
  font-size: 15px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 22px;
  position: relative;
  padding-bottom: 12px;
}
.footer h4::after {
  content: '';
  position: absolute; left: 0; bottom: 0;
  width: 40px; height: 2px;
  background: var(--gold);
}
.footer-brand img { height: 70px; width: 70px; border-radius: 50%; border: 2px solid var(--gold); margin-bottom: 16px; }
.footer-brand .name { font-family: var(--serif); font-size: 22px; color: var(--white); display: block; margin-bottom: 8px; }
.footer-brand p { font-size: 14.5px; line-height: 1.7; }
.footer-links { list-style: none; }
.footer-links li { margin-bottom: 10px; }
.footer-links a { color: rgba(255,255,255,.7); font-size: 15px; display: inline-flex; align-items: center; gap: 8px; }
.footer-links a::before { content: '\f105'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--gold); font-size: 11px; }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }

.footer-contact p { font-size: 14.5px; margin-bottom: 14px; display: flex; gap: 12px; overflow-wrap: anywhere; }
.footer-contact i { color: var(--gold); margin-top: 4px; }

.socials { display: flex; gap: 10px; margin-top: 18px; }
.socials a,
.socials span {
  width: 38px; height: 38px;
  border: 1px solid rgba(201,162,75,.4);
  color: var(--gold-light);
  display: flex; align-items: center; justify-content: center;
  border-radius: 50%;
  transition: all .3s ease;
}
.socials span { opacity: .58; cursor: default; }
.socials a:hover { background: var(--gold); color: var(--bordo-dark); border-color: var(--gold); }

.floating-contact {
  position: fixed;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
  z-index: 90;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}
.floating-contact__btn {
  width: 56px;
  min-width: 56px;
  height: 52px;
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  gap: 12px;
  overflow: hidden;
  padding: 0 16px;
  border: 2px solid rgba(255,255,255,.85);
  border-right: 0;
  border-radius: 8px 0 0 8px;
  color: var(--white);
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  font-size: 13px;
  letter-spacing: 0.04em;
  box-shadow: 0 12px 30px rgba(0,0,0,.18);
  transition: width .25s ease, box-shadow .25s ease, background .25s ease;
  text-transform: uppercase;
}
.floating-contact__btn i {
  width: 22px;
  min-width: 22px;
  font-size: 22px;
  text-align: center;
}
.floating-contact__btn span {
  opacity: 0;
  transform: translateX(8px);
  white-space: nowrap;
  transition: opacity .2s ease, transform .2s ease;
}
.floating-contact__btn:hover {
  color: var(--white);
  width: 154px;
  box-shadow: 0 16px 36px rgba(0,0,0,.24);
}
.floating-contact__btn:focus,
.floating-contact__btn:focus-visible {
  width: 154px;
}
.floating-contact__btn:hover span,
.floating-contact__btn:focus span,
.floating-contact__btn:focus-visible span {
  opacity: 1;
  transform: translateX(0);
}
.floating-contact__btn--whatsapp { background: #1f9d55; }
.floating-contact__btn--whatsapp:hover { background: #178447; }
.floating-contact__btn--call { background: var(--bordo); }
.floating-contact__btn--call:hover { background: var(--gold-dark); }
.floating-contact__btn--chat { background: var(--bordo-dark); }
.floating-contact__btn--chat:hover,
.floating-contact__btn--chat.is-active { background: var(--gold-dark); width: 154px; }

.legal-chatbot {
  position: fixed;
  top: 118px;
  right: 24px;
  bottom: 76px;
  width: min(560px, calc(100vw - 112px));
  z-index: 160;
  display: flex;
  flex-direction: column;
  overflow: hidden;
  background: var(--white);
  border: 1px solid rgba(107,30,43,.14);
  border-radius: 8px;
  box-shadow: 0 24px 70px rgba(0,0,0,.24);
  opacity: 0;
  pointer-events: none;
  transform: translateX(24px) scale(.98);
  transform-origin: top right;
  transition: opacity .22s ease, transform .22s ease;
}
.legal-chatbot.open {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(0) scale(1);
}
.legal-chatbot__header {
  min-height: 76px;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  background: linear-gradient(135deg, var(--bordo-dark), var(--bordo));
  color: var(--white);
}
.legal-chatbot__header strong {
  display: block;
  font-size: 19px;
  line-height: 1.2;
}
.legal-chatbot__header span {
  display: block;
  margin-top: 4px;
  color: rgba(255,255,255,.74);
  font-size: 12px;
}
.legal-chatbot__tools {
  display: flex;
  gap: 6px;
}
.legal-chatbot__tools button {
  width: 34px;
  height: 34px;
  border: 0;
  border-radius: 6px;
  background: rgba(255,255,255,.12);
  color: var(--white);
  cursor: pointer;
  font-size: 15px;
}
.legal-chatbot__tools button:hover { background: rgba(255,255,255,.2); }
.legal-chatbot__messages {
  flex: 1;
  padding: 22px 18px;
  overflow-y: auto;
  background: linear-gradient(180deg, #f7f9fc 0%, #fff 34%);
}
.legal-chatbot__message {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  margin-bottom: 16px;
}
.legal-chatbot__message--user {
  justify-content: flex-end;
}
.legal-chatbot__avatar {
  width: 34px;
  min-width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--gold-light);
  box-shadow: 0 8px 20px rgba(84,21,38,.18);
}
.legal-chatbot__bubble {
  max-width: calc(100% - 44px);
  padding: 13px 15px;
  border-radius: 8px;
  background: #f5efe8;
  color: #192235;
  font-size: 14.5px;
  line-height: 1.55;
}
.legal-chatbot__message--user .legal-chatbot__bubble {
  max-width: 82%;
  background: var(--bordo);
  color: var(--white);
}
.legal-chatbot__bubble p { margin: 0; }
.legal-chatbot__bubble p + p { margin-top: 7px; }
.legal-chatbot__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}
.legal-chatbot__actions button {
  border: 0;
  border-radius: 6px;
  cursor: pointer;
  font-family: inherit;
  font-weight: 800;
  text-decoration: none;
}
.legal-chatbot__actions button {
  padding: 8px 10px;
  background: rgba(201,162,75,.18);
  color: var(--bordo-dark);
  font-size: 12px;
}
.legal-chatbot__actions button:hover { background: rgba(201,162,75,.3); }
.legal-chatbot__form {
  min-height: 64px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-top: 1px solid #e5eaf1;
  background: var(--white);
}
.legal-chatbot__form input {
  flex: 1;
  height: 44px;
  border: 0;
  outline: 0;
  color: #1b2538;
  font: inherit;
  font-size: 15px;
}
.legal-chatbot__form input::placeholder { color: #99a3b3; }
.legal-chatbot__form button {
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--white);
  cursor: pointer;
  font-size: 17px;
}
.legal-chatbot__form button:hover { background: var(--gold-dark); }

/* ============ BOOKING PAGE ============ */
.booking-page main {
  background: #f7f3ec;
}
.booking-hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 12% 18%, rgba(225,196,122,.11), transparent 24%),
    linear-gradient(90deg, #351016 0%, var(--bordo-dark) 49%, #f7f3ec 49%, #f7f3ec 100%);
}
.booking-hero::before {
  content: '';
  position: absolute;
  top: 80px;
  left: -165px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(225,196,122,.11);
  border-radius: 50%;
  box-shadow: 0 0 0 70px rgba(225,196,122,.025), 0 0 0 140px rgba(225,196,122,.018);
  pointer-events: none;
}
.booking-hero .container {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(360px, .8fr) minmax(600px, 1.2fr);
  gap: clamp(56px, 6vw, 96px);
  align-items: start;
  max-width: 1380px;
  padding: 76px 36px 92px;
}
.booking-copy {
  position: sticky;
  top: 176px;
  padding: 10px 0 30px;
  color: var(--white);
}
.booking-breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 58px;
  color: rgba(255,255,255,.5);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.booking-breadcrumb a { color: var(--gold-light); }
.booking-breadcrumb i { font-size: 8px; }
.booking-breadcrumb span { color: rgba(255,255,255,.58); }
.booking-copy .eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--gold-light);
  letter-spacing: .22em;
  text-transform: uppercase;
  font-size: 12px;
  font-weight: 900;
}
.booking-copy .eyebrow::before {
  content: '';
  width: 42px;
  height: 1px;
  background: var(--gold);
}
.booking-copy h1 {
  max-width: 590px;
  margin-top: 24px;
  color: var(--white);
  font-size: clamp(46px, 4.7vw, 66px);
  line-height: 1.06;
  letter-spacing: -.035em;
}
.booking-copy h1 em {
  color: var(--gold-light);
  font-weight: 500;
}
.booking-copy > p {
  max-width: 540px;
  margin-top: 26px;
  color: rgba(255,255,255,.72);
  font-size: 17px;
  line-height: 1.78;
}
.booking-trust-list {
  display: grid;
  gap: 18px;
  margin-top: 42px;
  max-width: 520px;
}
.booking-trust-list > div {
  display: flex;
  align-items: center;
  gap: 15px;
}
.booking-trust-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(225,196,122,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.055);
  color: var(--gold-light);
}
.booking-trust-list strong,
.booking-trust-list small {
  display: block;
}
.booking-trust-list strong {
  color: var(--white);
  font-size: 14px;
  letter-spacing: .025em;
}
.booking-trust-list small {
  margin-top: 2px;
  color: rgba(255,255,255,.55);
  font-size: 12.5px;
}
.booking-direct-contact {
  max-width: 520px;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid rgba(255,255,255,.12);
}
.booking-direct-contact > span {
  display: block;
  margin-bottom: 12px;
  color: rgba(255,255,255,.42);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .2em;
  text-transform: uppercase;
}
.booking-direct-contact > div {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 24px;
}
.booking-direct-contact a {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--white);
  font-size: 14px;
  font-weight: 800;
}
.booking-direct-contact a i { color: var(--gold-light); }
.booking-direct-contact a:hover { color: var(--gold-light); }

.booking-form-card {
  position: relative;
  padding: 10px;
  border: 1px solid rgba(74,20,29,.09);
  border-radius: 14px;
  background: rgba(255,255,255,.64);
  box-shadow: 0 32px 90px rgba(49,29,25,.14);
}
.booking-form-card::before {
  content: '';
  position: absolute;
  top: 0;
  right: 48px;
  left: 48px;
  height: 3px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}
.booking-form-card .contact-form {
  padding: 42px 44px 38px;
  border: 0;
  border-radius: 9px;
  background: var(--white);
  box-shadow: none;
}
.booking-form-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding-bottom: 30px;
}
.booking-form-kicker {
  color: var(--gold-dark);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: .22em;
  text-transform: uppercase;
}
.booking-form-head h2 {
  margin-top: 5px;
  font-size: clamp(28px, 3vw, 38px);
  letter-spacing: -.025em;
}
.booking-form-head p {
  margin-top: 5px;
  color: var(--muted);
  font-size: 14px;
}
.booking-secure-badge {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 8px 11px;
  border-radius: 999px;
  background: #f4f0e8;
  color: #6d624f;
  font-size: 11px;
  font-weight: 900;
  white-space: nowrap;
}
.booking-secure-badge i { color: var(--gold-dark); }

.booking-form-section {
  padding: 30px 0 12px;
  border-top: 1px solid #ece6db;
}
.booking-form-section--last { padding-bottom: 0; }
.booking-form-section__title {
  display: flex;
  align-items: flex-start;
  gap: 15px;
  margin-bottom: 24px;
}
.booking-form-section__title > span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  flex: 0 0 34px;
  border-radius: 50%;
  background: var(--bordo-dark);
  color: var(--gold-light);
  font-family: var(--serif);
  font-size: 13px;
  font-weight: 700;
}
.booking-form-section__title h3 {
  color: var(--ink);
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 900;
  letter-spacing: .01em;
}
.booking-form-section__title p {
  margin-top: 2px;
  color: #807676;
  font-size: 12.5px;
  line-height: 1.45;
}
.booking-form-card .form-row {
  gap: 14px;
  margin-bottom: 0;
}
.booking-form-card .form-group { margin-bottom: 16px; }
.booking-form-card .form-group label,
.meeting-type-fieldset legend {
  display: block;
  margin-bottom: 7px;
  color: #4a4141;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: .075em;
  text-transform: uppercase;
}
.booking-form-card .form-group label b,
.meeting-type-fieldset legend b { color: var(--bordo); }
.booking-form-card .form-group input,
.booking-form-card .form-group select,
.booking-form-card .form-group textarea {
  padding: 14px 15px;
  border-color: #ded7cb;
  border-radius: 6px;
  background: #fbfaf7;
  font-size: 14px;
}
.booking-form-card .form-group input,
.booking-form-card .form-group select { min-height: 51px; }
.booking-form-card .form-group textarea {
  min-height: 126px;
  line-height: 1.55;
}
.booking-form-card .form-group input::placeholder,
.booking-form-card .form-group textarea::placeholder { color: #a29a91; }
.booking-form-card .form-group input:focus,
.booking-form-card .form-group select:focus,
.booking-form-card .form-group textarea:focus {
  border-color: var(--gold-dark);
  background: var(--white);
  box-shadow: 0 0 0 3px rgba(201,162,75,.12);
}
.meeting-type-fieldset {
  min-width: 0;
  margin: 2px 0 18px;
  padding: 0;
  border: 0;
}
.meeting-type-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 9px;
}
.meeting-type-option {
  position: relative;
  cursor: pointer;
}
.meeting-type-option input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}
.meeting-type-option > span {
  display: flex;
  min-height: 105px;
  padding: 14px 10px 12px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  border: 1px solid #e2dbd0;
  border-radius: 7px;
  background: #fbfaf7;
  text-align: center;
  transition: border-color .25s ease, background .25s ease, box-shadow .25s ease, transform .25s ease;
}
.meeting-type-option i {
  margin-bottom: 9px;
  color: var(--gold-dark);
  font-size: 17px;
}
.meeting-type-option strong,
.meeting-type-option small { display: block; }
.meeting-type-option strong {
  color: var(--ink);
  font-size: 11.5px;
  line-height: 1.25;
}
.meeting-type-option small {
  margin-top: 3px;
  color: #897f77;
  font-size: 9.5px;
  line-height: 1.25;
}
.meeting-type-option:hover > span {
  border-color: rgba(160,124,42,.62);
  transform: translateY(-2px);
}
.meeting-type-option input:focus-visible + span {
  outline: 2px solid var(--gold-dark);
  outline-offset: 2px;
}
.meeting-type-option input:checked + span {
  border-color: var(--bordo);
  background: rgba(107,30,43,.055);
  box-shadow: inset 0 0 0 1px var(--bordo);
}
.meeting-type-option input:checked + span::after {
  content: '\f00c';
  position: absolute;
  top: 8px;
  right: 9px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 18px;
  height: 18px;
  border-radius: 50%;
  background: var(--bordo);
  color: var(--white);
  font-family: 'Font Awesome 6 Free';
  font-size: 9px;
  font-weight: 900;
}
.booking-date-row { margin-top: 4px; }
.booking-form-card .form-consent {
  margin: 5px 0 20px;
  padding: 14px;
  border-radius: 6px;
  background: #f8f5ef;
  color: #6f6662;
  font-size: 12px;
}
.booking-form-card .form-consent input { accent-color: var(--bordo); }
.booking-submit {
  display: flex;
  width: 100%;
  min-height: 56px;
  align-items: center;
  justify-content: space-between;
  padding: 15px 20px 15px 24px;
  border-radius: 6px;
  text-align: left;
}
.booking-submit i {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: rgba(255,255,255,.13);
}
.booking-form-note {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 8px;
  margin: 13px 16px 4px;
  color: #756b63;
  font-size: 11.5px;
  line-height: 1.45;
  text-align: center;
}
.booking-form-note i {
  margin-top: 3px;
  color: var(--gold-dark);
}

.booking-process-section {
  padding: 108px 0;
  background: var(--white);
  border-top: 1px solid var(--line);
}
.booking-process-layout {
  display: grid;
  grid-template-columns: minmax(300px, .8fr) minmax(480px, 1.2fr);
  gap: clamp(60px, 9vw, 130px);
  align-items: start;
}
.booking-process-intro {
  position: sticky;
  top: 155px;
}
.booking-process-intro h2 {
  margin-top: 15px;
  font-size: clamp(36px, 4vw, 52px);
  line-height: 1.1;
}
.booking-process-intro h2 em {
  color: var(--bordo);
  font-weight: 500;
}
.booking-process-intro > p {
  max-width: 470px;
  margin-top: 20px;
  color: var(--muted);
}
.booking-office-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin-top: 28px;
  color: var(--bordo-dark);
  font-size: 13px;
  font-weight: 900;
}
.booking-office-link i { transition: transform .25s ease; }
.booking-office-link:hover i { transform: translateX(4px); }
.booking-process-steps {
  position: relative;
}
.booking-process-steps::before {
  content: '';
  position: absolute;
  top: 32px;
  bottom: 32px;
  left: 31px;
  width: 1px;
  background: linear-gradient(var(--gold), rgba(201,162,75,.18));
}
.booking-process-steps article {
  position: relative;
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding: 24px 0;
}
.booking-process-steps article > span {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 64px;
  height: 64px;
  border: 1px solid rgba(201,162,75,.5);
  border-radius: 50%;
  background: var(--white);
  color: var(--gold-dark);
  font-family: var(--serif);
  font-size: 16px;
  font-weight: 700;
}
.booking-process-steps article > div {
  padding: 4px 0 24px;
  border-bottom: 1px solid var(--line);
}
.booking-process-steps article:last-child > div { border-bottom: 0; }
.booking-process-steps h3 {
  color: var(--ink);
  font-size: 23px;
}
.booking-process-steps p {
  margin-top: 7px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.65;
}

@media (max-width: 1080px) {
  .booking-hero .container {
    grid-template-columns: minmax(310px, .72fr) minmax(520px, 1.28fr);
    gap: 42px;
    padding-right: 28px;
    padding-left: 28px;
  }
  .booking-copy h1 { font-size: clamp(42px, 5vw, 58px); }
  .booking-form-card .contact-form { padding-right: 32px; padding-left: 32px; }
  .meeting-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .meeting-type-option > span { min-height: 96px; }
}

@media (max-width: 900px) {
  .booking-hero {
    background:
      radial-gradient(circle at 12% 8%, rgba(225,196,122,.11), transparent 22%),
      linear-gradient(180deg, #351016 0%, var(--bordo-dark) 680px, #f7f3ec 680px, #f7f3ec 100%);
  }
  .booking-hero::before { top: 40px; left: -300px; }
  .booking-hero .container {
    grid-template-columns: minmax(0, 1fr);
    gap: 52px;
    max-width: 760px;
    padding: 50px 24px 70px;
  }
  .booking-copy,
  .booking-process-intro {
    position: static;
  }
  .booking-copy { padding: 0; }
  .booking-breadcrumb { margin-bottom: 42px; }
  .booking-copy h1 { max-width: 640px; }
  .booking-copy > p { max-width: 620px; }
  .booking-trust-list { grid-template-columns: 1fr 1fr; max-width: 650px; }
  .booking-direct-contact { max-width: 650px; }
  .booking-process-layout { grid-template-columns: 1fr; gap: 54px; }
}

@media (max-width: 640px) {
  .booking-hero {
    background: linear-gradient(180deg, #351016 0%, var(--bordo-dark) 700px, #f7f3ec 700px, #f7f3ec 100%);
  }
  .booking-hero .container {
    gap: 44px;
    padding: 36px 18px 58px;
  }
  .booking-breadcrumb { margin-bottom: 34px; }
  .booking-copy .eyebrow { font-size: 10.5px; }
  .booking-copy .eyebrow::before { width: 30px; }
  .booking-copy h1 {
    margin-top: 20px;
    font-size: clamp(37px, 11.5vw, 48px);
  }
  .booking-copy > p {
    margin-top: 20px;
    font-size: 15.5px;
    line-height: 1.7;
  }
  .booking-trust-list {
    grid-template-columns: 1fr;
    gap: 14px;
    margin-top: 30px;
  }
  .booking-direct-contact { margin-top: 32px; padding-top: 20px; }
  .booking-direct-contact > div { gap: 10px 18px; }
  .booking-form-card {
    margin: 0 -4px;
    padding: 6px;
    border-radius: 11px;
    box-shadow: 0 22px 60px rgba(49,29,25,.16);
  }
  .booking-form-card .contact-form {
    padding: 28px 20px 24px;
    border-radius: 7px;
  }
  .booking-form-head {
    display: block;
    padding-bottom: 24px;
  }
  .booking-form-head h2 { font-size: 30px; }
  .booking-secure-badge { margin-top: 13px; }
  .booking-form-section { padding-top: 25px; }
  .booking-form-section__title { gap: 12px; margin-bottom: 20px; }
  .booking-form-section__title > span { width: 31px; height: 31px; flex-basis: 31px; font-size: 12px; }
  .booking-form-card .form-row { grid-template-columns: 1fr; gap: 0; }
  .meeting-type-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .meeting-type-option > span { min-height: 102px; padding-right: 7px; padding-left: 7px; }
  .booking-submit { min-height: 54px; padding-left: 18px; font-size: 12px; }
  .booking-form-note { margin-right: 8px; margin-left: 8px; }
  .booking-process-section { padding: 68px 0; }
  .booking-process-layout { gap: 40px; }
  .booking-process-intro h2 { font-size: 37px; }
  .booking-process-steps::before { left: 23px; }
  .booking-process-steps article { grid-template-columns: 48px 1fr; gap: 16px; padding: 18px 0; }
  .booking-process-steps article > span { width: 48px; height: 48px; font-size: 13px; }
  .booking-process-steps article > div { padding-top: 0; }
  .booking-process-steps h3 { font-size: 20px; }
  .booking-process-steps p { font-size: 14px; }
}

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 22px 0;
  text-align: center;
  font-size: 13.5px;
  color: rgba(255,255,255,.55);
}
.footer-bottom a { color: var(--gold-light); }

@media (max-width: 880px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .container { padding: 0 18px; }
  .section { padding: 64px 0; }
  .section-title { margin-bottom: 38px; }
  .section-title p,
  .hero p,
  .cta-banner p { font-size: 16px; }

  .topbar { font-size: 12.5px; }
  .topbar .container,
  .topbar-info {
    justify-content: center;
    text-align: center;
    gap: 10px 16px;
  }
  .topbar-social { display: none; }

  .nav-inner {
    padding: 10px 18px;
    gap: 14px;
  }
  .brand { min-width: 0; gap: 10px; }
  .brand-text { min-width: 0; }
  .brand img { width: 52px; height: 52px; }
  .brand-text .name { font-size: 18px; }
  .brand-text .tag {
    max-width: 190px;
    font-size: 10px;
    letter-spacing: 0.14em;
    white-space: normal;
  }
  .menu-toggle {
    margin-left: auto;
    flex-shrink: 0;
  }

  .hero {
    min-height: 72vh;
    align-items: flex-end;
  }
  .hero-inner {
    max-width: 100%;
    padding: 72px 0 88px;
  }
  .hero .eyebrow {
    padding-left: 38px;
    letter-spacing: 0.18em;
  }
  .hero .eyebrow::before { width: 28px; }
  .hero h1 {
    max-width: 100%;
    font-size: clamp(31px, 8.2vw, 36px);
    line-height: 1.08;
    overflow-wrap: normal;
  }
  .hero h1 span {
    display: block;
  }
  .hero p {
    max-width: 100%;
    overflow-wrap: break-word;
  }
  .hero-actions .btn {
    width: 100%;
    min-width: 0;
    text-align: center;
    white-space: normal;
  }
  .trust-strip {
    margin-top: 0;
  }
  .trust-grid {
    grid-template-columns: 1fr;
  }
  .trust-item,
  .trust-item:nth-child(1),
  .trust-item:nth-child(2) {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid var(--line);
    padding: 20px 18px;
  }
  .trust-item:last-child {
    border-bottom: 0;
  }
  .home-process-card,
  .home-process-cta {
    padding: 26px 22px;
  }
  .home-process-actions,
  .home-process-actions .btn {
    width: 100%;
  }
  .home-process-actions .btn {
    text-align: center;
  }
  .reviews-section {
    padding-left: 0;
    padding-right: 0;
  }
  .review-card {
    flex-basis: min(82vw, 320px);
    width: min(82vw, 320px);
    padding: 22px;
  }
  .review-card p {
    font-size: 15px;
  }
  .home-services-section {
    padding: 54px 0 58px;
  }
  .home-services-section .section-title {
    margin-bottom: 30px;
  }
  .home-services-section .section-title h2 {
    font-size: clamp(30px, 8vw, 38px);
  }
  .home-services-grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }
  .home-services-grid .service-card {
    padding: 22px;
  }
  .home-services-grid .service-image {
    height: 170px;
    margin: 0 0 20px;
  }

  .page-header { padding: 78px 0 56px; }
	  .service-card,
	  .sidebar-box,
	  .sidebar-cta,
	  .contact-info-box,
	  .contact-form { padding: 30px 22px; }
  .blog-grid,
  .services-grid { grid-template-columns: 1fr; }
  .content-main img {
    height: 240px !important;
    object-fit: cover;
  }
  .sidebar-cta a { font-size: 13px; }
	  .map-wrap { margin-top: 38px; }
	  .map-wrap iframe { height: 320px; }
	  .btn {
    padding: 13px 22px;
    font-size: 13px;
    letter-spacing: 0.06em;
  }
}

@media (max-width: 700px) {
  body {
    padding-bottom: 74px;
  }
  .floating-contact {
    top: auto;
    right: 14px;
    bottom: 14px;
    left: 14px;
    transform: none;
    flex-direction: row;
    justify-content: center;
    align-items: center;
    gap: 8px;
    padding: 8px;
    background: rgba(255,255,255,.94);
    border: 1px solid rgba(107,30,43,.13);
    border-radius: 16px;
    box-shadow: 0 16px 38px rgba(25,18,18,.18);
    backdrop-filter: blur(12px);
  }
  .floating-contact__btn {
    flex: 1;
    width: auto;
    min-width: 0;
    height: 50px;
    justify-content: center;
    padding: 0 10px;
    border: 0;
    border-radius: 12px;
    box-shadow: none;
  }
  .floating-contact__btn span { display: none; }
  .floating-contact__btn:hover,
  .floating-contact__btn:focus,
  .floating-contact__btn:focus-visible {
    width: auto;
  }
  .floating-contact__btn--chat.is-active { width: auto; }
  .legal-chatbot {
    top: auto;
    right: 14px;
    bottom: 94px;
    width: calc(100vw - 28px);
    height: min(66vh, 620px);
    transform: translateY(18px) scale(.98);
    transform-origin: bottom right;
  }
  .legal-chatbot.open {
    transform: translateY(0) scale(1);
  }
  .legal-chatbot__header {
    min-height: 68px;
    padding: 15px 16px;
  }
  .legal-chatbot__header strong { font-size: 17px; }
  .legal-chatbot__messages { padding: 18px 14px; }
  .legal-chatbot__bubble { font-size: 14px; }
}

@media (max-width: 380px) {
  .brand-text .name { font-size: 16px; }
  .brand-text .tag { max-width: 150px; font-size: 9px; }
  .menu-toggle { font-size: 23px; }
  .floating-contact {
    right: 10px;
    bottom: 10px;
    left: 10px;
  }
  .floating-contact__btn {
    height: 48px;
  }
}

/* ============ RESPONSIVE NAV ============ */
@media (max-width: 992px) {
  .menu-toggle { display: block; position: relative; z-index: 130; }
  .nav-menu {
    position: fixed;
    top: 0; right: -100%;
    width: 320px; max-width: 85%;
    height: 100vh;
    height: 100dvh;
    background: var(--white);
    z-index: 120;
    flex-direction: column;
    gap: 0;
    padding: 80px 24px 24px;
    box-shadow: -10px 0 40px rgba(0,0,0,.15);
    transition: right .4s ease;
    overflow-y: auto;
    align-items: stretch;
  }
  .nav-menu.open { right: 0; }
  .nav-menu > li { width: 100%; border-bottom: 1px solid var(--line); }
  .nav-menu > li > a { padding: 14px 8px; border-bottom: none; }
  .submenu {
    position: static;
    opacity: 1; visibility: visible; transform: none;
    box-shadow: none; border-top: 0;
    padding: 0 0 10px 14px;
    max-height: 0; overflow: hidden;
    transition: max-height .4s ease;
  }
  .has-submenu.open .submenu { max-height: 500px; }
  .has-submenu > a::after { transition: transform .3s ease; }
  .has-submenu.open > a::after { transform: rotate(180deg); }
  .nav-cta { margin-top: 14px; text-align: center; }
}

/* ============ UTILS ============ */
.text-center { text-align: center; }
.mb-0 { margin-bottom: 0 !important; }
.mt-4 { margin-top: 30px; }

@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.fade-up { animation: fadeUp .8s ease both; }
.fade-up.d2 { animation-delay: .15s; }
.fade-up.d3 { animation-delay: .3s; }
