:root {
  --navy: #0a2744;
  --navy-2: #123a5f;
  --ink: #1c1917;
  --muted: #5c6570;
  --paper: #f6f1e8;
  --cream: #fbf8f2;
  --card: #ffffff;
  --gold: #c6a35a;
  --gold-2: #e8d7a5;
  --line: rgba(10, 39, 68, 0.12);
  --shadow: 0 18px 40px rgba(10, 39, 68, 0.08);
  --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", system-ui, sans-serif;
}
* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
  font-size: 17px;
}
img { max-width: 100%; display: block; }
a { color: inherit; }
.wrap { width: min(1120px, calc(100% - 40px)); margin: 0 auto; }
.skip {
  position: absolute; left: 12px; top: -48px; background: var(--gold);
  color: #1a1408; padding: 8px 14px; z-index: 50; border-radius: 8px;
}
.skip:focus { top: 12px; }

header {
  position: sticky; top: 0; z-index: 30;
  background: rgba(10, 39, 68, 0.96);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(198, 163, 90, 0.28);
  color: #fff;
}
.nav {
  display: flex; align-items: center; justify-content: space-between;
  min-height: 76px; gap: 16px;
}
.brand {
  display: flex; align-items: center; gap: 12px; text-decoration: none;
  font-weight: 600; letter-spacing: -0.01em;
}
.brand img {
  width: 48px; height: 48px; border-radius: 50%;
  background: #fff; padding: 2px;
}
.brand span { line-height: 1.15; font-size: 0.98rem; }
.brand small {
  display: block; font-weight: 400; color: var(--gold-2);
  font-size: 0.72rem; letter-spacing: 0.06em; text-transform: uppercase;
}
.nav-links { display: flex; gap: 2px; align-items: center; flex-wrap: wrap; }
.nav-links a, .lang-btn {
  text-decoration: none; padding: 8px 12px; border-radius: 999px;
  color: #e8eef6; font-size: 0.9rem; border: 0; background: none;
  cursor: pointer; font: inherit; font-weight: 500;
}
.nav-links a:hover, .lang-btn:hover { color: var(--gold-2); background: rgba(255,255,255,0.06); }
.nav-cta { padding: 10px 16px; min-height: 42px; font-size: 0.88rem; }
.menu-btn {
  display: none; background: transparent; border: 1px solid rgba(255,255,255,0.28);
  color: #fff; border-radius: 999px; padding: 8px 14px; min-height: 44px; font: inherit;
}
.mobile-menu { padding-bottom: 16px; }
.mobile-menu:not([hidden]) { display: block; }
.mobile-menu a, .mobile-menu .lang-btn {
  display: block; width: 100%; text-align: left; padding: 14px 0;
  text-decoration: none; border-bottom: 1px solid rgba(255,255,255,0.12);
  background: none; border-left: 0; border-right: 0; border-top: 0;
  color: #fff; font: inherit; cursor: pointer;
}

.hero {
  position: relative; min-height: min(92vh, 780px);
  display: grid; align-items: end;
  background: var(--navy); color: #fff; overflow: hidden;
}
.hero-pic {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: center 40%;
}
.hero-shade {
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(10,39,68,0.18) 0%, rgba(10,39,68,0.55) 48%, rgba(10,39,68,0.92) 100%),
    linear-gradient(90deg, rgba(10,39,68,0.35) 0%, transparent 55%);
}
.hero-inner { position: relative; z-index: 1; padding: 72px 0 64px; }
.kicker {
  letter-spacing: 0.2em; text-transform: uppercase; font-size: 0.72rem;
  color: var(--gold-2); margin-bottom: 14px; font-weight: 500;
}
.kicker-gold { color: #9a7a32; }
.hero h1 {
  font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4.4rem);
  font-weight: 500; max-width: 14ch; line-height: 1.05; letter-spacing: -0.02em;
}
.hero-lede { max-width: 42ch; margin-top: 18px; color: #e4ebf3; font-size: 1.08rem; }
.actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 30px; }
.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 22px; border-radius: 999px; text-decoration: none; font-weight: 600;
  min-height: 50px; border: 0; cursor: pointer; font: inherit; font-weight: 600;
}
.btn-gold { background: var(--gold); color: #1a1408; }
.btn-gold:hover { filter: brightness(1.06); }
.btn-ghost { border: 1px solid rgba(255,255,255,0.45); color: #fff; background: transparent; }
.btn-ghost:hover { background: rgba(255,255,255,0.08); }
.btn-navy { background: var(--navy); color: #fff; }
.btn-navy:hover { background: var(--navy-2); }

section { padding: 80px 0; }
.section-title {
  font-family: var(--serif); font-size: clamp(2rem, 3.6vw, 3rem);
  color: var(--navy); margin-bottom: 14px; font-weight: 500; letter-spacing: -0.02em; line-height: 1.15;
}
.lede { color: var(--muted); max-width: 60ch; font-size: 1.05rem; }

.verse {
  background: var(--cream); padding: 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
}
.verse-grid {
  display: grid; grid-template-columns: 0.9fr 1.1fr; gap: 48px; align-items: center;
  padding: 64px 0;
}
.verse-grid img {
  width: 100%; height: 360px; object-fit: cover; border-radius: 4px;
  box-shadow: var(--shadow);
}
blockquote p {
  font-family: var(--serif); font-size: clamp(1.6rem, 3vw, 2.25rem);
  font-style: italic; color: var(--navy); line-height: 1.3; font-weight: 500;
}
blockquote cite {
  display: block; margin-top: 18px; font-style: normal; letter-spacing: 0.16em;
  text-transform: uppercase; font-size: 0.74rem; color: #9a7a32; font-family: var(--sans);
}

.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 36px; }
.card {
  background: var(--card); border: 1px solid var(--line); border-radius: 20px;
  padding: 28px 24px; box-shadow: var(--shadow);
}
.card-mark {
  display: block; font-size: 0.72rem; letter-spacing: 0.16em; color: var(--gold);
  font-weight: 600; margin-bottom: 18px;
}
.card h3 { color: var(--navy); margin-bottom: 8px; font-size: 1.2rem; font-weight: 600; }
.card p { color: var(--muted); }

.gallery { padding: 0 0 80px; }
.gallery-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr; grid-template-rows: 1fr 1fr;
  gap: 14px; min-height: 560px;
}
.gallery-grid figure { overflow: hidden; border-radius: 18px; margin: 0; }
.gallery-grid .tall { grid-row: 1 / span 2; }
.gallery-grid img {
  width: 100%; height: 100%; object-fit: cover; min-height: 220px;
  transition: transform 0.7s ease;
}
.gallery-grid figure:last-child img { object-position: center 78%; }
.gallery-grid figure:hover img { transform: scale(1.04); }

.band { background: var(--cream); }
.steps {
  list-style: none; display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 22px; margin-top: 36px; counter-reset: step;
}
.steps li {
  background: #fff; border-radius: 20px; padding: 28px 24px;
  border: 1px solid var(--line); counter-increment: step;
}
.steps li::before {
  content: counter(step, decimal-leading-zero);
  display: block; color: var(--gold); font-weight: 700; letter-spacing: 0.12em;
  font-size: 0.78rem; margin-bottom: 14px;
}
.steps h3 { color: var(--navy); margin-bottom: 8px; }
.steps p { color: var(--muted); }

.video-grid {
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 32px;
}
.video-card {
  text-decoration: none; background: #fff; border-radius: 16px; overflow: hidden;
  border: 1px solid var(--line); color: var(--navy); box-shadow: var(--shadow);
}
.video-card img { width: 100%; aspect-ratio: 16 / 9; object-fit: cover; background: #111; }
.video-card span { display: block; padding: 14px 14px 16px; }
.video-card strong { display: block; font-size: 0.98rem; }
.video-card em { display: block; font-style: normal; color: var(--muted); font-size: 0.84rem; margin-top: 4px; }
.video-card:hover { transform: translateY(-2px); transition: transform 0.2s ease; }

.split { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 40px; align-items: start; }
.map { width: 100%; height: 380px; border: 0; border-radius: 18px; }
.facts { list-style: none; margin-top: 20px; color: var(--navy); }
.facts li { padding: 8px 0; border-bottom: 1px solid var(--line); }
.facts a { color: var(--navy); }

form { display: grid; gap: 14px; background: #fff; padding: 24px; border-radius: 20px; border: 1px solid var(--line); }
label { font-size: 0.82rem; color: var(--muted); font-weight: 500; }
input, textarea {
  width: 100%; padding: 12px 14px; border-radius: 12px; border: 1px solid var(--line);
  background: var(--cream); font: inherit; margin-top: 6px; color: var(--ink);
}
input:focus, textarea:focus { outline: 2px solid var(--gold); border-color: transparent; }
textarea { min-height: 120px; resize: vertical; }
.success { color: var(--navy); min-height: 1.3em; font-size: 0.92rem; }
.hp { position: absolute; left: -9999px; height: 0; overflow: hidden; }

footer {
  background: var(--navy); color: #c5d2df; padding: 36px 0 48px;
}
.foot { display: flex; justify-content: space-between; gap: 20px; flex-wrap: wrap; align-items: center; }
.foot-brand { display: flex; gap: 14px; align-items: center; }
.foot-brand img { width: 48px; height: 48px; border-radius: 50%; background: #fff; padding: 2px; }
footer strong { color: #fff; display: block; }
.foot-links { display: flex; gap: 18px; flex-wrap: wrap; }
footer a { color: var(--gold-2); text-decoration: none; }
footer a:hover { text-decoration: underline; }

.wa-fab {
  position: fixed; right: 18px; bottom: 18px; z-index: 40;
  width: 56px; height: 56px; border-radius: 50%;
  background: #25d366; color: #fff;
  display: grid; place-items: center;
  box-shadow: 0 10px 24px rgba(0,0,0,0.22);
}
.wa-fab svg { width: 28px; height: 28px; }
.wa-fab:hover { filter: brightness(1.06); }

@media (max-width: 980px) {
  .nav-links, .nav-cta { display: none; }
  .menu-btn { display: inline-flex; }
  .grid-3, .split, .verse-grid, .steps, .video-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; min-height: 0; }
  .gallery-grid .tall { grid-row: auto; }
  .gallery-grid img { height: 280px; }
  .verse-grid img { height: 240px; }
  .hero { min-height: 78vh; }
  input, textarea { min-height: 48px; font-size: 16px; }
  section { padding: 56px 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .gallery-grid img { transition: none; }
}
