@font-face {
  font-family: "Fraunces";
  src: url("fonts/Fraunces.woff2") format("woff2");
  font-style: normal;
  font-weight: 100 900;
  font-display: swap;
}

@font-face {
  font-family: "Manrope";
  src: url("fonts/Manrope.woff2") format("woff2");
  font-style: normal;
  font-weight: 200 800;
  font-display: swap;
}

:root {
  color-scheme: light;
  --font-display: "Fraunces";
  --font-sans: "Manrope";
  --paper: #f8f3e9;
  --paper-deep: #efe5d5;
  --ink: #261c18;
  --muted: #75675e;
  --blue: #2f6f91;
  --blue-deep: #245772;
  --blue-soft: #dbeaf0;
  --butter: #e8c99f;
  --line: rgba(38, 28, 24, 0.16);
  --image-shadow: 0 24px 70px rgba(68, 39, 25, 0.13);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-sans), sans-serif;
  text-rendering: optimizeLegibility;
}

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

img,
video {
  display: block;
}

button,
input,
select,
textarea {
  font: inherit;
}

/* Shape rule: buttons are pills, framed media is 16px, full-bleed media stays sharp. */
.hero {
  position: relative;
  min-height: 100dvh;
  overflow: hidden;
  background: #211817;
  color: #fff9ef;
}

.hero-media {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 54%;
  filter: saturate(0.83) contrast(1.06);
  transform: scale(1.02);
  animation: hero-breathe 14s ease-out both;
}

.hero-shade {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 53%, rgba(16, 18, 19, 0.12) 0%, rgba(16, 18, 19, 0.45) 72%),
    linear-gradient(0deg, rgba(12, 14, 15, 0.64) 0%, rgba(12, 14, 15, 0.1) 57%);
}

.site-header {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  width: min(100% - 48px, 1400px);
  height: 78px;
  margin: 0 auto;
  border-bottom: 1px solid rgba(255, 249, 239, 0.24);
}

.brand {
  display: inline-flex;
  width: 174px;
}

.brand img {
  width: 100%;
  height: auto;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
  font-size: 0.77rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.desktop-nav a,
.header-contact {
  position: relative;
}

.desktop-nav a::after,
.header-contact::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 300ms cubic-bezier(0.16, 1, 0.3, 1);
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after,
.header-contact:hover::after,
.header-contact:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-contact {
  justify-self: end;
  font-size: 0.82rem;
  font-weight: 750;
}

.mobile-menu {
  display: none;
}

.hero-content {
  position: absolute;
  z-index: 1;
  top: 53%;
  left: 50%;
  width: min(900px, calc(100% - 48px));
  text-align: center;
  transform: translate(-50%, -50%);
  animation: hero-content-in 900ms 160ms both cubic-bezier(0.16, 1, 0.3, 1);
}

.hero-content .eyebrow {
  justify-content: center;
}

.hero-content .eyebrow::before {
  display: none;
}

.eyebrow {
  display: flex;
  align-items: center;
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 0.75rem;
  font-weight: 780;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow::before {
  display: none;
}

.eyebrow.light {
  color: #fff9ef;
}

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

h1,
h2,
h3 {
  font-family: var(--font-display), serif;
  font-weight: 480;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 840px;
  margin: 0 auto;
  font-size: clamp(3.45rem, 6.5vw, 6.9rem);
  line-height: 0.94;
}

.hero-copy {
  max-width: 545px;
  margin: 20px auto 0;
  color: rgba(255, 249, 239, 0.84);
  font-size: clamp(1rem, 1.35vw, 1.16rem);
  line-height: 1.55;
}

.hero-actions,
.retailer-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 24px;
}

.hero-actions {
  justify-content: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 0.82rem;
  font-weight: 780;
  letter-spacing: 0.02em;
  transition: transform 240ms cubic-bezier(0.16, 1, 0.3, 1), background-color 240ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button:active {
  transform: translateY(1px) scale(0.98);
}

.button-primary {
  background: var(--blue);
  color: #fff9ef;
}

.button-primary:hover {
  background: var(--blue-deep);
}

.button-ghost {
  border-color: rgba(255, 249, 239, 0.55);
  color: #fff9ef;
  backdrop-filter: blur(8px);
}

.button-ghost:hover {
  background: rgba(255, 249, 239, 0.12);
}

.hero .button-primary,
.hero .button-ghost {
  min-height: 46px;
  border-color: rgba(255, 249, 239, 0.34);
  background: rgba(255, 249, 239, 0.09);
  color: #fff9ef;
  backdrop-filter: blur(9px);
}

.hero .button-primary:hover,
.hero .button-ghost:hover {
  background: rgba(255, 249, 239, 0.16);
}

.stockists {
  display: grid;
  grid-template-columns: minmax(270px, 0.8fr) minmax(0, 1.6fr);
  gap: clamp(60px, 9vw, 150px);
  align-items: end;
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  padding: 84px 0 78px;
  border-bottom: 1px solid var(--line);
}

.stockists-intro h2 {
  max-width: 540px;
  margin-bottom: 20px;
  font-size: clamp(2.5rem, 4.2vw, 4.7rem);
  line-height: 0.98;
}

.stockists-intro > p:last-child {
  max-width: 54ch;
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.7;
}

.logo-wall {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  align-items: center;
  gap: 14px;
}

.stockist-logo {
  display: flex;
  min-height: 132px;
  align-items: center;
  justify-content: center;
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.56);
}

.stockist-logo img {
  width: 100%;
  max-width: 170px;
  max-height: 74px;
  object-fit: contain;
}

.products {
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  padding: 126px 0 148px;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.5fr) minmax(250px, 0.55fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 64px;
}

.section-heading h2 {
  max-width: 880px;
  margin-bottom: 0;
  font-size: clamp(3.4rem, 6.3vw, 6.6rem);
  line-height: 0.94;
}

.section-heading > p {
  margin-bottom: 8px;
  color: var(--muted);
  line-height: 1.7;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 22px;
}

.product-card {
  grid-column: span 3;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.42);
}

.product-card:nth-child(n + 5) {
  grid-column: span 4;
}

.product-image {
  position: relative;
  display: flex;
  min-height: clamp(270px, 26vw, 390px);
  align-items: center;
  justify-content: center;
  overflow: hidden;
  padding: clamp(28px, 4vw, 58px) clamp(22px, 3vw, 48px);
  background: #edf3f4;
}

.product-card:nth-child(even) .product-image {
  background: #f4efe7;
}

.product-image > span {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 1;
  color: rgba(36, 34, 30, 0.52);
  font-size: 0.68rem;
  font-weight: 780;
  letter-spacing: 0.1em;
}

.product-image img {
  width: 100%;
  max-width: 430px;
  max-height: 280px;
  object-fit: contain;
  mix-blend-mode: multiply;
  transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
}

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

.product-info {
  min-height: 145px;
  padding: 25px 24px 28px;
}

.product-info h3 {
  margin-bottom: 10px;
  font-size: clamp(1.8rem, 2.5vw, 2.65rem);
  line-height: 0.98;
}

.product-info p {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  line-height: 1.55;
}

.story {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(340px, 0.8fr);
  gap: clamp(70px, 10vw, 156px);
  align-items: center;
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  padding: 40px 0 164px;
}

.story-collage {
  position: relative;
  min-height: 760px;
}

.story-image {
  position: absolute;
  overflow: hidden;
  border-radius: 16px;
  box-shadow: var(--image-shadow);
}

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

.story-image-main {
  inset: 0 18% 8% 0;
}

.story-image-small {
  right: 0;
  bottom: 0;
  width: 50%;
  height: 39%;
  border: 8px solid var(--paper);
}

.story-copy h2 {
  margin-bottom: 30px;
  font-size: clamp(3.2rem, 5.2vw, 5.5rem);
  line-height: 0.96;
}

.story-copy > p:not(.eyebrow) {
  max-width: 54ch;
  margin-bottom: 14px;
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.72;
}

.story-facts {
  display: grid;
  grid-template-columns: 1fr 1fr 1.15fr;
  gap: 0;
  margin-top: 46px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.story-facts > div {
  padding-right: 20px;
}

.story-facts > div + div {
  padding-left: 20px;
  border-left: 1px solid var(--line);
}

.story-facts strong,
.story-facts span {
  display: block;
}

.story-facts strong {
  margin-bottom: 8px;
  color: var(--ink);
  font-family: var(--font-display), serif;
  font-size: clamp(1.7rem, 2.5vw, 2.5rem);
  font-weight: 560;
  letter-spacing: -0.04em;
}

.story-facts span {
  color: var(--muted);
  font-size: 0.72rem;
  line-height: 1.45;
}

.craft-note {
  position: relative;
  min-height: min(84vh, 820px);
  overflow: hidden;
  background: #211817;
  color: #fff9ef;
}

.craft-note > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 57%;
}

.craft-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(22, 13, 11, 0.83), rgba(22, 13, 11, 0.18) 62%, rgba(22, 13, 11, 0.08));
}

.craft-copy {
  position: absolute;
  bottom: clamp(60px, 10vh, 110px);
  left: max(24px, calc((100vw - 1400px) / 2));
  width: min(720px, calc(100% - 48px));
}

.craft-copy h2 {
  margin-bottom: 24px;
  font-size: clamp(3.3rem, 6.4vw, 6.6rem);
  line-height: 0.94;
}

.craft-copy > p:last-child {
  max-width: 54ch;
  margin-bottom: 0;
  color: rgba(255, 249, 239, 0.82);
  line-height: 1.7;
}

.retailers {
  display: grid;
  grid-template-columns: 0.7fr 1.8fr;
  gap: clamp(70px, 12vw, 190px);
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  padding: 126px 0 138px;
  border-bottom: 1px solid var(--line);
}

.retailer-kicker > p:last-child {
  max-width: 20ch;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.retailer-message h2 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: clamp(3.8rem, 7vw, 7.2rem);
  line-height: 0.9;
}

.retailer-message > p {
  max-width: 57ch;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.7;
}

.text-link {
  padding: 13px 6px;
  border-bottom: 1px solid var(--ink);
  font-size: 0.84rem;
  font-weight: 780;
}

.footer {
  display: grid;
  grid-template-columns: 1.7fr 0.8fr 0.8fr;
  gap: 60px;
  width: min(100% - 48px, 1400px);
  margin: 0 auto;
  padding: 72px 0 34px;
}

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

.footer-brand p {
  max-width: 34ch;
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.65;
}

.footer-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
}

.footer-column h3 {
  margin-bottom: 8px;
  color: var(--muted);
  font-family: var(--font-sans), sans-serif;
  font-size: 0.7rem;
  font-weight: 780;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.footer-column p {
  margin-bottom: 0;
}

.footer-column a {
  text-decoration: underline;
  text-decoration-color: transparent;
  text-underline-offset: 4px;
  transition: text-decoration-color 200ms ease;
}

.footer-column a:hover {
  text-decoration-color: currentColor;
}

.copyright {
  grid-column: 1 / -1;
  margin: 54px 0 0;
  color: var(--muted);
  font-size: 0.7rem;
}

.credit-link {
  color: inherit;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.credit-link:hover {
  color: var(--ink);
}

:focus-visible {
  outline: 2px solid var(--blue);
  outline-offset: 4px;
}

.hero :focus-visible,
.craft-note :focus-visible {
  outline-color: var(--butter);
}

@keyframes content-in {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes hero-content-in {
  from {
    opacity: 0;
    transform: translate(-50%, calc(-50% + 24px));
  }
  to {
    opacity: 1;
    transform: translate(-50%, -50%);
  }
}

@keyframes hero-breathe {
  from {
    transform: scale(1.055);
  }
  to {
    transform: scale(1.02);
  }
}

@keyframes reveal-in {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@supports (animation-timeline: view()) {
  .reveal {
    animation: reveal-in both linear;
    animation-timeline: view();
    animation-range: entry 6% cover 28%;
  }
}

@media (max-width: 980px) {
  .stockists,
  .story,
  .retailers {
    gap: 56px;
  }

  .story-facts {
    grid-template-columns: 1fr;
  }

  .story-facts > div {
    display: grid;
    grid-template-columns: 0.55fr 1fr;
    align-items: baseline;
    padding: 10px 0;
  }

  .story-facts > div + div {
    padding-left: 0;
    border-left: 0;
  }

  .product-card,
  .product-card:nth-child(n + 5) {
    grid-column: span 6;
  }

  .product-card:last-child {
    grid-column: 4 / span 6;
  }
}

@media (max-width: 760px) {
  .site-header {
    grid-template-columns: 1fr auto;
    width: calc(100% - 36px);
    height: 70px;
  }

  .brand {
    width: 148px;
  }

  .desktop-nav,
  .header-contact {
    display: none;
  }

  .mobile-menu {
    position: relative;
    display: block;
    justify-self: end;
  }

  .mobile-menu summary {
    cursor: pointer;
    list-style: none;
    font-size: 0.78rem;
    font-weight: 780;
    letter-spacing: 0.05em;
    text-transform: uppercase;
  }

  .mobile-menu summary::-webkit-details-marker {
    display: none;
  }

  .mobile-menu nav {
    position: absolute;
    top: 34px;
    right: 0;
    display: grid;
    width: min(76vw, 280px);
    gap: 2px;
    padding: 14px;
    border: 1px solid rgba(255, 249, 239, 0.28);
    border-radius: 16px;
    background: rgba(34, 23, 20, 0.96);
    box-shadow: 0 18px 50px rgba(20, 12, 11, 0.28);
  }

  .mobile-menu nav a {
    padding: 11px 10px;
    font-size: 0.9rem;
  }

  .hero-media {
    object-position: 58% center;
  }

  .hero-shade {
    background:
      radial-gradient(circle at 50% 48%, rgba(12, 14, 15, 0.12), rgba(12, 14, 15, 0.53) 74%),
      linear-gradient(0deg, rgba(12, 14, 15, 0.76), rgba(12, 14, 15, 0.06) 72%);
  }

  .hero-content {
    top: 52%;
    left: 50%;
    width: calc(100% - 36px);
  }

  h1 {
    font-size: clamp(3.05rem, 15vw, 5.1rem);
  }

  .hero-copy {
    max-width: 32ch;
    margin-top: 14px;
  }

  .hero-actions {
    margin-top: 20px;
  }

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

  .stockists,
  .story,
  .retailers,
  .section-heading {
    grid-template-columns: 1fr;
  }

  .stockists {
    width: calc(100% - 36px);
    gap: 38px;
    padding: 68px 0 64px;
  }

  .logo-wall {
    grid-template-columns: 1fr 1fr;
    gap: 10px;
  }

  .stockist-logo {
    min-height: 108px;
    justify-content: center;
    padding: 20px;
  }

  .stockist-logo img {
    max-width: 135px;
    max-height: 58px;
  }

  .products {
    width: calc(100% - 36px);
    padding: 88px 0 108px;
  }

  .section-heading {
    gap: 24px;
    margin-bottom: 42px;
  }

  .section-heading h2 {
    font-size: clamp(3rem, 13vw, 4.3rem);
  }

  .section-heading > p {
    max-width: 48ch;
  }

  .product-grid {
    gap: 14px;
  }

  .product-card,
  .product-card:nth-child(n + 5),
  .product-card:last-child {
    grid-column: 1 / -1;
  }

  .product-image {
    min-height: 310px;
  }

  .product-image img {
    max-height: 250px;
  }

  .product-info {
    min-height: 0;
    padding: 22px 20px 25px;
  }

  .story {
    width: calc(100% - 36px);
    padding: 10px 0 106px;
  }

  .story-collage {
    min-height: 590px;
  }

  .story-image-main {
    inset: 0 11% 9% 0;
  }

  .story-image-small {
    width: 56%;
    height: 35%;
    border-width: 6px;
  }

  .story-copy h2 {
    font-size: clamp(3.05rem, 13vw, 4.6rem);
  }

  .story-facts {
    margin-top: 34px;
  }

  .craft-note {
    min-height: 76vh;
  }

  .craft-note > img {
    object-position: 58% center;
  }

  .craft-shade {
    background: linear-gradient(0deg, rgba(22, 13, 11, 0.88), rgba(22, 13, 11, 0.12) 76%);
  }

  .craft-copy {
    bottom: 46px;
    left: 18px;
    width: calc(100% - 36px);
  }

  .craft-copy h2 {
    font-size: clamp(3rem, 13vw, 4.5rem);
  }

  .retailers {
    width: calc(100% - 36px);
    gap: 38px;
    padding: 84px 0 96px;
  }

  .retailer-message h2 {
    font-size: clamp(3.2rem, 14vw, 5rem);
  }

  .footer {
    grid-template-columns: 1fr;
    gap: 40px;
    width: calc(100% - 36px);
    padding-top: 56px;
  }

  .copyright {
    grid-column: auto;
    margin-top: 16px;
  }
}

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

  .hero-media,
  .hero-content,
  .reveal {
    animation: none;
  }

  .button,
  .product-image img,
  .desktop-nav a::after,
  .header-contact::after,
  .footer-column a {
    transition: none;
  }
}
