/* ------- Reset / base ------- */
* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: "Inter", ui-sans-serif, system-ui, -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
button { font-family: inherit; cursor: pointer; border: 0; background: none; padding: 0; color: inherit; }
a { color: inherit; text-decoration: none; }
ol, ul { margin: 0; padding: 0; list-style: none; }
p { margin: 0 0 1em; }

:root {
  --navy: #0B1E2D;
  --navy-2: #132A3D;
  --navy-3: #1B3A52;
  --cream: #F5EFE3;
  --cream-2: #EBE3D2;
  --paper: #FAF6EC;
  --brass: #B8894A;
  --brass-2: #D2A46B;
  --ink: #13202B;
  --ink-soft: #4A5866;
  --line: rgba(11, 30, 45, 0.14);
  --line-soft: rgba(11, 30, 45, 0.08);
  --line-light: rgba(245, 239, 227, 0.18);
  --serif: "Fraunces", "Cormorant Garamond", Georgia, serif;
  --mono: "JetBrains Mono", ui-monospace, Menlo, monospace;
  --wrap: 1280px;
}

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 28px; }
@media (max-width: 720px) { .wrap { padding: 0 20px; } }

/* ------- Typography ------- */
.eyebrow {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 11px;
  color: var(--brass);
  font-weight: 500;
}
.eyebrow--brass { color: var(--brass-2); }

.section-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(34px, 4.2vw, 58px);
  line-height: 1.02;
  letter-spacing: -0.02em;
  color: var(--navy);
  margin: 14px 0 18px;
  text-wrap: balance;
}
.section-title--light { color: var(--cream); }

.section-lede {
  max-width: 58ch;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.6;
}
.section-head { text-align: center; max-width: 820px; margin: 0 auto 64px; }
.section-head--dark .eyebrow { color: var(--brass-2); }
.section-head--left { text-align: left; margin-left: 0; }
.section-head .section-lede { margin: 0 auto; }

/* ------- Buttons ------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 14px 22px;
  border-radius: 999px;
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.01em;
  transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }
.btn--brass { background: var(--brass); color: var(--cream); }
.btn--brass:hover { background: #a47738; }
.btn--cream { background: var(--cream); color: var(--navy); }
.btn--cream:hover { background: #fff; }
.btn--navy { background: var(--navy); color: var(--cream); }
.btn--navy:hover { background: #071626; }
.btn--ghost { background: transparent; color: var(--navy); border-color: var(--line); }
.btn--ghost:hover { border-color: var(--navy); }
.btn--ghost-light { color: var(--cream); border-color: var(--line-light); }
.btn--ghost-light:hover { border-color: var(--cream); }
.btn[disabled] { opacity: 0.4; pointer-events: none; }

/* ------- Nav ------- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 40;
  transition: background .3s ease, box-shadow .3s ease, border-color .3s ease;
  border-bottom: 1px solid transparent;
}
.nav--scrolled {
  background: rgba(245, 239, 227, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom-color: var(--line-soft);
}
.nav__inner {
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex; align-items: center; gap: 28px;
}
.nav__brand { display: flex; align-items: center; gap: 12px; color: var(--cream); }
.nav--scrolled .nav__brand { color: var(--navy); }
.nav__mark { width: 30px; height: 30px; }
.nav__brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.nav__brand-1 {
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 500;
  letter-spacing: 0.01em;
}
.nav__brand-2 {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  opacity: 0.7;
  margin-top: 2px;
}
.nav__links {
  display: flex; gap: 28px; margin-left: auto;
  font-size: 14px; color: var(--cream);
}
.nav--scrolled .nav__links { color: var(--navy); }
.nav__links a { opacity: 0.85; transition: opacity .15s; }
.nav__links a:hover { opacity: 1; }
.nav__right { display: flex; align-items: center; gap: 16px; margin-left: auto; }
.nav__links ~ .nav__right { margin-left: 0; }
.lang {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.1em;
  color: var(--cream);
}
.nav--scrolled .lang { color: var(--navy); }
.lang button { opacity: 0.5; transition: opacity .15s; font-weight: 500; }
.lang button.is-on { opacity: 1; color: var(--brass); }
.lang span { opacity: 0.4; }
.nav__burger { display: none; width: 28px; height: 20px; position: relative; }
.nav__burger span {
  position: absolute; left: 0; right: 0; height: 1.5px;
  background: currentColor;
}
.nav__burger span:nth-child(1) { top: 2px; }
.nav__burger span:nth-child(2) { top: 9px; }
.nav__burger span:nth-child(3) { top: 16px; }

@media (max-width: 960px) {
  .nav__links {
    position: fixed; top: 66px; left: 0; right: 0;
    flex-direction: column; gap: 0;
    background: var(--navy); color: var(--cream);
    padding: 0;
    max-height: 0; overflow: hidden;
    transition: max-height .3s ease;
  }
  .nav__links.is-open { max-height: 500px; }
  .nav__links a { padding: 16px 28px; border-bottom: 1px solid var(--line-light); }
  .nav__burger { display: block; color: var(--cream); }
  .nav--scrolled .nav__burger { color: var(--navy); }
  .nav__right .btn { display: none; }
}

/* ------- Hero ------- */
.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  color: var(--cream);
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__img {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  opacity: 0; transition: opacity 2s ease-in-out;
  transform: scale(1.04);
  animation: heroZoom 18s ease-in-out infinite alternate;
}
.hero__img.is-on { opacity: 1; }
@keyframes heroZoom {
  from { transform: scale(1); }
  to { transform: scale(1.08); }
}
.hero__scrim {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(11,30,45,0.55) 0%, rgba(11,30,45,0.25) 40%, rgba(11,30,45,0.75) 100%),
    linear-gradient(90deg, rgba(11,30,45,0.55) 0%, rgba(11,30,45,0) 50%);
}
.hero__content {
  position: relative;
  max-width: var(--wrap);
  margin: 0 auto;
  padding: 120px 28px 80px;
  min-height: 100vh;
  display: flex; flex-direction: column; justify-content: center;
  max-width: 1000px;
  padding-left: clamp(28px, 6vw, 80px);
}
.hero__eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--brass-2);
  margin-bottom: 30px;
}
.hero__dot {
  width: 6px; height: 6px; border-radius: 50%; background: var(--brass-2);
  box-shadow: 0 0 0 4px rgba(210, 164, 107, 0.15);
  animation: pulse 2s ease-in-out infinite;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(210, 164, 107, 0.15); }
  50% { box-shadow: 0 0 0 8px rgba(210, 164, 107, 0.05); }
}
.hero__title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(46px, 7vw, 104px);
  line-height: 0.96;
  letter-spacing: -0.025em;
  margin: 0 0 28px;
  text-wrap: balance;
}
.hero__title span, .hero__title em {
  display: block;
  font-style: normal;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--brass-2);
}
.hero__lede {
  max-width: 52ch;
  font-size: clamp(16px, 1.4vw, 19px);
  line-height: 1.55;
  color: rgba(245, 239, 227, 0.85);
  margin-bottom: 40px;
}
.hero__ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__ctas .btn--ghost { color: var(--cream); border-color: var(--line-light); }
.hero__ctas .btn--ghost:hover { border-color: var(--cream); }
.hero__meta {
  position: absolute;
  bottom: 90px; right: clamp(28px, 6vw, 80px);
  display: flex; flex-direction: column; gap: 8px;
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(245, 239, 227, 0.7);
  text-align: right;
}
.hero__meta-item { display: flex; gap: 12px; justify-content: flex-end; }
.hero__meta-k { color: var(--brass-2); }
@media (max-width: 900px) { .hero__meta { display: none; } }

.hero__dots {
  position: absolute;
  bottom: 90px; left: clamp(28px, 6vw, 80px);
  display: flex; gap: 10px;
  z-index: 2;
}
.hero__dots button {
  width: 28px; height: 3px;
  background: rgba(245, 239, 227, 0.3);
  transition: background .25s ease, width .25s ease;
}
.hero__dots button.is-on { background: var(--brass-2); width: 44px; }
@media (max-width: 900px) { .hero__dots { bottom: 78px; } }

.marquee {
  position: absolute; bottom: 0; left: 0; right: 0;
  overflow: hidden;
  border-top: 1px solid var(--line-light);
  border-bottom: 1px solid var(--line-light);
  background: rgba(11, 30, 45, 0.4);
  backdrop-filter: blur(4px);
  padding: 16px 0;
}
.marquee__track {
  display: flex; gap: 56px;
  animation: marquee 48s linear infinite;
  width: max-content;
  padding-left: 56px;
}
.marquee__item {
  display: inline-flex; align-items: center; gap: 14px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245, 239, 227, 0.8);
  white-space: nowrap;
}
.marquee__item svg { color: var(--brass-2); flex: none; }
@keyframes marquee {
  from { transform: translateX(0); }
  to { transform: translateX(-33.333%); }
}

/* ------- Scroll reveal (homepage React island) ------- */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .8s cubic-bezier(.2,.6,.2,1), transform .8s cubic-bezier(.2,.6,.2,1);
}
.rv.is-in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .rv { opacity: 1; transform: none; transition: none; }
  .hero__img { animation: none; }
}

/* ------- Trust ------- */
.trust {
  background: var(--paper);
  border-bottom: 1px solid var(--line-soft);
  padding: 72px 0;
}
.trust__row {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 60px;
  align-items: center;
}
.trust__label {
  font-family: var(--mono);
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 11px;
  color: var(--brass);
}
.trust__items {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  border-left: 1px solid var(--line);
  padding-left: 48px;
}
.trust__item {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity .7s ease, transform .7s ease;
}
.trust__item.is-in { opacity: 1; transform: translateY(0); }
.trust__n {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(40px, 4vw, 60px);
  line-height: 1;
  color: var(--navy);
  letter-spacing: -0.03em;
}
.trust__l {
  font-size: 13px;
  color: var(--ink-soft);
  margin-top: 10px;
  line-height: 1.4;
}
@media (max-width: 900px) {
  .trust__row { grid-template-columns: 1fr; gap: 24px; }
  .trust__items { grid-template-columns: repeat(2, 1fr); padding-left: 0; border-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}

/* ------- Services ------- */
.services { padding: 120px 0; }
.services__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.svc {
  background: #fff;
  border: 1px solid var(--line-soft);
  border-radius: 4px;
  overflow: hidden;
  display: flex; flex-direction: column;
  transition: transform .3s ease, box-shadow .3s ease;
}
.svc:hover { transform: translateY(-4px); box-shadow: 0 20px 40px -20px rgba(11,30,45,0.2); }
.svc__img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
}
.svc__tag {
  position: absolute; top: 16px; left: 16px;
  background: var(--navy); color: var(--cream);
  font-family: var(--mono);
  font-size: 10px; text-transform: uppercase;
  letter-spacing: 0.18em;
  padding: 6px 10px;
  border-radius: 2px;
}
.svc__body { padding: 32px 28px 28px; flex: 1; display: flex; flex-direction: column; }
.svc__body h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.1;
  letter-spacing: -0.01em;
  margin: 0 0 14px;
  color: var(--navy);
}
.svc__body p {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.6;
  flex: 1;
}
.svc__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line-soft);
}
.svc__link svg { transition: transform .2s; }
.svc__link:hover svg { transform: translateX(3px); }
@media (max-width: 900px) { .services__grid { grid-template-columns: 1fr; } .services { padding: 72px 0; } }

/* ------- Process ------- */
.process {
  background: var(--navy);
  color: var(--cream);
  padding: 120px 0;
  position: relative;
}
.process::before {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(rgba(210,164,107,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  opacity: 0.6;
  pointer-events: none;
}
.process > .wrap { position: relative; }
.steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 20px;
  border-top: 1px solid var(--line-light);
}
.step {
  padding: 36px 24px 0;
  border-right: 1px solid var(--line-light);
  position: relative;
}
.step:last-child { border-right: 0; }
.step::before {
  content: "";
  position: absolute; top: -4px; left: 0;
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--brass);
}
.step__n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brass-2);
  margin-bottom: 20px;
}
.step__t {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 24px;
  margin: 0 0 12px;
  color: var(--cream);
}
.step__b {
  font-size: 14px;
  color: rgba(245, 239, 227, 0.7);
  line-height: 1.6;
  padding-bottom: 36px;
}
@media (max-width: 900px) {
  .process { padding: 72px 0; }
  .steps { grid-template-columns: 1fr; }
  .step { border-right: 0; border-bottom: 1px solid var(--line-light); }
  .step:last-child { border-bottom: 0; }
}

/* ------- Featured ------- */
.featured { padding: 120px 0; background: var(--cream); }
.featured__wrap {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 64px;
  align-items: center;
}
.featured__img {
  aspect-ratio: 4/3;
  background-size: cover; background-position: center;
  position: relative;
  border-radius: 2px;
  box-shadow: 0 30px 60px -30px rgba(11,30,45,0.3);
  transition: transform .5s ease, box-shadow .5s ease;
}
.featured__img:hover {
  transform: scale(1.012);
  box-shadow: 0 40px 80px -32px rgba(11,30,45,0.4);
}
.featured__stamp {
  position: absolute; top: 20px; left: 20px;
  background: var(--cream); color: var(--navy);
  font-family: var(--mono);
  font-size: 10px; letter-spacing: 0.2em;
  padding: 8px 12px;
  text-transform: uppercase;
}
.featured__text .section-title { margin-top: 14px; }
.featured__sub {
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  margin-bottom: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.featured__text p {
  color: var(--ink-soft);
  font-size: 16px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.link-arrow {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--mono);
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: var(--brass);
  border-bottom: 1px solid var(--brass);
  padding-bottom: 4px;
}
.link-arrow:hover svg { transform: translateX(3px); }
.link-arrow svg { transition: transform .2s; }
@media (max-width: 900px) {
  .featured { padding: 72px 0; }
  .featured__wrap { grid-template-columns: 1fr; gap: 40px; }
}

/* ------- Gallery ------- */
.gallery { padding: 0 0 120px; background: var(--cream); }
.gallery__grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  grid-auto-rows: 140px;
  gap: 10px;
}
.gallery__cell {
  overflow: hidden;
  border-radius: 2px;
  position: relative;
  background: var(--navy-3);
}
.gallery__cell img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
  filter: grayscale(0.15);
}
.gallery__cell:hover img { transform: scale(1.06); filter: grayscale(0); }
.gc-0 { grid-column: span 3; grid-row: span 2; }
.gc-1 { grid-column: span 3; grid-row: span 2; }
.gc-2 { grid-column: span 2; grid-row: span 2; }
.gc-3 { grid-column: span 2; grid-row: span 2; }
.gc-4 { grid-column: span 2; grid-row: span 2; }
.gc-5 { grid-column: span 2; grid-row: span 2; }
.gc-6 { grid-column: span 2; grid-row: span 2; }
.gc-7 { grid-column: span 2; grid-row: span 2; }
@media (max-width: 900px) {
  .gallery { padding: 0 0 72px; }
  .gallery__grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 160px; }
  .gc-0, .gc-1, .gc-2, .gc-3, .gc-4, .gc-5, .gc-6, .gc-7 { grid-column: span 1; grid-row: span 1; }
}

.lightbox {
  position: fixed; inset: 0;
  background: rgba(11, 30, 45, 0.94);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 40px;
  animation: fade .2s ease;
}
.lightbox img { max-width: 90vw; max-height: 86vh; object-fit: contain; }
.lightbox__x {
  position: absolute; top: 24px; right: 24px;
  width: 44px; height: 44px;
  background: transparent; color: var(--cream);
  font-size: 32px; line-height: 1;
  border: 1px solid var(--line-light);
  border-radius: 50%;
}
@keyframes fade { from { opacity: 0; } to { opacity: 1; } }

/* ------- Testimonials ------- */
.testi { padding: 120px 0; background: var(--paper); }
.testi__card {
  max-width: 820px; margin: 0 auto;
  background: var(--cream);
  border: 1px solid var(--line-soft);
  padding: 60px;
  text-align: center;
  position: relative;
}
.testi__quote { color: var(--brass); margin-bottom: 20px; }
.testi__card blockquote {
  margin: 0 0 36px;
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(22px, 2.2vw, 30px);
  line-height: 1.35;
  letter-spacing: -0.01em;
  color: var(--navy);
  text-wrap: balance;
  animation: fadeUp .5s ease;
}
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}
.testi__meta {
  display: flex; align-items: center; justify-content: center; gap: 14px;
  margin-bottom: 28px;
}
.testi__avatar {
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--navy); color: var(--cream);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--mono); font-size: 13px;
}
.testi__name { font-weight: 500; font-size: 14px; text-align: left; }
.testi__role { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.15em; color: var(--ink-soft); text-align: left; margin-top: 2px; }
.testi__dots { display: flex; justify-content: center; gap: 8px; }
.testi__dots button {
  width: 22px; height: 2px;
  background: var(--line);
  transition: background .2s;
}
.testi__dots button.is-on { background: var(--brass); }
@media (max-width: 720px) {
  .testi { padding: 72px 0; }
  .testi__card { padding: 40px 24px; }
}

/* ------- FAQ ------- */
.faq { padding: 120px 0; background: var(--cream); }
.faq__list {
  max-width: 900px;
  border-top: 1px solid var(--line);
}
.faq__item { border-bottom: 1px solid var(--line); }
.faq__q {
  width: 100%;
  display: flex; align-items: center; gap: 24px;
  padding: 28px 0;
  text-align: left;
  transition: color .2s;
}
.faq__q:hover { color: var(--brass); }
.faq__n {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--brass);
  flex: none; width: 40px;
}
.faq__qt {
  flex: 1;
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  color: var(--navy);
  letter-spacing: -0.01em;
}
.faq__plus {
  position: relative;
  width: 16px; height: 16px;
  flex: none;
}
.faq__plus span {
  position: absolute;
  background: var(--navy);
  transition: transform .3s;
}
.faq__plus span:first-child { top: 7px; left: 0; right: 0; height: 1.5px; }
.faq__plus span:last-child { left: 7px; top: 0; bottom: 0; width: 1.5px; }
.faq__item.is-open .faq__plus span:last-child { transform: rotate(90deg); }
.faq__a {
  max-height: 0; overflow: hidden;
  transition: max-height .35s ease;
}
.faq__a > div {
  padding: 0 0 28px 64px;
  max-width: 65ch;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
}
.faq__item.is-open .faq__a { max-height: 320px; }
@media (max-width: 720px) {
  .faq { padding: 72px 0; }
  .faq__a > div { padding-left: 40px; }
}

/* ------- CTA strip ------- */
.ctastrip { background: var(--navy); color: var(--cream); padding: 100px 0; }
.ctastrip__wrap {
  display: grid;
  grid-template-columns: 1.3fr 1fr;
  gap: 48px;
  align-items: center;
}
.ctastrip__text .section-title { margin: 0 0 16px; }
.ctastrip__text p { color: rgba(245, 239, 227, 0.75); font-size: 16px; margin: 0; }
.ctastrip__ctas { display: flex; gap: 14px; justify-content: flex-end; flex-wrap: wrap; }
@media (max-width: 900px) {
  .ctastrip { padding: 72px 0; }
  .ctastrip__wrap { grid-template-columns: 1fr; }
  .ctastrip__ctas { justify-content: flex-start; }
}

/* ------- Footer ------- */
.footer { background: #061424; color: var(--cream); padding: 72px 0 36px; }
.footer__top { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 56px; padding-bottom: 40px; border-bottom: 1px solid var(--line-light); }
.footer__brand { display: flex; align-items: center; gap: 16px; color: var(--cream); }
.footer__mark { width: 40px; height: 40px; color: var(--brass); }
.footer__bname { font-family: var(--serif); font-size: 22px; font-weight: 400; }
.footer__tag { font-family: var(--mono); font-size: 11px; text-transform: uppercase; letter-spacing: 0.18em; color: rgba(245,239,227,0.6); margin-top: 4px; }
.footer__grid { display: grid; grid-template-columns: 1.3fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 56px; }
.footer__h {
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass-2);
  margin-bottom: 20px;
}
.footer__grid p { margin: 0 0 10px; font-size: 14px; color: rgba(245,239,227,0.75); }
.footer__grid a:hover { color: var(--cream); }
.footer__lang { display: flex; gap: 6px; margin-bottom: 24px; }
.footer__lang button {
  padding: 6px 12px;
  border: 1px solid var(--line-light);
  border-radius: 2px;
  font-size: 12px;
  transition: all .15s;
  color: rgba(245,239,227,0.75);
}
.footer__lang button.is-on { background: var(--brass); border-color: var(--brass); color: var(--navy); }
.footer__social { display: flex; gap: 16px; font-size: 13px; }
.footer__social a { color: rgba(245,239,227,0.6); }
.footer__social a:hover { color: var(--brass-2); }
.footer__bot {
  display: flex; justify-content: space-between; align-items: center;
  padding-top: 32px; border-top: 1px solid var(--line-light);
  font-family: var(--mono);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  color: rgba(245,239,227,0.5);
}
@media (max-width: 900px) {
  .footer__grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .footer__top { flex-direction: column; gap: 24px; }
  .footer__bot { flex-direction: column; gap: 16px; text-align: center; }
}

/* ------- WhatsApp FAB ------- */
.wa {
  position: fixed; right: 24px; bottom: 24px;
  z-index: 50;
  width: 56px; height: 56px;
  background: #25D366;
  color: #fff;
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 10px 28px -8px rgba(37,211,102,0.6), 0 4px 12px rgba(0,0,0,0.15);
  transition: transform .2s ease;
}
.wa:hover { transform: scale(1.06); }
.wa__pulse {
  position: absolute; inset: -4px;
  border-radius: 50%;
  background: #25D366;
  opacity: 0.4;
  animation: waPulse 2s ease-out infinite;
  z-index: -1;
}
@keyframes waPulse {
  0% { transform: scale(0.9); opacity: 0.5; }
  100% { transform: scale(1.4); opacity: 0; }
}

/* ------- Modal ------- */
.modal {
  position: fixed; inset: 0;
  background: rgba(11, 30, 45, 0.7);
  backdrop-filter: blur(6px);
  z-index: 100;
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  animation: fade .2s ease;
}
.modal__card {
  background: var(--cream);
  width: 100%; max-width: 620px;
  max-height: calc(100vh - 48px);
  overflow-y: auto;
  border-radius: 4px;
  padding: 48px;
  position: relative;
  animation: modalIn .3s cubic-bezier(.2,.8,.2,1);
}
@keyframes modalIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.modal__x {
  position: absolute; top: 16px; right: 20px;
  width: 32px; height: 32px;
  font-size: 28px; line-height: 1;
  color: var(--ink-soft);
}
.modal__x:hover { color: var(--navy); }
.modal__head {
  display: flex; justify-content: space-between; align-items: flex-end;
  margin-bottom: 28px; gap: 20px;
}
.modal__head h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 32px;
  margin: 8px 0 0;
  color: var(--navy);
  letter-spacing: -0.01em;
}
.modal__counter {
  font-family: var(--mono);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  display: flex; gap: 4px; align-items: baseline;
}
.modal__counter strong { color: var(--brass); font-size: 18px; font-weight: 500; }
.modal__progress {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  margin-bottom: 36px;
}
.modal__seg {
  height: 2px;
  background: var(--line);
  position: relative;
  padding-top: 10px;
}
.modal__seg span {
  position: absolute; top: 16px; left: 0;
  font-family: var(--mono);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
  transition: color .2s;
}
.modal__seg.is-on { background: var(--brass); }
.modal__seg.is-on span { color: var(--navy); }
.modal__body { padding-top: 32px; animation: fadeUp .3s ease; }
.modal__q {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 22px;
  color: var(--navy);
  margin-bottom: 24px;
  letter-spacing: -0.01em;
}
.modal__fields { display: flex; flex-direction: column; gap: 18px; }
.field { display: flex; flex-direction: column; gap: 6px; }
.field span {
  font-family: var(--mono);
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  color: var(--brass);
}
.field input, .field select, .field textarea {
  font-family: inherit;
  font-size: 15px;
  padding: 12px 0;
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--line);
  color: var(--navy);
  transition: border-color .15s;
  border-radius: 0;
}
.field input:focus, .field select:focus, .field textarea:focus {
  outline: none;
  border-bottom-color: var(--brass);
}
.field textarea { resize: vertical; padding: 12px 0; }
.modal__foot {
  display: flex; justify-content: space-between;
  margin-top: 36px; padding-top: 24px;
  border-top: 1px solid var(--line-soft);
}
.modal__sent { text-align: center; padding: 40px 20px; }
.modal__check { color: var(--brass); margin-bottom: 24px; }
.modal__sent h3 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: 36px;
  color: var(--navy);
  margin: 0 0 14px;
}
.modal__sent p { color: var(--ink-soft); max-width: 40ch; margin: 0 auto 28px; }
@media (max-width: 600px) {
  .modal__card { padding: 32px 24px; }
  .modal__head { flex-direction: column; align-items: flex-start; }
  .modal__head h3 { font-size: 24px; }
  .modal__progress { grid-template-columns: repeat(4, 1fr); gap: 4px; }
  .modal__seg span { font-size: 9px; letter-spacing: 0.1em; }
}
