/* Google Fonts loaded via <link> in index.html for better FCP */

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

:root {
  /* ── Pewter Silver ── */

  /* Backgrounds */
  --black:        #18191F;
  --surface:      #22232C;
  --surface2:     #2C2D38;
  --surface3:     #383944;

  /* Pewter scale */
  --ti-200:       #D8DCE6;
  --ti-300:       #C0C4D0;
  --ti-400:       #B4B9C8;
  --ti-500:       #8A8D9A;
  --ti-600:       #6B6E7A;
  --ti-700:       #4A4C56;
  --ti-800:       #2E2E3A;
  --ti-900:       #18181E;

  /* Accent — pewter silver */
  --gold:         #B4B9C8;
  --gold-light:   #D8DCE6;
  --gold-dark:    #8A8D9A;
  --gold-dim:     rgba(180, 185, 200, 0.10);

  /* Text */
  --white:        #D8DCE6;
  --white-pure:   #FFFFFF;
  --muted:        rgba(180, 185, 200, 0.65);

  /* Borders */
  --border-dim:   rgba(180, 185, 200, 0.08);
  --border:       rgba(180, 185, 200, 0.16);

  /* Fonts */
  --font-serif:   'Cormorant Garamond', serif;
  --font-sans:    'Jost', sans-serif;
}

html {
  scroll-behavior: smooth;
}

html, body {
  width: 100%;
  min-height: 100%;
  font-family: var(--font-sans);
  background: var(--black);
  color: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* ── Skeleton loading shimmer ──
   Shared, reusable placeholder-loading treatment — apply `.skel-shimmer`
   to any element that stands in for real content while it's still
   loading (a gallery tile, a hero image, an admin table row, etc.).
   Sweeps a lighter band across the element on a loop using the site's
   own surface tones (no new colors), so it reads as part of this theme
   rather than a generic gray placeholder. Pair with `.skel-shimmer--text`
   for a rounded text-line placeholder (fixed height, rounded corners)
   instead of a full-bleed block. */
.skel-shimmer {
  position: relative;
  overflow: hidden;
  background: linear-gradient(90deg, var(--surface) 0%, var(--surface2) 40%, var(--surface3) 50%, var(--surface2) 60%, var(--surface) 100%);
  background-size: 250% 100%;
  animation: skel-sweep 1.6s ease-in-out infinite;
}
.skel-shimmer--text {
  display: block;
  height: 12px;
  border-radius: 4px;
}
@keyframes skel-sweep {
  0%   { background-position: 200% 0; }
  100% { background-position: -100% 0; }
}
@media (prefers-reduced-motion: reduce) {
  .skel-shimmer {
    animation: none;
    background-position: 50% 0;
  }
}

/* Horizontal-scroll clipping must NOT live on html, body, or #root —
   any non-visible overflow on ANY ancestor of a position:sticky element
   (even just one axis, e.g. overflow-x:hidden alone) breaks that
   sticky element for its entire subtree. Verified live by testing a
   bare sticky div at each layer: it broke the instant #root got
   overflow-x:hidden, same as it broke on html/body earlier, and
   worked again once removed. #root is an ancestor of every page
   including ServiceDetail's sticky sidebar, so it must stay
   overflow:visible. If a page needs horizontal-scroll clipping for
   decorative elements, apply overflow-x:hidden to that page's own
   top-level wrapper class instead (e.g. .home-page), never to html,
   body, or #root, and never to .sd-page or any of its ancestors. */
#root {
  width: 100%;
  min-height: 100vh;
  border: none;
  outline: none;
}
/* ══════════════════════════════════════
   FLOATING CTA — global "contact us" button
   Rendered once at the app root (App.jsx), fixed bottom-right on every
   public page. Palette matches the site's own pewter/gold theme (see
   index.css :root) rather than a generic green chat-bubble style.
══════════════════════════════════════ */

.fcta-wrap {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 400;
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 14px;
}

@media (max-width: 640px) {
  .fcta-wrap {
    right: 16px;
    bottom: 16px;
  }
}

/* ── Toggle button ── */
.fcta-toggle {
  position: relative;
  width: 58px;
  height: 58px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: linear-gradient(145deg, var(--surface2), var(--surface));
  color: var(--gold-light);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  box-shadow: 0 10px 30px rgba(0,0,0,0.45), 0 0 0 1px rgba(180,185,200,0.06);
  transition: box-shadow 0.35s ease, background 0.35s ease;
  animation:
    fcta-pop-in 0.6s cubic-bezier(.2,.8,.2,1) both,
    fcta-breathe 3.2s ease-in-out 0.6s infinite;
}
.fcta-toggle:hover {
  transform: translateY(-3px) scale(1.1) rotate(-4deg);
  box-shadow: 0 16px 40px rgba(0,0,0,0.55), 0 0 0 1px rgba(180,185,200,0.12);
  background: linear-gradient(145deg, var(--surface3), var(--surface2));
  animation-play-state: paused;
}
.fcta-wrap--open .fcta-toggle {
  transform: rotate(90deg);
  animation-play-state: paused;
}
.fcta-wrap--open .fcta-toggle:hover {
  transform: rotate(90deg) scale(1.05);
}

/* Pops in on first mount instead of just appearing. */
@keyframes fcta-pop-in {
  0%   { opacity: 0; transform: scale(0.3) rotate(-30deg); }
  60%  { opacity: 1; transform: scale(1.12) rotate(6deg); }
  100% { opacity: 1; transform: scale(1) rotate(0deg); }
}

/* Idle "breathing" loop so the button stays visibly alive even when the
   visitor isn't interacting with it — subtle enough to match the site's
   restrained motion language, distinct from the hover/open transforms
   above (paused whenever those take over). */
@keyframes fcta-breathe {
  0%, 100% { transform: translateY(0) scale(1); }
  50%      { transform: translateY(-4px) scale(1.06); }
}

.fcta-toggle-icon {
  width: 24px;
  height: 24px;
  display: flex;
  transition: transform 0.3s ease;
}
.fcta-toggle-icon svg { width: 100%; height: 100%; }
.fcta-toggle:hover .fcta-toggle-icon {
  transform: scale(1.1);
}

/* Soft pulsing ring behind the toggle — draws the eye without being a
   loud/animated color, keeping it in step with the rest of the site's
   restrained motion language. Two rings, offset in time, for a fuller
   "radar" effect than a single ring pulsing alone. */
.fcta-toggle::before,
.fcta-toggle::after {
  content: '';
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 1px solid var(--gold-dim);
  animation: fcta-pulse 2.6s ease-out infinite;
  pointer-events: none;
}
.fcta-toggle::after {
  animation-delay: 1.3s;
}
@keyframes fcta-pulse {
  0%   { transform: scale(0.9); opacity: 0.8; }
  70%  { transform: scale(1.45); opacity: 0; }
  100% { opacity: 0; }
}

/* ── Expanding menu ── */
.fcta-menu {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 10px;
}

.fcta-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 10px 16px 10px 12px;
  border-radius: 999px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 12px 30px rgba(0,0,0,0.5);
  color: var(--white);
  text-decoration: none;
  font-family: var(--font-sans);
  font-size: 0.86rem;
  letter-spacing: 0.01em;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(10px) scale(0.92);
  animation: fcta-item-in 0.4s cubic-bezier(.2,.8,.2,1) forwards;
  transition: background 0.25s ease, transform 0.25s ease, border-color 0.25s ease;
}
.fcta-item:hover {
  transform: translateY(-2px) scale(1.03);
  border-color: rgba(180,185,200,0.3);
  background: rgba(20, 20, 24, 0.97);
}
@keyframes fcta-item-in {
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.fcta-item-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: flex;
}
.fcta-item-icon svg { width: 100%; height: 100%; }

.fcta-item--tg   .fcta-item-icon { color: #4FA8E0; }
.fcta-item--call .fcta-item-icon { color: var(--gold-light); }
.fcta-item--wa   .fcta-item-icon { color: #3FC161; }
.fcta-item--ig   .fcta-item-icon { color: var(--gold-light); }

/* Icon-only variant (currently just the call button — no visible phone
   number label) — collapses the pill down to a plain circle matching
   the toggle button's size language instead of a pill with dead space. */
.fcta-item--icon-only {
  width: 46px;
  height: 46px;
  padding: 0;
  border-radius: 50%;
  justify-content: center;
}
.fcta-item--icon-only .fcta-item-icon {
  width: 20px;
  height: 20px;
}
.preloader {
  position: fixed;
  inset: 0;
  z-index: 9000;
  background: var(--black);
  display: flex;
  align-items: center;
  justify-content: center;
  will-change: transform;
}

.preloader-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
}

.preloader-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  will-change: opacity, transform;
}

.preloader-logo-script {
  font-family: var(--font-serif);
  font-size: 52px;
  font-style: italic;
  font-weight: 300;
  color: var(--gold);
  line-height: 1;
  letter-spacing: -1px;
}

.preloader-logo-block {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.preloader-logo-block span:first-child {
  font-family: var(--font-sans);
  font-size: 22px;
  font-weight: 600;
  letter-spacing: 6px;
  text-transform: uppercase;
  color: var(--white);
}

.preloader-logo-city {
  font-family: var(--font-sans);
  font-size: 11px !important;
  font-weight: 300 !important;
  letter-spacing: 8px !important;
  text-transform: uppercase;
  color: var(--gold) !important;
}

.preloader-line {
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  transform-origin: left;
  will-change: transform;
}
.navbar {
  background: transparent;  /* transparent over hero */
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  position: fixed;          /* float over hero */
  top: 0;
  left: 0;
  right: 0;
  z-index: 200;
  transition: background 0.4s, box-shadow 0.4s, padding 0.4s;
}

.navbar--scrolled {
  background: rgba(10, 10, 10, 0.96);
  box-shadow: 0 2px 30px rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(12px);
  padding: 12px 40px;  /* tighten on scroll */
}

/* ── Logo ── */
.navbar-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  flex-shrink: 0;
}

.navbar-logo-icon {
  width: 52px;
  height: 52px;
  flex-shrink: 0;
}

.navbar-logo-icon svg {
  width: 100%;
  height: 100%;
}

.navbar-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.15;
}

.navbar-logo-top {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--muted);
}

.navbar-logo-main {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 700;
  color: var(--white);
  letter-spacing: 0.5px;
}

.navbar-logo-sub {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
}

/* ── Nav links ── */
.navbar-links {
  display: flex;
  align-items: center;
  gap: 4px;
  list-style: none;
}

.navbar-link {
  display: block;
  position: relative;
  text-decoration: none;
  font-size: 13px;
  font-weight: 500;
  color: var(--white);
  padding: 8px 16px;
  border-radius: 4px;
  transition: color 0.25s;
  white-space: nowrap;
  overflow: hidden;
}

.navbar-link:hover {
  color: var(--gold);
}

.navbar-link-underline {
  position: absolute;
  bottom: 4px;
  left: 16px;
  right: 16px;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}

.navbar-link:hover .navbar-link-underline {
  transform: scaleX(1);
}

/* ── CTA buttons ── */
.navbar-actions {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.btn-outline {
  padding: 10px 20px;
  border: 2px solid var(--white);
  border-radius: 50px;
  color: var(--white);
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}

.btn-outline:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(245, 197, 24, 0.06);
}

.btn-fill {
  padding: 10px 22px;
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  color: var(--black);
  font-size: 13px;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 0.25s, border-color 0.25s, transform 0.2s;
}

.btn-fill:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  transform: translateY(-1px);
}

/* ── Hamburger ──
   Gets its own translucent dark chip (like .lang-switcher's pill) so
   the bars stay visible no matter what's behind the transparent navbar —
   previously it was just bare #888 lines directly over the hero photo,
   which vanished against lighter parts of the image (this is what was
   reported as "hamburger not visible" on tablet/phone). Also nudged in
   from the edge a bit via margin-right. */
.navbar-hamburger {
  display: none;
  flex-direction: column;
  justify-content: space-between;
  width: 40px;
  height: 40px;
  margin-right: 4px;
  background: rgba(10, 10, 10, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  /* Padding shrinks the flex content box to 18x18 (40 - 11*2), matching
     the original 18px-tall icon area so the .open transform values
     below (translateY(8px)/(-8px)) still line up correctly. */
  padding: 11px;
}

.navbar-hamburger span {
  display: block;
  width: 18px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all 0.3s;
}

.navbar-hamburger.open span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
.navbar-hamburger.open span:nth-child(2) { opacity: 0; }
.navbar-hamburger.open span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }

/* ── Mobile menu ── */
.navbar-mobile-menu {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  width: 100%;
  height: 100dvh;
  background: rgba(10, 10, 10, 0.98);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  flex-direction: column;
  padding: 72px 24px 40px;
  gap: 4px;
  overflow-y: auto;
  z-index: 9998;
}

/* Close button — top-right corner */
.navbar-mobile-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  flex-shrink: 0;
}

.navbar-mobile-close:hover {
  background: rgba(255, 255, 255, 0.13);
  color: var(--white);
}

.navbar-mobile-link {
  display: block;
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  transition: color 0.2s;
}

.navbar-mobile-link:hover { color: var(--gold); }

.navbar-mobile-cta {
  display: block;
  margin-top: 16px;
  text-align: center;
}

/* ── Dropdown ── */
.navbar-dropdown-wrap {
  position: relative;
}

.navbar-link--has-arrow {
  display: flex;
  align-items: center;
  gap: 4px;
}

.navbar-arrow {
  width: 12px;
  height: 12px;
  flex-shrink: 0;
  transition: transform 0.25s;
}

.navbar-arrow--up {
  transform: rotate(180deg);
}

/* ── Level 1: category list ── */
.navbar-dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 0;
  transform: translateX(-20%);
  min-width: 220px;
  background: rgba(10, 10, 10, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px;
  list-style: none !important;
  margin: 0;
  z-index: 300;
}

.navbar-dropdown li,
.navbar-dropdown ul {
  list-style: none !important;
  margin: 0;
  padding: 0;
}

/* ── Category row ── */
.navbar-dropdown-cat {
  position: relative;
}

.navbar-dropdown-cat-label {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.85);
  border-radius: 6px;
  cursor: default;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  user-select: none;
}

.navbar-dropdown-cat:hover > .navbar-dropdown-cat-label,
.navbar-dropdown-cat.active > .navbar-dropdown-cat-label {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
}

.navbar-cat-arrow {
  width: 11px;
  height: 11px;
  margin-left: auto;
  flex-shrink: 0;
  opacity: 0.5;
  transition: opacity 0.2s;
}

.navbar-dropdown-cat:hover .navbar-cat-arrow {
  opacity: 1;
}

.navbar-dropdown-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.navbar-dropdown-cat:hover .navbar-dropdown-dot {
  opacity: 1;
}

/* ── Level 2: sub-dropdown flyout ── */
.navbar-sub-dropdown {
  position: absolute;
  top: -6px;
  left: calc(100% + 4px);
  min-width: 240px;
  background: rgba(12, 12, 16, 0.98);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
  padding: 6px;
  z-index: 400;
}

.navbar-sub-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 9px 14px;
  font-size: 12.5px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  border-radius: 6px;
  white-space: nowrap;
  transition: background 0.2s, color 0.2s;
}

.navbar-sub-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
}

.navbar-sub-dot {
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.4;
  flex-shrink: 0;
  transition: opacity 0.2s;
}

.navbar-sub-item:hover .navbar-sub-dot {
  opacity: 1;
}

/* ── Flat dropdown (no category grouping, e.g. Bemorlarga) ── */
.navbar-dropdown--flat {
  min-width: 260px;
}

.navbar-flat-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 11px 14px;
  font-size: 13px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  border-radius: 6px;
  white-space: normal;
  line-height: 1.4;
  transition: background 0.2s, color 0.2s;
}

.navbar-flat-item:hover {
  background: rgba(255, 255, 255, 0.06);
  color: var(--gold);
}

.navbar-flat-item:hover .navbar-dropdown-dot {
  opacity: 1;
}

/* ── Mobile submenu ── */
.navbar-mobile-link--toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  padding: 12px 8px;
  font-size: 15px;
  font-weight: 500;
  color: var(--white);
  cursor: pointer;
  text-align: left;
}

.navbar-mobile-link--toggle:hover { color: var(--gold); }

.navbar-mobile-sub {
  overflow: hidden;
  padding-left: 12px;
}

.navbar-mobile-sub-link {
  display: block;
  padding: 10px 8px;
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  text-decoration: none;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: color 0.2s;
}

.navbar-mobile-sub-link:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1100px) {
  .navbar { padding: 16px 32px; }
  .navbar--scrolled { padding: 10px 32px; }
  .navbar-links { display: none; }
  .navbar-actions { display: none; }
  .navbar-hamburger { display: flex; }
  .navbar-mobile-menu { display: flex; }
}

@media (max-width: 700px) {
  .navbar { padding: 14px 20px; }
  .navbar--scrolled { padding: 10px 20px; }
  .navbar-actions { gap: 10px; }
}

/* ── Language switcher ── */
.lang-switcher {
  display: flex;
  align-items: center;
  gap: 2px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 50px;
  padding: 3px;
}

.lang-btn {
  background: none;
  border: none;
  padding: 5px 10px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.45);
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  line-height: 1;
}

.lang-btn:hover {
  color: rgba(255, 255, 255, 0.8);
}

.lang-btn--active {
  background: var(--gold);
  color: #14151c;
}

.lang-btn--active:hover {
  color: #14151c;
}

.lang-switcher--mobile {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.08);
}
/* NOTE: the global reset / :root variables / html,body,#root rules that
   used to live here were an exact duplicate of src/styles/index.css
   (down to a stale overflow-x:hidden on html,body that broke
   position:sticky site-wide since it's loaded on every page via the
   static Home.jsx import in App.jsx). Removed — index.css already
   provides all of this exactly once. Do not re-add global resets here;
   this file should only contain Home-page-specific component styles. */

/* NOTE: this used to hold a full stale duplicate of src/styles/Navbar.css
   (old 26x18 hamburger, gray #888 bars — no chip background). Since
   Home.jsx is statically imported in App.jsx, it loaded on every page
   and kept overriding real fixes made in Navbar.css (this is exactly
   why the hamburger-visibility fix didn't stick the first time).
   Removed — Navbar.css already provides all of this exactly once. */


.hero {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  background-color: var(--black);
}

/* ── Video Background — 9:16 reels centered, blurred fill on sides ── */

/* Blurred background fill (covers the sides) */
.hero-video-bg-blur {
  position: absolute;
  inset: 0;
  z-index: 0;
  overflow: hidden;
}
.hero-video-bg-blur video {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center center;
  filter: blur(28px) brightness(0.35) saturate(0.7);
  transform: scale(1.1);
}

/* Main 9:16 video — centered, natural aspect ratio */
.hero-video-bg {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  height: 100%;
  width: auto;
  aspect-ratio: 9 / 16;
  max-width: 56vh;   /* caps width so it never overflows on ultra-wide */
  object-fit: cover;
  object-position: center top;
  z-index: 1;
  will-change: transform;
}

/* Fallback if video doesn't load */
.hero-bg-fallback {
  position: absolute;
  inset: 0;
  background-image: url('/hero-bg.jpg');
  background-size: cover;
  background-position: center top;
}

.hero-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  z-index: 2;
  opacity: 0.6;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    90deg,
    rgba(0, 0, 0, 0.82) 0%,
    rgba(0, 0, 0, 0.45) 45%,
    rgba(0, 0, 0, 0.05) 100%
  );
  z-index: 2;
}

.hero-top-fade {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 120px;
  background: linear-gradient(to bottom, rgba(0,0,0,0.4), transparent);
  z-index: 3;
}

.hero-bottom-fade {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 160px;
  background: linear-gradient(to top, rgba(0,0,0,0.55), transparent);
  z-index: 3;
}

/* Shimmer placeholder covering the whole hero background (video + blur
   fill + canvas + overlay) until the main video actually has a frame
   ready (see Home.jsx's heroReady/onLoadedData) — sits above all of
   those layers but below .hero-content, so the text/buttons are never
   hidden behind it even on a slow connection. Fades out rather than
   disappearing instantly once the video is ready. .skel-shimmer itself
   (the sweep animation) is the shared global utility in index.css. */
.hero-skeleton {
  position: absolute;
  inset: 0;
  z-index: 4;
  opacity: 1;
  transition: opacity 0.6s ease;
}
.hero-skeleton--hidden {
  opacity: 0;
  pointer-events: none;
}

/* ── Content ── */
.hero-content {
  position: absolute;
  inset: 0;
  z-index: 10;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 0 20px;
  padding-top: 120px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
  opacity: 0;
  will-change: opacity, transform;
}

.hero-eyebrow-line {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
  flex-shrink: 0;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 110px);
  font-weight: 500;
  color: var(--white);
  line-height: 1.0;
  letter-spacing: 0px;
  margin-bottom: 0;
  text-shadow: 0 4px 40px rgba(0,0,0,0.6);
}

.hero-title-italic {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7.5vw, 110px);
  font-weight: 300;
  font-style: italic;
  color: var(--gold);
  line-height: 1.0;
  letter-spacing: 1px;
  margin-bottom: 28px;
  text-shadow: 0 4px 40px rgba(180,185,200,0.14);
  animation: breathe 5s ease-in-out infinite;
}

/* ── Breathe: variable font weight pulse ── */
@keyframes breathe {
  0%, 100% {
    font-variation-settings: 'wght' 300;
    text-shadow: 0 4px 40px rgba(180,185,200,0.10);
  }
  50% {
    font-variation-settings: 'wght' 600;
    text-shadow: 0 4px 60px rgba(180,185,200,0.26);
  }
}

.hero-title-highlight {
  color: var(--gold);
  font-style: italic;
}

.hero-sub {
  font-size: clamp(14px, 1.8vw, 19px);
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.5px;
  line-height: 1.7;
  margin-bottom: 48px;
  max-width: 560px;
  opacity: 0;
  will-change: opacity, transform;
}

/* ── Trust badges ── */
.hero-badges {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
  opacity: 0;
  will-change: opacity, transform;
}

.hero-badge {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
}

.hero-badge-sep {
  width: 1px;
  height: 14px;
  background: rgba(180,185,200,0.28);
}

/* ── Buttons ── */
.hero-buttons {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  flex-wrap: wrap;
  opacity: 0;
  will-change: opacity, transform;
}

.hero-btn-primary {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: var(--gold);
  border: 2px solid var(--gold);
  border-radius: 50px;
  color: var(--black);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-decoration: none;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(180,185,200,0.16);
}

.hero-btn-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 30%,
    rgba(255,255,255,0.45) 50%,
    transparent 70%
  );
  transform: translateX(-100%);
  transition: transform 0.55s ease;
}

.hero-btn-primary:hover .hero-btn-shine {
  transform: translateX(100%);
}

.hero-btn-primary > span:not(.hero-btn-shine):not(.hero-btn-icon) {
  position: relative;
  z-index: 1;
}

.hero-btn-icon {
  position: relative;
  z-index: 1;
}

.hero-btn-secondary {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 18px 40px;
  background: transparent;
  border: 2px solid rgba(255,255,255,0.6);
  border-radius: 50px;
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.5px;
  text-decoration: none;
  backdrop-filter: blur(4px);
  transition: border-color 0.3s, background 0.3s, transform 0.3s;
}

.hero-btn-secondary:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.08);
  transform: translateY(-3px);
}

/* ── Social sidebar ── */
.hero-socials {
  position: absolute;
  right: 28px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  gap: 14px;
  opacity: 0;
  animation: fadeIn 1s 1.2s forwards;
}

.hero-social-btn {
  width: 40px;
  height: 40px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 50%;
  background: rgba(0,0,0,0.3);
  backdrop-filter: blur(4px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
  color: rgba(255,255,255,0.7);
  transition: border-color 0.3s, background 0.3s, color 0.3s;
}

.hero-social-btn svg {
  width: 16px;
  height: 16px;
  fill: currentColor;
}

.hero-social-btn:hover {
  border-color: var(--gold);
  background: rgba(180,185,200,0.1);
  color: var(--gold);
}

/* ── Scroll indicator ── */
.hero-scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  opacity: 0;
  animation: fadeIn 1s 1.4s forwards;
}

.hero-scroll span {
  font-size: 9px;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
}

.hero-scroll-wheel {
  width: 22px;
  height: 36px;
  border: 1.5px solid rgba(255,255,255,0.25);
  border-radius: 12px;
  display: flex;
  justify-content: center;
  padding-top: 6px;
}

.hero-scroll-ball {
  width: 4px;
  height: 8px;
  background: var(--ti-400);
  border-radius: 2px;
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .hero-content {
    align-items: flex-start;
    padding: 100px 48px 80px;
    text-align: left;
    justify-content: center;
  }
  .hero-title,
  .hero-title-italic { font-size: clamp(38px, 6vw, 72px); }
  .hero-eyebrow { justify-content: flex-start; }
  .hero-buttons { justify-content: flex-start; }
  .hero-badges  { justify-content: flex-start; }
  .hero-bg { background-position: 70% top; }
}

@media (max-width: 768px) {
  .hero { min-height: 100svh; }
  .hero-content {
    padding: 90px 24px 100px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow { justify-content: center; font-size: 10px; letter-spacing: 4px; }
  .hero-title,
  .hero-title-italic { font-size: clamp(32px, 8vw, 56px); }
  .hero-sub { font-size: 14px; margin-bottom: 28px; max-width: 100%; }
  .hero-badges { justify-content: center; flex-wrap: wrap; gap: 8px; }
  .hero-badge { font-size: 9px; letter-spacing: 1.5px; }
  .hero-socials { right: 12px; gap: 8px; }
  .hero-social-btn { width: 34px; height: 34px; }
  .hero-buttons { flex-direction: column; align-items: center; gap: 12px; }
  .hero-btn-primary,
  .hero-btn-secondary { width: min(280px, 100%); justify-content: center; padding: 15px 20px; font-size: 13px; }
}

@media (max-width: 480px) {
  .hero { min-height: 100svh; }
  .hero-content {
    padding: 88px 20px 100px;
    justify-content: center;
    align-items: center;
    text-align: center;
  }
  .hero-eyebrow { font-size: 9px; letter-spacing: 3px; gap: 8px; margin-bottom: 14px; }
  .hero-eyebrow-line { width: 18px; }
  .hero-title,
  .hero-title-italic { font-size: clamp(28px, 7.5vw, 42px); }
  .hero-title-italic { margin-bottom: 14px; }
  .hero-sub { font-size: 13px; line-height: 1.6; margin-bottom: 24px; }
  .hero-badges { display: none; }
    .hero-socials { display: none; }
  .hero-scroll { bottom: 20px; }
  .hero-bg { background-position: center top; }
}


/* ══════════════════════════════════════
   DR PROFILE — after hero section
══════════════════════════════════════ */
.dr-profile {
  background-color: #161720;
  background-image:
    radial-gradient(60% 40% at 20% 0%,   rgba(180,185,200,0.07) 0%, transparent 60%),
    radial-gradient(40% 50% at 80% 100%, rgba(100,80,200,0.04)  0%, transparent 55%);
  padding: 100px 60px;
  overflow: hidden;
  position: relative;
}

.dr-profile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,185,200,0.25), transparent);
}

.dr-profile::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(180,185,200,0.15), transparent);
}

.dr-profile-inner {
  max-width: 1260px;
  margin: 0 auto;
}

/* ── Head ── */
.dr-profile-head {
  text-align: center;
  margin-bottom: 72px;
}

.dr-profile-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
}

.dr-profile-eyebrow span {
  display: inline-block;
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.45;
  flex-shrink: 0;
}

.dr-profile-name {
  font-family: var(--font-serif);
  font-size: clamp(44px, 6vw, 88px);
  font-weight: 300;
  color: var(--white);
  line-height: 1.0;
  margin: 0 0 14px;
  letter-spacing: -0.02em;
}

.dr-profile-specialty {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin: 0;
}

/* ── Two-column body ── */
.dr-profile-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  margin-bottom: 64px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}

.dr-profile-col-label {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.42);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.dr-profile-col-label::before {
  content: '';
  display: inline-block;
  width: 22px;
  height: 1px;
  background: var(--gold);
  opacity: 0.55;
  flex-shrink: 0;
}

.dr-profile-bio-text {
  font-size: clamp(15px, 1.3vw, 17px);
  font-weight: 300;
  color: rgba(255,255,255,0.62);
  line-height: 1.85;
  margin: 0 0 20px;
}

.dr-profile-quote {
  font-family: var(--font-serif);
  font-size: clamp(18px, 1.9vw, 24px);
  font-style: italic;
  font-weight: 400;
  color: rgba(255,255,255,0.78);
  line-height: 1.7;
  border-left: 2px solid var(--gold);
  padding-left: 26px;
  margin: 0 0 28px;
}

.dr-profile-mission-text {
  font-size: 13.5px;
  font-weight: 300;
  color: rgba(255,255,255,0.42);
  line-height: 1.78;
  margin: 0;
  padding: 16px 20px;
  background: rgba(255,255,255,0.03);
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.06);
}

.dr-profile-mission-text strong {
  font-weight: 600;
  color: var(--gold);
}

/* ── Why choose ── */
.dr-profile-reasons-heading {
  font-family: var(--font-serif);
  font-size: clamp(26px, 3vw, 42px);
  font-weight: 400;
  color: var(--white);
  text-align: center;
  margin: 0 0 40px;
  letter-spacing: -0.01em;
}

.dr-profile-reasons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
}

.dr-profile-reason {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 20px;
  background: rgba(255,255,255,0.025);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 8px;
  transition: background 0.25s, border-color 0.3s, transform 0.25s;
}

.dr-profile-reason:hover {
  background: rgba(180,185,200,0.05);
  border-color: rgba(180,185,200,0.18);
  transform: translateY(-2px);
}

.dr-profile-reason-icon {
  font-size: 18px;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 1px;
}

.dr-profile-reason-text {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

@media (max-width: 1024px) {
  .dr-profile { padding: 80px 40px; }
  .dr-profile-grid { gap: 48px; }
}

@media (max-width: 860px) {
  .dr-profile-grid {
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 48px;
    padding-bottom: 48px;
  }
  .dr-profile-reasons-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 600px) {
  .dr-profile { padding: 60px 24px; }
  .dr-profile-head { margin-bottom: 48px; }
  .dr-profile-reasons-grid { grid-template-columns: 1fr; }
}

.about {
  background-color: #18191f;
  background-image:
    radial-gradient(70% 60% at 100% 0%, rgba(180,185,200,0.05) 0%, transparent 60%),
    radial-gradient(50% 50% at 0% 100%, rgba(180,185,200,0.04) 0%, transparent 55%),
    radial-gradient(40% 40% at 60% 50%, rgba(120,100,200,0.03) 0%, transparent 50%);
  padding: 120px 60px;
  overflow: hidden;
  position: relative;
}
.about-inner {
  max-width: 1300px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: start;
}
.about-img-wrap {
  position: sticky;
  top: 100px;
  will-change: opacity, transform;
}
.about-img-placeholder {
  position: relative;
  width: 100%;
  padding-bottom: 140%;
  background: linear-gradient(160deg, #1e1f28 0%, #2a2b38 50%, #14151c 100%);
  overflow: hidden;
  border-radius: 2px;
}
.about-img-inner {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  overflow: hidden;
}

.about-img-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.about-img-overlay {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 45%;
  background: linear-gradient(to top, rgba(20,21,28,0.85), transparent);
  pointer-events: none;
}
.about-name-card {
  position: absolute;
  bottom: 24px;
  left: 24px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  z-index: 2;
}
.about-name-card-title {
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 400;
  color: var(--white);
}
.about-name-card-sub {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.45);
}
.about-right {
  will-change: opacity, transform;
  padding-top: 12px;
}
.about-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.about-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.about-title {
  font-family: var(--font-serif);
  font-size: clamp(40px,4.5vw,72px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin: 0;
}
.about-title-sub {
  font-family: var(--font-serif);
  font-size: clamp(18px,2vw,26px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.35);
  margin: 6px 0 36px;
}
.about-section-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.about-edu {
  position: relative;
  padding-left: 28px;
  border-left: 1px dashed rgba(180,185,200,0.14);
  margin-bottom: 8px;
}
.about-edu-item {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 16px;
  padding: 10px 0;
  position: relative;
  will-change: opacity, transform;
}
.about-edu-item::before {
  content: '';
  position: absolute;
  left: -32px;
  top: 18px;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 8px rgba(180,185,200,0.3);
}
.about-edu-year {
  font-family: var(--font-serif);
  font-size: 11px;
  font-style: italic;
  color: rgba(255,255,255,0.28);
  padding-top: 3px;
  white-space: nowrap;
}
.about-edu-body { display: flex; flex-direction: column; gap: 3px; }
.about-edu-degree { font-size: 14px; font-weight: 500; color: var(--white); line-height: 1.3; }
.about-edu-school { font-size: 12px; font-weight: 300; color: rgba(255,255,255,0.38); }
.about-stats {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 12px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  margin-top: 4px;
}
.about-stat {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 4px;
  padding: 20px 16px;
  will-change: opacity, transform;
  transition: background 0.35s, border-color 0.35s;
}
.about-stat:hover {
  background: rgba(180,185,200,0.04);
  border-color: rgba(180,185,200,0.3);
}
.about-stat-num {
  font-family: var(--font-serif);
  font-size: clamp(28px,2.5vw,42px);
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
  margin-bottom: 6px;
}
.about-stat-label {
  font-size: 9.5px;
  font-weight: 400;
  letter-spacing: 1px;
  color: rgba(255,255,255,0.32);
  line-height: 1.4;
  text-transform: uppercase;
}
.about-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 36px;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: var(--white);
  text-decoration: none;
  padding-bottom: 3px;
  border-bottom: 1px solid rgba(255,255,255,0.25);
  transition: color 0.3s, border-color 0.3s;
}
.about-cta:hover { color: var(--gold); border-color: var(--gold); }
@media (max-width: 1024px) {
  .about { padding: 80px 40px; }
  .about-inner { grid-template-columns: 1fr; gap: 60px; }
  .about-img-wrap { max-width: 480px; position: relative; top: auto; }
  .about-stats { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .about { padding: 60px 24px; }
  .about-stats { grid-template-columns: repeat(2,1fr); gap: 10px; }
  .about-stat { padding: 16px 12px; }
}
/* ── Congresses ── */
.about-congresses {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-congress-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 12px;
  align-items: start;
  padding: 10px 0;
  border-bottom: 1px solid rgba(180,185,200,0.07);
}
.about-congress-year {
  font-size: 0.68rem;
  letter-spacing: 0.12em;
  color: var(--gold);
  text-transform: uppercase;
  padding-top: 2px;
  line-height: 1.4;
}
.about-congress-title {
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.4;
}
.about-congress-sub {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 2px;
  letter-spacing: 0.04em;
}

/* ── Awards ── */
.about-awards {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.about-award-item {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 10px 14px;
  background: rgba(180,185,200,0.04);
  border: 1px solid rgba(180,185,200,0.08);
  border-radius: 6px;
  transition: background 0.2s, border-color 0.2s;
}
.about-award-item:hover {
  background: rgba(180,185,200,0.07);
  border-color: rgba(180,185,200,0.15);
}
.about-award-icon {
  font-size: 1.2rem;
  line-height: 1;
  flex-shrink: 0;
  padding-top: 1px;
}
.about-award-title {
  font-size: 0.85rem;
  font-weight: 500;
  color: var(--white);
  line-height: 1.45;
}
.about-award-year {
  font-size: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  margin-top: 3px;
}



.services {
  background-color: #20212a;
  background-image:
    radial-gradient(70% 50% at 50% 0%, rgba(180,185,200,0.06) 0%, transparent 65%),
    radial-gradient(50% 60% at 0% 80%, rgba(180,185,200,0.04) 0%, transparent 55%),
    radial-gradient(40% 40% at 100% 20%, rgba(180,130,255,0.04) 0%, transparent 50%);
  padding: 120px 60px 100px;
}

.services-inner {
  max-width: 1260px;
  margin: 0 auto;
}

/* ── Header ── */
.services-header {
  text-align: center;
  margin-bottom: 80px;
  position: relative;
}

.services-deco {
  position: absolute;
  top: -8px;
  right: calc(50% - 340px);
  width: 60px;
  height: 60px;
  color: var(--gold);
  opacity: 0.45;
  pointer-events: none;
}

.services-title {
  font-family: var(--font-serif);
  font-size: clamp(38px, 4vw, 68px);
  font-weight: 400;
  color: #fff;
  line-height: 1.05;
  margin: 0 0 16px;
}

.services-subtitle {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  letter-spacing: 0.5px;
  margin: 0;
}

.services-header::after {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
  margin: 20px auto 0;
}

/* ── Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px 32px;
}

/* ── Proc card ── */
.proc-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 8px;
  border-radius: 4px;
  transition: background 0.4s;
  cursor: default;
  will-change: opacity, transform;
}

.proc-card:hover {
  background: rgba(255, 255, 255, 0.03);
}

/* ── Circle — responsive 1:1 using padding-bottom trick ── */
.proc-circle-wrap {
  width: 100%;
  max-width: 220px;
  margin-bottom: 22px;
  position: relative;
  will-change: opacity, transform;
}

.proc-circle {
  width: 100%;
  padding-bottom: 100%;
  border-radius: 50%;
  position: relative;
  overflow: hidden;
  transition: transform 0.55s cubic-bezier(.22,1,.36,1);
}

.proc-card:hover .proc-circle {
  transform: scale(1.05);
}

.proc-circle-inner {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  transition: transform 0.65s cubic-bezier(.22,1,.36,1);
}

.proc-card:hover .proc-circle-inner {
  transform: scale(1.08);
}

/* ── Image variant ── */
.proc-circle-inner--img {
  overflow: hidden;
}

.proc-circle-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  transition: transform 0.65s cubic-bezier(.22,1,.36,1);
}

.proc-card:hover .proc-circle-photo {
  transform: scale(1.08);
}

.proc-circle-overlay {
  position: absolute;
  inset: 0;
  border-radius: 50%;
  opacity: 0.35;
  mix-blend-mode: multiply;
  transition: opacity 0.45s;
  pointer-events: none;
}

.proc-card:hover .proc-circle-overlay {
  opacity: 0.15;
}

.proc-circle-ring {
  position: absolute;
  inset: -2px;
  border-radius: 50%;
  border: 1px solid rgba(180, 185, 200, 0);
  pointer-events: none;
  transition: border-color 0.45s, box-shadow 0.45s;
}

.proc-card:hover .proc-circle-ring {
  border-color: rgba(180, 185, 200, 0.4);
  box-shadow: 0 0 24px rgba(180, 185, 200, 0.08);
}

/* ── Icon ── */
.proc-icon {
  width: 38px;
  height: 38px;
  color: rgba(180, 185, 200, 0.6);
  margin-bottom: 14px;
  transition: color 0.3s;
}

.proc-icon svg {
  width: 38px;
  height: 38px;
}

.proc-card:hover .proc-icon {
  color: var(--gold);
}

/* ── Text ── */
.proc-title {
  font-size: 16px;
  font-weight: 500;
  color: rgba(255, 255, 255, 0.92);
  letter-spacing: 0.1px;
  margin: 0 0 5px;
  transition: color 0.3s;
}

.proc-card:hover .proc-title {
  color: var(--gold);
}

.proc-sub {
  font-size: 9.5px;
  font-weight: 500;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.25);
  margin: 0 0 10px;
}

.proc-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.65;
  max-width: 190px;
  margin: 0;
}

/* ── More ── */
.services-more {
  margin-top: 40px;
  overflow: hidden;
}

.services-more::before {
  content: '';
  display: block;
  width: 100%;
  height: 1px;
  background: rgba(255, 255, 255, 0.05);
  margin-bottom: 40px;
}

.services-grid--more {
  margin-top: 0;
}

/* ── CTA ── */
.services-cta-wrap {
  text-align: center;
  margin-top: 60px;
}

.services-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: none;
  border: 1px solid rgba(180, 185, 200, 0.4);
  border-radius: 50px;
  padding: 16px 44px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255, 255, 255, 0.75);
  cursor: pointer;
  transition: background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
}

.services-cta-btn:hover {
  background: var(--gold);
  color: #0a0a0a;
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(180, 185, 200, 0.25);
}

.services-cta-arrow {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  transition: transform 0.35s cubic-bezier(.22,1,.36,1);
}

.services-cta-arrow--up {
  transform: rotate(180deg);
}

/* ── Responsive ── */
@media (max-width: 1100px) {
  .services { padding: 80px 40px; }
  .services-deco { right: calc(50% - 280px); }
}
@media (max-width: 860px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 48px 24px; }
  .proc-circle-wrap { max-width: 200px; }
  .services-deco { display: none; }
}
@media (max-width: 500px) {
  .services { padding: 60px 20px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); gap: 36px 16px; }
  .proc-circle-wrap { max-width: 150px; }
  .proc-desc { font-size: 12px; }
  .services-cta-btn { padding: 14px 32px; font-size: 12px; }
}
@media (max-width: 380px) {
  .services { padding: 60px 14px; }
  .services-grid { gap: 28px 10px; }
  .proc-circle-wrap { max-width: 130px; }
  .proc-title { font-size: 13px; }
}



/* ════ BEFORE & AFTER ════ */
/* Background matches the (now-hidden) .services section above — same
   color + gradients + molecule BgAnimation, so removing that section
   didn't leave a visual seam between Dr Profile and this one. */
.ba-section {
  background-color: #20212a;
  background-image:
    radial-gradient(70% 50% at 50% 0%, rgba(180,185,200,0.06) 0%, transparent 65%),
    radial-gradient(50% 60% at 0% 80%, rgba(180,185,200,0.04) 0%, transparent 55%),
    radial-gradient(40% 40% at 100% 20%, rgba(180,130,255,0.04) 0%, transparent 50%);
  padding: 120px 60px 100px;
  position: relative;
  overflow: hidden;
}
.ba-inner {
  max-width: 1260px;
  margin: 0 auto;
}
/* Header */
.ba-header {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
  margin-bottom: 60px;
}
.ba-header-left { flex: 1; }
.ba-eyebrow {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 16px;
}
.ba-eyebrow-line {
  flex: 1;
  max-width: 40px;
  height: 1px;
  background: rgba(255,255,255,0.15);
  display: inline-block;
}
.ba-title {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 400;
  color: var(--white);
  line-height: 0.95;
  margin: 0;
  letter-spacing: -1px;
}
.ba-title-italic {
  font-family: var(--font-serif);
  font-size: clamp(52px, 7vw, 110px);
  font-weight: 300;
  font-style: italic;
  color: rgba(255,255,255,0.22);
  line-height: 0.95;
  margin: 0;
  letter-spacing: 1px;
}
.ba-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  position: relative;
  overflow: hidden;
  padding: 14px 36px;
  border: 1px solid rgba(180,185,200,0.3);
  border-radius: 50px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: color 0.35s, border-color 0.35s, background 0.35s;
  white-space: nowrap;
  flex-shrink: 0;
}
.ba-cta:hover {
  color: #14151c;
  border-color: var(--gold);
  background: var(--gold);
}
.ba-cta-shine {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, transparent 40%, rgba(255,255,255,0.15) 50%, transparent 60%);
  transform: translateX(-100%);
  transition: transform 0.6s;
}
.ba-cta:hover .ba-cta-shine { transform: translateX(100%); }
/* Controls */
.ba-controls {
  display: flex;
  justify-content: center;
  margin-top: 48px;
  flex-wrap: wrap;
}
/* Grid */
.ba-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
/* Card */
.ba-card {
  position: relative;
  overflow: hidden;
  border-radius: 3px;
  cursor: pointer;
  will-change: opacity, transform;
}
.ba-card-image {
  position: relative;
  width: 100%;
  padding-bottom: 125%;
  background: linear-gradient(160deg,#1e1f28 0%,#2a2b38 100%);
  overflow: hidden;
}
.ba-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.22,1,.36,1);
}
.ba-card:hover .ba-img { transform: scale(1.06); }
.ba-img-label {
  position: absolute;
  bottom: 12px;
  left: 50%;
  transform: translateX(-50%);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  white-space: nowrap;
  background: rgba(0,0,0,0.4);
  padding: 4px 12px;
  border-radius: 50px;
  backdrop-filter: blur(6px);
}
.ba-card-title {
  padding: 14px 4px 4px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(255,255,255,0.7);
  text-align: center;
  letter-spacing: 0.2px;
}
/* Responsive */
@media (max-width: 1024px) {
  .ba-section { padding: 80px 40px; }
  .ba-header { flex-direction: column; align-items: flex-start; gap: 24px; }
  .ba-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 600px) {
  .ba-section { padding: 60px 20px; }
  .ba-grid { grid-template-columns: 1fr; }
}


/* === Reviews.css === */
/* ════ REVIEWS SECTION (Home) ════ */
.reviews-section {
  background-color: #18191f;
  background-image:
    radial-gradient(65% 55% at 50% 0%, rgba(180,185,200,0.06) 0%, transparent 65%),
    radial-gradient(45% 45% at 0% 100%, rgba(180,185,200,0.04) 0%, transparent 55%);
  padding: 120px 60px 100px;
  position: relative;
  overflow: hidden;
}
.reviews-inner { max-width: 1260px; margin: 0 auto; }

/* Header */
.reviews-header { text-align: center; margin-bottom: 64px; }
.reviews-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
}
.reviews-eyebrow::before,
.reviews-eyebrow::after {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold);
  opacity: 0.5;
}
.reviews-title {
  font-family: var(--font-serif);
  font-size: clamp(36px,4vw,64px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin: 0;
}
.reviews-title-italic {
  font-family: var(--font-serif);
  font-size: clamp(18px,2.2vw,30px);
  font-weight: 400;
  font-style: italic;
  color: rgba(255,255,255,0.32);
  margin: 4px 0 0;
}

/* Grid */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}

/* Card */
.review-card {
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: 6px;
  padding: 28px 26px 24px;
  position: relative;
  overflow: hidden;
  transition: background 0.35s, border-color 0.35s, transform 0.35s;
  will-change: transform;
}
.review-card:hover {
  background: rgba(180,185,200,0.05);
  border-color: rgba(180,185,200,0.2);
  transform: translateY(-4px);
}
.review-card-deco {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity 0.35s;
}
.review-card:hover .review-card-deco { opacity: 0.5; }

/* Top row */
.review-card-top {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 14px;
}
.review-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--ti-700), var(--ti-600));
  border: 1px solid rgba(180,185,200,0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.review-avatar-initials {
  font-size: 13px;
  font-weight: 600;
  color: var(--gold);
  letter-spacing: 0.5px;
}
.review-meta { flex: 1; }
.review-name {
  font-size: 14px;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 2px;
}
.review-proc {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.review-date {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  white-space: nowrap;
}

/* Stars */
.review-stars {
  display: flex;
  gap: 2px;
  margin-bottom: 14px;
}
.review-star { color: var(--gold); }

/* Text */
.review-text {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.55);
  line-height: 1.7;
  margin: 0;
}

/* CTA */
.reviews-cta-wrap { text-align: center; margin-top: 52px; }
.reviews-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 44px;
  border: 1px solid rgba(180,185,200,0.35);
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: background 0.35s, color 0.35s, border-color 0.35s, box-shadow 0.35s;
}
.reviews-cta-btn:hover {
  background: var(--gold);
  color: #14151c;
  border-color: var(--gold);
  box-shadow: 0 8px 40px rgba(180,185,200,0.2);
}

/* ════ REVIEWS PAGE ════ */
.reviews-page {
  min-height: 100vh;
  background: #18191f;
}

/* Page hero */
.reviews-page-hero {
  background-color: #20212a;
  background-image: radial-gradient(60% 80% at 50% 0%, rgba(180,185,200,0.07) 0%, transparent 65%);
  padding: 140px 60px 80px;
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.reviews-page-hero-inner { max-width: 860px; margin: 0 auto; }
.reviews-page-back {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(255,255,255,0.4);
  text-decoration: none;
  margin-bottom: 32px;
  transition: color 0.25s;
}
.reviews-page-back:hover { color: var(--gold); }
.reviews-page-title {
  font-family: var(--font-serif);
  font-size: clamp(42px,5vw,80px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.0;
  margin: 0 0 16px;
}
.reviews-page-subtitle {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin: 0 0 40px;
}
.reviews-page-stats {
  display: flex;
  align-items: center;
  gap: 32px;
}
.reviews-page-stat { display: flex; flex-direction: column; gap: 4px; }
.reviews-page-stat-num {
  font-family: var(--font-serif);
  font-size: 32px;
  font-weight: 400;
  color: var(--gold);
  line-height: 1;
}
.reviews-page-stat-label {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.reviews-page-stat-div {
  width: 1px;
  height: 40px;
  background: rgba(255,255,255,0.1);
}

/* Page grid */
.reviews-page-grid-wrap { padding: 80px 60px; max-width: 1320px; margin: 0 auto; }
.reviews-page-grid {
  display: grid;
  grid-template-columns: repeat(3,1fr);
  gap: 20px;
}
.review-card--page { padding: 32px 28px; }

/* Page footer */
.reviews-page-footer {
  text-align: center;
  padding: 0 60px 100px;
}

/* Responsive */
@media (max-width: 1024px) {
  .reviews-section { padding: 80px 40px; }
  .reviews-grid { grid-template-columns: repeat(2,1fr); }
  .reviews-page-hero { padding: 120px 40px 60px; }
  .reviews-page-grid-wrap { padding: 60px 40px; }
  .reviews-page-grid { grid-template-columns: repeat(2,1fr); }
}
@media (max-width: 640px) {
  .reviews-section { padding: 60px 20px; }
  .reviews-grid { grid-template-columns: 1fr; }
  .reviews-page-hero { padding: 100px 20px 48px; }
  .reviews-page-stats { gap: 20px; }
  .reviews-page-grid-wrap { padding: 40px 20px; }
  .reviews-page-grid { grid-template-columns: 1fr; }
  .reviews-page-footer { padding: 0 20px 60px; }
}

/* ════ PAGINATION ════ */
.rp-pagination {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  margin-top: 52px;
}
.rp-page-btn {
  width: 40px;
  height: 40px;
  border-radius: 6px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  color: rgba(255,255,255,0.5);
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 500;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.rp-page-btn:hover:not(:disabled) {
  background: rgba(180,185,200,0.08);
  border-color: rgba(180,185,200,0.25);
  color: var(--white);
}
.rp-page-btn--active {
  background: var(--gold);
  border-color: var(--gold);
  color: #14151c;
}
.rp-page-btn--active:hover { background: var(--gold); color: #14151c; }
.rp-page-btn--arrow { color: rgba(255,255,255,0.35); }
.rp-page-btn:disabled { opacity: 0.3; cursor: not-allowed; }

/* ════ COMMENT FORM ════ */
.rp-comment-wrap {
  background: #20212a;
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
  padding: 80px 60px;
}
.rp-comment-inner { max-width: 760px; margin: 0 auto; }
.rp-comment-header { margin-bottom: 40px; }
.rp-comment-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 4px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 10px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.rp-comment-eyebrow::before {
  content: '';
  width: 24px;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}
.rp-comment-title {
  font-family: var(--font-serif);
  font-size: clamp(28px,3vw,44px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 10px;
}
.rp-comment-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  margin: 0;
}
.rp-form { display: flex; flex-direction: column; gap: 18px; }
.rp-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.rp-field { display: flex; flex-direction: column; gap: 6px; }
.rp-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.rp-input {
  background: #22232c;
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 4px;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: #d8dce6;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
}
.rp-input::placeholder { color: rgba(255,255,255,0.18); }
.rp-input:focus { border-color: rgba(180,185,200,0.4); background: #252630; }
.rp-input--err { border-color: rgba(220,80,80,0.5) !important; }
.rp-select { cursor: pointer; }
.rp-select option { background: #22232c; color: #d8dce6; }
.rp-textarea { resize: vertical; min-height: 130px; line-height: 1.65; }
.rp-char-count { text-align: right; font-size: 11px; color: rgba(255,255,255,0.2); margin-top: 4px; }
.rp-char-low { color: rgba(220,80,80,0.6); }
.rp-err { font-size: 11px; color: rgba(220,80,80,0.8); margin-top: 2px; }
.rp-submit {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 40px;
  background: var(--gold);
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  color: #14151c;
  cursor: pointer;
  align-self: flex-start;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}
.rp-submit:hover {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 30px rgba(180,185,200,0.2);
}
.rp-privacy { font-size: 11px; color: rgba(255,255,255,0.2); margin: 0; }

/* Success state */
.rp-success {
  text-align: center;
  padding: 52px 40px;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(180,185,200,0.1);
  border-radius: 8px;
}
.rp-success-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(180,185,200,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  color: var(--gold);
}
.rp-success-title {
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 10px;
}
.rp-success-text {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
  max-width: 420px;
  margin: 0 auto 28px;
}
.rp-success-btn {
  background: none;
  border: 1px solid rgba(180,185,200,0.3);
  border-radius: 50px;
  padding: 11px 28px;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
  cursor: pointer;
  transition: border-color 0.25s, color 0.25s;
}
.rp-success-btn:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 640px) {
  .rp-comment-wrap { padding: 60px 20px; }
  .rp-form-row { grid-template-columns: 1fr; }
  .rp-submit { align-self: stretch; }
}


/* === Contact.css === */
.contact {
  background: #22232c;
  padding: 120px 60px 0;
  overflow: hidden;
  position: relative;
}

.contact::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background:
    radial-gradient(60% 50% at 0% 0%, rgba(180,185,200,0.05) 0%, transparent 60%),
    radial-gradient(50% 60% at 100% 100%, rgba(180,185,200,0.04) 0%, transparent 55%);
  pointer-events: none;
}

.contact-inner {
  max-width: 820px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding-bottom: 100px;
  position: relative;
  z-index: 1;
}

/* ── Left ── */
.contact-left {
  will-change: opacity, transform;
}

.contact-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 5px;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.contact-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}

.contact-title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 4vw, 66px);
  font-weight: 400;
  color: var(--white);
  line-height: 1.05;
  margin: 0 0 24px;
}

.contact-desc {
  font-size: 14px;
  font-weight: 300;
  color: rgba(255, 255, 255, 0.38);
  line-height: 1.75;
  max-width: 380px;
  margin: 0 0 48px;
}

/* Info blocks */
.contact-info {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact-info-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  will-change: opacity, transform;
}

.contact-info-icon {
  width: 40px;
  height: 40px;
  border: 1px solid rgba(180, 185, 200, 0.15);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--gold);
  transition: background 0.3s, border-color 0.3s;
}

.contact-info-item:hover .contact-info-icon {
  background: rgba(180, 185, 200, 0.06);
  border-color: rgba(180, 185, 200, 0.3);
}

.contact-info-icon svg {
  width: 18px;
  height: 18px;
}

.contact-info-body {
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.contact-info-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.28);
}

.contact-info-value {
  font-size: 14px;
  font-weight: 400;
  color: rgba(255, 255, 255, 0.8);
}

/* ── Right / Form ── */
.contact-right {
  will-change: opacity, transform;
  width: 100%;
}
.contact-right--full {
  width: 100%;
}
/* Centered heading above form */
.contact-form-header {
  text-align: center;
  margin-bottom: 48px;
}
.contact-form-header .contact-eyebrow {
  justify-content: center;
}
.contact-form-header .contact-eyebrow::before { display: none; }
.contact-form-header .contact-title,
.contact-form-header .contact-title-italic {
  text-align: center;
}

.contact-form {
  background: #2c2d38;
  border: 1px solid rgba(0, 0, 0, 0.07);
  border-radius: 4px;
  padding: 48px 44px 44px;
}

.contact-form-title {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 400;
  color: var(--white);
  margin: 0 0 32px;
}

.contact-fields {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 16px;
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.contact-field--full {
  grid-column: 1 / -1;
}

.contact-field label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.3);
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  background: #22232c;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 3px;
  padding: 13px 16px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 300;
  color: #d8dce6;
  outline: none;
  transition: border-color 0.25s, background 0.25s;
  appearance: none;
  -webkit-appearance: none;
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(255, 255, 255, 0.18);
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  border-color: rgba(180, 185, 200, 0.4);
  background: #252630;
}

.contact-field textarea {
  resize: vertical;
  min-height: 120px;
  line-height: 1.6;
}

.contact-field select {
  cursor: pointer;
  color: rgba(216, 220, 230, 0.6);
}

.contact-field select option {
  background: #22232c;
  color: #d8dce6;
}

.contact-submit {
  width: 100%;
  margin-top: 8px;
  padding: 16px 24px;
  background: var(--gold);
  border: none;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: #14151c;
  cursor: pointer;
  transition: background 0.3s, transform 0.2s, box-shadow 0.3s;
}

.contact-submit:hover:not(:disabled) {
  background: var(--gold-light);
  transform: translateY(-1px);
  box-shadow: 0 8px 40px rgba(180, 185, 200, 0.2);
}

.contact-submit:disabled {
  opacity: 0.6;
  cursor: default;
}

.contact-form-error {
  margin: -6px 0 0;
  font-size: 12.5px;
  color: #ff8080;
}

/* ── Map / bottom strip ── */
.contact-map {
  position: relative;
  overflow: hidden;
  height: 280px;
  background: #1c1d26;
  border-top: 1px solid rgba(255, 255, 255, 0.04);
}

.contact-map-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 23, 31, 0.45);
  z-index: 1;
  pointer-events: none;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: invert(90%) hue-rotate(180deg) saturate(0.6);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .contact { padding: 80px 40px 0; }
  .contact-inner { grid-template-columns: 1fr; gap: 60px; }
  .contact-desc { max-width: 100%; }
}

@media (max-width: 600px) {
  .contact { padding: 60px 20px 0; }
  .contact-form { padding: 32px 24px; }
  .contact-fields { grid-template-columns: 1fr; }
  .contact-field--full { grid-column: auto; }
}


/* === Footer.css === */
/* ════ FOOTER ════ */
.footer {
  background-color: #0e0f14;
  background-image: radial-gradient(60% 40% at 50% 0%, rgba(180,185,200,0.04) 0%, transparent 60%);
  border-top: 1px solid rgba(255,255,255,0.05);
}
.footer-inner {
  max-width: 1260px;
  margin: 0 auto;
  padding: 80px 60px 40px;
}

/* ── Top ── */
.footer-top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 60px;
  margin-bottom: 60px;
}

/* Brand */
.footer-brand {}
.footer-logo {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 20px;
}
.footer-logo-icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}
.footer-logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
}
.footer-logo-top {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.3);
}
.footer-logo-main {
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 500;
  color: var(--white);
  letter-spacing: 0.3px;
}
.footer-logo-sub {
  font-size: 9px;
  font-weight: 300;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--gold);
}
.footer-tagline {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.32);
  line-height: 1.7;
  margin: 0 0 24px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-social {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.03);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s, background 0.25s;
}
.footer-social svg { width: 15px; height: 15px; }
.footer-social:hover {
  border-color: rgba(180,185,200,0.3);
  color: var(--gold);
  background: rgba(180,185,200,0.06);
}

/* Columns */
.footer-col {}
.footer-col-title {
  display: block;
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: rgba(255,255,255,0.28);
  margin-bottom: 20px;
}
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.footer-links li {
  list-style: none;
}
.footer-links a,
.footer-links a:visited {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  text-decoration: none;
  transition: color 0.2s;
  line-height: 1.4;
}
.footer-links a:hover { color: var(--gold); }

/* Contact column */
.footer-links--contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: rgba(255,255,255,0.45);
}
.footer-links--contact svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  opacity: 0.6;
}
.footer-links--contact span {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.5;
}

/* ── Divider ── */
.footer-divider {
  height: 1px;
  background: rgba(255,255,255,0.05);
  margin-bottom: 28px;
}

/* ── Bottom ── */
.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.footer-copy {
  font-size: 11px;
  color: rgba(255,255,255,0.2);
  font-weight: 300;
}
.footer-bottom-links {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 11px;
  color: rgba(255,255,255,0.18);
}
.footer-bottom-links a {
  color: rgba(255,255,255,0.25);
  text-decoration: none;
  transition: color 0.2s;
}
.footer-bottom-links a:hover { color: var(--gold); }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .footer-inner { padding: 60px 40px 32px; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 600px) {
  .footer-inner { padding: 48px 20px 28px; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 10px; }
}
