/* ============================================================
   Asteron Global GmbH — Premium landing page stylesheet
   Palette: deep navy / charcoal with champagne-gold accents
   ============================================================ */

:root {
  --navy-900: #070d18;
  --navy-800: #0b1628;
  --navy-700: #102037;
  --navy-600: #172b48;
  --charcoal: #141a22;
  --ink: #0f172a;
  --slate: #475569;
  --muted: #7c8797;
  --line: #e6e2d8;
  --line-dark: rgba(255, 255, 255, 0.08);
  --cream: #f7f5f0;
  --paper: #ffffff;
  --gold: #c9a24d;
  --gold-light: #e2c37a;
  --gold-dark: #a8842f;
  --gold-grad: linear-gradient(135deg, #e2c37a 0%, #c9a24d 50%, #a8842f 100%);
  --success: #1f9d61;
  --danger: #d64545;

  --font-head: "Manrope", "Inter", "Segoe UI", system-ui, sans-serif;
  --font-body: "Inter", "Manrope", "Segoe UI", system-ui, sans-serif;

  --radius: 18px;
  --radius-sm: 10px;
  --shadow-sm: 0 4px 14px rgba(11, 22, 40, 0.06);
  --shadow: 0 18px 50px rgba(11, 22, 40, 0.12);
  --shadow-lg: 0 30px 80px rgba(11, 22, 40, 0.22);
  --container: 1200px;
  --header-h: 84px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--paper);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, h4 { font-family: var(--font-head); line-height: 1.15; margin: 0; letter-spacing: -0.01em; }
p { margin: 0; }

.container { width: min(100% - 2.5rem, var(--container)); margin-inline: auto; }
.skip-link { position: absolute; left: -999px; top: 0; background: var(--gold); color: var(--navy-900); padding: .6rem 1rem; z-index: 2000; border-radius: 0 0 8px 0; font-weight: 700; }
.skip-link:focus { left: 0; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0, 0, 0, 0); white-space: nowrap; border: 0; }

/* ---------- Typography helpers ---------- */
.eyebrow {
  display: inline-flex; align-items: center; gap: .6rem;
  font-family: var(--font-head); font-size: .78rem; font-weight: 700;
  letter-spacing: .22em; text-transform: uppercase; color: var(--gold-dark);
}
.eyebrow::before { content: ""; width: 28px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.eyebrow.center { justify-content: center; }
.eyebrow.center::after { content: ""; width: 28px; height: 2px; background: var(--gold-grad); border-radius: 2px; }
.section-title { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-top: .9rem; color: var(--navy-800); }
.section-lead { color: var(--slate); font-size: 1.08rem; max-width: 640px; margin-top: 1rem; }
.section-head { margin-bottom: 3rem; }
.section-head.center { text-align: center; }
.section-head.center .section-lead { margin-inline: auto; }
.on-dark .section-title { color: #fff; }
.on-dark .section-lead { color: rgba(255, 255, 255, 0.72); }
.on-dark .eyebrow { color: var(--gold-light); }

section { padding: clamp(4.5rem, 8vw, 7.5rem) 0; position: relative; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .55rem;
  padding: .95rem 1.7rem; border-radius: 999px; border: 1.5px solid transparent;
  font-family: var(--font-head); font-weight: 700; font-size: .95rem; letter-spacing: .01em;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), background .3s, color .3s, border-color .3s;
  white-space: nowrap;
}
.btn svg { width: 18px; height: 18px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translateX(3px); }
.btn-gold { background: var(--gold-grad); color: var(--navy-900); box-shadow: 0 10px 28px rgba(201, 162, 77, 0.35); }
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 36px rgba(201, 162, 77, 0.45); }
.btn-outline { border-color: rgba(255, 255, 255, 0.55); color: #fff; backdrop-filter: blur(6px); background: rgba(255, 255, 255, 0.06); }
.btn-outline:hover { background: #fff; color: var(--navy-900); border-color: #fff; transform: translateY(-2px); }
.btn-dark { background: var(--navy-800); color: #fff; }
.btn-dark:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: var(--shadow); }
.btn-ghost { color: var(--navy-800); border-color: var(--line); background: #fff; }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold-dark); transform: translateY(-2px); }
.btn-sm { padding: .65rem 1.2rem; font-size: .85rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .6; cursor: not-allowed; transform: none !important; }

/* ---------- Header ---------- */
.header {
  position: fixed; inset: 0 0 auto 0; z-index: 1000; height: var(--header-h);
  display: flex; align-items: center;
  transition: background .4s, box-shadow .4s, height .4s, backdrop-filter .4s;
  background: linear-gradient(to bottom, rgba(7, 13, 24, 0.75), rgba(7, 13, 24, 0));
}
.header.is-scrolled {
  height: 70px; background: rgba(7, 13, 24, 0.92);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.35); border-bottom: 1px solid var(--line-dark);
}
.header .container { display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; gap: .8rem; color: #fff; }
.brand-mark { width: 46px; height: 46px; flex: 0 0 auto; }
.brand-text { display: flex; flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-head); font-weight: 800; font-size: 1.15rem; letter-spacing: .12em; }
.brand-sub { font-size: .66rem; letter-spacing: .36em; color: var(--gold-light); margin-top: .3rem; font-weight: 600; }
.nav { display: flex; align-items: center; gap: 2.2rem; }
.nav a { color: rgba(255, 255, 255, 0.82); font-weight: 600; font-size: .93rem; position: relative; padding: .35rem 0; transition: color .3s; }
.nav a::after { content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 0; background: var(--gold-grad); transition: width .35s var(--ease); border-radius: 2px; }
.nav a:hover, .nav a.active { color: #fff; }
.nav .nav-only { display: none; }
.nav a:hover::after, .nav a.active::after { width: 100%; }
.header-cta { display: flex; align-items: center; gap: 1rem; }
.nav-toggle { display: none; width: 46px; height: 46px; border: 1px solid rgba(255, 255, 255, 0.25); border-radius: 12px; background: rgba(255, 255, 255, 0.06); color: #fff; align-items: center; justify-content: center; }
.nav-toggle span { display: block; width: 20px; height: 2px; background: #fff; position: relative; transition: background .3s; }
.nav-toggle span::before, .nav-toggle span::after { content: ""; position: absolute; left: 0; width: 20px; height: 2px; background: #fff; transition: transform .35s var(--ease), top .35s var(--ease); }
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after { top: 6px; }
.nav-toggle[aria-expanded="true"] span { background: transparent; }
.nav-toggle[aria-expanded="true"] span::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] span::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; min-height: 100svh; padding: 0;
  display: grid; align-items: center; color: #fff; overflow: hidden; background: var(--navy-900);
}
.hero-split { position: absolute; inset: 0; display: grid; grid-template-columns: 1fr 1fr; }
.hero-pane { position: relative; overflow: hidden; }
.hero-pane img { width: 100%; height: 100%; object-fit: cover; transform: scale(1.08); animation: heroZoom 14s ease-out forwards; }
.hero-pane::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 13, 24, 0.55) 0%, rgba(7, 13, 24, 0.35) 40%, rgba(7, 13, 24, 0.9) 100%); }
.hero-pane--left::after { background: linear-gradient(90deg, rgba(7, 13, 24, 0.55), rgba(7, 13, 24, 0.75)), linear-gradient(180deg, rgba(7, 13, 24, 0.2), rgba(7, 13, 24, 0.9)); }
.hero-pane--right::after { background: linear-gradient(270deg, rgba(7, 13, 24, 0.55), rgba(7, 13, 24, 0.75)), linear-gradient(180deg, rgba(7, 13, 24, 0.2), rgba(7, 13, 24, 0.9)); }
.hero-divider { position: absolute; top: -10%; bottom: -10%; left: 50%; width: 2px; background: linear-gradient(to bottom, transparent, var(--gold) 30%, var(--gold) 70%, transparent); transform: translateX(-50%) rotate(8deg); opacity: .7; }
.hero-pane-label { position: absolute; bottom: 2.2rem; font-family: var(--font-head); font-size: .75rem; letter-spacing: .3em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); z-index: 2; display: flex; align-items: center; gap: .6rem; }
.hero-pane--left .hero-pane-label { left: 2.2rem; }
.hero-pane--right .hero-pane-label { right: 2.2rem; }
.hero-pane-label i { width: 36px; height: 1px; background: var(--gold); display: block; }
@keyframes heroZoom { to { transform: scale(1); } }

.hero-content { position: relative; z-index: 3; text-align: center; padding: calc(var(--header-h) + 3rem) 0 6rem; }
.hero-badge { display: inline-flex; align-items: center; gap: .6rem; padding: .5rem 1.1rem; border-radius: 999px; border: 1px solid rgba(226, 195, 122, 0.45); background: rgba(7, 13, 24, 0.45); backdrop-filter: blur(8px); font-size: .8rem; letter-spacing: .14em; text-transform: uppercase; font-weight: 600; color: var(--gold-light); }
.hero-badge::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--gold); box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.25); }
.hero h1 { font-size: clamp(2.4rem, 5.6vw, 4.6rem); font-weight: 800; margin: 1.6rem auto 1.3rem; max-width: 16ch; letter-spacing: -0.02em; text-shadow: 0 10px 40px rgba(0, 0, 0, 0.5); }
.hero h1 em { font-style: normal; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-lead { font-size: clamp(1.02rem, 1.6vw, 1.25rem); color: rgba(255, 255, 255, 0.82); max-width: 640px; margin: 0 auto 2.4rem; }
.hero-actions { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; }
.hero-stats { display: flex; justify-content: center; gap: 2.5rem; flex-wrap: wrap; margin-top: 3.6rem; }
.hero-stat { text-align: center; }
.hero-stat strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; color: #fff; line-height: 1; }
.hero-stat strong span { color: var(--gold-light); }
.hero-stat small { display: block; margin-top: .4rem; color: rgba(255, 255, 255, 0.65); letter-spacing: .08em; text-transform: uppercase; font-size: .72rem; font-weight: 600; }
.scroll-cue { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 3; color: rgba(255, 255, 255, 0.6); font-size: .7rem; letter-spacing: .28em; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: .6rem; }
.scroll-cue::after { content: ""; width: 1px; height: 46px; background: linear-gradient(to bottom, var(--gold), transparent); animation: cue 2.2s ease-in-out infinite; }
@media (max-height: 960px) { .scroll-cue { display: none; } }
@keyframes cue { 0%, 100% { transform: scaleY(.4); transform-origin: top; opacity: .4; } 50% { transform: scaleY(1); opacity: 1; } }

/* ---------- Marquee / trust strip ---------- */
.trust-strip { background: var(--navy-800); color: rgba(255, 255, 255, 0.8); padding: 1.1rem 0; border-top: 1px solid var(--line-dark); border-bottom: 1px solid var(--line-dark); overflow: hidden; }
.trust-strip .track { display: flex; gap: 3rem; width: max-content; animation: marquee 40s linear infinite; }
.trust-strip .track span { display: inline-flex; align-items: center; gap: .8rem; font-family: var(--font-head); font-size: .82rem; letter-spacing: .18em; text-transform: uppercase; font-weight: 600; white-space: nowrap; }
.trust-strip .track span::before { content: "◆"; color: var(--gold); font-size: .55rem; }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ---------- Services ---------- */
.services { background: var(--cream); }
.services-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.service-card { position: relative; border-radius: var(--radius); overflow: hidden; background: var(--navy-800); color: #fff; min-height: 560px; display: flex; flex-direction: column; justify-content: flex-end; box-shadow: var(--shadow); isolation: isolate; }
.service-card img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: -2; transition: transform 1.2s var(--ease); }
.service-card::before { content: ""; position: absolute; inset: 0; z-index: -1; background: linear-gradient(180deg, rgba(7, 13, 24, 0.1) 0%, rgba(7, 13, 24, 0.55) 45%, rgba(7, 13, 24, 0.95) 100%); }
.service-card:hover img { transform: scale(1.06); }
.service-body { padding: 2.4rem; }
.service-icon { width: 58px; height: 58px; border-radius: 16px; display: grid; place-items: center; background: rgba(255, 255, 255, 0.08); border: 1px solid rgba(226, 195, 122, 0.4); color: var(--gold-light); margin-bottom: 1.3rem; backdrop-filter: blur(6px); }
.service-icon svg { width: 28px; height: 28px; }
.service-card h3 { font-size: 1.9rem; font-weight: 800; }
.service-card p { color: rgba(255, 255, 255, 0.78); margin: .8rem 0 1.4rem; max-width: 46ch; }
.service-list { display: grid; grid-template-columns: 1fr 1fr; gap: .5rem 1.2rem; margin-bottom: 1.8rem; }
.service-list li { display: flex; align-items: center; gap: .55rem; font-size: .92rem; color: rgba(255, 255, 255, 0.88); }
.service-list li svg { width: 16px; height: 16px; color: var(--gold-light); flex: 0 0 auto; }
.service-tag { position: absolute; top: 1.6rem; left: 1.6rem; padding: .45rem .9rem; border-radius: 999px; background: rgba(7, 13, 24, 0.55); border: 1px solid rgba(255, 255, 255, 0.2); backdrop-filter: blur(8px); font-size: .72rem; letter-spacing: .2em; text-transform: uppercase; font-weight: 700; color: var(--gold-light); }

/* ---------- Why choose us ---------- */
.why { background: var(--navy-800); color: #fff; overflow: hidden; }
.why::before { content: ""; position: absolute; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 162, 77, 0.18), transparent 65%); top: -300px; right: -200px; pointer-events: none; }
.why-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.why-card { padding: 2.2rem 1.9rem; border-radius: var(--radius); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-dark); transition: transform .5s var(--ease), background .4s, border-color .4s; position: relative; overflow: hidden; }
.why-card::after { content: ""; position: absolute; inset: auto 0 0 0; height: 3px; background: var(--gold-grad); transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease); }
.why-card:hover { transform: translateY(-8px); background: rgba(255, 255, 255, 0.07); border-color: rgba(226, 195, 122, 0.4); }
.why-card:hover::after { transform: scaleX(1); }
.why-icon { width: 60px; height: 60px; border-radius: 16px; display: grid; place-items: center; background: linear-gradient(135deg, rgba(226, 195, 122, 0.22), rgba(201, 162, 77, 0.05)); color: var(--gold-light); margin-bottom: 1.4rem; border: 1px solid rgba(226, 195, 122, 0.3); }
.why-icon svg { width: 28px; height: 28px; }
.why-card h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: .6rem; }
.why-card p { color: rgba(255, 255, 255, 0.7); font-size: .95rem; }
.stats-row { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin-top: 4rem; padding-top: 3rem; border-top: 1px solid var(--line-dark); }
.stat { text-align: center; }
.stat strong { display: block; font-family: var(--font-head); font-size: clamp(2.4rem, 4vw, 3.4rem); font-weight: 800; line-height: 1; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat strong span { display: inline; font: inherit; }
.stat > span { display: block; margin-top: .6rem; color: rgba(255, 255, 255, 0.7); font-size: .88rem; letter-spacing: .1em; text-transform: uppercase; font-weight: 600; }

/* ---------- Listings ---------- */
.listings { background: var(--paper); }
.tabs { display: inline-flex; padding: .35rem; border-radius: 999px; background: var(--cream); border: 1px solid var(--line); margin-bottom: 2rem; }
.tab-btn { padding: .75rem 1.6rem; border-radius: 999px; border: 0; background: transparent; font-family: var(--font-head); font-weight: 700; color: var(--slate); display: inline-flex; align-items: center; gap: .55rem; transition: background .35s, color .35s, box-shadow .35s; }
.tab-btn svg { width: 18px; height: 18px; }
.tab-btn[aria-selected="true"] { background: var(--navy-800); color: #fff; box-shadow: var(--shadow-sm); }
.tab-panel[hidden] { display: none; }
.filter-bar { display: grid; grid-template-columns: 1.4fr repeat(3, 1fr) auto; gap: .8rem; padding: 1rem; border-radius: var(--radius); background: var(--cream); border: 1px solid var(--line); margin-bottom: 2rem; align-items: end; }
.field { display: flex; flex-direction: column; gap: .35rem; }
.field label { font-size: .72rem; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }
.field input, .field select, .field textarea {
  width: 100%; padding: .8rem 1rem; border-radius: var(--radius-sm); border: 1.5px solid var(--line); background: #fff; font: inherit; color: var(--ink);
  transition: border-color .3s, box-shadow .3s; -webkit-appearance: none; 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='%23475569' stroke-width='2.5'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 1rem center; padding-right: 2.5rem; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-color: var(--gold); box-shadow: 0 0 0 4px rgba(201, 162, 77, 0.18); }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: var(--danger); }
.field .error-msg { font-size: .78rem; color: var(--danger); min-height: 1em; }
.results-meta { display: flex; justify-content: space-between; align-items: center; margin-bottom: 1.4rem; color: var(--muted); font-size: .9rem; }
.results-meta strong { color: var(--navy-800); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.8rem; }
.card { background: #fff; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow-sm); transition: transform .55s var(--ease), box-shadow .55s var(--ease), border-color .4s; display: flex; flex-direction: column; }
.card:hover { transform: translateY(-8px); box-shadow: var(--shadow); border-color: rgba(201, 162, 77, 0.5); }
.card.is-hidden { display: none; }
.card-media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--navy-700); }
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform 1s var(--ease); }
.card:hover .card-media img { transform: scale(1.08); }
.card-media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(7, 13, 24, 0) 55%, rgba(7, 13, 24, 0.65)); }
.badge { position: absolute; top: 1rem; left: 1rem; z-index: 2; padding: .4rem .8rem; border-radius: 999px; font-size: .7rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; background: var(--gold-grad); color: var(--navy-900); }
.badge.badge-rent { background: #fff; color: var(--navy-800); }
.badge.badge-new { background: var(--navy-800); color: #fff; border: 1px solid rgba(255, 255, 255, 0.3); }
.card-price { position: absolute; left: 1.2rem; bottom: 1rem; z-index: 2; color: #fff; font-family: var(--font-head); font-weight: 800; font-size: 1.35rem; }
.card-price small { font-size: .78rem; font-weight: 600; color: rgba(255, 255, 255, 0.75); margin-left: .2rem; }
.card-fav { position: absolute; top: 1rem; right: 1rem; z-index: 2; width: 38px; height: 38px; border-radius: 50%; border: 0; background: rgba(7, 13, 24, 0.5); backdrop-filter: blur(6px); color: #fff; display: grid; place-items: center; transition: background .3s, color .3s, transform .3s; }
.card-fav svg { width: 18px; height: 18px; }
.card-fav:hover, .card-fav.is-active { background: #fff; color: var(--danger); transform: scale(1.08); }
.card-fav.is-active svg { fill: currentColor; }
.card-body { padding: 1.4rem 1.5rem 1.5rem; display: flex; flex-direction: column; gap: .75rem; flex: 1; }
.card-title { font-size: 1.15rem; font-weight: 800; color: var(--navy-800); }
.card-loc { display: flex; align-items: center; gap: .4rem; color: var(--muted); font-size: .9rem; }
.card-loc svg { width: 16px; height: 16px; color: var(--gold-dark); }
.card-specs { display: flex; flex-wrap: wrap; gap: .5rem 1.1rem; padding-top: .9rem; margin-top: auto; border-top: 1px dashed var(--line); }
.card-specs span { display: inline-flex; align-items: center; gap: .4rem; font-size: .84rem; color: var(--slate); font-weight: 500; }
.card-specs svg { width: 16px; height: 16px; color: var(--gold-dark); }
.card-foot { display: flex; align-items: center; justify-content: space-between; padding-top: .9rem; }
.card-link { font-weight: 700; font-size: .9rem; color: var(--navy-800); display: inline-flex; align-items: center; gap: .4rem; }
.card-link svg { width: 16px; height: 16px; transition: transform .3s; }
.card-link:hover { color: var(--gold-dark); }
.card-link:hover svg { transform: translateX(4px); }
.empty-state { grid-column: 1 / -1; text-align: center; padding: 3.5rem 1rem; color: var(--muted); border: 1.5px dashed var(--line); border-radius: var(--radius); }
.empty-state strong { display: block; color: var(--navy-800); font-family: var(--font-head); font-size: 1.15rem; margin-bottom: .3rem; }
.listings-cta { text-align: center; margin-top: 3rem; }

/* ---------- About ---------- */
.about { background: var(--cream); overflow: hidden; }
.about-grid { display: grid; grid-template-columns: 1.05fr 1fr; gap: 4rem; align-items: center; }
.about-visual { position: relative; }
.about-visual .main { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); aspect-ratio: 4 / 4.6; }
.about-visual .main img { width: 100%; height: 100%; object-fit: cover; }
.about-visual .float { position: absolute; right: -1.5rem; bottom: 2.5rem; width: 46%; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); border: 6px solid var(--cream); aspect-ratio: 4 / 3; }
.about-visual .float img { width: 100%; height: 100%; object-fit: cover; }
.about-visual .stamp { position: absolute; left: -1.2rem; top: 2.2rem; background: var(--navy-800); color: #fff; padding: 1.2rem 1.4rem; border-radius: var(--radius-sm); box-shadow: var(--shadow); border-left: 4px solid var(--gold); }
.about-visual .stamp strong { display: block; font-family: var(--font-head); font-size: 2rem; font-weight: 800; line-height: 1; color: var(--gold-light); }
.about-visual .stamp span { font-size: .72rem; letter-spacing: .14em; text-transform: uppercase; color: rgba(255, 255, 255, 0.7); }
.about-copy p + p { margin-top: 1rem; }
.about-copy p { color: var(--slate); font-size: 1.04rem; }
.about-points { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.5rem; margin: 2rem 0; }
.about-points li { display: flex; gap: .8rem; align-items: flex-start; }
.about-points li svg { width: 22px; height: 22px; color: var(--gold-dark); flex: 0 0 auto; margin-top: .15rem; }
.about-points li strong { display: block; font-family: var(--font-head); font-weight: 700; color: var(--navy-800); }
.about-points li span { font-size: .88rem; color: var(--muted); }
.about-quote { margin-top: 2rem; padding: 1.4rem 1.6rem; border-left: 3px solid var(--gold); background: #fff; border-radius: 0 var(--radius-sm) var(--radius-sm) 0; font-style: italic; color: var(--navy-700); box-shadow: var(--shadow-sm); }
.about-quote cite { display: block; margin-top: .6rem; font-style: normal; font-size: .82rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-dark); }

/* ---------- Process ---------- */
.process { background: var(--paper); }
.process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; counter-reset: step; }
.process-step { position: relative; padding: 2rem 1.6rem 1.8rem; border-radius: var(--radius); border: 1px solid var(--line); background: #fff; transition: transform .5s var(--ease), box-shadow .5s var(--ease); }
.process-step:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.process-step::before { counter-increment: step; content: "0" counter(step); font-family: var(--font-head); font-size: 3rem; font-weight: 800; line-height: 1; color: transparent; -webkit-text-stroke: 1.5px var(--gold); display: block; margin-bottom: 1rem; }
.process-step h3 { font-size: 1.1rem; font-weight: 800; color: var(--navy-800); margin-bottom: .5rem; }
.process-step p { color: var(--slate); font-size: .93rem; }

/* ---------- Testimonials ---------- */
.testimonials { background: var(--navy-900); color: #fff; overflow: hidden; }
.testimonials::before { content: ""; position: absolute; left: -200px; bottom: -300px; width: 700px; height: 700px; border-radius: 50%; background: radial-gradient(circle, rgba(201, 162, 77, 0.14), transparent 65%); pointer-events: none; }
.carousel { position: relative; max-width: 900px; margin: 0 auto; }
.carousel-viewport { overflow: hidden; border-radius: var(--radius); }
.carousel-track { display: flex; transition: transform .7s var(--ease); }
.slide { flex: 0 0 100%; padding: 3rem clamp(1.4rem, 5vw, 4rem); text-align: center; }
.slide .stars { display: inline-flex; gap: .25rem; color: var(--gold); margin-bottom: 1.4rem; }
.slide .stars svg { width: 20px; height: 20px; fill: currentColor; }
.slide blockquote { margin: 0; font-family: var(--font-head); font-size: clamp(1.15rem, 2.2vw, 1.55rem); font-weight: 500; line-height: 1.55; color: rgba(255, 255, 255, 0.92); }
.slide-author { display: inline-flex; align-items: center; gap: 1rem; margin-top: 2rem; text-align: left; }
.avatar { width: 54px; height: 54px; border-radius: 50%; display: grid; place-items: center; font-family: var(--font-head); font-weight: 800; background: var(--gold-grad); color: var(--navy-900); flex: 0 0 auto; }
.slide-author strong { display: block; font-family: var(--font-head); font-weight: 700; }
.slide-author span { font-size: .84rem; color: rgba(255, 255, 255, 0.62); }
.carousel-nav { display: flex; align-items: center; justify-content: center; gap: 1.2rem; margin-top: 1.5rem; }
.carousel-btn { width: 48px; height: 48px; border-radius: 50%; border: 1px solid rgba(255, 255, 255, 0.25); background: rgba(255, 255, 255, 0.05); color: #fff; display: grid; place-items: center; transition: background .3s, border-color .3s, transform .3s; }
.carousel-btn svg { width: 20px; height: 20px; }
.carousel-btn:hover { background: var(--gold); border-color: var(--gold); color: var(--navy-900); transform: scale(1.06); }
.dots { display: flex; gap: .5rem; }
.dots button { width: 10px; height: 10px; border-radius: 50%; border: 0; background: rgba(255, 255, 255, 0.3); padding: 0; transition: width .35s var(--ease), background .3s; }
.dots button[aria-current="true"] { width: 30px; border-radius: 999px; background: var(--gold); }
.rating-summary { display: flex; justify-content: center; align-items: center; gap: 1rem; margin-bottom: 2.5rem; flex-wrap: wrap; }
.rating-summary .score { font-family: var(--font-head); font-size: 2.4rem; font-weight: 800; color: var(--gold-light); line-height: 1; }
.rating-summary .stars { display: inline-flex; gap: .2rem; color: var(--gold); }
.rating-summary .stars svg { width: 18px; height: 18px; fill: currentColor; }
.rating-summary small { color: rgba(255, 255, 255, 0.62); font-size: .88rem; }

/* ---------- CTA band ---------- */
.cta-band { padding: 0; background: var(--cream); }
.cta-band .inner { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--navy-800); color: #fff; padding: clamp(2.5rem, 5vw, 4rem); display: flex; align-items: center; justify-content: space-between; gap: 2rem; flex-wrap: wrap; transform: translateY(50%); box-shadow: var(--shadow-lg); z-index: 5; }
.cta-band .inner::before { content: ""; position: absolute; width: 400px; height: 400px; border-radius: 50%; right: -120px; top: -180px; background: radial-gradient(circle, rgba(201, 162, 77, 0.32), transparent 65%); pointer-events: none; }
.cta-band h2 { font-size: clamp(1.5rem, 3vw, 2.2rem); font-weight: 800; }
.cta-band p { color: rgba(255, 255, 255, 0.7); margin-top: .5rem; }
.cta-band .actions { display: flex; gap: .9rem; flex-wrap: wrap; position: relative; }

/* ---------- Contact ---------- */
.contact { background: var(--paper); padding-top: clamp(8rem, 14vw, 12rem); }
.contact-grid { display: grid; grid-template-columns: 1fr 1.25fr; gap: 3rem; align-items: start; }
.contact-info { display: flex; flex-direction: column; gap: 1.2rem; }
.info-card { display: flex; gap: 1.1rem; padding: 1.4rem; border-radius: var(--radius); border: 1px solid var(--line); background: var(--cream); transition: transform .4s var(--ease), box-shadow .4s var(--ease); }
.info-card:hover { transform: translateX(6px); box-shadow: var(--shadow-sm); }
.info-card .ic { width: 48px; height: 48px; border-radius: 12px; background: var(--navy-800); color: var(--gold-light); display: grid; place-items: center; flex: 0 0 auto; }
.info-card .ic svg { width: 22px; height: 22px; }
.info-card h4 { font-size: .78rem; letter-spacing: .14em; text-transform: uppercase; color: var(--muted); margin-bottom: .3rem; }
.info-card p, .info-card a { color: var(--navy-800); font-weight: 600; }
.info-card a:hover { color: var(--gold-dark); }
.info-card small { display: block; color: var(--muted); font-weight: 400; margin-top: .2rem; }
.socials { display: flex; gap: .7rem; margin-top: .4rem; }
.socials a { width: 44px; height: 44px; border-radius: 12px; border: 1px solid var(--line); display: grid; place-items: center; color: var(--navy-800); transition: background .3s, color .3s, border-color .3s, transform .3s; }
.socials a svg { width: 20px; height: 20px; }
.socials a:hover { background: var(--navy-800); border-color: var(--navy-800); color: var(--gold-light); transform: translateY(-3px); }
.contact-form-wrap { padding: 2.2rem; border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: var(--shadow); }
.contact-form-wrap h3 { font-size: 1.5rem; font-weight: 800; color: var(--navy-800); }
.contact-form-wrap > p { color: var(--muted); margin: .4rem 0 1.6rem; font-size: .95rem; }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-grid .full { grid-column: 1 / -1; }
.field textarea { min-height: 140px; resize: vertical; }
.field label.consent { display: flex; gap: .7rem; align-items: flex-start; font-size: .86rem; color: var(--slate); text-transform: none; letter-spacing: 0; font-weight: 400; line-height: 1.5; }
.consent input { width: 18px; height: 18px; margin-top: .2rem; accent-color: var(--gold-dark); flex: 0 0 auto; }
.consent a { color: var(--gold-dark); font-weight: 600; text-decoration: underline; }
.form-status { margin-top: 1rem; padding: .9rem 1.1rem; border-radius: var(--radius-sm); font-size: .92rem; display: none; }
.form-status.is-success { display: block; background: rgba(31, 157, 97, 0.1); color: #147247; border: 1px solid rgba(31, 157, 97, 0.35); }
.form-status.is-error { display: block; background: rgba(214, 69, 69, 0.08); color: #a83232; border: 1px solid rgba(214, 69, 69, 0.35); }
.hp { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; }
.map-wrap { margin-top: 3.5rem; border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line); box-shadow: var(--shadow); position: relative; }
.map-wrap iframe { width: 100%; height: 420px; border: 0; display: block; filter: saturate(.85); }
.map-pin { position: absolute; left: 1.5rem; bottom: 1.5rem; background: #fff; border-radius: var(--radius-sm); padding: 1rem 1.2rem; box-shadow: var(--shadow); display: flex; gap: .8rem; align-items: center; max-width: 320px; }
.map-pin .ic { width: 40px; height: 40px; border-radius: 10px; background: var(--navy-800); color: var(--gold-light); display: grid; place-items: center; flex: 0 0 auto; }
.map-pin .ic svg { width: 20px; height: 20px; }
.map-pin strong { display: block; font-family: var(--font-head); font-size: .95rem; color: var(--navy-800); }
.map-pin span { font-size: .82rem; color: var(--muted); }

/* ---------- Footer ---------- */
.footer { background: var(--navy-900); color: rgba(255, 255, 255, 0.7); padding: 4.5rem 0 0; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 3rem; padding-bottom: 3rem; }
.footer-brand p { margin-top: 1.2rem; max-width: 38ch; font-size: .93rem; }
.footer h4 { color: #fff; font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; margin-bottom: 1.2rem; }
.footer li + li { margin-top: .6rem; }
.footer li a { font-size: .93rem; transition: color .3s, padding-left .3s; }
.footer li a:hover { color: var(--gold-light); padding-left: .3rem; }
.footer-contact li { display: flex; gap: .6rem; align-items: flex-start; font-size: .92rem; }
.footer-contact svg { width: 18px; height: 18px; color: var(--gold); flex: 0 0 auto; margin-top: .2rem; }
.footer-bottom { border-top: 1px solid var(--line-dark); padding: 1.4rem 0; display: flex; justify-content: space-between; align-items: center; gap: 1rem; flex-wrap: wrap; font-size: .82rem; color: rgba(255, 255, 255, 0.5); }
.footer-bottom a { color: rgba(255, 255, 255, 0.7); }
.footer-bottom a:hover { color: var(--gold-light); }
.footer-bottom .footer-legal { display: flex; gap: 1.4rem; }
.hours { margin-top: 1.4rem; padding: 1rem 1.1rem; border-radius: var(--radius-sm); background: rgba(255, 255, 255, 0.04); border: 1px solid var(--line-dark); font-size: .86rem; }
.hours strong { color: var(--gold-light); display: block; margin-bottom: .3rem; font-size: .75rem; letter-spacing: .16em; text-transform: uppercase; }

/* ---------- Back to top ---------- */
.to-top { position: fixed; right: 1.4rem; bottom: 1.4rem; width: 50px; height: 50px; border-radius: 50%; border: 0; background: var(--navy-800); color: var(--gold-light); box-shadow: var(--shadow); display: grid; place-items: center; z-index: 900; opacity: 0; visibility: hidden; transform: translateY(12px); transition: opacity .4s, transform .4s, visibility .4s, background .3s; }
.to-top svg { width: 20px; height: 20px; }
.to-top.is-visible { opacity: 1; visibility: visible; transform: translateY(0); }
.to-top:hover { background: var(--gold); color: var(--navy-900); }

/* ---------- Reveal animations ---------- */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity .9s var(--ease), transform .9s var(--ease); will-change: opacity, transform; }
.reveal.is-in { opacity: 1; transform: none; }
.reveal[data-delay="1"] { transition-delay: .12s; }
.reveal[data-delay="2"] { transition-delay: .24s; }
.reveal[data-delay="3"] { transition-delay: .36s; }
.reveal[data-delay="4"] { transition-delay: .48s; }
.reveal-left { transform: translateX(-40px); }
.reveal-right { transform: translateX(40px); }
.hero-content > * { opacity: 0; animation: heroIn 1s var(--ease) forwards; }
.hero-content > *:nth-child(1) { animation-delay: .2s; }
.hero-content > *:nth-child(2) { animation-delay: .35s; }
.hero-content > *:nth-child(3) { animation-delay: .5s; }
.hero-content > *:nth-child(4) { animation-delay: .65s; }
.hero-content > *:nth-child(5) { animation-delay: .85s; }
@keyframes heroIn { from { opacity: 0; transform: translateY(24px); } to { opacity: 1; transform: none; } }

/* ---------- Legal pages ---------- */
.page-hero { background: var(--navy-800); color: #fff; padding: calc(var(--header-h) + 4rem) 0 4rem; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; margin-top: .8rem; }
.legal { background: var(--paper); }
.legal .container { max-width: 820px; }
.legal h2 { font-size: 1.4rem; font-weight: 800; color: var(--navy-800); margin: 2.4rem 0 .8rem; }
.legal h3 { font-size: 1.1rem; font-weight: 700; color: var(--navy-800); margin: 1.6rem 0 .5rem; }
.legal p, .legal li { color: var(--slate); }
.legal p + p { margin-top: .8rem; }
.legal ul { list-style: disc; padding-left: 1.4rem; margin: .6rem 0; }
.legal a { color: var(--gold-dark); font-weight: 600; }
.legal .note { background: #fff8e6; border: 1px solid #f1dfae; border-left: 4px solid var(--gold); padding: 1rem 1.2rem; border-radius: var(--radius-sm); font-size: .92rem; margin: 1.6rem 0; }
.legal .note strong { color: var(--navy-800); }

/* ---------- Responsive ---------- */
@media (max-width: 1100px) {
  .why-grid, .stats-row { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .filter-bar { grid-template-columns: 1fr 1fr; }
  .filter-bar .btn { grid-column: 1 / -1; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 960px) {
  :root { --header-h: 74px; }
  .nav { position: fixed; inset: var(--header-h) 0 auto 0; flex-direction: column; align-items: stretch; gap: 0; background: rgba(7, 13, 24, 0.97); backdrop-filter: blur(14px); padding: .6rem 1.25rem 1.4rem; transform: translateY(-12px); opacity: 0; visibility: hidden; transition: opacity .35s, transform .35s var(--ease), visibility .35s; border-bottom: 1px solid var(--line-dark); box-shadow: 0 30px 60px rgba(0, 0, 0, 0.5); }
  .nav.is-open { opacity: 1; visibility: visible; transform: none; }
  .nav a { padding: .95rem 0; font-size: 1.05rem; border-bottom: 1px solid var(--line-dark); }
  .nav a::after { display: none; }
  .nav .btn { margin-top: 1rem; border-bottom: 0; justify-content: center; }
  .nav .nav-only { display: inline-flex; }
  .nav-toggle { display: inline-flex; }
  .header-cta .btn { display: none; }
  .header.is-scrolled { height: var(--header-h); }
  .hero-split { grid-template-columns: 1fr; grid-template-rows: 1fr 1fr; }
  .hero-divider { top: 50%; bottom: auto; left: -10%; right: -10%; width: auto; height: 2px; transform: rotate(-4deg); background: linear-gradient(to right, transparent, var(--gold) 30%, var(--gold) 70%, transparent); }
  .hero-pane-label { display: none; }
  .header .container { gap: 1rem; }
  .brand-name { font-size: 1rem; letter-spacing: .08em; }
  .brand-sub { letter-spacing: .26em; font-size: .6rem; }
  .brand-mark { width: 40px; height: 40px; }
  .hero-content { padding-bottom: 5rem; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card { min-height: 480px; }
  .about-grid { grid-template-columns: 1fr; gap: 3.5rem; }
  .about-visual { margin-inline: 1rem; }
  .contact-grid { grid-template-columns: 1fr; }
  .cta-band .inner { transform: translateY(35%); }
  .contact { padding-top: clamp(9rem, 22vw, 12rem); }
}

@media (max-width: 640px) {
  section { padding: 4rem 0; }
  .hero h1 { font-size: clamp(2.1rem, 9vw, 2.9rem); }
  .hero-actions .btn { width: 100%; }
  .hero-stats { gap: 1.5rem 2rem; }
  .why-grid, .stats-row, .process-grid, .cards, .filter-bar, .form-grid, .footer-grid, .service-list, .about-points { grid-template-columns: 1fr; }
  .tabs { width: 100%; }
  .tab-btn { flex: 1; justify-content: center; padding-inline: .8rem; }
  .service-body { padding: 1.8rem 1.5rem; }
  .about-visual .float { width: 55%; right: -.5rem; }
  .about-visual .stamp { left: -.5rem; }
  .map-wrap iframe { height: 320px; }
  .map-pin { left: 1rem; right: 1rem; bottom: 1rem; max-width: none; }
  .contact-form-wrap { padding: 1.5rem; }
  .footer-bottom { justify-content: center; text-align: center; }
  .cta-band .inner { transform: translateY(25%); }
  .contact { padding-top: 8rem; }
  .trust-strip .track { animation-duration: 28s; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; scroll-behavior: auto !important; }
  .reveal, .hero-content > * { opacity: 1; transform: none; }
}
