:root {
  --black: #070605;
  --ink: #14100d;
  --charcoal: #1c1714;
  --cream: #f2eadf;
  --paper: #d8cab7;
  --muted: #a89886;
  --gold: #c48a52;
  --gold-soft: #e0bd8d;
  --berry: #b36a7a;
  --moss: #82915c;
  --line: rgba(224, 189, 141, 0.32);
  --shadow: 0 28px 70px rgba(0, 0, 0, 0.42);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--cream);
  font-family: "Inter", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(196, 138, 82, 0.08) 1px, transparent 1px),
    linear-gradient(rgba(242, 234, 223, 0.035) 1px, transparent 1px);
  background-size: 86px 86px;
  mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.18), transparent 70%);
  z-index: -1;
}

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

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

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

h1,
h2,
h3,
.eyebrow,
.section-kicker {
  font-family: "Cormorant Garamond", Georgia, serif;
}

h1 {
  color: var(--gold-soft);
  font-size: clamp(4.2rem, 11vw, 9rem);
  font-weight: 500;
  line-height: 0.85;
  text-transform: uppercase;
}

h2 {
  max-width: 850px;
  color: #fff8ef;
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  font-weight: 500;
  line-height: 1.02;
}

h3 {
  color: #fff4e5;
  font-size: clamp(1.45rem, 2.1vw, 2.15rem);
  font-weight: 500;
  line-height: 1.1;
}

p {
  color: rgba(242, 234, 223, 0.82);
}

a:focus-visible,
button:focus-visible,
.button:focus-visible,
.pricing:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 5px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 24px;
  padding: 22px clamp(20px, 5vw, 70px);
  border-bottom: 1px solid rgba(224, 189, 141, 0.12);
  background: rgba(7, 6, 5, 0.78);
  backdrop-filter: blur(12px);
}

nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(12px, 2.4vw, 30px);
  color: rgba(242, 234, 223, 0.72);
  font-size: 0.76rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  transition: color 180ms ease;
}

nav a:hover {
  color: var(--gold-soft);
}

.language-switch {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  color: rgba(242, 234, 223, 0.48);
  white-space: nowrap;
}

.language-switch button {
  border: 0;
  background: transparent;
  color: rgba(242, 234, 223, 0.54);
  cursor: pointer;
  font: inherit;
  letter-spacing: inherit;
  padding: 0;
}

.language-switch button[aria-pressed="true"] {
  color: var(--gold-soft);
}

.language-switch button:focus-visible {
  outline: 2px solid var(--gold-soft);
  outline-offset: 5px;
}

.hero {
  position: relative;
  display: grid;
  min-height: 94vh;
  align-items: end;
  padding: 140px clamp(22px, 6vw, 90px) 78px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 78% 50%, rgba(196, 138, 82, 0.22), transparent 28%),
    linear-gradient(to right, rgba(7, 6, 5, 0.72), rgba(7, 6, 5, 0.45), rgba(7, 6, 5, 0.78)),
    url("assets/collection-classic.jpg") right center / min(44vw, 680px) auto no-repeat;
  opacity: 0.92;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  background: linear-gradient(to bottom, transparent, var(--black));
}

.hero-media {
  position: absolute;
  top: 13vh;
  left: 50%;
  width: min(72vw, 760px);
  transform: translateX(-50%);
  opacity: 0.72;
}

.hero-media img {
  width: 100%;
  filter: drop-shadow(0 20px 40px rgba(0, 0, 0, 0.5));
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.hero-monogram {
  display: grid;
  width: clamp(212px, 22vw, 370px);
  aspect-ratio: 1536 / 1024;
  place-items: center;
  margin: 0 auto clamp(-4px, -0.7vw, 27px);
  transform: translateX(-60px)
}

.hero-monogram img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.eyebrow,
.section-kicker {
  color: var(--gold-soft);
  font-size: 1rem;
  font-style: italic;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-line {
  margin-top: 12px;
  margin-left: clamp(92px, 32.1vw, 101px);
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(1.7rem, 4vw, 3rem);
  font-style: italic;
}

.hero-copy {
  max-width: 520px;
  margin-top: 32px;
  font-size: 1.04rem;
}

.hero-seo {
  max-width: 620px;
  margin-top: 14px;
  color: rgba(242, 234, 223, 0.86);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--gold);
  padding: 13px 22px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button.primary {
  background: var(--gold-soft);
  color: var(--ink);
  border-color: var(--gold-soft);
}

.button.secondary {
  color: var(--gold-soft);
}

.button:hover {
  background: #fff1df;
  color: var(--ink);
  border-color: #fff1df;
}

.trust-line {
  max-width: 640px;
  margin-top: 18px;
  color: var(--paper);
  font-size: 0.92rem;
  letter-spacing: 0;
}

.hero-note {
  position: absolute;
  right: clamp(20px, 5vw, 72px);
  bottom: 62px;
  z-index: 2;
  width: min(250px, 36vw);
  border-left: 1px solid var(--line);
  padding-left: 22px;
}

.hero-note span {
  display: block;
  color: var(--muted);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-note strong {
  display: block;
  margin-top: 8px;
  color: #fff4e5;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 2rem;
  font-weight: 500;
}

section {
  padding: clamp(76px, 10vw, 142px) clamp(22px, 6vw, 90px);
  scroll-margin-top: 104px;
}

.section-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(110px, 180px) minmax(0, 1fr) minmax(280px, 430px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
  border-bottom: 1px solid var(--line);
}

.section-grid > div:nth-child(2) > p,
.story-copy p {
  max-width: 680px;
  margin-top: 24px;
  font-size: 1.04rem;
}

.intro h2 {
  color: var(--gold-soft);
}

.intro {
  overflow: hidden;
}

.house-visuals {
  display: grid;
  gap: 18px;
  position: relative;
  z-index: 1;
}

.house-visuals .editorial-image img {
  min-height: 0;
}

.house-dessert {
  aspect-ratio: 3 / 4;
}

.house-dessert img {
  object-position: center center;
  transform: scale(1.08);
  transform-origin: center 42%;
}

.editorial-image {
  position: relative;
  margin: 0;
  overflow: hidden;
}

.editorial-image img {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.natural-image {
  background: transparent;
  box-shadow: none;
  -webkit-mask-image:
    linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  -webkit-mask-composite: source-in;
  mask-image:
    linear-gradient(to right, transparent 0%, #000 8%, #000 92%, transparent 100%),
    linear-gradient(to bottom, transparent 0%, #000 8%, #000 92%, transparent 100%);
  mask-composite: intersect;
}

.natural-image::after {
  content: none;
}

.natural-image img {
  min-height: 0;
}

.collection {
  border-bottom: 1px solid var(--line);
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: clamp(34px, 5vw, 62px);
}

.section-heading .eyebrow {
  flex: 0 0 auto;
}

.collection .section-heading h2 {
  font-size: clamp(1.95rem, 4.35vw, 3.95rem);
}

.flavour-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.flavour-card {
  display: grid;
  min-height: 670px;
  grid-template-rows: 58% 42%;
  background: #0d0b09;
}

.flavour-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.flavour-card.noir > img {
  object-position: 64% center;
}

.flavour-card.citrus > img,
.flavour-card.moss > img,
.flavour-card.berry > img {
  object-position: center center;
}

.flavour-card > div {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: clamp(22px, 3vw, 34px);
  background:
    linear-gradient(to bottom, rgba(13, 11, 9, 0.22), #0d0b09 24%),
    var(--ink);
}

.flavour-title-row {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: clamp(10px, 1.4vw, 16px);
}

.flavour-title-row h3 {
  flex: 0 1 auto;
}

.flavour-card .subtitle {
  margin: 10px 0 16px;
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.35rem;
  font-style: italic;
}

.flavour-decoration-panel {
  position: relative;
  display: grid;
  flex: 0 0 auto;
  width: clamp(58px, 5vw, 82px);
  aspect-ratio: 1;
  place-items: center;
  margin-top: 0.18em;
  pointer-events: none;
}

.flavour-card.noir .flavour-decoration-panel {
  width: clamp(40px, 4vw, 56px);
}

.flavour-decoration {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.72;
}

.flavour-card.citrus > div {
  background: #19130d;
}

.flavour-card.moss h3,
.flavour-card.moss .subtitle {
  color: #d7dea8;
}

.flavour-card.berry h3,
.flavour-card.berry .subtitle {
  color: #e7a0ae;
}

.sizes {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  margin: 34px 0;
  background: var(--line);
  border: 1px solid var(--line);
}

.sizes article {
  min-height: 190px;
  padding: 24px;
  background: rgba(28, 23, 20, 0.9);
}

.sizes span {
  color: var(--gold-soft);
  font-size: 0.76rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.sizes h3 {
  margin-top: 28px;
}

.sizes p {
  margin-top: 8px;
  color: var(--paper);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-style: italic;
  line-height: 1.25;
}

.celebrations {
  background:
    linear-gradient(90deg, rgba(7, 6, 5, 0.94), rgba(7, 6, 5, 0.84)),
    var(--black);
}

.celebration-image {
  aspect-ratio: 1830 / 2048;
}

.celebration-image img {
  object-position: center center;
}

.occasion-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 0;
  margin-top: 30px;
  color: var(--gold-soft);
}

.occasion-list span {
  display: inline-flex;
  align-items: center;
  color: rgba(224, 189, 141, 0.82);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.occasion-list span + span::before {
  content: "";
  width: 4px;
  height: 4px;
  margin: 0 14px;
  transform: rotate(45deg);
  background: rgba(224, 189, 141, 0.72);
}

.celebrations .section-actions {
  display: flex;
  justify-content: center;
  margin-top: clamp(40px, 4vw, 56px);
  transform: translateX(-55px);
}

.celebrations .section-actions .button {
  background: var(--gold-soft);
  border-color: var(--gold-soft);
  color: var(--ink);
}

.celebrations .section-actions .button:hover,
.celebrations .section-actions .button:focus-visible {
  background: #fff1df;
  border-color: #fff1df;
  color: var(--ink);
}

.pricing {
  overflow-x: auto;
  border: 1px solid var(--line);
}

.ordering-details {
  margin-top: 34px;
  border-top: 1px solid var(--line);
  padding-top: 28px;
}

.ordering-details h3 {
  color: var(--gold-soft);
}

.ordering-details ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 28px;
  margin: 20px 0 0;
  padding: 0;
  list-style: none;
}

.ordering-details li {
  position: relative;
  color: rgba(242, 234, 223, 0.86);
  font-size: 0.92rem;
  line-height: 1.45;
  padding-left: 18px;
}

.ordering-details li::before {
  content: "";
  position: absolute;
  top: 0.68em;
  left: 0;
  width: 5px;
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--gold);
}

.editorial-note {
  max-width: 520px;
  margin-top: 22px;
  color: rgba(242, 234, 223, 0.7);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.12rem;
  font-style: italic;
}

table {
  width: 100%;
  min-width: 620px;
  border-collapse: collapse;
  background: rgba(10, 8, 7, 0.78);
}

th,
td {
  border-bottom: 1px solid var(--line);
  padding: 16px 18px;
  text-align: left;
}

thead th {
  color: var(--gold-soft);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

tbody th {
  color: #fff4e5;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.25rem;
  font-weight: 500;
}

td {
  color: rgba(242, 234, 223, 0.84);
  white-space: nowrap;
}

tr:last-child th,
tr:last-child td {
  border-bottom: 0;
}

.ordering {
  background:
    linear-gradient(rgba(7, 6, 5, 0.82), rgba(7, 6, 5, 0.88)),
    url("assets/house-dessert.jpg") center / cover fixed;
  border-bottom: 1px solid var(--line);
}

.ordering .section-heading {
  align-items: start;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: clamp(28px, 5vw, 70px);
  background: transparent;
}

.process-grid article {
  min-height: 0;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.process-grid article::before {
  content: "";
  display: block;
  width: 42px;
  height: 1px;
  margin-bottom: 24px;
  background: rgba(224, 189, 141, 0.55);
}

.process-grid span {
  color: var(--gold-soft);
  font-size: 0.75rem;
  letter-spacing: 0.18em;
}

.process-grid h3 {
  color: #fff8ef;
  margin-top: 34px;
}

.step-points {
  display: grid;
  gap: 8px;
  margin-top: 14px;
  padding: 0;
  list-style: none;
}

.step-points li {
  position: relative;
  color: rgba(242, 234, 223, 0.82);
  font-size: 0.92rem;
  line-height: 1.45;
  padding-left: 16px;
}

.step-points li::before,
.note-list li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--gold);
}

.enquiry-checklist {
  max-width: 760px;
  margin-top: 58px;
  padding: 0;
  background: transparent;
  backdrop-filter: none;
}

.enquiry-checklist h3 {
  color: var(--gold-soft);
}

.enquiry-checklist p {
  margin-top: 12px;
}

.enquiry-checklist ul {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px 34px;
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  background: transparent;
}

.enquiry-checklist li {
  position: relative;
  min-height: 0;
  padding: 0 0 0 18px;
  background: transparent;
  color: rgba(242, 234, 223, 0.9);
  font-size: 0.88rem;
}

.enquiry-checklist li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 5px;
  height: 5px;
  transform: translateY(-50%) rotate(45deg);
  background: var(--gold);
}

.care-copy .note-list {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  background: var(--line);
  border: 1px solid var(--line);
}

.note-list article {
  padding: 26px;
  background: rgba(28, 23, 20, 0.82);
}

.note-list ul {
  display: grid;
  gap: 8px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
}

.note-list li {
  position: relative;
  color: rgba(242, 234, 223, 0.82);
  font-size: 0.94rem;
  line-height: 1.5;
  padding-left: 18px;
}

.contact {
  display: grid;
  min-height: min(88vh, 900px);
  place-items: center;
  margin-bottom: 18px;
  background: var(--cream);
  color: var(--ink);
  text-align: center;
}

.contact-intro {
  display: grid;
  width: 100%;
  justify-items: center;
  gap: 30px;
}

.contact-wordmark {
  max-width: none;
  color: var(--gold);
  font-size: 8rem;
  line-height: 0.82;
  letter-spacing: 0.18em;
  text-indent: 0.18em;
  text-transform: uppercase;
}

.contact .contact-closing {
  max-width: 560px;
  margin: 0;
  color: var(--charcoal);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.55rem;
  line-height: 1.3;
  opacity: 0.82;
}

.celebration-enquiry {
  position: relative;
  overflow: hidden;
  background: var(--cream);
  color: var(--ink);
  transition: opacity 280ms ease, padding 280ms ease, max-height 360ms ease, visibility 280ms ease;
}

.js .celebration-enquiry {
  max-height: 0;
  padding-top: 0;
  padding-bottom: 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.js .celebration-enquiry.is-open {
  max-height: 5200px;
  padding-top: clamp(76px, 10vw, 142px);
  padding-bottom: clamp(76px, 10vw, 142px);
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.celebration-enquiry::before,
.celebration-enquiry::after {
  content: "";
  position: absolute;
  width: min(28vw, 260px);
  height: min(28vw, 260px);
  border: 1px solid rgba(169, 119, 63, 0.16);
  opacity: 0.42;
  pointer-events: none;
}

.celebration-enquiry::before {
  left: -130px;
  bottom: -130px;
  border-right: 0;
  border-top: 0;
}

.celebration-enquiry::after {
  right: -130px;
  top: -130px;
  border-left: 0;
  border-bottom: 0;
}

.enquiry-shell {
  position: relative;
  z-index: 1;
  max-width: 980px;
  margin: 0 auto;
}

.enquiry-close {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(134, 93, 56, 0.36);
  margin: 0 0 26px auto;
  background: transparent;
  color: #865d38;
  cursor: pointer;
  font: inherit;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  padding: 10px 14px;
  text-transform: uppercase;
  transition: background 180ms ease, color 180ms ease;
}

.enquiry-close:hover {
  background: #a9773f;
  color: #fffaf2;
}

.form-brand {
  display: grid;
  justify-items: center;
  gap: 14px;
  color: #a9773f;
  font-family: "Cormorant Garamond", Georgia, serif;
  text-transform: uppercase;
}

.form-brand span {
  display: grid;
  width: 195px;
  aspect-ratio: 1536 / 1024;
  place-items: center;
}

.form-brand img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.form-brand strong {
  font-size: 2.15rem;
  font-weight: 500;
  letter-spacing: 0.42em;
}

.form-heading {
  max-width: 760px;
  margin: 38px auto 46px;
  text-align: center;
}

.form-heading h2 {
  color: var(--ink);
  font-size: clamp(2.8rem, 6vw, 5.2rem);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.form-heading h2:focus-visible {
  outline: 2px solid #a9773f;
  outline-offset: 8px;
}

.form-heading p {
  color: rgba(20, 16, 13, 0.78);
}

.form-subtitle {
  margin: 10px 0 18px;
  color: #a9773f !important;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.28em;
}

.enquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 22px 24px;
  border-top: 1px solid rgba(134, 93, 56, 0.36);
  padding-top: 42px;
}

.field,
.field-full {
  display: grid;
  gap: 8px;
}

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

.field label,
.field legend {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.field label span,
.field legend span {
  color: #a9773f;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 56px;
  border: 1px solid rgba(134, 93, 56, 0.32);
  border-radius: 0;
  background: rgba(255, 252, 247, 0.56);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input:focus-visible,
.field select:focus-visible,
.field textarea:focus-visible {
  outline: 2px solid #a9773f;
  outline-offset: 3px;
}

.field input[aria-invalid="true"],
.field select[aria-invalid="true"] {
  border-color: #8f3f2f;
}

.flavour-field {
  margin: 0;
  border: 0;
  padding: 0;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid rgba(134, 93, 56, 0.28);
  background: rgba(134, 93, 56, 0.28);
}

.checkbox-grid label {
  display: flex;
  min-height: 56px;
  align-items: center;
  gap: 10px;
  background: rgba(255, 252, 247, 0.72);
  padding: 14px;
  letter-spacing: 0.04em;
  text-transform: none;
}

.checkbox-grid input {
  width: 18px;
  min-height: auto;
  height: 18px;
  accent-color: #a9773f;
}

.field-error {
  min-height: 1.2em;
  color: #8f3f2f;
  font-size: 0.78rem;
}

.form-submit {
  width: 100%;
  min-height: 58px;
  text-transform: none;
  font-size: 0.86rem;
}

.form-status {
  min-height: 1.4em;
  margin-top: 16px;
  color: #6f4d2f;
  text-align: center;
}

.form-status.is-error {
  color: #8f3f2f;
}

.form-note {
  margin-top: 16px;
  color: rgba(20, 16, 13, 0.78);
  text-align: center;
}

.form-email {
  margin-top: 8px;
}

.form-email a {
  color: #865d38;
  text-decoration: underline;
  text-underline-offset: 4px;
}

footer {
  display: flex;
  min-height: 136px;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  padding: 36px clamp(22px, 6vw, 90px);
  background: var(--black);
  color: var(--muted);
  font-size: 0.74rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.footer-identity {
  display: grid;
  gap: 3px;
}

.footer-identity strong {
  color: var(--gold-soft);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.22em;
}

.footer-identity span {
  font-size: 0.68rem;
}

.footer-contact,
.footer-socials {
  display: flex;
  align-items: center;
}

.footer-contact {
  gap: 24px;
}

.footer-socials {
  gap: 10px;
}

.footer-email {
  color: var(--paper);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: none;
}

footer a {
  transition: color 180ms ease;
}

footer a:hover {
  color: var(--gold-soft);
}

.social-link {
  display: inline-grid;
  width: 36px;
  height: 36px;
  place-items: center;
  border: 1px solid rgba(242, 234, 223, 0.42);
  border-radius: 50%;
  background: transparent;
  color: var(--paper);
  transition: background 180ms ease, border-color 180ms ease, color 180ms ease;
}

.social-link svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

.social-link:hover,
.social-link:focus-visible {
  border-color: var(--gold-soft);
  background: rgba(224, 189, 141, 0.08);
  color: var(--gold-soft);
}

@media (max-width: 1120px) {
  .contact-wordmark {
    font-size: 6rem;
  }

  .flavour-grid,
  .process-grid,
  .ordering-details ul,
  .enquiry-checklist ul {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .flavour-card {
    min-height: 590px;
  }

  .section-grid {
    grid-template-columns: minmax(90px, 140px) minmax(0, 1fr);
  }

  .section-grid .editorial-image {
    grid-column: 2;
    width: min(520px, 100%);
  }

}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    align-items: flex-start;
    justify-content: flex-end;
    padding: 18px 18px 0;
  }

  nav {
    max-width: 310px;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 4px 14px;
    font-size: 0.7rem;
  }

  .hero {
    min-height: 90vh;
    padding: 104px 18px 42px;
  }

  .hero::before {
    background:
      linear-gradient(to bottom, rgba(7, 6, 5, 0.18), rgba(7, 6, 5, 0.88) 62%, var(--black)),
      url("assets/collection-classic.jpg") center 22% / 100vw auto no-repeat;
  }

  .hero-media {
    top: 12vh;
    width: 96vw;
  }

  .hero-content {
    padding-top: 34vh;
  }

  .hero-monogram {
    width: clamp(184px, 52vw, 246px);
    transform: translate(6px, 7px);
  }

  .hero-line {
    margin-left: clamp(12px, 3.8vw, 22px);
  }

  .hero-note {
    position: relative;
    right: auto;
    bottom: auto;
    z-index: 2;
    width: 100%;
    margin-top: 28px;
  }

  section {
    padding: 70px 18px;
  }

  .section-grid,
  .contact {
    grid-template-columns: 1fr;
  }

  .contact-wordmark {
    font-size: 3.75rem;
  }

  .section-grid .editorial-image {
    grid-column: auto;
    width: 100%;
  }

  .section-kicker {
    border-bottom: 1px solid var(--line);
    padding-bottom: 14px;
  }

  .section-heading {
    display: block;
  }

  .section-heading h2 {
    margin-top: 14px;
  }

  .flavour-grid,
  .process-grid,
  .sizes,
  .checkbox-grid,
  .ordering-details ul,
  .enquiry-checklist ul {
    grid-template-columns: 1fr;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .form-heading {
    margin-bottom: 34px;
  }

  .form-brand strong {
    letter-spacing: 0.28em;
  }

  .celebrations .section-actions {
    transform: none;
  }

  .flavour-card {
    min-height: 520px;
    grid-template-rows: 54% 46%;
  }

  .flavour-decoration-panel {
    width: 78px;
  }

  .process-grid article {
    min-height: 0;
  }

  .process-grid h3 {
    margin-top: 46px;
  }

  footer {
    display: grid;
    justify-items: center;
    gap: 24px;
    text-align: center;
  }

  .footer-identity {
    justify-items: center;
  }

  .footer-contact {
    flex-wrap: wrap;
    justify-content: center;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 3.7rem;
  }

  .button {
    width: 100%;
  }

  .form-heading h2 {
    font-size: 2.45rem;
  }

  .contact-wordmark {
    font-size: 2.65rem;
    letter-spacing: 0.12em;
    text-indent: 0.12em;
  }

  footer {
    padding: 34px 18px;
  }

  .footer-contact {
    flex-direction: column;
    gap: 16px;
  }

  .flavour-card > div,
  .sizes article,
  .note-list article {
    padding: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .ordering {
    background-attachment: scroll;
  }
}
