:root {
  --bg: #f7f1e8;
  --bg-strong: #efe4d4;
  --surface: rgba(255, 250, 243, 0.72);
  --surface-strong: rgba(255, 250, 243, 0.9);
  --text: #251d16;
  --muted: #6b5e53;
  --line: rgba(63, 46, 29, 0.12);
  --accent: #9d5c46;
  --accent-soft: #d9b8a6;
  --sage: #73806c;
  --sage-soft: #d4dbce;
  --night: #29333a;
  --shadow: 0 22px 60px rgba(59, 39, 18, 0.14);
  --radius-lg: 32px;
  --radius-md: 24px;
  --radius-sm: 16px;
  --max-width: 1200px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(217, 184, 166, 0.55), transparent 34%),
    radial-gradient(circle at top right, rgba(115, 128, 108, 0.18), transparent 30%),
    linear-gradient(180deg, #fbf7f1 0%, #f4ede2 46%, #efe3d3 100%);
}

img {
  display: block;
  width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

.page-shell {
  position: relative;
  overflow: hidden;
}

.page-shell::before,
.page-shell::after {
  content: "";
  position: fixed;
  inset: auto;
  width: 42vw;
  height: 42vw;
  border-radius: 50%;
  pointer-events: none;
  filter: blur(40px);
  opacity: 0.25;
  z-index: 0;
}

.page-shell::before {
  top: -12vw;
  left: -10vw;
  background: rgba(196, 154, 126, 0.45);
}

.page-shell::after {
  right: -12vw;
  bottom: 10vh;
  background: rgba(133, 153, 124, 0.28);
}

.site-header,
main,
.site-footer {
  position: relative;
  z-index: 1;
}

.site-header,
.hero,
.facts,
.section-grid,
.hosting,
.gallery-section,
.cta-section,
.site-footer {
  width: min(calc(100% - 32px), var(--max-width));
  margin: 0 auto;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 22px 0 18px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
}

.brand-mark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 72px;
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 248, 241, 0.7);
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.brand-text,
.site-nav a,
.eyebrow,
.fact-label,
.timeline-time {
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.brand-text {
  font-size: 0.9rem;
  font-weight: 700;
}

.site-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 18px;
}

.site-nav a {
  font-size: 0.75rem;
  color: var(--muted);
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(320px, 0.95fr);
  gap: 38px;
  align-items: center;
  padding: 42px 0 36px;
}

.hero-copy h1,
.section-heading h2,
.cta-card h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  line-height: 0.95;
  font-weight: 800;
}

.hero-copy h1 {
  max-width: 9ch;
  font-size: clamp(3.8rem, 8vw, 6.1rem);
}

.timeline-item p,
.info-panel p,
.cta-card p,
.footer-note,
.fact-note {
  color: var(--muted);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 22px;
  border-radius: 999px;
  font-size: 0.95rem;
  font-weight: 700;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  background: var(--night);
  color: #fff;
}

.button-cta {
  min-height: 64px;
  padding: 0 28px;
  background:
    linear-gradient(135deg, #bd4b3d 0%, #d5664a 52%, #f1ab6b 100%);
  box-shadow:
    0 16px 34px rgba(189, 75, 61, 0.34),
    0 0 0 10px rgba(241, 171, 107, 0.16);
  font-size: 1rem;
}

.button-cta:hover {
  background:
    linear-gradient(135deg, #ac3d31 0%, #ca5c41 52%, #ec9f58 100%);
}

.button-secondary {
  border: 1px solid rgba(37, 29, 22, 0.14);
  background: rgba(255, 250, 244, 0.72);
}

.hero-visual {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  grid-template-rows: 360px 210px;
  gap: 18px;
}

.hero-card {
  overflow: hidden;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
  background: rgba(255, 255, 255, 0.4);
}

.hero-card img,
.gallery-item img {
  height: 100%;
  object-fit: cover;
}

.hero-image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image-one {
  object-position: 62% 50%;
}

.hero-image-two {
  object-position: 60% 50%;
}

.hero-image-three {
  object-position: 60% 50%;
}

.hero-card-large {
  grid-row: 1 / span 2;
}

.facts {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
  padding: 20px 0 68px;
}

.fact-card,
.timeline-item,
.info-panel,
.cta-card {
  backdrop-filter: blur(16px);
  background: var(--surface);
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: var(--shadow);
}

.fact-card {
  padding: 24px;
  border-radius: var(--radius-md);
}

.fact-label,
.eyebrow {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
}

.fact-value {
  margin: 12px 0 10px;
  font-size: 1.35rem;
  font-weight: 800;
}

.fact-note {
  margin: 0;
  line-height: 1.55;
}

.section-grid,
.hosting,
.gallery-section,
.cta-section {
  padding-bottom: 72px;
}

.section-heading {
  display: grid;
  gap: 12px;
  margin-bottom: 28px;
}

.section-heading h2,
.cta-card h2 {
  max-width: 11ch;
  font-size: clamp(2.4rem, 4vw, 3.6rem);
}

.timeline {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.timeline-item {
  padding: 28px;
  border-radius: var(--radius-md);
}

.timeline-item h3,
.info-panel h3 {
  margin: 12px 0 12px;
  font-size: 1.35rem;
}

.timeline-item p,
.info-panel p,
.cta-card p {
  margin: 0;
  line-height: 1.7;
}

.hosting-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.info-panel {
  padding: 28px;
  border-radius: var(--radius-md);
}

.accent-sand {
  background:
    linear-gradient(180deg, rgba(255, 250, 243, 0.88), rgba(255, 244, 232, 0.85));
}

.accent-sage {
  background:
    linear-gradient(180deg, rgba(241, 247, 238, 0.92), rgba(223, 232, 215, 0.85));
}

.accent-blush {
  background:
    linear-gradient(180deg, rgba(255, 246, 243, 0.9), rgba(247, 225, 216, 0.84));
}

.accent-night {
  color: #fff;
  background:
    linear-gradient(180deg, rgba(36, 45, 51, 0.98), rgba(49, 60, 68, 0.95));
}

.accent-night p,
.accent-night .mini-list {
  color: rgba(255, 255, 255, 0.82);
}

.mini-list {
  margin: 16px 0 0;
  padding-left: 20px;
  color: var(--muted);
  line-height: 1.8;
}

.quote-band {
  width: min(calc(100% - 32px), calc(var(--max-width) - 140px));
  margin: 0 auto 72px;
  padding: 38px 32px;
  border-top: 1px solid rgba(53, 38, 25, 0.12);
  border-bottom: 1px solid rgba(53, 38, 25, 0.12);
  text-align: center;
}

.quote-band p {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.9rem);
  font-weight: 800;
  line-height: 1.05;
}

.gallery-grid {
  column-count: 3;
  column-gap: 18px;
}

.gallery-item {
  margin: 0 0 18px;
  break-inside: avoid;
  transform: translateY(0);
  transition: transform 220ms ease;
}

.gallery-item:hover {
  transform: translateY(-4px);
}

.gallery-item img {
  width: 100%;
  height: auto;
  border-radius: 24px;
  box-shadow: 0 18px 42px rgba(59, 39, 18, 0.12);
}

.cta-card {
  position: relative;
  overflow: hidden;
  padding: 36px;
  border-radius: 36px;
  background:
    radial-gradient(circle at top right, rgba(217, 184, 166, 0.34), transparent 26%),
    linear-gradient(180deg, rgba(255, 251, 247, 0.96), rgba(247, 240, 230, 0.88));
}

.cta-card::after {
  content: "";
  position: absolute;
  right: -60px;
  bottom: -60px;
  width: 200px;
  height: 200px;
  border-radius: 50%;
  background: rgba(115, 128, 108, 0.12);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 0 0 30px;
  font-size: 0.95rem;
}

.footer-note {
  max-width: 440px;
  text-align: right;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition:
    opacity 520ms ease,
    transform 520ms ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1080px) {
  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy h1,
  .section-heading h2,
  .cta-card h2 {
    max-width: none;
  }

  .facts,
  .timeline,
  .hosting-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .gallery-grid {
    column-count: 2;
  }
}

@media (max-width: 720px) {
  .site-header,
  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }

  .site-nav {
    justify-content: flex-start;
  }

  .hero {
    padding-top: 20px;
  }

  .hero-visual {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 240px 180px;
  }

  .facts,
  .timeline,
  .hosting-grid {
    grid-template-columns: 1fr;
  }

  .gallery-grid {
    column-count: 1;
  }

  .quote-band {
    width: min(calc(100% - 32px), var(--max-width));
    padding-inline: 0;
  }

  .cta-card {
    padding: 28px;
  }

  .footer-note {
    text-align: left;
  }
}
