:root {
  --ink: #303030;
  --muted: #777a80;
  --paper: #f4f3ef;
  --white: #ffffff;
  --footer: #2f2f2f;
  --gold: #cda85a;
  --gold-dark: #b99143;
  --line: rgba(40, 40, 40, 0.1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

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

.site-header {
  height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(28px, 7.5vw, 112px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.brand {
  color: #313131;
  font-size: 24px;
  font-weight: 900;
  letter-spacing: 0;
}

nav {
  display: flex;
  align-items: center;
  gap: clamp(22px, 3vw, 42px);
  color: #2e2e2e;
  font-size: 13px;
  font-weight: 800;
}

nav a:first-child {
  color: var(--gold);
}

.hero {
  position: relative;
  min-height: 760px;
  display: grid;
  place-items: center;
  padding: 96px 24px;
  overflow: hidden;
  text-align: center;
  color: var(--white);
  background: url("/assets/hero.jpg") center / cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.58);
}

.hero-content {
  position: relative;
  width: min(760px, 100%);
}

h1,
h2,
h3,
p {
  overflow-wrap: anywhere;
}

h1 {
  margin: 0;
  font-size: clamp(42px, 5.7vw, 64px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  font-size: clamp(32px, 3.8vw, 42px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  font-size: 18px;
  line-height: 1.2;
}

.hero p {
  max-width: 640px;
  margin: 20px auto 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: 17px;
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  padding: 13px 27px;
  border-radius: 6px;
  font-size: 14px;
  font-weight: 850;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

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

.button.gold {
  color: var(--white);
  background: var(--gold);
  border: 1px solid var(--gold);
}

.button.gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
}

.button.outline {
  color: var(--white);
  border: 2px solid rgba(255, 255, 255, 0.88);
}

.button.centered {
  width: fit-content;
  margin: 52px auto 0;
}

.section {
  padding: clamp(70px, 8vw, 110px) clamp(28px, 7.5vw, 112px);
}

.section-heading {
  max-width: 720px;
  margin: 0 auto 52px;
  text-align: center;
}

.section-heading p,
.cta p {
  margin: 14px auto 0;
  color: var(--muted);
}

.campaign-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 30px;
}

.campaign-card {
  overflow: hidden;
  border-radius: 7px;
  background: var(--white);
  box-shadow: 0 12px 32px rgba(25, 25, 25, 0.08);
}

.campaign-card img {
  aspect-ratio: 1.28 / 1;
  object-fit: cover;
}

.campaign-card div {
  padding: 22px 24px 26px;
}

.campaign-card span {
  display: block;
  margin-bottom: 8px;
  color: #898989;
  font-size: 11px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.campaign-card p {
  min-height: 54px;
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.campaign-card a,
.approach-copy a {
  color: var(--gold-dark);
  font-size: 14px;
  font-weight: 900;
}

.approach {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(320px, 1fr);
  gap: clamp(46px, 8vw, 110px);
  align-items: center;
  background: var(--white);
}

.approach-copy p {
  max-width: 620px;
  margin: 18px 0 0;
  color: var(--muted);
}

.approach-copy a {
  display: inline-block;
  margin-top: 26px;
}

.approach img {
  border-radius: 7px;
  aspect-ratio: 1.24 / 1;
  object-fit: cover;
}

.cta {
  padding: clamp(72px, 8vw, 108px) 24px;
  text-align: center;
  background: var(--paper);
}

.cta p {
  max-width: 620px;
  margin-bottom: 30px;
}

footer {
  padding: 62px clamp(28px, 7.5vw, 112px) 34px;
  color: rgba(255, 255, 255, 0.74);
  background: var(--footer);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.5fr 0.5fr;
  gap: clamp(34px, 8vw, 112px);
  padding-bottom: 46px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

footer h3 {
  margin-bottom: 18px;
  color: var(--white);
  font-size: 17px;
}

footer p,
footer a {
  color: rgba(255, 255, 255, 0.74);
  font-size: 14px;
}

footer a {
  display: block;
  margin: 8px 0;
}

.socials {
  display: flex;
  gap: 12px;
}

.socials a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.18);
  color: var(--white);
  font-size: 12px;
  font-weight: 900;
}

.copyright {
  margin: 28px 0 0;
  text-align: center;
}

@media (max-width: 920px) {
  .site-header {
    height: auto;
    align-items: flex-start;
    flex-direction: column;
    gap: 16px;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  nav {
    width: 100%;
    justify-content: space-between;
    gap: 12px;
  }

  .hero {
    min-height: 640px;
  }

  .campaign-grid,
  .approach,
  .footer-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .brand {
    font-size: 20px;
  }

  nav {
    font-size: 12px;
  }

  .hero {
    min-height: 560px;
  }

  h1 {
    font-size: 40px;
  }

  .section {
    padding-inline: 20px;
  }
}
