:root {
  --cream: #fbf7ee;
  --paper: #f6eedf;
  --butter: #eadfbd;
  --sand: #ded0b6;
  --brown: #4a2412;
  --brown-2: #6a4128;
  --olive: #626443;
  --gold: #b8943c;
  --blush: #ead2ca;
  --line: rgba(74, 36, 18, .16);
  --muted: rgba(74, 36, 18, .68);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: 'Trebuchet MS', Arial, sans-serif;
}

* {
  box-sizing: border-box
}

html {
  scroll-behavior: smooth
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--brown);
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.65
}

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

a {
  color: inherit
}

.site-nav {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 238, .88);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px clamp(22px, 5vw, 72px)
}

.brand {
  font-family: var(--serif);
  font-size: 24px;
  line-height: .95;
  text-decoration: none;
  letter-spacing: -.03em
}

.brand span {
  display: block;
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: .22em;
  color: var(--gold);
  margin-bottom: 5px
}

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

.nav-links a {
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .13em;
  font-size: 10px;
  font-weight: 700;
  color: var(--muted)
}

.nav-links a:hover {
  color: var(--brown)
}

.hero {
  min-height: calc(100vh - 73px);
  display: grid;
  grid-template-columns: minmax(420px, .9fr) minmax(0, 1.1fr);
  border-bottom: 1px solid var(--line)
}

.hero-copy {
  padding: clamp(40px, 7vw, 92px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 60px
}

.hero-media {
  min-height: 540px;
  position: relative;
  overflow: hidden;
  background: var(--paper)
}

.hero-media img {
  height: 100%;
  width: 100%;
  object-fit: cover
}

.hero-media:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(251, 247, 238, .08), rgba(251, 247, 238, 0))
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: .24em;
  font-size: 10px;
  font-weight: 700;
  color: var(--gold);
  display: block;
  margin-bottom: 16px
}

.display {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(54px, 8vw, 112px);
  line-height: .88;
  letter-spacing: -.07em;
  margin: 0 0 28px
}

.lead {
  font-size: clamp(17px, 2vw, 22px);
  line-height: 1.55;
  color: var(--brown-2);
  max-width: 680px
}

.quiet {
  color: var(--muted)
}

.nav-cta {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--brown);
  background: var(--brown);
  color: var(--cream);
  padding: 13px 22px;
  text-decoration: none;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 700;
  min-height: 44px
}

.btn:hover {
  background: transparent;
  color: var(--brown)
}

.btn.ghost {
  background: transparent;
  color: var(--brown)
}

.btn.ghost:hover {
  background: var(--brown);
  color: var(--cream)
}

.caption {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: .16em;
  color: var(--muted)
}

.section {
  padding: clamp(64px, 9vw, 128px) clamp(22px, 5vw, 72px);
  border-bottom: 1px solid var(--line)
}

.section.compact {
  padding-top: 70px;
  padding-bottom: 70px
}

.section-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(38px, 5vw, 74px);
  line-height: .98;
  letter-spacing: -.055em;
  margin: 0 0 26px
}

.intro-grid {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(40px, 8vw, 110px);
  align-items: end
}

.poem {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(25px, 3.4vw, 48px);
  line-height: 1.18;
  letter-spacing: -.05em
}

.fine {
  max-width: 560px;
  color: var(--muted)
}

.offer-list {
  margin-top: 56px;
  border-top: 1px solid var(--line)
}

.offer-row {
  display: grid;
  grid-template-columns: 180px 1fr 220px;
  gap: 40px;
  align-items: center;
  padding: 34px 0;
  border-bottom: 1px solid var(--line);
  text-decoration: none
}

.offer-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  color: var(--gold)
}

.offer-name {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(32px, 4vw, 58px);
  line-height: .96;
  letter-spacing: -.05em
}

.offer-desc {
  color: var(--muted);
  max-width: 380px
}

.offer-row:hover .offer-name {
  color: var(--gold)
}

.style-layout {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  gap: clamp(42px, 7vw, 96px);
  align-items: start
}

.style-image {
  position: sticky;
  top: 110px
}

.soft-img {
  background: var(--paper);
  overflow: hidden
}

.soft-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92)
}

.style-list {
  display: grid;
  gap: 54px
}

.style-item {
  padding-bottom: 44px;
  border-bottom: 1px solid var(--line)
}

.style-item:last-child {
  border-bottom: 0
}

.style-head {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: baseline
}

.h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(28px, 3.2vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 0 0 14px
}

.kanji {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: .12em;

}

.palette {
  display: flex;
  gap: 9px;
  margin-top: 20px;
  align-items: center;
  flex-wrap: wrap
}

.sw {
  width: 18px;
  height: 18px;
  border-radius: 99px;
  border: 1px solid rgba(74, 36, 18, .18);
  background: var(--paper)
}

.palette-label {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--muted);
  margin-top: 14px
}

.note-strip {
  background: var(--paper);
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--line);
  border-top: 1px solid var(--line)
}

.note {
  padding: 34px clamp(22px, 4vw, 54px);
  border-right: 1px solid var(--line)
}

.note:last-child {
  border-right: 0
}

.note strong {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 22px;
  font-weight: 400;
  margin-bottom: 8px
}

.note p {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

.split {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(42px, 7vw, 98px);
  align-items: center
}

.split.reverse {
  grid-template-columns: .9fr 1.1fr
}

.chapter {
  padding: clamp(72px, 10vw, 140px) clamp(22px, 5vw, 72px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 8vw, 120px);
  align-items: center;
  border-bottom: 1px solid var(--line)
}

.chapter:nth-of-type(even) {
  background: var(--paper)
}

.chapter .media {
  min-height: 520px
}

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

.timeline {
  counter-reset: item;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 52px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line)
}

.timeline.four {
  grid-template-columns: repeat(4, 1fr)
}

.t-step {
  padding: 30px 24px;
  border-right: 1px solid var(--line)
}

.t-step:last-child {
  border-right: 0
}

.t-step b {
  font-family: var(--serif);
  font-style: italic;
  font-size: 32px;
  color: var(--gold);
  display: block;
  margin-bottom: 18px
}

.t-step strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  font-weight: 400;
  display: block;
  line-height: 1.05;
  margin-bottom: 10px
}

.t-step p {
  margin: 0;
  color: var(--muted);
  font-size: 13px
}

.minimal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(28px, 4vw, 64px);
  margin-top: 52px
}

.minimal-card {
  padding-top: 28px;
  border-top: 1px solid var(--line)
}

.minimal-card p {
  color: var(--muted)
}

.minimal-card ul {
  margin: 22px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
  font-size: 13px
}

.minimal-card li {
  padding: 6px 0;
  border-bottom: 1px solid rgba(74, 36, 18, .08)
}

.price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 38px;
  line-height: 1;
  color: var(--brown);
  margin-top: 26px
}

.price small {
  display: block;
  font-family: var(--sans);
  font-style: normal;
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: .13em;
  color: var(--muted);
  margin-top: 10px
}

.table-wrap {
  overflow-x: auto
}

.table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px
}

.table th {
  text-align: left;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  color: var(--muted);
  font-weight: 700
}

.table th,
.table td {
  padding: 18px 14px;
  border-bottom: 1px solid var(--line)
}

.table td:first-child {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  color: var(--brown)
}

.gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr 1fr;
  gap: 18px;
  margin-top: 48px
}

.gallery img {
  width: 100%;
  height: 360px;
  object-fit: cover
}

.gallery img:nth-child(2) {
  height: 460px;
  margin-top: 60px
}

.size-showcase {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px
}

.size-item img {
  height: 440px;
  width: 100%;
  object-fit: cover;
  background: var(--paper)
}

.size-item {
  position: relative
}

.size-item .size-copy {
  padding: 20px 0 0
}

.size-meta {
  font-size: 13px;
  color: var(--muted);
  margin: 0
}

.format-duo {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 70px;
  margin-top: 50px
}

.format {
  border-top: 1px solid var(--line);
  padding-top: 28px
}

.footer {
  padding: 72px clamp(22px, 5vw, 72px);
  background: #332012;
  color: var(--cream);
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px
}

.footer .section-title {
  color: var(--cream)
}

.footer p {
  color: rgba(251, 247, 238, .68)
}

.footer a {
  color: var(--cream)
}

@media(max-width:900px) {

  .hero,
  .intro-grid,
  .style-layout,
  .split,
  .split.reverse,
  .chapter,
  .footer {
    grid-template-columns: 1fr
  }

  .hero {
    min-height: 0
  }

  .hero-media {
    min-height: 420px;
    order: -1
  }

  .site-nav {
    align-items: flex-start
  }

  .nav-links {
    gap: 14px;
    flex-wrap: wrap;
    justify-content: flex-end
  }

  .offer-row {
    grid-template-columns: 80px 1fr;
    gap: 22px
  }

  .offer-desc {
    grid-column: 2
  }

  .note-strip,
  .minimal-grid,
  .timeline,
  .timeline.four,
  .size-showcase,
  .format-duo {
    grid-template-columns: 1fr
  }

  .note,
  .t-step {
    border-right: 0;
    border-bottom: 1px solid var(--line)
  }

  .style-image {
    position: relative;
    top: auto
  }

  .gallery {
    grid-template-columns: 1fr
  }

  .gallery img,
  .gallery img:nth-child(2) {
    height: 320px;
    margin-top: 0
  }

  .section,
  .chapter {
    padding-left: 24px;
    padding-right: 24px
  }

  .display {
    font-size: 58px
  }

  .media,
  .chapter .media {
    min-height: 320px
  }

  .size-item img {
    height: 320px
  }
}

/* v7 refinement: softer editorial layouts, fewer divider lines, image-led home */
.section.no-rule {
  border-bottom: 0;
  padding-top: clamp(72px, 9vw, 132px);
  padding-bottom: clamp(72px, 9vw, 132px)
}

.section-heading {
  max-width: 760px;
  margin-bottom: 48px
}

.hero {
  border-bottom: 0;
  background: linear-gradient(180deg, var(--cream), #fffaf2)
}

.nav-cta .btn.ghost {
  display: none
}

.style-triptych {
  display:flex;
  justify-content:center;
  gap:48px;
  margin-top:54px;
  max-width:1200px;
  margin-left:auto;
  margin-right:auto;
  align-items:flex-start
}

.style-card {
  text-decoration:none;
  color:inherit;
  flex:0 0 340px;
}

.style-photo {
  aspect-ratio: 3/4;
  overflow: hidden;
  background: var(--paper);
  margin-bottom: 22px
}

.style-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(.98)
}

.style-text {
  padding-right: 8px
}

.style-text p {
  color: var(--muted);
  margin-top: 0
}

.style-card .h3 {
  margin-bottom: 12px
}

.style-card .kanji {
  font-size: 30px;
  margin-left: 5px;

}

.offering-gallery {
  display: grid;
  grid-template-columns: 1.1fr .9fr;
  grid-template-rows: auto auto;
  gap: clamp(22px, 3vw, 42px);
  align-items: stretch
}

.offering-card {
  position: relative;
  display: block;
  text-decoration: none;
  color: var(--brown);
  overflow: hidden;
  background: var(--paper);
  min-height: 420px
}

.offering-card.large {
  grid-row: span 2;
  min-height: 760px
}

.offering-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
  filter: saturate(.9)
}

.offering-card:after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg,
      rgba(245, 240, 232, 0.55) 0%,
      rgba(245, 240, 232, 0.35) 35%,
      rgba(245, 240, 232, 0.10) 100%);
  /* background:
      linear-gradient(
        to bottom,
        rgba(245,240,232,0.10),
        rgba(245,240,232,0.30)
      );       */
  /* background: linear-gradient(180deg, rgba(251, 247, 238, .04), rgba(251, 247, 238, .82) 72%, rgba(251, 247, 238, .96)) */
}

.offering-copy {
  position: absolute;
  z-index: 1;
  left: clamp(24px, 3vw, 46px);
  right: clamp(24px, 3vw, 46px);
  bottom: clamp(24px, 3vw, 42px)
}

.offering-copy h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  font-size: clamp(34px, 4.2vw, 66px);
  line-height: .92;
  letter-spacing: -.06em;
  margin: 12px 0 14px
}

.offering-copy p {
  max-width: 440px;
  color: var(--brown-2)
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  font-weight: 700;
  color: var(--brown)
}

.offering-card:hover .text-link {
  color: var(--gold)
}

/* Make process steps feel like a designed ritual, not a spreadsheet */
.timeline,
.timeline.four {
  border: 0;
  gap: 18px;
  margin-top: 42px
}

.timeline {
  grid-template-columns: repeat(5, 1fr)
}

.timeline.four {
  grid-template-columns: repeat(4, 1fr)
}

.t-step {
  border: 0;
  background: var(--paper);
  padding: 34px 28px 30px;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative
}

.t-step:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(74, 36, 18, .08);
  pointer-events: none
}

.t-step b {
  font-size: 44px;
  margin-bottom: 26px
}

.t-step strong {
  font-size: 26px
}

.t-step p {
  font-size: 14px;
  max-width: 220px
}

/* Product/pricing blocks should feel like menus, not tables */
.format-duo {
  gap: clamp(30px, 5vw, 90px);
  align-items: start
}

.format {
  border-top: 0;
  background: var(--paper);
  padding: clamp(30px, 4vw, 52px)
}

.format p {
  color: var(--brown-2)
}

.table {
  border-collapse: separate;
  border-spacing: 0 10px;
  margin: 26px 0
}

.table tr {
  background: rgba(251, 247, 238, .72)
}

.table td,
.table th {
  border-bottom: 0;
  padding: 16px 20px
}

.table td:first-child {
  font-size: 24px
}

.table td:last-child {
  text-align: right;
  color: var(--brown)
}

.minimal-card {
  border-top: 0;
  background: var(--paper);
  padding: clamp(28px, 3.5vw, 46px);
  position: relative
}

.minimal-card:before {
  content: "";
  position: absolute;
  inset: 10px;
  border: 1px solid rgba(74, 36, 18, .08);
  pointer-events: none
}

.minimal-card ul li {
  border-bottom: 1px solid rgba(74, 36, 18, .08)
}

.price {
  font-size: 32px;
  color: var(--gold)
}

@media(max-width:900px) {

  .style-triptych,
  .offering-gallery {
    grid-template-columns: 1fr
  }

  .offering-card.large,
  .offering-card {
    min-height: 520px
  }

  .timeline,
  .timeline.four {
    grid-template-columns: 1fr
  }

  .t-step {
    min-height: auto
  }

  .format-duo {
    grid-template-columns: 1fr
  }
}


/* v8 additions: poetic style copy + bouquet gallery */
.style-poem {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.75;
  color: rgba(74, 36, 18, .56);
  margin: 16px 0 0;
  max-width: 320px;
}

/* v9 refinements: richer about section, shared footer, cleaner booking rows */
.about-editorial {
  display: grid;
  grid-template-columns: .95fr 1.05fr;
  gap: clamp(40px, 8vw, 118px);
  align-items: center;
}

.about-media {
  min-height: 560px;
  border-radius: 999px 999px 0 0;
}

.about-copy .poem {
  margin-top: 32px;
  max-width: 620px;
}

.about-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}

.about-list span {
  border: 1px solid rgba(74, 36, 18, .12);
  border-radius: 999px;
  padding: 9px 14px;
  font-size: 10px;
  letter-spacing: .13em;
  text-transform: uppercase;
  color: var(--muted);
  background: rgba(246, 238, 223, .55);
}

.booking-list {
  display: grid;
  gap: 12px;
}

.booking-row {
  display: grid;
  grid-template-columns: 54px minmax(150px, 220px) 1fr;
  gap: 24px;
  align-items: baseline;
  padding: 24px 0;
  border-bottom: 1px solid rgba(74, 36, 18, .10);
}

.booking-row:first-child {
  border-top: 1px solid rgba(74, 36, 18, .10);
}

.booking-no {
  font-family: var(--serif);
  font-style: italic;
  font-size: 24px;
  color: var(--gold);
}

.booking-row h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(24px, 2.4vw, 36px);
  line-height: 1.05;
  letter-spacing: -.04em;
  margin: 0;
  white-space: nowrap;
}

.booking-row p {
  margin: 0;
  color: var(--brown-2);
  font-size: clamp(15px, 1.5vw, 19px);
  line-height: 1.55;
  max-width: 620px;
}

.footer {
  background: #3a2114;
}

@media(max-width:900px) {
  .about-editorial {
    grid-template-columns: 1fr;
  }

  .about-media {
    min-height: 360px;
    border-radius: 180px 180px 0 0;
  }

  .booking-row {
    grid-template-columns: 44px 1fr;
    gap: 12px 18px;
  }

  .booking-row p {
    grid-column: 2;
  }

  .booking-row h3 {
    white-space: normal;
  }
}


/* Footer CTA fix: make Email us visible on dark footer */
.footer .btn,
.footer .btn.ghost {
  display: inline-flex;
  width: fit-content;
  margin-top: 18px;
  border-color: rgba(251, 247, 238, .72);
  background: var(--cream);
  color: var(--brown);
}

.footer .btn:hover,
.footer .btn.ghost:hover {
  background: transparent;
  color: var(--cream);
  border-color: var(--cream);
}


/* v10: integrated Netlify Bloom Bar enquiry form */
.form-hero .hero-media:after {
  background: linear-gradient(90deg, rgba(251, 247, 238, .18), rgba(251, 247, 238, .02));
}

.enquiry-intro {
  max-width: 920px;
}

.enquiry-layout {
  display: grid;
  grid-template-columns: minmax(220px, .38fr) minmax(0, 1fr);
  gap: clamp(42px, 8vw, 110px);
  align-items: start;
}

.enquiry-side {
  position: sticky;
  top: 110px;
}

.enquiry-form {
  display: grid;
  gap: clamp(44px, 6vw, 74px);
}

.hidden-field {
  display: none;
}

.form-block {
  border: 0;
  padding: 0 0 clamp(36px, 5vw, 62px);
  margin: 0;
  border-bottom: 1px solid rgba(74, 36, 18, .10);
}

.form-block legend {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(30px, 3.8vw, 54px);
  letter-spacing: -.05em;
  line-height: 1.05;
  margin-bottom: 30px;
  color: var(--brown);
}

.form-grid {
  display: grid;
  gap: 22px;
}

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

.enquiry-form label {
  display: grid;
  gap: 9px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.enquiry-form input[type="text"],
.enquiry-form input[type="email"],
.enquiry-form input[type="date"],
.enquiry-form input[type="number"],
.enquiry-form textarea {
  width: 100%;
  appearance: none;
  border: 0;
  border-bottom: 1px solid rgba(74, 36, 18, .22);
  background: transparent;
  padding: 13px 0 14px;
  color: var(--brown);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  border-radius: 0;
}

.enquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}

.enquiry-form input:focus,
.enquiry-form textarea:focus {
  border-bottom-color: var(--gold);
}

.enquiry-form input::placeholder,
.enquiry-form textarea::placeholder {
  color: rgba(74, 36, 18, .38);
}

.form-note {
  max-width: 660px;
  margin: -10px 0 22px;
  color: var(--muted);
}

.choice-row {
  display: grid;
  gap: 18px;
}

.style-choice-row,
.tier-choice-row {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.choice-card {
  position: relative;
  display: flex !important;
  flex-direction: column;
  gap: 12px !important;
  min-height: 100%;
  padding: 0 0 22px;
  cursor: pointer;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-weight: 400 !important;
  color: var(--brown) !important;
  border-bottom: 1px solid rgba(74, 36, 18, .12);
}

.choice-card input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}

.choice-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--paper);
  margin-bottom: 8px;
  transition: filter .2s ease, transform .2s ease;
}

.choice-card.no-image {
  padding: 24px 0;
  border-top: 1px solid rgba(74, 36, 18, .12);
}

.choice-title {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(23px, 2.1vw, 34px);
  line-height: 1.05;
  color: var(--brown);
  letter-spacing: -.04em;
}

.choice-desc,
.choice-meta {
  display: block;
  font-family: var(--sans);
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.choice-meta {
  color: rgba(74, 36, 18, .48);
  margin-top: auto;
}

.choice-card:has(input:checked) .choice-title,
.choice-card:hover .choice-title {
  color: var(--gold);
}

.choice-card:has(input:checked) img,
.choice-card:hover img {
  filter: saturate(1.08) contrast(1.04);
}

.choice-card:has(input:checked)::after {
  content: "Selected";
  position: absolute;
  top: 10px;
  right: 10px;
  background: rgba(251, 247, 238, .92);
  color: var(--brown);
  border-radius: 999px;
  padding: 7px 10px;
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
  font-weight: 700;
}

.colour-choice-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px;
}

.colour-choice-grid label,
.checkbox-list label {
  display: flex;
  align-items: center;
  gap: 12px;
  text-transform: none;
  letter-spacing: 0;
  font-size: 15px;
  font-weight: 400;
  color: var(--brown-2);
  cursor: pointer;
}

.colour-choice-grid input,
.checkbox-list input {
  accent-color: var(--gold);
}

.colour-choice-grid span {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--c);
  border: 1px solid rgba(74, 36, 18, .13);
  flex: 0 0 auto;
}

.checkbox-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px 24px;
}

.form-submit-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding-top: 4px;
}

.form-submit-row p {
  margin: 0;
  color: var(--muted);
}

.enquiry-cta {
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}

.enquiry-cta .lead {
  margin-left: auto;
  margin-right: auto;
}

.thank-you-page {
  min-height: calc(100vh - 82px);
  display: grid;
  place-items: center;
  padding: clamp(54px, 9vw, 120px) clamp(22px, 5vw, 72px);
}

.thank-you-card {
  max-width: 760px;
  text-align: center;
}

.thank-you-card .display {
  margin-bottom: 24px;
}

.thank-you-card .lead,
.thank-you-card .fine {
  margin-left: auto;
  margin-right: auto;
}

.thank-you-actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  margin-top: 34px;
}

@media(max-width:900px) {
  .enquiry-layout {
    grid-template-columns: 1fr;
  }

  .enquiry-side {
    position: static;
  }

  .style-choice-row,
  .tier-choice-row,
  .colour-choice-grid,
  .checkbox-list,
  .form-grid.two {
    grid-template-columns: 1fr;
  }

  .form-submit-row {
    align-items: flex-start;
    flex-direction: column;
  }
}
/* v11: flower offerings collection, product detail and static cart */
.shop-hero {
  min-height: 560px;
  padding: clamp(52px, 8vw, 112px) clamp(22px, 5vw, 72px);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 44px;
  background: linear-gradient(180deg, #fffaf2, var(--cream));
}

.shop-intro {
  background: var(--paper);
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(26px, 3vw, 46px);
}

.product-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.product-image {
  display: block;
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--paper);
  text-decoration: none;
}

.product-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(.92) contrast(.98);
  transition: transform .35s ease, filter .35s ease;
}

.product-card:hover .product-image img {
  transform: scale(1.025);
  filter: saturate(1) contrast(1.02);
}

.product-card-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 24px;
  padding-top: 22px;
  flex: 1;
}

.product-card-copy p {
  color: var(--muted);
  margin: 0;
}

.product-card-foot {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: center;
  padding-top: 18px;
  border-top: 1px solid rgba(74, 36, 18, .10);
}

.product-card-foot span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 26px;
  color: var(--gold);
}

.product-detail {
  display: grid;
  grid-template-columns: minmax(320px, .95fr) minmax(0, 1.05fr);
  gap: clamp(42px, 7vw, 96px);
  padding: clamp(42px, 6vw, 88px) clamp(22px, 5vw, 72px);
  align-items: start;
}

.product-detail-media {
  position: sticky;
  top: 110px;
  background: var(--paper);
}

.product-detail-media img {
  width: 100%;
  min-height: 640px;
  max-height: calc(100vh - 140px);
  object-fit: cover;
}

.product-detail-copy .display {
  font-size: clamp(48px, 6.4vw, 92px);
}

.product-detail-copy > p:not(.lead) {
  color: var(--brown-2);
  max-width: 680px;
}

.product-form,
.checkout-form {
  display: grid;
  gap: 22px;
  margin-top: 34px;
  max-width: 620px;
}

.product-form label,
.checkout-form label {
  display: grid;
  gap: 9px;
  font-size: 10px;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 700;
}

.product-form select,
.product-form input,
.product-form textarea,
.checkout-form input,
.checkout-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid rgba(74, 36, 18, .22);
  background: transparent;
  padding: 13px 0 14px;
  color: var(--brown);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.5;
  outline: none;
  border-radius: 0;
}

.product-form textarea,
.checkout-form textarea {
  min-height: 112px;
  resize: vertical;
}

.product-includes {
  margin-top: 46px;
  padding: 30px;
  background: var(--paper);
}

.product-includes ul {
  margin: 0;
  padding-left: 18px;
  color: var(--brown-2);
}

.cart-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 420px);
  gap: clamp(34px, 6vw, 86px);
  align-items: start;
}

.cart-list {
  display: grid;
  gap: 14px;
}

.cart-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 28px;
  align-items: start;
  padding: 26px 0;
  border-bottom: 1px solid rgba(74, 36, 18, .12);
}

.cart-item h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 32px;
  margin: 0 0 8px;
  letter-spacing: -.04em;
}

.cart-item p {
  margin: 0;
  color: var(--brown-2);
}

.cart-item strong,
.cart-summary h2 {
  display: block;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 36px;
  color: var(--gold);
  text-align: right;
}

.cart-remove {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .14em;
  font-size: 10px;
  cursor: pointer;
  padding: 10px 0 0;
}

.cart-summary,
.empty-cart {
  background: var(--paper);
  padding: clamp(30px, 4vw, 52px);
}

.cart-summary h2 {
  text-align: left;
  margin: 0 0 22px;
}

@media(max-width:900px) {
  .product-grid,
  .product-detail,
  .cart-layout {
    grid-template-columns: 1fr;
  }

  .product-detail-media {
    position: relative;
    top: auto;
  }

  .product-detail-media img {
    min-height: 420px;
    max-height: none;
  }

  .cart-item {
    grid-template-columns: 1fr;
  }

  .cart-item strong {
    text-align: left;
  }
}

/* v12: tighter browsing scale + Shopify-style cart checkout */
@media (min-width: 901px) {
  .site-nav { padding-top: 13px; padding-bottom: 13px; }
  .brand { font-size: 21px; }
  .hero { min-height: calc(82vh - 61px); grid-template-columns: minmax(360px, .85fr) minmax(0, 1.15fr); }
  .hero-copy { padding: clamp(34px, 5.6vw, 72px); gap: 38px; }
  .hero-media { min-height: 450px; }
  .display { font-size: clamp(44px, 6.6vw, 86px); margin-bottom: 20px; }
  .lead { font-size: clamp(16px, 1.45vw, 19px); line-height: 1.55; }
  .section { padding-top: clamp(46px, 6.5vw, 86px); padding-bottom: clamp(46px, 6.5vw, 86px); }
  .section.compact { padding-top: 48px; padding-bottom: 48px; }
  .section-title { font-size: clamp(34px, 4vw, 58px); margin-bottom: 18px; }
  .poem { font-size: clamp(23px, 2.8vw, 38px); }
  .offer-list { margin-top: 36px; }
  .offer-row { padding: 24px 0; }
}

.shop-hero {
  min-height: 340px;
  padding-top: clamp(42px, 6vw, 72px);
  padding-bottom: clamp(34px, 5vw, 62px);
  gap: 24px;
}

.shop-hero .display { max-width: 900px; }
.shop-hero .lead { max-width: 760px; }
.shop-intro .section-title { max-width: 760px; }

.product-grid { gap: clamp(20px, 2.4vw, 34px); }
.product-image { aspect-ratio: 4 / 5; }
.product-card-copy { gap: 16px; padding-top: 16px; }
.product-card-copy .h3 { margin-top: 0; margin-bottom: 8px; }
.product-card-copy p { font-size: 14px; line-height: 1.55; }
.product-card-foot { padding-top: 14px; }
.product-card-foot span { font-size: 22px; }

.product-detail {
  grid-template-columns: minmax(300px, .82fr) minmax(0, 1.18fr);
  gap: clamp(32px, 5vw, 72px);
  padding-top: clamp(34px, 5vw, 64px);
  padding-bottom: clamp(34px, 5vw, 64px);
}
.product-detail-media img { min-height: 500px; }
.product-detail-copy .display { font-size: clamp(42px, 5vw, 72px); }
.product-form { gap: 16px; margin-top: 26px; }
.product-includes { margin-top: 30px; padding: 24px; }

.checkout-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(330px, .75fr);
  gap: clamp(24px, 4vw, 54px);
  align-items: start;
  max-width: 1180px;
  margin: 0 auto;
}

.checkout-panel {
  background: #fffaf2;
  border: 1px solid rgba(74, 36, 18, .12);
  padding: clamp(22px, 3vw, 34px);
}

.checkout-title {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(32px, 3.6vw, 48px);
  line-height: 1;
  letter-spacing: -.045em;
  margin: 0 0 12px;
}

.checkout-form-compact { margin-top: 24px; gap: 16px; max-width: none; }
.checkout-two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.checkout-form-compact textarea { min-height: 82px; }
.checkout-form-compact input,
.checkout-form-compact textarea { font-size: 15px; padding: 10px 0 11px; }

.checkout-summary {
  position: sticky;
  top: 92px;
  background: var(--paper);
}
.checkout-summary-head,
.checkout-totals div {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
}
.checkout-summary-head { margin-bottom: 18px; }
.checkout-items { display: grid; gap: 0; border-top: 1px solid rgba(74, 36, 18, .12); }
.checkout-item {
  position: relative;
  display: grid;
  grid-template-columns: 74px 1fr auto;
  gap: 14px;
  align-items: start;
  padding: 16px 0;
  border-bottom: 1px solid rgba(74, 36, 18, .12);
}
.checkout-item img {
  width: 74px;
  height: 92px;
  object-fit: cover;
  background: var(--cream);
}
.checkout-item h3 {
  font-family: var(--serif);
  font-style: italic;
  font-weight: 400;
  font-size: 23px;
  letter-spacing: -.035em;
  margin: 0 0 4px;
}
.checkout-item p { margin: 0; color: var(--brown-2); font-size: 13px; line-height: 1.45; }
.checkout-item strong { font-family: var(--serif); font-style: italic; font-weight: 400; color: var(--gold); }
.checkout-qty {
  position: absolute;
  left: 58px;
  top: 8px;
  min-width: 24px;
  height: 24px;
  border-radius: 999px;
  background: var(--brown);
  color: var(--cream);
  display: inline-grid;
  place-items: center;
  font-size: 10px;
}
.checkout-totals { display: grid; gap: 10px; padding-top: 18px; }
.checkout-totals span { color: var(--muted); }
.checkout-totals strong { font-family: var(--serif); font-weight: 400; color: var(--brown); }
.checkout-total { border-top: 1px solid rgba(74, 36, 18, .16); padding-top: 12px; margin-top: 2px; }
.checkout-total strong { font-size: 28px; color: var(--gold); font-style: italic; }
.checkout-note { font-size: 13px; margin-bottom: 0; }
.cart-layout { display: none; }

@media(max-width:900px) {
  .shop-hero { min-height: auto; }
  .checkout-shell { grid-template-columns: 1fr; }
  .checkout-summary { position: static; order: -1; }
  .checkout-two-col { grid-template-columns: 1fr; }
}

/* v10: global compact viewport scale
   Keeps every cover/hero inside the visible browser window and brings content up sooner. */
@media (min-width: 901px) {
  body { font-size: 14px; line-height: 1.58; }
  .site-nav { padding-top: 11px; padding-bottom: 11px; }
  .brand { font-size: 20px; }
  .brand span, .nav-links a, .eyebrow, .btn, .caption { font-size: 9px; }
  .nav-links { gap: 22px; }

  .hero {
    min-height: min(680px, calc(78vh - 56px));
    grid-template-columns: minmax(330px, .82fr) minmax(0, 1.18fr);
  }
  .hero-copy {
    padding: clamp(28px, 4.6vw, 58px);
    gap: 24px;
  }
  .hero-media {
    min-height: 0;
    height: min(680px, calc(78vh - 56px));
  }
  .display {
    font-size: clamp(38px, 5.3vw, 72px);
    line-height: .92;
    margin-bottom: 16px;
  }
  .lead {
    font-size: clamp(15px, 1.22vw, 17px);
    line-height: 1.5;
    max-width: 560px;
  }
  .nav-cta { gap: 12px; }
  .btn { min-height: 38px; padding: 10px 17px; }

  .section {
    padding-top: clamp(38px, 5vw, 68px);
    padding-bottom: clamp(38px, 5vw, 68px);
  }
  .section.compact {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .section.no-rule {
    padding-top: clamp(42px, 5vw, 72px);
    padding-bottom: clamp(42px, 5vw, 72px);
  }
  .section-title {
    font-size: clamp(30px, 3.6vw, 50px);
    line-height: 1.02;
    margin-bottom: 14px;
  }
  .poem { font-size: clamp(20px, 2.3vw, 32px); }

  .about-editorial { grid-template-columns: minmax(260px, .78fr) minmax(0, 1fr); gap: clamp(30px, 4vw, 60px); }
  .about-media, .media, .chapter .media { min-height: 0; }
  .about-media img, .media img, .chapter .media img { max-height: min(520px, 62vh); object-fit: cover; }
  .chapter { padding: clamp(42px, 5vw, 72px) clamp(22px, 5vw, 72px); gap: clamp(30px, 4vw, 60px); }

  .style-card img, .offering-card img, .size-card img { height: clamp(260px, 33vw, 390px); object-fit: cover; }
  .product-image { aspect-ratio: 4 / 4.8; }
  .product-card-copy p { font-size: 13px; }

  .shop-hero {
    min-height: 0;
    padding-top: clamp(30px, 4.5vw, 54px);
    padding-bottom: clamp(26px, 4vw, 48px);
  }
  .product-detail {
    padding-top: clamp(28px, 4vw, 50px);
    padding-bottom: clamp(28px, 4vw, 50px);
  }
  .product-detail-media img {
    min-height: 0;
    height: min(620px, calc(78vh - 96px));
    object-fit: cover;
  }
  .product-detail-copy .display { font-size: clamp(36px, 4.5vw, 62px); }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
  }
  .hero-copy {
    padding: 28px 24px 30px;
    gap: 28px;
  }
  .hero-media {
    min-height: 0;
    height: 58vh;
  }
  .display {
    font-size: clamp(38px, 14vw, 58px);
    margin-bottom: 14px;
  }
  .lead { font-size: 15px; line-height: 1.5; }
  .section, .section.no-rule, .section.compact {
    padding-top: 38px;
    padding-bottom: 38px;
  }
  .section-title { font-size: clamp(30px, 10vw, 42px); }
  .style-card img, .offering-card img, .size-card img { height: 310px; object-fit: cover; }
}

/* v11: exact viewport hero covers
   Main cover sections now fit the current browser window exactly, accounting for the sticky nav. */
:root { --nav-height-desktop: 61px; --nav-height-mobile: 64px; }

@media (min-width: 901px) {
  .hero {
    height: calc(100vh - var(--nav-height-desktop));
    min-height: calc(100vh - var(--nav-height-desktop));
    max-height: calc(100vh - var(--nav-height-desktop));
    overflow: hidden;
  }

  .hero-copy {
    min-height: 0;
    height: 100%;
    overflow: hidden;
  }

  .hero-media {
    min-height: 0;
    height: 100%;
    max-height: none;
  }

  .hero-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }

  /* Collection/cart headers should not behave like oversized cover images. */
  .shop-hero {
    min-height: 0;
    padding-top: clamp(34px, 4.5vw, 58px);
    padding-bottom: clamp(30px, 4vw, 52px);
  }
}

@media (max-width: 900px) {
  .hero {
    min-height: auto;
    height: auto;
    max-height: none;
    overflow: visible;
  }

  .hero-media {
    height: calc(100svh - var(--nav-height-mobile));
    min-height: 0;
    max-height: none;
  }

  .hero-media img {
    height: 100%;
    width: 100%;
    object-fit: cover;
  }
}

/* v12: make homepage cards and shop collection feel less oversized */
@media (min-width: 901px) {
  /* Home: signature style images should read as cards, not cover panels. */
  .style-triptych {
    gap: clamp(20px, 2.2vw, 34px);
    margin-top: 34px;
  }

  .style-photo {
    aspect-ratio: 4 / 5;
    max-height: 390px;
  }

  .style-photo img {
    height: 100%;
  }

  /* Home: Three ways cards reduced so a whole section is easier to read. */
  .offering-gallery {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    grid-template-rows: auto;
    gap: clamp(18px, 2.2vw, 32px);
  }

  .offering-card,
  .offering-card.large {
    grid-row: auto;
    min-height: 0;
    height: clamp(340px, 34vw, 460px);
  }

  .offering-copy {
    left: clamp(20px, 2.2vw, 34px);
    right: clamp(20px, 2.2vw, 34px);
    bottom: clamp(20px, 2.2vw, 32px);
  }

  .offering-copy h3 {
    font-size: clamp(30px, 3.2vw, 46px);
    line-height: .98;
  }

  .offering-copy p {
    font-size: 14px;
    line-height: 1.45;
  }
}

.collection-heading {
  display: grid;
  grid-template-columns: minmax(220px, .7fr) minmax(360px, 1.3fr);
  gap: clamp(28px, 6vw, 96px);
  align-items: end;
  padding: clamp(46px, 7vw, 92px) clamp(22px, 5vw, 72px) clamp(30px, 4vw, 54px);
  background: linear-gradient(180deg, #fffaf2, var(--cream));
}

.collection-heading .display {
  margin: 0;
  max-width: 520px;
}

.collection-heading .lead {
  max-width: 760px;
  margin: 0;
}

.collection-products {
  padding-top: clamp(24px, 3vw, 42px);
}

.collection-products .product-grid {
  align-items: start;
}

@media (max-width: 900px) {
  .style-triptych,
  .offering-gallery {
    gap: 24px;
  }

  .style-photo {
    aspect-ratio: 4 / 5;
  }

  .offering-card,
  .offering-card.large {
    min-height: 0;
    height: 340px;
  }

  .collection-heading {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 38px 24px 26px;
  }
}

/* v13: Floral Atelier-inspired product/cart logic */
.product-detail {
  align-items: start;
}
.product-gallery-tfa {
  display: grid;
  gap: 14px;
}
.product-main-image {
  width: 100%;
  height: min(68vh, 680px);
  min-height: 440px;
  object-fit: cover;
  background: var(--cream);
}
.product-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.product-thumbs img {
  width: 100%;
  aspect-ratio: 1 / 1;
  object-fit: cover;
  background: var(--cream);
}
.product-buybox {
  position: sticky;
  top: 92px;
}
.product-price {
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 38px);
  font-style: italic;
  color: var(--gold);
  margin: -8px 0 18px;
}
.tfa-product-form fieldset {
  border: 0;
  padding: 0;
  margin: 0;
}
.tfa-product-form legend,
.quantity-row > span,
.tfa-product-form label small {
  display: block;
  font-size: 11px;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 9px;
}
.option-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}
.option-pills input {
  position: absolute;
  opacity: 0;
  pointer-events: none;
}
.option-pills span {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(74, 36, 18, .22);
  padding: 9px 16px;
  background: rgba(255,255,255,.35);
  font-size: 13px;
}
.option-pills input:checked + span {
  border-color: var(--brown);
  background: var(--paper);
}
.quantity-row {
  display: grid;
  grid-template-columns: 1fr 38px 58px 38px;
  align-items: end;
  gap: 8px;
  max-width: 260px;
}
.quantity-row button {
  height: 38px;
  border: 1px solid rgba(74, 36, 18, .22);
  background: transparent;
  color: var(--brown);
  cursor: pointer;
}
.quantity-row input {
  text-align: center;
  border: 1px solid rgba(74, 36, 18, .22);
  padding: 8px;
}
.cart-tfa-shell {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 420px);
  gap: clamp(28px, 5vw, 72px);
  align-items: start;
}
.cart-tfa-header {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  align-items: baseline;
  margin-bottom: 24px;
}
.cart-tfa-header h1 {
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(38px, 4.2vw, 58px);
  font-weight: 400;
  letter-spacing: -.045em;
  margin: 0;
}
.cart-tfa-items {
  border-top: 1px solid rgba(74, 36, 18, .14);
}
.cart-tfa-item {
  display: grid;
  grid-template-columns: 96px minmax(0, 1fr) auto auto;
  gap: 18px;
  align-items: start;
  padding: 20px 0;
  border-bottom: 1px solid rgba(74, 36, 18, .14);
}
.cart-tfa-item img {
  width: 96px;
  height: 118px;
  object-fit: cover;
  background: var(--cream);
}
.cart-tfa-item h2 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 28px;
  font-weight: 400;
  letter-spacing: -.035em;
  margin: 0 0 6px;
}
.cart-tfa-item p { margin: 0 0 6px; }
.cart-tfa-qty,
.cart-tfa-item strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 20px;
  font-weight: 400;
  color: var(--gold);
}
.cart-tfa-summary {
  position: sticky;
  top: 92px;
  background: #fffaf2;
  border: 1px solid rgba(74, 36, 18, .12);
  padding: clamp(22px, 3vw, 34px);
}
.tfa-cart-form { max-width: none; gap: 18px; }
.tfa-cart-form textarea { min-height: 78px; }
.cart-tfa-total {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  border-top: 1px solid rgba(74, 36, 18, .14);
  padding-top: 18px;
  margin-top: 2px;
}
.cart-tfa-total span { color: var(--muted); }
.cart-tfa-total strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 34px;
  font-weight: 400;
  color: var(--gold);
}
.delivery-box,
.customer-box {
  display: grid;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid rgba(74, 36, 18, .12);
}
.full-btn { width: 100%; justify-content: center; }
@media(max-width:900px) {
  .product-main-image { height: auto; min-height: 0; aspect-ratio: 4 / 5; }
  .product-buybox { position: static; }
  .cart-tfa-shell { grid-template-columns: 1fr; }
  .cart-tfa-summary { position: static; }
  .cart-tfa-item { grid-template-columns: 76px 1fr; }
  .cart-tfa-item img { width: 76px; height: 96px; }
  .cart-tfa-qty, .cart-tfa-item strong { grid-column: 2; }
}


/* v14: restore editorial two-column offering layout, but keep images compact */
@media (min-width: 901px) {
  #offerings .offering-gallery {
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    grid-template-rows: repeat(2, minmax(0, 1fr));
    gap: clamp(22px, 3vw, 40px);
    max-width: 1280px;
    margin: 0 auto;
  }

  #offerings .offering-card.large {
    grid-row: span 2;
    height: clamp(560px, 64vh, 720px);
    min-height: 0;
  }

  #offerings .offering-card:not(.large) {
    height: clamp(260px, 30vh, 340px);
    min-height: 0;
  }

  #offerings .offering-copy h3 {
    font-size: clamp(38px, 4.4vw, 62px);
  }

  #offerings .offering-copy p {
    max-width: 470px;
  }

  /* Center signature style cards within the page instead of letting the grid drift. */
  .style-triptych {
    max-width: 1180px;
    margin-left: auto;
    margin-right: auto;
    justify-content: center;
  }

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

@media (max-width: 900px) {
  #offerings .offering-gallery {
    grid-template-columns: 1fr;
    max-width: 640px;
    margin: 0 auto;
  }

  #offerings .offering-card,
  #offerings .offering-card.large {
    height: 360px;
  }
}

/* v14: first cart step only asks for fulfilment details */
.fulfilment-choice {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.fulfilment-choice label {
  border: 1px solid rgba(74, 36, 18, .18);
  padding: 14px 14px 13px;
  cursor: pointer;
  background: var(--cream);
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--brown-2);
}

.fulfilment-choice input {
  width: auto;
  margin: 0;
}

.customer-box { display: none !important; }

.delivery-box .checkout-two-col {
  grid-template-columns: 1fr 1fr;
}

@media (max-width: 700px) {
  .fulfilment-choice,
  .delivery-box .checkout-two-col {
    grid-template-columns: 1fr;
  }
}

/* v16: cleaner cart step and smaller cart typography */
body:has([data-cart]) .section.no-rule {
  padding-top: clamp(34px, 4vw, 64px);
  padding-bottom: clamp(56px, 7vw, 92px);
}
body:has([data-cart]) .cart-tfa-shell {
  max-width: 1240px;
  gap: clamp(28px, 4vw, 56px);
}
body:has([data-cart]) .cart-tfa-header {
  margin-bottom: 16px;
}
body:has([data-cart]) .cart-tfa-header h1 {
  font-size: clamp(30px, 3vw, 42px);
  letter-spacing: -.035em;
}
body:has([data-cart]) .cart-tfa-header h1 span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  margin-left: 6px;
  border-radius: 999px;
  background: rgba(74, 36, 18, .08);
  font-family: var(--sans);
  font-size: 13px;
  font-style: normal;
  letter-spacing: 0;
  vertical-align: middle;
}
body:has([data-cart]) .cart-tfa-item {
  padding: 16px 0;
}
body:has([data-cart]) .cart-tfa-item h2 {
  font-size: 22px;
}
body:has([data-cart]) .cart-tfa-qty,
body:has([data-cart]) .cart-tfa-item strong {
  font-size: 17px;
}
body:has([data-cart]) .cart-tfa-summary {
  padding: clamp(20px, 2.5vw, 28px);
}
body:has([data-cart]) .cart-tfa-total strong {
  font-size: 28px;
}
body:has([data-cart]) .delivery-box {
  gap: 12px;
  padding-top: 16px;
}
body:has([data-cart]) .tfa-cart-form {
  gap: 14px;
}

.checkout-error {
  color: #8a3f2b;
}

button[disabled] {
  cursor: wait;
  opacity: 0.7;
}
