:root {
  --bg: #f3ede2;
  --surface: rgba(255, 250, 242, 0.72);
  --surface-strong: #fffaf2;
  --text: #1f1a17;
  --muted: #675f59;
  --line: rgba(56, 39, 18, 0.12);
  --primary: #0a7a64;
  --primary-deep: #064f41;
  --accent: #d25c2f;
  --shadow: 0 24px 60px rgba(54, 39, 24, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  font-family: "IBM Plex Sans", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(210, 92, 47, 0.18), transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(10, 122, 100, 0.18), transparent 24%),
    linear-gradient(180deg, #f8f1e7 0%, var(--bg) 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(31, 26, 23, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(31, 26, 23, 0.04) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.18), transparent 85%);
}

.page-shell {
  width: min(1160px, calc(100% - 32px));
  margin: 0 auto;
  padding: 32px 0 64px;
}

.hero,
.section {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--surface);
  backdrop-filter: blur(10px);
  box-shadow: var(--shadow);
}

.hero {
  padding: 5px;
}

.hero__header {
  position: relative;
  z-index: 1;
}

.hero__layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(250px, 330px);
  gap: 36px;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -35% auto;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(210, 92, 47, 0.22) 0%, transparent 72%);
}

.hero__badge,
.section__eyebrow,
.address-card__label,
.activity-card__code {
  display: inline-flex;
  align-items: center;
  width: fit-content;
  border-radius: 999px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__badge {
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.66);
  color: var(--primary-deep);
  font-size: 0.76rem;
  font-weight: 700;
}

.hero__content {
  max-width: 720px;
 
}

.hero__subtitle {
  margin: 14px 0 0;
  font-family: "Space Grotesk", sans-serif;
  font-size: clamp(1.1rem, 2vw, 1.5rem);
  color: var(--primary-deep);
  letter-spacing: -0.03em;
}

.hero__eyebrow,
.section__eyebrow {
  margin: 0 0 14px;
  color: var(--accent);
  font-size: 0.84rem;
  font-weight: 700;
}

.hero h1,
.section h2,
.activity-card h3 {
  font-family: "Space Grotesk", sans-serif;
  margin: 0;
}

.hero h1 {
  font-size: clamp(2.4rem, 5.4vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.05em;
  max-width: 15ch;
  text-wrap: balance;
}

.hero__lead,
.section__header p,
.address-card p,
.activity-card h3,
.activity-card p,
.feature-pill span {
  color: var(--muted);
}

.hero__lead {
  margin: 24px 0 0;
  max-width: 60ch;
  font-size: 1rem;
  line-height: 1.8;
}

.hero__logo-card {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 8px;
  border: 1px solid rgba(31, 26, 23, 0.06);
  border-radius: 24px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.52), rgba(255, 255, 255, 0.22));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.6);
}

.hero__logo {
  display: block;
  width: min(100%, 300px);
  height: auto;
  object-fit: contain;
}

main {
  display: grid;
  gap: 26px;
  margin-top: 26px;
}

.section {
  padding: 28px;
}

.section--accent {
  background:
    linear-gradient(135deg, rgba(10, 122, 100, 0.12), transparent 50%),
    var(--surface-strong);
}

.section__header {
  max-width: 760px;
}

.section__header h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
  letter-spacing: -0.04em;
}

.section__header p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.activity-grid,
.address-grid {
  display: grid;
  gap: 18px;
  margin-top: 28px;
}

.activity-grid {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.address-grid {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.activity-card,
.address-card {
  position: relative;
  min-height: 100%;
  padding: 22px;
  border: 1px solid rgba(31, 26, 23, 0.1);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.58);
  transition: transform 220ms ease, border-color 220ms ease, box-shadow 220ms ease;
}

.activity-card:hover,
.address-card:hover {
  transform: translateY(-4px);
  border-color: rgba(10, 122, 100, 0.28);
  box-shadow: 0 14px 28px rgba(35, 27, 19, 0.08);
}

.activity-card__code {
  padding: 8px 12px;
  background: rgba(10, 122, 100, 0.12);
  color: var(--primary-deep);
  font-size: 0.74rem;
  font-weight: 700;
}

.activity-card h3 {
  margin-top: 18px;
  font-size: 1.08rem;
  line-height: 1.45;
}

.activity-card p {
  margin: 14px 0 0;
  line-height: 1.7;
}

.section--dark {
  background:
    radial-gradient(circle at top right, rgba(210, 92, 47, 0.18), transparent 30%),
    linear-gradient(180deg, #1c2927 0%, #111918 100%);
  border-color: rgba(255, 255, 255, 0.06);
}

.section--dark .section__eyebrow {
  color: #f7a989;
}

.section--dark h2,
.section--dark strong {
  color: #f7f1e5;
}

.section--dark .section__header p,
.section--dark .feature-pill span {
  color: rgba(247, 241, 229, 0.76);
}

.feature-strip {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.feature-pill {
  display: grid;
  gap: 10px;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.04);
}

.feature-pill strong {
  font-family: "Space Grotesk", sans-serif;
  font-size: 1rem;
}

.feature-pill span {
  line-height: 1.65;
}

.address-card__label {
  padding: 8px 12px;
  background: rgba(210, 92, 47, 0.12);
  color: #9f4220;
  font-size: 0.74rem;
  font-weight: 700;
}

.address-card p {
  margin: 16px 0 0;
  line-height: 1.7;
}

@media (max-width: 720px) {
  .page-shell {
    width: min(100% - 20px, 1160px);
    padding: 20px 0 40px;
  }

  .hero,
  .section {
    border-radius: 22px;
    padding: 22px;
  }

  .hero__content {
    padding-top: 22px;
  }

  .hero h1 {
    max-width: none;
  }

  .hero__layout {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero__logo-card {
    order: -1;
    padding: 8px;
  }
}
