/* ============================================================================
   Abu Saleh Jongi — Premium Legal Consultation
   Design tokens & base
   ============================================================================ */
:root {
  --navy-950: #060f1d;
  --navy-900: #081527;
  --navy-800: #0b1f3a;
  --navy-700: #10294c;
  --navy-600: #16345e;
  --ink: #1b2431;
  --ink-soft: #3c4654;
  --muted: #5f6b7a;
  --brass: #b3894a;
  --brass-deep: #96702f;
  --brass-light: #d2b078;
  --paper: #faf8f4;
  --paper-warm: #f4f1ea;
  --mist: #f1f3f6;
  --white: #ffffff;
  --line: #e6e1d6;
  --line-cool: #e2e6ec;
  --ok: #2e7d5b;
  --err: #b3261e;
  --shadow-sm: 0 1px 2px rgba(11, 31, 58, 0.06), 0 1px 3px rgba(11, 31, 58, 0.05);
  --shadow-md: 0 8px 28px rgba(11, 31, 58, 0.09);
  --shadow-lg: 0 20px 50px rgba(11, 31, 58, 0.16);
  --radius: 14px;
  --radius-lg: 20px;
  --serif: "Noto Serif Bengali", "Playfair Display", Georgia, serif;
  --sans: "Hind Siliguri", "Noto Sans Bengali", "Segoe UI", system-ui, -apple-system, sans-serif;
  --latin: "Playfair Display", "Noto Serif Bengali", Georgia, serif;
  --header-h: 78px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  font-family: var(--sans);
  font-size: 16.5px;
  line-height: 1.78;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
}

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

h1, h2, h3, h4 {
  font-family: var(--serif);
  color: var(--navy-800);
  line-height: 1.35;
  margin: 0;
  font-weight: 600;
}

p { margin: 0 0 1em; }

a { color: var(--navy-600); text-decoration: none; }

::selection { background: rgba(179, 137, 74, 0.25); }

:focus-visible {
  outline: 3px solid rgba(179, 137, 74, 0.55);
  outline-offset: 2px;
  border-radius: 4px;
}

section, [id="booking"], [id="case-info"], [id="fee"] { scroll-margin-top: calc(var(--header-h) + 14px); }

.container { width: min(1160px, 92%); margin-inline: auto; }
.container-narrow { width: min(880px, 92%); margin-inline: auto; }

/* Skip link */
.skip-link {
  position: absolute; left: -9999px; top: 0; z-index: 200;
  background: var(--navy-800); color: #fff; padding: 10px 18px; border-radius: 0 0 10px 0;
}
.skip-link:focus { left: 0; }

/* ============================================================================
   Buttons
   ============================================================================ */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  font-family: var(--sans); font-weight: 600; font-size: 15.5px; line-height: 1.4;
  padding: 14px 28px; border-radius: 10px; border: 1px solid transparent;
  cursor: pointer; transition: transform 0.22s ease, box-shadow 0.22s ease,
    background-color 0.22s ease, color 0.22s ease, border-color 0.22s ease;
  white-space: nowrap; text-decoration: none;
}
.btn svg { flex: 0 0 auto; }
.btn:active { transform: translateY(1px); }

.btn-primary { background: var(--navy-800); color: #fff; }
.btn-primary:hover { background: var(--navy-700); transform: translateY(-2px); box-shadow: var(--shadow-md); }

.btn-brass { background: var(--brass); color: var(--navy-950); }
.btn-brass:hover { background: #c39a58; transform: translateY(-2px); box-shadow: 0 10px 26px rgba(179, 137, 74, 0.35); }

.btn-outline-light { background: transparent; color: #fff; border-color: rgba(255, 255, 255, 0.35); }
.btn-outline-light:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(255, 255, 255, 0.6); transform: translateY(-2px); }

.btn-ghost-dark { background: transparent; color: var(--navy-700); border-color: rgba(22, 52, 94, 0.28); }
.btn-ghost-dark:hover { background: rgba(22, 52, 94, 0.05); border-color: rgba(22, 52, 94, 0.5); transform: translateY(-2px); }

.btn-block { width: 100%; }
.btn-sm { padding: 10px 18px; font-size: 14.5px; }

/* ============================================================================
   Header
   ============================================================================ */
.site-header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 248, 244, 0.92);
  -webkit-backdrop-filter: blur(12px); backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow 0.3s ease;
}
.site-header.scrolled { box-shadow: 0 4px 24px rgba(11, 31, 58, 0.08); }

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

.brand { display: flex; align-items: center; gap: 13px; min-width: 0; }
.brand-mark {
  width: 46px; height: 46px; flex: 0 0 auto;
  display: grid; place-items: center;
  font-family: var(--latin); font-weight: 700; font-size: 17px; letter-spacing: 0.06em;
  color: var(--brass-light);
  background: var(--navy-800);
  border: 1px solid rgba(179, 137, 74, 0.45);
  border-radius: 10px;
  box-shadow: inset 0 0 0 3px rgba(255, 255, 255, 0.04);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.25; min-width: 0; }
.brand-name {
  font-family: var(--latin); font-weight: 600; font-size: 18.5px;
  color: var(--navy-800); letter-spacing: 0.01em;
}
.brand-sub {
  font-size: 12.5px; color: var(--muted); letter-spacing: 0.02em;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}

.main-nav { display: flex; align-items: center; gap: 4px; }
.main-nav a {
  font-size: 15px; font-weight: 500; color: var(--ink-soft);
  padding: 9px 13px; border-radius: 8px; position: relative;
  transition: color 0.2s ease, background 0.2s ease;
}
.main-nav a:hover { color: var(--navy-800); background: rgba(22, 52, 94, 0.05); }
.main-nav a.active { color: var(--navy-800); font-weight: 600; }
.main-nav a.active::after {
  content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px;
  height: 2px; background: var(--brass); border-radius: 2px;
}

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-actions .btn { padding: 11px 20px; font-size: 14.5px; }

.nav-toggle {
  display: none; flex-direction: column; justify-content: center; gap: 5px;
  width: 46px; height: 46px; padding: 11px;
  background: transparent; border: 1px solid var(--line); border-radius: 10px; cursor: pointer;
}
.nav-toggle span {
  display: block; height: 2px; width: 100%; background: var(--navy-800);
  border-radius: 2px; transition: transform 0.3s ease, opacity 0.3s 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); }

/* Mobile menu overlay */
.mobile-menu {
  position: fixed; inset: 0; z-index: 99;
  background: var(--navy-900);
  display: flex; flex-direction: column; justify-content: center;
  padding: calc(var(--header-h) + 24px) 8% 48px;
  transform: translateY(-102%);
  transition: transform 0.42s cubic-bezier(0.22, 1, 0.36, 1);
  visibility: hidden;
}
.mobile-menu.open { transform: translateY(0); visibility: visible; }
.mobile-menu nav { display: flex; flex-direction: column; gap: 2px; }
.mobile-menu nav a {
  font-family: var(--serif); font-size: 24px; color: #e8e2d6;
  padding: 13px 4px; border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.mobile-menu nav a:hover { color: var(--brass-light); }
.mobile-menu-ctas { margin-top: 34px; display: flex; flex-direction: column; gap: 14px; }
.mobile-menu-ctas .btn { width: 100%; padding: 16px; font-size: 16.5px; }
body.menu-open { overflow: hidden; }

/* ============================================================================
   Hero
   ============================================================================ */
.hero {
  position: relative; overflow: hidden;
  background: var(--navy-900);
  background-image:
    radial-gradient(1100px 620px at 12% -8%, rgba(179, 137, 74, 0.16), transparent 55%),
    radial-gradient(900px 700px at 105% 110%, rgba(22, 52, 94, 0.55), transparent 60%),
    repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.022) 0 1px, transparent 1px 88px);
  color: #e8e2d6;
  padding: 96px 0 150px;
}
.hero-arch {
  position: absolute; right: -30px; bottom: -6px; width: 460px; max-width: 55vw;
  opacity: 0.6; pointer-events: none;
}
.hero-grid {
  position: relative; z-index: 2;
  display: grid; grid-template-columns: 1.04fr 0.96fr; gap: 56px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13.5px; font-weight: 600; letter-spacing: 0.08em; color: var(--brass-light);
  text-transform: uppercase; margin-bottom: 22px;
}
.hero-eyebrow::before { content: ""; width: 26px; height: 1.5px; background: var(--brass); display: inline-block; }

.hero-title {
  color: #f4efe5; font-size: clamp(2.35rem, 4.6vw, 3.55rem); font-weight: 600;
  line-height: 1.32; margin-bottom: 24px;
}
.hero-title .accent { color: var(--brass-light); font-style: normal; }

.hero-sub {
  font-size: 17.5px; color: #c7cdd8; max-width: 540px; margin-bottom: 34px; line-height: 1.9;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 34px; }

.hero-chips { display: flex; flex-wrap: wrap; gap: 10px; }
.chip {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 13.5px; font-weight: 500; color: #dcd6c8;
  background: rgba(255, 255, 255, 0.055);
  border: 1px solid rgba(255, 255, 255, 0.13);
  padding: 8px 15px; border-radius: 999px;
}
.chip svg { color: var(--brass-light); }

.hero-footnote { margin-top: 18px; font-size: 12.5px; color: #8b95a5; max-width: 480px; }

/* Portrait */
.hero-portrait { position: relative; }
.portrait-frame {
  position: relative; border-radius: 18px; overflow: visible;
}
.portrait-frame::after {
  content: ""; position: absolute; inset: 18px -18px -18px 18px;
  border: 1px solid rgba(179, 137, 74, 0.5); border-radius: 18px; z-index: -1;
}
.portrait-frame img {
  width: 100%; aspect-ratio: 4 / 4.6; object-fit: cover; object-position: top center;
  border-radius: 18px; box-shadow: var(--shadow-lg);
}
.portrait-badge {
  position: absolute; left: -26px; bottom: 34px;
  background: #fff; border-radius: 12px; padding: 14px 18px;
  box-shadow: var(--shadow-md); border: 1px solid var(--line);
  display: flex; align-items: center; gap: 12px; max-width: 260px;
}
.portrait-badge .pb-icon {
  width: 40px; height: 40px; flex: 0 0 auto; border-radius: 10px;
  background: rgba(179, 137, 74, 0.12); color: var(--brass-deep);
  display: grid; place-items: center;
}
.portrait-badge strong { display: block; font-size: 14.5px; color: var(--navy-800); line-height: 1.4; }
.portrait-badge small { font-size: 12.5px; color: var(--muted); line-height: 1.4; display: block; }

/* ============================================================================
   Stats strip (overlapping card)
   ============================================================================ */
.stats-wrap { position: relative; z-index: 6; margin-top: -72px; }
.stats-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.stat {
  padding: 30px 26px; text-align: center; position: relative;
}
.stat + .stat::before {
  content: ""; position: absolute; left: 0; top: 22%; bottom: 22%; width: 1px; background: var(--line);
}
.stat-value {
  font-family: var(--serif); font-size: 30px; font-weight: 700; color: var(--navy-800);
  line-height: 1.25; margin-bottom: 6px;
}
.stat-value .plus { color: var(--brass); }
.stat-label { font-size: 14px; color: var(--ink-soft); font-weight: 500; line-height: 1.5; }
.stat-sub { font-size: 12px; color: var(--muted); margin-top: 3px; }
.stats-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 14px; }

/* ============================================================================
   Section scaffolding
   ============================================================================ */
.section { padding: 96px 0; }
.section-tight { padding: 72px 0; }
.bg-white { background: var(--white); }
.bg-mist { background: var(--mist); }
.bg-warm { background: var(--paper-warm); }

.section-head { max-width: 660px; margin-bottom: 52px; }
.section-head.center { margin-inline: auto; text-align: center; }
.eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.1em;
  color: var(--brass-deep); text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow::before { content: ""; width: 24px; height: 1.5px; background: var(--brass); }
.section-head.center .eyebrow::after { content: ""; width: 24px; height: 1.5px; background: var(--brass); }

.section-title { font-size: clamp(1.75rem, 3.2vw, 2.45rem); margin-bottom: 14px; }
.section-sub { color: var(--muted); font-size: 16.5px; }
.on-dark .section-title { color: #f4efe5; }
.on-dark .section-sub { color: #b9c1cd; }

.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

/* ============================================================================
   About
   ============================================================================ */
.about-grid { display: grid; grid-template-columns: 1.15fr 0.85fr; gap: 64px; align-items: start; }
.about-name-row { display: flex; flex-wrap: wrap; align-items: baseline; gap: 10px 16px; margin-bottom: 6px; }
.about-title-tag {
  font-size: 13px; font-weight: 600; color: var(--brass-deep);
  background: rgba(179, 137, 74, 0.1); border: 1px solid rgba(179, 137, 74, 0.28);
  padding: 4px 12px; border-radius: 999px;
}
.about-body p { color: var(--ink-soft); font-size: 16.5px; }
.about-note {
  margin-top: 18px; padding: 14px 18px;
  background: var(--paper-warm); border-left: 3px solid var(--brass);
  border-radius: 0 10px 10px 0; font-size: 14.5px; color: var(--ink-soft);
}
.about-highlights-card { padding: 30px; position: sticky; top: calc(var(--header-h) + 24px); }
.about-highlights-card h3 { font-size: 19px; margin-bottom: 18px; }
.hl-list { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 14px; }
.hl-list li {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: 15.5px; color: var(--ink-soft);
}
.hl-list li svg { flex: 0 0 auto; margin-top: 4px; color: var(--brass-deep); }
.about-title-note { margin-top: 16px; font-size: 13px; color: var(--muted); line-height: 1.7; }

/* ============================================================================
   Timeline
   ============================================================================ */
.timeline { position: relative; max-width: 760px; margin: 0 auto; padding: 8px 0 8px 46px; }
.timeline::before {
  content: ""; position: absolute; left: 11px; top: 0; bottom: 0; width: 2px;
  background: linear-gradient(to bottom, rgba(179, 137, 74, 0.65), rgba(179, 137, 74, 0.12));
}
.tl-item { position: relative; padding-bottom: 44px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before {
  content: ""; position: absolute; left: -42px; top: 8px;
  width: 14px; height: 14px; border-radius: 50%;
  background: #fff; border: 3px solid var(--brass);
  box-shadow: 0 0 0 5px rgba(179, 137, 74, 0.14);
}
.tl-year {
  font-family: var(--serif); font-size: 15.5px; font-weight: 600; color: var(--brass-deep);
  letter-spacing: 0.04em; margin-bottom: 6px;
}
.tl-card { padding: 22px 26px; transition: transform 0.25s ease, box-shadow 0.25s ease; }
.tl-card:hover { transform: translateX(6px); box-shadow: var(--shadow-md); }
.tl-card h3 { font-size: 19px; margin-bottom: 8px; }
.tl-card p { margin: 0; color: var(--muted); font-size: 15px; }
.timeline-note { text-align: center; font-size: 12.5px; color: var(--muted); margin-top: 34px; }

/* ============================================================================
   Services
   ============================================================================ */
.services-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.service-card {
  padding: 30px 28px; display: flex; flex-direction: column;
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}
.service-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); border-color: rgba(179, 137, 74, 0.4); }
.service-icon {
  width: 52px; height: 52px; border-radius: 13px; margin-bottom: 20px;
  background: var(--navy-800); color: var(--brass-light);
  display: grid; place-items: center;
}
.service-card h3 { font-size: 18.5px; line-height: 1.5; margin-bottom: 10px; }
.service-card p { margin: 0; color: var(--muted); font-size: 15px; }
.services-note {
  margin-top: 30px; padding: 16px 22px;
  background: rgba(22, 52, 94, 0.045); border: 1px solid var(--line-cool);
  border-radius: 12px; font-size: 14px; color: var(--ink-soft);
  display: flex; gap: 12px; align-items: flex-start;
}
.services-note svg { flex: 0 0 auto; margin-top: 3px; color: var(--brass-deep); }

/* ============================================================================
   How it works (steps)
   ============================================================================ */
.steps-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; margin-bottom: 44px; }
.step-card {
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform 0.28s ease, box-shadow 0.28s ease;
}
.step-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-md); }
.step-num {
  font-family: var(--latin); font-size: 44px; font-weight: 700; line-height: 1;
  color: rgba(179, 137, 74, 0.32); margin-bottom: 16px;
}
.step-card h3 { font-size: 18px; margin-bottom: 10px; }
.step-card p { margin: 0; color: var(--muted); font-size: 14.5px; }
.steps-cta { text-align: center; }

/* ============================================================================
   Booking
   ============================================================================ */
.booking-grid { display: grid; grid-template-columns: 370px 1fr; gap: 30px; align-items: start; }
.booking-aside { padding: 30px; position: sticky; top: calc(var(--header-h) + 24px); }
.booking-aside h3 { font-size: 20px; margin-bottom: 6px; }
.booking-aside .aside-sub { font-size: 14px; color: var(--muted); margin-bottom: 22px; }
.aside-block { padding: 16px 0; border-top: 1px solid var(--line); }
.aside-block:first-of-type { border-top: 0; padding-top: 0; }
.aside-label {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 8px;
}
.aside-value { font-size: 15px; color: var(--ink-soft); line-height: 1.7; }
.pay-chips { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 10px; }
.pay-chip {
  font-size: 13px; font-weight: 600; color: var(--navy-700);
  background: rgba(22, 52, 94, 0.06); border: 1px solid var(--line-cool);
  padding: 5px 12px; border-radius: 999px;
}
.aside-note { font-size: 13px; color: var(--muted); line-height: 1.7; }

.form-card { padding: 36px; }
.form-card h3 { font-size: 21px; margin-bottom: 6px; }
.form-intro { font-size: 14.5px; color: var(--muted); margin-bottom: 26px; }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px 20px; }
.field { display: flex; flex-direction: column; gap: 7px; }
.field-full { grid-column: 1 / -1; }
.field label { font-size: 14.5px; font-weight: 600; color: var(--ink-soft); }
.field label .req { color: var(--err); }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15.5px; color: var(--ink);
  padding: 12.5px 14px; border: 1px solid #d5d9e0; border-radius: 10px;
  background: #fff; transition: border-color 0.2s ease, box-shadow 0.2s ease;
  width: 100%; appearance: none;
}
.field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 24 24' fill='none' stroke='%235f6b7a' stroke-width='2.4' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px;
}
.field textarea { resize: vertical; min-height: 110px; }
.field input::placeholder, .field textarea::placeholder { color: #9aa4b1; }
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none; border-color: var(--navy-600);
  box-shadow: 0 0 0 3.5px rgba(22, 52, 94, 0.12);
}
.field.invalid input, .field.invalid select, .field.invalid textarea { border-color: var(--err); }
.field-error { display: none; font-size: 13px; color: var(--err); }
.field.invalid .field-error { display: block; }

/* File dropzone */
.file-zone {
  display: flex; align-items: center; gap: 14px;
  border: 1.5px dashed #c9cfd8; border-radius: 12px; background: var(--paper);
  padding: 16px 18px; cursor: pointer; transition: border-color 0.2s ease, background 0.2s ease;
}
.file-zone:hover { border-color: var(--brass); background: rgba(179, 137, 74, 0.05); }
.file-zone input { display: none; }
.fz-icon {
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 10px;
  background: rgba(179, 137, 74, 0.12); color: var(--brass-deep); display: grid; place-items: center;
}
.fz-text { font-size: 14px; color: var(--ink-soft); line-height: 1.55; }
.fz-text strong { display: block; font-size: 14.5px; color: var(--navy-800); }
.fz-hint { font-size: 12.5px; color: var(--muted); }

.form-foot {
  margin-top: 24px; padding-top: 22px; border-top: 1px solid var(--line);
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 16px;
}
.privacy-mini {
  display: flex; gap: 10px; align-items: flex-start;
  font-size: 13px; color: var(--muted); max-width: 430px; line-height: 1.65;
}
.privacy-mini svg { flex: 0 0 auto; margin-top: 2px; color: var(--brass-deep); }

/* Success panel */
.success-panel {
  display: none; text-align: center; padding: 46px 30px;
}
.success-panel.show { display: block; animation: fadeUp 0.5s ease; }
.success-icon {
  width: 64px; height: 64px; margin: 0 auto 20px; border-radius: 50%;
  background: rgba(46, 125, 91, 0.1); color: var(--ok); display: grid; place-items: center;
}
.success-panel h3 { font-size: 21px; margin-bottom: 10px; }
.success-panel p { color: var(--muted); font-size: 15px; max-width: 480px; margin: 0 auto 8px; }
.ref-chip {
  display: inline-flex; align-items: center; gap: 8px; margin: 14px 0 6px;
  font-family: var(--latin); font-size: 14px; font-weight: 600; letter-spacing: 0.06em;
  color: var(--navy-800); background: var(--paper-warm);
  border: 1px solid var(--line); border-radius: 999px; padding: 7px 18px;
}
.success-actions { margin-top: 20px; display: flex; flex-wrap: wrap; gap: 12px; justify-content: center; }
.success-demo-note { margin-top: 16px; font-size: 12px; color: #9aa4b1; }

@keyframes fadeUp { from { opacity: 0; transform: translateY(14px); } to { opacity: 1; transform: none; } }

/* ============================================================================
   Fee card
   ============================================================================ */
.fee-card {
  max-width: 560px; margin: 0 auto; text-align: center; padding: 44px 40px 38px;
  position: relative; overflow: hidden;
}
.fee-card::before {
  content: ""; position: absolute; top: 0; left: 0; right: 0; height: 4px;
  background: linear-gradient(90deg, var(--brass), var(--brass-light), var(--brass));
}
.fee-eyebrow {
  font-size: 12.5px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--brass-deep); margin-bottom: 18px;
}
.fee-price {
  font-family: var(--serif); font-size: clamp(2.3rem, 5vw, 3rem); font-weight: 700;
  color: var(--navy-800); line-height: 1.2;
}
.fee-duration { font-size: 15.5px; color: var(--ink-soft); margin-top: 6px; }
.fee-amount-note { font-size: 12.5px; color: var(--muted); margin-top: 10px; }
.fee-divider { width: 56px; height: 2px; background: var(--line); margin: 26px auto; }
.fee-includes { list-style: none; margin: 0 0 8px; padding: 0; text-align: left; max-width: 360px; margin-inline: auto; }
.fee-includes li {
  display: flex; gap: 11px; align-items: center;
  font-size: 15px; color: var(--ink-soft); padding: 8px 0;
}
.fee-includes li svg { flex: 0 0 auto; color: var(--ok); }
.fee-card .btn { margin-top: 22px; width: 100%; }
.fee-note { margin-top: 18px; font-size: 13px; color: var(--muted); line-height: 1.7; max-width: 420px; margin-inline: auto; }

/* ============================================================================
   Privacy band
   ============================================================================ */
.privacy-band {
  background:
    radial-gradient(800px 400px at 85% 0%, rgba(179, 137, 74, 0.13), transparent 55%),
    var(--navy-900);
  color: #d8dde5;
  padding: 90px 0;
}
.privacy-band .privacy-grid {
  display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 56px; align-items: center;
}
.privacy-icon {
  width: 58px; height: 58px; border-radius: 15px; margin-bottom: 24px;
  background: rgba(179, 137, 74, 0.14); border: 1px solid rgba(179, 137, 74, 0.35);
  color: var(--brass-light); display: grid; place-items: center;
}
.privacy-band h2 { color: #f4efe5; font-size: clamp(1.7rem, 3vw, 2.3rem); margin-bottom: 16px; }
.privacy-band p { color: #b9c1cd; font-size: 16px; }
.privacy-links { display: flex; flex-direction: column; gap: 14px; }
.privacy-link {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  background: rgba(255, 255, 255, 0.045); border: 1px solid rgba(255, 255, 255, 0.11);
  border-radius: 14px; padding: 20px 24px; color: #e8e2d6;
  transition: background 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}
.privacy-link:hover { background: rgba(255, 255, 255, 0.08); border-color: rgba(179, 137, 74, 0.5); transform: translateX(5px); }
.privacy-link .pl-title { font-weight: 600; font-size: 16px; }
.privacy-link .pl-sub { font-size: 13px; color: #98a2b0; display: block; margin-top: 2px; }
.privacy-link svg { color: var(--brass-light); flex: 0 0 auto; }

/* ============================================================================
   Disclaimer
   ============================================================================ */
.disclaimer-card {
  max-width: 880px; margin: 0 auto;
  background: #fff; border: 1px solid var(--line); border-left: 4px solid var(--brass);
  border-radius: var(--radius); padding: 36px 40px; box-shadow: var(--shadow-sm);
}
.disclaimer-head { display: flex; align-items: center; gap: 14px; margin-bottom: 16px; }
.disclaimer-head svg { color: var(--brass-deep); flex: 0 0 auto; }
.disclaimer-head h2 { font-size: 22px; }
.disclaimer-card p { color: var(--ink-soft); font-size: 15.5px; }
.disclaimer-card p:first-of-type { margin-top: 0; }

/* ============================================================================
   FAQ
   ============================================================================ */
.faq-list { max-width: 820px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 13px; overflow: hidden; transition: border-color 0.25s ease, box-shadow 0.25s ease; }
.faq-item.open { border-color: rgba(179, 137, 74, 0.45); box-shadow: var(--shadow-sm); }
.faq-q {
  width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 18px;
  background: none; border: 0; cursor: pointer; text-align: left;
  padding: 20px 24px; font-family: var(--sans); font-size: 16.5px; font-weight: 600; color: var(--navy-800);
  line-height: 1.55;
}
.faq-q .chev {
  flex: 0 0 auto; width: 30px; height: 30px; border-radius: 50%;
  background: var(--paper-warm); color: var(--brass-deep); display: grid; place-items: center;
  transition: transform 0.32s ease, background 0.32s ease;
}
.faq-item.open .chev { transform: rotate(180deg); background: rgba(179, 137, 74, 0.16); }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.38s ease; }
.faq-a-inner { padding: 0 24px 22px; color: var(--muted); font-size: 15.5px; line-height: 1.85; }

/* ============================================================================
   Testimonials
   ============================================================================ */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.testimonial-card { padding: 30px 28px; display: flex; flex-direction: column; }
.testimonial-quote-mark { color: rgba(179, 137, 74, 0.5); margin-bottom: 14px; }
.testimonial-card blockquote {
  margin: 0 0 20px; font-size: 15.5px; color: var(--ink-soft); line-height: 1.85; flex: 1;
}
.testimonial-meta { display: flex; align-items: center; gap: 13px; }
.testimonial-avatar {
  width: 44px; height: 44px; border-radius: 50%; object-fit: cover;
  background: var(--paper-warm); border: 1px solid var(--line);
}
.testimonial-name { font-weight: 600; font-size: 15px; color: var(--navy-800); line-height: 1.4; }
.testimonial-loc { font-size: 13px; color: var(--muted); }
.testimonial-date { margin-left: auto; font-size: 12.5px; color: var(--muted); white-space: nowrap; }
.testimonial-empty {
  border: 1.5px dashed #cfd4dc; border-radius: var(--radius-lg);
  padding: 56px 40px; text-align: center; color: var(--muted);
  display: flex; flex-direction: column; align-items: center; gap: 14px;
}
.testimonial-empty svg { color: rgba(179, 137, 74, 0.55); }
.testimonial-empty p { margin: 0; font-size: 16px; }

/* ============================================================================
   Contact
   ============================================================================ */
.contact-grid { display: grid; grid-template-columns: 0.92fr 1.08fr; gap: 30px; align-items: stretch; }
.contact-info { padding: 36px; display: flex; flex-direction: column; }
.contact-list { list-style: none; margin: 0 0 8px; padding: 0; flex: 1; }
.contact-list li {
  display: flex; gap: 15px; align-items: flex-start;
  padding: 15px 0; border-bottom: 1px solid var(--line);
}
.contact-list li:last-child { border-bottom: 0; }
.ci-icon {
  width: 42px; height: 42px; flex: 0 0 auto; border-radius: 11px;
  background: rgba(11, 31, 58, 0.05); color: var(--navy-700); display: grid; place-items: center;
}
.ci-label { font-size: 12.5px; color: var(--muted); letter-spacing: 0.04em; }
.ci-value { font-size: 15.5px; font-weight: 600; color: var(--navy-800); line-height: 1.55; }
.ci-value a { color: var(--navy-700); }
.ci-value a:hover { color: var(--brass-deep); text-decoration: underline; }
.contact-ctas { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 22px; }
.contact-ctas .btn { flex: 1 1 auto; }

.map-card { border-radius: var(--radius-lg); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); background: var(--mist); min-height: 380px; position: relative; }
.map-card iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; filter: saturate(0.85); }
.map-fallback {
  position: absolute; inset: 0; display: none; flex-direction: column; gap: 10px;
  align-items: center; justify-content: center; color: var(--muted); padding: 30px; text-align: center;
}

/* ============================================================================
   Footer
   ============================================================================ */
.site-footer { background: var(--navy-950); color: #aab3c0; padding: 72px 0 0; }
.footer-grid {
  display: grid; grid-template-columns: 1.3fr 0.85fr 1fr; gap: 48px;
  padding-bottom: 52px; border-bottom: 1px solid rgba(255, 255, 255, 0.07);
}
.footer-brand .brand-name { color: #f4efe5; }
.footer-brand .brand-mark { background: rgba(255, 255, 255, 0.06); }
.footer-tagline { font-size: 14.5px; color: #8b95a5; margin-top: 16px; max-width: 320px; line-height: 1.8; }
.footer-loc { display: flex; gap: 9px; align-items: center; margin-top: 16px; font-size: 14px; color: #98a2b0; }
.footer-loc svg { color: var(--brass-light); }
.footer-col h4 {
  font-family: var(--sans); font-size: 13px; font-weight: 600; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brass-light); margin-bottom: 20px;
}
.footer-links { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 11px; }
.footer-links a { font-size: 14.5px; color: #aab3c0; transition: color 0.2s ease, padding-left 0.2s ease; }
.footer-links a:hover { color: var(--brass-light); padding-left: 5px; }
.footer-contact { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: 13px; font-size: 14.5px; }
.footer-contact li { display: flex; gap: 11px; align-items: flex-start; }
.footer-contact svg { flex: 0 0 auto; margin-top: 4px; color: var(--brass-light); }
.footer-bottom {
  display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 12px;
  padding: 24px 0; font-size: 13px; color: #79838f;
}
.footer-bottom .fb-note { max-width: 560px; line-height: 1.7; }
.footer-admin { color: #79838f; font-size: 12.5px; }
.footer-admin:hover { color: var(--brass-light); }

/* ============================================================================
   Mobile CTA bar & WhatsApp FAB
   ============================================================================ */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 90;
  display: none; align-items: stretch; gap: 10px;
  padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
  background: rgba(255, 255, 255, 0.97);
  -webkit-backdrop-filter: blur(10px); backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
  box-shadow: 0 -8px 28px rgba(11, 31, 58, 0.1);
}
.mobile-cta .mb-call {
  flex: 0 0 auto; width: 54px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--paper); color: var(--navy-800); display: grid; place-items: center;
}
.mobile-cta .mb-book { flex: 1; border-radius: 12px; padding: 13px; font-size: 15.5px; }

.wa-fab {
  position: fixed; right: 20px; bottom: 96px; z-index: 89;
  width: 54px; height: 54px; border-radius: 50%;
  background: #1faa55; color: #fff; display: grid; place-items: center;
  box-shadow: 0 10px 26px rgba(31, 170, 85, 0.4);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.wa-fab:hover { transform: translateY(-3px) scale(1.04); box-shadow: 0 14px 32px rgba(31, 170, 85, 0.5); }
.wa-fab.pulse::after {
  content: ""; position: absolute; inset: -4px; border-radius: 50%;
  border: 2px solid rgba(31, 170, 85, 0.5); animation: waPulse 2.4s ease-out infinite;
}
@keyframes waPulse { 0% { transform: scale(0.9); opacity: 0.9; } 70%, 100% { transform: scale(1.35); opacity: 0; } }

/* ============================================================================
   Reveal animations
   ============================================================================ */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: 0.08s; }
.reveal[data-delay="2"] { transition-delay: 0.16s; }
.reveal[data-delay="3"] { transition-delay: 0.24s; }
.reveal[data-delay="4"] { transition-delay: 0.32s; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: 0.01ms !important; transition-duration: 0.01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* ============================================================================
   Responsive
   ============================================================================ */
@media (max-width: 1180px) {
  .header-cta-wa { display: none; }
}
@media (max-width: 1024px) {
  .main-nav { display: none; }
  .nav-toggle { display: flex; }
  .header-cta-primary { display: none; }
  .hero { padding: 72px 0 140px; }
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-portrait { max-width: 460px; }
  .hero-arch { display: none; }
  .stats-card { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(3)::before { display: none; }
  .stat { padding: 24px 20px; }
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-highlights-card { position: static; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .steps-grid { grid-template-columns: repeat(2, 1fr); }
  .booking-grid { grid-template-columns: 1fr; }
  .booking-aside { position: static; }
  .privacy-band .privacy-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .mobile-cta { display: flex; }
  body { padding-bottom: 78px; }
  .wa-fab { bottom: 100px; right: 16px; }
}
@media (max-width: 720px) {
  .section { padding: 72px 0; }
  .hero { padding: 56px 0 120px; }
  .hero-title { font-size: clamp(1.9rem, 7.4vw, 2.5rem); }
  .hero-sub { font-size: 16px; }
  .hero-ctas .btn { width: 100%; }
  .stats-wrap { margin-top: -56px; }
  .form-card { padding: 26px 22px; }
  .form-grid { grid-template-columns: 1fr; }
  .form-foot { flex-direction: column; align-items: stretch; }
  .form-foot .btn { width: 100%; }
  .services-grid, .steps-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .disclaimer-card { padding: 28px 24px; }
  .footer-grid { grid-template-columns: 1fr; gap: 36px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  .portrait-badge { left: 12px; bottom: 16px; max-width: 220px; padding: 11px 14px; }
  .brand-sub { display: none; }
}
@media (max-width: 520px) {
  .stats-card { grid-template-columns: 1fr 1fr; }
  .stat + .stat::before { display: none; }
  .stat:nth-child(even) { border-left: 1px solid var(--line); }
  .stat { padding: 20px 14px; }
  .stat-value { font-size: 25px; }
  .btn { padding: 13px 20px; }
  .timeline { padding-left: 38px; }
  .tl-item::before { left: -34px; }
  .faq-q { padding: 17px 18px; font-size: 15.5px; }
  .faq-a-inner { padding: 0 18px 18px; }
  .fee-card { padding: 34px 22px 30px; }
  .contact-ctas .btn { flex: 1 1 100%; }
}
