* {
  box-sizing: border-box;
}

:root {
  --background: #f4f1ea;
  --text: #17201b;
  --muted: #677068;
  --dark: #122017;
  --line: rgba(23, 32, 27, 0.14);
  --accent: #d9a441;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--background);
  color: var(--text);
  font-family: "DM Sans", sans-serif;
  line-height: 1.6;
}

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 10;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 5vw;
  color: white;
  background: linear-gradient(to bottom, rgba(0,0,0,.45), transparent);
}

.brand {
  font-size: 0.84rem;
  letter-spacing: 0.18em;
  font-weight: 600;
  text-decoration: none;
}

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

nav a {
  font-size: 0.9rem;
  text-decoration: none;
}

.hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: flex-end;
  padding: 10vh 7vw;
  color: white;
  background:
    linear-gradient(rgba(12, 23, 16, 0.2), rgba(12, 23, 16, 0.45)),
    url("https://images.unsplash.com/photo-1500530855697-b586d89ba3ee?auto=format&fit=crop&w=2200&q=85")
    center/cover no-repeat;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(5, 13, 8, .65), rgba(5, 13, 8, .05));
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--muted);
}

h1,
h2,
h3,
blockquote {
  font-family: "Playfair Display", serif;
}

h1 {
  margin: 0;
  max-width: 820px;
  font-size: clamp(4rem, 9vw, 8.5rem);
  line-height: 0.95;
  letter-spacing: -0.04em;
}

.hero-copy {
  max-width: 620px;
  margin: 28px 0 36px;
  font-size: clamp(1.1rem, 2vw, 1.45rem);
}

.button {
  display: inline-block;
  padding: 14px 22px;
  border: 1px solid currentColor;
  text-decoration: none;
  font-weight: 600;
  transition: 0.2s ease;
}

.button-light:hover {
  background: white;
  color: var(--dark);
}

.section {
  padding: 110px 7vw;
}

.about {
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: 10vw;
}

h2 {
  margin: 0;
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.05;
  letter-spacing: -0.035em;
}

.about-copy {
  padding-top: 44px;
  font-size: 1.1rem;
}

.section-heading {
  max-width: 900px;
  margin-bottom: 54px;
}

.achievements {
  border-top: 1px solid var(--line);
}

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

.achievement-card {
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: #ebe6dc;
  border: 1px solid var(--line);
}

.feature-card {
  background: var(--dark);
  color: white;
}

.card-number {
  font-size: 0.8rem;
  opacity: 0.65;
}

.card-kicker {
  margin: 0 0 8px;
  color: var(--accent);
  font-size: 0.77rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.achievement-card h3 {
  margin: 0 0 14px;
  font-size: 2rem;
}

.achievement-card p:last-child {
  margin-bottom: 0;
}

.quote-section {
  padding: 130px 7vw;
  background: var(--dark);
  color: white;
}

blockquote {
  max-width: 1050px;
  margin: 0;
  font-size: clamp(3rem, 7vw, 7rem);
  line-height: 1.05;
  letter-spacing: -0.04em;
}

.gallery-note {
  max-width: 660px;
  color: var(--muted);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 18px;
}

.gallery-item {
  min-height: 420px;
  display: flex;
  align-items: flex-end;
  padding: 24px;
  color: white;
  background-position: center;
  background-size: cover;
}

.gallery-item span {
  padding: 8px 12px;
  background: rgba(0, 0, 0, .45);
  backdrop-filter: blur(4px);
}

.gallery-one {
  grid-row: span 2;
  min-height: 860px;
  background-image: url("https://images.unsplash.com/photo-1464822759023-fed622ff2c3b?auto=format&fit=crop&w=1600&q=85");
}

.gallery-two {
  background-image: url("https://images.unsplash.com/photo-1500534314209-a25ddb2bd429?auto=format&fit=crop&w=1200&q=85");
}

.gallery-three {
  background-image: url("https://images.unsplash.com/photo-1517825738774-7de9363ef735?auto=format&fit=crop&w=1200&q=85");
}

.contact {
  background: #d9a441;
}

.contact h2 {
  max-width: 900px;
}

.contact > p:not(.eyebrow) {
  margin-top: 24px;
  font-size: 1.1rem;
}

.contact-links {
  display: flex;
  flex-wrap: wrap;
  gap: 28px;
  margin-top: 36px;
}

.contact-links a {
  font-weight: 600;
}

footer {
  padding: 22px 7vw;
  background: #0c130f;
  color: rgba(255,255,255,.7);
  font-size: 0.85rem;
}

@media (max-width: 820px) {
  .site-header {
    padding: 18px 20px;
  }

  nav {
    display: none;
  }

  .hero {
    padding: 120px 24px 60px;
  }

  .section {
    padding: 80px 24px;
  }

  .about {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-copy {
    padding-top: 0;
  }

  .achievement-grid,
  .gallery-grid {
    grid-template-columns: 1fr;
  }

  .gallery-one {
    grid-row: auto;
    min-height: 520px;
  }

  .gallery-item {
    min-height: 420px;
  }

  .quote-section {
    padding: 90px 24px;
  }
}
