:root {
  --ink: #231914;
  --muted: #6f625b;
  --paper: #fffaf2;
  --surface: #f5eadb;
  --line: #dfcfbc;
  --gold: #c9892d;
  --green: #5f7c4a;
  --spice: #9a4526;
  --dark: #15110e;
  --white: #ffffff;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

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

.site-header {
  position: fixed;
  z-index: 10;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, box-shadow 180ms ease, padding 180ms ease;
}

.site-header.is-scrolled {
  padding-block: 12px;
  color: var(--ink);
  background: rgba(255, 250, 242, 0.94);
  box-shadow: 0 10px 30px rgba(35, 25, 20, 0.08);
  backdrop-filter: blur(16px);
}

.brand,
.nav,
.header-action,
.hero-actions,
.quality-points {
  display: flex;
  align-items: center;
}

.brand {
  gap: 10px;
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border: 1px solid currentColor;
  border-radius: 50%;
}

.nav {
  gap: 24px;
  font-size: 14px;
  font-weight: 700;
}

.header-action {
  justify-self: end;
  min-height: 42px;
  padding: 0 18px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 800;
}

.hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: center;
  overflow: hidden;
  background: var(--dark);
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
}

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

.hero-shade {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.48) 39%, rgba(0, 0, 0, 0.06) 76%),
    linear-gradient(0deg, rgba(0, 0, 0, 0.42), transparent 36%);
}

.hero-content {
  position: relative;
  width: min(720px, calc(100% - 36px));
  margin-left: clamp(18px, 7vw, 96px);
  padding-top: 58px;
  color: var(--white);
}

.eyebrow,
.section-kicker,
.label {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1 {
  max-width: 680px;
  margin-bottom: 20px;
  font-size: clamp(46px, 8vw, 94px);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 5vw, 54px);
  line-height: 1.02;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
}

.hero-copy {
  max-width: 590px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.6;
}

.hero-actions {
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 999px;
  font-weight: 800;
}

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

.button.secondary {
  color: var(--white);
  border: 1px solid rgba(255, 255, 255, 0.6);
}

.section {
  padding: clamp(68px, 9vw, 118px) clamp(18px, 5vw, 72px);
}

.intro-grid,
.section-heading,
.contact-grid {
  max-width: 1160px;
  margin: 0 auto;
}

.intro-grid,
.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 7vw, 96px);
  align-items: end;
}

.intro p,
.section-heading p,
.range-item p,
.quality-points p,
.footer {
  color: var(--muted);
  line-height: 1.7;
}

.intro p,
.section-heading p {
  font-size: 18px;
}

.range {
  background: var(--surface);
}

.range-grid {
  max-width: 1160px;
  margin: 44px auto 0;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.range-item,
.contact-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.58);
}

.range-item {
  min-height: 220px;
  padding: 28px;
}

.range-icon {
  display: inline-grid;
  place-items: center;
  width: 44px;
  height: 44px;
  margin-bottom: 42px;
  border-radius: 50%;
  color: var(--white);
  background: var(--green);
  font-size: 13px;
  font-weight: 800;
}

.range-item:nth-child(2) .range-icon {
  background: var(--gold);
}

.range-item:nth-child(3) .range-icon {
  background: var(--spice);
}

.quality-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 36px;
  align-items: center;
  padding: clamp(64px, 8vw, 96px) clamp(18px, 5vw, 72px);
  color: var(--white);
  background: var(--dark);
}

.quality-content,
.quality-points {
  max-width: 580px;
}

.quality-content {
  justify-self: end;
}

.quality-points {
  gap: 12px;
  flex-wrap: wrap;
}

.quality-points p {
  margin: 0;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.78);
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 42px;
}

.contact-panel {
  padding: 24px;
}

.contact-panel.wide {
  grid-column: 1 / -1;
}

.contact-panel strong,
address {
  display: block;
  max-width: 760px;
  font-style: normal;
  font-size: 18px;
  font-weight: 800;
  line-height: 1.55;
}

.label {
  display: block;
  margin-bottom: 8px;
  color: var(--green);
}

.footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5vw, 72px);
  border-top: 1px solid var(--line);
}

.footer p {
  margin: 0;
}

.footer a {
  font-weight: 800;
}

@media (max-width: 820px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .nav {
    display: none;
  }

  .hero {
    min-height: 820px;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(0, 0, 0, 0.82), rgba(0, 0, 0, 0.35)),
      linear-gradient(0deg, rgba(0, 0, 0, 0.56), transparent 42%);
  }

  .intro-grid,
  .section-heading,
  .quality-band,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .quality-content {
    justify-self: start;
  }

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

@media (max-width: 520px) {
  .header-action {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr;
  }

  .hero-content {
    margin-inline: 18px;
  }

  .button {
    width: 100%;
  }

  .footer {
    flex-direction: column;
  }
}
