/* ==========================================================
   NOOR · VIP-transfer · Astana
   Aesthetic: dark editorial luxury / cinematic
   ========================================================== */

:root {
  --bg:        #0a0a0c;
  --bg-2:      #111114;
  --bg-3:      #16161b;
  --ink:       #f5f1e8;
  --ink-soft:  rgba(245, 241, 232, 0.72);
  --ink-mute:  rgba(245, 241, 232, 0.45);
  --line:      rgba(245, 241, 232, 0.12);
  --line-soft: rgba(245, 241, 232, 0.06);
  --brass:     #c9a368;
  --brass-2:   #d8b677;
  --brass-soft:rgba(201, 163, 104, 0.18);
  --brass-line:rgba(201, 163, 104, 0.35);

  --display: 'Bodoni Moda', 'Times New Roman', serif;
  --body:    'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;

  --maxw: 1280px;
  --gutter: clamp(20px, 4vw, 64px);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-weight: 400;
  font-size: 16px;
  line-height: 1.55;
  letter-spacing: 0.005em;
  overflow-x: hidden;
}

/* ============= Film grain overlay ============= */
.grain {
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 100;
  opacity: 0.06;
  mix-blend-mode: overlay;
}

/* ============= Typography utilities ============= */
.h-display {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(38px, 5.5vw, 80px);
  line-height: 1.02;
  letter-spacing: -0.015em;
  color: var(--ink);
}
.h-display .italic, .italic { font-style: italic; font-weight: 400; }
.h-display.white { color: var(--ink); }

.num {
  display: inline-block;
  font-family: var(--display);
  font-style: italic;
  font-size: 14px;
  letter-spacing: 0.18em;
  color: var(--brass);
  margin-bottom: 28px;
  position: relative;
  padding-left: 38px;
}
.num::before {
  content: '';
  position: absolute;
  left: 0; top: 50%;
  width: 28px; height: 1px;
  background: var(--brass);
}

a { color: inherit; text-decoration: none; transition: opacity 0.2s ease, color 0.2s ease; }
a:hover { opacity: 0.7; }

/* ============= Buttons ============= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  font-family: var(--body);
  font-size: 14px;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
  position: relative;
  overflow: hidden;
}
.btn:hover { opacity: 1; transform: translateY(-1px); }
.btn-primary {
  background: var(--brass);
  color: #0a0a0c;
}
.btn-primary:hover { background: var(--brass-2); box-shadow: 0 12px 30px rgba(201,163,104,0.25); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}
.btn-ghost:hover { border-color: var(--brass); color: var(--brass); }
.btn-line {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--brass-line);
}
.btn-line:hover { background: var(--brass); color: #0a0a0c; border-color: var(--brass); }
.btn-block { width: 100%; }

/* ============= NAV ============= */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px var(--gutter);
  background: linear-gradient(to bottom, rgba(10,10,12,0.85), rgba(10,10,12,0));
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: var(--display);
}
.logo-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border: 1px solid var(--brass);
  color: var(--brass);
  font-style: italic;
  font-size: 20px;
  border-radius: 0;
}
.logo-mark.big { width: 48px; height: 48px; font-size: 26px; }
.logo-word {
  font-size: 18px;
  letter-spacing: 0.32em;
  color: var(--ink);
}
.nav-links {
  display: flex;
  align-items: center;
  gap: 36px;
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.nav-links a:hover { color: var(--brass); opacity: 1; }
.nav-cta {
  padding: 12px 22px;
  border: 1px solid var(--brass-line);
  color: var(--brass);
  letter-spacing: 0.14em;
}
.nav-cta:hover { background: var(--brass); color: #0a0a0c; }

/* ============= HERO ============= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  padding: 120px var(--gutter) 80px;
}
.hero-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: right center;
  filter: brightness(0.92) contrast(1.02);
  animation: kenburns 22s ease-in-out infinite alternate;
}
@keyframes kenburns {
  0%   { transform: scale(1.04) translateY(0); }
  100% { transform: scale(1.12) translateY(-1.5%); }
}
.hero-vignette {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10,10,12,0.95) 0%, rgba(10,10,12,0.55) 30%, rgba(10,10,12,0.15) 55%, rgba(10,10,12,0.05) 100%),
    linear-gradient(to top, rgba(10,10,12,0.6) 0%, rgba(10,10,12,0.05) 40%, rgba(10,10,12,0) 70%),
    linear-gradient(120deg, rgba(201,163,104,0.04), rgba(201,163,104,0) 60%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 880px;
}
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 32px;
  opacity: 0;
  animation: fadeUp 1s 0.2s forwards;
}
.hero-eyebrow .line { width: 48px; height: 1px; background: var(--brass); }

.hero-title {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(54px, 9vw, 132px);
  line-height: 0.95;
  letter-spacing: -0.025em;
  margin-bottom: 36px;
}
.hero-title .t-line {
  display: block;
  opacity: 0;
  transform: translateY(40px);
  animation: fadeUp 1.1s cubic-bezier(0.2, 0.8, 0.2, 1) forwards;
}
.hero-title .t-line:nth-child(1) { animation-delay: 0.35s; }
.hero-title .t-line:nth-child(2) { animation-delay: 0.5s; }
.hero-title .t-line:nth-child(3) { animation-delay: 0.65s; color: var(--brass); }

.hero-sub {
  max-width: 560px;
  font-size: 17px;
  line-height: 1.65;
  color: var(--ink-soft);
  margin-bottom: 44px;
  opacity: 0;
  animation: fadeUp 1.1s 0.85s forwards;
}
.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 64px;
  opacity: 0;
  animation: fadeUp 1.1s 1s forwards;
}
.hero-meta {
  display: flex;
  gap: 64px;
  flex-wrap: wrap;
  padding-top: 36px;
  border-top: 1px solid var(--line);
  opacity: 0;
  animation: fadeUp 1.1s 1.15s forwards;
}
.hero-meta > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.hero-meta b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 24px;
  color: var(--ink);
}
.hero-meta span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--ink-mute);
}

.hero-scroll {
  position: absolute;
  right: var(--gutter);
  bottom: 36px;
  z-index: 3;
  width: 40px; height: 60px;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  border: 1px solid var(--brass-line);
  border-radius: 24px;
  padding-top: 8px;
}
.hero-scroll span {
  display: block;
  width: 2px; height: 10px;
  background: var(--brass);
  animation: scroll 2s ease-in-out infinite;
}
@keyframes scroll {
  0%, 100% { transform: translateY(0); opacity: 1; }
  50%      { transform: translateY(20px); opacity: 0.2; }
}
@keyframes fadeUp {
  to { opacity: 1; transform: translateY(0); }
}

/* ============= INTRO ============= */
.intro {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px var(--gutter) 80px;
}
.intro-text {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(22px, 2.6vw, 34px);
  line-height: 1.4;
  letter-spacing: -0.005em;
  color: var(--ink);
  max-width: 1000px;
}
.intro-text i { color: var(--brass); font-style: italic; }

/* ============= AUTO ============= */
.auto {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px var(--gutter) 120px;
}
.auto-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.auto-image .img-wrap {
  aspect-ratio: 4 / 5;
  background-size: cover;
  background-position: center 40%;
  filter: brightness(0.96) contrast(1.02);
  position: relative;
  box-shadow: 0 40px 80px rgba(0,0,0,0.5);
}
.auto-image .img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at center, transparent 40%, rgba(10,10,12,0.4) 100%),
    linear-gradient(120deg, rgba(201,163,104,0.05), rgba(201,163,104,0) 60%);
  pointer-events: none;
}
.auto-image .img-wrap::after {
  content: '';
  position: absolute;
  inset: -1px;
  border: 1px solid var(--brass-line);
  pointer-events: none;
}
.lead {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 24px 0 36px;
  max-width: 540px;
}
.specs {
  list-style: none;
  border-top: 1px solid var(--line);
}
.specs li {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}
.specs b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 28px;
  color: var(--brass);
  font-feature-settings: "tnum";
}
.specs span {
  color: var(--ink-soft);
  font-size: 14px;
}

/* ============= EXPERIENCE ============= */
.experience {
  background: var(--bg-2);
  padding: 140px 0;
  border-top: 1px solid var(--line-soft);
  border-bottom: 1px solid var(--line-soft);
}
.exp-header {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  padding: 0 var(--gutter);
}
.exp-grid {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 24px;
}
.exp-card {
  position: relative;
  overflow: hidden;
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  display: flex;
  flex-direction: column;
}
.exp-img {
  aspect-ratio: 4 / 3;
  background-size: cover;
  background-position: center;
  filter: brightness(0.94) contrast(1.02);
  transition: transform 1.2s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.6s ease;
}
.exp-card:hover .exp-img { transform: scale(1.06); filter: brightness(1) contrast(1.05); }
.exp-text {
  flex: 1;
  padding: 28px 28px 32px;
  border-top: 1px solid var(--brass-line);
  background: var(--bg-3);
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.exp-text h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  margin-bottom: 10px;
  color: var(--ink);
}
.exp-text p {
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.6;
}

/* ============= SCENARIOS ============= */
.scenarios {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px var(--gutter) 80px;
}
.scn-header { margin-bottom: 80px; }
.scn-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}
.scn {
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: 44px 32px 48px;
  position: relative;
  transition: background 0.4s ease;
  min-height: 240px;
}
.scn:hover { background: var(--bg-2); }
.scn:hover .scn-tag { color: var(--brass); }
.scn-tag {
  font-family: var(--display);
  font-style: italic;
  font-size: 15px;
  color: var(--ink-mute);
  display: block;
  margin-bottom: 24px;
  letter-spacing: 0.1em;
  transition: color 0.3s ease;
}
.scn h3 {
  font-family: var(--display);
  font-weight: 400;
  font-size: 26px;
  line-height: 1.15;
  margin-bottom: 14px;
  color: var(--ink);
}
.scn p {
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.6;
}

/* ============= ABOUT ============= */
.about {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px var(--gutter) 80px;
}
.about-header { margin-bottom: 64px; }
.about-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 32px;
  align-items: stretch;
}
.about-card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
}
.about-card.trust {
  border-color: var(--brass-line);
  background: linear-gradient(180deg, var(--bg-2) 0%, #16140f 100%);
}
.card-eyebrow {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 24px;
}
.card-name {
  font-family: var(--display);
  font-weight: 400;
  font-size: clamp(36px, 4vw, 56px);
  line-height: 1.05;
  letter-spacing: -0.015em;
  margin-bottom: 24px;
  color: var(--ink);
}
.card-bio {
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.65;
  margin-bottom: 28px;
}
.card-stats {
  list-style: none;
  margin-top: auto;
  border-top: 1px solid var(--line);
}
.card-stats li {
  display: grid;
  grid-template-columns: 130px 1fr;
  gap: 18px;
  align-items: baseline;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}
.card-stats b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 22px;
  color: var(--brass);
}
.card-stats span {
  color: var(--ink-soft);
  font-size: 14px;
}
.trust-names {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 3.6vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--ink);
  margin-bottom: 28px;
}

@media (max-width: 1024px) {
  .about-grid { grid-template-columns: 1fr; }
}

/* ============= PRICING ============= */
.pricing {
  background: var(--bg-2);
  padding: 140px 0 80px;
  border-top: 1px solid var(--line-soft);
}
.pr-header {
  max-width: var(--maxw);
  margin: 0 auto 80px;
  padding: 0 var(--gutter);
}
.pr-note {
  margin-top: 16px;
  color: var(--ink-soft);
  font-size: 15px;
  max-width: 540px;
}
.pr-grid {
  max-width: 880px;
  margin: 0 auto;
  padding: 0 var(--gutter);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.pr-card {
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 40px 36px 44px;
  display: flex;
  flex-direction: column;
  position: relative;
  transition: border-color 0.3s ease, transform 0.3s ease;
}
.pr-card:hover { border-color: var(--brass-line); transform: translateY(-3px); }
.pr-card.featured {
  background: linear-gradient(180deg, #16161b 0%, #1a1814 100%);
  border-color: var(--brass-line);
}
.pr-tag {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass);
  margin-bottom: 28px;
}
.pr-price {
  display: flex;
  align-items: baseline;
  gap: 6px;
  margin-bottom: 36px;
  font-family: var(--display);
  color: var(--ink);
}
.pr-price .from { font-size: 14px; font-style: italic; color: var(--ink-mute); margin-right: 6px; }
.pr-price .amount { font-size: 52px; line-height: 1; font-weight: 400; letter-spacing: -0.02em; font-feature-settings: "tnum"; }
.pr-price .cur { font-size: 18px; color: var(--ink-soft); margin-left: 4px; }
.pr-card ul { list-style: none; flex: 1; margin-bottom: 32px; }
.pr-card li {
  padding: 10px 0;
  font-size: 14px;
  color: var(--ink-soft);
  border-bottom: 1px solid var(--line-soft);
  position: relative;
  padding-left: 22px;
}
.pr-card li::before {
  content: '+';
  position: absolute;
  left: 0; top: 10px;
  color: var(--brass);
  font-family: var(--display);
}
.pr-card li:last-child { border-bottom: none; }
.pr-badge {
  position: absolute;
  top: -1px; right: -1px;
  background: var(--brass);
  color: #0a0a0c;
  padding: 6px 14px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}
.pr-foot {
  max-width: var(--maxw);
  margin: 48px auto 0;
  padding: 0 var(--gutter);
  font-size: 15px;
  color: var(--ink-soft);
}
.pr-foot b { color: var(--brass); font-weight: 500; }

/* ============= CTA STRIP ============= */
.cta-strip {
  position: relative;
  min-height: 540px;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.cta-image {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center 35%;
  filter: brightness(0.7) contrast(1.05);
  animation: kenburns 30s ease-in-out infinite alternate;
}
.cta-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at left center, transparent 0%, rgba(10,10,12,0.7) 90%),
    linear-gradient(90deg, rgba(10,10,12,0.85) 0%, rgba(10,10,12,0.4) 70%);
}
.cta-content {
  position: relative;
  z-index: 2;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 80px var(--gutter);
}
.cta-content p {
  margin: 24px 0 36px;
  color: var(--ink-soft);
  font-size: 17px;
  max-width: 480px;
}

/* ============= BOOKING ============= */
.book {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 140px var(--gutter) 100px;
}
.book-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: start;
}
.book-info p {
  margin: 24px 0 40px;
  color: var(--ink-soft);
  font-size: 16px;
  max-width: 480px;
}
.contacts {
  display: flex;
  flex-direction: column;
  gap: 4px;
  border-top: 1px solid var(--line);
}
.contact-line {
  display: flex;
  align-items: center;
  gap: 18px;
  padding: 22px 0;
  border-bottom: 1px solid var(--line);
  transition: padding-left 0.3s ease;
}
.contact-line:hover { padding-left: 12px; opacity: 1; }
.contact-line:hover .ico { color: var(--brass); }
.contact-line .ico { color: var(--brass); font-size: 10px; transition: color 0.3s ease; }
.contact-line span { display: flex; flex-direction: column; gap: 2px; }
.contact-line b {
  font-family: var(--display);
  font-weight: 400;
  font-size: 18px;
  color: var(--ink);
}
.contact-line i {
  font-style: normal;
  font-size: 13px;
  color: var(--ink-mute);
  letter-spacing: 0.04em;
}

.book-form {
  background: var(--bg-2);
  border: 1px solid var(--line);
  padding: 44px 40px;
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field { display: flex; flex-direction: column; gap: 8px; }
.field label {
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink-mute);
}
.field input,
.field textarea,
.field select {
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--line);
  padding: 12px 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  outline: none;
  transition: border-color 0.2s ease;
  resize: none;
}
.field input:focus,
.field textarea:focus,
.field select:focus { border-bottom-color: var(--brass); }
.field input::placeholder,
.field textarea::placeholder { color: var(--ink-mute); }
.field select {
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg width='12' height='8' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%23c9a368' stroke-width='1.5' fill='none'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right center;
}
.field select option { background: var(--bg-2); color: var(--ink); }
.form-note {
  font-size: 12px;
  color: var(--ink-mute);
  text-align: center;
  margin-top: 4px;
}
.form-disclaimer {
  font-size: 13px;
  color: var(--ink-soft);
  line-height: 1.5;
  padding: 14px 16px;
  border-left: 2px solid var(--brass-line);
  background: rgba(201, 163, 104, 0.04);
  margin: 4px 0;
}

/* ----- intl-tel-input dark theme overrides ----- */
.iti { width: 100%; }
.iti__tel-input,
.iti input[type="tel"] {
  width: 100% !important;
  background: transparent !important;
  border: none !important;
  border-bottom: 1px solid var(--line) !important;
  padding: 12px 0 12px 100px !important;
  color: var(--ink) !important;
  font-family: var(--body) !important;
  font-size: 16px !important;
  border-radius: 0 !important;
  outline: none;
  transition: border-color 0.2s ease;
}
.iti__tel-input:focus { border-bottom-color: var(--brass) !important; }
.iti__country-list {
  background: var(--bg-3) !important;
  border: 1px solid var(--line) !important;
  color: var(--ink) !important;
  max-height: 240px;
}
.iti__country { color: var(--ink) !important; padding: 8px 10px !important; }
.iti__country:hover,
.iti__highlight { background: var(--bg-2) !important; }
.iti__divider { border-bottom-color: var(--line) !important; }
.iti__country-name { color: var(--ink) !important; }
.iti__dial-code { color: var(--ink-mute) !important; }
.iti__selected-country,
.iti__selected-dial-code { color: var(--ink) !important; }
.iti__search-input {
  background: var(--bg-2) !important;
  color: var(--ink) !important;
  border-bottom: 1px solid var(--line) !important;
}

/* ----- date / time native inputs dark theme ----- */
.field input[type="date"],
.field input[type="time"] {
  color-scheme: dark;
  font-family: var(--body);
}
.field input[type="date"]::-webkit-calendar-picker-indicator,
.field input[type="time"]::-webkit-calendar-picker-indicator {
  filter: invert(70%) sepia(35%) saturate(450%) hue-rotate(355deg) brightness(95%);
  cursor: pointer;
}
.field-row {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 18px;
}

/* ----- Custom CIP checkbox ----- */
.check {
  display: flex;
  align-items: flex-start;
  gap: 14px;
  padding: 18px 16px;
  margin: 4px 0;
  background: var(--bg-3);
  border: 1px solid var(--line);
  cursor: pointer;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.check:hover { border-color: var(--brass-line); }
.check input[type="checkbox"] {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.check .check-box {
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  border: 1px solid var(--brass-line);
  background: transparent;
  position: relative;
  margin-top: 2px;
  transition: all 0.2s ease;
}
.check input:checked + .check-box {
  background: var(--brass);
  border-color: var(--brass);
}
.check input:checked + .check-box::after {
  content: "";
  position: absolute;
  left: 6px;
  top: 2px;
  width: 6px;
  height: 11px;
  border: solid #0a0a0c;
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}
.check .check-text {
  font-size: 14px;
  color: var(--ink);
  line-height: 1.5;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.check .check-text small {
  font-size: 12px;
  color: var(--ink-mute);
  font-weight: 400;
}

/* ============= FOOTER ============= */
.footer {
  background: var(--bg);
  border-top: 1px solid var(--line);
  padding: 80px var(--gutter) 32px;
}
.ft-top {
  max-width: var(--maxw);
  margin: 0 auto 60px;
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 40px;
  align-items: start;
}
.ft-brand { display: flex; align-items: center; gap: 16px; }
.brand-line {
  font-family: var(--display);
  font-size: 16px;
  letter-spacing: 0.2em;
  color: var(--ink-soft);
}
.ft-cols {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.ft-cols h4 {
  font-family: var(--display);
  font-weight: 400;
  font-style: italic;
  font-size: 14px;
  color: var(--brass);
  margin-bottom: 16px;
  letter-spacing: 0.06em;
}
.ft-cols a {
  display: block;
  font-size: 14px;
  color: var(--ink-soft);
  padding: 6px 0;
}
.ft-cols a:hover { color: var(--brass); opacity: 1; }
.ft-bottom {
  max-width: var(--maxw);
  margin: 0 auto;
  padding-top: 32px;
  border-top: 1px solid var(--line-soft);
  display: flex;
  justify-content: space-between;
  font-size: 12px;
  color: var(--ink-mute);
  letter-spacing: 0.08em;
}

/* ============= SCROLL REVEAL ============= */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.9s cubic-bezier(0.2, 0.8, 0.2, 1), transform 0.9s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* ============= RESPONSIVE ============= */
@media (max-width: 1024px) {
  .auto-grid { grid-template-columns: 1fr; }
  .exp-grid { grid-template-columns: 1fr 1fr; }
  .pr-grid { grid-template-columns: 1fr; max-width: 540px; margin-left: auto; margin-right: auto; padding: 0 var(--gutter); }
  .book-grid { grid-template-columns: 1fr; }
  .ft-top { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .nav { padding: 16px var(--gutter); }
  .logo-word { display: none; }
  .nav-links { gap: 18px; font-size: 11px; }
  .nav-links a:not(.nav-cta) { display: none; }
  .nav-links a:nth-last-child(-n+1) { display: inline-flex; }
  .hero { padding: 100px var(--gutter) 60px; min-height: 92vh; }
  .hero-title { font-size: clamp(44px, 12vw, 72px); }
  .hero-meta { gap: 28px; }
  .hero-meta b { font-size: 18px; }
  .hero-meta span { font-size: 11px; }
  .hero-actions { flex-direction: column; align-items: stretch; }
  .hero-actions .btn { width: 100%; }
  .hero-scroll { display: none; }
  .intro, .auto, .scenarios, .book { padding-top: 80px; padding-bottom: 60px; }
  .experience, .pricing { padding: 80px 0; }
  .exp-grid { grid-template-columns: 1fr; }
  .scn-grid { grid-template-columns: 1fr; }
  .ft-cols { grid-template-columns: 1fr 1fr; }
  .ft-bottom { flex-direction: column; gap: 8px; text-align: center; }
  .specs li { grid-template-columns: 64px 1fr; gap: 16px; }
  .specs b { font-size: 22px; }
  .book-form { padding: 32px 24px; }
  .pr-card { padding: 32px 26px 36px; }
}
