: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: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 44px);
  margin-top: 54px;
  align-items: start
}

.style-card {
  text-decoration: none;
  color: inherit
}

.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;
  }
}