@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-medium.woff") format("woff");
  font-style: normal;
  font-weight: 500;
  font-display: swap;
}

@font-face {
  font-family: "Montserrat";
  src: url("assets/fonts/montserrat-semibold.woff") format("woff");
  font-style: normal;
  font-weight: 600;
  font-display: swap;
}

@font-face {
  font-family: "Oswald";
  src: url("assets/fonts/oswald-regular.woff") format("woff");
  font-style: normal;
  font-weight: 400;
  font-display: swap;
}

:root {
  --ivory: #f7f1ed;
  --paper: #fffdf9;
  --blush: #e8c5c3;
  --rose: #b75f69;
  --plum: #4d2936;
  --charcoal: #252322;
  --sage: #8b9a7c;
  --leaf: #385747;
  --sky: #c8dce0;
  --sun: #e4bd5c;
  --line: rgba(37, 35, 34, 0.18);
  --display: Cambria, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --serif: Cambria, "Palatino Linotype", "Book Antiqua", Georgia, serif;
  --sans: "Montserrat", "Segoe UI", sans-serif;
  --accent: "Oswald", "Arial Narrow", sans-serif;
  --header-height: 94px;
  --shell: min(1240px, calc(100% - 64px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--ivory);
  overflow-x: hidden;
}

body {
  width: 100%;
  max-width: 100%;
  margin: 0;
  color: var(--charcoal);
  background: var(--ivory);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  letter-spacing: 0;
  overflow-x: hidden;
}

body.is-menu-open,
body.is-dialog-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

button,
input {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--paper);
  color: var(--charcoal);
}

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

.visually-hidden {
  position: absolute !important;
  width: 1px !important;
  height: 1px !important;
  overflow: hidden !important;
  clip: rect(0 0 0 0) !important;
  clip-path: inset(50%) !important;
  white-space: nowrap !important;
}

.scroll-progress {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 180;
  height: 3px;
  pointer-events: none;
}

.scroll-progress span {
  display: block;
  width: 100%;
  height: 100%;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  will-change: transform;
}

.section-shell {
  width: var(--shell);
  margin-inline: auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-family: var(--accent);
  font-size: 0.8rem;
  font-weight: 400;
  line-height: 1.2;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  letter-spacing: 0;
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 400;
  line-height: 1.07;
}

h2 {
  margin-bottom: 24px;
  font-size: 4.1rem;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 12px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  transition: background-color 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

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

.button-dark {
  background: var(--charcoal);
  color: var(--paper);
}

.button-dark:hover {
  background: var(--plum);
}

.button-outline {
  border-color: var(--charcoal);
  background: transparent;
  color: var(--charcoal);
}

.button-outline:hover {
  background: var(--charcoal);
  color: var(--paper);
}

.button-light {
  background: var(--paper);
  color: var(--plum);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding-block: 8px;
  color: var(--charcoal);
  font-size: 0.78rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.text-link span {
  font-size: 1.4rem;
  font-weight: 400;
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translateX(5px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 100;
  display: grid;
  width: 100%;
  height: var(--header-height);
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid var(--line);
  padding: 0 42px;
  background: var(--ivory);
  transition: background-color 200ms ease, border-color 200ms ease, color 200ms ease;
}

.site-header.is-scrolled,
.site-header.is-menu-open {
  border-color: var(--line);
  background: var(--ivory);
  color: var(--charcoal);
}

.wordmark {
  display: inline-flex;
  width: max-content;
  align-items: center;
  gap: 10px;
  color: var(--charcoal);
  text-decoration: none;
}

.header-monogram {
  width: 86px;
  height: 64px;
  flex: 0 0 auto;
  object-fit: contain;
}

.wordmark-copy {
  display: flex;
  flex-direction: column;
}

.wordmark-main {
  font-family: var(--display);
  color: var(--plum);
  font-size: 2rem;
  font-style: italic;
  line-height: 1.06;
}

.wordmark-sub {
  margin-top: 7px;
  font-family: var(--accent);
  font-size: 0.67rem;
  font-weight: 400;
  line-height: 1;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 34px;
  align-items: center;
}

.desktop-nav a,
.header-order {
  font-family: var(--accent);
  font-size: 0.82rem;
  font-weight: 400;
  text-decoration: none;
  text-transform: uppercase;
}

.desktop-nav a {
  position: relative;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  background: currentColor;
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-actions {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  gap: 22px;
}

.header-order {
  border-bottom: 1px solid currentColor;
  padding-bottom: 4px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.site-header.is-menu-open .menu-toggle span:first-child {
  transform: translateY(3.5px) rotate(45deg);
}

.site-header.is-menu-open .menu-toggle span:last-child {
  transform: translateY(-3.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: var(--header-height);
  right: 0;
  left: 0;
  display: grid;
  align-content: start;
  gap: 0;
  height: calc(100svh - var(--header-height));
  border-top: 1px solid var(--line);
  padding: 20px 24px 40px;
  background: var(--ivory);
}

.mobile-menu[hidden] {
  display: none;
}

.mobile-menu a {
  border-bottom: 1px solid var(--line);
  padding: 20px 0;
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.12;
  text-decoration: none;
}

.hero {
  position: relative;
  display: flex;
  min-height: 94svh;
  align-items: flex-end;
  overflow: hidden;
  background: #ddc2bd;
}

.hero-media,
.hero-media img,
.hero-wash {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media {
  overflow: hidden;
  transform-style: preserve-3d;
}

.hero-media img {
  object-fit: cover;
  object-position: 58% 46%;
  transform: scale(1.045);
  transition: transform 700ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.hero-wash {
  width: 56%;
  background: rgba(247, 241, 237, 0.79);
}

.hero-inner {
  position: relative;
  z-index: 2;
  width: min(720px, 54%);
  margin: 0 0 7svh max(32px, calc((100% - 1240px) / 2));
  padding-right: 30px;
}

.hero h1 {
  width: min(700px, 100%);
  margin-bottom: 12px;
  color: var(--plum);
  line-height: 1;
}

.hero-script {
  width: 100%;
  height: auto;
  transform: translateX(-1.1%);
}

.hero-tagline {
  margin: 0 0 24px;
  color: var(--charcoal);
  font-family: var(--serif);
  font-size: 2.05rem;
  line-height: 1.1;
}

.hero-copy {
  max-width: 520px;
  margin: 0 0 30px;
  font-size: 0.95rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 26px;
  align-items: center;
}

.hero-note {
  position: absolute;
  right: 30px;
  bottom: 24px;
  z-index: 2;
  margin: 0;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  text-shadow: 0 1px 12px rgba(37, 35, 34, 0.5);
}

.promise-strip {
  display: block;
  min-height: 62px;
  align-items: center;
  overflow: hidden;
  padding: 0;
  background: var(--plum);
  color: var(--paper);
  font-family: var(--accent);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
  white-space: nowrap;
}

.promise-track {
  display: flex;
  width: max-content;
  min-height: 62px;
  align-items: center;
  animation: promise-marquee 28s linear infinite;
}

.promise-set {
  display: flex;
  flex-shrink: 0;
  align-items: center;
}

.promise-set span {
  padding-left: 42px;
}

.promise-set span::after {
  margin-left: 34px;
  color: var(--sun);
  content: "•";
}

@keyframes promise-marquee {
  to {
    transform: translateX(-50%);
  }
}

.intro {
  display: grid;
  grid-template-columns: 90px 1.2fr 0.8fr;
  gap: 58px;
  padding-block: 140px;
}

.intro-number {
  color: var(--rose);
  font-family: var(--serif);
  font-size: 1.2rem;
}

.intro-heading h2 {
  max-width: 700px;
  margin: 0;
}

.intro-copy {
  padding-top: 34px;
}

.intro-copy p {
  margin: 0 0 20px;
}

.collections {
  padding: 120px 0 130px;
  background: var(--paper);
}

.collections-head {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.collections-head h2 {
  margin: 0;
}

.collections-copy {
  max-width: 540px;
}

.collections-copy p {
  margin: 0 0 8px;
}

.collections-copy .text-link {
  margin-top: 14px;
}

.collection-controls {
  display: flex;
  gap: 6px;
  margin-top: 58px;
  overflow-x: auto;
  border-bottom: 1px solid var(--line);
  scrollbar-width: none;
}

.collection-controls::-webkit-scrollbar {
  display: none;
}

.collection-tab {
  flex: 0 0 auto;
  border: 0;
  border-bottom: 2px solid transparent;
  padding: 15px 22px 13px;
  background: transparent;
  color: rgba(37, 35, 34, 0.58);
  font-size: 0.76rem;
  font-weight: 700;
  text-transform: uppercase;
  cursor: pointer;
}

.collection-tab.is-active {
  border-color: var(--rose);
  color: var(--charcoal);
}

.collection-allergen {
  margin-top: 20px;
  color: rgba(37, 35, 34, 0.7);
  font-size: 0.82rem;
}

.collection-allergen strong {
  color: var(--plum);
}

.collection-allergen a {
  color: var(--plum);
  text-underline-offset: 3px;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 38px 18px;
  margin-top: 44px;
}

.product-card {
  min-width: 0;
}

.product-open {
  width: 100%;
  border: 0;
  padding: 0;
  background: transparent;
  color: inherit;
  text-align: left;
  cursor: pointer;
}

.product-image {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  background: #eee6df;
}

.product-image::after {
  position: absolute;
  inset: auto 12px 12px auto;
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  background: rgba(255, 253, 249, 0.92);
  color: var(--charcoal);
  content: "↗";
  font-size: 1rem;
  opacity: 0;
  transform: translateY(5px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 450ms ease;
}

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

.product-open:hover .product-image::after {
  opacity: 1;
  transform: translateY(0);
}

.product-meta {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 6px 12px;
  padding-top: 15px;
}

.product-meta h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.55rem;
  font-weight: 400;
  line-height: 1.1;
}

.product-price {
  margin: 2px 0 0;
  font-size: 0.9rem;
  font-weight: 700;
}

.product-kind {
  grid-column: 1 / -1;
  margin: 0;
  color: rgba(37, 35, 34, 0.62);
  font-family: var(--accent);
  font-size: 0.72rem;
  font-weight: 400;
  text-transform: uppercase;
}

.product-custom-note {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: rgba(77, 41, 54, 0.72);
  font-size: 0.72rem;
  line-height: 1.45;
}

.collection-more-wrap {
  display: flex;
  justify-content: center;
  margin-top: 52px;
}

.art-panel {
  position: relative;
  min-height: 82svh;
  overflow: hidden;
  background: #d7b082;
}

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

.art-caption {
  position: absolute;
  left: 7%;
  bottom: 8%;
  z-index: 2;
  max-width: 600px;
  padding: 28px 32px;
  background: rgba(255, 253, 249, 0.86);
}

.art-caption h2 {
  margin: 0;
  font-size: 3.5rem;
}

.craft {
  padding: 140px 0 110px;
  background: #e1e8df;
}

.craft-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.75fr;
  gap: 48px;
  align-items: center;
}

.craft-heading h2 {
  color: var(--leaf);
}

.craft-heading > p:not(.eyebrow) {
  max-width: 430px;
}

.origin-badge-wrap {
  position: relative;
  width: max-content;
  max-width: 100%;
  margin-top: 30px;
}

.origin-badge {
  display: inline-flex;
  min-height: 48px;
  max-width: 100%;
  align-items: center;
  gap: 12px;
  border: 1px solid rgba(56, 87, 71, 0.5);
  border-radius: 2px;
  padding: 9px 14px;
  background: rgba(255, 253, 249, 0.38);
  color: var(--leaf);
  font-family: var(--accent);
  font-size: 0.76rem;
  text-align: left;
  text-transform: uppercase;
  cursor: pointer;
}

.origin-badge img {
  width: 40px;
  height: 20px;
  flex: 0 0 auto;
  border: 1px solid rgba(37, 35, 34, 0.14);
}

.origin-tooltip {
  position: absolute;
  bottom: calc(100% + 12px);
  left: 0;
  z-index: 10;
  width: min(330px, calc(100vw - 48px));
  border: 1px solid rgba(56, 87, 71, 0.34);
  border-radius: 3px;
  padding: 18px;
  background: var(--paper);
  color: var(--charcoal);
  box-shadow: 0 18px 45px rgba(37, 35, 34, 0.18);
  opacity: 0;
  pointer-events: none;
  transform: translateY(8px);
  transition: opacity 180ms ease, transform 180ms ease;
}

.origin-tooltip::after {
  position: absolute;
  top: 100%;
  left: 24px;
  width: 12px;
  height: 12px;
  border-right: 1px solid rgba(56, 87, 71, 0.34);
  border-bottom: 1px solid rgba(56, 87, 71, 0.34);
  background: var(--paper);
  content: "";
  transform: translateY(-6px) rotate(45deg);
}

.origin-tooltip strong {
  color: var(--leaf);
  font-family: var(--serif);
  font-size: 1.2rem;
  font-weight: 400;
}

.origin-tooltip p {
  margin: 7px 0 0;
  font-size: 0.82rem;
  line-height: 1.55;
}

.origin-badge-wrap:hover .origin-tooltip,
.origin-badge-wrap:focus-within .origin-tooltip,
.origin-badge-wrap.is-open .origin-tooltip {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.craft-visual {
  aspect-ratio: 4 / 5;
  overflow: hidden;
}

.craft-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.craft-details {
  display: grid;
  gap: 0;
}

.detail-block {
  border-top: 1px solid rgba(56, 87, 71, 0.28);
  padding: 24px 0;
}

.detail-block:last-child {
  border-bottom: 1px solid rgba(56, 87, 71, 0.28);
}

.detail-block h3 {
  margin-bottom: 8px;
  color: var(--leaf);
  font-family: var(--serif);
  font-size: 1.45rem;
  font-weight: 400;
}

.detail-block p {
  margin: 0;
  font-size: 0.92rem;
}

.flavour-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: 80px;
  color: var(--leaf);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.flavour-line i {
  width: 4px;
  height: 4px;
  flex: 0 0 4px;
  border-radius: 50%;
  background: var(--rose);
}

.ocean-story {
  position: relative;
  display: grid;
  min-height: 760px;
  grid-template-columns: 1.25fr 0.75fr;
  background: var(--sky);
}

.ocean-story > img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
}

.ocean-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 70px;
  color: #17343a;
}

.ocean-copy .eyebrow {
  color: #365f68;
}

.ocean-copy h2 {
  font-size: 3.8rem;
}

.ocean-copy p:last-child {
  max-width: 440px;
}

.moments {
  padding: 130px 0 140px;
  background: var(--paper);
}

.moments-heading {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 80px;
  align-items: end;
}

.moments-heading h2 {
  max-width: 780px;
  margin-bottom: 0;
}

.moments-heading > p {
  max-width: 520px;
  margin: 0 0 8px;
}

.moments-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 42px 18px;
  margin-top: 62px;
}

.moment-item {
  min-width: 0;
}

.moment-image {
  aspect-ratio: 4 / 5;
  margin-bottom: 20px;
  overflow: hidden;
  background: #eee6df;
}

.moment-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.moment-item:hover .moment-image img {
  transform: scale(1.035);
}

.moment-number {
  margin: 0 0 8px;
  color: var(--rose);
  font-family: var(--accent);
  font-size: 0.72rem;
}

.moment-item h3 {
  margin-bottom: 8px;
  color: var(--plum);
  font-family: var(--display);
  font-size: 1.65rem;
  font-weight: 400;
  line-height: 1.12;
}

.moment-item > p:last-child {
  margin: 0;
  color: rgba(37, 35, 34, 0.7);
  font-size: 0.88rem;
}

.delivery {
  padding: 140px 0;
  background: var(--ivory);
}

.delivery-layout {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 110px;
  align-items: center;
}

.delivery-copy > p {
  max-width: 530px;
}

.delivery-facts {
  margin: 45px 0 0;
}

.delivery-facts div {
  display: grid;
  grid-template-columns: 1fr auto;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}

.delivery-facts div:last-child {
  border-bottom: 1px solid var(--line);
}

.delivery-facts dt {
  font-weight: 700;
}

.delivery-facts dd {
  margin: 0;
}

.postcode-tool {
  border: 1px solid var(--line);
  padding: 48px;
  background: var(--paper);
}

.postcode-kicker {
  margin: 0 0 28px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 2rem;
}

.postcode-tool label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
}

.postcode-row {
  display: grid;
  grid-template-columns: 1fr auto;
}

.postcode-row input {
  min-width: 0;
  border: 1px solid var(--charcoal);
  border-right: 0;
  border-radius: 0;
  padding: 13px 15px;
  background: var(--paper);
  color: var(--charcoal);
  text-transform: uppercase;
  outline: 0;
}

.postcode-row input:focus {
  box-shadow: inset 0 0 0 2px var(--rose);
}

.postcode-result {
  min-height: 90px;
  margin-top: 22px;
  border-top: 1px solid var(--line);
  padding-top: 20px;
}

.postcode-result p {
  margin: 0;
}

.postcode-result strong {
  display: block;
  margin-bottom: 4px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-weight: 400;
  line-height: 1.1;
}

.postcode-small {
  margin: 14px 0 0;
  color: rgba(37, 35, 34, 0.62);
  font-size: 0.75rem;
}

.postcode-privacy {
  margin: 10px 0 0;
  font-size: 0.75rem;
}

.postcode-privacy a {
  color: var(--plum);
  text-underline-offset: 3px;
}

.reviews {
  position: relative;
  padding: 130px 0 100px;
  overflow: hidden;
  background: var(--plum);
  color: var(--paper);
}

.reviews-emotion {
  position: absolute;
  top: 74px;
  left: max(34px, calc((100% - 1240px) / 2 - 210px));
  width: 170px;
  height: 170px;
  opacity: 0.94;
  filter: drop-shadow(0 18px 30px rgba(26, 11, 18, 0.2));
  pointer-events: none;
  animation: review-emotion-float 5.8s ease-in-out infinite;
}

@keyframes review-emotion-float {
  0%,
  100% {
    transform: translateY(0) rotate(-4deg);
  }

  50% {
    transform: translateY(-9px) rotate(1deg);
  }
}

.reviews-heading {
  position: relative;
  z-index: 1;
  max-width: 850px;
  margin-bottom: 50px;
}

.reviews-heading .eyebrow {
  color: var(--blush);
}

.reviews-heading h2 {
  margin-bottom: 0;
}

.reviews-track {
  position: relative;
  z-index: 1;
  display: grid;
  grid-auto-columns: calc((100% - 40px) / 3);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.reviews-track::-webkit-scrollbar {
  display: none;
}

.review-card {
  display: flex;
  min-height: 390px;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid rgba(255, 253, 249, 0.25);
  border-radius: 4px;
  padding: 32px;
  scroll-snap-align: start;
}

.review-card blockquote {
  margin: 0;
  font-family: var(--serif);
  font-size: 1.28rem;
  line-height: 1.55;
}

.review-card footer {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: 28px;
}

.review-card footer img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
}

.review-card footer div {
  display: flex;
  flex-direction: column;
  line-height: 1.35;
}

.review-card footer strong {
  font-size: 0.84rem;
}

.review-card footer span {
  color: rgba(255, 253, 249, 0.66);
  font-size: 0.75rem;
}

.review-controls {
  display: flex;
  justify-content: flex-end;
  gap: 8px;
  margin-top: 30px;
}

.review-controls button {
  display: grid;
  width: 46px;
  height: 46px;
  place-items: center;
  border: 1px solid rgba(255, 253, 249, 0.42);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  font-family: var(--serif);
  font-size: 1.6rem;
  cursor: pointer;
}

.review-controls button:hover {
  background: var(--paper);
  color: var(--plum);
}

.faq {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 100px;
  padding-block: 140px;
}

.faq-heading {
  position: sticky;
  top: 120px;
  align-self: start;
}

.faq-heading h2 {
  font-size: 3.8rem;
}

.faq-list details {
  border-top: 1px solid var(--line);
}

.faq-list details:last-child {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  position: relative;
  padding: 24px 48px 24px 0;
  font-family: var(--serif);
  font-size: 1.35rem;
  cursor: pointer;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 24px;
  right: 4px;
  content: "+";
  font-family: var(--sans);
  font-weight: 300;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 680px;
  margin: -4px 0 28px;
  color: rgba(37, 35, 34, 0.74);
}

.final-cta {
  position: relative;
  display: flex;
  min-height: 700px;
  align-items: center;
  overflow: hidden;
  background: var(--rose);
  color: var(--paper);
}

.final-media,
.final-media img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.final-media img {
  object-fit: cover;
  object-position: center;
  filter: brightness(0.56) saturate(0.9);
}

.final-copy {
  position: relative;
  z-index: 2;
  width: min(700px, calc(100% - 64px));
  margin-left: max(32px, calc((100% - 1240px) / 2));
}

.final-copy .eyebrow {
  color: var(--blush);
}

.final-copy h2 {
  max-width: 680px;
  font-size: 5rem;
}

.final-copy > p:not(.eyebrow) {
  max-width: 520px;
}

.final-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 18px 28px;
  align-items: center;
  margin-top: 32px;
}

.text-link-light {
  color: var(--paper);
}

.site-footer {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 80px;
  padding: 80px max(32px, calc((100% - 1240px) / 2)) 30px;
  border-top: 1px solid rgba(77, 41, 54, 0.16);
  background: #f6f6f6;
  color: var(--plum);
}

.footer-brand img {
  width: 250px;
  height: auto;
  max-height: 220px;
  object-fit: contain;
  object-position: left center;
}

.footer-brand p {
  max-width: 380px;
  color: rgba(77, 41, 54, 0.68);
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  gap: 38px;
}

.footer-links div {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.footer-links h2 {
  margin-bottom: 18px;
  font-family: var(--accent);
  font-size: 0.76rem;
  font-weight: 400;
  text-transform: uppercase;
}

.footer-links a,
.footer-link-button {
  margin-bottom: 8px;
  color: rgba(77, 41, 54, 0.72);
  font: inherit;
  text-align: left;
  text-decoration: none;
}

.footer-link-button {
  border: 0;
  padding: 0;
  background: transparent;
  cursor: pointer;
}

.footer-links a:hover,
.footer-link-button:hover {
  color: var(--plum);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  border-top: 1px solid rgba(77, 41, 54, 0.16);
  padding-top: 24px;
  color: rgba(77, 41, 54, 0.52);
  font-family: var(--accent);
  font-size: 0.72rem;
  text-transform: uppercase;
}

.utility-actions {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 120;
  display: flex;
  gap: 8px;
  align-items: center;
  transition: bottom 260ms ease;
}

.floating-whatsapp,
.back-to-top {
  min-height: 48px;
  border: 1px solid var(--plum);
  border-radius: 2px;
  box-shadow: 0 10px 30px rgba(37, 35, 34, 0.14);
}

.floating-whatsapp {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 17px;
  background: var(--plum);
  color: var(--paper);
  font-size: 0.74rem;
  font-weight: 600;
  text-decoration: none;
  text-transform: uppercase;
}

.floating-whatsapp:hover {
  background: var(--charcoal);
}

.back-to-top {
  width: 48px;
  padding: 0;
  background: var(--paper);
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.5rem;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: opacity 180ms ease, transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

.back-to-top:hover {
  background: var(--plum);
  color: var(--paper);
}

.back-to-top.is-visible {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  z-index: 160;
  display: grid;
  width: min(680px, calc(100% - 40px));
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  border: 1px solid rgba(77, 41, 54, 0.25);
  border-radius: 4px;
  padding: 20px;
  background: var(--paper);
  box-shadow: 0 20px 55px rgba(37, 35, 34, 0.2);
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 240ms ease, transform 260ms ease;
}

.cookie-banner[hidden] {
  display: none;
}

.cookie-banner.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner p {
  margin: 0;
  color: rgba(37, 35, 34, 0.75);
  font-size: 0.82rem;
  line-height: 1.5;
}

.cookie-banner a {
  color: var(--plum);
  text-underline-offset: 3px;
}

.cookie-banner .cookie-title {
  margin-bottom: 4px;
  color: var(--plum);
  font-family: var(--serif);
  font-size: 1.25rem;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions .button {
  min-height: 42px;
  padding: 10px 16px;
}

.product-dialog {
  width: min(1040px, calc(100% - 40px));
  max-height: calc(100svh - 40px);
  border: 0;
  border-radius: 4px;
  padding: 0;
  background: var(--paper);
  color: var(--charcoal);
  overflow: auto;
}

.product-dialog::backdrop {
  background: rgba(37, 35, 34, 0.78);
}

.dialog-close {
  position: absolute;
  top: 13px;
  right: 13px;
  z-index: 2;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 253, 249, 0.94);
  color: var(--charcoal);
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

.dialog-layout {
  display: grid;
  min-height: 650px;
  grid-template-columns: 1.05fr 0.95fr;
}

.dialog-image-wrap {
  min-height: 600px;
  background: #eee6df;
}

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

.dialog-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 64px 54px;
}

.dialog-copy h2 {
  margin-bottom: 12px;
  color: var(--plum);
  font-size: 4rem;
}

.dialog-size {
  margin: 0 0 6px;
  color: rgba(37, 35, 34, 0.6);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
}

.dialog-price {
  margin: 0 0 24px;
  font-family: var(--serif);
  font-size: 2rem;
}

.dialog-note {
  border-top: 1px solid var(--line);
  margin-top: 12px;
  padding-top: 18px;
  color: rgba(37, 35, 34, 0.68);
  font-size: 0.84rem;
}

.dialog-allergen {
  border: 1px solid rgba(183, 95, 105, 0.52);
  margin: 18px 0 0;
  padding: 12px 14px;
  background: #fff8f5;
  color: var(--plum);
  font-size: 0.82rem;
}

.dialog-allergen a {
  color: inherit;
  text-underline-offset: 3px;
}

.dialog-copy .button {
  align-self: flex-start;
  margin-top: 20px;
}

.js .reveal {
  opacity: 0;
  transition:
    opacity 850ms cubic-bezier(0.2, 0.75, 0.2, 1),
    transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1),
    clip-path 1100ms cubic-bezier(0.2, 0.75, 0.2, 1);
  transition-delay: var(--delay, 0ms);
}

.js .reveal-up {
  transform: translateY(54px);
}

.js .reveal-left {
  transform: translateX(-64px);
}

.js .reveal-right {
  transform: translateX(64px);
}

.js .reveal-wipe {
  opacity: 1;
  clip-path: none;
  transform: none;
}

.js .reveal.is-visible {
  opacity: 1;
  clip-path: inset(0);
  transform: translate(0, 0);
}

.js .reveal-wipe > img {
  transform: scale(1.045);
  transition: transform 1400ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .reveal-wipe.is-visible > img {
  transform: scale(1);
}

.js .hero-media {
  clip-path: inset(0 0 0 100%);
  transition: clip-path 1250ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js .hero-wash {
  opacity: 0;
  transform: translateX(-10%);
  transition: opacity 700ms ease 300ms, transform 950ms cubic-bezier(0.2, 0.75, 0.2, 1) 300ms;
}

.js .hero-eyebrow,
.js .hero h1,
.js .hero-tagline,
.js .hero-copy,
.js .hero-actions,
.js .hero-note {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 750ms ease, transform 850ms cubic-bezier(0.2, 0.75, 0.2, 1);
}

.js.is-ready .hero-media {
  clip-path: inset(0);
}

.js.is-ready .hero-wash {
  opacity: 1;
  transform: translateX(0);
}

.js.is-ready .hero-eyebrow,
.js.is-ready .hero h1,
.js.is-ready .hero-tagline,
.js.is-ready .hero-copy,
.js.is-ready .hero-actions,
.js.is-ready .hero-note {
  opacity: 1;
  transform: translateY(0);
}

.js.is-ready .hero-eyebrow { transition-delay: 520ms; }
.js.is-ready .hero h1 { transition-delay: 610ms; }
.js.is-ready .hero-tagline { transition-delay: 700ms; }
.js.is-ready .hero-copy { transition-delay: 790ms; }
.js.is-ready .hero-actions { transition-delay: 880ms; }
.js.is-ready .hero-note { transition-delay: 980ms; }

.product-card.reveal .product-image {
  clip-path: inset(0 0 100% 0);
  transition: clip-path 850ms cubic-bezier(0.2, 0.75, 0.2, 1) var(--delay, 0ms);
}

.product-card.reveal.is-visible .product-image {
  clip-path: inset(0);
}

.product-card.reveal .product-meta {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 600ms ease calc(var(--delay, 0ms) + 220ms), transform 700ms ease calc(var(--delay, 0ms) + 220ms);
}

.product-card.reveal.is-visible .product-meta {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 1200px) {
  .hero h1 {
    font-size: 5.1rem;
  }

  .hero-inner {
    width: min(590px, 54%);
  }
}

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 44px, 940px);
  }

  h2 {
    font-size: 3.4rem;
  }

  .desktop-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 5.4rem;
  }

  .intro {
    grid-template-columns: 60px 1fr 0.75fr;
    gap: 32px;
  }

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

  .craft-layout {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

  .craft-details {
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
  }

  .detail-block:last-child {
    border-bottom: 0;
  }

  .ocean-copy {
    padding: 45px;
  }

  .delivery-layout {
    gap: 50px;
  }

  .reviews-track {
    grid-auto-columns: calc((100% - 20px) / 2);
  }
}

@media (max-width: 820px) {
  :root {
    --header-height: 68px;
    --shell: calc(100% - 36px);
  }

  h2 {
    font-size: 3rem;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding: 0 18px;
  }

  .header-monogram {
    width: 56px;
    height: 42px;
  }

  .wordmark-main {
    font-size: 1.5rem;
  }

  .wordmark-sub {
    margin-top: 4px;
    font-size: 0.56rem;
  }

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

  .menu-toggle {
    display: block;
    color: var(--plum);
  }

  .hero {
    min-height: 88svh;
  }

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

  .hero-wash {
    width: 72%;
    background: rgba(247, 241, 237, 0.8);
  }

  .hero-inner {
    width: min(580px, calc(100% - 36px));
    margin: 0 18px 8svh;
    padding-right: 0;
  }

  .hero h1 {
    width: min(620px, 100%);
  }

  .hero-note {
    display: none;
  }

  .promise-strip {
    overflow: hidden;
  }

  .promise-track {
    animation-duration: 22s;
  }

  .intro {
    grid-template-columns: 44px 1fr;
    gap: 24px;
    padding-block: 100px;
  }

  .intro-copy {
    grid-column: 2;
    padding-top: 0;
  }

  .collections {
    padding: 95px 0 100px;
  }

  .collections-head {
    grid-template-columns: 1fr;
    gap: 26px;
  }

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

  .art-panel {
    min-height: 700px;
  }

  .art-panel > img {
    object-position: 52% center;
  }

  .art-caption {
    right: 18px;
    left: 18px;
    bottom: 18px;
    padding: 24px;
  }

  .art-caption h2 {
    font-size: 2.75rem;
  }

  .craft {
    padding: 100px 0 85px;
  }

  .craft-layout {
    grid-template-columns: 1fr;
  }

  .craft-visual {
    max-height: 680px;
  }

  .craft-details {
    grid-column: auto;
    grid-template-columns: 1fr;
    gap: 0;
  }

  .detail-block:last-child {
    border-bottom: 1px solid rgba(56, 87, 71, 0.28);
  }

  .flavour-line {
    flex-wrap: wrap;
    justify-content: center;
    margin-top: 55px;
  }

  .ocean-story {
    min-height: auto;
    grid-template-columns: 1fr;
  }

  .ocean-story > img {
    min-height: 560px;
  }

  .ocean-copy {
    padding: 70px var(--shell);
  }

  .moments {
    padding: 100px 0;
  }

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

  .delivery {
    padding: 100px 0;
  }

  .delivery-layout {
    grid-template-columns: 1fr;
  }

  .reviews {
    padding: 100px 0 80px;
  }

  .reviews-emotion {
    top: 82px;
    right: 32px;
    left: auto;
    width: 118px;
    height: 118px;
    opacity: 0.88;
  }

  .reviews-heading {
    padding-right: 132px;
  }

  .reviews-track {
    grid-auto-columns: 82%;
  }

  .faq {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-block: 100px;
  }

  .faq-heading {
    position: static;
  }

  .final-cta {
    min-height: 650px;
  }

  .final-copy h2 {
    font-size: 4rem;
  }

  .site-footer {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-inline: 24px;
  }

  .dialog-layout {
    grid-template-columns: 1fr;
  }

  .dialog-image-wrap {
    min-height: 430px;
    max-height: 52svh;
  }

  .dialog-copy {
    padding: 42px 30px;
  }

  .cookie-banner {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }
}

@media (max-width: 540px) {
  body {
    font-size: 15px;
  }

  h2 {
    font-size: 2.55rem;
  }

  .hero {
    display: block;
    min-height: auto;
    padding-top: var(--header-height);
    background: var(--paper);
  }

  .hero-media,
  .hero-media img {
    position: relative;
    inset: auto;
    width: 100%;
    height: clamp(260px, 46svh, 360px);
  }

  .hero-media {
    overflow: hidden;
  }

  .hero-media img {
    object-position: 60% center;
    transform: none;
  }

  .hero-wash {
    display: none;
  }

  .hero-inner {
    width: 100%;
    margin: 0;
    padding: 24px 18px 76px;
    background: var(--paper);
  }

  .hero-eyebrow {
    margin-bottom: 10px;
  }

  .hero h1 {
    margin-bottom: 10px;
    width: min(330px, 100%);
  }

  .header-monogram {
    width: 50px;
    height: 40px;
  }

  .wordmark-main {
    font-size: 1.4rem;
  }

  .menu-toggle {
    display: flex;
    width: 48px;
    height: 48px;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 7px;
    margin-right: -4px;
    border: 1px solid rgba(77, 41, 54, 0.16);
    border-radius: 2px;
    background: rgba(255, 253, 249, 0.62);
  }

  .menu-toggle span {
    width: 24px;
    height: 2px;
    margin: 0;
    background: var(--plum);
  }

  .utility-actions {
    right: 12px;
    bottom: 12px;
  }

  .floating-whatsapp {
    min-height: 44px;
    padding-inline: 13px;
    font-size: 0.68rem;
  }

  .back-to-top {
    width: 44px;
    min-height: 44px;
  }

  .cookie-banner {
    right: 12px;
    bottom: 12px;
    left: 12px;
    width: auto;
    grid-template-columns: 1fr;
    gap: 14px;
    padding: 18px;
  }

  .cookie-actions {
    justify-content: flex-end;
  }

  body.has-cookie-banner .utility-actions {
    bottom: 218px;
  }

  .hero-tagline {
    margin-bottom: 14px;
    font-size: 1.6rem;
  }

  .hero-copy {
    margin-bottom: 18px;
    font-size: 0.88rem;
  }

  .hero-actions {
    align-items: flex-start;
  }

  .hero-actions .button {
    width: 100%;
  }

  .promise-strip {
    min-height: 54px;
  }

  .intro {
    display: block;
    padding-block: 80px;
  }

  .intro-number {
    margin-bottom: 28px;
  }

  .collection-controls {
    width: var(--shell);
    max-width: var(--shell);
    margin-inline: auto;
    padding-inline: 0;
    overscroll-behavior-x: contain;
  }

  .collection-tab {
    padding-inline: 16px;
  }

  .product-grid {
    gap: 30px 10px;
  }

  .product-meta {
    display: block;
    padding-top: 11px;
  }

  .product-meta h3 {
    font-size: 1.28rem;
  }

  .product-price {
    margin-top: 5px;
  }

  .product-kind {
    margin-top: 5px;
    font-size: 0.62rem;
  }

  .art-panel {
    min-height: 640px;
  }

  .art-panel > img {
    object-position: 54% center;
  }

  .art-caption h2 {
    font-size: 2.25rem;
  }

  .craft-visual {
    aspect-ratio: 1 / 1.15;
  }

  .flavour-line {
    font-size: 0.96rem;
  }

  .ocean-story > img {
    min-height: 500px;
    object-position: 53% center;
  }

  .ocean-copy {
    padding: 55px 18px;
  }

  .ocean-copy h2 {
    font-size: 2.7rem;
  }

  .moments-grid {
    grid-template-columns: 1fr 1fr;
    gap: 36px 10px;
    margin-top: 42px;
  }

  .moment-image {
    margin-bottom: 14px;
  }

  .moment-item h3 {
    font-size: 1.3rem;
  }

  .moment-item > p:last-child {
    font-size: 0.78rem;
  }

  .postcode-tool {
    padding: 28px 20px;
  }

  .postcode-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .postcode-row input {
    min-height: 50px;
    border-right: 1px solid var(--charcoal);
  }

  .reviews-track {
    grid-auto-columns: 88%;
  }

  .reviews-emotion {
    top: 78px;
    right: 18px;
    width: 92px;
    height: 92px;
    opacity: 0.86;
    animation: none;
  }

  .reviews-heading {
    padding-right: 104px;
    margin-bottom: 38px;
  }

  .reviews-heading h2 {
    font-size: clamp(2.6rem, 12vw, 3.15rem);
    line-height: 1.04;
  }

  .review-card {
    min-height: 420px;
    padding: 25px;
  }

  .review-card blockquote {
    font-size: 1.12rem;
  }

  .faq-heading h2 {
    font-size: 2.8rem;
  }

  .faq-list summary {
    font-size: 1.18rem;
  }

  .final-copy {
    width: calc(100% - 36px);
    margin-left: 18px;
  }

  .final-copy h2 {
    font-size: 3.2rem;
  }

  .final-actions {
    align-items: flex-start;
  }

  .final-actions .button {
    width: 100%;
  }

  .footer-links {
    gap: 26px;
  }

  .footer-bottom {
    flex-direction: column;
    gap: 8px;
  }

  .product-dialog {
    width: 100%;
    max-width: none;
    max-height: 100svh;
    margin: 0;
    border-radius: 0;
  }

  .dialog-image-wrap {
    min-height: 330px;
  }

  .dialog-copy h2 {
    font-size: 3rem;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
