:root {
  --ink: #17231f;
  --ink-soft: #31413b;
  --ivory: #f7f2e8;
  --paper: #fffaf0;
  --jade: #31584d;
  --jade-deep: #213b34;
  --jade-light: #dce7de;
  --cinnabar: #9c2f25;
  --gold: #c6974b;
  --gold-soft: #ebd2a0;
  --mist: #e6ebe5;
  --line: rgba(23, 35, 31, 0.16);
  --shadow: 0 24px 70px rgba(12, 20, 18, 0.14);
  --shadow-soft: 0 14px 34px rgba(12, 20, 18, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(198, 151, 75, 0.10), transparent 26%),
    radial-gradient(circle at bottom right, rgba(49, 88, 77, 0.12), transparent 24%),
    var(--paper);
  font-family: Georgia, "Times New Roman", serif;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
select,
textarea {
  font: inherit;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 4vw, 58px);
  color: #fff;
  background: linear-gradient(180deg, rgba(10, 16, 14, 0.78), rgba(10, 16, 14, 0));
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--ink);
  background: rgba(255, 250, 240, 0.95);
  box-shadow: 0 14px 44px rgba(12, 20, 18, 0.12);
  backdrop-filter: blur(12px);
  padding-block: 12px;
}

.brand,
.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: 220px;
}

.brand {
  gap: 14px;
}

.brand-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 9px 14px;
  border-radius: 999px;
  background: rgba(255, 250, 240, 0.94);
  box-shadow: 0 10px 24px rgba(12, 20, 18, 0.18);
}

.brand-lockup {
  display: block;
  width: 156px;
  max-width: none;
  height: auto;
  object-fit: contain;
}

.brand-copy strong {
  display: block;
  font-size: 15px;
  line-height: 1.1;
}

.brand-copy small {
  display: block;
  margin-top: 2px;
  font-size: 12px;
  opacity: 0.78;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 24px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 600;
}

.main-nav a {
  opacity: 0.88;
}

.main-nav a:hover {
  opacity: 1;
}

.nav-cta {
  padding: 10px 16px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  color: inherit;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 96vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(10, 16, 14, 0.88), rgba(10, 16, 14, 0.56) 45%, rgba(10, 16, 14, 0.12)),
    linear-gradient(180deg, rgba(10, 16, 14, 0.16), rgba(10, 16, 14, 0.64));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
  padding: 154px 0 56px;
}

.eyebrow {
  margin: 0 0 14px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold);
}

.eyebrow.dark {
  color: var(--cinnabar);
}

.eyebrow.light {
  color: var(--gold-soft);
}

h1,
h2,
h3,
p,
ul,
ol,
figure {
  margin-top: 0;
}

figure {
  margin: 0;
}

h1 {
  max-width: 920px;
  margin-bottom: 18px;
  font-size: clamp(58px, 8vw, 110px);
  line-height: 0.93;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 4.8vw, 62px);
  line-height: 1.02;
}

h3 {
  margin-bottom: 12px;
  font-size: 25px;
  line-height: 1.18;
}

.hero-lead {
  max-width: 700px;
  margin-bottom: 28px;
  font-size: clamp(19px, 2vw, 26px);
  line-height: 1.38;
}

.hero-actions,
.form-row,
.program-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 21px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
  line-height: 1;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #fff;
  background: var(--cinnabar);
  border-color: var(--cinnabar);
}

.button-primary:hover {
  background: #84271f;
}

.button-secondary {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.78);
  background: rgba(255, 255, 255, 0.08);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  max-width: 1120px;
  margin: 54px 0 0;
  background: rgba(255, 255, 255, 0.24);
}

.hero-facts div {
  min-height: 134px;
  padding: 18px;
  background: rgba(15, 22, 20, 0.58);
}

.hero-facts dt {
  font-weight: 700;
  color: #f6d28c;
}

.hero-facts dd {
  margin: 6px 0 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  color: rgba(255, 255, 255, 0.88);
}

.section,
.section-band {
  padding: clamp(76px, 9vw, 124px) 0;
}

.section-band {
  background:
    linear-gradient(180deg, rgba(255, 250, 240, 0.98), rgba(247, 242, 232, 0.98)),
    radial-gradient(circle at top right, rgba(198, 151, 75, 0.12), transparent 28%);
}

.section-inner {
  width: min(1140px, calc(100% - 40px));
  margin: 0 auto;
}

.intro-grid,
.feature-grid,
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(34px, 6vw, 82px);
  align-items: start;
}

.stack-copy {
  display: grid;
  gap: 18px;
}

.intro-grid p:last-child,
.feature-copy p,
.contact-grid p,
.section-heading p,
.stack-copy p {
  font-size: 18px;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 42px;
}

.service-grid {
  display: grid;
  gap: 18px;
}

.service-grid-wide {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.service-card,
.audience-card,
.support-panel,
.program-card,
.proof-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.62);
  box-shadow: var(--shadow-soft);
}

.service-card {
  min-height: 280px;
  padding: 24px;
}

.accent-card {
  background:
    linear-gradient(180deg, rgba(156, 47, 37, 0.06), rgba(255, 255, 255, 0.92)),
    rgba(255, 255, 255, 0.62);
}

.card-number,
.trip-meta {
  display: block;
  margin-bottom: 26px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 12px;
  font-weight: 700;
  color: var(--cinnabar);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.service-card p,
.timeline p,
.trip-card p,
.faq p,
.contact-note span,
.site-footer p,
.site-footer a,
.audience-card p,
.support-panel li,
.program-card p,
.program-feature p,
.proof-card figcaption,
.inline-link {
  font-family: "Segoe UI", Arial, sans-serif;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.audience-card {
  padding: 28px;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.88), rgba(220, 231, 222, 0.78));
}

.check-list {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 28px 0 0;
  list-style: none;
  font-family: "Segoe UI", Arial, sans-serif;
}

.compact-list {
  gap: 10px;
  margin-top: 22px;
}

.check-list li {
  position: relative;
  padding-left: 28px;
}

.check-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 14px;
  height: 2px;
  background: var(--gold);
}

.feature-grid {
  align-items: center;
}

.support-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-top: 28px;
}

.support-panel {
  padding: 22px;
  background: rgba(255, 250, 240, 0.78);
}

.panel-list {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
}

.image-pair {
  display: grid;
  grid-template-columns: 1fr 0.82fr;
  gap: 18px;
  align-items: end;
}

.image-pair img {
  width: 100%;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.image-pair img:first-child {
  height: 500px;
}

.image-pair img:nth-child(2) {
  height: 360px;
}

.proof {
  background:
    linear-gradient(180deg, rgba(247, 242, 232, 0.26), rgba(255, 250, 240, 0.9)),
    radial-gradient(circle at center, rgba(49, 88, 77, 0.06), transparent 34%);
}

.proof-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.proof-card {
  overflow: hidden;
}

.proof-card img {
  width: 100%;
  height: 320px;
  object-fit: cover;
}

.proof-card figcaption {
  padding: 18px 20px 22px;
  font-size: 15px;
  color: var(--ink-soft);
}

.process {
  background:
    linear-gradient(180deg, var(--paper), #f2eadc),
    radial-gradient(circle at bottom left, rgba(156, 47, 37, 0.08), transparent 24%);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 18px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.timeline li {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.timeline span {
  display: grid;
  place-items: center;
  width: 36px;
  height: 36px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--jade);
  font-family: "Segoe UI", Arial, sans-serif;
  font-weight: 700;
}

.dark-section {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(12, 20, 18, 0.96), rgba(23, 35, 31, 0.98)),
    radial-gradient(circle at top right, rgba(198, 151, 75, 0.18), transparent 26%);
}

.program-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.program-feature {
  grid-column: span 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.02fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.06);
}

.program-feature img {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.program-feature > div {
  padding: 28px;
}

.program-card {
  padding: 26px;
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

.inline-link {
  color: var(--gold-soft);
  font-weight: 700;
}

.inline-link:hover {
  color: #fff;
}

.faq-list {
  display: grid;
  gap: 12px;
}

details {
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

summary {
  padding: 20px 22px;
  cursor: pointer;
  font-size: 19px;
  font-weight: 700;
}

details p {
  margin: 0;
  padding: 0 22px 22px;
}

.contact {
  background:
    linear-gradient(180deg, rgba(230, 235, 229, 0.92), rgba(247, 242, 232, 0.9)),
    radial-gradient(circle at top right, rgba(49, 88, 77, 0.10), transparent 26%);
}

.contact-note {
  display: grid;
  gap: 6px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 250, 240, 0.74);
}

.lead-form {
  display: grid;
  gap: 16px;
  padding: clamp(20px, 4vw, 34px);
  border-radius: 12px;
  background: var(--paper);
  box-shadow: var(--shadow);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

label {
  display: grid;
  gap: 8px;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  font-weight: 700;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid rgba(23, 35, 31, 0.22);
  border-radius: 8px;
  padding: 13px 14px;
  color: var(--ink);
  background: #fffdf7;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(198, 151, 75, 0.28);
  border-color: var(--gold);
}

textarea {
  resize: vertical;
}

.consent {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 10px;
  font-weight: 400;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
}

.form-button {
  width: fit-content;
}

.form-status {
  min-height: 22px;
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  font-size: 14px;
  color: var(--cinnabar);
}

.site-footer {
  color: rgba(255, 255, 255, 0.82);
  background: #101815;
  padding: 48px clamp(20px, 4vw, 58px) 24px;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 28px;
  width: min(1140px, 100%);
  margin: 0 auto 34px;
}

.footer-brand {
  min-width: 0;
  margin-bottom: 12px;
}

.footer-lockup {
  display: block;
  width: auto;
  height: 48px;
}

.footer-url {
  color: var(--gold-soft);
}

.site-footer h2 {
  margin-bottom: 12px;
  color: #fff;
  font-size: 18px;
}

.site-footer a {
  display: block;
  margin-bottom: 8px;
}

.copyright {
  width: min(1140px, 100%);
  margin: 0 auto;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  font-size: 13px;
}

.legal-page {
  min-height: 100vh;
  color: var(--ink);
  background: var(--paper);
}

.legal-main {
  width: min(900px, calc(100% - 40px));
  margin: 0 auto;
  padding: 120px 0 80px;
}

.legal-main h1 {
  color: var(--ink);
  font-size: clamp(42px, 6vw, 76px);
}

.legal-box {
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.58);
}

@media (max-width: 1080px) {
  .hero-facts,
  .audience-grid,
  .proof-grid,
  .program-grid,
  .footer-inner {
    grid-template-columns: 1fr 1fr;
  }

  .service-grid-wide,
  .timeline {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .program-feature {
    grid-column: span 2;
  }
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 70px;
    left: 20px;
    right: 20px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 10px;
    color: var(--ink);
    border-radius: 12px;
    background: var(--paper);
    box-shadow: var(--shadow);
  }

  .main-nav.is-open {
    display: flex;
  }

  .main-nav a {
    padding: 14px;
  }

  .nav-cta {
    border-radius: 8px;
  }

  .nav-toggle {
    display: block;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(10, 16, 14, 0.44), rgba(10, 16, 14, 0.82)),
      linear-gradient(90deg, rgba(10, 16, 14, 0.76), rgba(10, 16, 14, 0.24));
  }

  .intro-grid,
  .feature-grid,
  .contact-grid,
  .program-feature {
    grid-template-columns: 1fr;
  }

  .support-grid,
  .form-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 680px) {
  .site-header {
    padding-inline: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-copy {
    display: none;
  }

  .brand-copy strong {
    font-size: 14px;
  }

  .brand-badge {
    padding: 8px 11px;
  }

  .brand-lockup {
    width: 118px;
    height: auto;
  }

  .hero-content,
  .section-inner,
  .legal-main {
    width: calc(100% - 32px);
  }

  h1 {
    font-size: clamp(48px, 16vw, 72px);
  }

  h2 {
    font-size: clamp(32px, 11vw, 46px);
  }

  .hero-content {
    padding-bottom: 34px;
  }

  .hero-actions,
  .hero-actions .button,
  .program-actions,
  .program-actions .button,
  .form-button {
    width: 100%;
  }

  .hero-facts,
  .service-grid-wide,
  .audience-grid,
  .support-grid,
  .proof-grid,
  .program-grid,
  .timeline,
  .footer-inner,
  .form-row,
  .image-pair {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    display: none;
  }

  .image-pair img:first-child,
  .image-pair img:nth-child(2),
  .proof-card img {
    height: 280px;
  }

  .program-feature {
    grid-column: span 1;
  }

  .service-card,
  .audience-card,
  .program-card,
  .support-panel {
    min-height: auto;
  }
}
