:root {
  color-scheme: light;
  --navy: #071b33;
  --blue: #0077a7;
  --cyan: #6cc4d9;
  --magenta: #b21f68;
  --stone: #f3efe5;
  --sand: #d8c7a5;
  --ink: #122033;
  --muted: #5e6874;
  --white: #ffffff;
  --line: rgba(18, 32, 51, 0.14);
  --shadow: 0 18px 52px rgba(7, 27, 51, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--stone);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
}

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

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 14px clamp(18px, 5vw, 64px);
  background: rgba(243, 239, 229, 0.9);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 800;
  color: var(--navy);
}

.brand img {
  border-radius: 8px;
  box-shadow: 0 6px 18px rgba(7, 27, 51, 0.18);
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2vw, 24px);
  color: var(--muted);
  font-size: 0.95rem;
}

nav a:hover {
  color: var(--magenta);
}

.hero {
  position: relative;
  min-height: 86vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  background: var(--navy);
}

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

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(7, 27, 51, 0.16), rgba(7, 27, 51, 0.88));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(900px, calc(100% - 36px));
  margin: 0 auto;
  padding: 0 0 min(15vh, 120px);
  color: var(--white);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--cyan);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.6rem, 10vw, 8rem);
  line-height: 0.9;
  letter-spacing: 0;
}

h2 {
  font-size: clamp(2rem, 4vw, 4.3rem);
  line-height: 1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.1rem;
}

.lead {
  max-width: 680px;
  margin-bottom: 28px;
  font-size: clamp(1.08rem, 2.2vw, 1.45rem);
}

.hero-actions,
.support-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 12px 18px;
  font-weight: 800;
  transition: transform 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

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

.button.primary {
  background: var(--magenta);
  color: var(--white);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.section .button.secondary,
.support .button.secondary {
  border-color: rgba(7, 27, 51, 0.28);
  color: var(--navy);
}

.intro {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
}

.intro div {
  min-height: 150px;
  padding: clamp(24px, 4vw, 42px);
  background: var(--white);
}

.intro strong,
.intro span {
  display: block;
}

.intro strong {
  margin-bottom: 8px;
  color: var(--navy);
  font-size: 1.3rem;
}

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

.section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: clamp(30px, 6vw, 80px);
  padding: clamp(64px, 9vw, 120px) clamp(18px, 5vw, 64px);
}

.section-copy {
  max-width: 560px;
}

.section-copy p:not(.eyebrow),
.support p:not(.eyebrow) {
  color: var(--muted);
  font-size: 1.04rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.feature-grid article {
  min-height: 170px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.7);
}

.feature-grid p {
  color: var(--muted);
}

.places {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  background: var(--navy);
}

.places article {
  min-height: 520px;
  display: grid;
  grid-template-rows: 1fr auto;
  background: var(--navy);
  color: var(--white);
}

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

.places div {
  padding: clamp(22px, 4vw, 34px);
}

.places h2 {
  margin-bottom: 12px;
  font-size: clamp(1.9rem, 3vw, 3rem);
}

.places p {
  color: rgba(255, 255, 255, 0.76);
}

.support {
  align-items: center;
  background: var(--white);
}

footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 18px;
  padding: 26px;
  background: var(--navy);
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.92rem;
}

footer a:hover {
  color: var(--white);
}

@media (max-width: 820px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
  }

  nav {
    width: 100%;
    overflow-x: auto;
    padding-bottom: 2px;
  }

  .hero {
    min-height: 82vh;
  }

  .intro,
  .section,
  .feature-grid,
  .places {
    grid-template-columns: 1fr;
  }

  .places article {
    min-height: 0;
  }
}
