/* =========================================================
   ELEVARE ORBIS — Revenue Recovery & Optimization
   Design system: black / antique gold, matched to brand deck
   ========================================================= */

:root {
  --black: #18171B;
  --black-deep: #0D0C0F;
  --black-soft: #211F24;
  --line: rgba(191,167,111,0.22);
  --gold: #BFA76F;
  --gold-light: #D8C594;
  --gold-dark: #8F784A;
  --ivory: #F3EFE6;
  --ivory-2: #EAE3D2;
  --white: #FFFFFF;
  --ink: #1B1A1D;
  --ink-soft: #56534B;
  --ink-faint: #8A8579;
  --border-light: #E2DACB;
  --radius: 14px;
  --radius-sm: 8px;
  --max: 1200px;
  --font-display: "Anton", "Oswald", "Segoe UI", sans-serif;
  --font-head: "Oswald", "Segoe UI", sans-serif;
  --font-serif: "Cormorant Garamond", Georgia, serif;
  --font-body: "Inter", "Segoe UI", sans-serif;
  --shadow-sm: 0 2px 14px rgba(0,0,0,0.28);
  --shadow-md: 0 16px 40px rgba(0,0,0,0.38);
  --shadow-gold: 0 18px 44px rgba(191,167,111,0.16);
}

/* ---------- Reset & base ---------- */
* { box-sizing: border-box; }
html { scroll-behavior: smooth; overflow-x: hidden; }
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  * { animation-duration: 0.001ms !important; animation-iteration-count: 1 !important; transition-duration: 0.001ms !important; }
}
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { margin: 0; padding: 0; list-style: none; }
button { font: inherit; }
h1, h2, h3, h4 {
  font-family: var(--font-head);
  font-weight: 600;
  line-height: 1.2;
  letter-spacing: 0.01em;
  margin: 0 0 0.6em;
  color: var(--black);
  text-transform: uppercase;
}
section.dark h1, section.dark h2, section.dark h3, section.dark h4,
section.deep h1, section.deep h2, section.deep h3, section.deep h4,
.site-footer h3, .site-footer h4,
.hero h1, .hero h2, .hero h3, .hero h4,
.page-hero h1, .page-hero h2, .page-hero h3, .page-hero h4 { color: var(--white); }
h1 { font-family: var(--font-display); font-weight: 400; letter-spacing: 0.01em; font-size: clamp(2.4rem, 5vw, 4rem); line-height: 1.06; }
h2 { font-size: clamp(1.5rem, 2.8vw, 2.2rem); }
h3 { font-size: 1.15rem; }
p { margin: 0 0 1em; text-transform: none; }
.lede { font-size: 1.14rem; color: var(--ink-soft); text-transform: none; }
section.dark .lede { color: #C9C4B8; }
strong { font-weight: 700; }

.skip-link {
  position: absolute;
  left: 12px; top: -60px;
  background: var(--gold);
  color: var(--black);
  padding: 12px 18px;
  border-radius: 8px;
  font-size: 0.85rem;
  font-weight: 700;
  z-index: 1000;
  transition: top 0.15s ease;
}
.skip-link:focus { top: 12px; }
a:focus-visible, button:focus-visible, input:focus-visible, select:focus-visible, textarea:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.container { max-width: var(--max); margin: 0 auto; padding: 0 24px; }
.container-narrow { max-width: 800px; margin: 0 auto; padding: 0 24px; }

section { padding: 100px 0; position: relative; }
section.tight { padding: 68px 0; }
section.dark { background: var(--black); color: #C9C4B8; }
section.deep { background: linear-gradient(180deg, var(--black-deep), var(--black)); color: #C9C4B8; }
section.ivory { background: var(--ivory); }
section.white { background: var(--white); }
section.gold-panel { background: var(--gold); color: var(--black-deep); }
@media (max-width: 720px) {
  section { padding: 64px 0; }
  section.tight { padding: 44px 0; }
}

.eyebrow {
  font-family: var(--font-head);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 1em;
  display: inline-flex;
  align-items: center;
  gap: 10px;
}
.eyebrow::before { content: ""; width: 26px; height: 2px; background: currentColor; display: inline-block; }
section.dark .eyebrow, section.deep .eyebrow { color: var(--gold); }
.center .eyebrow { justify-content: center; }
.accent { color: var(--gold-dark); }
section.dark .accent, section.deep .accent,
.hero .accent, .page-hero .accent { color: var(--gold); }

.center { text-align: center; }
.section-head { max-width: 700px; margin: 0 0 3.2rem; }
.section-head.center { margin-left: auto; margin-right: auto; }
.statement {
  font-family: var(--font-head);
  font-weight: 600;
  font-size: clamp(1.3rem, 2.6vw, 1.9rem);
  line-height: 1.35;
  text-transform: uppercase;
  max-width: 840px;
}
.statement.center { margin: 0 auto; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--font-head);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 15px 30px;
  border-radius: 4px;
  border: 1.5px solid currentColor;
  cursor: pointer;
  transition: all 0.2s ease;
  white-space: nowrap;
  background: transparent;
}
.btn svg { width: 15px; height: 15px; flex-shrink: 0; }
.btn-solid { background: var(--gold); color: var(--black-deep); border-color: var(--gold); }
.btn-solid:hover { background: var(--gold-light); border-color: var(--gold-light); }
.btn-outline-dark { color: var(--black); }
.btn-outline-dark:hover { background: var(--black); color: var(--white); }
.btn-outline-light { color: var(--white); }
.btn-outline-light:hover { background: var(--white); color: var(--black); }
.btn-outline-gold { color: var(--gold); }
.btn-outline-gold:hover { background: var(--gold); color: var(--black-deep); }
.btn-block { width: 100%; justify-content: center; white-space: normal; text-align: center; }
.btn-lg { padding: 17px 34px; font-size: 0.86rem; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  background: rgba(13,12,15,0.94);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.25s ease;
}
.site-header.is-scrolled { box-shadow: 0 10px 30px rgba(0,0,0,0.45); }
.site-header .container {
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  padding-top: 12px; padding-bottom: 12px;
}
.brand { display: flex; align-items: center; gap: 12px; }
.brand-mark { width: 46px; height: 46px; flex-shrink: 0; border-radius: 50%; }
.brand-block { display: flex; flex-direction: column; line-height: 1.25; }
.brand-text { font-family: var(--font-head); font-weight: 600; font-size: 1.02rem; letter-spacing: 0.14em; color: var(--white); }
.brand-tagline { font-size: 0.63rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); font-weight: 500; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 40px; height: 40px; background: transparent; border: 1px solid var(--line); border-radius: 6px; cursor: pointer;
}
.nav-toggle span { width: 18px; height: 2px; background: var(--gold); margin: 0 auto; transition: transform 0.2s ease, opacity 0.2s ease; }
.main-nav { display: flex; align-items: center; gap: 26px; }
.main-nav a:not(.btn) {
  font-family: var(--font-head); font-size: 0.82rem; font-weight: 500; letter-spacing: 0.02em;
  text-transform: uppercase; color: #C9C4B8; position: relative; padding: 6px 0; transition: color 0.15s ease;
}
.main-nav a:not(.btn):hover, .main-nav a:not(.btn).active { color: var(--white); }
.main-nav a:not(.btn).active::after {
  content: ""; position: absolute; left: 0; right: 0; bottom: -3px; height: 2px; background: var(--gold); border-radius: 2px;
}
.nav-cta.mobile { display: none; }

/* ---------- Language switcher ---------- */
.lang-switch { position: relative; }
.lang-toggle {
  display: flex; align-items: center; gap: 6px;
  background: transparent; border: 1px solid var(--line); border-radius: 999px;
  padding: 8px 12px; color: #C9C4B8; cursor: pointer; font-family: var(--font-head);
  font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; transition: border-color 0.15s ease, color 0.15s ease;
}
.lang-toggle:hover { border-color: var(--gold); color: var(--white); }
.lang-toggle svg { width: 15px; height: 15px; flex-shrink: 0; }
.lang-current-label { letter-spacing: 0.04em; }
.lang-menu {
  position: absolute; top: calc(100% + 10px); right: 0; min-width: 160px;
  background: var(--black-deep); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-md); padding: 6px; display: none; z-index: 50; max-height: 320px; overflow-y: auto;
}
.lang-menu.open { display: block; }
.lang-menu button {
  width: 100%; text-align: left; background: none; border: none; border-radius: 6px;
  padding: 9px 12px; font-family: var(--font-body); font-size: 0.88rem; color: #C9C4B8; cursor: pointer;
}
.lang-menu button:hover { background: var(--black-soft); color: var(--white); }
.lang-menu button.active { background: rgba(191,167,111,0.14); color: var(--gold); font-weight: 600; }
@media (max-width: 980px) {
  .lang-switch { margin: 6px 24px; }
  .lang-toggle { width: 100%; justify-content: center; padding: 12px; }
  .lang-menu { position: static; width: 100%; margin-top: 8px; max-height: none; display: none; box-shadow: none; }
  .lang-menu.open { display: block; }
}

/* ---------- RTL (Arabic) ---------- */
html.rtl body { font-family: "Noto Sans Arabic", var(--font-body); }
html.rtl h1, html.rtl h2, html.rtl h3, html.rtl h4,
html.rtl .brand-text, html.rtl .eyebrow, html.rtl .btn, html.rtl .main-nav a,
html.rtl .statement, html.rtl .tag-box, html.rtl .industry-chip, html.rtl .edge-label,
html.rtl .step-num, html.rtl .offer-num, html.rtl .faq-q, html.rtl .card-link,
html.rtl .fee-pill, html.rtl .lang-toggle, html.rtl .lang-menu button { font-family: "Noto Sans Arabic", var(--font-head); }
[dir="rtl"] .skip-link { left: auto; right: 12px; }
[dir="rtl"] .back-to-top { right: auto; left: 22px; }
[dir="rtl"] .lang-menu { right: auto; left: 0; text-align: right; }
[dir="rtl"] .lang-menu button { text-align: right; }
[dir="rtl"] .offer-card.highlight::before { left: auto; right: 28px; }
[dir="rtl"] .breadcrumb { direction: rtl; }

@media (max-width: 980px) {
  .nav-toggle { display: flex; }
  .main-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    background: var(--black-deep); border-bottom: 1px solid var(--line);
    flex-direction: column; align-items: stretch; gap: 0;
    max-height: 0; overflow: hidden; transition: max-height 0.28s ease;
  }
  .main-nav.open { max-height: 520px; }
  .main-nav a:not(.btn) { padding: 16px 24px; border-bottom: 1px solid var(--line); }
  .main-nav a:not(.btn).active::after { display: none; }
  .main-nav a:not(.btn).active { background: var(--black-soft); }
  .nav-cta.desktop { display: none; }
  .nav-cta.mobile { display: flex; margin: 18px 24px 22px; }
}

/* ---------- Hero ---------- */
.hero {
  background:
    radial-gradient(900px 520px at 88% -8%, rgba(191,167,111,0.16), transparent 60%),
    linear-gradient(180deg, var(--black-deep), var(--black) 70%);
  color: var(--white);
  padding: 110px 0 76px;
  overflow: hidden;
  position: relative;
  border-bottom: 1px solid var(--line);
}
.hero .container { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 48px; align-items: center; }
.hero-copy .lede { color: #C9C4B8; max-width: 56ch; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }
.hero-visual { display: flex; align-items: center; justify-content: center; }
.crest-graphic { width: 100%; max-width: 340px; border-radius: 50%; box-shadow: 0 0 60px rgba(191,167,111,0.14); }
.crest-ring { animation: spin 50s linear infinite; transform-origin: 50% 50%; }
.crest-ring.reverse { animation-direction: reverse; animation-duration: 64s; }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.trust-strip { margin-top: 58px; padding-top: 36px; border-top: 1px solid var(--line); display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; }
.trust-item { display: flex; align-items: flex-start; gap: 12px; }
.trust-item .icon-badge { width: 34px; height: 34px; }
.trust-item strong { display: block; font-family: var(--font-head); font-size: 0.86rem; text-transform: uppercase; letter-spacing: 0.03em; color: var(--white); margin-bottom: 2px; }
.trust-item span { font-size: 0.8rem; color: #9B968A; }

@media (max-width: 980px) {
  .hero .container { grid-template-columns: 1fr; }
  .hero-visual { order: -1; max-width: 240px; margin: 0 auto; }
  .trust-strip { grid-template-columns: repeat(2, 1fr); }
}

/* ---------- Icon badges ---------- */
.icon-badge {
  width: 54px; height: 54px; border-radius: 10px;
  display: flex; align-items: center; justify-content: center;
  background: rgba(191,167,111,0.10); color: var(--gold-dark); flex-shrink: 0;
}
.icon-badge svg { width: 26px; height: 26px; }
section.dark .icon-badge, section.deep .icon-badge { background: rgba(191,167,111,0.14); color: var(--gold); }
.icon-badge.sm { width: 42px; height: 42px; border-radius: 8px; }
.icon-badge.sm svg { width: 20px; height: 20px; }

/* ---------- Pillars / services grid ---------- */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.service-card {
  background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius);
  padding: 34px 30px; transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex; flex-direction: column;
}
.service-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-gold); border-color: transparent; }
.service-card.featured {
  grid-column: span 3;
  background: linear-gradient(150deg, var(--black-deep), var(--black));
  color: #C9C4B8; border-color: transparent;
  display: grid; grid-template-columns: auto 1fr auto; gap: 28px; align-items: center; padding: 40px 38px;
}
.service-card.featured h3, .service-card.featured .card-link { color: var(--white); }
.service-card.featured .icon-badge { background: rgba(191,167,111,0.16); color: var(--gold); width: 64px; height: 64px; }
.service-card.featured .icon-badge svg { width: 32px; height: 32px; }
.service-card.featured p { color: #C9C4B8; margin-bottom: 0; }
.service-card h3 { margin-bottom: 0.5em; font-size: 1.1rem; }
.service-card p { color: var(--ink-soft); flex-grow: 1; text-transform: none; }
.card-link {
  margin-top: 14px; font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em;
  text-transform: uppercase; color: var(--black); display: inline-flex; align-items: center; gap: 6px; white-space: nowrap;
}
.card-link svg { width: 14px; height: 14px; transition: transform 0.15s ease; }
.service-card:hover .card-link svg { transform: translateX(3px); }

@media (max-width: 900px) {
  .services-grid { grid-template-columns: 1fr 1fr; }
  .service-card.featured { grid-column: span 2; grid-template-columns: auto 1fr; }
  .service-card.featured .card-link { grid-column: span 2; }
}
@media (max-width: 620px) {
  .services-grid { grid-template-columns: 1fr; }
  .service-card.featured { grid-column: span 1; grid-template-columns: 1fr; text-align: left; }
}

/* ---------- Tag lists (Problem/Solution/Outcome boxes) ---------- */
.tag-list { display: flex; flex-direction: column; gap: 14px; }
.tag-box {
  border: 1.5px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 20px; font-family: var(--font-head); font-size: 0.86rem; font-weight: 500;
  letter-spacing: 0.02em; text-transform: uppercase; color: var(--white);
}
section.white .tag-box, section.ivory .tag-box { border-color: var(--border-light); color: var(--black); background: var(--white); }
.tag-cols { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; }
.tag-col h4 {
  font-family: var(--font-display); font-weight: 400; font-size: 1.5rem; text-transform: uppercase;
  color: var(--white); margin-bottom: 0.7em;
}
section.white .tag-col h4, section.ivory .tag-col h4 { color: var(--black); }
@media (max-width: 900px) { .tag-cols { grid-template-columns: 1fr; gap: 28px; } }

/* ---------- Process / approach cards ---------- */
.approach-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 26px; }
.approach-card {
  border: 1.5px solid var(--line); border-radius: var(--radius); padding: 34px 30px;
  display: flex; flex-direction: column;
}
.approach-card .eyebrow { margin-bottom: 0.6em; }
.approach-card h3 { color: var(--white); font-size: 1.3rem; margin-bottom: 0.9em; }
.approach-card ul { flex-grow: 1; margin-bottom: 24px; }
.approach-card li { display: flex; gap: 10px; padding: 9px 0; font-size: 0.94rem; color: #C9C4B8; }
.approach-card svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 3px; }
.fee-pill {
  align-self: flex-start; font-family: var(--font-head); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.06em;
  text-transform: uppercase; background: var(--gold); color: var(--black-deep); padding: 10px 18px; border-radius: 999px;
}
@media (max-width: 780px) { .approach-grid { grid-template-columns: 1fr; } }

/* ---------- Offer tier cards (pricing-style) ---------- */
.offer-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: stretch; }
.offer-card {
  background: var(--white); border: 1.5px solid var(--border-light); border-radius: var(--radius);
  padding: 32px 28px; display: flex; flex-direction: column;
}
.offer-card .offer-num { font-family: var(--font-head); font-size: 0.76rem; font-weight: 600; letter-spacing: 0.14em; color: var(--gold-dark); margin-bottom: 0.8em; }
.offer-card h3 { font-size: 1.15rem; margin-bottom: 0.3em; }
.offer-card .offer-tagline { font-size: 0.9rem; color: var(--ink-soft); font-style: italic; margin-bottom: 1.4em; text-transform: none; }
.offer-card .offer-meta { display: flex; justify-content: space-between; font-family: var(--font-head); font-size: 0.72rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--ink-faint); margin-bottom: 1.2em; padding-bottom: 1.2em; border-bottom: 1px solid var(--border-light); }
.offer-card h4 { font-family: var(--font-head); font-size: 0.74rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--black); margin: 0 0 0.8em; }
.offer-card .offer-scope { margin-bottom: 1.4em; }
.offer-card .offer-scope li, .offer-card .offer-outcome li { display: flex; gap: 8px; font-size: 0.87rem; padding: 5px 0; color: var(--ink-soft); }
.offer-card .offer-scope svg, .offer-card .offer-outcome svg { width: 14px; height: 14px; color: var(--gold-dark); flex-shrink: 0; margin-top: 4px; }
.offer-card .offer-outcome { margin-bottom: 1.4em; flex-grow: 1; }
.offer-fee { margin-top: auto; padding-top: 18px; border-top: 1px solid var(--border-light); }
.offer-fee strong { display: block; font-family: var(--font-head); font-size: 0.94rem; color: var(--black); margin-bottom: 4px; }
.offer-fee span { font-size: 0.8rem; color: var(--ink-faint); }
.offer-card.highlight { border-color: var(--gold); box-shadow: var(--shadow-gold); position: relative; }
.offer-card.highlight::before {
  content: "MOST BOOKED"; position: absolute; top: -13px; left: 28px; background: var(--gold); color: var(--black-deep);
  font-family: var(--font-head); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.08em; padding: 5px 12px; border-radius: 999px;
}
@media (max-width: 900px) { .offer-grid { grid-template-columns: 1fr; } }

/* ---------- Split / two-column ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; }
@media (max-width: 900px) { .split { grid-template-columns: 1fr; gap: 36px; } }
.check-list li { display: flex; align-items: flex-start; gap: 10px; padding: 10px 0; border-bottom: 1px solid var(--border-light); font-weight: 500; text-transform: none; }
.check-list li:last-child { border-bottom: none; }
.check-list svg { width: 18px; height: 18px; color: var(--gold-dark); flex-shrink: 0; margin-top: 2px; }
section.dark .check-list li, section.deep .check-list li { border-color: var(--line); }
section.dark .check-list svg, section.deep .check-list svg { color: var(--gold); }

.panel-visual {
  border-radius: var(--radius); background: linear-gradient(150deg, var(--black-deep), var(--black));
  border: 1px solid var(--line); aspect-ratio: 4/3.2; position: relative; overflow: hidden;
  display: flex; align-items: center; justify-content: center;
}
.panel-visual svg, .panel-visual img { width: 58%; opacity: 0.95; border-radius: 50%; }

/* ---------- Edge / Why us grid ---------- */
.edge-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.edge-item { background: var(--black); padding: 28px 20px; text-align: center; }
.edge-item .edge-label { font-family: var(--font-head); font-size: 0.68rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.edge-item .edge-value { font-size: 0.84rem; color: #C9C4B8; line-height: 1.4; }
@media (max-width: 980px) { .edge-grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 560px) { .edge-grid { grid-template-columns: repeat(2, 1fr); } }

/* ---------- Industries / verticals band ---------- */
.industries-band { display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.industry-chip {
  font-family: var(--font-head); font-size: 0.8rem; font-weight: 500; letter-spacing: 0.03em; text-transform: uppercase;
  padding: 13px 24px; border-radius: 999px; border: 1.5px solid var(--border-light); color: var(--black); background: var(--white);
}
section.dark .industry-chip, section.deep .industry-chip { border-color: var(--line); color: var(--white); background: transparent; }

/* ---------- CTA banner ---------- */
.cta-banner {
  background: var(--gold); border-radius: 20px; padding: 58px 50px; color: var(--black-deep);
  display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap;
}
.cta-banner h2 { color: var(--black-deep); margin-bottom: 0.3em; }
.cta-banner p { color: rgba(13,12,15,0.78); margin-bottom: 0; max-width: 46ch; text-transform: none; }
.cta-banner .btn-outline-dark:hover { background: var(--black-deep); color: var(--white); border-color: var(--black-deep); }
@media (max-width: 720px) { .cta-banner { padding: 42px 30px; text-align: center; justify-content: center; } }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-deep); color: #9B968A; padding: 74px 0 28px; border-top: 1px solid var(--line); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.footer-brand .brand { margin-bottom: 16px; }
.footer-brand p { font-size: 0.9rem; max-width: 34ch; text-transform: none; }
.social-links { display: flex; gap: 10px; margin-top: 18px; }
.social-links a { width: 36px; height: 36px; border-radius: 50%; border: 1px solid var(--line); display: flex; align-items: center; justify-content: center; transition: background 0.15s ease, border-color 0.15s ease; }
.social-links a:hover { background: var(--gold); border-color: var(--gold); color: var(--black-deep); }
.social-links svg { width: 16px; height: 16px; }
.footer-col h4 { font-family: var(--font-head); font-size: 0.8rem; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1.2em; color: var(--white); }
.footer-col ul li { margin-bottom: 11px; }
.footer-col a { font-size: 0.9rem; transition: color 0.15s ease; text-transform: none; }
.footer-col a:hover { color: var(--gold); }
.footer-contact li { display: flex; gap: 10px; align-items: flex-start; font-size: 0.88rem; margin-bottom: 15px; text-transform: none; }
.footer-contact svg { width: 17px; height: 17px; color: var(--gold); flex-shrink: 0; margin-top: 2px; }
.footer-bottom { padding-top: 26px; display: flex; justify-content: space-between; flex-wrap: wrap; gap: 14px; font-size: 0.8rem; }
.legal-links { display: flex; gap: 20px; flex-wrap: wrap; }
.legal-links a:hover { color: var(--gold); }
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

/* Back to top */
.back-to-top {
  position: fixed; right: 22px; bottom: 22px; width: 46px; height: 46px; border-radius: 50%;
  background: var(--gold); color: var(--black-deep); border: none;
  display: flex; align-items: center; justify-content: center; cursor: pointer;
  opacity: 0; visibility: hidden; transform: translateY(10px); transition: all 0.25s ease;
  box-shadow: var(--shadow-md); z-index: 150;
}
.back-to-top.visible { opacity: 1; visibility: visible; transform: translateY(0); }
.back-to-top svg { width: 18px; height: 18px; }

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: radial-gradient(900px 500px at 85% -20%, rgba(191,167,111,0.16), transparent 60%), linear-gradient(180deg, var(--black-deep), var(--black) 75%);
  color: var(--white); padding: 100px 0 66px; border-bottom: 1px solid var(--line);
}
.page-hero .lede { color: #C9C4B8; max-width: 62ch; }
.breadcrumb { font-size: 0.8rem; color: #9B968A; margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.04em; font-family: var(--font-head); }
.breadcrumb a:hover { color: var(--gold); }

/* ---------- Service detail (about/services pages) ---------- */
.service-detail-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 52px; align-items: start; }
.included-box { background: var(--ivory); border-radius: var(--radius); padding: 30px 28px; }
.included-box h4 { font-family: var(--font-head); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.08em; margin-bottom: 1em; color: var(--black); }
@media (max-width: 900px) { .service-detail-grid { grid-template-columns: 1fr; gap: 28px; } }

.service-section-head { display: flex; align-items: center; gap: 20px; margin-bottom: 1.3em; }
.service-section-head .icon-badge { width: 60px; height: 60px; }
.service-section-head .icon-badge svg { width: 30px; height: 30px; }

/* ---------- Values grid (about) ---------- */
.values-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
.value-card { text-align: left; }
.value-card h3 { font-size: 0.98rem; margin: 0.9em 0 0.4em; }
.value-card p { font-size: 0.9rem; color: var(--ink-soft); margin-bottom: 0; text-transform: none; }
@media (max-width: 900px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .values-grid { grid-template-columns: 1fr; } }

/* ---------- FAQ accordion ---------- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border-light); }
section.dark .faq-item, section.deep .faq-item { border-color: var(--line); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 24px 4px;
  background: none; border: none; text-align: left; font-family: var(--font-head); font-size: 1rem; font-weight: 600;
  letter-spacing: 0.01em; text-transform: uppercase; color: var(--black); cursor: pointer;
}
section.dark .faq-q, section.deep .faq-q { color: var(--white); }
.faq-q svg { width: 18px; height: 18px; color: var(--gold-dark); flex-shrink: 0; transition: transform 0.22s ease; }
section.dark .faq-q svg, section.deep .faq-q svg { color: var(--gold); }
.faq-item[data-open="true"] .faq-q svg { transform: rotate(45deg); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.28s ease; }
.faq-a p { padding: 0 4px 24px; color: var(--ink-soft); margin: 0; max-width: 70ch; text-transform: none; }
section.dark .faq-a p, section.deep .faq-a p { color: #C9C4B8; }

/* ---------- Forms ---------- */
.contact-grid { display: grid; grid-template-columns: 1.3fr 0.9fr; gap: 48px; align-items: start; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } }
.form-card { background: var(--white); border: 1px solid var(--border-light); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.field { margin-bottom: 20px; }
.field label { display: block; font-family: var(--font-head); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.04em; text-transform: uppercase; color: var(--black); margin-bottom: 8px; }
.field .required { color: var(--gold-dark); }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 14px; border-radius: var(--radius-sm); border: 1.5px solid var(--border-light);
  font-family: var(--font-body); font-size: 0.95rem; color: var(--ink); background: var(--white); transition: border-color 0.15s ease;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold-dark); outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.field-error { color: #B4232C; font-size: 0.8rem; margin-top: 6px; display: none; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #B4232C; }
.field.has-error .field-error { display: block; }
.form-note { font-size: 0.8rem; color: var(--ink-faint); margin-top: 4px; text-transform: none; }
.form-success {
  display: none; background: rgba(191,167,111,0.12); border: 1.5px solid var(--gold-dark); border-radius: var(--radius-sm);
  padding: 18px 20px; margin-bottom: 22px; color: #6E5B2E; font-weight: 600; align-items: center; gap: 10px; text-transform: none;
}
.form-success.visible { display: flex; }
.form-success svg { width: 20px; height: 20px; flex-shrink: 0; }

.contact-info-card { background: linear-gradient(150deg, var(--black-deep), var(--black)); color: #C9C4B8; border-radius: var(--radius); padding: 38px 34px; }
.contact-info-card h3 { color: var(--white); }
.contact-info-list li { display: flex; gap: 14px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.contact-info-list li:last-child { border-bottom: none; }
.contact-info-list strong { display: block; color: var(--white); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 0.03em; font-family: var(--font-head); margin-bottom: 4px; }
.contact-info-list span, .contact-info-list a { font-size: 0.9rem; color: #C9C4B8; text-transform: none; }
.contact-info-list a:hover { color: var(--gold); }
.hours-note { margin-top: 22px; padding-top: 22px; border-top: 1px solid var(--line); font-size: 0.85rem; color: #9B968A; text-transform: none; }

/* ---------- Legal pages ---------- */
.legal-notice {
  background: #FBF6E9; border: 1.5px solid var(--gold); border-radius: var(--radius-sm); padding: 18px 22px;
  font-size: 0.9rem; color: #6E5B2E; margin-bottom: 40px; display: flex; gap: 12px; text-transform: none;
}
.legal-notice svg { width: 20px; height: 20px; flex-shrink: 0; color: var(--gold-dark); margin-top: 1px; }
.legal-body h2 { font-size: 1.2rem; margin-top: 1.7em; text-transform: uppercase; }
.legal-body h2:first-child { margin-top: 0; }
.legal-body p, .legal-body li { color: var(--ink-soft); text-transform: none; }
.legal-body ul { margin: 1em 0; padding-left: 0; }
.legal-body ul li { position: relative; padding-left: 22px; margin-bottom: 8px; }
.legal-body ul li::before { content: ""; position: absolute; left: 0; top: 10px; width: 6px; height: 6px; border-radius: 50%; background: var(--gold-dark); }
.legal-updated { font-size: 0.85rem; color: var(--ink-faint); margin-bottom: 2.5em; text-transform: none; }

/* ---------- Reveal animation ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.in-view { opacity: 1; transform: translateY(0); }
.reveal.delay-1.in-view { transition-delay: 0.08s; }
.reveal.delay-2.in-view { transition-delay: 0.16s; }
.reveal.delay-3.in-view { transition-delay: 0.24s; }

/* ---------- 404 ---------- */
.error-page { min-height: 60vh; display: flex; align-items: center; }
.error-code { font-family: var(--font-display); font-weight: 400; font-size: 6rem; color: var(--gold); line-height: 1; }
