:root {
  --bg-0: #0a0a10;
  --bg-1: #0f0f18;
  --bg-2: #15151f;
  --bg-3: #1c1c28;
  --ink-0: #f2f0ea;
  --ink-1: #cbc8d4;
  --ink-2: #9694a5;
  --ink-3: #6c6a7a;
  --gold: #c9a24d;
  --gold-lt: #e4c777;
  --plum: #8b6bb8;
  --line: rgba(201, 162, 77, 0.16);
  --line-soft: rgba(255,255,255,0.06);

  --sp-1: 0.5rem;
  --sp-2: 1rem;
  --sp-3: 1.5rem;
  --sp-4: 2.5rem;
  --sp-5: 4rem;
  --sp-6: 6rem;
  --sp-7: 9rem;

  --r-sm: 8px;
  --r-md: 14px;
  --r-lg: 22px;
  --r-xl: 32px;

  --sh-sm: 0 2px 8px rgba(0,0,0,0.35);
  --sh-md: 0 10px 30px rgba(0,0,0,0.4), 0 2px 6px rgba(0,0,0,0.3);
  --sh-lg: 0 25px 60px rgba(0,0,0,0.5), 0 8px 20px rgba(0,0,0,0.35);
  --sh-gold: 0 0 0 1px rgba(201,162,77,0.25), 0 12px 30px rgba(201,162,77,0.08);

  --ease: cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--bg-0);
  color: var(--ink-1);
  font-family: 'Epilogue', sans-serif;
  font-weight: 400;
  line-height: 1.65;
  overflow-x: hidden;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  background-image:
    radial-gradient(ellipse 800px 500px at 15% -10%, rgba(139,107,184,0.10), transparent),
    radial-gradient(ellipse 700px 500px at 100% 20%, rgba(201,162,77,0.06), transparent);
  background-attachment: fixed;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

h1, h2, h3, h4 { font-family: 'Epilogue', sans-serif; color: var(--ink-0); font-weight: 700; letter-spacing: -0.02em; }


.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.6rem;
  border-radius: var(--r-md);
  font-weight: 600;
  font-size: 0.95rem;
  min-height: 44px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.35s var(--ease), box-shadow 0.35s var(--ease), background 0.35s var(--ease), color 0.35s var(--ease), border-color 0.35s var(--ease);
  white-space: nowrap;
}
.btn-fill {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #241a08;
  box-shadow: var(--sh-md), 0 0 0 1px rgba(201,162,77,0.3);
}
.btn-fill:hover {
  transform: translateY(-3px) scale(1.02);
  box-shadow: var(--sh-lg), 0 0 30px rgba(201,162,77,0.35);
}
.btn-fill:active { transform: translateY(-1px) scale(0.99); }
.btn-ghost {
  background: transparent;
  color: var(--ink-0);
  border-color: rgba(255,255,255,0.18);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold-lt);
  background: rgba(201,162,77,0.06);
  transform: translateY(-3px);
}
.btn-lg { padding: 1.05rem 2.1rem; font-size: 1.02rem; }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  color: var(--gold-lt);
  font-weight: 600;
  position: relative;
  transition: gap 0.3s var(--ease), color 0.3s var(--ease);
}
.link-arrow:hover { gap: 1rem; color: var(--gold); }


.hdr {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  transform: translateY(-100%);
  transition: transform 0.5s var(--ease);
  background: rgba(10,10,16,0.82);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.hdr.show { transform: translateY(0); }

.hdr-in {
  max-width: 1280px;
  margin: 0 auto;
  padding: 1rem var(--sp-4);
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.hdr-logo {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 700;
  font-size: 1.1rem;
  color: var(--ink-0);
  margin-right: auto;
}
.hdr-nav {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
}
.hdr-nav a {
  color: var(--ink-2);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
  padding: 0.3rem 0;
  transition: color 0.3s var(--ease);
}
.hdr-nav a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.35s var(--ease);
}
.hdr-nav a:hover, .hdr-nav a.active { color: var(--ink-0); }
.hdr-nav a:hover::after, .hdr-nav a.active::after { width: 100%; }

.hdr-cta { display: flex; align-items: center; gap: 0.8rem; }

.hdr-burger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--line-soft);
  border-radius: var(--r-sm);
  cursor: pointer;
}
.hdr-burger span {
  display: block;
  height: 2px; width: 20px;
  margin: 0 auto;
  background: var(--ink-0);
  transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}
.hdr-burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hdr-burger.open span:nth-child(2) { opacity: 0; }
.hdr-burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.hdr-mob {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.45s var(--ease);
  background: var(--bg-1);
  border-top: 1px solid var(--line-soft);
}
.hdr-mob.open { max-height: 500px; }
.hdr-mob a {
  display: block;
  padding: 0.9rem var(--sp-4);
  color: var(--ink-1);
  border-bottom: 1px solid var(--line-soft);
  font-weight: 500;
  transition: color 0.3s var(--ease), background 0.3s var(--ease);
}
.hdr-mob a:hover { color: var(--gold-lt); background: rgba(201,162,77,0.05); }
.hdr-mob .btn { margin: var(--sp-2) var(--sp-4); }


.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: var(--sp-6) var(--sp-4);
  text-align: center;
  overflow: hidden;
}
.hero-glow {
  position: absolute;
  top: 10%; left: 50%;
  transform: translateX(-50%);
  width: 900px; height: 900px;
  background: radial-gradient(circle, rgba(139,107,184,0.18) 0%, rgba(201,162,77,0.08) 40%, transparent 70%);
  filter: blur(40px);
  pointer-events: none;
  animation: pulseGlow 8s ease-in-out infinite;
}
@keyframes pulseGlow {
  0%, 100% { opacity: 0.7; transform: translateX(-50%) scale(1); }
  50% { opacity: 1; transform: translateX(-50%) scale(1.08); }
}
.hero-in { max-width: 900px; position: relative; z-index: 2; }
.hero-eyebrow {
  color: var(--gold-lt);
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.85rem;
  margin-bottom: var(--sp-3);
  opacity: 0;
  animation: fadeUp 0.8s var(--ease) 0.1s forwards;
}
.hero-h1 {
  font-size: clamp(2.8rem, 8vw, 6.2rem);
  line-height: 1.02;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--ink-0);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.25s forwards;
}
.hero-accent {
  background: linear-gradient(135deg, var(--gold-lt), var(--plum));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-style: italic;
  font-weight: 700;
}
.hero-sub {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--ink-2);
  max-width: 650px;
  margin: var(--sp-4) auto 0;
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.45s forwards;
}
.hero-actions {
  display: flex;
  gap: var(--sp-3);
  justify-content: center;
  flex-wrap: wrap;
  margin-top: var(--sp-5);
  opacity: 0;
  animation: fadeUp 0.9s var(--ease) 0.6s forwards;
}
.hero-actions-center { justify-content: center; }
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.hero-scroll {
  position: absolute;
  bottom: var(--sp-4);
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.4rem;
  color: var(--ink-3);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  animation: bob 2.2s ease-in-out infinite;
}
@keyframes bob {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}


.page-hero {
  padding: calc(var(--sp-7) + 2rem) var(--sp-4) var(--sp-6);
  text-align: center;
  position: relative;
  background: radial-gradient(ellipse 700px 400px at 50% 0%, rgba(139,107,184,0.12), transparent);
}
.page-hero-sm { padding-bottom: var(--sp-5); }
.page-hero-in { max-width: 800px; margin: 0 auto; }
.page-h1 {
  font-size: clamp(2.2rem, 6vw, 4rem);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  margin: var(--sp-2) 0 var(--sp-3);
}
.page-lead { font-size: 1.1rem; color: var(--ink-2); max-width: 620px; margin: 0 auto; }


.sec { padding: var(--sp-6) var(--sp-4); position: relative; }
.sec-alt { background: linear-gradient(180deg, transparent, var(--bg-1) 15%, var(--bg-1) 85%, transparent); }
.sec-in { max-width: 1280px; margin: 0 auto; }
.sec-in-narrow { max-width: 780px; }
.sec-head { margin-bottom: var(--sp-5); }
.sec-head-center { text-align: center; max-width: 620px; margin: 0 auto var(--sp-5); }
.sec-eyebrow {
  color: var(--gold-lt);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.82rem;
  margin-bottom: var(--sp-2);
  display: block;
}
.sec-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 700; letter-spacing: -0.02em; }
.sec-title-sm { font-size: clamp(1.4rem, 3vw, 1.8rem); font-weight: 700; margin-bottom: var(--sp-4); }
.sec-title-lg {
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
  text-align: center;
  margin-bottom: var(--sp-3);
}
.sec-lead { font-size: 1.1rem; color: var(--ink-2); line-height: 1.75; text-align: center; max-width: 680px; margin: 0 auto; }
.sec-lead-sm { font-size: 1.02rem; color: var(--ink-2); line-height: 1.75; margin-bottom: var(--sp-3); }
.sec-intro { padding-top: var(--sp-7); }
.sec-cta-center { text-align: center; }
.sec-cta-band { background: linear-gradient(180deg, transparent, rgba(139,107,184,0.06)); }

.sec-list { margin-top: var(--sp-3); display: flex; flex-direction: column; gap: 0.8rem; }
.sec-list li { display: flex; align-items: flex-start; gap: 0.7rem; color: var(--ink-1); font-size: 1rem; }
.sec-list i { color: var(--gold); margin-top: 0.28rem; }


.crd-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--sp-3);
}
.crd-grid-3 { grid-template-columns: repeat(3, 1fr); }
.crd-grid-2 { grid-template-columns: repeat(2, 1fr); }

.crd {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.crd:has(img) { padding: 0; overflow: hidden; }
.crd:hover {
  transform: translateY(-8px);
  box-shadow: var(--sh-lg), var(--sh-gold);
  border-color: rgba(201,162,77,0.3);
}
.crd-ico {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: linear-gradient(135deg, rgba(201,162,77,0.18), rgba(139,107,184,0.14));
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-lt);
  font-size: 1.25rem;
  margin-bottom: var(--sp-3);
  transition: transform 0.4s var(--ease);
}
.crd:hover .crd-ico { transform: scale(1.1) rotate(-4deg); }
.crd-h { font-size: 1.15rem; font-weight: 700; margin-bottom: 0.6rem; color: var(--ink-0); }
.crd-txt { font-size: 0.96rem; color: var(--ink-2); line-height: 1.65; }


.sec-split-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--sp-5);
  align-items: center;
}
.sec-split-rev .sec-split-img { order: 2; }
.sec-split-img img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: var(--r-xl);
  box-shadow: var(--sh-lg);
}
.sec-split-txt .sec-title { margin-bottom: var(--sp-3); }


.gal-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 220px;
  gap: var(--sp-2);
}
.gal-item {
  position: relative;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--sh-md);
}
.gal-tall { grid-row: span 2; }
.gal-wide { grid-column: span 2; }
.gal-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease), filter 0.6s var(--ease);
}
.gal-item::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(10,10,16,0.85));
  opacity: 0;
  transition: opacity 0.4s var(--ease);
}
.gal-item figcaption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  padding: var(--sp-3);
  color: var(--ink-0);
  font-weight: 600;
  opacity: 0;
  transform: translateY(10px);
  transition: opacity 0.4s var(--ease), transform 0.4s var(--ease);
  z-index: 2;
}
.gal-item:hover img { transform: scale(1.1); filter: brightness(0.75); }
.gal-item:hover::after { opacity: 1; }
.gal-item:hover figcaption { opacity: 1; transform: translateY(0); }


.profile-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--sp-4);
}
.profile-crd {
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease);
}
.profile-crd:hover { transform: translateY(-6px); box-shadow: var(--sh-lg); }
.profile-num {
  font-size: 2.4rem;
  font-weight: 800;
  color: transparent;
  -webkit-text-stroke: 1px var(--gold);
  margin-bottom: var(--sp-2);
}
.profile-crd h3 { font-size: 1.25rem; margin-bottom: 0.6rem; }
.profile-crd p { color: var(--ink-2); font-size: 0.98rem; }


.phase-block {
  display: flex;
  gap: var(--sp-3);
  margin-top: var(--sp-4);
}
.phase-num {
  flex-shrink: 0;
  width: 46px; height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #241a08;
  display: flex; align-items: center; justify-content: center;
  font-weight: 800;
  font-size: 1.1rem;
}
.phase-block h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.phase-block p { color: var(--ink-2); font-size: 0.98rem; }


.term-list { display: flex; flex-direction: column; gap: var(--sp-3); }
.term-crd {
  display: flex;
  align-items: center;
  gap: var(--sp-4);
  background: linear-gradient(160deg, var(--bg-2), var(--bg-1));
  border: 1px solid var(--line-soft);
  border-radius: var(--r-lg);
  padding: var(--sp-4);
  transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
}
.term-crd:hover { transform: translateY(-4px); box-shadow: var(--sh-lg); border-color: rgba(201,162,77,0.25); }
.term-date {
  flex-shrink: 0;
  width: 76px; height: 76px;
  border-radius: var(--r-md);
  background: linear-gradient(160deg, rgba(201,162,77,0.16), rgba(139,107,184,0.12));
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  border: 1px solid var(--line);
}
.term-day { font-size: 1.6rem; font-weight: 800; color: var(--gold-lt); line-height: 1; }
.term-mon { font-size: 0.7rem; letter-spacing: 0.1em; color: var(--ink-2); }
.term-body { flex: 1; }
.term-body h3 { font-size: 1.15rem; margin-bottom: 0.4rem; }
.term-body p { color: var(--ink-2); font-size: 0.95rem; margin-bottom: 0.6rem; }
.term-meta { display: flex; gap: var(--sp-3); flex-wrap: wrap; font-size: 0.85rem; color: var(--ink-3); }
.term-meta i { color: var(--gold); margin-right: 0.3rem; }


.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: var(--sp-5);
  align-items: start;
}
.contact-info { display: flex; flex-direction: column; gap: var(--sp-3); }
.info-item {
  display: flex;
  gap: var(--sp-3);
  align-items: flex-start;
  padding: var(--sp-3);
  border-radius: var(--r-md);
  border: 1px solid var(--line-soft);
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}
.info-item:hover { border-color: var(--line); background: rgba(201,162,77,0.03); }
.info-item i { color: var(--gold-lt); font-size: 1.2rem; margin-top: 0.2rem; }
.info-item strong { color: var(--ink-0); display: block; margin-bottom: 0.2rem; }
.info-item a:hover { color: var(--gold-lt); }

.chat-form-wrap {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-xl);
  padding: var(--sp-4);
  box-shadow: var(--sh-md);
}
.chat-frm { display: flex; flex-direction: column; gap: var(--sp-2); }
.chat-frm:has(:focus) { }
.chat-bubble {
  max-width: 85%;
  padding: 0.8rem 1.1rem;
  border-radius: var(--r-lg);
  font-size: 0.96rem;
}
.bubble-company {
  align-self: flex-start;
  background: var(--bg-3);
  color: var(--ink-1);
  border-bottom-left-radius: 4px;
}
.bubble-user {
  align-self: flex-end;
  max-width: 90%;
  width: 90%;
  background: transparent;
  padding: 0;
}
.bubble-user input[type="text"],
.bubble-user input[type="email"],
.bubble-user textarea {
  width: 100%;
  background: linear-gradient(135deg, rgba(201,162,77,0.14), rgba(139,107,184,0.1));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  border-bottom-right-radius: 4px;
  padding: 0.8rem 1.1rem;
  color: var(--ink-0);
  font-family: inherit;
  font-size: 0.96rem;
  transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease), background 0.3s var(--ease);
  resize: vertical;
}
.bubble-user input:focus,
.bubble-user textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,162,77,0.15);
  background: rgba(201,162,77,0.1);
}
.bubble-check { display: flex; justify-content: flex-end; }
.check-label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  background: linear-gradient(135deg, rgba(201,162,77,0.14), rgba(139,107,184,0.1));
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  border-bottom-right-radius: 4px;
  padding: 0.8rem 1.1rem;
  font-size: 0.9rem;
  color: var(--ink-1);
  cursor: pointer;
}
.check-label input { width: 18px; height: 18px; accent-color: var(--gold); cursor: pointer; }
.check-label a { color: var(--gold-lt); text-decoration: underline; }
.btn-send { align-self: flex-end; margin-top: var(--sp-2); }

.map-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--sh-lg);
  border: 1px solid var(--line-soft);
  margin-bottom: var(--sp-4);
}
.mini-gal {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--sp-2);
}
.mini-gal figure {
  border-radius: var(--r-lg);
  overflow: hidden;
  position: relative;
  box-shadow: var(--sh-md);
}
.mini-gal img { aspect-ratio: 4/3; object-fit: cover; width: 100%; transition: transform 0.6s var(--ease); }
.mini-gal figure:hover img { transform: scale(1.08); }
.mini-gal figcaption {
  position: absolute; bottom: 0; left: 0; right: 0;
  padding: 0.7rem;
  background: linear-gradient(180deg, transparent, rgba(10,10,16,0.9));
  color: var(--ink-0);
  font-size: 0.85rem;
  font-weight: 600;
}


.acc-list { display: flex; flex-direction: column; gap: 0.8rem; }
.acc-list details {
  background: var(--bg-2);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color 0.3s var(--ease);
}
.acc-list details[open] { border-color: var(--line); }
.acc-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: var(--sp-3) var(--sp-4);
  cursor: pointer;
  font-weight: 600;
  color: var(--ink-0);
  list-style: none;
  transition: background 0.3s var(--ease);
}
.acc-list summary::-webkit-details-marker { display: none; }
.acc-list summary:hover { background: rgba(201,162,77,0.05); }
.acc-list summary i {
  color: var(--gold-lt);
  transition: transform 0.35s var(--ease);
  flex-shrink: 0;
  margin-left: var(--sp-2);
}
.acc-list details[open] summary i { transform: rotate(45deg); }
.acc-body { padding: 0 var(--sp-4) var(--sp-3); color: var(--ink-2); font-size: 0.96rem; line-height: 1.75; }
.acc-body p { margin-bottom: 0.9rem; }
.acc-body p:last-child { margin-bottom: 0; }

.acc-list-simple summary { font-size: 1rem; }
.acc-list-simple p { padding: 0 var(--sp-4) var(--sp-3); color: var(--ink-2); }


.thanks-sec {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: var(--sp-7) var(--sp-4);
  min-height: 70vh;
}
.thanks-in { max-width: 700px; }
.thanks-h1 {
  font-size: clamp(2.4rem, 7vw, 4.6rem);
  font-weight: 800;
  line-height: 1.05;
  letter-spacing: -0.03em;
  margin-bottom: var(--sp-3);
}
.thanks-lead { color: var(--ink-2); font-size: 1.1rem; margin-bottom: var(--sp-4); }


.ftr {
  background: #050508;
  border-top: 1px solid var(--line-soft);
  padding: var(--sp-6) var(--sp-4) var(--sp-4);
  margin-top: auto;
}
.ftr-in {
  max-width: 1280px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: var(--sp-4);
  padding-bottom: var(--sp-5);
}
.ftr-col { display: flex; flex-direction: column; gap: 0.7rem; }
.ftr-brand p { color: var(--ink-3); font-size: 0.9rem; max-width: 280px; margin-top: 0.4rem; }
.ftr-col h4 { color: var(--ink-0); font-size: 0.95rem; margin-bottom: 0.3rem; }
.ftr-col a, .ftr-col p { color: var(--ink-3); font-size: 0.92rem; transition: color 0.3s var(--ease); }
.ftr-col a:hover { color: var(--gold-lt); }
.ftr-bottom {
  max-width: 1280px;
  margin: 0 auto;
  padding-top: var(--sp-3);
  border-top: 1px solid var(--line-soft);
  color: var(--ink-3);
  font-size: 0.85rem;
  text-align: center;
}


.cc-backdrop {
  position: fixed; inset: 0;
  background: rgba(5,5,8,0.75);
  backdrop-filter: blur(4px);
  z-index: 1000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--sp-3);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.4s var(--ease);
}
.cc-backdrop.show { opacity: 1; pointer-events: all; }
.cc-modal {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  max-width: 560px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  padding: var(--sp-4);
  box-shadow: var(--sh-lg);
  transform: scale(0.94) translateY(10px);
  transition: transform 0.4s var(--ease);
}
.cc-backdrop.show .cc-modal { transform: scale(1) translateY(0); }
.cc-modal h2 { font-size: 1.4rem; margin-bottom: 0.6rem; }
.cc-modal p { color: var(--ink-2); font-size: 0.94rem; margin-bottom: var(--sp-3); }
.cc-cats { display: flex; flex-direction: column; gap: 0.7rem; margin-bottom: var(--sp-3); }
.cc-cat {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.8rem 1rem;
  background: var(--bg-3);
  border: 1px solid var(--line-soft);
  border-radius: var(--r-md);
}
.cc-cat strong { color: var(--ink-0); font-size: 0.92rem; display: block; }
.cc-cat span { color: var(--ink-3); font-size: 0.8rem; }
.cc-switch { position: relative; width: 42px; height: 24px; flex-shrink: 0; }
.cc-switch input { opacity: 0; width: 0; height: 0; }
.cc-switch label {
  position: absolute; inset: 0;
  background: var(--bg-1);
  border: 1px solid var(--line-soft);
  border-radius: 20px;
  cursor: pointer;
  transition: background 0.3s var(--ease);
}
.cc-switch label::after {
  content: '';
  position: absolute;
  top: 2px; left: 2px;
  width: 18px; height: 18px;
  background: var(--ink-2);
  border-radius: 50%;
  transition: transform 0.3s var(--ease), background 0.3s var(--ease);
}
.cc-switch input:checked + label { background: rgba(201,162,77,0.25); border-color: var(--gold); }
.cc-switch input:checked + label::after { transform: translateX(18px); background: var(--gold-lt); }
.cc-switch input:disabled + label { opacity: 0.6; cursor: not-allowed; }
.cc-actions { display: flex; gap: 0.7rem; flex-wrap: wrap; }
.cc-actions .btn { flex: 1; min-width: 140px; }


.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s var(--ease), transform 0.8s var(--ease); }
.reveal.in-view { opacity: 1; transform: translateY(0); }

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1024px) {
  .crd-grid { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(2, 1fr); grid-auto-rows: 200px; }
  .gal-wide { grid-column: span 2; }
  .contact-grid { grid-template-columns: 1fr; }
  .ftr-in { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 860px) {
  .hdr-nav, .hdr-cta { display: none; }
  .hdr-burger { display: flex; }
  .sec-split-grid { grid-template-columns: 1fr; }
  .sec-split-rev .sec-split-img { order: 0; }
  .profile-grid { grid-template-columns: 1fr; }
  .crd-grid-3 { grid-template-columns: 1fr; }
  .crd-grid-2 { grid-template-columns: 1fr; }
  .term-crd { flex-direction: column; align-items: flex-start; }
  .term-crd .btn { align-self: stretch; text-align: center; }
  .mini-gal { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .sec { padding: var(--sp-5) var(--sp-3); }
  .crd-grid { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: 1fr; grid-auto-rows: 220px; }
  .gal-tall { grid-row: span 1; }
  .gal-wide { grid-column: span 1; }
  .ftr-in { grid-template-columns: 1fr; gap: var(--sp-3); }
  .hero { padding: var(--sp-5) var(--sp-3); }
  .hero-actions { flex-direction: column; width: 100%; }
  .hero-actions .btn { width: 100%; }
  .hero-actions-center .btn { width: 100%; }
  .bubble-user { width: 100%; }
  .cc-actions { flex-direction: column; }
}