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

:root {
  --beige: #b7ad9c;
  --beige-light: #e4dfd7;
  --cream: #f8f6f3;
  --sand: #efe0cc;
  --green: #7f8976;
  --text: #626c75;
  --dark: #1f2225;
  --yellow: #f0c417;
  --line: #e7e3dd;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: #fff;
  color: var(--text);
  font-family: "Raleway", sans-serif;
  font-size: 16px;
  letter-spacing: .035em;
  line-height: 1.6;
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
button { font: inherit; }

.announcement {
  background: var(--beige);
  color: white;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  padding: 9px 20px;
  text-align: center;
  text-transform: uppercase;
}

.site-header {
  align-items: center;
  background: rgba(255,255,255,.96);
  border-bottom: 1px solid var(--line);
  display: flex;
  height: 84px;
  justify-content: space-between;
  padding: 0 clamp(24px, 6vw, 96px);
}
.wordmark {
  color: var(--dark);
  font-size: 19px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
}
.wordmark span { font-weight: 300; }
nav { align-items: center; display: flex; gap: 34px; font-size: 13px; font-weight: 500; }
nav a:not(.nav-cta) { padding: 10px 0; }
nav a:not(.nav-cta):hover { color: var(--dark); }
.nav-cta { background: var(--yellow); color: var(--dark); font-weight: 600; padding: 11px 18px; }

.hero {
  background: var(--cream);
  display: grid;
  gap: clamp(50px, 8vw, 130px);
  grid-template-columns: minmax(0, 1fr) 300px;
  min-height: 670px;
  padding: clamp(90px, 11vw, 165px) clamp(28px, 8vw, 128px) 80px;
}
.hero-copy { max-width: 850px; }
.eyebrow, .section-number {
  color: var(--beige);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .16em;
  margin: 0 0 24px;
  text-transform: uppercase;
}
h1, h2 {
  color: var(--text);
  font-weight: 300;
  letter-spacing: .02em;
  line-height: 1.1;
  margin: 0;
}
h1 { font-size: clamp(48px, 6vw, 82px); }
h2 { font-size: clamp(38px, 4.5vw, 64px); }
.hero-lead {
  font-size: 17px;
  line-height: 1.75;
  margin: 30px 0 34px;
  max-width: 660px;
}
.hero-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 28px; }
.button {
  align-items: center;
  border: 1px solid transparent;
  cursor: pointer;
  display: inline-flex;
  font-size: 12px;
  font-weight: 600;
  justify-content: center;
  letter-spacing: .08em;
  min-height: 50px;
  padding: 0 24px;
  text-transform: uppercase;
  transition: background-color .2s ease, color .2s ease, transform .2s ease;
}
.button-primary { background: var(--yellow); color: var(--dark); }
.button:hover { transform: translateY(-1px); }
.text-link { border-bottom: 1px solid var(--beige); font-size: 12px; padding: 9px 0; }
.hero-facts {
  border-top: 1px solid #ded9d2;
  display: grid;
  gap: 24px;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 58px;
  padding-top: 25px;
}
.hero-facts div { display: flex; flex-direction: column; gap: 4px; }
.hero-facts strong { color: var(--dark); font-size: 18px; font-weight: 500; letter-spacing: 0; }
.hero-facts span { font-size: 10px; line-height: 1.45; }
.hero-offer {
  align-self: center;
  border-left: 1px solid var(--beige);
  display: flex;
  flex-direction: column;
  padding: 28px 0 28px 28px;
}
.hero-offer > span {
  color: var(--beige);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .16em;
  text-transform: uppercase;
}
.hero-offer strong { color: var(--dark); font-size: 28px; font-weight: 400; line-height: 1.2; margin: 12px 0; }
.hero-offer small { font-size: 10px; }

.intro {
  display: grid;
  gap: 7vw;
  grid-template-columns: .55fr 1.25fr 1fr;
  margin: auto;
  max-width: 1440px;
  padding: 120px clamp(28px, 7vw, 110px);
}
.section-number { color: var(--beige); margin-top: 7px; }
.intro > div p, .inventory-heading > p {
  font-size: 15px;
  line-height: 1.8;
  margin: 30px 0 0;
  max-width: 590px;
}
.check-list { list-style: none; margin: 8px 0 0; padding: 0; }
.check-list li { border-top: 1px solid var(--line); font-size: 13px; padding: 18px 0; }
.check-list li:last-child { border-bottom: 1px solid var(--line); }
.check-list span { color: var(--beige); display: inline-block; font-size: 9px; width: 36px; }

.inventory-section { background: var(--cream); padding: 110px clamp(28px, 8vw, 128px) 60px; }
.inventory-heading {
  align-items: end;
  display: grid;
  gap: 8vw;
  grid-template-columns: 1.1fr 1fr;
  margin: auto;
  max-width: 1200px;
}
.section-number.light { color: var(--beige); }
.inventory-grid {
  display: grid;
  gap: 8vw;
  grid-template-columns: .6fr 1.4fr;
  margin: 75px auto 0;
  max-width: 1200px;
}
.inventory-total { border-left: 1px solid var(--beige); display: flex; flex-direction: column; padding-left: 28px; }
.inventory-total > span, .retail-value > span {
  color: var(--beige);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
}
.inventory-total > strong {
  color: var(--dark);
  font-size: clamp(68px, 8vw, 108px);
  font-weight: 300;
  letter-spacing: -.04em;
  line-height: .95;
  margin-top: 15px;
}
.inventory-total > small { color: var(--green); font-size: 12px; font-weight: 600; margin-top: 8px; text-transform: uppercase; }
.inventory-total p { font-size: 10px; line-height: 1.6; margin: 32px 0 0; max-width: 280px; }
.retail-value { border-top: 1px solid var(--line); display: flex; flex-direction: column; margin-top: 32px; padding-top: 20px; }
.retail-value > strong { color: var(--dark); font-size: 30px; font-weight: 400; letter-spacing: 0; margin-top: 5px; }
.retail-value > small { font-size: 9px; margin-top: 4px; }
.inventory-row {
  align-items: center;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 22px;
  grid-template-columns: 180px 1fr 54px;
  padding: 17px 0;
}
.inventory-row:last-child { border-bottom: 1px solid var(--line); }
.inventory-label { display: flex; flex-direction: column; gap: 2px; }
.inventory-label span { color: var(--dark); font-size: 12px; font-weight: 500; }
.inventory-label small { color: var(--beige); font-size: 9px; }
.bar-track { background: #e9e5df; height: 5px; }
.bar-track span { display: block; height: 100%; }
.inventory-row > strong { color: var(--dark); font-size: 16px; font-weight: 400; text-align: right; }
.inventory-note { font-size: 9px; margin: 30px auto 0; max-width: 1200px; text-align: right; }

.handling { margin: auto; max-width: 1440px; padding: 110px clamp(28px, 8vw, 128px); }
.handling-grid { display: grid; grid-template-columns: repeat(3, 1fr); margin-top: 45px; }
.handling article { border-left: 1px solid var(--line); min-height: 230px; padding: 8px 38px 0 25px; }
.handling article > span { color: var(--beige); font-size: 21px; }
.handling h3 { color: var(--dark); font-size: 21px; font-weight: 400; margin: 55px 0 14px; }
.handling article p { font-size: 12px; line-height: 1.75; margin: 0; max-width: 300px; }

.contact { background: var(--green); color: white; padding: 105px clamp(28px, 12vw, 190px) 42px; text-align: center; }
.contact h2 { color: white; }
.contact .eyebrow { color: var(--beige-light); }
.contact > p:not(.eyebrow) { color: #edf0eb; font-size: 14px; line-height: 1.8; margin: 30px auto; max-width: 650px; }
.contact-actions { align-items: center; display: flex; flex-wrap: wrap; gap: 25px; justify-content: center; }
.copy-button { background: transparent; border: 0; border-bottom: 1px solid rgba(255,255,255,.65); color: white; cursor: pointer; font-size: 12px; padding: 11px 0; }
.legal-line { border-top: 1px solid rgba(255,255,255,.22); display: flex; font-size: 9px; justify-content: space-between; margin-top: 80px; padding-top: 20px; text-transform: uppercase; }

.image-story { background: white; padding: 110px clamp(28px, 6vw, 96px) 125px; }
.inspiration-heading { margin: 0 auto 55px; max-width: 1240px; text-align: center; }
.inspiration-heading h2 { font-size: clamp(34px, 4vw, 54px); }
.inspiration-grid { display: grid; gap: 24px; grid-template-columns: 1.15fr .72fr 1.15fr; margin: auto; max-width: 1240px; }
figure { margin: 0; }
.inspiration-grid figure:nth-child(2) { transform: translateY(38px); }
.inspiration-grid img { aspect-ratio: 4 / 3; height: 100%; max-height: 420px; object-fit: cover; }
.inspiration-grid figure:nth-child(2) img { aspect-ratio: 3 / 4; }
figcaption { color: var(--beige); font-size: 9px; letter-spacing: .14em; margin-top: 12px; text-transform: uppercase; }

footer {
  align-items: center;
  background: var(--cream);
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  padding: 32px clamp(28px, 6vw, 96px);
}
footer p, footer > a:last-child { font-size: 10px; }

@media (max-width: 900px) {
  nav a:not(.nav-cta) { display: none; }
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-offer { align-self: auto; max-width: 360px; }
  .intro { grid-template-columns: 1fr; gap: 32px; }
  .inventory-heading, .inventory-grid { grid-template-columns: 1fr; }
  .inspiration-grid { grid-template-columns: 1fr 1fr; }
  .inspiration-grid figure:first-child { grid-column: 1 / -1; }
  .inspiration-grid figure:nth-child(2) { transform: none; }
}

@media (max-width: 620px) {
  .announcement { font-size: 9px; }
  .site-header { height: 70px; }
  .wordmark { font-size: 16px; }
  .nav-cta { padding: 9px 12px; }
  .hero { gap: 48px; padding-bottom: 65px; padding-top: 75px; }
  .hero-facts { grid-template-columns: 1fr 1fr; }
  .intro, .inventory-section, .handling, .contact, .image-story { padding-bottom: 75px; padding-top: 75px; }
  .inventory-grid { margin-top: 55px; }
  .inventory-row { gap: 12px; grid-template-columns: 124px 1fr 38px; }
  .inventory-label span { font-size: 10px; }
  .inventory-row > strong { font-size: 13px; }
  .handling-grid { grid-template-columns: 1fr; }
  .handling article { border-bottom: 1px solid var(--line); min-height: 205px; }
  .inspiration-grid { grid-template-columns: 1fr; }
  .inspiration-grid figure:first-child { grid-column: auto; }
  .inspiration-grid img, .inspiration-grid figure:nth-child(2) img { aspect-ratio: 4 / 3; max-height: none; }
  .legal-line, footer { align-items: center; flex-direction: column; gap: 15px; }
  footer { text-align: center; }
}

@media (prefers-reduced-motion: no-preference) {
  .bar-track span { transition: width .8s ease; }
}

:focus-visible { outline: 3px solid var(--yellow); outline-offset: 3px; }
