/* =========================================================
   DOMA — Identity Stylesheet
   Primary  : Deep Navy  #0B1A3A
   Secondary: Slate Silver #8B95A5 / #C0C5CE
   BG       : White / Light Gray #F6F7FA
   ========================================================= */

:root {
  --navy-900: #0A1632;
  --navy-800: #0B1A3A;
  --navy-700: #122855;
  --navy-600: #1E3A6E;

  --silver-500: #8B95A5;
  --silver-400: #A8B0BD;
  --silver-300: #C0C5CE;
  --silver-200: #DDE1E8;

  --white: #FFFFFF;
  --gray-50: #F6F7FA;
  --gray-100: #EEF1F6;
  --gray-200: #E2E6ED;

  --text: #14213D;
  --text-soft: #4A5879;
  --muted: #7A8499;

  --max: 1200px;
  --radius: 14px;
  --radius-sm: 8px;
  --shadow-sm: 0 2px 8px rgba(11, 26, 58, 0.06);
  --shadow-md: 0 12px 30px rgba(11, 26, 58, 0.10);
  --shadow-lg: 0 24px 60px rgba(11, 26, 58, 0.16);

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, sans-serif;
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img, svg { display: block; max-width: 100%; }

a { color: inherit; text-decoration: none; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; color: var(--navy-800); margin: 0 0 .4em; line-height: 1.2; }
h2 { font-size: clamp(1.8rem, 3vw, 2.6rem); letter-spacing: -0.01em; }
h3 { font-family: 'Inter', sans-serif; font-weight: 700; font-size: 1.25rem; letter-spacing: -0.01em; }
h4 { font-family: 'Inter', sans-serif; font-weight: 600; font-size: 1rem; }

p { margin: 0 0 1em; color: var(--text-soft); }
strong { color: var(--navy-800); font-weight: 600; }

.eyebrow {
  font-size: .75rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--silver-300);
  margin-bottom: 14px;
}
.eyebrow.dark { color: var(--silver-500); }
.eyebrow.light { color: var(--silver-300); }

.section-head { text-align: center; max-width: 720px; margin: 0 auto 56px; }
.section-lead { color: var(--text-soft); font-size: 1.05rem; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 24px;
  border-radius: 999px;
  font-weight: 600;
  font-size: .95rem;
  letter-spacing: .01em;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all .35s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-800);
  color: var(--white);
}
.btn-primary:hover {
  background: var(--navy-700);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}
.btn-outline {
  border-color: var(--silver-300);
  color: var(--navy-800);
  background: transparent;
}
.btn-outline:hover {
  border-color: var(--navy-800);
  background: var(--navy-800);
  color: var(--white);
}
.btn-ghost {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,.35);
}
.btn-ghost:hover {
  background: rgba(255,255,255,.1);
  border-color: var(--white);
}
.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  padding: 18px 0;
  background: transparent;
  transition: background .4s var(--ease), box-shadow .4s var(--ease), padding .4s var(--ease);
}
.site-header.scrolled {
  background: var(--navy-800);
  box-shadow: var(--shadow-sm);
  padding: 12px 0;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.logo {
  display: flex;
  align-items: center;
  position: relative;
}
.logo-mark { height: 38px; width: auto; }

.logo-text {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 0.02em;
  fill: var(--white);
  transition: fill .4s var(--ease);
}
.site-header:not(.scrolled) .logo-text { fill: var(--white); }
.site-header.scrolled .logo-text { fill: var(--white); }

/* Shimmer effect on infinity */
.infinity-base { stroke: var(--silver-300); opacity: .55; }
.infinity-shimmer {
  stroke: url(#shimmerGrad);
  stroke-dasharray: 30 200;
  stroke-dashoffset: 230;
  animation: shimmerFlow 3.4s var(--ease) infinite;
}
@keyframes shimmerFlow {
  0% { stroke-dashoffset: 230; opacity: 0; }
  20% { opacity: 1; }
  80% { opacity: 1; }
  100% { stroke-dashoffset: -30; opacity: 0; }
}

.nav {
  display: flex;
  gap: 36px;
  align-items: center;
}
.nav a {
  color: var(--white);
  font-size: .92rem;
  font-weight: 500;
  position: relative;
  padding: 6px 0;
  transition: color .3s var(--ease);
}
.nav a::after {
  content: '';
  position: absolute;
  left: 0; right: 0; bottom: 0;
  height: 1px;
  background: var(--silver-300);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .35s var(--ease);
}
.nav a:hover::after { transform: scaleX(1); }

.site-header:not(.scrolled) .btn-outline {
  border-color: rgba(255,255,255,.6);
  color: var(--white);
}
.site-header:not(.scrolled) .btn-outline:hover {
  background: var(--white);
  color: var(--navy-800);
  border-color: var(--white);
}

/* ---------- Language Switcher ---------- */
.header-tools {
  display: flex;
  align-items: center;
  gap: 18px;
}
.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border: 1px solid rgba(255,255,255,.25);
  border-radius: 999px;
  background: rgba(255,255,255,.04);
  transition: border-color .35s var(--ease), background .35s var(--ease);
}
.site-header.scrolled .lang-switch {
  border-color: rgba(255,255,255,.22);
  background: rgba(255,255,255,.06);
}
.lang-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: transparent;
  border: 0;
  padding: 4px 10px;
  color: rgba(255,255,255,.6);
  font: inherit;
  font-size: .78rem;
  font-weight: 600;
  letter-spacing: .12em;
  cursor: pointer;
  border-radius: 999px;
  transition: color .3s var(--ease), background .3s var(--ease);
}
.lang-btn:hover { color: var(--white); }
.lang-btn.is-active {
  color: var(--navy-800);
  background: var(--white);
}

.lang-flag {
  width: 16px;
  height: 11px;
  border-radius: 2px;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(0,0,0,.25), inset 0 0 0 .5px rgba(255,255,255,.25);
  overflow: hidden;
  transition: transform .25s var(--ease), filter .25s var(--ease);
  filter: saturate(.92);
}
.lang-btn:hover .lang-flag {
  transform: scale(1.08);
  filter: saturate(1);
}
.lang-btn.is-active .lang-flag {
  filter: saturate(1);
  box-shadow: 0 1px 2px rgba(11,26,58,.18), inset 0 0 0 .5px rgba(11,26,58,.08);
}
.lang-divider {
  color: rgba(255,255,255,.3);
  font-size: .8rem;
  user-select: none;
}

.lang-switch--mobile {
  align-self: flex-start;
  margin: 6px 0;
  border-color: rgba(255,255,255,.18);
}

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: transparent;
  border: 0;
  width: 40px;
  height: 40px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav-toggle span {
  width: 22px; height: 2px;
  background: var(--white);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.nav-mobile {
  display: none;
  flex-direction: column;
  gap: 18px;
  padding: 28px 24px;
  background: var(--navy-900);
  border-top: 1px solid rgba(255,255,255,.08);
}
.nav-mobile a { color: var(--white); font-weight: 500; }
.nav-mobile.open { display: flex; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  color: var(--white);
  overflow: hidden;
  isolation: isolate;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    linear-gradient(135deg, rgba(10,22,50,.86) 0%, rgba(18,40,85,.78) 45%, rgba(11,26,58,.92) 100%),
    url('https://images.unsplash.com/photo-1497366216548-37526070297c?w=1920&q=80&auto=format&fit=crop'),
    linear-gradient(135deg, #0A1632 0%, #122855 40%, #0B1A3A 100%);
  background-size: cover, cover, cover;
  background-position: center, center, center;
  background-blend-mode: normal, luminosity, normal;
  z-index: -2;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse at center, black 30%, transparent 75%);
}
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(10,22,50,.0) 60%, rgba(10,22,50,.7) 100%);
  z-index: -1;
}

.hero-inner {
  padding: 160px 24px 120px;
  max-width: 880px;
  animation: fadeUp 1s var(--ease) both;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.4rem, 5.5vw, 4.2rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1.1;
  letter-spacing: -0.015em;
  margin: 0 0 24px;
}
.hero-title .accent {
  display: block;
  background: linear-gradient(90deg, var(--silver-300) 0%, #FFFFFF 50%, var(--silver-300) 100%);
  -webkit-background-clip: text;
          background-clip: text;
  -webkit-text-fill-color: transparent;
  font-style: italic;
}

.hero-sub {
  font-size: 1.15rem;
  color: rgba(255,255,255,.78);
  max-width: 620px;
  margin-bottom: 36px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  width: 22px;
  height: 38px;
  border: 1.5px solid rgba(255,255,255,.4);
  border-radius: 14px;
  display: flex;
  justify-content: center;
  padding-top: 8px;
}
.hero-scroll span {
  display: block;
  width: 2px;
  height: 7px;
  background: var(--silver-300);
  border-radius: 2px;
  animation: scrollBounce 1.8s ease-in-out infinite;
}
@keyframes scrollBounce {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50% { transform: translateY(8px); opacity: 0; }
}

/* ---------- Sections base ---------- */
.section {
  padding: 110px 0;
  position: relative;
}
.section-alt { background: var(--gray-50); }
.section-dark {
  background: var(--navy-800);
  color: var(--white);
}
.section-dark h2 { color: var(--white); }
.section-dark p { color: rgba(255,255,255,.78); }

/* ---------- Services Grid ---------- */
.grid-services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.service-card {
  position: relative;
  padding: 50px 42px 38px;
  border-radius: 22px;
  background: linear-gradient(155deg, rgba(255,255,255,.95), rgba(246,247,250,.75));
  border: 1px solid rgba(192, 197, 206, 0.55);
  box-shadow: 0 6px 18px rgba(11, 26, 58, .04);
  transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .55s var(--ease);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
}
.service-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 30% 0%, rgba(30,58,110,.45), transparent 55%),
    linear-gradient(160deg, var(--navy-700) 0%, var(--navy-900) 60%, #050D24 100%);
  z-index: -1;
  transform: translateY(102%);
  transition: transform .9s cubic-bezier(.83, 0, .17, 1);
  pointer-events: none;
}
.service-card:hover {
  transform: translateY(-10px);
  box-shadow: 0 32px 60px rgba(11, 26, 58, .28);
  border-color: transparent;
}
.service-card:hover::after { transform: translateY(0); }

.service-num {
  position: absolute;
  top: 26px;
  right: 32px;
  font-family: 'Playfair Display', serif;
  font-size: 5.6rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: .85;
  color: transparent;
  -webkit-text-stroke: 1px var(--silver-300);
  opacity: .55;
  transition: -webkit-text-stroke-color .55s var(--ease), opacity .55s var(--ease), transform .55s var(--ease);
  pointer-events: none;
  user-select: none;
}
.service-card:hover .service-num {
  -webkit-text-stroke-color: rgba(255,255,255,.55);
  opacity: .9;
  transform: scale(1.06) translate(-2px, 2px);
}

.service-icon {
  width: 66px;
  height: 66px;
  border-radius: 18px;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border: 1px solid var(--silver-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  margin-bottom: 28px;
  box-shadow: 0 10px 22px rgba(11, 26, 58, .07);
  transition: all .55s var(--ease);
  position: relative;
  z-index: 1;
}
.service-icon svg { width: 30px; height: 30px; transition: transform .45s var(--ease); }
.service-card:hover .service-icon {
  background: var(--white);
  border-color: var(--white);
  box-shadow: 0 18px 36px rgba(0, 0, 0, .35);
  transform: rotate(-3deg) scale(1.05);
}
.service-card:hover .service-icon svg { transform: rotate(3deg); }

.service-card h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.012em;
  color: var(--navy-800);
  margin: 0 0 14px;
  transition: color .55s var(--ease);
  position: relative;
  z-index: 1;
}
.service-card p {
  font-size: .98rem;
  line-height: 1.6;
  color: var(--text-soft);
  margin: 0 0 18px;
  transition: color .55s var(--ease);
  position: relative;
  z-index: 1;
}

.service-card .service-list { position: relative; z-index: 1; flex: 1; }

.service-card:hover h3 { color: var(--white); }
.service-card:hover p { color: rgba(255,255,255,.78); }
.service-card:hover .service-list li { color: rgba(255,255,255,.7); }
.service-card:hover .service-list li::before { background: var(--silver-300); }
.service-card:hover .li-main { color: var(--white); }
.service-card:hover .li-sub { color: rgba(255,255,255,.55); }

.service-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 26px;
  padding-top: 22px;
  border-top: 1px solid var(--gray-200);
  font-size: .76rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--navy-800);
  text-decoration: none;
  position: relative;
  z-index: 1;
  transition: color .55s var(--ease), border-top-color .55s var(--ease), gap .35s var(--ease);
  align-self: flex-start;
  width: 100%;
}
.service-cta::after {
  content: '→';
  display: inline-block;
  font-size: 1.05rem;
  font-weight: 400;
  margin-left: auto;
  transition: transform .35s var(--ease);
}
.service-card:hover .service-cta {
  color: var(--white);
  border-top-color: rgba(255,255,255,.18);
}
.service-card:hover .service-cta::after { transform: translateX(6px); }

@media (max-width: 540px) {
  .service-card { padding: 40px 28px 30px; }
  .service-num { font-size: 4.2rem; top: 20px; right: 24px; }
  .service-card h3 { font-size: 1.45rem; }
}

.service-list {
  list-style: none;
  padding: 0;
  margin: 18px 0 0;
  border-top: 1px solid var(--gray-200);
  padding-top: 16px;
}
.service-list li {
  position: relative;
  padding-left: 18px;
  font-size: .9rem;
  color: var(--text-soft);
  margin: 6px 0;
}
.service-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 10px;
  width: 8px; height: 1px;
  background: var(--silver-500);
}

.service-list--detailed li {
  margin: 12px 0;
}
.service-list--detailed li::before { top: 11px; }

.service-list--cols {
  column-count: 2;
  column-gap: 28px;
}
.service-list--cols li {
  break-inside: avoid;
  -webkit-column-break-inside: avoid;
  page-break-inside: avoid;
}
@media (max-width: 540px) {
  .service-list--cols { column-count: 1; }
}
.service-list .li-main {
  display: block;
  color: var(--text);
  font-weight: 500;
  font-size: .94rem;
  line-height: 1.35;
}
.service-list .li-sub {
  display: block;
  color: var(--muted);
  font-size: .8rem;
  font-style: italic;
  margin-top: 2px;
  line-height: 1.4;
}

/* ---------- Showcase (Sitz Luzern) ---------- */
.showcase {
  position: relative;
  isolation: isolate;
  padding: 130px 0;
  color: var(--white);
  overflow: hidden;
  text-align: center;
}
.showcase-bg {
  position: absolute; inset: 0;
  background-image:
    url('https://images.unsplash.com/photo-1527668752968-14dc70a27c95?w=1920&q=80&auto=format&fit=crop'),
    linear-gradient(135deg, #0A1632 0%, #122855 50%, #0B1A3A 100%);
  background-size: cover;
  background-position: center 35%;
  z-index: -2;
  transform: scale(1.05);
  transition: transform 1.4s var(--ease);
}
.showcase:hover .showcase-bg { transform: scale(1.08); }
.showcase-overlay {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,22,50,.65) 0%, rgba(11,26,58,.85) 100%),
    radial-gradient(ellipse at center, rgba(18,40,85,.35), transparent 65%);
  z-index: -1;
}
.showcase-inner { max-width: 820px; }
.showcase-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem);
  color: var(--white);
  margin: 14px 0 18px;
  line-height: 1.15;
}
.showcase-text {
  color: rgba(255,255,255,.82);
  font-size: 1.05rem;
  max-width: 620px;
  margin: 0 auto 40px;
}
.showcase-meta {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 48px;
  border-top: 1px solid rgba(255,255,255,.12);
  border-bottom: 1px solid rgba(255,255,255,.12);
  padding: 24px 0;
  margin-top: 8px;
}
.showcase-meta > div {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.showcase-num {
  font-family: 'Playfair Display', serif;
  font-size: 1.8rem;
  color: var(--white);
  line-height: 1;
}
.showcase-label {
  font-size: .75rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-top: 8px;
}

@media (max-width: 540px) {
  .showcase { padding: 90px 0; }
  .showcase-meta { gap: 28px; padding: 20px 0; }
}

/* ---------- GMBH Standard ---------- */
.standard-inner { max-width: 980px; margin: 0 auto; }
.standard-text { text-align: center; }
.standard-text > p { max-width: 760px; margin-left: auto; margin-right: auto; }

.standard-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
  margin-top: 64px;
  text-align: left;
  position: relative;
}
.standard-grid::before {
  content: '';
  position: absolute;
  top: 96px;
  left: 8%;
  right: 8%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--silver-300) 18%, var(--silver-300) 82%, transparent);
  opacity: .55;
  z-index: 0;
  pointer-events: none;
}

.standard-item {
  position: relative;
  padding: 38px 28px 34px;
  background: linear-gradient(180deg, var(--white), var(--white) 60%, rgba(246,247,250,.5));
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  transition: transform .45s var(--ease), border-color .45s var(--ease), box-shadow .45s var(--ease), background .45s var(--ease);
  overflow: hidden;
  z-index: 1;
}
.standard-item::before {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--navy-800), transparent);
  transform: translateX(-50%);
  transition: width .55s var(--ease);
}
.standard-item::after {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse at 80% -20%, rgba(18,40,85,.06), transparent 60%);
  opacity: 0;
  transition: opacity .45s var(--ease);
  pointer-events: none;
}
.standard-item:hover {
  transform: translateY(-8px);
  border-color: var(--navy-700);
  box-shadow: 0 22px 44px rgba(11, 26, 58, 0.12);
}
.standard-item:hover::before { width: 70%; }
.standard-item:hover::after { opacity: 1; }

.standard-num {
  position: absolute;
  top: 18px;
  right: 22px;
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 600;
  color: var(--silver-300);
  letter-spacing: .04em;
  line-height: 1;
  opacity: .55;
  transition: color .45s var(--ease), opacity .45s var(--ease), transform .45s var(--ease);
}
.standard-item:hover .standard-num {
  color: var(--navy-800);
  opacity: 1;
  transform: translateY(-2px);
}

.standard-icon {
  width: 60px;
  height: 60px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--white), var(--gray-50));
  border: 1px solid var(--silver-200);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  margin: 4px 0 26px;
  box-shadow: 0 6px 14px rgba(11, 26, 58, 0.05);
  transition: all .45s var(--ease);
  position: relative;
  z-index: 1;
}
.standard-icon svg { width: 26px; height: 26px; transition: transform .45s var(--ease); }
.standard-item:hover .standard-icon {
  background: linear-gradient(135deg, var(--navy-700), var(--navy-900));
  border-color: var(--navy-800);
  color: var(--white);
  box-shadow: 0 12px 24px rgba(11, 26, 58, 0.22);
  transform: scale(1.04) rotate(-1deg);
}
.standard-item:hover .standard-icon svg { transform: scale(1.05); }

.standard-item h4 {
  color: var(--navy-800);
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  margin: 0 0 12px;
  position: relative;
  z-index: 1;
}
.standard-item h4::after {
  content: '';
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--silver-400);
  margin-top: 12px;
  transition: width .45s var(--ease), background .45s var(--ease);
}
.standard-item:hover h4::after {
  width: 40px;
  background: var(--navy-800);
}

.standard-item p {
  font-size: .94rem;
  margin: 0;
  color: var(--text-soft);
  line-height: 1.6;
  position: relative;
  z-index: 1;
}

/* ---------- Bridge Flags (About section) ---------- */
.bridge-flags {
  display: flex;
  align-items: flex-start;
  gap: 18px;
  margin: 18px 0 26px;
  max-width: 380px;
}
.flag-chip {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.flag-circle {
  width: 58px;
  height: 58px;
  border-radius: 50%;
  filter: drop-shadow(0 6px 14px rgba(11, 26, 58, .14));
  transition: transform .55s var(--ease), filter .55s var(--ease);
}
.flag-chip:hover .flag-circle {
  transform: translateY(-3px) scale(1.05);
  filter: drop-shadow(0 12px 20px rgba(11, 26, 58, .18));
}
.flag-label {
  font-size: .68rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--text-soft);
  font-weight: 600;
}

.bridge-line {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 58px;
  margin-top: 0;
}
.bridge-arc {
  width: 100%;
  max-width: 160px;
  height: 30px;
  color: var(--silver-400);
  overflow: visible;
}
.bridge-arc path {
  animation: bridgeFlow 4.5s linear infinite;
}
@keyframes bridgeFlow {
  to { stroke-dashoffset: -20; }
}
.bridge-dot {
  color: var(--navy-700);
  fill: var(--navy-700);
  animation: bridgeDot 2.6s ease-in-out infinite;
  transform-origin: 100px 11px;
  transform-box: fill-box;
}
@keyframes bridgeDot {
  0%, 100% { opacity: .55; }
  50%      { opacity: 1; }
}

@media (max-width: 540px) {
  .bridge-flags { gap: 12px; max-width: 320px; }
  .flag-circle { width: 50px; height: 50px; }
  .bridge-line { height: 50px; }
  .bridge-arc { max-width: 100px; }
}

/* ---------- About ---------- */
.about-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 64px;
  align-items: center;
}
.kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  margin-top: 40px;
  border-top: 1px solid var(--gray-200);
  border-bottom: 1px solid var(--gray-200);
  padding: 32px 0;
  position: relative;
}
.kpi-row::before,
.kpi-row::after {
  content: '';
  position: absolute;
  left: -8px;
  width: 16px;
  height: 1px;
  background: var(--silver-300);
}
.kpi-row::before { top: -1px; }
.kpi-row::after  { bottom: -1px; }

.kpi {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  padding: 0 28px;
  position: relative;
  opacity: 0;
  transform: translateY(14px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.kpi.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.kpi:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 12%;
  bottom: 12%;
  width: 1px;
  background: var(--gray-200);
}
.kpi:first-child { padding-left: 4px; }
.kpi:last-child  { padding-right: 4px; }

.kpi-num {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 4.4vw, 3.4rem);
  font-weight: 700;
  color: var(--navy-800);
  line-height: 1;
  letter-spacing: -0.02em;
  font-variant-numeric: tabular-nums;
  display: inline-block;
}
.kpi-num--infinity {
  transform: scale(.4);
  opacity: 0;
  transition: transform .9s cubic-bezier(.34, 1.56, .64, 1), opacity .6s var(--ease);
}
.kpi.is-visible .kpi-num--infinity {
  transform: scale(1);
  opacity: 1;
  animation: kpiBreath 3.6s ease-in-out 1.1s infinite;
}
@keyframes kpiBreath {
  0%, 100% { transform: scale(1); }
  50%      { transform: scale(1.06); }
}

.kpi-divider {
  display: block;
  width: 0;
  height: 1.5px;
  background: var(--silver-400);
  margin: 16px 0 14px;
  transition: width .8s var(--ease) .35s, background .8s var(--ease) .35s;
}
.kpi.is-visible .kpi-divider { width: 32px; }
.kpi:hover .kpi-divider {
  width: 48px;
  background: var(--navy-800);
}

.kpi-label {
  font-size: .76rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver-500);
  font-weight: 600;
}

@media (max-width: 540px) {
  .kpi-row { grid-template-columns: 1fr; padding: 12px 0; }
  .kpi { padding: 22px 0; align-items: flex-start; }
  .kpi:not(:last-child)::after {
    right: auto;
    top: auto; bottom: 0;
    left: 0; width: 80%; height: 1px;
  }
  .kpi:first-child { padding-left: 0; }
  .kpi:last-child  { padding-right: 0; padding-bottom: 0; }
}
.about-card {
  background: var(--navy-800);
  color: var(--white);
  padding: 48px 40px;
  border-radius: var(--radius);
  position: relative;
  box-shadow: var(--shadow-md);
}
.about-card::before {
  content: '"';
  position: absolute;
  top: -10px; left: 24px;
  font-family: 'Playfair Display', serif;
  font-size: 6rem;
  line-height: 1;
  color: var(--silver-300);
  opacity: .35;
}
.about-card blockquote {
  font-family: 'Playfair Display', serif;
  font-size: 1.2rem;
  font-style: italic;
  line-height: 1.5;
  margin: 0 0 16px;
  color: var(--white);
}
.about-card cite {
  font-style: normal;
  font-size: .85rem;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver-300);
}

/* ---------- Contact ---------- */
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;
  display: grid;
  gap: 14px;
}
.contact-info li {
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 16px;
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.contact-info strong {
  font-size: .75rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--silver-300);
  font-weight: 600;
}
.contact-info a, .contact-info span { color: rgba(255,255,255,.85); }
.contact-info a:hover { color: var(--white); }

.contact-form {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  padding: 36px 32px;
  border-radius: var(--radius);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
}
.field { margin-bottom: 18px; }
.field label {
  display: block;
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--silver-300);
  margin-bottom: 8px;
  font-weight: 600;
}
.field input,
.field select,
.field textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255,255,255,.15);
  background: rgba(255,255,255,.03);
  color: var(--white);
  font-family: inherit;
  font-size: .95rem;
  transition: border-color .3s var(--ease), background .3s var(--ease);
}
.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--silver-300);
  background: rgba(255,255,255,.06);
}
.field textarea { resize: vertical; min-height: 96px; }
.field select option { color: var(--navy-800); }

.form-status {
  font-size: .85rem;
  margin: 14px 0 0;
  min-height: 20px;
  color: var(--silver-300);
}
.form-status.success { color: #7BD3A1; }
.form-status.error { color: #F4A4A4; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--navy-900);
  color: rgba(255,255,255,.7);
  padding: 36px 0;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
}
.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  letter-spacing: .02em;
}
.footer-brand p { margin: 2px 0 0; font-size: .8rem; color: var(--silver-300); letter-spacing: .12em; text-transform: uppercase; }
.footer-meta { text-align: right; font-size: .85rem; }
.footer-meta p { margin: 0; color: rgba(255,255,255,.7); }
.footer-meta .muted { color: var(--silver-500); font-size: .78rem; margin-top: 4px; }

/* ---------- First Clients CTA (replaces testimonials until real ones) ---------- */
.first-clients-inner {
  max-width: 720px;
  margin: 0 auto;
  text-align: center;
  position: relative;
}
.first-clients h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.7rem);
  margin-bottom: 18px;
}
.first-clients .section-lead {
  margin-bottom: 36px;
  max-width: 580px;
  margin-left: auto;
  margin-right: auto;
}
.first-clients-cta {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}
.first-clients-marks {
  display: flex;
  gap: 8px;
  justify-content: center;
  margin-top: 48px;
}
.first-clients-marks span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--silver-300);
  display: block;
}
.first-clients-marks span:nth-child(2) { background: var(--silver-400); }
.first-clients-marks span:nth-child(3) { background: var(--navy-800); }

/* ---------- Partners ---------- */
.partners {
  background: var(--navy-900);
  position: relative;
  overflow: hidden;
  padding: 110px 0;
}
.partners::before,
.partners::after {
  content: '';
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  width: 60%;
  max-width: 480px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(192,197,206,.28), transparent);
}
.partners::before { top: 0; }
.partners::after  { bottom: 0; }

.partners .section-head { margin-bottom: 64px; }
.partners h2 { color: var(--white); }
.partners .section-lead { color: rgba(255,255,255,.7); max-width: 580px; margin-left: auto; margin-right: auto; }

.partners-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  align-items: stretch;
  position: relative;
}
.partners-grid::before {
  content: '';
  position: absolute;
  top: 18%; bottom: 18%;
  left: 25%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.partners-grid::after {
  content: '';
  position: absolute;
  top: 18%; bottom: 18%;
  left: 75%;
  width: 1px;
  background: rgba(255,255,255,.08);
}
.partners-grid > *:nth-child(2) {
  position: relative;
}
.partners-grid > *:nth-child(2)::before {
  content: '';
  position: absolute;
  top: 18%; bottom: 18%;
  right: -4px;
  width: 1px;
  background: rgba(255,255,255,.08);
}

.partner-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  padding: 32px 18px;
  border-radius: 14px;
  text-align: center;
  text-decoration: none;
  color: rgba(255,255,255,.72);
  transition: all .45s var(--ease);
  position: relative;
  z-index: 1;
}
.partner-logo:hover {
  background: rgba(255,255,255,.04);
  color: var(--white);
  transform: translateY(-4px);
}

.partner-icon {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--silver-300);
  transition: color .45s var(--ease), transform .45s var(--ease);
}
.partner-icon svg { width: 100%; height: 100%; }
.partner-logo:hover .partner-icon {
  color: var(--white);
  transform: scale(1.08);
}

.partner-name {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
}
.partner-name strong {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: -0.005em;
  color: inherit;
  line-height: 1.2;
}
.partner-name em {
  font-style: normal;
  font-size: .68rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--silver-500);
  font-weight: 500;
}
.partner-suffix {
  color: var(--silver-400);
  font-weight: 400;
  margin-left: 1px;
}
.partner-logo:hover .partner-suffix { color: var(--silver-300); }

@media (max-width: 960px) {
  .partners-grid { grid-template-columns: repeat(2, 1fr); gap: 12px; }
  .partners-grid::before,
  .partners-grid::after,
  .partners-grid > *:nth-child(2)::before { display: none; }
}
@media (max-width: 540px) {
  .partners-grid { grid-template-columns: 1fr; }
  .partners { padding: 80px 0; }
}

/* ---------- Testimonials ---------- */
.testimonials .container { overflow: visible; }

.rating-summary {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  margin-top: 22px;
  padding: 12px 22px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  box-shadow: var(--shadow-sm);
}
.rating-stars {
  display: inline-flex;
  gap: 2px;
  color: #C9A24A;
}
.rating-stars svg { width: 18px; height: 18px; }
.rating-text {
  display: inline-flex;
  align-items: baseline;
  gap: 8px;
  font-size: .9rem;
  color: var(--text-soft);
}
.rating-text strong {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--navy-800);
}

.marquee {
  position: relative;
  overflow: hidden;
  padding: 16px 0;
  margin-top: 24px;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
          mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}
.marquee-track {
  display: flex;
  gap: 22px;
  width: max-content;
  animation: marqueeLeft 70s linear infinite;
  will-change: transform;
}
.marquee[data-direction="right"] .marquee-track {
  animation-name: marqueeRight;
  animation-duration: 80s;
}
.marquee:hover .marquee-track { animation-play-state: paused; }

@keyframes marqueeLeft {
  from { transform: translateX(0); }
  to   { transform: translateX(calc(-50% - 11px)); }
}
@keyframes marqueeRight {
  from { transform: translateX(calc(-50% - 11px)); }
  to   { transform: translateX(0); }
}

.testimonial {
  flex: 0 0 auto;
  width: 360px;
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius);
  padding: 28px 26px 22px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.testimonial:hover {
  transform: translateY(-4px);
  border-color: var(--silver-400);
  box-shadow: var(--shadow-md);
}
.testimonial-stars {
  color: #C9A24A;
  letter-spacing: .15em;
  font-size: .82rem;
  margin-bottom: 14px;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-size: .96rem;
  line-height: 1.55;
  color: var(--text);
  font-family: 'Inter', sans-serif;
  font-weight: 400;
  flex: 1;
}
.testimonial blockquote::before {
  content: '“';
  display: inline;
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
  color: var(--silver-400);
  margin-right: 2px;
}
.testimonial blockquote::after {
  content: '”';
  font-family: 'Playfair Display', serif;
  font-size: 1.2em;
  color: var(--silver-400);
  margin-left: 2px;
}

.testimonial-author {
  display: grid;
  grid-template-columns: 44px 1fr auto;
  gap: 12px;
  align-items: center;
  padding-top: 16px;
  border-top: 1px solid var(--gray-200);
}
.avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  font-weight: 700;
  letter-spacing: .04em;
  font-family: 'Inter', sans-serif;
  flex-shrink: 0;
}
.avatar--1 { background: linear-gradient(135deg, #122855, #0A1632); color: var(--white); }
.avatar--2 { background: var(--gray-50); color: var(--navy-800); border: 1px solid var(--silver-300); }
.avatar--3 { background: var(--silver-300); color: var(--navy-800); }

.testimonial-id { display: flex; flex-direction: column; min-width: 0; }
.testimonial-id strong {
  font-size: .92rem;
  font-weight: 600;
  color: var(--navy-800);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.testimonial-id span {
  font-size: .76rem;
  color: var(--muted);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tag {
  font-size: .68rem;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--silver-500);
  background: var(--gray-50);
  border: 1px solid var(--gray-200);
  border-radius: 999px;
  padding: 4px 10px;
  white-space: nowrap;
}

@media (max-width: 540px) {
  .testimonial { width: 290px; padding: 24px 22px 18px; }
  .marquee-track { gap: 16px; }
  @keyframes marqueeLeft  { to { transform: translateX(calc(-50% - 8px)); } }
  @keyframes marqueeRight { from { transform: translateX(calc(-50% - 8px)); } }
}

/* ---------- Booking CTA (Contact section) ---------- */
.booking-cta {
  display: flex;
  align-items: center;
  gap: 18px;
  width: 100%;
  margin: 28px 0 12px;
  padding: 18px 22px;
  background: linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.02));
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius);
  color: var(--white);
  text-align: left;
  font: inherit;
  cursor: pointer;
  transition: border-color .35s var(--ease), background .35s var(--ease), transform .35s var(--ease);
}
.booking-cta:hover {
  border-color: var(--silver-300);
  background: rgba(255,255,255,.08);
  transform: translateY(-2px);
}
.booking-cta-icon {
  width: 44px; height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(255,255,255,.08);
  color: var(--silver-300);
  flex-shrink: 0;
}
.booking-cta-icon svg { width: 22px; height: 22px; }
.booking-cta-body { display: flex; flex-direction: column; gap: 2px; flex: 1; }
.booking-cta-body strong { font-weight: 600; font-size: .98rem; }
.booking-cta-body span { font-size: .82rem; color: rgba(255,255,255,.65); }
.booking-cta-arrow {
  font-size: 1.2rem;
  color: var(--silver-300);
  transition: transform .35s var(--ease);
}
.booking-cta:hover .booking-cta-arrow { transform: translateX(4px); }

/* ---------- Booking Modal ---------- */
.booking-modal {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 24px;
}
.booking-modal.is-open { display: flex; }
body.booking-open { overflow: hidden; }

.booking-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(8, 18, 42, .58);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  animation: fadeIn .35s var(--ease);
}
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }

.booking-shell {
  position: relative;
  width: 100%;
  max-width: 560px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  background: var(--white);
  border-radius: 22px;
  box-shadow: 0 40px 80px rgba(8,18,42,.35);
  padding: 40px 36px 32px;
  animation: bookingPop .45s var(--ease);
}
@keyframes bookingPop {
  from { opacity: 0; transform: translateY(20px) scale(.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

.booking-close {
  position: absolute;
  top: 16px; right: 16px;
  width: 38px; height: 38px;
  border: 0;
  background: transparent;
  border-radius: 50%;
  color: var(--text-soft);
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: background .25s var(--ease), color .25s var(--ease);
}
.booking-close:hover { background: var(--gray-100); color: var(--navy-800); }
.booking-close svg { width: 20px; height: 20px; }

.booking-head { text-align: center; margin-bottom: 24px; }
.booking-head h2 {
  font-size: 1.6rem;
  margin: 6px 0 8px;
}
.booking-sub { color: var(--text-soft); font-size: .92rem; margin: 0; }

.booking-steps {
  list-style: none;
  margin: 0 0 24px;
  padding: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
}
.booking-steps li {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .8rem;
  color: var(--muted);
  letter-spacing: .04em;
}
.booking-steps li:not(:last-child)::after {
  content: '';
  display: inline-block;
  width: 24px;
  height: 1px;
  background: var(--silver-200);
  margin-left: 6px;
}
.booking-steps li span {
  width: 24px; height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: var(--gray-100);
  color: var(--muted);
  font-size: .78rem;
  font-weight: 600;
}
.booking-steps li.is-active { color: var(--navy-800); }
.booking-steps li.is-active span { background: var(--navy-800); color: var(--white); }
.booking-steps li.is-done span { background: var(--silver-500); color: var(--white); }
.booking-steps li b { font-weight: 600; }

.booking-step { display: none; }
.booking-step.is-active { display: block; animation: stepIn .35s var(--ease); }
@keyframes stepIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Calendar */
.cal-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.cal-month {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  margin: 0;
  color: var(--navy-800);
  text-transform: capitalize;
}
.cal-nav {
  width: 34px; height: 34px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 8px;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-800);
  transition: background .25s var(--ease), border-color .25s var(--ease);
}
.cal-nav:hover:not(:disabled) {
  background: var(--gray-50);
  border-color: var(--silver-400);
}
.cal-nav:disabled { opacity: .3; cursor: not-allowed; }
.cal-nav svg { width: 16px; height: 16px; }

.cal-weekdays, .cal-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 4px;
}
.cal-weekdays {
  margin-bottom: 6px;
  text-align: center;
  font-size: .72rem;
  letter-spacing: .14em;
  color: var(--muted);
  text-transform: uppercase;
  font-weight: 600;
}

.cal-day {
  aspect-ratio: 1 / 1;
  border: 1px solid transparent;
  background: var(--gray-50);
  border-radius: 10px;
  font: inherit;
  font-size: .9rem;
  font-weight: 500;
  color: var(--text);
  cursor: pointer;
  transition: background .2s var(--ease), color .2s var(--ease), border-color .2s var(--ease), transform .2s var(--ease);
}
.cal-day:hover:not(:disabled) {
  background: var(--white);
  border-color: var(--navy-800);
  transform: translateY(-1px);
}
.cal-day:disabled {
  background: transparent;
  color: var(--silver-300);
  cursor: not-allowed;
}
.cal-day.is-empty {
  background: transparent;
  pointer-events: none;
}
.cal-day.is-today { color: var(--navy-800); font-weight: 700; }
.cal-day.is-selected {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.cal-hint {
  margin: 14px 0 0;
  text-align: center;
  font-size: .78rem;
  color: var(--muted);
  font-style: italic;
}

/* Time slots */
.booking-selected {
  text-align: center;
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--navy-800);
  margin: 0 0 22px;
  text-transform: capitalize;
}
.slots-section { margin-bottom: 18px; }
.slots-section h4 {
  font-size: .78rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 10px;
  font-weight: 600;
}
.slots-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
}
.slot {
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: 999px;
  padding: 10px 4px;
  font: inherit;
  font-size: .88rem;
  font-weight: 500;
  color: var(--navy-800);
  cursor: pointer;
  transition: all .25s var(--ease);
}
.slot:hover {
  border-color: var(--navy-800);
  background: var(--gray-50);
}
.slot.is-selected {
  background: var(--navy-800);
  color: var(--white);
  border-color: var(--navy-800);
}

.booking-actions {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-top: 22px;
}

/* Booking confirmation form (light theme) */
.booking-summary {
  background: var(--gray-50);
  padding: 16px 20px;
  border-radius: var(--radius);
  text-align: center;
  margin-bottom: 22px;
  border: 1px solid var(--gray-200);
}
.booking-summary-label {
  font-size: .72rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  display: block;
  margin-bottom: 4px;
}
.booking-summary strong {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: var(--navy-800);
  text-transform: capitalize;
}

#bookingForm .field label {
  display: block;
  font-size: .72rem;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
  margin-bottom: 6px;
}
#bookingForm .field input,
#bookingForm .field select,
#bookingForm .field textarea {
  width: 100%;
  padding: 11px 14px;
  border: 1px solid var(--gray-200);
  background: var(--white);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: .94rem;
  color: var(--text);
  transition: border-color .25s var(--ease);
}
#bookingForm .field input:focus,
#bookingForm .field select:focus,
#bookingForm .field textarea:focus {
  outline: none;
  border-color: var(--navy-800);
}
#bookingForm .field { margin-bottom: 14px; }

.btn-outline-dark {
  border: 1.5px solid var(--gray-200);
  color: var(--text-soft);
  background: transparent;
}
.btn-outline-dark:hover {
  border-color: var(--navy-800);
  color: var(--navy-800);
}

.form-status--dark.success { color: #2D7A4F; }
.form-status--dark.error { color: #B23A3A; }

/* Success step */
.booking-success { text-align: center; padding: 12px 0; }
.booking-success-icon {
  width: 72px; height: 72px;
  margin: 4px auto 18px;
  color: #2D7A4F;
}
.booking-success-icon svg { width: 100%; height: 100%; }
.booking-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem;
  color: var(--navy-800);
  margin: 0 0 12px;
}
.booking-success-text {
  font-family: 'Playfair Display', serif;
  font-size: 1.05rem;
  color: var(--navy-800);
  margin: 0 0 8px;
  text-transform: capitalize;
}
.booking-success-note {
  font-size: .9rem;
  color: var(--text-soft);
  margin: 0 0 22px;
  max-width: 380px;
  margin-left: auto; margin-right: auto;
}

@media (max-width: 540px) {
  .booking-shell { padding: 32px 22px 24px; }
  .booking-head h2 { font-size: 1.35rem; }
  .booking-steps li:not(:last-child)::after { width: 14px; }
  .slots-grid { grid-template-columns: repeat(3, 1fr); }
  .cal-day { font-size: .82rem; }
  .booking-actions { flex-direction: column-reverse; }
  .booking-actions .btn { width: 100%; }
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .9s var(--ease), transform .9s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .nav, .header-inner > .header-tools { display: none; }
  .nav-toggle { display: flex; }

  .grid-services { grid-template-columns: 1fr; }
  .standard-grid { grid-template-columns: repeat(2, 1fr); }
  .standard-grid::before { display: none; }
  .about-inner, .contact-inner { grid-template-columns: 1fr; gap: 40px; }
  .footer-inner { flex-direction: column; text-align: center; }
  .footer-meta { text-align: center; }
}

@media (max-width: 540px) {
  .section { padding: 80px 0; }
  .hero-inner { padding: 130px 24px 100px; }
  .standard-grid { grid-template-columns: 1fr; }
  .kpi-row { gap: 28px; }
  .service-card { padding: 28px 24px; }
  .contact-form { padding: 28px 22px; }
}
