/* Meraki Marquees mockup. Palette, type scale and focus ring are the
   outline's (§2.5); the layout is ours. Mobile overrides are gathered at
   the foot of the file, one block per breakpoint. */

@font-face {
  font-family: 'Newsreader';
  src: url('fonts/Newsreader-normal.woff2') format('woff2');
  font-weight: 200 800;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Newsreader';
  src: url('fonts/Newsreader-italic.woff2') format('woff2');
  font-weight: 200 800;
  font-style: italic;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('fonts/PublicSans-normal.woff2') format('woff2');
  font-weight: 100 900;
  font-style: normal;
  font-display: swap;
}
@font-face {
  font-family: 'Public Sans';
  src: url('fonts/PublicSans-italic.woff2') format('woff2');
  font-weight: 100 900;
  font-style: italic;
  font-display: swap;
}

:root {
  --brand-maroon: #894B4B;   /* the live Start Quote button colour; the rest are tints of it, VERIFY against brand assets */
  --maroon-dark: #5E3232;
  --maroon-deep: #2E1414;
  --rose: #C99393;
  --rose-pale: #F2E4E2;
  --canvas: #FAF8F5;
  --white: #FFFFFF;
  --ink: #241C1C;
  --ink-muted: #6B5D5D;
  --border: #8F7C70;
  --rule: #E3DAD4;
  --alert: #9B352C;

  --serif: 'Newsreader', 'Iowan Old Style', 'Palatino Linotype', Georgia, serif;
  --sans: 'Public Sans', -apple-system, 'Segoe UI', Helvetica, Arial, sans-serif;

  --fs-title: 52px;
  --fs-section: 33px;
  --fs-sub: 26px;
  --fs-body: 17px;
  --fs-small: 15px;

  --measure: 68ch;
  --container: 1200px;
  --gutter: 24px;
  --header-h: 72px;
  --radius: 3px;
  --shadow: 0 1px 2px rgba(36, 28, 28, 0.06), 0 10px 30px rgba(36, 28, 28, 0.07);
}

*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header-h) + 16px); }

body {
  margin: 0;
  font-family: var(--sans);
  font-size: var(--fs-body);
  line-height: 1.6;
  color: var(--ink);
  background: var(--canvas);
  font-variant-numeric: tabular-nums;
}

h1, h2, h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.15;
  margin: 0 0 0.5em;
  text-wrap: balance;
  letter-spacing: -0.005em;
}
h1 { font-size: var(--fs-title); font-variation-settings: 'opsz' 72; }
h2 { font-size: var(--fs-section); font-variation-settings: 'opsz' 48; }
h3 { font-size: var(--fs-sub); font-variation-settings: 'opsz' 24; }

p { margin: 0 0 1em; max-width: var(--measure); }
p:last-child { margin-bottom: 0; }
ul, ol { padding-left: 1.2em; }
li { margin-bottom: 0.3em; }
a { color: var(--brand-maroon); text-underline-offset: 0.15em; text-decoration-thickness: 1px; }
a:hover { color: var(--maroon-dark); }
small, .small { font-size: var(--fs-small); }
.muted { color: var(--ink-muted); }
img { max-width: 100%; height: auto; display: block; }
button, input, select, textarea { font: inherit; color: inherit; }

/* Two-tone focus ring (§2.5): the white inner reads on maroon, the dark
   outer reads on canvas, so one of them always clears 3:1. */
:focus { outline: none; }
:focus-visible {
  outline: 2px solid var(--maroon-deep);
  outline-offset: 2px;
  box-shadow: 0 0 0 2px var(--white);
}

.sr-only {
  position: absolute !important;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden; clip: rect(0 0 0 0);
  white-space: nowrap; border: 0;
}
.skip-link {
  position: absolute; left: 16px; top: -100px;
  background: var(--white); color: var(--ink);
  padding: 10px 14px; z-index: 100; border-radius: var(--radius);
}
.skip-link:focus { top: 12px; }

/* Symbol definitions. The hidden attribute does nothing on inline SVG, so this is done here. */
.svg-defs { display: none; }

.container { max-width: var(--container); margin-inline: auto; padding-inline: var(--gutter); }

/* Grid and flex children default to min-width:auto, which let a caption's
   32ch max-width act as a minimum and pushed the 390px layout to 694px. */
.product > *, .spec > *, .hire > *, .quote-layout > *, .gallery > *, .gallery__thumbs > *, .sizes > * { min-width: 0; }


/* Controls */

.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  min-height: 44px; padding: 0 20px;
  border: 1px solid var(--brand-maroon); border-radius: var(--radius);
  background: var(--brand-maroon); color: var(--white);
  font-weight: 600; text-decoration: none; cursor: pointer;
  line-height: 1.2; white-space: nowrap;
}
.btn:hover { background: var(--maroon-dark); border-color: var(--maroon-dark); color: var(--white); }
.btn--secondary { background: transparent; color: var(--brand-maroon); }
.btn--secondary:hover { background: var(--rose-pale); color: var(--maroon-dark); }
.btn--block { width: 100%; }
.btn--large { min-height: 52px; font-size: 18px; padding-inline: 26px; }
.btn[aria-disabled="true"] { opacity: 0.55; cursor: not-allowed; }

.link-btn {
  background: none; border: 0; padding: 0; color: var(--brand-maroon);
  text-decoration: underline; text-underline-offset: 0.15em; cursor: pointer;
}
.link-btn:hover { color: var(--maroon-dark); }

.qty { display: inline-flex; align-items: stretch; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white); }
.qty button {
  width: 44px; min-height: 44px; border: 0; background: transparent; cursor: pointer;
  font-size: 20px; line-height: 1; color: var(--brand-maroon);
}
.qty button:hover { background: var(--rose-pale); }
.qty button[disabled] { color: var(--ink-muted); opacity: 0.5; cursor: not-allowed; background: transparent; }
.qty input {
  width: 52px; text-align: center; border: 0; border-inline: 1px solid var(--rule);
  background: transparent; font-size: var(--fs-body);
  -moz-appearance: textfield;
}
.qty input::-webkit-outer-spin-button, .qty input::-webkit-inner-spin-button { -webkit-appearance: none; margin: 0; }
.qty--small button { width: 40px; min-height: 40px; }
.qty--small input { width: 44px; }

.field { display: block; margin-bottom: 16px; }
.field > span { display: block; font-weight: 600; margin-bottom: 6px; }
.field input {
  width: 100%; min-height: 44px; padding: 8px 12px;
  border: 1px solid var(--border); border-radius: var(--radius); background: var(--white);
}
.field .hint { display: block; font-weight: 400; font-size: var(--fs-small); color: var(--ink-muted); margin-top: 4px; }

/* Placeholder boxes. Anything the client has to supply (photographs, the
   elevation drawing, the trust figures) uses this and says what goes there. */
.ph {
  position: relative; width: 100%; max-width: 100%;
  background: var(--rose-pale);
  border: 1px dashed var(--rose);
  border-radius: var(--radius);
  display: flex; align-items: center; justify-content: center; text-align: center;
  padding: 16px; color: var(--ink-muted); font-size: var(--fs-small); line-height: 1.4;
}
.ph[data-ratio="3:2"] { aspect-ratio: 3 / 2; }
.ph[data-ratio="16:9"] { aspect-ratio: 16 / 9; }
.ph > span { max-width: 32ch; min-width: 0; }
.ph > span b { display: block; color: var(--maroon-dark); font-weight: 600; margin-bottom: 4px; }
.ph--small { font-size: 13px; padding: 8px; }
.ph--small > span b { margin-bottom: 0; }
.ph--strip { padding: 22px 24px; text-align: left; justify-content: flex-start; }
.ph--strip > span { max-width: none; }
.ph--strip ul { margin: 8px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 6px 28px; }

.verify {
  display: inline-block; padding: 1px 7px; border-radius: 2px;
  background: var(--white); border: 1px solid var(--alert); color: var(--alert);
  font-size: 13px; font-weight: 600; white-space: nowrap; vertical-align: middle;
}


/* Header */

.site-header {
  position: sticky; top: 0; z-index: 40;
  background: var(--white); border-bottom: 1px solid var(--rule);
}
.site-header__inner {
  min-height: var(--header-h);
  display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 24px;
}
.logo { display: inline-flex; align-items: center; }
.logo img { height: 40px; width: auto; }

.nav { display: flex; align-items: center; justify-content: center; gap: 4px; margin: 0; padding: 0; list-style: none; }
.nav li { white-space: nowrap; }
.nav a { display: inline-block; padding: 10px 12px; color: var(--ink); text-decoration: none; border-radius: var(--radius); }
.nav a:hover { color: var(--maroon-dark); background: var(--rose-pale); }
.nav a[aria-current="page"] { color: var(--brand-maroon); text-decoration: underline; text-underline-offset: 0.35em; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.header-phone { color: var(--ink); text-decoration: none; white-space: nowrap; }
.header-phone:hover { color: var(--maroon-dark); text-decoration: underline; }

.quote-btn {
  display: inline-flex; align-items: center; gap: 10px; min-height: 44px; padding: 0 14px 0 12px;
  border: 1px solid var(--brand-maroon); border-radius: 22px; background: var(--white);
  color: var(--brand-maroon); font-weight: 600; cursor: pointer;
}
.quote-btn:hover { background: var(--rose-pale); color: var(--maroon-dark); }
.quote-btn__count {
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 24px; height: 24px; padding: 0 6px; border-radius: 12px;
  background: var(--brand-maroon); color: var(--white); font-size: 14px;
}
.menu-btn { display: none; }

.crumbs { margin: 16px 0 0; padding: 0; list-style: none; display: flex; flex-wrap: wrap; gap: 4px 0; font-size: var(--fs-small); color: var(--ink-muted); }
.crumbs li + li::before { content: '/'; padding: 0 8px; color: var(--rose); }
.crumbs a { color: var(--ink-muted); }
.crumbs a:hover { color: var(--maroon-dark); }
.crumbs [aria-current] { color: var(--ink); }


/* Page furniture */

.page-title { margin: 20px 0 8px; }
.lede { font-size: 20px; line-height: 1.5; color: var(--ink-muted); max-width: 56ch; }

.section { padding-block: 48px; }
.section + .section { border-top: 1px solid var(--rule); }
.section-head { display: flex; align-items: baseline; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.section-head h2 { margin-bottom: 0; }

.notice {
  padding: 14px 18px; border-radius: var(--radius); border: 1px solid var(--rule); background: var(--white);
  display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: start;
}
.notice svg { width: 22px; height: 22px; margin-top: 2px; }
.notice--warn { border-color: var(--alert); }
.notice--warn svg { color: var(--alert); }
.notice--info { border-left: 3px solid var(--rose); }
.notice p { max-width: none; }

/* The two objects on the site: the buy panel and the quote summary. Nothing
   else gets a box with a shadow, so these read as the things to act on. */
.buy, .totals {
  background: var(--white); border: 1px solid var(--rule); border-radius: 4px;
  box-shadow: var(--shadow);
  position: sticky; top: calc(var(--header-h) + 16px);
}


/* Individual marquee */

.product { display: grid; grid-template-columns: minmax(0, 7fr) minmax(320px, 4fr); gap: 40px; align-items: start; padding-block: 24px 40px; }
.product--roundhouse { padding-block: 0; }

.gallery { display: grid; gap: 12px; }
.gallery__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }

.buy { padding: 28px; }
/* 40px, not the 52px page-title step: the sticky panel can't take it. */
.buy h1 { margin-bottom: 4px; font-size: 40px; }
.buy__kicker { color: var(--ink-muted); margin-bottom: 20px; }
.buy__source { margin: 18px 0 0; padding: 18px 0 0; border-top: 1px solid var(--rule); font-size: var(--fs-small); color: var(--ink-muted); }

.capacity { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 22px; }
.capacity__tile { display: grid; grid-template-columns: auto 1fr; gap: 12px; align-items: center; padding: 12px 14px; background: var(--canvas); border-radius: var(--radius); }
.capacity__tile svg { width: 34px; height: 34px; color: var(--brand-maroon); }
.capacity__num { font-size: 30px; line-height: 1; font-weight: 600; }
.capacity__lbl { display: block; color: var(--ink-muted); font-size: var(--fs-small); margin-top: 3px; }

.price { display: flex; align-items: baseline; gap: 10px; flex-wrap: wrap; margin-bottom: 4px; }
.price__amount { font-size: 34px; font-weight: 600; line-height: 1; }
.price__basis { color: var(--ink-muted); }
.price-note { color: var(--ink-muted); font-size: var(--fs-small); margin-bottom: 20px; }

.add-row { display: flex; gap: 12px; align-items: stretch; flex-wrap: wrap; }
.add-row .btn { flex: 1 1 200px; }
.in-quote { margin-top: 12px; padding: 10px 12px; background: var(--rose-pale); border-radius: var(--radius); font-size: var(--fs-small); }
.in-quote:empty { display: none; }

.buy-bar {
  display: none; position: fixed; left: 0; right: 0; bottom: 0; z-index: 30;
  background: var(--white); border-top: 1px solid var(--rule); padding: 10px var(--gutter);
  align-items: center; gap: 12px;
}
.buy-bar .price__amount { font-size: 22px; }
.buy-bar .btn { flex: 1; }

.spec { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; align-items: start; }
.spec-table { width: 100%; border-collapse: collapse; }
.spec-table th, .spec-table td { text-align: left; padding: 12px 0; border-bottom: 1px solid var(--rule); vertical-align: top; }
.spec-table th { font-weight: 500; color: var(--ink-muted); width: 44%; }
.spec-table td { font-weight: 600; }
.spec-table td small { font-weight: 400; color: var(--ink-muted); }
.spec-source { margin-top: 12px; }
.spec-about { margin-top: 32px; }

.plan { margin: 0; }
.plan svg { width: 100%; height: auto; display: block; }
.plan figcaption { margin-top: 12px; font-size: var(--fs-small); color: var(--ink-muted); }
.plan + .plan { margin-top: 28px; }

.included { columns: 2; column-gap: 40px; padding-left: 1.2em; }

.sizes { display: grid; grid-template-columns: 1fr 1fr; gap: 0 40px; }
.size-link {
  display: grid; grid-template-columns: 1fr auto; gap: 12px; align-items: center;
  padding: 16px 0; border-top: 1px solid var(--rule);
  text-decoration: none; color: var(--ink);
}
.size-link b { font-family: var(--serif); font-size: 22px; font-weight: 500; display: block; color: var(--brand-maroon); }
a.size-link:hover b { text-decoration: underline; text-underline-offset: 0.2em; }
.size-link span { color: var(--ink-muted); font-size: var(--fs-small); }
.size-link .size-link__price { font-weight: 600; font-size: var(--fs-body); color: var(--ink); }
.size-link--empty b { color: var(--ink-muted); }

.all-sizes { display: flex; flex-wrap: wrap; gap: 0 4px; margin: 20px 0 0; padding: 0; list-style: none; }
.all-sizes a { display: inline-block; padding: 10px 10px; min-height: 44px; }
.all-sizes a[aria-current="page"] { color: var(--maroon-dark); font-weight: 600; }


/* Hire items. A row in a list, not a card: name and note on the left,
   price in the middle, the control on the right. */

.items { border-top: 1px solid var(--rule); }
.item {
  display: grid; grid-template-columns: minmax(0, 1fr) 190px auto; grid-template-rows: auto auto;
  gap: 2px 24px; align-items: center;
  padding: 14px 0; border-bottom: 1px solid var(--rule);
}
.item h3 { grid-column: 1; grid-row: 1; font-family: var(--sans); font-size: var(--fs-body); font-weight: 600; margin: 0; font-variation-settings: normal; }
.item__note { grid-column: 1; grid-row: 2; color: var(--ink-muted); font-size: var(--fs-small); margin: 0; }
.item__price { grid-column: 2; grid-row: 1 / span 2; display: grid; justify-items: end; text-align: right; }
.item__amount { font-weight: 600; font-size: 20px; }
.item__basis { color: var(--ink-muted); font-size: var(--fs-small); }
.item__basis--wait { color: var(--maroon-dark); }
.item__actions { grid-column: 3; grid-row: 1 / span 2; display: flex; gap: 10px; align-items: center; justify-content: flex-end; min-width: 220px; }
.item--in { background: var(--rose-pale); margin-inline: -12px; padding-inline: 12px; }

.hire { display: grid; grid-template-columns: 220px minmax(0, 1fr); gap: 40px; align-items: start; }

.cat-index { position: sticky; top: calc(var(--header-h) + 16px); }
.cat-index ol { list-style: none; margin: 0; padding: 0; }
.cat-index a { display: block; padding: 8px 0; color: var(--ink); text-decoration: none; border-bottom: 1px solid var(--rule); }
.cat-index a:hover { color: var(--maroon-dark); }
.cat-index__count { color: var(--ink-muted); font-size: var(--fs-small); margin-left: 6px; }

.cat { padding-block: 28px 36px; }
.cat h2 { margin-bottom: 4px; }
.cat__intro { color: var(--ink-muted); margin-bottom: 14px; }

.base-strip {
  display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  padding: 14px 18px; margin-bottom: 8px;
  background: var(--rose-pale); border-radius: var(--radius);
}


/* Your Quote */

.quote-layout { display: grid; grid-template-columns: minmax(0, 1fr) 360px; gap: 40px; align-items: start; }

.qtable { width: 100%; border-collapse: collapse; }
.qtable th, .qtable td { padding: 14px 12px 14px 0; text-align: left; vertical-align: top; border-bottom: 1px solid var(--rule); }
.qtable thead th { font-size: var(--fs-small); font-weight: 600; color: var(--ink-muted); }
.qtable .col-qty { width: 150px; }
.qtable .col-amt { width: 130px; text-align: right; }
.qtable .col-rm { width: 44px; padding-right: 0; }
.qtable td.col-amt { font-weight: 600; }
.qtable .line__name { font-weight: 600; }
.qtable .line__basis { display: block; color: var(--ink-muted); font-size: var(--fs-small); }
.qtable .line__basis--wait { color: var(--maroon-dark); }
.qtable .group-row th { font-family: var(--serif); font-size: 22px; font-weight: 500; padding: 26px 0 8px; border-bottom-color: var(--ink); }
.remove-btn {
  width: 44px; height: 44px; border: 0; background: transparent; border-radius: var(--radius); cursor: pointer; color: var(--ink-muted);
  display: inline-flex; align-items: center; justify-content: center;
}
.remove-btn:hover { background: var(--rose-pale); color: var(--alert); }
.remove-btn svg { width: 18px; height: 18px; }

.totals { padding: 24px; }
.totals h2, .delivery h2 { font-size: var(--fs-sub); }
/* No column gap, so the Total row's two borders meet as one rule; the dd carries the spacing instead */
.totals dl { margin: 0; display: grid; grid-template-columns: minmax(0, 1fr) auto; row-gap: 10px; }
.totals dt { color: var(--ink-muted); }
.totals dt.totals__sub { grid-column: 1 / -1; }
.totals dd.totals__sub { display: none; }
.totals dd { margin: 0; padding-left: 16px; text-align: right; font-weight: 600; min-width: 0; }
/* Both cells of the Total row, so the rule is one line: .totals dd { margin: 0 } outranks a bare class */
.totals dt.totals__grand, .totals dd.totals__grand { border-top: 1px solid var(--ink); padding-top: 12px; margin-top: 6px; font-size: 22px; }
.totals dd.totals__grand { font-size: 26px; }
.totals__sub { font-size: var(--fs-small); color: var(--ink-muted); font-weight: 400; }
.totals .btn { margin-top: 20px; }
.totals .btn + .btn { margin-top: 10px; }
.totals__foot { margin-top: 14px; font-size: var(--fs-small); color: var(--ink-muted); }

.delivery { margin-top: 36px; padding-top: 28px; border-top: 1px solid var(--rule); }
.delivery__row { display: grid; grid-template-columns: 1fr auto; gap: 16px; align-items: end; }
.delivery__mock { margin-top: 12px; }
.quote-aside { margin-top: 20px; }
.empty { padding: 40px 0; }
.empty h2 { margin-bottom: 8px; }


/* Quote drawer */

.drawer-backdrop {
  position: fixed; inset: 0; z-index: 50; background: rgba(36, 28, 28, 0.45);
  opacity: 0; visibility: hidden; transition: opacity 0.2s, visibility 0s 0.2s;
}
.drawer {
  position: fixed; top: 0; right: 0; bottom: 0; z-index: 51;
  width: min(440px, 100%); background: var(--white);
  transform: translateX(100%); transition: transform 0.25s ease;
  display: flex; flex-direction: column; box-shadow: -8px 0 32px rgba(36, 28, 28, 0.12);
}
body.drawer-open .drawer { transform: none; }
body.drawer-open .drawer-backdrop { opacity: 1; visibility: visible; transition: opacity 0.2s; }
body.drawer-open { overflow: hidden; }

.drawer__head { display: flex; align-items: center; justify-content: space-between; gap: 12px; padding: 18px 20px; border-bottom: 1px solid var(--rule); }
.drawer__head h2 { margin: 0; font-size: 26px; }
.drawer__close { width: 44px; height: 44px; border: 0; background: transparent; border-radius: var(--radius); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.drawer__close:hover { background: var(--rose-pale); }
.drawer__close svg { width: 20px; height: 20px; }
.drawer__body { flex: 1; overflow-y: auto; padding: 8px 20px; }
.drawer__foot { padding: 16px 20px 20px; border-top: 1px solid var(--rule); background: var(--canvas); }
.drawer__total { display: flex; justify-content: space-between; align-items: baseline; margin-bottom: 4px; }
.drawer__total b { font-size: 24px; }
.drawer__vat { font-size: var(--fs-small); color: var(--ink-muted); margin-bottom: 14px; }
.drawer__actions { display: grid; gap: 10px; }
.drawer__empty { padding: 32px 0; color: var(--ink-muted); }

.dline { display: grid; grid-template-columns: 1fr auto; gap: 4px 12px; padding: 14px 0; border-bottom: 1px solid var(--rule); }
.dline__name { font-weight: 600; }
.dline__basis { grid-column: 1 / -1; font-size: var(--fs-small); color: var(--ink-muted); }
.dline__basis--wait { color: var(--maroon-dark); }
.dline__amt { font-weight: 600; text-align: right; }
.dline__ctl { grid-column: 1 / -1; display: flex; align-items: center; justify-content: space-between; gap: 8px; margin-top: 6px; }
.dgroup { margin: 14px 0 0; font-family: var(--serif); font-size: 19px; color: var(--ink-muted); }


/* Trust strip (a placeholder until the client supplies the facts), the
   enquiry prompt, and the footer */

.trust { padding-block: 8px 40px; }
.trust--after-quote { margin-top: 48px; }

.prompt { background: var(--white); border-top: 1px solid var(--rule); border-bottom: 1px solid var(--rule); padding-block: 36px; }
.prompt__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.prompt h2 { margin: 0 0 4px; font-size: var(--fs-sub); }
.prompt p { margin: 0; color: var(--ink-muted); }
.prompt form { display: flex; gap: 10px; align-items: end; flex-wrap: wrap; }
.prompt .field { margin: 0; }
.prompt .field input { width: 140px; }

.ridge { display: block; width: 100%; height: 36px; color: var(--rose); margin-top: 24px; }

.site-footer { background: var(--maroon-deep); color: var(--white); padding-block: 48px 32px; }
.site-footer a { color: var(--white); }
.site-footer a:hover { color: var(--rose); }
.footer-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
.site-footer h2 { font-size: 20px; color: var(--white); margin-bottom: 10px; }
.site-footer p, .site-footer li { font-size: var(--fs-small); }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 6px; }
.site-footer address { font-style: normal; }
.footer-legal { margin-top: 36px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.2); display: flex; flex-wrap: wrap; gap: 8px 24px; font-size: 14px; color: var(--rose); }
.footer-legal a { color: var(--rose); }
.site-footer .verify { background: transparent; color: var(--rose); border-color: var(--rose); }


/* Marquees index */

.filter { display: flex; flex-wrap: wrap; gap: 16px 28px; align-items: end; padding: 20px 0 24px; border-bottom: 1px solid var(--rule); }
.filter .field { margin: 0; }
.filter .field input { width: 150px; }
.field select {
  min-height: 44px; padding: 8px 36px 8px 12px; border: 1px solid var(--border); border-radius: var(--radius); background: var(--white);
  appearance: none; -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23241C1C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat; background-position: right 10px center; background-size: 16px;
}
.filter fieldset { border: 0; padding: 0; margin: 0; }
.filter legend { font-weight: 600; margin-bottom: 6px; padding: 0; }
.choices { display: flex; }
.choices label { display: inline-flex; align-items: center; gap: 8px; min-height: 44px; padding: 0 14px; border: 1px solid var(--border); background: var(--white); cursor: pointer; }
.choices label:first-child { border-radius: var(--radius) 0 0 var(--radius); }
.choices label + label { border-left: 0; border-radius: 0 var(--radius) var(--radius) 0; }
.choices label:has(:checked) { background: var(--rose-pale); }
.choices input { margin: 0; accent-color: var(--brand-maroon); }
.filter__status { flex-basis: 100%; margin: 0; color: var(--ink-muted); max-width: none; }
.filter__status b { color: var(--ink); }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px 28px; padding-block: 28px 8px; }
.card { display: grid; gap: 6px; align-content: start; }
.card h3 { margin: 8px 0 0; font-size: 24px; }
.card h3 a { color: var(--ink); text-decoration: none; }
.card h3 a:hover { color: var(--maroon-dark); text-decoration: underline; }
.card__cap { margin: 0; color: var(--ink-muted); font-size: var(--fs-small); }
.card__cap b { color: var(--ink); }
.card__price { margin: 0; font-weight: 600; font-size: 20px; }
.card__price span { font-weight: 400; color: var(--ink-muted); font-size: var(--fs-small); }
.card__actions { display: flex; flex-wrap: wrap; gap: 8px 14px; align-items: center; margin-top: 6px; }
.card__actions .btn { flex: 1 1 auto; }
.card__in { font-size: var(--fs-small); color: var(--maroon-dark); white-space: nowrap; }
.hidden-note { padding: 8px 0 24px; color: var(--ink-muted); }
.none-fit { padding: 32px 0; }

.guidance { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); gap: 40px; }


/* Home */

.hero { display: grid; grid-template-columns: minmax(0, 5fr) minmax(0, 6fr); gap: 48px; align-items: center; padding-block: 48px 56px; }
.hero h1 { margin-bottom: 14px; }
.hero__lede { font-size: 20px; line-height: 1.5; max-width: 42ch; margin-bottom: 12px; }
.hero__facts { list-style: none; padding: 0; margin: 0 0 28px; display: flex; flex-wrap: wrap; gap: 6px 24px; color: var(--ink-muted); }
.hero__facts b { color: var(--ink); font-weight: 600; }

/* The hero photograph is missing, so its box carries the logo's ridge line and reads as designed rather than empty */
.ph--hero { overflow: hidden; }
.ph--hero .ridge { position: absolute; left: 0; right: 0; bottom: 18px; margin: 0; height: 48px; opacity: 0.9; }

.guest-form { display: flex; flex-wrap: wrap; gap: 12px 16px; align-items: end; }
.guest-form .field { margin: 0; }
.guest-form .field input { width: 150px; }
.guest-form fieldset { border: 0; padding: 0; margin: 0; }
.guest-form legend { font-weight: 600; margin-bottom: 6px; padding: 0; }

.reviews { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.review-ph {
  position: relative; border: 1px dashed var(--rose); border-radius: var(--radius); background: var(--rose-pale);
  padding: 22px 20px 20px; color: var(--ink-muted); font-size: var(--fs-small); min-height: 170px;
}
.review-ph::before { content: '\201C'; display: block; font-family: var(--serif); font-size: 60px; line-height: 0.5; color: var(--rose); margin-bottom: 14px; }
.review-ph b { display: block; color: var(--maroon-dark); margin-bottom: 4px; }

.tpl { border-bottom: 1px dashed var(--rose); color: var(--maroon-dark); }
.tpl-note { display: inline-block; padding: 6px 10px; background: var(--rose-pale); border-radius: var(--radius); font-size: var(--fs-small); color: var(--maroon-dark); margin-bottom: 18px; }
.wedding { display: grid; grid-template-columns: minmax(0, 6fr) minmax(0, 5fr); gap: 40px; align-items: start; }
.wedding__thumbs { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; margin-top: 12px; }
.wedding h3 { margin-bottom: 4px; }
.wedding dl { display: grid; grid-template-columns: auto 1fr; gap: 6px 16px; margin: 16px 0; }
.wedding dt { color: var(--ink-muted); }
.wedding dd { margin: 0; }
.wedding blockquote { margin: 18px 0; padding-left: 16px; border-left: 3px solid var(--rose); font-family: var(--serif); font-size: 22px; line-height: 1.35; }

.steps { counter-reset: step; list-style: none; padding: 0; margin: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; }
.steps li { counter-increment: step; margin: 0; padding-top: 14px; border-top: 2px solid var(--rose); }
.steps li::before { content: counter(step); display: block; font-family: var(--serif); font-size: 33px; line-height: 1; color: var(--brand-maroon); margin-bottom: 10px; }
.steps h3 { font-family: var(--sans); font-size: var(--fs-body); font-weight: 600; margin-bottom: 4px; font-variation-settings: normal; }
.steps p { color: var(--ink-muted); font-size: var(--fs-small); }

.contact { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.contact h3 { font-size: 22px; margin-bottom: 6px; }
.contact p { margin: 0; }
.contact .contact__big { font-family: var(--serif); font-size: 26px; text-decoration: none; }
.contact .contact__big:hover { text-decoration: underline; }


/* Smaller screens */

@media (max-width: 1040px) {
  .nav {
    display: none; position: absolute; left: 0; right: 0; top: 100%;
    flex-direction: column; align-items: stretch; gap: 0;
    background: var(--white); border-bottom: 1px solid var(--rule); padding: 8px var(--gutter) 16px;
  }
  .nav.is-open { display: flex; }
  .nav a { padding: 12px 8px; border-bottom: 1px solid var(--rule); border-radius: 0; }
  .nav li:last-child a { border-bottom: 0; }
  .nav-wrap { display: contents; }
  .header-phone { display: none; }
  .header-actions { justify-self: end; }
  .menu-btn {
    display: inline-flex; align-items: center; justify-content: center;
    width: 44px; height: 44px; border: 1px solid var(--rule); border-radius: var(--radius); background: var(--white); cursor: pointer;
  }
  .menu-btn svg { width: 22px; height: 22px; }
}

@media (max-width: 1000px) {
  .quote-layout { grid-template-columns: 1fr; }
  .totals { position: static; }
}

@media (max-width: 900px) {
  .product, .spec, .hire { grid-template-columns: 1fr; gap: 28px; }
  .buy { position: static; padding: 22px; }
  .buy-bar { display: flex; }
  .has-buy-bar { padding-bottom: 76px; }
  .cat-index { position: static; }
  .cat-index ol { display: flex; flex-wrap: wrap; gap: 8px; }
  .cat-index a { border: 1px solid var(--rule); border-radius: var(--radius); padding: 8px 12px; background: var(--white); min-height: 40px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .cards { grid-template-columns: 1fr 1fr; }
  .guidance, .hero, .wedding { grid-template-columns: 1fr; }
  .hero { gap: 28px; padding-block: 28px 40px; }
  .reviews, .contact { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 700px) {
  :root { --fs-title: 34px; --fs-section: 26px; --fs-sub: 22px; --gutter: 16px; --header-h: 64px; }
  .logo img { height: 34px; }
  .quote-btn { padding-inline: 10px; }
  .quote-btn__label { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .lede { font-size: 18px; }
  .section { padding-block: 32px; }
  .buy h1 { font-size: 32px; }
  .included { columns: 1; }
  .sizes { grid-template-columns: 1fr; }
  .item { grid-template-columns: minmax(0, 1fr) auto; }
  .item__price { grid-column: 1; grid-row: 3; justify-items: start; text-align: left; margin-top: 6px; }
  .item__actions { grid-column: 2; grid-row: 3; min-width: 0; }
  .delivery__row { grid-template-columns: 1fr; }
  .trust__inner { grid-template-columns: 1fr; gap: 10px; }
  .ph--strip { padding: 16px; }
  .cards { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr; }
  .filter .field input, .guest-form .field input { width: 120px; }

  /* The quote table stacks: each row becomes a block, the header row goes to screen readers only */
  .qtable thead { position: absolute; width: 1px; height: 1px; overflow: hidden; clip: rect(0 0 0 0); }
  .qtable, .qtable tbody, .qtable tr, .qtable td, .qtable th { display: block; width: 100%; }
  .qtable tr { border-bottom: 1px solid var(--rule); padding: 12px 0; }
  .qtable td { border: 0; padding: 4px 0; }
  .qtable .col-qty, .qtable .col-amt, .qtable .col-rm { width: auto; text-align: left; }
  .qtable td.col-amt::before { content: 'Amount '; font-weight: 400; color: var(--ink-muted); }
  .qtable .group-row th { padding: 16px 0 4px; }
  .qtable .col-qty { display: flex; align-items: center; justify-content: space-between; }
}

@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition: none !important; animation: none !important; scroll-behavior: auto !important; }
}
