@font-face {
  font-family: Jakarta;
  src: url("/assets/jakarta.ttf") format("truetype");
  font-display: swap;
}
:root {
  color-scheme: light;
  --paper: #f6f1ea;
  --ink: #292724;
  --green: #315b52;
  --line: #d9d3ca;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
  scroll-padding-top: 100px;
}
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Jakarta, Arial, sans-serif;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  color: inherit;
  cursor: pointer;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
figure {
  margin: 0;
}
h1,
h2,
h3,
p {
  margin: 0;
}
button,
a {
  -webkit-tap-highlight-color: transparent;
}
a:focus-visible,
button:focus-visible {
  outline: 3px solid var(--green);
  outline-offset: 6px;
}
.header {
  height: 96px;
  max-width: 1440px;
  padding: 0 56px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 50px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 29px;
  font-weight: 700;
  letter-spacing: -1.4px;
}
.brand img {
  width: 30px;
}
.header nav {
  display: flex;
  gap: 32px;
  margin-left: auto;
  font-size: 14px;
}
.header button {
  background: transparent;
  border: 1px solid var(--line);
  border-radius: 4px;
  min-width: 44px;
  min-height: 44px;
}
.hero {
  max-width: 1440px;
  margin: 26px auto 110px;
  padding: 0 56px;
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 64px;
  align-items: center;
}
.eyebrow {
  text-transform: uppercase;
  font-size: 11px;
  letter-spacing: 2.4px;
  line-height: 1.8;
  color: #625d56;
}
.intro h1 {
  font-size: clamp(48px, 5.7vw, 84px);
  line-height: 1.04;
  letter-spacing: -4px;
  font-weight: 500;
  margin: 24px 0;
}
.lead {
  font-size: 17px;
  line-height: 1.8;
  max-width: 350px;
  color: #625d56;
}
.button {
  display: inline-flex;
  gap: 40px;
  align-items: center;
  background: var(--green);
  color: white;
  border-radius: 5px;
  padding: 19px 24px;
  margin-top: 30px;
  font-size: 14px;
  transition:
    transform 0.2s,
    background 0.2s;
}
.button:hover {
  transform: translateY(-2px);
  background: #25463f;
}
.availability {
  font-size: 12px;
  color: #625d56;
  margin-top: 16px;
}
.hero-media {
  position: relative;
  padding-bottom: 90px;
}
.hero-media > img {
  aspect-ratio: 1/1.05;
  object-fit: cover;
  border-radius: 7px;
}
.inset {
  position: absolute;
  width: 38%;
  right: -20px;
  bottom: 0;
  background: #fffefc;
  padding: 8px 8px 12px;
  box-shadow: 0 12px 34px #29272418;
  border-radius: 5px;
  transform: rotate(3deg);
}
.inset img {
  aspect-ratio: 3/4;
  object-fit: contain;
}
.inset span {
  display: block;
  font-size: 11px;
  padding: 10px 5px 0;
}
.section {
  max-width: 1440px;
  padding: 0 56px;
  margin: 100px auto;
}
.section-head {
  display: flex;
  align-items: end;
  gap: 40px;
  justify-content: space-between;
  margin-bottom: 30px;
}
.section-head p:not(.eyebrow) {
  max-width: 370px;
  font-size: 14px;
  line-height: 1.9;
  color: #625d56;
}
h2 {
  font-size: clamp(30px, 3.3vw, 48px);
  line-height: 1.2;
  font-weight: 500;
  letter-spacing: -1.8px;
  margin-top: 14px;
}
.space-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 24px;
}
.space-grid img {
  height: 400px;
  object-fit: cover;
  border-radius: 6px;
}
figcaption {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding-top: 17px;
  font-size: 16px;
}
figcaption span + span {
  font-size: 12px;
  color: #625d56;
  padding-top: 3px;
}
.outfit-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  max-width: 950px;
  margin: auto;
}
.outfit-grid img {
  max-height: 660px;
  object-fit: contain;
  background: #e9e6df;
  border-radius: 6px;
}
.details {
  border-top: 1px solid var(--line);
  padding-top: 60px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
.details ol {
  list-style: none;
  margin: 0;
  padding: 0;
}
.details li {
  display: flex;
  gap: 28px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}
.details li > span {
  font-size: 12px;
  color: #625d56;
  padding-top: 4px;
}
.details h3 {
  font-size: 18px;
  font-weight: 500;
}
.details li p {
  font-size: 14px;
  color: #625d56;
  line-height: 1.8;
  margin-top: 8px;
}
footer {
  max-width: 1328px;
  margin: 0 auto;
  padding: 36px 0 40px;
  border-top: 1px solid var(--line);
  display: flex;
  gap: 24px;
  align-items: center;
}
footer .brand {
  font-size: 24px;
}
footer p {
  font-size: 12px;
  margin: 0;
}
footer .note {
  margin-left: auto;
  color: #625d56;
}
footer small {
  font-size: 11px;
  color: #625d56;
}
