/* ==========================================================================
   Hearth - accessibility-first storefront skin.
   Large type, 2px rules, no shadows, no gradients, no dark panels.
   Every selector is namespaced hh-.
   ========================================================================== */

:root {
  --hh-cream: #FFFDF7;
  --hh-paper: #FFFFFF;
  --hh-navy: #12243D;
  --hh-brick: #B3452F;
  --hh-sage: #6E8B6B;
  --hh-quiet: #3E5069;
  --hh-tint: #F4EFE3;
  --hh-sage-tint: #EDF2EC;
  --hh-brick-tint: #FAEEEA;
  --hh-rule: 2px solid #12243D;
  --hh-rule-soft: 2px solid #C9BFA8;
  --hh-hold: 1140px;
  --hh-gap: 28px;
}

*, *::before, *::after { box-sizing: border-box; }

html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }

body {
  margin: 0;
  background: var(--hh-cream);
  color: var(--hh-navy);
  font-family: "Public Sans", "Segoe UI", Tahoma, sans-serif;
  font-size: 19px;
  line-height: 1.8;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
}

h1, h2, h3, h4 {
  font-family: "Source Serif 4", Georgia, "Times New Roman", serif;
  font-weight: 700;
  line-height: 1.25;
  color: var(--hh-navy);
  margin: 0 0 18px;
  letter-spacing: -0.01em;
}

h1 { font-size: 2.65rem; }
h2 { font-size: 2.05rem; }
h3 { font-size: 1.4rem; }
h4 { font-size: 1.15rem; }

p { margin: 0 0 20px; max-width: 68ch; }
ul, ol { margin: 0 0 20px; padding-left: 24px; }
li { margin-bottom: 10px; }

a { color: var(--hh-brick); text-decoration: underline; text-underline-offset: 3px; text-decoration-thickness: 2px; }
a:hover { color: var(--hh-navy); }

img { max-width: 100%; height: auto; display: block; }

strong, b { font-weight: 700; }

:focus-visible {
  outline: 4px solid var(--hh-brick);
  outline-offset: 3px;
  border-radius: 2px;
}

/* --- skip link ----------------------------------------------------------- */

.hh-skip {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 60;
  background: var(--hh-navy);
  color: var(--hh-cream);
  padding: 16px 26px;
  font-weight: 700;
  text-decoration: none;
}
.hh-skip:focus {
  left: 12px;
  top: 12px;
  color: var(--hh-cream);
}

/* --- shell --------------------------------------------------------------- */

.hh-hold {
  width: 100%;
  max-width: var(--hh-hold);
  margin: 0 auto;
  padding: 0 26px;
}

.hh-band { border-top: var(--hh-rule); padding: 68px 0; }
.hh-band--first { border-top: 0; padding-top: 52px; }
.hh-band--tint { background: var(--hh-tint); }
.hh-band--sage { background: var(--hh-sage-tint); }

.hh-lede { font-size: 1.2rem; max-width: 62ch; }
.hh-kicker {
  font-family: "Public Sans", sans-serif;
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--hh-brick);
  margin: 0 0 14px;
}
.hh-quiet { color: var(--hh-quiet); }
.hh-small { font-size: 0.95rem; line-height: 1.7; color: var(--hh-quiet); }

/* --- masthead ------------------------------------------------------------ */

.hh-masthead {
  background: var(--hh-paper);
  border-bottom: var(--hh-rule);
}

.hh-masthead-row {
  display: flex;
  align-items: center;
  gap: 24px;
  padding-top: 18px;
  padding-bottom: 18px;
  flex-wrap: nowrap;
}

.hh-wordmark {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: var(--hh-navy);
  margin-right: auto;
}

.hh-wordmark-glyph {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  border: var(--hh-rule);
  background: var(--hh-cream);
  position: relative;
}
.hh-wordmark-glyph::before {
  content: "";
  position: absolute;
  left: 50%;
  top: 8px;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 13px solid transparent;
  border-right: 13px solid transparent;
  border-bottom: 11px solid var(--hh-brick);
}
.hh-wordmark-glyph::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  width: 18px;
  height: 11px;
  border: 2px solid var(--hh-navy);
  border-bottom: 0;
}

.hh-wordmark-text { display: flex; flex-direction: column; line-height: 1.2; }
.hh-wordmark-name {
  font-family: "Source Serif 4", Georgia, serif;
  font-weight: 700;
  font-size: 1.32rem;
}
.hh-wordmark-place {
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--hh-quiet);
  font-weight: 600;
}

.hh-menu { display: flex; gap: 26px; }
.hh-menu a {
  color: var(--hh-navy);
  text-decoration: none;
  font-weight: 600;
  font-size: 1.02rem;
  padding: 8px 2px;
  border-bottom: 3px solid transparent;
}
.hh-menu a:hover { border-bottom-color: var(--hh-brick); color: var(--hh-brick); }

.hh-masthead-call {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  border: var(--hh-rule);
  background: var(--hh-cream);
  padding: 8px 18px;
  color: var(--hh-navy);
  line-height: 1.3;
}
.hh-masthead-call:hover { background: var(--hh-brick-tint); color: var(--hh-navy); }
.hh-masthead-call-label {
  font-size: 0.74rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--hh-brick);
}
.hh-masthead-call-num { font-weight: 700; font-size: 1.05rem; white-space: nowrap; }

.hh-menu-switch {
  display: none;
  min-height: 52px;
  padding: 0 22px;
  font: inherit;
  font-weight: 700;
  border: var(--hh-rule);
  background: var(--hh-cream);
  color: var(--hh-navy);
  cursor: pointer;
}

.hh-menu-list {
  display: flex;
  flex-direction: column;
  border-top: var(--hh-rule);
  background: var(--hh-paper);
}
.hh-menu-list[hidden] { display: none; }
.hh-menu-list a {
  display: block;
  padding: 18px 26px;
  min-height: 52px;
  color: var(--hh-navy);
  font-weight: 600;
  text-decoration: none;
  border-bottom: var(--hh-rule-soft);
}
.hh-menu-list a:last-child { border-bottom: 0; }
.hh-menu-list a:hover { background: var(--hh-tint); }

/* --- buttons ------------------------------------------------------------- */

.hh-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 14px 30px;
  font-family: "Public Sans", sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  text-decoration: none;
  border: var(--hh-rule);
  cursor: pointer;
  text-align: center;
  line-height: 1.35;
}
.hh-btn--brick { background: var(--hh-brick); border-color: var(--hh-brick); color: #FFFFFF; }
.hh-btn--brick:hover { background: #8F3323; border-color: #8F3323; color: #FFFFFF; }
.hh-btn--plain { background: var(--hh-cream); color: var(--hh-navy); }
.hh-btn--plain:hover { background: var(--hh-tint); color: var(--hh-navy); }
.hh-btn--navy { background: var(--hh-navy); color: var(--hh-cream); }
.hh-btn--navy:hover { background: #0A1729; color: var(--hh-cream); }
.hh-btn--wide { width: 100%; max-width: 420px; }
.hh-btn[disabled] { opacity: 0.6; cursor: not-allowed; }

.hh-btnrow { display: flex; flex-wrap: wrap; gap: 16px; margin-bottom: 8px; }

/* --- panels & frames ----------------------------------------------------- */

.hh-panel {
  border: var(--hh-rule);
  background: var(--hh-paper);
  padding: 30px;
}
.hh-panel--cream { background: var(--hh-cream); }
.hh-panel--sage { background: var(--hh-sage-tint); }
.hh-panel > :last-child { margin-bottom: 0; }

.hh-frame {
  border: var(--hh-rule);
  background: var(--hh-paper);
  padding: 20px;
}
.hh-frame img { margin: 0 auto; }
.hh-frame-cap {
  margin: 16px 0 0;
  font-size: 0.9rem;
  text-align: center;
  color: var(--hh-quiet);
  max-width: none;
}

/* Photograph frames. The source files are 16:9, 1:1 and 4:3; the ratio is
   declared here so the box reserves its height before the file arrives and
   nothing on the page jumps as the photographs load. */
.hh-shot img {
  width: 100%;
  height: auto;
  object-fit: cover;
  object-position: center;
  background: var(--hh-tint);
}
.hh-shot--wide img { aspect-ratio: 16 / 9; }
.hh-shot--square img { aspect-ratio: 1 / 1; }
.hh-shot--tall img { aspect-ratio: 4 / 3; }
.hh-shot--strip img { aspect-ratio: 21 / 9; }

/* Photograph + words, side by side, with the picture kept to a sane width. */
.hh-picrow {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 40px;
  align-items: start;
  margin-top: 34px;
}
.hh-picrow--flip { grid-template-columns: 1.1fr 0.9fr; }
.hh-picrow > div > :last-child { margin-bottom: 0; }

.hh-grid { display: grid; gap: var(--hh-gap); }
.hh-grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.hh-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }

.hh-split {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 44px;
  align-items: start;
}

/* --- hero ---------------------------------------------------------------- */

.hh-hero h1 { margin-bottom: 22px; }
.hh-hero-facts {
  list-style: none;
  padding: 0;
  margin: 26px 0 30px;
  border-top: var(--hh-rule-soft);
}
.hh-hero-facts li {
  border-bottom: var(--hh-rule-soft);
  padding: 14px 0 14px 34px;
  margin: 0;
  position: relative;
  font-weight: 500;
}
.hh-hero-facts li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 26px;
  width: 14px;
  height: 2px;
  background: var(--hh-brick);
}

/* --- numbered steps ------------------------------------------------------ */

.hh-steps { display: flex; flex-direction: column; gap: 20px; margin-top: 34px; }
.hh-step {
  display: grid;
  grid-template-columns: 84px 1fr;
  gap: 26px;
  align-items: start;
  border: var(--hh-rule);
  background: var(--hh-paper);
  padding: 28px 30px;
}
.hh-step-n {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.4rem;
  font-weight: 700;
  line-height: 1;
  color: var(--hh-brick);
  border: var(--hh-rule);
  background: var(--hh-cream);
  width: 84px;
  height: 84px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hh-step h3 { margin-bottom: 10px; }
.hh-step p { margin-bottom: 0; }

/* --- FAQ (always open, no accordion) ------------------------------------- */

.hh-faq { display: grid; gap: 0; border-top: var(--hh-rule); margin-top: 34px; }
.hh-faq-item { border-bottom: var(--hh-rule); padding: 28px 0; }
.hh-faq-item h3 { margin-bottom: 8px; }
.hh-faq-item p:last-child { margin-bottom: 0; }

/* --- definition record --------------------------------------------------- */

.hh-record { border-top: var(--hh-rule); margin: 0; }
.hh-record-row {
  display: grid;
  grid-template-columns: 260px 1fr;
  gap: 20px;
  border-bottom: var(--hh-rule-soft);
  padding: 16px 0;
}
.hh-record-row dt { font-weight: 700; color: var(--hh-quiet); }
.hh-record-row dd { margin: 0; }

/* --- purchase cards ------------------------------------------------------ */

.hh-buys { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--hh-gap); margin-top: 36px; align-items: stretch; }
.hh-buy {
  border: var(--hh-rule);
  background: var(--hh-paper);
  padding: 30px 26px;
  display: flex;
  flex-direction: column;
  height: 100%;
}
.hh-buy--pick { border-width: 4px; background: var(--hh-cream); }
.hh-buy-badge {
  display: inline-block;
  align-self: flex-start;
  background: var(--hh-sage);
  color: #FFFFFF;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 6px 14px;
  margin-bottom: 16px;
}
.hh-buy-tier { font-size: 1.5rem; margin-bottom: 6px; }
.hh-buy-sub { font-size: 0.98rem; color: var(--hh-quiet); margin-bottom: 20px; }
.hh-buy-total {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 2.6rem;
  font-weight: 700;
  line-height: 1.1;
  margin: 0;
}
.hh-buy-unit { font-size: 1rem; color: var(--hh-quiet); margin: 4px 0 22px; }
.hh-buy-perks { list-style: none; padding: 0; margin: 0 0 26px; border-top: var(--hh-rule-soft); }
.hh-buy-perks li {
  border-bottom: var(--hh-rule-soft);
  padding: 11px 0 11px 26px;
  margin: 0;
  position: relative;
  font-size: 1rem;
}
.hh-buy-perks li::before {
  content: "";
  position: absolute;
  left: 2px;
  top: 22px;
  width: 12px;
  height: 2px;
  background: var(--hh-sage);
}
.hh-buy .hh-btn { margin-top: auto; width: 100%; }

/* --- forms --------------------------------------------------------------- */

.hh-form { border: var(--hh-rule); background: var(--hh-paper); padding: 32px; }
.hh-form-title { margin-bottom: 8px; }
.hh-field { margin-bottom: 22px; }
.hh-field label,
.hh-label {
  display: block;
  font-weight: 700;
  margin-bottom: 8px;
  font-size: 1rem;
}
.hh-hint { display: block; font-weight: 400; color: var(--hh-quiet); font-size: 0.92rem; margin-top: -4px; margin-bottom: 8px; }
.hh-input,
.hh-select {
  width: 100%;
  min-height: 56px;
  padding: 12px 16px;
  font: inherit;
  font-size: 1.05rem;
  color: var(--hh-navy);
  background: var(--hh-cream);
  border: var(--hh-rule);
  border-radius: 0;
}
.hh-input:focus, .hh-select:focus { background: #FFFFFF; }
.hh-input::placeholder { color: #7C8899; }

.hh-consent {
  display: grid;
  grid-template-columns: 34px 1fr;
  gap: 16px;
  align-items: start;
  border: var(--hh-rule);
  background: var(--hh-cream);
  padding: 20px;
  margin-bottom: 22px;
}
.hh-consent input[type="checkbox"] {
  width: 30px;
  height: 30px;
  margin: 4px 0 0;
  accent-color: var(--hh-brick);
}
.hh-consent-text { font-size: 1rem; line-height: 1.7; margin: 0; max-width: none; }

.hh-status { margin: 16px 0 0; font-weight: 700; min-height: 1.6em; }
.hh-status.is-bad { color: #8F3323; }
.hh-status.is-good { color: #3F5C3C; }

.hh-done { border: 4px solid var(--hh-sage); background: var(--hh-sage-tint); padding: 30px; }
.hh-done h3 { margin-bottom: 10px; }
.hh-done p:last-child { margin-bottom: 0; }

/* --- call-out band ------------------------------------------------------- */

.hh-callbar { background: var(--hh-brick-tint); border-top: var(--hh-rule); border-bottom: var(--hh-rule); padding: 46px 0; }
.hh-callbar-in { display: grid; grid-template-columns: 1fr auto; gap: 34px; align-items: center; }
.hh-callbar-h { font-size: 1.8rem; margin-bottom: 10px; }
.hh-callbar-p { margin-bottom: 0; }

/* --- notes --------------------------------------------------------------- */

.hh-note {
  border: var(--hh-rule-soft);
  border-left: 6px solid var(--hh-sage);
  background: var(--hh-cream);
  padding: 22px 26px;
}
.hh-note p:last-child { margin-bottom: 0; }
.hh-note-title { font-weight: 700; margin-bottom: 6px; }

/* --- plain data table (delivery times, price recap) ---------------------- */

.hh-tbl-wrap { overflow-x: auto; margin: 30px 0; }
.hh-tbl {
  width: 100%;
  border-collapse: collapse;
  border: var(--hh-rule);
  background: var(--hh-paper);
  font-size: 1rem;
}
.hh-tbl caption {
  text-align: left;
  font-weight: 700;
  padding-bottom: 12px;
  color: var(--hh-quiet);
}
.hh-tbl th, .hh-tbl td {
  text-align: left;
  padding: 14px 18px;
  border-bottom: var(--hh-rule-soft);
  vertical-align: top;
}
.hh-tbl thead th {
  background: var(--hh-tint);
  border-bottom: var(--hh-rule);
  font-weight: 700;
}
.hh-tbl tbody tr:last-child th,
.hh-tbl tbody tr:last-child td { border-bottom: 0; }
.hh-tbl tbody th { font-weight: 700; }
.hh-tbl-hint { display: none; }
/* A wide table that has to scroll sideways is a focusable, labelled region so
   it can be reached and moved with the keyboard, not just a trackpad. */
.hh-tbl-wrap:focus-visible { outline: 4px solid var(--hh-brick); outline-offset: 3px; }

.hh-nolist { list-style: none; padding: 0; }
.hh-nolist li {
  padding: 12px 0 12px 30px;
  border-bottom: var(--hh-rule-soft);
  margin: 0;
  position: relative;
}
.hh-nolist li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 22px;
  width: 14px;
  height: 2px;
  background: var(--hh-navy);
}

/* --- documents (terms / privacy) ----------------------------------------- */

.hh-doc { padding: 56px 0 72px; }
.hh-doc-wrap { max-width: 800px; }
.hh-doc-intro {
  border: var(--hh-rule);
  background: var(--hh-paper);
  padding: 26px;
  max-width: none;
  margin-bottom: 40px;
}
.hh-doc h2 {
  font-size: 1.55rem;
  margin-top: 44px;
  padding-top: 22px;
  border-top: var(--hh-rule-soft);
}
.hh-doc ul { padding-left: 26px; }
.hh-doc p, .hh-doc li { max-width: none; }
.hh-doc-stamp {
  font-size: 0.95rem;
  color: var(--hh-quiet);
  border-bottom: var(--hh-rule);
  padding-bottom: 18px;
  margin-bottom: 30px;
}

/* --- checkout ------------------------------------------------------------ */

.hh-checkout { padding: 48px 0 72px; }
.hh-checkout-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: start; }
.hh-summary { border: var(--hh-rule); background: var(--hh-paper); padding: 28px; position: sticky; top: 24px; }
.hh-summary h2 { font-size: 1.45rem; }
.hh-sumrow {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 12px 0;
  border-bottom: var(--hh-rule-soft);
}
.hh-sumrow span:last-child { font-weight: 700; white-space: nowrap; }
.hh-sumrow--total {
  border-bottom: 0;
  border-top: var(--hh-rule);
  margin-top: 8px;
  padding-top: 18px;
  font-size: 1.3rem;
}
.hh-sumrow--total span:last-child { font-family: "Source Serif 4", Georgia, serif; font-size: 1.7rem; }
.hh-fieldset { border: var(--hh-rule); background: var(--hh-paper); padding: 28px; margin: 0 0 26px; }
.hh-fieldset legend {
  font-family: "Source Serif 4", Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  padding: 4px 14px;
  border: var(--hh-rule);
  background: var(--hh-cream);
}
.hh-pair { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.hh-trio { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 20px; }
/* Side-by-side fields line up on the input, not the label, so a hint under one
   label does not push its box below its neighbour's. */
.hh-pair .hh-field, .hh-trio .hh-field { display: flex; flex-direction: column; }
.hh-pair .hh-field .hh-input, .hh-trio .hh-field .hh-input { margin-top: auto; }

/* --- responsive ---------------------------------------------------------- */

@media (max-width: 980px) {
  .hh-split { grid-template-columns: 1fr; gap: 32px; }
  .hh-picrow, .hh-picrow--flip { grid-template-columns: 1fr; gap: 28px; }
  .hh-buys { grid-template-columns: 1fr; }
  .hh-grid--3 { grid-template-columns: 1fr; }
  .hh-checkout-grid { grid-template-columns: 1fr; }
  .hh-summary { position: static; }
  .hh-callbar-in { grid-template-columns: 1fr; }
}

@media (max-width: 860px) {
  body { font-size: 18px; }
  h1 { font-size: 2.1rem; }
  h2 { font-size: 1.7rem; }
  .hh-menu, .hh-masthead-call { display: none; }
  .hh-menu-switch { display: inline-flex; align-items: center; justify-content: center; }
  .hh-hold { padding: 0 20px; }
  .hh-band { padding: 46px 0; }
  .hh-grid--2 { grid-template-columns: 1fr; }
  .hh-record-row { grid-template-columns: 1fr; gap: 2px; }
  .hh-step { grid-template-columns: 1fr; gap: 16px; }
  .hh-step-n { width: 68px; height: 68px; font-size: 2rem; }
  .hh-pair, .hh-trio { grid-template-columns: 1fr; }
  .hh-panel, .hh-form, .hh-fieldset, .hh-summary { padding: 22px; }
  .hh-btn { width: 100%; }
  .hh-btnrow { flex-direction: column; }
  .hh-tbl { font-size: 0.92rem; }
  .hh-tbl th, .hh-tbl td { padding: 11px 10px; }
  .hh-tbl-hint { display: block; }
}

@media print {
  .hh-masthead, .hh-callbar, .hh-menu-list, .hh-skip { display: none; }
  body { font-size: 12pt; background: #FFFFFF; }
}
