@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700;800&family=Cormorant+Garamond:wght@500;600;700&display=swap');

:root {
  --bg: #f6f0e6;
  --bg-soft: #fbf8f1;
  --paper: #fffdf8;
  --ink: #12212a;
  --muted: #52606b;
  --line: rgba(18, 33, 42, 0.12);
  --teal: #2a6a78;
  --teal-deep: #184c59;
  --gold: #c49a4a;
  --gold-soft: #ead29c;
  --green: #59785d;
  --shadow: 0 22px 60px rgba(10, 24, 34, 0.12);
  --radius: 8px;
  --radius-lg: 16px;
  --container: 1180px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(42, 106, 120, 0.08), transparent 32%),
    radial-gradient(circle at 86% 16%, rgba(196, 154, 74, 0.12), transparent 24%),
    linear-gradient(180deg, #fcfaf6 0%, #f3ede2 100%);
  line-height: 1.6;
}

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

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

a:hover {
  color: var(--teal);
}

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(251, 248, 241, 0.82);
  border-bottom: 1px solid rgba(18, 33, 42, 0.08);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 74px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.8rem;
  font-weight: 800;
  letter-spacing: 0;
  color: var(--ink);
}

.brand__mark {
  width: 14px;
  height: 14px;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal) 0%, var(--gold) 100%);
  box-shadow: 0 0 0 6px rgba(42, 106, 120, 0.1);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-weight: 700;
}

.site-nav a {
  padding: 0.4rem 0;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 84svh;
  color: #fffaf1;
  display: grid;
  align-items: stretch;
}

.hero__image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(10, 20, 28, 0.82) 0%, rgba(10, 20, 28, 0.58) 48%, rgba(10, 20, 28, 0.2) 100%),
    linear-gradient(180deg, rgba(10, 20, 28, 0.22) 0%, rgba(10, 20, 28, 0.52) 100%);
}

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.12fr) minmax(280px, 0.88fr);
  gap: 2rem;
  align-items: end;
  padding: 5rem 0 3.5rem;
  min-height: inherit;
}

.hero__copy {
  max-width: 680px;
  padding-bottom: 0.8rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-size: 0.78rem;
  font-weight: 800;
  color: rgba(255, 247, 231, 0.82);
}

.eyebrow::before {
  content: "";
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: var(--gold-soft);
}

.hero h1,
.section h2,
.section h3 {
  font-family: "Cormorant Garamond", Georgia, serif;
  letter-spacing: 0;
  line-height: 0.95;
}

.hero h1 {
  margin: 0;
  font-size: clamp(3.4rem, 7vw, 6.8rem);
  text-wrap: balance;
}

.hero__lead {
  max-width: 54ch;
  margin: 1.2rem 0 0;
  font-size: clamp(1.05rem, 2vw, 1.18rem);
  color: rgba(255, 248, 237, 0.88);
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.6rem;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 46px;
  padding: 0.85rem 1.15rem;
  border-radius: var(--radius);
  border: 1px solid transparent;
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, color 180ms ease;
}

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

.btn--primary {
  background: var(--gold);
  color: #1d1a12;
}

.btn--primary:hover {
  background: #d0aa5d;
  color: #1d1a12;
}

.btn--ghost {
  border-color: rgba(255, 248, 237, 0.4);
  color: #fffaf1;
  background: rgba(255, 255, 255, 0.06);
}

.btn--ghost:hover {
  border-color: rgba(255, 248, 237, 0.72);
  color: #fffaf1;
  background: rgba(255, 255, 255, 0.1);
}

.hero__facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.75rem;
  margin-top: 1.7rem;
}

.fact {
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 248, 237, 0.16);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.08);
  color: rgba(255, 250, 240, 0.92);
  backdrop-filter: blur(8px);
}

.fact strong {
  display: block;
  color: #fffaf1;
}

.hero__visual {
  display: flex;
  align-items: end;
  justify-content: end;
}

.hero__visual img {
  width: min(100%, 560px);
  border-radius: 24px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.section {
  padding: 4.5rem 0;
}

.section--soft {
  background: rgba(255, 255, 255, 0.42);
  border-top: 1px solid rgba(18, 33, 42, 0.06);
  border-bottom: 1px solid rgba(18, 33, 42, 0.06);
}

.section__head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1.6rem;
}

.section h2 {
  margin: 0;
  font-size: clamp(2.1rem, 4vw, 3.3rem);
  line-height: 0.96;
}

.section__lead {
  max-width: 62ch;
  margin: 0.45rem 0 0;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

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

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

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

.card {
  background: var(--paper);
  border: 1px solid rgba(18, 33, 42, 0.08);
  border-radius: var(--radius-lg);
  box-shadow: 0 12px 34px rgba(10, 24, 34, 0.06);
  overflow: hidden;
}

.card__media {
  aspect-ratio: 16 / 11;
  overflow: hidden;
  background: #dfe7df;
}

.card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 240ms ease;
}

.card:hover .card__media img {
  transform: scale(1.03);
}

.card__body {
  padding: 1.1rem 1.1rem 1.2rem;
}

.card__kicker {
  margin: 0 0 0.45rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.75rem;
  color: var(--teal);
  font-weight: 800;
}

.card h3,
.card h4 {
  margin: 0;
  line-height: 1.05;
}

.card h3 {
  font-size: 1.45rem;
}

.card p {
  margin: 0.75rem 0 0;
  color: var(--muted);
}

.card__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.42rem 0.72rem;
  border-radius: 999px;
  background: rgba(42, 106, 120, 0.08);
  color: var(--teal-deep);
  font-size: 0.9rem;
  font-weight: 700;
}

.link-row {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  margin-top: 1rem;
  color: var(--teal);
  font-weight: 800;
}

.band {
  padding: 2rem;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, rgba(42, 106, 120, 0.08), rgba(196, 154, 74, 0.08));
  border: 1px solid rgba(18, 33, 42, 0.08);
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.9fr);
  gap: 1.5rem;
  align-items: start;
}

.list {
  margin: 1rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.65rem;
}

.list li {
  display: flex;
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
}

.list li::before {
  content: "";
  width: 10px;
  height: 10px;
  margin-top: 0.4rem;
  border-radius: 999px;
  background: linear-gradient(135deg, var(--teal), var(--gold));
  flex: 0 0 auto;
}

.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.85rem;
}

.stat {
  padding: 1rem;
  border-radius: var(--radius);
  border: 1px solid rgba(18, 33, 42, 0.08);
  background: rgba(255, 255, 255, 0.72);
}

.stat strong {
  display: block;
  font-size: 1.45rem;
}

.stat span {
  color: var(--muted);
}

.page-hero {
  padding: 3.5rem 0 2.5rem;
  background:
    linear-gradient(135deg, rgba(42, 106, 120, 0.12), rgba(196, 154, 74, 0.12)),
    var(--bg-soft);
  border-bottom: 1px solid rgba(18, 33, 42, 0.08);
}

.page-hero__inner {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(280px, 0.85fr);
  gap: 1.5rem;
  align-items: center;
}

.page-hero h1 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.8rem, 5vw, 4.7rem);
  line-height: 0.94;
}

.page-hero p {
  margin: 1rem 0 0;
  color: var(--muted);
  max-width: 62ch;
}

.page-visual {
  border-radius: 24px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(18, 33, 42, 0.08);
}

.page-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tour-hero {
  min-height: 58svh;
}

.tour-hero .hero__inner {
  padding-top: 4.5rem;
  grid-template-columns: minmax(0, 1fr) minmax(250px, 0.78fr);
}

.detail-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-top: 1.2rem;
}

.detail-section {
  padding: 4rem 0;
}

.detail-panel {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--paper);
  border-radius: var(--radius-lg);
  border: 1px solid rgba(18, 33, 42, 0.08);
  box-shadow: 0 14px 30px rgba(10, 24, 34, 0.05);
}

.detail-panel h2,
.detail-panel h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  line-height: 0.96;
}

.detail-panel h2 {
  font-size: 2.2rem;
}

.detail-panel p {
  margin: 0;
  color: var(--muted);
}

.faq {
  display: grid;
  gap: 0.85rem;
}

.faq details {
  background: var(--paper);
  border: 1px solid rgba(18, 33, 42, 0.08);
  border-radius: var(--radius);
  padding: 1rem 1.1rem;
}

.faq summary {
  cursor: pointer;
  font-weight: 800;
}

.site-footer {
  padding: 3rem 0;
  background: #182732;
  color: rgba(255, 248, 237, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.9fr 0.9fr;
  gap: 1.4rem;
}

.footer-grid h3 {
  margin: 0 0 0.8rem;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  line-height: 0.96;
}

.footer-grid p,
.footer-grid a {
  color: rgba(255, 248, 237, 0.78);
}

.footer-links {
  display: grid;
  gap: 0.55rem;
}

.footer-note {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 248, 237, 0.14);
  color: rgba(255, 248, 237, 0.66);
  font-size: 0.95rem;
}

.muted {
  color: var(--muted);
}

.spacer-top {
  margin-top: 1.5rem;
}

@media (max-width: 1024px) {
  .hero__inner,
  .page-hero__inner,
  .split,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .hero__visual {
    justify-content: start;
  }

  .hero__facts,
  .stat-grid,
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 720px) {
  .nav {
    align-items: start;
    flex-direction: column;
    padding: 0.95rem 0;
  }

  .site-nav {
    gap: 0.8rem 1rem;
  }

  .hero {
    min-height: auto;
  }

  .hero__inner {
    padding: 4.5rem 0 2.4rem;
  }

  .hero h1 {
    font-size: clamp(2.8rem, 14vw, 4.4rem);
  }

  .hero__facts,
  .stat-grid,
  .grid--4,
  .grid--3,
  .grid--2 {
    grid-template-columns: 1fr;
  }

  .section__head {
    align-items: start;
    flex-direction: column;
  }

  .section {
    padding: 3.2rem 0;
  }

  .band {
    padding: 1.2rem;
  }
}
