* {
  box-sizing: border-box;
}

:root {
  --bg: #f5f5f2;
  --surface: #ffffff;
  --text: #0e0e0e;
  --muted: #606060;
  --line: #d9d9d5;
  --dark: #111111;
  --radius: 22px;
}

html {
  scroll-behavior: smooth;
}

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

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

a {
  color: inherit;
}

.site-header {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 14px clamp(22px, 5vw, 76px);
  background: rgba(255,255,255,.94);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(10px);
}

.brand img {
  width: 150px;
  height: 52px;
  object-fit: contain;
}

nav {
  display: flex;
  gap: 26px;
}

nav a {
  text-decoration: none;
  font-size: 14px;
  font-weight: 700;
}

.hero {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  min-height: 680px;
  background: var(--dark);
  color: white;
}

.hero-copy {
  padding: clamp(60px, 9vw, 130px) clamp(28px, 7vw, 100px);
  align-self: center;
}

.eyebrow {
  margin: 0 0 14px;
  font-size: 12px;
  letter-spacing: .18em;
  font-weight: 800;
}

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

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(52px, 7vw, 94px);
  line-height: .94;
  letter-spacing: -0.055em;
}

.lead {
  max-width: 560px;
  margin-bottom: 34px;
  color: #d5d5d5;
  font-size: clamp(18px, 2vw, 25px);
}

.hero-image {
  min-height: 560px;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

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

.button {
  display: inline-block;
  padding: 15px 22px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  font-size: 14px;
}

.button.primary {
  background: white;
  color: black;
}

.button.secondary {
  border: 1px solid #555;
  color: white;
}

.intro,
.locations {
  padding: clamp(70px, 9vw, 120px) clamp(22px, 7vw, 100px);
}

.intro h2,
.locations h2,
.closing h2 {
  margin-bottom: 18px;
  font-size: clamp(38px, 5vw, 68px);
  line-height: 1;
  letter-spacing: -0.045em;
}

.section-intro {
  max-width: 850px;
  margin-bottom: 50px;
  color: var(--muted);
  font-size: clamp(18px, 2vw, 24px);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-card {
  min-height: 290px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.category-card .number {
  display: block;
  margin-bottom: 60px;
  color: #8b8b8b;
  font-size: 12px;
  font-weight: 800;
}

.category-card h3 {
  margin-bottom: 12px;
  font-size: 27px;
  letter-spacing: -.025em;
}

.category-card p {
  margin-bottom: 0;
  color: var(--muted);
}

.rotation-note {
  margin-top: 18px;
  padding: 22px 26px;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  border-radius: var(--radius);
  background: #e7e7e2;
}

.locations {
  background: white;
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  gap: 40px;
  margin-bottom: 42px;
}

.section-heading > p {
  max-width: 430px;
  color: var(--muted);
}

.location-grid {
  display: grid;
  grid-template-columns: 1.35fr .65fr;
  gap: 18px;
}

.location-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--bg);
}

.location-card.featured {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.location-photo {
  min-height: 370px;
}

.location-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.location-content {
  padding: 34px;
  align-self: center;
}

.city {
  margin-bottom: 16px;
  font-size: 12px;
  letter-spacing: .16em;
  font-weight: 800;
}

.location-content h3 {
  margin-bottom: 12px;
  font-size: clamp(26px, 3vw, 39px);
  line-height: 1.05;
  letter-spacing: -.035em;
}

.location-content p:not(.city) {
  color: var(--muted);
  font-size: 17px;
}

.text-link {
  display: inline-block;
  margin-top: 16px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.closing {
  padding: clamp(80px, 10vw, 150px) 22px;
  text-align: center;
  background: var(--dark);
  color: white;
}

.closing img {
  width: 180px;
  margin: 0 auto 42px;
  padding: 10px 18px;
  border-radius: 10px;
  background: white;
}

.closing p {
  margin-bottom: 26px;
  color: #c9c9c9;
  font-size: 19px;
}

footer {
  padding: 25px clamp(22px, 5vw, 76px);
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: #666;
  background: white;
  border-top: 1px solid var(--line);
  font-size: 13px;
}

@media (max-width: 900px) {
  nav {
    display: none;
  }

  .hero {
    grid-template-columns: 1fr;
  }

  .hero-copy {
    padding-top: 70px;
    padding-bottom: 70px;
  }

  .hero-image {
    min-height: 430px;
  }

  .category-grid,
  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card.featured {
    grid-template-columns: 1fr;
  }

  .section-heading {
    display: block;
  }

  .section-heading > p {
    margin-top: 20px;
  }
}

@media (max-width: 560px) {
  .site-header {
    min-height: 70px;
  }

  .brand img {
    width: 126px;
    height: 42px;
  }

  h1 {
    font-size: 52px;
  }

  .hero-image {
    min-height: 330px;
  }

  .category-card .number {
    margin-bottom: 34px;
  }

  .location-photo {
    min-height: 300px;
  }

  footer {
    flex-direction: column;
  }
}
