:root {
  --ink: #0b1c2c;
  --ink-soft: #163049;
  --mist: #8fa3b5;
  --mist-light: #c5d0da;
  --brass: #c4a35a;
  --brass-deep: #a8863f;
  --paper: #e8e4dc;
  --paper-warm: #f3efe6;
  --white: #f7f5f0;
  --font-display: 'Fraunces', Georgia, serif;
  --font-body: 'Source Serif 4', Georgia, serif;
  --space-xs: 0.5rem;
  --space-sm: 1rem;
  --space-md: 1.75rem;
  --space-lg: 3rem;
  --space-xl: 5rem;
  --max: 68rem;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100%;
  font-family: var(--font-body);
  font-size: 1.0625rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(ellipse 120% 80% at 10% 0%, #d9e2ea 0%, transparent 55%),
    radial-gradient(ellipse 90% 70% at 100% 20%, #e4dcc8 0%, transparent 50%),
    linear-gradient(180deg, var(--paper-warm) 0%, var(--paper) 40%, #dfe6ec 100%);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

a:hover {
  color: var(--brass-deep);
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin: 0 0 0.75rem;
}

p {
  margin: 0 0 1rem;
}

p:last-child {
  margin-bottom: 0;
}

.go-form {
  display: inline;
  margin: 0;
}

.cta-band__inner .go-form {
  display: flex;
  justify-content: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 2.1rem;
  border: 1px solid transparent;
  background: var(--brass);
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  appearance: none;
  transition:
    transform 0.35s var(--ease),
    background 0.35s var(--ease),
    box-shadow 0.35s var(--ease);
}

.btn:hover {
  background: var(--brass-deep);
  color: var(--white);
  transform: translateY(-2px);
  box-shadow: 0 12px 28px rgba(11, 28, 44, 0.22);
}

.section {
  padding: var(--space-xl) var(--space-md);
}

.section-inner {
  width: min(100%, var(--max));
  margin: 0 auto;
}

.section-label {
  display: block;
  margin-bottom: 0.75rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.section-title {
  font-size: clamp(2rem, 4vw, 3rem);
  max-width: 18ch;
  margin-bottom: 1rem;
}

.section-lead {
  max-width: 42ch;
  font-size: 1.125rem;
  color: var(--ink-soft);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes softScale {
  from {
    opacity: 0;
    transform: scale(0.96);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes bob {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(6px);
  }
}

/* Hero */
.hero {
  position: relative;
  min-height: 100svh;
  display: grid;
  place-items: center;
  overflow: hidden;
  color: var(--white);
  background: var(--ink);
}

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

.hero__veil {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(11, 28, 44, 0.35) 0%, rgba(11, 28, 44, 0.15) 40%, rgba(11, 28, 44, 0.72) 100%),
    radial-gradient(ellipse at center, transparent 20%, rgba(11, 28, 44, 0.35) 100%);
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: var(--space-md);
  max-width: 40rem;
}

.hero__brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 4vw, 2.6rem);
  font-weight: 500;
  letter-spacing: 0.04em;
  animation: softScale 1.1s var(--ease) both;
}

.hero__headline {
  margin: 0 0 1.75rem;
  font-size: clamp(1.15rem, 2.4vw, 1.45rem);
  font-weight: 400;
  letter-spacing: 0.01em;
  color: var(--mist-light);
  animation: fadeUp 1s var(--ease) 0.2s both;
}

.hero__cta {
  min-width: 14rem;
  animation: fadeUp 1s var(--ease) 0.4s both;
}

.hero__scroll {
  position: absolute;
  bottom: 1.5rem;
  left: 50%;
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(247, 245, 240, 0.75);
  animation: fadeUp 1s var(--ease) 0.7s both;
}

.hero__scroll-line {
  width: 1px;
  height: 2rem;
  background: linear-gradient(180deg, rgba(196, 163, 90, 0.9), transparent);
  animation: bob 2.2s ease-in-out infinite;
}

/* Tourism sections */
.why {
  background:
    linear-gradient(135deg, rgba(22, 48, 73, 0.06), transparent 50%),
    linear-gradient(180deg, var(--paper-warm), transparent);
}

.why__inner {
  max-width: 46rem;
}

.why__lead {
  max-width: 48ch;
  font-size: 1.2rem;
}

.landmarks__list {
  display: flex;
  flex-direction: column;
  gap: var(--space-xl);
  margin-top: var(--space-lg);
}

.landmark {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.25rem, 3vw, 2.5rem);
  align-items: center;
}

.landmark--flip .landmark__media {
  order: 2;
}

.landmark--flip .landmark__copy {
  order: 1;
}

.landmark__media {
  min-height: clamp(16rem, 36vw, 22rem);
  background-size: cover;
  background-position: center;
  filter: saturate(0.92) contrast(1.02);
  box-shadow: inset 0 0 0 1px rgba(11, 28, 44, 0.08);
}

.landmark__copy h3 {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  margin-bottom: 0.75rem;
}

.landmark__place {
  margin: 0 0 0.4rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.landmark__copy p:last-child {
  color: var(--ink-soft);
  max-width: 36ch;
}

.day {
  background:
    radial-gradient(ellipse at 80% 20%, rgba(196, 163, 90, 0.12), transparent 45%),
    linear-gradient(180deg, rgba(11, 28, 44, 0.03), transparent);
}

.day__list {
  list-style: none;
  margin: var(--space-lg) 0 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  counter-reset: day;
}

.day__item {
  position: relative;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(11, 28, 44, 0.15);
}

.day__item::before {
  counter-increment: day;
  content: counter(day, decimal-leading-zero);
  position: absolute;
  top: -0.85rem;
  left: 0;
  font-family: var(--font-display);
  font-size: 0.75rem;
  letter-spacing: 0.12em;
  color: var(--brass-deep);
  background: var(--paper);
  padding-right: 0.5rem;
}

.day__time {
  display: block;
  margin-bottom: 0.5rem;
  font-family: var(--font-display);
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mist);
}

.day__item h3 {
  font-size: 1.35rem;
}

.day__item p {
  color: var(--ink-soft);
}

.practical {
  background: linear-gradient(160deg, var(--ink) 0%, var(--ink-soft) 100%);
  color: var(--paper);
}

.practical .section-label {
  color: var(--brass);
}

.practical .section-title {
  color: var(--white);
  max-width: 22ch;
}

.practical__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-md);
  margin-top: var(--space-lg);
}

.practical__grid h3 {
  font-size: 1.25rem;
  color: var(--white);
}

.practical__grid p {
  color: var(--mist-light);
}

.cta-band {
  background:
    radial-gradient(ellipse at center, rgba(196, 163, 90, 0.18), transparent 60%),
    linear-gradient(180deg, var(--paper), var(--paper-warm));
  text-align: center;
}

.cta-band__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-band h2 {
  font-size: clamp(2rem, 4vw, 2.75rem);
  max-width: 16ch;
}

.cta-band p {
  max-width: 38ch;
  color: var(--ink-soft);
  margin-bottom: 0.5rem;
}

/* Footer */
.site-footer {
  padding: var(--space-lg) var(--space-md) var(--space-md);
  background: var(--ink);
  color: var(--mist-light);
}

.site-footer__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  gap: var(--space-md);
  flex-wrap: wrap;
  padding-bottom: var(--space-md);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.site-footer__name {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  color: var(--white);
}

.site-footer__legal,
.site-footer__address,
.site-footer__contact {
  margin: 0 0 0.35rem;
  font-size: 0.95rem;
  max-width: 36ch;
}

.site-footer a {
  color: var(--mist-light);
  text-decoration: none;
}

.site-footer a:hover {
  color: var(--brass);
}

.site-footer__nav {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
}

.footer-link {
  appearance: none;
  border: 0;
  padding: 0;
  background: none;
  color: var(--mist-light);
  font: inherit;
  font-family: var(--font-display);
  letter-spacing: 0.04em;
  text-align: left;
  cursor: pointer;
}

.footer-link:hover {
  color: var(--brass);
}

body.modal-open {
  overflow: hidden;
}

.modal {
  width: min(92vw, 42rem);
  max-height: min(88svh, 48rem);
  margin: auto;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.modal::backdrop {
  background: rgba(11, 28, 44, 0.72);
  backdrop-filter: blur(3px);
}

.modal__panel {
  display: flex;
  flex-direction: column;
  max-height: min(88svh, 48rem);
  background:
    radial-gradient(ellipse at 0% 0%, rgba(196, 163, 90, 0.12), transparent 45%),
    linear-gradient(180deg, var(--paper-warm), var(--paper));
  box-shadow: 0 24px 60px rgba(11, 28, 44, 0.35);
}

.modal__header {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  padding: 1.35rem 1.35rem 0.85rem;
  border-bottom: 1px solid rgba(11, 28, 44, 0.08);
}

.modal__header h2 {
  margin: 0 0 0.35rem;
  font-size: clamp(1.5rem, 3vw, 1.9rem);
}

.modal__header .legal-updated {
  margin: 0;
}

.modal__close {
  flex-shrink: 0;
  width: 2.4rem;
  height: 2.4rem;
  border: 1px solid rgba(11, 28, 44, 0.12);
  background: transparent;
  color: var(--ink);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.25s var(--ease), color 0.25s var(--ease);
}

.modal__close:hover {
  background: var(--ink);
  color: var(--white);
}

.modal__body {
  overflow: auto;
  padding: 1.1rem 1.35rem 1.5rem;
}

.modal__body h3 {
  font-size: 1.15rem;
  margin-top: 1.5rem;
  margin-bottom: 0.65rem;
}

.modal__body .legal-company {
  margin-top: 0.75rem;
  margin-bottom: 1rem;
}

.site-footer__copy {
  width: min(100%, var(--max));
  margin: var(--space-sm) auto 0;
  font-size: 0.85rem;
  color: var(--mist);
}

/* Legal pages */
.legal-page {
  min-height: 100svh;
  display: flex;
  flex-direction: column;
}

.legal-header {
  padding: 1.1rem var(--space-md);
  background: var(--ink);
  color: var(--white);
}

.legal-header__inner {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
}

.legal-header__brand {
  font-family: var(--font-display);
  font-size: 1.2rem;
  text-decoration: none;
  color: var(--white);
}

.legal-header__back {
  font-size: 0.95rem;
  color: var(--mist-light);
  text-decoration: none;
}

.legal-header__back:hover,
.legal-header__brand:hover {
  color: var(--brass);
}

.legal-main {
  flex: 1;
  padding: var(--space-xl) var(--space-md);
}

.legal-main__inner {
  width: min(100%, 46rem);
  margin: 0 auto;
}

.legal-kicker {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--brass-deep);
}

.legal-main h1 {
  font-size: clamp(2rem, 4vw, 2.8rem);
  margin-bottom: 0.5rem;
}

.legal-updated {
  margin-bottom: var(--space-md);
  color: var(--mist);
}

.legal-body h2 {
  font-size: 1.35rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
}

.legal-body h3 {
  font-size: 1.1rem;
  margin-top: 1.25rem;
}

.legal-body ul {
  padding-left: 1.2rem;
  margin: 0 0 1rem;
}

.legal-body li {
  margin-bottom: 0.4rem;
  color: var(--ink-soft);
}

.legal-body p {
  color: var(--ink-soft);
}

.legal-toc {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
  margin: 0 0 var(--space-md);
  padding: 1rem 1.15rem;
  background: rgba(11, 28, 44, 0.04);
  border-left: 2px solid var(--brass);
}

.legal-toc a {
  text-decoration: none;
  color: var(--ink-soft);
}

.legal-toc a:hover {
  color: var(--brass-deep);
}

.legal-company {
  margin-top: var(--space-md);
  padding: 1.15rem 1.25rem;
  background: linear-gradient(135deg, rgba(11, 28, 44, 0.06), rgba(196, 163, 90, 0.1));
}

.legal-company p {
  margin: 0 0 0.35rem;
}

@media (max-width: 900px) {
  .landmark,
  .landmark--flip {
    grid-template-columns: 1fr;
  }

  .landmark--flip .landmark__media,
  .landmark--flip .landmark__copy {
    order: initial;
  }

  .day__list,
  .practical__grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .section {
    padding: var(--space-lg) var(--space-sm);
  }
}

@media (max-width: 540px) {
  .hero__cta {
    width: 100%;
  }
}
