/* ============================================
   BLACKNESS CASTLE — Official Website
   Shared Stylesheet
   ============================================ */

/* ── CUSTOM PROPERTIES ── */
:root {
  --stone:       #f5f1ec;
  --stone-mid:   #e6dfd5;
  --stone-dark:  #c8bdb0;
  --ink:         #1a1714;
  --ink-mid:     #3c3830;
  --ink-light:   #6b6460;
  --gold:        #8b6914;
  --gold-light:  #b8881e;
  --gold-pale:   #f8f0db;
  --sea:         #2d4a6b;
  --sea-light:   #4a7aa8;
  --sea-pale:    #e6eef6;
  --white:       #ffffff;
  --red:         #8b2020;

  --font-serif:  'Cormorant Garamond', Georgia, serif;
  --font-sans:   'Inter', system-ui, -apple-system, sans-serif;

  --radius-sm:   6px;
  --radius:      12px;
  --radius-lg:   20px;

  --shadow-sm:   0 1px 4px rgba(0,0,0,.07), 0 1px 2px rgba(0,0,0,.05);
  --shadow:      0 4px 16px rgba(0,0,0,.10), 0 2px 6px rgba(0,0,0,.06);
  --shadow-lg:   0 12px 40px rgba(0,0,0,.13), 0 4px 12px rgba(0,0,0,.07);

  --transition:  0.28s cubic-bezier(0.4, 0, 0.2, 1);
  --container:   1180px;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: 72px; }
body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink-mid);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
address { font-style: normal; }
ul { list-style: none; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

/* ── TYPOGRAPHY ── */
.label {
  display: inline-block;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 10px;
}

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 400; color: var(--ink); line-height: 1.15; }

.page-title {
  font-size: clamp(2.4rem, 5vw, 3.5rem);
  font-weight: 300;
  margin-bottom: 20px;
}

.section-title {
  font-size: clamp(1.8rem, 3.5vw, 2.6rem);
  margin-bottom: 18px;
}

.section-intro {
  font-size: 1.0625rem;
  color: var(--ink-light);
  line-height: 1.75;
  max-width: 620px;
}

.body-text {
  font-size: 1rem;
  color: var(--ink-mid);
  line-height: 1.8;
  margin-bottom: 16px;
}

/* ── SECTIONS ── */
.section { padding: 88px 0; }
.section-alt { background: var(--stone); }

.section-header {
  margin-bottom: 56px;
}
.section-header.center {
  text-align: center;
}
.section-header.center .section-intro { margin: 0 auto; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 28px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-size: .9rem;
  font-weight: 500;
  cursor: pointer;
  transition: all var(--transition);
  border: 2px solid transparent;
  white-space: nowrap;
  letter-spacing: .015em;
}
.btn-primary { background: var(--gold); color: var(--white); border-color: var(--gold); }
.btn-primary:hover { background: var(--gold-light); border-color: var(--gold-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(139,105,20,.32); }
.btn-ghost  { background: transparent; color: var(--white); border-color: rgba(255,255,255,.5); }
.btn-ghost:hover  { background: rgba(255,255,255,.14); border-color: var(--white); transform: translateY(-2px); }
.btn-outline { background: transparent; color: var(--gold); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold-pale); transform: translateY(-2px); }
.btn-sea    { background: var(--sea); color: var(--white); border-color: var(--sea); }
.btn-sea:hover    { background: var(--sea-light); border-color: var(--sea-light); transform: translateY(-2px); box-shadow: 0 6px 20px rgba(45,74,107,.3); }
.btn-lg { padding: 15px 36px; font-size: .975rem; }
.btn-sm { padding: 9px 20px; font-size: .82rem; }


/* ════════════════════════════════════
   NAVBAR
════════════════════════════════════ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 68px;
  background: rgba(255,255,255,.93);
  backdrop-filter: blur(18px) saturate(1.6);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  border-bottom: 1px solid var(--stone-mid);
  transition: box-shadow var(--transition);
}
.navbar.scrolled { box-shadow: var(--shadow); }

.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 9px;
  flex-shrink: 0;
}
.logo-icon { font-size: 1.2rem; line-height: 1; }
.logo-text {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--ink);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2px;
}

.nav-link {
  padding: 7px 12px;
  border-radius: 8px;
  font-size: .85rem;
  font-weight: 400;
  color: var(--ink-mid);
  transition: all var(--transition);
  white-space: nowrap;
}
.nav-link:hover { color: var(--ink); background: var(--stone); }
.nav-link.active { color: var(--gold); background: var(--gold-pale); font-weight: 500; }

.nav-cta {
  margin-left: 8px;
  padding: 8px 20px;
  border-radius: 50px;
  background: var(--gold);
  color: var(--white);
  font-size: .85rem;
  font-weight: 500;
  transition: all var(--transition);
  flex-shrink: 0;
}
.nav-cta:hover { background: var(--gold-light); transform: translateY(-1px); box-shadow: 0 4px 14px rgba(139,105,20,.3); }

.nav-official {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--white);
  background: var(--gold);
  padding: 3px 10px;
  border-radius: 50px;
  white-space: nowrap;
  flex-shrink: 0;
}
.nav-official::before {
  content: '✓';
  font-size: .65rem;
}

.burger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  border-radius: 8px;
  transition: background var(--transition);
}
.burger:hover { background: var(--stone); }
.burger span { display: block; width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: all var(--transition); }
.burger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.burger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ════════════════════════════════════
   PAGE HERO (inner pages)
════════════════════════════════════ */
.page-hero {
  position: relative;
  padding: 140px 0 80px;
  overflow: hidden;
  background: var(--ink);
}

.page-hero-bg {
  position: absolute;
  inset: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  opacity: .45;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
}
.page-hero .label { color: var(--gold-light); }
.page-hero .page-title { color: var(--white); }
.page-hero .section-intro { color: rgba(255,255,255,.72); max-width: 560px; }

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 24px;
  font-size: .82rem;
  color: rgba(255,255,255,.5);
}
.breadcrumb a { color: rgba(255,255,255,.6); transition: color var(--transition); }
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span { opacity: .4; }


/* ════════════════════════════════════
   HOME HERO
════════════════════════════════════ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
}
.hero-bg { position: absolute; inset: 0; z-index: 0; }
.hero-img { width: 100%; height: 100%; object-fit: cover; object-position: center 30%; }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(110deg, rgba(12,9,7,.78) 0%, rgba(12,9,7,.48) 55%, rgba(12,9,7,.2) 100%);
}

.hero-content {
  position: relative; z-index: 1;
  max-width: 640px;
  padding: 120px 48px 80px;
  animation: heroIn .9s ease both;
}
@keyframes heroIn {
  from { opacity: 0; transform: translateY(22px); }
  to   { opacity: 1; transform: translateY(0); }
}

.hero-eyebrow {
  font-size: .78rem; font-weight: 600; letter-spacing: .14em;
  text-transform: uppercase; color: var(--gold-light); margin-bottom: 14px;
}
.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(3.5rem, 7vw, 6rem);
  font-weight: 300;
  line-height: 1.0;
  color: var(--white);
  margin-bottom: 10px;
  letter-spacing: -.01em;
}
.hero-tagline {
  font-family: var(--font-serif);
  font-size: clamp(1.1rem, 2.5vw, 1.5rem);
  font-style: italic; font-weight: 300;
  color: var(--stone-mid);
  margin-bottom: 20px;
}
.hero-desc {
  font-size: 1.0625rem; line-height: 1.75;
  color: rgba(255,255,255,.78); margin-bottom: 40px;
}
.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.scroll-hint {
  position: absolute; bottom: 32px; left: 50%;
  transform: translateX(-50%); z-index: 1;
  color: rgba(255,255,255,.5);
  animation: bounce 2.2s ease-in-out infinite;
  transition: color var(--transition);
}
.scroll-hint:hover { color: rgba(255,255,255,.8); }
.scroll-hint svg { width: 28px; height: 28px; }
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(8px); }
}


/* ════════════════════════════════════
   QUICK FACTS BAR
════════════════════════════════════ */
.facts-bar { background: var(--ink); padding: 0; }
.facts-grid {
  display: grid; grid-template-columns: repeat(4, 1fr);
}
.fact-item {
  display: flex; flex-direction: column; align-items: center; text-align: center;
  gap: 5px; padding: 28px 20px;
  border-right: 1px solid rgba(255,255,255,.08);
  transition: background var(--transition);
}
.fact-item:last-child { border-right: none; }
.fact-item:hover { background: rgba(255,255,255,.05); }
.fact-emoji { font-size: 1.6rem; margin-bottom: 4px; }
.fact-item strong { font-family: var(--font-serif); font-size: 1.05rem; color: var(--white); }
.fact-item span { font-size: .78rem; color: var(--stone-dark); letter-spacing: .04em; }


/* ════════════════════════════════════
   TWO-COLUMN SPLIT
════════════════════════════════════ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.split.wide-left  { grid-template-columns: 1.15fr 1fr; }
.split.wide-right { grid-template-columns: 1fr 1.15fr; }

.split-media { position: relative; }
.media-frame {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4/3;
}
.media-frame img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.media-frame:hover img { transform: scale(1.03); }

.media-caption {
  position: absolute; bottom: -16px; left: 20px;
  background: var(--white); border-radius: var(--radius);
  padding: 13px 18px; box-shadow: var(--shadow);
  display: flex; flex-direction: column; gap: 2px;
}
.media-caption strong { font-family: var(--font-serif); font-size: 1rem; color: var(--ink); }
.media-caption span   { font-size: .78rem; color: var(--ink-light); }


/* ════════════════════════════════════
   CARD GRIDS
════════════════════════════════════ */
.cards-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.cards-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.card {
  background: var(--white);
  border-radius: var(--radius-lg);
  border: 1px solid var(--stone-mid);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover { box-shadow: var(--shadow); transform: translateY(-4px); }

.card-img { height: 210px; overflow: hidden; background: var(--stone); }
.card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card-img img { transform: scale(1.05); }

.card-body { padding: 24px 26px; }
.card-tag {
  display: inline-block; padding: 3px 11px; border-radius: 50px;
  background: var(--gold-pale); color: var(--gold);
  font-size: .72rem; font-weight: 600; letter-spacing: .07em;
  text-transform: uppercase; margin-bottom: 10px;
}
.card-tag.sea { background: var(--sea-pale); color: var(--sea); }

.card-body h3 {
  font-family: var(--font-serif); font-size: 1.3rem;
  color: var(--ink); margin-bottom: 10px;
}
.card-body p { font-size: .9rem; color: var(--ink-mid); line-height: 1.7; }

.card-link {
  display: inline-block; margin-top: 14px;
  font-size: .875rem; font-weight: 500;
  color: var(--sea); transition: all var(--transition);
}
.card-link:hover { letter-spacing: .025em; }


/* ════════════════════════════════════
   TIMELINE
════════════════════════════════════ */
.timeline {
  position: relative; max-width: 800px; margin: 32px auto 0;
}
/* Vertical line: centered on the dot column (88 + 18 gap + 10 = 116px; 2px line → left: 115px) */
.timeline::before {
  content: ''; position: absolute;
  left: 115px; top: 12px; bottom: 12px; width: 2px;
  background: linear-gradient(to bottom, var(--stone-mid), var(--stone-dark) 50%, var(--stone-mid));
}
.tl-item {
  display: grid;
  grid-template-columns: 88px 20px 1fr;
  gap: 0 18px;
  align-items: start;
  margin-bottom: 44px;
}
.tl-item:last-child { margin-bottom: 0; }

.tl-year {
  font-family: var(--font-serif); font-size: .975rem;
  font-weight: 600; color: var(--gold); text-align: right;
  padding-top: 4px; line-height: 1.3;
}
.tl-dot {
  width: 14px; height: 14px; margin-top: 5px; margin-left: 3px;
  background: var(--white); border: 3px solid var(--gold);
  border-radius: 50%; position: relative; z-index: 1;
  transition: background var(--transition);
  flex-shrink: 0;
}
.tl-item:hover .tl-dot { background: var(--gold); }

.tl-box {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 26px; border: 1px solid var(--stone-mid);
  box-shadow: var(--shadow-sm);
  transition: all var(--transition);
  min-width: 0; /* allow shrinking in grid so text wraps properly */
}
.tl-box:hover { box-shadow: var(--shadow); transform: translateX(4px); }
.tl-box h3 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); margin-bottom: 8px; }
.tl-box p  { font-size: .9rem; color: var(--ink-mid); line-height: 1.7; }


/* ════════════════════════════════════
   HIGHLIGHT / FEATURE BLOCK
════════════════════════════════════ */
.feature-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}
.feature-card {
  display: grid; grid-template-columns: 1fr 1fr;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 1px solid var(--stone-mid); box-shadow: var(--shadow-sm);
  background: var(--white); transition: all var(--transition);
}
.feature-card:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.feature-card.full { grid-column: span 2; }

.feature-img { overflow: hidden; }
.feature-img img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.feature-card:hover .feature-img img { transform: scale(1.04); }

.feature-body { padding: 32px; display: flex; flex-direction: column; justify-content: center; }
.feature-body h3 { font-family: var(--font-serif); font-size: 1.35rem; color: var(--ink); margin-bottom: 12px; }
.feature-body p  { font-size: .9rem; color: var(--ink-mid); line-height: 1.75; }


/* ════════════════════════════════════
   CHECK LIST
════════════════════════════════════ */
.check-list { display: flex; flex-direction: column; gap: 10px; }
.check-item {
  display: flex; gap: 12px; align-items: flex-start;
  font-size: .9375rem; color: var(--ink-mid); line-height: 1.6;
}
.check-icon {
  width: 20px; height: 20px; border-radius: 50%;
  background: var(--sea-pale); color: var(--sea);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; margin-top: 1px; font-size: .75rem;
}


/* ════════════════════════════════════
   VISIT INFO CARDS
════════════════════════════════════ */
.visit-card {
  background: var(--white);
  border-radius: var(--radius-lg); border: 1px solid var(--stone-mid);
  padding: 32px; box-shadow: var(--shadow-sm);
}
.visit-card-icon { font-size: 2rem; margin-bottom: 14px; line-height: 1; }
.visit-card h3 {
  font-family: var(--font-serif); font-size: 1.4rem; color: var(--ink);
  margin-bottom: 20px; padding-bottom: 14px; border-bottom: 1px solid var(--stone-mid);
}

.hours-row { display: flex; justify-content: space-between; align-items: flex-start; gap: 12px; padding: 9px 0; }
.hours-sep  { height: 1px; background: var(--stone-mid); }
.hours-period { font-weight: 500; font-size: .88rem; color: var(--ink-mid); flex-shrink: 0; }
.hours-time   { font-size: .88rem; color: var(--ink-mid); text-align: right; }
.hours-time small { display: block; font-size: .76rem; color: var(--ink-light); margin-top: 2px; }
.hours-closed .hours-period, .hours-closed .hours-time { color: var(--ink-light); }

.price-row {
  display: flex; justify-content: space-between; align-items: baseline;
  gap: 8px; padding: 8px 0; border-bottom: 1px solid var(--stone-mid);
  font-size: .88rem;
}
.price-row:last-child { border-bottom: none; }
.price-row span:first-child { color: var(--ink-mid); }
.price-row small { display: block; font-size: .76rem; color: var(--ink-light); margin-top: 1px; }
.price-val { font-weight: 600; color: var(--ink); flex-shrink: 0; }
.price-val.free { color: var(--sea-light); }
.price-featured { background: var(--gold-pale); margin: 4px -4px; padding: 8px 4px; border-radius: var(--radius-sm); border-bottom: none !important; }

.fac-list { display: flex; flex-direction: column; }
.fac-item {
  display: flex; align-items: center; gap: 10px;
  font-size: .88rem; color: var(--ink-mid);
  padding: 7px 0; border-bottom: 1px solid var(--stone-mid);
}
.fac-item:last-child { border-bottom: none; }
.fac-item svg { width: 15px; height: 15px; flex-shrink: 0; color: var(--sea-light); }

.visit-note {
  font-size: .78rem; color: var(--ink-light); line-height: 1.55;
  margin-top: 14px; padding-top: 12px; border-top: 1px solid var(--stone-mid);
}


/* ════════════════════════════════════
   BOOKING FORM
════════════════════════════════════ */
.form-card {
  background: var(--white); border-radius: var(--radius-lg);
  border: 1px solid var(--stone-mid); box-shadow: var(--shadow);
  padding: 44px 48px;
  max-width: 680px;
}

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.form-full  { grid-column: span 2; }

.form-group { display: flex; flex-direction: column; gap: 6px; }

label {
  font-size: .82rem; font-weight: 500;
  color: var(--ink-mid); letter-spacing: .01em;
}
label .req { color: var(--gold); margin-left: 2px; }

input, select, textarea {
  font-family: var(--font-sans); font-size: .9rem;
  color: var(--ink); background: var(--stone);
  border: 1.5px solid var(--stone-mid); border-radius: var(--radius-sm);
  padding: 11px 14px; outline: none;
  transition: all var(--transition); width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--stone-dark); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold); background: var(--white);
  box-shadow: 0 0 0 3px rgba(139,105,20,.12);
}
textarea { resize: vertical; min-height: 110px; }

.form-submit { margin-top: 8px; width: 100%; justify-content: center; }

.form-note {
  font-size: .8rem; color: var(--ink-light); line-height: 1.6;
  margin-top: 16px;
}


/* ════════════════════════════════════
   TIPS / INFO BLOCK
════════════════════════════════════ */
.tip-cards { display: flex; flex-direction: column; gap: 16px; }
.tip-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid var(--stone-mid); padding: 20px 22px;
  box-shadow: var(--shadow-sm);
}
.tip-card h4 { font-family: var(--font-serif); font-size: 1.1rem; color: var(--ink); margin-bottom: 6px; }
.tip-card p  { font-size: .875rem; color: var(--ink-mid); line-height: 1.7; }

.info-box {
  background: var(--sea-pale); border-radius: var(--radius);
  border: 1px solid rgba(74,122,168,.2); padding: 20px 24px;
  margin-top: 20px;
}
.info-box p { font-size: .875rem; color: var(--sea); line-height: 1.65; }
.info-box strong { color: var(--sea); }


/* ════════════════════════════════════
   TRANSPORT
════════════════════════════════════ */
.transport-list { display: flex; flex-direction: column; gap: 16px; }
.transport-item {
  display: flex; gap: 14px; align-items: flex-start;
  background: var(--white); border: 1px solid var(--stone-mid);
  border-radius: var(--radius); padding: 18px 20px; box-shadow: var(--shadow-sm);
}
.transport-icon {
  font-size: 1.4rem; width: 42px; height: 42px;
  background: var(--stone); border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.transport-item strong { display: block; font-size: .9375rem; color: var(--ink); margin-bottom: 3px; }
.transport-item p { font-size: .875rem; color: var(--ink-mid); line-height: 1.65; }

/* ── MAP ── */
.map-wrap {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-lg); border: 1px solid var(--stone-mid);
}
.map-wrap iframe { display: block; }


/* ════════════════════════════════════
   CTA BANNER
════════════════════════════════════ */
.cta-banner {
  position: relative; padding: 90px 0; text-align: center; overflow: hidden;
}
.cta-bg { position: absolute; inset: 0; }
.cta-bg img { width: 100%; height: 100%; object-fit: cover; }
.cta-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(15,10,7,.84) 0%, rgba(45,74,107,.78) 100%);
}
.cta-content { position: relative; z-index: 1; color: var(--white); }
.cta-content h2 { font-family: var(--font-serif); font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 14px; }
.cta-content p  { font-size: 1.0625rem; color: rgba(255,255,255,.75); max-width: 500px; margin: 0 auto 36px; line-height: 1.75; }
.cta-actions { display: flex; justify-content: center; gap: 14px; flex-wrap: wrap; }


/* ════════════════════════════════════
   ITINERARY STEPS
════════════════════════════════════ */
.steps { display: flex; flex-direction: column; gap: 0; counter-reset: step; }
.step-item {
  display: grid; grid-template-columns: 56px 1fr;
  gap: 0 24px; counter-increment: step; padding-bottom: 36px;
  position: relative;
}
.step-item:last-child { padding-bottom: 0; }
.step-item::before {
  content: counter(step);
  display: flex; align-items: center; justify-content: center;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--gold-pale); border: 2px solid var(--gold);
  font-family: var(--font-serif); font-size: 1.2rem; color: var(--gold);
  font-weight: 600; flex-shrink: 0; position: relative; z-index: 1;
}
.step-item:not(:last-child)::after {
  content: '';
  position: absolute; left: 21px; top: 44px; bottom: 0;
  width: 2px; background: var(--stone-mid);
}
.step-body { padding-top: 8px; }
.step-body h4 { font-family: var(--font-serif); font-size: 1.2rem; color: var(--ink); margin-bottom: 6px; }
.step-body p  { font-size: .9rem; color: var(--ink-mid); line-height: 1.7; }


/* ════════════════════════════════════
   FOOTER
════════════════════════════════════ */
.footer {
  background: var(--ink); color: rgba(255,255,255,.6); padding-top: 68px;
}
.footer-grid {
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px; padding-bottom: 52px;
  border-bottom: 1px solid rgba(255,255,255,.09);
}
.footer-brand .nav-logo { margin-bottom: 18px; }
.footer-brand .logo-text { color: var(--white); }
.footer-brand p { font-size: .875rem; line-height: 1.75; margin-bottom: 10px; }
.footer-address { font-size: .78rem; color: rgba(255,255,255,.35); }

.footer-col h4 {
  font-family: var(--font-sans); font-size: .74rem; font-weight: 600;
  letter-spacing: .11em; text-transform: uppercase;
  color: rgba(255,255,255,.35); margin-bottom: 18px;
}
.footer-col ul { display: flex; flex-direction: column; gap: 9px; }
.footer-col a  { font-size: .875rem; color: rgba(255,255,255,.6); transition: color var(--transition); }
.footer-col a:hover { color: var(--white); }

.footer-bottom {
  display: flex; justify-content: space-between; align-items: center;
  gap: 20px; padding: 22px 0; flex-wrap: wrap;
}
.footer-bottom p { font-size: .78rem; color: rgba(255,255,255,.3); }
.footer-links { display: flex; gap: 18px; flex-wrap: wrap; }
.footer-links a { font-size: .78rem; color: rgba(255,255,255,.3); transition: color var(--transition); }
.footer-links a:hover { color: rgba(255,255,255,.65); }


/* ════════════════════════════════════
   FADE-IN ANIMATIONS
════════════════════════════════════ */
.fi { opacity: 0; transform: translateY(18px); transition: opacity .55s ease, transform .55s ease; }
.fi.visible { opacity: 1; transform: translateY(0); }
.fi-d1 { transition-delay: .08s; }
.fi-d2 { transition-delay: .16s; }
.fi-d3 { transition-delay: .24s; }
.fi-d4 { transition-delay: .32s; }


/* ════════════════════════════════════
   RESPONSIVE
════════════════════════════════════ */
@media (max-width: 1020px) {
  .split, .split.wide-left, .split.wide-right { grid-template-columns: 1fr; gap: 44px; }
  .split .split-media { order: -1; }
  .media-caption { position: static; margin-top: 14px; }
  .cards-3 { grid-template-columns: 1fr 1fr; }
  .feature-grid { grid-template-columns: 1fr; }
  .feature-card { grid-column: span 1 !important; grid-template-columns: 1fr; }
  .feature-img { height: 220px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: span 2; }
}

@media (max-width: 860px) {
  .nav-official { display: none; }
  .burger { display: flex; }
  .nav-links {
    position: fixed; top: 68px; left: 0; right: 0;
    background: rgba(255,255,255,.97); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--stone-mid);
    flex-direction: column; padding: 14px 20px 22px;
    gap: 4px; display: none; box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-link { padding: 11px 14px; font-size: .9rem; width: 100%; }
  .nav-cta  { margin-left: 0; margin-top: 6px; width: 100%; justify-content: center; padding: 11px; text-align: center; }
  .facts-grid { grid-template-columns: repeat(2, 1fr); }
  .fact-item:nth-child(2) { border-right: none; }
  .fact-item:nth-child(3), .fact-item:nth-child(4) { border-top: 1px solid rgba(255,255,255,.08); }
  .fact-item:nth-child(4) { border-right: none; }
  .cards-2, .cards-3 { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }
  .form-full { grid-column: span 1; }
  .form-card { padding: 32px 24px; }
  .timeline { width: 100%; margin-left: 0; margin-right: 0; }
  .timeline::before { left: 13px; top: 12px; bottom: 12px; }
  .tl-item { grid-template-columns: 0 12px 1fr; gap: 0 8px; align-items: start; }
  .tl-year { display: none; }
  .tl-dot { margin-left: 0; width: 12px; height: 12px; margin-top: 4px; }
  .tl-box { padding: 18px 16px; min-width: 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
}

@media (max-width: 600px) {
  .section { padding: 64px 0; }
  .hero-content { padding: 100px 24px 60px; }
  .hero-title { font-size: 3.2rem; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { width: 100%; justify-content: center; }
  .page-hero { padding: 120px 0 60px; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .map-wrap iframe { height: 300px; }
}
