@import url('https://fonts.googleapis.com/css2?family=Manrope:wght@400;500;600;700&display=swap');

:root {
  --black: #000;
  --ink: #101014;
  --panel: #101014;
  --white: #fff;
  --soft: #b8b8bb;
  --line: #29292d;
  --gutter: clamp(20px, 3.125vw, 48px);
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: "Manrope", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.55;
}

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

a:focus-visible { outline: 2px solid #fff; outline-offset: 4px; }

.site-header {
  height: 112px;
  padding: 0 var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: var(--black);
  color: var(--white);
}

.brand {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 700;
  letter-spacing: .01em;
}

nav { display: flex; gap: clamp(28px, 4vw, 54px); }
nav a, .footer-links a { transition: opacity .2s ease; }
nav a:hover, .footer-links a:hover { opacity: .65; }

.hero {
  min-height: 608px;
  margin: 0 var(--gutter);
  position: relative;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: #111 url("assets/bullton-hero.avif") center 42% / cover no-repeat;
  color: var(--white);
}

.hero__shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(0,0,0,.08) 0%, rgba(0,0,0,.22) 52%, rgba(0,0,0,.9) 100%);
}

.hero__content {
  position: relative;
  z-index: 1;
  max-width: 760px;
  padding: clamp(36px, 6vw, 82px) clamp(24px, 3.5vw, 54px);
}

.eyebrow {
  margin: 0 0 16px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .06em;
}

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

h1 {
  margin-bottom: 28px;
  font-size: clamp(43px, 4.55vw, 70px);
  line-height: 1.15;
  letter-spacing: -.035em;
  font-weight: 500;
}

.hero__lead { max-width: 620px; margin: 0; font-weight: 600; }

.section-pad { padding: clamp(20px, 3.125vw, 48px) var(--gutter) 0; }

.intro { padding-top: clamp(84px, 11vw, 170px); padding-bottom: clamp(96px, 12vw, 184px); }

.intro__grid {
  display: grid;
  grid-template-columns: minmax(260px, .9fr) minmax(400px, 1.1fr);
  gap: clamp(50px, 9vw, 150px);
}

.intro h2 {
  font-size: clamp(35px, 3.3vw, 50px);
  line-height: 1.1;
  letter-spacing: -.03em;
  font-weight: 500;
}

.intro__copy { max-width: 680px; font-size: clamp(17px, 1.35vw, 20px); }
.intro__copy p:last-child { margin-top: 30px; margin-bottom: 0; }

.footer-card {
  border-radius: 10px;
  background: var(--panel);
  color: var(--white);
}

.site-footer { padding-top: 0; padding-bottom: var(--gutter); scroll-margin-top: 20px; }
.footer-card {
  min-height: 380px;
  padding: clamp(30px, 4vw, 60px);
  display: grid;
  grid-template-columns: 1fr 1fr auto;
  grid-template-rows: 1fr auto;
  gap: 60px clamp(36px, 6vw, 100px);
}
.footer-contact, .footer-links { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.footer-contact h2, .footer-links h2 { margin: 0 0 8px; font-size: 23px; font-weight: 500; }
.footer-contact address { color: var(--soft); font-style: normal; }
.footer-contact a:hover { text-decoration: underline; }
.copyright { grid-column: 1 / -1; margin: 0; padding-top: 38px; border-top: 1px solid var(--line); font-size: 14px; }

@media (max-width: 820px) {
  .site-header { height: 88px; }
  .hero { min-height: 580px; background-position: 58% center; }
  .intro__grid { grid-template-columns: 1fr; gap: 30px; }
  .footer-card { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-column: 2; }
}

@media (max-width: 560px) {
  :root { --gutter: 16px; }
  .site-header { height: 76px; }
  .brand { font-size: 20px; }
  nav { gap: 18px; font-size: 14px; }
  .hero { min-height: 550px; margin: 0; }
  .hero__content { padding: 30px 20px 38px; }
  h1 { font-size: clamp(38px, 12vw, 52px); }
  .intro { padding-top: 74px; padding-bottom: 82px; }
  .footer-card { min-height: 500px; border-radius: 8px; grid-template-columns: 1fr; grid-template-rows: auto auto auto 1fr; gap: 42px; }
  .footer-links { grid-column: 1; }
  .copyright { grid-column: 1; align-self: end; }
}

@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } }
