:root {
  --sand: #f2e4d0;
  --cream: #fff7eb;
  --ink: #172033;
  --blue: #26344f;
  --muted: rgba(23, 32, 51, .68);
  --accent: #ff6f61;
  --accent-2: #ffd166;
  --line: rgba(23,32,51,.12);
  --white-line: rgba(255,255,255,.2);
  --radius: 30px;
  --shadow: 0 28px 90px rgba(38,52,79,.18);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; font-family: 'Inter', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif; background: var(--cream); color: var(--ink); line-height: 1.6; }
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
.container { width: min(1160px, calc(100% - 40px)); margin: 0 auto; }

.site-header {
  position: fixed;
  z-index: 60;
  top: 18px;
  left: 20px;
  right: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  border-radius: 26px;
  background: rgba(255,247,235,.72);
  border: 1px solid rgba(255,255,255,.55);
  box-shadow: 0 18px 60px rgba(38,52,79,.12);
  backdrop-filter: blur(22px);
}
.logo { font-family: 'Playfair Display', serif; font-size: 26px; font-weight: 800; letter-spacing: -.04em; white-space: nowrap; }
.logo span { color: var(--accent); }
.nav { display: flex; gap: 20px; color: var(--muted); font-size: 14px; font-weight: 700; }
.nav a:hover { color: var(--accent); }
.phone { padding: 10px 16px; border-radius: 999px; background: var(--blue); color: #fff; font-weight: 800; }

section { position: relative; overflow: hidden; padding: 112px 0; }
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 140px 0 90px;
  background: var(--sand);
  isolation: isolate;
}
.hero__backdrop {
  position: absolute;
  inset: 0;
  z-index: -1;
  background: radial-gradient(circle at 14% 20%, rgba(255,111,97,.3), transparent 34%), radial-gradient(circle at 82% 12%, rgba(255,209,102,.34), transparent 30%), linear-gradient(120deg, rgba(242,228,208,.94), rgba(242,228,208,.58)), url('assets/img/hero-atlas.jpg') center/cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: auto 0 0;
  height: 170px;
  background: linear-gradient(transparent, var(--cream));
  z-index: -1;
}
.hero__grid { display: grid; grid-template-columns: 1.12fr 430px; gap: 56px; align-items: center; }
.eyebrow { margin: 0 0 16px; color: var(--accent); text-transform: uppercase; letter-spacing: .16em; font-size: 12px; font-weight: 900; }
h1, h2, h3 { margin: 0; line-height: 1.03; letter-spacing: -.04em; }
h1, h2 { font-family: 'Playfair Display', serif; font-weight: 800; }
h1 { font-size: clamp(46px, 7vw, 88px); max-width: 960px; }
h2 { font-size: clamp(36px, 5vw, 64px); }
h3 { font-size: 24px; }
.lead { margin: 26px 0 34px; max-width: 720px; color: var(--muted); font-size: 19px; }
.hero__actions { display: flex; gap: 14px; flex-wrap: wrap; }
.btn { display: inline-flex; align-items: center; justify-content: center; min-height: 54px; padding: 0 24px; border-radius: 999px; border: 0; font: inherit; font-weight: 900; cursor: pointer; transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.btn:hover { transform: translateY(-3px); }
.btn-primary { background: var(--accent); color: #fff; box-shadow: 0 18px 46px rgba(255,111,97,.26); }
.btn-ghost { background: rgba(255,255,255,.54); border: 1px solid rgba(255,255,255,.75); color: var(--ink); }
.btn-dark { background: var(--blue); color: #fff; }

.atlas-panel { border-radius: 36px; background: rgba(255,255,255,.42); border: 1px solid rgba(255,255,255,.72); box-shadow: var(--shadow); backdrop-filter: blur(22px); padding: 28px; }
.panel-top { display: flex; justify-content: space-between; gap: 16px; align-items: center; margin-bottom: 20px; }
.panel-top span { color: var(--muted); font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: .12em; }
.panel-top strong { color: var(--accent); }
.body-map { height: 360px; border-radius: 32px; background: linear-gradient(160deg, var(--blue), #36446a); position: relative; overflow: hidden; }
.body-map::before { content: ''; position: absolute; width: 120px; height: 260px; border: 18px solid rgba(255,255,255,.75); border-radius: 80px 80px 70px 70px; left: 50%; top: 52px; transform: translateX(-50%); }
.body-map::after { content: ''; position: absolute; width: 220px; height: 220px; border-radius: 50%; background: rgba(255,111,97,.18); left: 50%; top: 80px; transform: translateX(-50%); }
.dot { position: absolute; width: 20px; height: 20px; border-radius: 50%; background: var(--accent-2); box-shadow: 0 0 0 12px rgba(255,209,102,.18); z-index: 2; }
.dot-1 { left: 46%; top: 90px; }
.dot-2 { left: 55%; top: 185px; background: var(--accent); box-shadow: 0 0 0 12px rgba(255,111,97,.18); }
.dot-3 { left: 42%; top: 270px; }
.line { position: absolute; left: 50%; top: 118px; width: 2px; height: 168px; background: rgba(255,255,255,.38); z-index: 1; }
.atlas-panel ul { list-style: none; padding: 0; margin: 22px 0 0; display: grid; gap: 10px; color: var(--muted); }
.atlas-panel b { color: var(--ink); }

.about { background: var(--cream); }
.about__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 48px; align-items: center; }
.section-heading { max-width: 880px; margin-bottom: 44px; }
.about__visual img { border-radius: 36px; box-shadow: var(--shadow); }
.compass-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 36px; }
.compass-card, .timeline-item, .price-card, .scenario-card, .ticket, .faq-item { border-radius: var(--radius); background: #fff; border: 1px solid var(--line); box-shadow: 0 18px 50px rgba(38,52,79,.08); transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease; }
.compass-card { padding: 24px; min-height: 235px; }
.compass-card:hover, .timeline-item:hover, .price-card:hover, .scenario-card:hover, .ticket:hover { transform: translateY(-6px); border-color: rgba(255,111,97,.32); box-shadow: var(--shadow); }
.compass-card span, .price-card span, .scenario-card span, .ticket span { color: var(--accent); font-size: 12px; text-transform: uppercase; letter-spacing: .14em; font-weight: 900; }
.compass-card p, .timeline-item p, .price-card p, .scenario-card p, .muted, .ticket p { color: var(--muted); }

.cases { background: #f8eddf; }
.scenario-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; }
.scenario-card { overflow: hidden; background: var(--blue); color: #fff; border-color: rgba(255,255,255,.12); }
.scenario-card img { height: 210px; width: 100%; object-fit: cover; transition: transform .5s ease; }
.scenario-card:hover img { transform: scale(1.07); }
.scenario-card div { padding: 22px; }
.scenario-card p { color: rgba(255,255,255,.72); }

.process { background: var(--cream); }
.timeline { display: grid; grid-template-columns: repeat(5, 1fr); gap: 14px; position: relative; }
.timeline::before { content: ''; position: absolute; top: 34px; left: 7%; right: 7%; border-top: 1px dashed rgba(23,32,51,.28); }
.timeline-item { padding: 24px; position: relative; z-index: 1; }
.timeline-item b { display: inline-grid; place-items: center; width: 54px; height: 54px; border-radius: 50%; background: var(--accent); color: #fff; margin-bottom: 26px; box-shadow: 0 12px 32px rgba(255,111,97,.22); }

.stopper-section { background: var(--blue); color: #fff; }
.stopper-section::before { content: ''; position: absolute; width: 440px; height: 440px; border-radius: 50%; background: rgba(255,111,97,.25); right: -120px; top: -140px; filter: blur(8px); }
.stopper-layout { display: grid; grid-template-columns: .9fr 1.1fr; gap: 54px; align-items: center; }
.stopper-layout .muted { color: rgba(255,255,255,.7); font-size: 18px; }
.ticket-stack { display: grid; gap: 14px; transform: rotate(-1deg); }
.ticket { background: rgba(255,255,255,.1); color: #fff; border-color: rgba(255,255,255,.17); backdrop-filter: blur(14px); padding: 22px; transform: rotate(1deg); }
.ticket:nth-child(2) { transform: rotate(-1deg); }
.ticket p { color: rgba(255,255,255,.72); margin-bottom: 0; }
.ticket b { display: block; font-size: 26px; line-height: 1.1; margin: 8px 0; }

.pricing { background: var(--sand); }
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.price-card { padding: 28px; }
.price-card.featured { background: var(--blue); color: #fff; transform: translateY(-14px); }
.price-card.featured p { color: rgba(255,255,255,.72); }
.price-card h3 { margin: 10px 0 12px; }
.price-card strong { display: block; font-family: 'Playfair Display', serif; font-size: 36px; line-height: 1; margin: 24px 0; }

.faq { background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 56px; align-items: start; }
.faq-list { display: grid; gap: 12px; }
.faq-item { overflow: hidden; }
.faq-button { width: 100%; padding: 22px 56px 22px 22px; text-align: left; background: transparent; border: 0; color: var(--ink); font: inherit; font-weight: 900; cursor: pointer; position: relative; }
.faq-button::after { content: '+'; position: absolute; right: 22px; top: 18px; color: var(--accent); font-size: 28px; }
.faq-item.is-open .faq-button::after { content: '–'; }
.faq-panel { max-height: 0; overflow: hidden; transition: max-height .3s ease; }
.faq-panel p { padding: 0 22px 22px; margin: 0; color: var(--muted); }
.faq-item.is-open .faq-panel { max-height: 210px; }

.contact { background: linear-gradient(135deg, #172033, #334362); color: #fff; }
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 54px; align-items: center; }
.contact-card { padding: 34px; border-radius: 36px; background: rgba(255,255,255,.09); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(18px); }
.contact-card p { color: rgba(255,255,255,.72); font-size: 18px; }
.contact-meta { display: grid; gap: 10px; margin-top: 26px; color: rgba(255,255,255,.86); font-weight: 800; }
.lead-form { padding: 30px; border-radius: 36px; background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.2); backdrop-filter: blur(20px); display: grid; gap: 16px; }
.lead-form label { display: grid; gap: 8px; font-weight: 900; }
.lead-form input, .lead-form textarea { width: 100%; border: 1px solid rgba(255,255,255,.2); background: rgba(255,255,255,.9); color: var(--ink); border-radius: 18px; padding: 15px 16px; font: inherit; outline: none; }
.lead-form input:focus, .lead-form textarea:focus { border-color: var(--accent); box-shadow: 0 0 0 4px rgba(255,111,97,.24); }
.form-message { min-height: 24px; margin: 0; font-weight: 900; }
.form-message.success { color: #b8ff9e; }
.form-message.error { color: #ffd1cc; }

.site-footer { padding: 34px 0; background: #11192a; color: rgba(255,255,255,.72); }
.footer__grid { display: grid; grid-template-columns: 1fr 1.2fr .8fr 1.2fr; gap: 18px; align-items: center; font-size: 14px; }
.site-footer a { color: #fff; }

.reveal { opacity: 0; transform: translateY(28px); transition: opacity .72s ease, transform .72s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }
[data-reveal] { opacity: 0; transform: translateY(-16px); animation: headerIn .7s ease .2s forwards; }
@keyframes headerIn { to { opacity: 1; transform: translateY(0); } }

@media (max-width: 1040px) {
  .site-header { flex-wrap: wrap; }
  .nav { order: 3; width: 100%; overflow-x: auto; padding-bottom: 2px; }
  .hero__grid, .about__grid, .stopper-layout, .faq__grid, .contact__grid { grid-template-columns: 1fr; }
  .compass-grid, .scenario-grid, .timeline, .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .timeline::before { display: none; }
}
@media (max-width: 640px) {
  .container { width: min(100% - 28px, 1160px); }
  section { padding: 78px 0; }
  .hero { padding-top: 205px; }
  h1 { font-size: 40px; }
  h2 { font-size: 34px; }
  .phone { width: 100%; display: inline-flex; justify-content: center; }
  .compass-grid, .scenario-grid, .timeline, .pricing-grid, .footer__grid { grid-template-columns: 1fr; }
  .price-card.featured { transform: none; }
}
