:root {
  --cream: #f7f1e6;
  --paper: #fffdf8;
  --burgundy: #561722;
  --burgundy-dark: #360b13;
  --sage: #8b9783;
  --sage-pale: #e7ebe1;
  --ink: #2c211e;
  --muted: #665b56;
  --line: #e7dbcd;
  --shadow: 0 22px 60px rgba(54, 11, 19, 0.12);
  --serif: Georgia, "Times New Roman", serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 92px;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: inherit;
}

.wrap {
  width: min(1200px, calc(100% - 48px));
  margin: 0 auto;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 14px;
  color: #fff;
  background: var(--burgundy);
  transform: translateY(-150%);
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 30;
  border-bottom: 1px solid rgba(86, 23, 34, 0.09);
  background: rgba(247, 241, 230, 0.93);
  backdrop-filter: blur(18px);
}

.nav {
  min-height: 88px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--burgundy);
  font-size: 15px;
  font-weight: 850;
  letter-spacing: 0.12em;
  line-height: 1.15;
  text-decoration: none;
}

.brand img {
  width: 62px;
  height: 62px;
  border-radius: 50%;
  box-shadow: 0 7px 18px rgba(54, 11, 19, 0.13);
}

.brand small {
  display: block;
  margin-top: 5px;
  color: var(--sage);
  font-size: 9px;
  letter-spacing: 0.2em;
}

nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

nav a {
  font-size: 14px;
  font-weight: 750;
  text-decoration: none;
}

nav > a:not(.button) {
  position: relative;
}

nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--burgundy);
  content: "";
  transform: scaleX(0);
  transition: transform 180ms ease;
}

nav > a:not(.button):hover::after,
nav > a:not(.button):focus-visible::after {
  transform: scaleX(1);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 24px;
  border: 1px solid var(--burgundy);
  border-radius: 999px;
  color: #fff;
  background: var(--burgundy);
  font: 800 14px/1 var(--sans);
  text-decoration: none;
  cursor: pointer;
  transition: background 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--burgundy-dark);
  box-shadow: 0 10px 24px rgba(54, 11, 19, 0.16);
  transform: translateY(-1px);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
}

.eyebrow {
  margin: 0 0 17px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

h1,
h2,
h3,
blockquote {
  color: var(--burgundy);
  font-family: var(--serif);
  font-weight: 500;
}

h2 {
  margin: 0;
  font-size: clamp(42px, 4.4vw, 62px);
  line-height: 1.04;
  letter-spacing: -0.025em;
}

.hero {
  padding: 76px 0 106px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
  align-items: center;
  gap: clamp(48px, 6vw, 84px);
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.hero h1 {
  max-width: 590px;
  margin: 0 0 27px;
  font-size: clamp(48px, 4.5vw, 64px);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero h1 span {
  display: block;
}

.lead {
  max-width: 575px;
  margin: 0 0 30px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: var(--burgundy);
  font-size: 14px;
  font-weight: 800;
  text-underline-offset: 5px;
}

.text-link span {
  transition: transform 180ms ease;
}

.text-link:hover span,
.text-link:focus-visible span {
  transform: translateX(3px);
}

.hero-visual {
  position: relative;
  width: 100%;
  max-width: 650px;
  justify-self: end;
}

.hero-photo {
  width: 100%;
  height: 520px;
  aspect-ratio: 1.35 / 1;
  border-radius: 34px;
  object-fit: cover;
  object-position: 62% center;
  box-shadow: var(--shadow);
}

.hero-seal {
  position: absolute;
  bottom: -37px;
  left: -42px;
  width: 128px;
  padding: 7px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 15px 35px rgba(54, 11, 19, 0.18);
}

.hero-seal img,
.story-mark img,
.footer-brand img {
  width: 100%;
  border-radius: 50%;
}

.collection,
.wholesale {
  padding: 105px 0 112px;
}

.section-heading {
  display: grid;
  grid-template-columns: 1fr 0.78fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 45px;
}

.section-heading > p,
.wholesale-copy > p {
  margin: 0;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.68;
}

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

.product-card {
  min-width: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 26px;
  background: var(--paper);
  box-shadow: 0 12px 32px rgba(54, 11, 19, 0.055);
}

.product-image {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1.08 / 1;
  background: #eee5d8;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.7, 0.3, 1);
}

.product-card:hover .product-image img {
  transform: scale(1.025);
}

.badge {
  position: absolute;
  top: 18px;
  left: 18px;
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  color: #fff;
  background: var(--sage);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  box-shadow: 0 7px 20px rgba(44, 33, 30, 0.13);
}

.badge-available {
  background: var(--burgundy);
}

.product-copy {
  position: relative;
  min-height: 255px;
  padding: 26px 26px 30px;
}

.product-number {
  position: absolute;
  top: 22px;
  right: 24px;
  margin: 0;
  color: #c6b9aa;
  font: 500 24px/1 var(--serif);
}

.product-copy h3 {
  margin: 0 48px 10px 0;
  font-size: 28px;
  line-height: 1.1;
}

.product-copy > p:not(.product-number) {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.58;
}

.product-copy .text-link {
  margin-top: 24px;
}

.story {
  padding: 112px 0;
  background: linear-gradient(120deg, var(--sage-pale), #f2ede3 72%);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
  align-items: center;
  gap: clamp(55px, 7vw, 94px);
}

.story-visual {
  position: relative;
  padding-bottom: 38px;
}

.story-photo {
  width: 100%;
  height: 620px;
  aspect-ratio: 1.08 / 1;
  border-radius: 34px;
  object-fit: cover;
  object-position: 51% center;
  box-shadow: var(--shadow);
}

.story-mark {
  position: absolute;
  right: -28px;
  bottom: 0;
  width: 142px;
  padding: 7px;
  border-radius: 50%;
  background: var(--paper);
  box-shadow: 0 16px 34px rgba(54, 11, 19, 0.17);
}

.story-copy h2 {
  max-width: 600px;
  margin-bottom: 27px;
  font-size: clamp(40px, 4vw, 57px);
}

.story-copy > p:not(.eyebrow) {
  margin: 0 0 16px;
  color: #554b46;
  font-size: 16px;
  line-height: 1.68;
}

blockquote {
  margin: 26px 0 0;
  padding-top: 24px;
  border-top: 1px solid rgba(86, 23, 34, 0.19);
  font-size: 24px;
  line-height: 1.34;
}

.order {
  padding: 90px 0;
  color: #fff;
  background: var(--burgundy-dark);
}

.order-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: center;
  gap: 72px;
}

.eyebrow-light {
  color: #c6baad;
}

.order h2 {
  color: #fff;
}

.order-note {
  max-width: 640px;
  margin: 22px 0 0;
  color: #eadfd8;
  font-size: 17px;
  line-height: 1.7;
}

.contact-card {
  overflow: hidden;
  border-radius: 24px;
  background: var(--paper);
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.18);
}

.contact-row {
  position: relative;
  display: grid;
  gap: 6px;
  padding: 24px 60px 24px 26px;
  color: var(--ink);
  text-decoration: none;
}

.contact-row + .contact-row {
  border-top: 1px solid var(--line);
}

.contact-row > span:first-child {
  color: #8c7f77;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.contact-row strong {
  color: var(--burgundy);
  font-size: 18px;
  overflow-wrap: anywhere;
}

.contact-arrow {
  position: absolute;
  top: 50%;
  right: 25px;
  color: var(--sage);
  font-size: 21px;
  transform: translateY(-50%);
}

.wholesale-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.76fr) minmax(0, 1.24fr);
  align-items: start;
  gap: clamp(54px, 7vw, 90px);
}

.wholesale-copy {
  position: sticky;
  top: 128px;
}

.wholesale-copy h2 {
  margin-bottom: 24px;
}

.direct-contact {
  margin-top: 34px !important;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  font-size: 14px !important;
}

.direct-contact a {
  color: var(--burgundy);
  font-weight: 800;
  overflow-wrap: anywhere;
}

form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 20px;
  padding: 33px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: var(--paper);
  box-shadow: 0 16px 44px rgba(54, 11, 19, 0.065);
}

.field {
  min-width: 0;
}

.field-full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 8px;
  color: #5f544e;
  font-size: 12px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #d8cabd;
  border-radius: 12px;
  outline: 0;
  color: var(--ink);
  background: #fff;
  font: 16px/1.3 var(--sans);
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

input,
select {
  height: 49px;
  padding: 0 13px;
}

textarea {
  min-height: 142px;
  padding: 13px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(86, 23, 34, 0.11);
}

.form-note {
  margin: -3px 0 0;
  color: #7c7069;
  font-size: 12px;
  line-height: 1.5;
}

form .button {
  width: 100%;
}

footer {
  padding: 38px 0;
  color: #f7f1e6;
  background: #27080e;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 46px;
}

.footer-brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
}

.footer-brand img {
  width: 68px;
  height: 68px;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand strong {
  font-size: 14px;
  letter-spacing: 0.13em;
}

.footer-brand small {
  margin-top: 6px;
  color: #cfc2b9;
  font-size: 11px;
}

.footer-contact {
  display: grid;
  gap: 8px;
  font-size: 13px;
}

.footer-contact a {
  text-underline-offset: 4px;
}

footer p {
  margin: 0;
  color: #cfc2b9;
  font-size: 12px;
  line-height: 1.55;
  text-align: right;
}

@media (max-width: 980px) {
  .hero-grid,
  .story-grid,
  .wholesale-grid {
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(45px, 5.7vw, 56px);
  }

  .products {
    gap: 18px;
  }

  .product-copy {
    min-height: 270px;
    padding-inline: 20px;
  }

  .product-copy h3 {
    font-size: 25px;
  }
}

@media (max-width: 820px) {
  .wrap {
    width: min(100% - 36px, 680px);
  }

  .nav {
    min-height: 78px;
  }

  .brand img {
    width: 52px;
    height: 52px;
  }

  nav a:not(.button) {
    display: none;
  }

  .hero {
    padding: 54px 0 82px;
  }

  .hero-grid,
  .story-grid,
  .order-grid,
  .wholesale-grid,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 52px;
  }

  .hero h1 {
    max-width: 620px;
    font-size: clamp(43px, 8vw, 58px);
  }

  .hero-visual {
    max-width: none;
  }

  .hero-photo {
    height: 500px;
  }

  .hero-seal {
    left: 18px;
    width: 108px;
  }

  .collection,
  .wholesale,
  .story {
    padding: 82px 0;
  }

  .section-heading {
    gap: 20px;
    margin-bottom: 34px;
  }

  .products {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .product-card {
    display: grid;
    grid-template-columns: minmax(220px, 0.9fr) minmax(0, 1.1fr);
  }

  .product-image {
    height: 100%;
    min-height: 330px;
    aspect-ratio: auto;
  }

  .product-copy {
    min-height: 0;
    padding: 28px;
  }

  .story-visual {
    padding: 0 28px 34px 0;
  }

  .story-mark {
    right: 0;
    width: 125px;
  }

  .order-grid {
    gap: 36px;
  }

  .wholesale-copy {
    position: static;
  }

  .footer-grid {
    grid-template-columns: 1fr auto;
  }

  footer p {
    grid-column: 1 / -1;
    text-align: left;
  }
}

@media (max-width: 560px) {
  .wrap {
    width: min(100% - 28px, 500px);
  }

  .site-header .wrap {
    width: min(100% - 22px, 500px);
  }

  .brand {
    gap: 10px;
    font-size: 12px;
  }

  .brand img {
    width: 48px;
    height: 48px;
  }

  .brand small {
    font-size: 7px;
  }

  .button-small {
    min-height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }

  nav {
    gap: 0;
  }

  .hero {
    padding-top: 46px;
  }

  .hero h1 {
    margin-bottom: 22px;
    font-size: clamp(38px, 11.8vw, 48px);
    line-height: 1.04;
  }

  .hero h1 span:first-child {
    white-space: normal;
  }

  .lead {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-photo {
    height: 380px;
    min-height: 0;
    aspect-ratio: 0.9 / 1;
    border-radius: 26px;
    object-position: 67% center;
  }

  .hero-seal {
    bottom: -29px;
    width: 94px;
  }

  h2,
  .story-copy h2 {
    font-size: clamp(38px, 11vw, 48px);
  }

  .product-card {
    display: block;
  }

  .product-image {
    min-height: 0;
    aspect-ratio: 1.08 / 1;
  }

  .product-copy {
    min-height: 235px;
  }

  .story-grid {
    gap: 42px;
  }

  .story-visual {
    padding-right: 18px;
  }

  .story-photo {
    height: 430px;
    min-height: 0;
    aspect-ratio: 0.9 / 1;
  }

  .story-mark {
    width: 105px;
  }

  .order {
    padding: 76px 0;
  }

  .order-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .contact-row {
    padding-left: 20px;
  }

  .contact-row strong {
    font-size: 16px;
  }

  form {
    grid-template-columns: 1fr;
    gap: 17px;
    padding: 22px;
  }

  .field-full {
    grid-column: auto;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
