/* ==========================================================================
   Content pages - contact, FAQ, shipping, returns, custom orders
   --------------------------------------------------------------------------
   One stylesheet for the long-form pages, rather than the per-page <style>
   blocks the older policy templates use. Colours come from the brand custom
   properties so the plum/pink palette stays in one place.
   ========================================================================== */

:root {
  --content-plum: #4a2231;
  --content-plum-mid: #5e3040;
  --content-pink: #c93a63;
  --content-pink-soft: #e8829f;
  --content-blush: #fdf4f7;
  --content-ink: #2d2028;
  --content-muted: #6b5c65;
  --content-line: #ecdfe5;
}

/* ---------- Hero ---------- */
.content-hero {
  background: linear-gradient(135deg, var(--content-plum-mid) 0%, var(--content-plum) 100%);
  padding: 72px 0 56px;
  position: relative;
  overflow: hidden;
  width: 100vw;
  margin-left: calc(-50vw + 50%);
}

.content-hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -10%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(201, 58, 99, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.content-hero-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.content-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.25);
  color: #fff;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.content-title {
  font-family: var(--font-display, inherit);
  font-size: clamp(2.2rem, 6vw, 3.6rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.1;
}

.content-lede {
  color: rgba(255, 255, 255, 0.9);
  font-size: 1.1rem;
  max-width: 42rem;
  margin: 0 auto;
}

/* ---------- Body ---------- */
.content-body {
  padding: 56px 0 72px;
}

.content-card {
  background: #fff;
  border: 1px solid var(--content-line);
  border-radius: 18px;
  padding: 2rem 2.25rem;
  margin-bottom: 1.5rem;
  box-shadow: 0 2px 14px rgba(74, 34, 49, 0.05);
}

.content-card h2 {
  font-family: var(--font-display, inherit);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--content-plum);
  margin-bottom: 1rem;
}

.content-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--content-plum-mid);
  margin: 1.5rem 0 0.6rem;
}

.content-card p,
.content-card li {
  color: var(--content-ink);
  line-height: 1.7;
}

.content-card ul,
.content-card ol {
  padding-left: 1.25rem;
}

.content-card li + li {
  margin-top: 0.4rem;
}

.content-note {
  background: var(--content-blush);
  border-left: 4px solid var(--content-pink);
  border-radius: 0 10px 10px 0;
  padding: 1rem 1.25rem;
  margin: 1.25rem 0;
}

.content-note p:last-child { margin-bottom: 0; }

/* ---------- Delivery table ---------- */
.content-table-wrap {
  overflow-x: auto;
  margin: 1.25rem 0;
}

.content-table {
  width: 100%;
  min-width: 30rem;
  border-collapse: collapse;
}

.content-table caption {
  caption-side: top;
  text-align: left;
  font-weight: 600;
  color: var(--content-muted);
  padding-bottom: 0.5rem;
}

.content-table th,
.content-table td {
  padding: 0.8rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--content-line);
}

.content-table thead th {
  background: var(--content-blush);
  color: var(--content-plum);
  font-weight: 700;
  white-space: nowrap;
}

/* ---------- FAQ accordion ---------- */
.faq-item {
  border: 1px solid var(--content-line);
  border-radius: 14px;
  margin-bottom: 0.75rem;
  overflow: hidden;
  background: #fff;
}

.faq-question {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.1rem 1.4rem;
  background: none;
  border: 0;
  text-align: left;
  font-size: 1.05rem;
  font-weight: 650;
  color: var(--content-plum);
  cursor: pointer;
}

.faq-question:hover { background: var(--content-blush); }

/* Keyboard users must be able to see where they are. */
.faq-question:focus-visible {
  outline: 3px solid var(--content-pink);
  outline-offset: -3px;
}

.faq-question .faq-chevron { transition: transform 0.2s ease; flex-shrink: 0; }
.faq-question[aria-expanded="true"] .faq-chevron { transform: rotate(180deg); }

.faq-answer {
  padding: 0 1.4rem 1.25rem;
  color: var(--content-ink);
  line-height: 1.7;
}

.faq-answer p:last-child { margin-bottom: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.6fr) minmax(0, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.contact-aside {
  background: var(--content-blush);
  border: 1px solid var(--content-line);
  border-radius: 18px;
  padding: 1.75rem;
}

.contact-aside h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--content-plum);
  margin-bottom: 1rem;
}

.contact-aside a { color: var(--content-pink); font-weight: 600; }

.contact-field { margin-bottom: 1.1rem; }

.contact-label {
  display: block;
  font-weight: 600;
  color: var(--content-plum);
  margin-bottom: 0.35rem;
}

.contact-required { color: var(--content-pink); }

.contact-help {
  font-size: 0.875rem;
  color: var(--content-muted);
  margin-top: 0.3rem;
}

.contact-error {
  font-size: 0.875rem;
  color: #b3123c;
  margin-top: 0.3rem;
  font-weight: 600;
}

/* The honeypot. Hidden from people, still reachable by a naive bot.
   Not display:none, because some bots skip those. */
.contact-hp {
  position: absolute !important;
  left: -9999px !important;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.content-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--content-pink);
  color: #fff;
  border: 0;
  border-radius: 999px;
  padding: 0.85rem 1.9rem;
  font-weight: 650;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
  text-decoration: none;
}

.content-btn:hover { background: #b3123c; color: #fff; transform: translateY(-1px); }
.content-btn:focus-visible { outline: 3px solid var(--content-plum); outline-offset: 2px; }

/* ---------- Steps ---------- */
.step-list { counter-reset: step; list-style: none; padding: 0; }

.step-list li {
  counter-increment: step;
  position: relative;
  padding-left: 3.25rem;
  margin-bottom: 1.5rem;
}

.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--content-pink);
  color: #fff;
  font-weight: 700;
  display: grid;
  place-items: center;
}

.step-list h3 { margin-top: 0; }

/* ---------- About ---------- */

/* Live catalogue figures. Real numbers, rendered from the database - there is
   deliberately no "happy customers" tile here, because we cannot count one. */
.about-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.about-stat {
  display: block;
  text-align: center;
  background: #fff;
  border: 1px solid var(--content-line);
  border-radius: 18px;
  padding: 1.5rem 1rem;
  box-shadow: 0 2px 14px rgba(74, 34, 49, 0.05);
  text-decoration: none;
  transition: transform 0.15s ease, border-color 0.2s ease;
}

.about-stat:hover,
.about-stat:focus-visible {
  transform: translateY(-2px);
  border-color: var(--content-pink-soft);
}

.about-stat:focus-visible {
  outline: 3px solid var(--content-pink);
  outline-offset: 2px;
}

.about-stat-number {
  display: block;
  font-family: var(--font-display, inherit);
  font-size: clamp(2rem, 5vw, 2.6rem);
  font-weight: 800;
  line-height: 1;
  color: var(--content-pink);
}

.about-stat-label {
  display: block;
  margin-top: 0.45rem;
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--content-muted);
}

/* Two-up points inside a card, for the short claims that read better as
   tiles than as another bullet list. */
.about-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 1.5rem;
}

.about-point {
  background: var(--content-blush);
  border: 1px solid var(--content-line);
  border-radius: 14px;
  padding: 1.25rem;
}

.about-point-icon {
  display: grid;
  place-items: center;
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  background: var(--content-pink);
  color: #fff;
  font-size: 1.15rem;
  margin-bottom: 0.75rem;
}

.content-card .about-point h3 {
  margin: 0 0 0.4rem;
  font-size: 1.05rem;
}

.content-card .about-point p {
  margin-bottom: 0;
  font-size: 0.95rem;
}

/* Bootstrap's default blue reads as a foreign object on a plum page. Scoped to
   this page rather than applied to .content-card everywhere, so the long-standing
   policy pages are not restyled as a side effect. */
.about-body .content-card a:not(.content-btn) {
  color: var(--content-pink);
  font-weight: 600;
}

.about-body .content-card a:not(.content-btn):hover,
.about-body .content-card a:not(.content-btn):focus {
  color: #b3123c;
}

/* Closing band. Plum rather than another white card, so the page ends on
   something instead of trailing off. */
.about-closing {
  background: linear-gradient(135deg, var(--content-plum-mid) 0%, var(--content-plum) 100%);
  border-radius: 18px;
  padding: 2.5rem 2rem;
  text-align: center;
  margin-top: 2rem;
}

.about-closing h2 {
  font-family: var(--font-display, inherit);
  font-size: 1.7rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.6rem;
}

.about-closing p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 34rem;
  margin: 0 auto 1.5rem;
  line-height: 1.7;
}

.about-closing-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
}

/* On the plum band the ghost button needs a light outline, not a pink one. */
.about-closing .content-btn--ghost {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.about-closing .content-btn--ghost:hover,
.about-closing .content-btn--ghost:focus-visible {
  background: #fff;
  color: var(--content-plum);
  border-color: #fff;
}

@media (max-width: 768px) {
  .contact-grid { grid-template-columns: 1fr; }
  .content-card { padding: 1.5rem 1.25rem; }
  .content-hero { padding: 52px 0 40px; }
  .about-points { grid-template-columns: 1fr; }
  .about-closing { padding: 2rem 1.25rem; }
}

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

@media (prefers-reduced-motion: reduce) {
  .about-stat,
  .content-btn,
  .faq-question .faq-chevron { transition: none; }
  .content-btn:hover { transform: none; }
  .about-stat:hover { transform: none; }
}

/* -------------------------------------------------------------------
   Coming soon (checkout closed)
   -------------------------------------------------------------------
   Scoped to this page rather than added to .content-card generally: the
   other content pages are long-standing and this is a temporary state,
   so nothing outside it changes.
   ------------------------------------------------------------------- */
.coming-soon .content-card a:not(.content-btn) {
  color: var(--content-pink);
  font-weight: 600;
}

.coming-soon .content-card a:not(.content-btn):hover,
.coming-soon .content-card a:not(.content-btn):focus {
  color: #b3123c;
}

/* A quieter second action, so the page does not read as two equal
   pink buttons competing for the same tap. */
.content-btn--ghost {
  background: transparent;
  color: var(--content-pink);
  border: 2px solid var(--content-pink);
}

.content-btn--ghost:hover,
.content-btn--ghost:focus-visible {
  background: var(--content-pink);
  color: #fff;
}

/* ---------- Combined-page navigation ----------
   The shipping and returns policies live on one page, so it needs a way to
   skip straight to the half you came for and a visible seam between them. */
.content-jump {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.content-jump-label {
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--content-muted);
  margin-right: 0.2rem;
}

.content-jump a {
  display: inline-block;
  padding: 0.45rem 1rem;
  border: 1px solid var(--content-line);
  border-radius: 999px;
  background: #fff;
  color: var(--content-plum);
  font-weight: 600;
  font-size: 0.95rem;
  text-decoration: none;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.content-jump a:hover,
.content-jump a:focus-visible {
  background: var(--content-blush);
  border-color: var(--content-pink-soft);
  color: var(--content-pink);
}

.content-section-head {
  font-size: clamp(1.6rem, 3vw, 2.1rem);
  color: var(--content-plum);
  margin: 0 0 1.25rem;
  padding-bottom: 0.6rem;
  border-bottom: 2px solid var(--content-line);
  /* Anchor links land below the sticky navbar rather than under it. */
  scroll-margin-top: 6rem;
}

.content-section-head + .content-card { margin-top: 0; }

/* Breathing room where the second half of the page starts. */
.content-card + .content-section-head { margin-top: 3rem; }
