/* =========================================================================
   Ashford & Wray LLP — Design System
   Palette: Navy #0f2035 · Charcoal #22262b · White #ffffff · Gold #c8a24a
   ========================================================================= */

:root {
  --navy: #0f2035;
  --navy-900: #0a1626;
  --navy-800: #14294241;
  --navy-deep: #0a1626;
  --charcoal: #22262b;
  --charcoal-soft: #3a4048;
  --gold: #c8a24a;
  --gold-soft: #d9bd77;
  --gold-deep: #a9863a;
  --white: #ffffff;
  --ivory: #f7f5f0;
  --mist: #eef1f5;
  --line: #e3e6ea;
  --text: #2b2f36;
  --text-soft: #5c636d;
  --text-invert: #eef1f5;

  --font-serif: "Cormorant Garamond", "Playfair Display", Georgia, serif;
  --font-sans: "Inter", "Helvetica Neue", Arial, sans-serif;

  --container: 1200px;
  --radius: 4px;
  --radius-lg: 10px;
  --shadow-sm: 0 2px 10px rgba(15, 32, 53, 0.06);
  --shadow-md: 0 14px 40px rgba(15, 32, 53, 0.10);
  --shadow-lg: 0 30px 70px rgba(15, 32, 53, 0.16);
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --nav-h: 84px;
}

/* ----------------------------- Reset ----------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--font-sans);
  color: var(--text);
  background: var(--white);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

:focus-visible { outline: 3px solid var(--gold); outline-offset: 3px; }

/* --------------------------- Typography -------------------------------- */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 600; line-height: 1.12; color: var(--navy); letter-spacing: -0.01em; }
h1 { font-size: clamp(2.6rem, 5.2vw, 4.4rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.8rem); }
p { color: var(--text-soft); }

.eyebrow {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold-deep);
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.eyebrow::before { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center::after { content: ""; width: 34px; height: 1px; background: var(--gold); display: inline-block; }
.eyebrow.center { justify-content: center; }

/* --------------------------- Layout ------------------------------------ */
.container { width: 100%; max-width: var(--container); margin: 0 auto; padding: 0 28px; }
.section { padding: clamp(70px, 9vw, 120px) 0; }
.section--tight { padding: clamp(50px, 6vw, 80px) 0; }
.section--navy { background: var(--navy); color: var(--text-invert); }
.section--navy h1, .section--navy h2, .section--navy h3 { color: #fff; }
.section--ivory { background: var(--ivory); }
.section-head { max-width: 720px; margin: 0 auto 56px; text-align: center; }
.section-head p { margin-top: 16px; font-size: 1.08rem; }
.grid { display: grid; gap: 28px; }
.text-center { text-align: center; }

/* --------------------------- Buttons ----------------------------------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  padding: 15px 30px; font-family: var(--font-sans); font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.04em; border-radius: var(--radius); transition: all 0.35s var(--ease);
  border: 1.5px solid transparent; cursor: pointer; text-align: center;
}
.btn svg { width: 17px; height: 17px; }
.btn--gold { background: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: 0 10px 26px rgba(200,162,74,0.35); }
.btn--navy { background: var(--navy); color: #fff; }
.btn--navy:hover { background: var(--navy-900); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn--outline { border-color: rgba(255,255,255,0.55); color: #fff; }
.btn--outline:hover { background: #fff; color: var(--navy); border-color: #fff; }
.btn--ghost { border-color: var(--line); color: var(--navy); }
.btn--ghost:hover { border-color: var(--gold); color: var(--gold-deep); }
.btn--sm { padding: 11px 20px; font-size: 0.82rem; }
.link-more { display: inline-flex; align-items: center; gap: 0.45rem; font-weight: 600; font-size: 0.85rem; letter-spacing: 0.05em; color: var(--gold-deep); text-transform: uppercase; transition: gap 0.3s var(--ease); }
.link-more:hover { gap: 0.85rem; }

/* --------------------------- Header ------------------------------------ */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 900; height: var(--nav-h);
  display: flex; align-items: center;
  background: transparent; transition: background 0.4s var(--ease), box-shadow 0.4s var(--ease), height 0.4s var(--ease);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 20px; }
.header.scrolled { background: rgba(255,255,255,0.97); box-shadow: var(--shadow-sm); height: 70px; backdrop-filter: saturate(140%) blur(6px); }
.brand { display: flex; align-items: center; gap: 12px; }
.brand__mark { width: 42px; height: 42px; flex: none; }
.brand__text { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--font-serif); font-size: 1.4rem; font-weight: 600; color: #fff; letter-spacing: 0.02em; }
.brand__sub { font-family: var(--font-sans); font-size: 0.6rem; letter-spacing: 0.34em; text-transform: uppercase; color: var(--gold-soft); margin-top: 4px; }
.header.scrolled .brand__name { color: var(--navy); }
.header.scrolled .brand__sub { color: var(--gold-deep); }

.nav { display: flex; align-items: center; gap: 4px; }
.nav a {
  position: relative; padding: 10px 13px; font-size: 0.86rem; font-weight: 500; letter-spacing: 0.02em;
  color: rgba(255,255,255,0.9); transition: color 0.3s;
}
.nav a::after { content: ""; position: absolute; left: 13px; right: 13px; bottom: 4px; height: 1.5px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.35s var(--ease); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }
.nav a:hover, .nav a.active { color: #fff; }
.header.scrolled .nav a { color: var(--charcoal); }
.header.scrolled .nav a:hover, .header.scrolled .nav a.active { color: var(--navy); }

.header__actions { display: flex; align-items: center; gap: 14px; }
.icon-btn { width: 40px; height: 40px; display: inline-flex; align-items: center; justify-content: center; border-radius: 50%; color: rgba(255,255,255,0.9); transition: background 0.3s, color 0.3s; }
.icon-btn svg { width: 20px; height: 20px; }
.header.scrolled .icon-btn { color: var(--navy); }
.icon-btn:hover { background: rgba(200,162,74,0.18); color: var(--gold); }
.header__cta { flex: none; }

.burger { display: none; flex-direction: column; gap: 5px; width: 40px; height: 40px; align-items: center; justify-content: center; }
.burger span { width: 24px; height: 2px; background: #fff; transition: all 0.3s var(--ease); }
.header.scrolled .burger span { background: var(--navy); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; z-index: 890; background: var(--navy);
  display: flex; flex-direction: column; justify-content: center; align-items: center; gap: 6px;
  opacity: 0; visibility: hidden; transition: opacity 0.4s var(--ease); padding: 90px 24px 40px;
}
.mobile-menu.open { opacity: 1; visibility: visible; }
.mobile-menu a { font-family: var(--font-serif); font-size: 1.7rem; color: #fff; padding: 8px 0; }
.mobile-menu a:hover { color: var(--gold-soft); }
.mobile-menu .btn { margin-top: 20px; }

/* Search overlay */
.search-overlay { position: fixed; inset: 0; z-index: 950; background: rgba(10,22,38,0.96); display: flex; align-items: flex-start; justify-content: center; padding-top: 18vh; opacity: 0; visibility: hidden; transition: opacity 0.35s var(--ease); }
.search-overlay.open { opacity: 1; visibility: visible; }
.search-box { width: min(680px, 90vw); }
.search-box label { color: var(--gold-soft); font-size: 0.8rem; letter-spacing: 0.2em; text-transform: uppercase; }
.search-box input { width: 100%; background: transparent; border: none; border-bottom: 2px solid rgba(255,255,255,0.35); color: #fff; font-family: var(--font-serif); font-size: 2rem; padding: 14px 0; margin-top: 10px; }
.search-box input::placeholder { color: rgba(255,255,255,0.4); }
.search-close { position: absolute; top: 30px; right: 34px; color: #fff; width: 46px; height: 46px; border: 1px solid rgba(255,255,255,0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.search-close:hover { border-color: var(--gold); color: var(--gold); }

/* --------------------------- Hero -------------------------------------- */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; color: #fff; overflow: hidden; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(105deg, rgba(10,22,38,0.92) 0%, rgba(10,22,38,0.72) 42%, rgba(10,22,38,0.30) 100%); }
.hero__inner { padding: calc(var(--nav-h) + 40px) 0 70px; max-width: 760px; }
.hero h1 { color: #fff; margin: 22px 0; }
.hero h1 .accent { color: var(--gold-soft); font-style: italic; }
.hero__sub { font-size: 1.18rem; color: rgba(238,241,245,0.86); max-width: 600px; }
.hero__cta { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 36px; }
.hero__scroll { position: absolute; bottom: 26px; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,0.7); font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 10px; }
.hero__scroll span { width: 1px; height: 44px; background: linear-gradient(var(--gold), transparent); animation: scrollpulse 2s infinite; }
@keyframes scrollpulse { 0%,100% { opacity: 0.3; transform: scaleY(0.6); } 50% { opacity: 1; transform: scaleY(1); } }

/* --------------------------- Trust bar --------------------------------- */
.trust { background: var(--navy-900); border-top: 1px solid rgba(200,162,74,0.2); }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 44px 0; }
.trust__item { text-align: center; color: #fff; border-right: 1px solid rgba(255,255,255,0.09); }
.trust__item:last-child { border-right: none; }
.trust__num { font-family: var(--font-serif); font-size: 2.6rem; color: var(--gold-soft); font-weight: 600; }
.trust__label { font-size: 0.82rem; letter-spacing: 0.08em; color: rgba(238,241,245,0.75); text-transform: uppercase; margin-top: 6px; }

/* --------------------------- Cards ------------------------------------- */
.card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 26px; }

.practice-card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px 30px;
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
  position: relative; overflow: hidden;
}
.practice-card::before { content: ""; position: absolute; left: 0; top: 0; width: 100%; height: 3px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.4s var(--ease); }
.practice-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); border-color: transparent; }
.practice-card:hover::before { transform: scaleX(1); }
.practice-card__icon { width: 58px; height: 58px; border-radius: 12px; background: var(--ivory); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; margin-bottom: 22px; transition: background 0.4s, color 0.4s; }
.practice-card__icon svg { width: 28px; height: 28px; }
.practice-card:hover .practice-card__icon { background: var(--navy); color: var(--gold-soft); }
.practice-card h3 { font-size: 1.35rem; margin-bottom: 10px; }
.practice-card p { font-size: 0.96rem; margin-bottom: 20px; }

/* Feature (why choose us) */
.feature-card { padding: 32px 28px; border-radius: var(--radius-lg); background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); transition: transform 0.4s var(--ease), background 0.4s; }
.feature-card:hover { transform: translateY(-6px); background: rgba(200,162,74,0.08); }
.feature-card__icon { width: 54px; height: 54px; border-radius: 50%; background: rgba(200,162,74,0.14); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.feature-card__icon svg { width: 26px; height: 26px; }
.feature-card h3 { color: #fff; font-size: 1.25rem; margin-bottom: 8px; }
.feature-card p { color: rgba(238,241,245,0.78); font-size: 0.95rem; }

/* --------------------------- About ------------------------------------- */
.about { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.about__media { position: relative; }
.about__media img { border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.about__badge { position: absolute; right: -22px; bottom: -22px; background: var(--gold); color: var(--navy); padding: 26px 30px; border-radius: var(--radius-lg); text-align: center; box-shadow: var(--shadow-md); }
.about__badge b { font-family: var(--font-serif); font-size: 2.6rem; display: block; line-height: 1; }
.about__badge span { font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase; }
.about h2 { margin: 18px 0 20px; }
.about p + p { margin-top: 16px; }
.values { display: grid; grid-template-columns: 1fr 1fr; gap: 16px 26px; margin-top: 28px; }
.values li { display: flex; gap: 12px; align-items: flex-start; font-weight: 500; color: var(--navy); font-size: 0.98rem; }
.values svg { width: 22px; height: 22px; color: var(--gold-deep); flex: none; margin-top: 2px; }

/* --------------------------- Team -------------------------------------- */
.team-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s; }
.team-card:hover { transform: translateY(-8px); box-shadow: var(--shadow-lg); }
.team-card__photo { position: relative; aspect-ratio: 3/4; overflow: hidden; background: var(--mist); }
.team-card__photo img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.team-card:hover .team-card__photo img { transform: scale(1.05); }
.team-card__overlay { position: absolute; inset: auto 0 0 0; padding: 16px; display: flex; gap: 10px; justify-content: center; background: linear-gradient(transparent, rgba(10,22,38,0.85)); opacity: 0; transform: translateY(10px); transition: all 0.4s var(--ease); }
.team-card:hover .team-card__overlay { opacity: 1; transform: translateY(0); }
.team-card__overlay a { width: 40px; height: 40px; border-radius: 50%; background: rgba(255,255,255,0.15); color: #fff; display: flex; align-items: center; justify-content: center; backdrop-filter: blur(4px); transition: background 0.3s; }
.team-card__overlay a:hover { background: var(--gold); color: var(--navy); }
.team-card__body { padding: 24px 24px 28px; text-align: center; }
.team-card__body h3 { font-size: 1.35rem; }
.team-card__role { color: var(--gold-deep); font-size: 0.82rem; letter-spacing: 0.08em; text-transform: uppercase; font-weight: 600; margin: 6px 0 12px; }
.team-card__tags { display: flex; flex-wrap: wrap; gap: 6px; justify-content: center; margin-bottom: 14px; }
.team-card__tags span { font-size: 0.72rem; background: var(--ivory); color: var(--charcoal-soft); padding: 4px 10px; border-radius: 100px; }
.team-card__qual { font-size: 0.85rem; color: var(--text-soft); }

/* --------------------------- Stats ------------------------------------- */
.stats { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; }
.stat { text-align: center; }
.stat__num { font-family: var(--font-serif); font-size: clamp(2.6rem, 5vw, 3.8rem); font-weight: 600; color: var(--gold-soft); line-height: 1; }
.stat__label { margin-top: 12px; font-size: 0.9rem; letter-spacing: 0.06em; text-transform: uppercase; color: rgba(238,241,245,0.8); }

/* --------------------------- Testimonials ------------------------------ */
.tst { position: relative; max-width: 900px; margin: 0 auto; }
.tst__track { overflow: hidden; }
.tst__slides { display: flex; transition: transform 0.6s var(--ease); }
.tst__slide { min-width: 100%; padding: 10px 20px; }
.tst__card { background: #fff; border-radius: var(--radius-lg); padding: clamp(34px, 5vw, 56px); box-shadow: var(--shadow-md); text-align: center; }
.tst__stars { color: var(--gold); display: flex; gap: 4px; justify-content: center; margin-bottom: 20px; }
.tst__stars svg { width: 22px; height: 22px; }
.tst__quote { font-family: var(--font-serif); font-size: clamp(1.3rem, 2.6vw, 1.75rem); font-style: italic; color: var(--navy); line-height: 1.45; }
.tst__author { margin-top: 26px; display: flex; flex-direction: column; align-items: center; }
.tst__avatar { width: 54px; height: 54px; border-radius: 50%; background: var(--navy); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; font-family: var(--font-serif); font-size: 1.3rem; margin-bottom: 12px; }
.tst__name { font-weight: 600; color: var(--navy); }
.tst__meta { font-size: 0.85rem; color: var(--text-soft); }
.tst__nav { display: flex; justify-content: center; gap: 12px; margin-top: 30px; align-items: center; }
.tst__arrow { width: 48px; height: 48px; border-radius: 50%; border: 1.5px solid var(--line); color: var(--navy); display: flex; align-items: center; justify-content: center; transition: all 0.3s; }
.tst__arrow:hover { background: var(--navy); color: #fff; border-color: var(--navy); }
.tst__dots { display: flex; gap: 8px; }
.tst__dot { width: 9px; height: 9px; border-radius: 50%; background: var(--line); transition: all 0.3s; }
.tst__dot.active { background: var(--gold); width: 26px; border-radius: 100px; }

/* --------------------------- Blog -------------------------------------- */
.blog-card { background: #fff; border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); transition: transform 0.4s var(--ease), box-shadow 0.4s; display: flex; flex-direction: column; }
.blog-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.blog-card__img { aspect-ratio: 3/2; overflow: hidden; background: var(--mist); }
.blog-card__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.6s var(--ease); }
.blog-card:hover .blog-card__img img { transform: scale(1.06); }
.blog-card__body { padding: 26px 26px 30px; flex: 1; display: flex; flex-direction: column; }
.blog-card__meta { display: flex; gap: 14px; font-size: 0.76rem; letter-spacing: 0.05em; text-transform: uppercase; color: var(--text-soft); margin-bottom: 14px; }
.blog-card__meta .cat { color: var(--gold-deep); font-weight: 600; }
.blog-card h3 { font-size: 1.3rem; margin-bottom: 12px; }
.blog-card p { font-size: 0.94rem; margin-bottom: 18px; flex: 1; }

/* --------------------------- Accordion --------------------------------- */
.accordion { max-width: 820px; margin: 0 auto; }
.acc-item { border-bottom: 1px solid var(--line); }
.acc-head { width: 100%; display: flex; justify-content: space-between; align-items: center; gap: 20px; padding: 26px 6px; text-align: left; font-family: var(--font-serif); font-size: 1.25rem; color: var(--navy); font-weight: 600; }
.acc-icon { flex: none; width: 30px; height: 30px; border-radius: 50%; border: 1.5px solid var(--gold); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; transition: all 0.35s var(--ease); font-size: 1.2rem; }
.acc-item.open .acc-icon { background: var(--gold); color: #fff; transform: rotate(180deg); }
.acc-body { max-height: 0; overflow: hidden; transition: max-height 0.4s var(--ease); }
.acc-body p { padding: 0 6px 26px; font-size: 1rem; }

/* --------------------------- Contact ----------------------------------- */
.contact { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 54px; }
.contact__info li { display: flex; gap: 16px; padding: 18px 0; border-bottom: 1px solid var(--line); }
.contact__info .ico { width: 46px; height: 46px; flex: none; border-radius: 12px; background: var(--ivory); color: var(--gold-deep); display: flex; align-items: center; justify-content: center; }
.contact__info .ico svg { width: 22px; height: 22px; }
.contact__info b { display: block; color: var(--navy); font-family: var(--font-serif); font-size: 1.1rem; }
.contact__info span, .contact__info a { color: var(--text-soft); font-size: 0.95rem; }
.contact__info a:hover { color: var(--gold-deep); }
.form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius-lg); padding: 36px; box-shadow: var(--shadow-sm); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { margin-bottom: 18px; }
.field label { display: block; font-size: 0.82rem; font-weight: 600; color: var(--navy); margin-bottom: 8px; letter-spacing: 0.02em; }
.field input, .field select, .field textarea {
  width: 100%; padding: 13px 15px; border: 1.5px solid var(--line); border-radius: var(--radius);
  font-family: inherit; font-size: 0.95rem; color: var(--text); background: var(--ivory); transition: border-color 0.3s, background 0.3s;
}
.field input:focus, .field select:focus, .field textarea:focus { border-color: var(--gold); background: #fff; outline: none; }
.field textarea { resize: vertical; min-height: 120px; }
.map-frame { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-sm); border: 1px solid var(--line); }
.map-frame iframe { width: 100%; height: 100%; min-height: 320px; border: 0; display: block; filter: grayscale(0.2) contrast(1.05); }

/* --------------------------- Page banner ------------------------------- */
.page-banner { position: relative; padding: calc(var(--nav-h) + 70px) 0 70px; color: #fff; text-align: center; overflow: hidden; }
.page-banner__bg { position: absolute; inset: 0; z-index: -2; background: var(--navy); }
.page-banner__bg img { width: 100%; height: 100%; object-fit: cover; opacity: 0.28; }
.page-banner::after { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(rgba(10,22,38,0.7), rgba(10,22,38,0.85)); }
.page-banner h1 { color: #fff; margin-bottom: 14px; }
.page-banner p { color: rgba(238,241,245,0.82); max-width: 620px; margin: 0 auto; }
.crumb { display: flex; gap: 10px; justify-content: center; margin-top: 20px; font-size: 0.85rem; color: rgba(238,241,245,0.7); }
.crumb a:hover { color: var(--gold-soft); }
.crumb span { color: var(--gold-soft); }

/* --------------------------- CTA band ---------------------------------- */
.cta-band { background: linear-gradient(120deg, var(--navy) 0%, var(--navy-900) 100%); color: #fff; text-align: center; position: relative; overflow: hidden; }
.cta-band::before { content: ""; position: absolute; top: -60px; right: -60px; width: 260px; height: 260px; border: 1px solid rgba(200,162,74,0.2); border-radius: 50%; }
.cta-band::after { content: ""; position: absolute; bottom: -90px; left: -50px; width: 320px; height: 320px; border: 1px solid rgba(200,162,74,0.12); border-radius: 50%; }
.cta-band h2 { color: #fff; }
.cta-band p { color: rgba(238,241,245,0.82); max-width: 560px; margin: 16px auto 30px; }
.cta-band .hero__cta { justify-content: center; }

/* --------------------------- Footer ------------------------------------ */
.footer { background: var(--navy-900); color: rgba(238,241,245,0.72); padding-top: 72px; }
.footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 50px; }
.footer .brand__name { color: #fff; }
.footer p { color: rgba(238,241,245,0.6); font-size: 0.92rem; margin: 18px 0; }
.footer h4 { color: #fff; font-family: var(--font-sans); font-size: 0.85rem; letter-spacing: 0.14em; text-transform: uppercase; margin-bottom: 20px; }
.footer__links li { margin-bottom: 11px; }
.footer__links a { font-size: 0.92rem; color: rgba(238,241,245,0.68); transition: color 0.3s, padding-left 0.3s; }
.footer__links a:hover { color: var(--gold-soft); padding-left: 5px; }
.socials { display: flex; gap: 12px; margin-top: 20px; }
.socials a { width: 40px; height: 40px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.16); display: flex; align-items: center; justify-content: center; color: rgba(238,241,245,0.8); transition: all 0.3s; }
.socials a:hover { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.socials svg { width: 18px; height: 18px; }
.newsletter { display: flex; gap: 8px; margin-top: 16px; }
.newsletter input { flex: 1; padding: 12px 14px; border-radius: var(--radius); border: 1px solid rgba(255,255,255,0.16); background: rgba(255,255,255,0.06); color: #fff; font-size: 0.9rem; }
.newsletter input::placeholder { color: rgba(238,241,245,0.5); }
.newsletter button { flex: none; width: 46px; border-radius: var(--radius); background: var(--gold); color: var(--navy); display: flex; align-items: center; justify-content: center; }
.newsletter button:hover { background: var(--gold-soft); }
.footer__bottom { border-top: 1px solid rgba(255,255,255,0.08); padding: 24px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 0.85rem; }
.footer__bottom nav { display: flex; gap: 22px; flex-wrap: wrap; }
.footer__bottom a:hover { color: var(--gold-soft); }

/* --------------------------- Widgets ----------------------------------- */
.to-top { position: fixed; right: 26px; bottom: 26px; z-index: 800; width: 48px; height: 48px; border-radius: 50%; background: var(--navy); color: var(--gold-soft); display: flex; align-items: center; justify-content: center; box-shadow: var(--shadow-md); opacity: 0; visibility: hidden; transform: translateY(14px); transition: all 0.4s var(--ease); }
.to-top.show { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--navy); }

.top-bar { background: var(--navy-900); color: rgba(238,241,245,0.7); font-size: 0.8rem; }

/* --------------------------- Reveal anim ------------------------------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }
.reveal[data-d="1"] { transition-delay: 0.1s; }
.reveal[data-d="2"] { transition-delay: 0.2s; }
.reveal[data-d="3"] { transition-delay: 0.3s; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } html { scroll-behavior: auto; } }

/* --------------------------- Utilities --------------------------------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.mt-0 { margin-top: 0; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy); padding: 10px 18px; z-index: 1000; }
.skip-link:focus { left: 10px; top: 10px; }

/* --------------------------- Responsive -------------------------------- */
@media (max-width: 1080px) {
  .nav, .header__cta { display: none; }
  .burger { display: flex; }
  .footer__grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 900px) {
  .about, .contact, .split { grid-template-columns: 1fr; gap: 40px; }
  .about__media { max-width: 520px; }
  .trust__grid, .stats { grid-template-columns: 1fr 1fr; }
  .trust__item:nth-child(2) { border-right: none; }
  .about__badge { right: 16px; }
}
@media (max-width: 620px) {
  body { font-size: 16px; }
  .container { padding: 0 20px; }
  .trust__grid, .stats { grid-template-columns: 1fr 1fr; gap: 24px 16px; }
  .footer__grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero__cta .btn { flex: 1; }
  .footer__bottom { flex-direction: column; }
}
