/* ── TUMCH Global Styles ── */
/* Fonts are loaded via preconnect + stylesheet <link> in each page <head>
   (faster than a CSS import, which blocks rendering). */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

/* Accessibility: visible keyboard focus + skip link */
a:focus-visible, button:focus-visible, input:focus-visible,
select:focus-visible, textarea:focus-visible, [tabindex]:focus-visible {
  outline: 2px solid var(--sage-brand);
  outline-offset: 2px;
  border-radius: 1px;
}
.skip-link {
  position: absolute; left: 12px; top: -60px; z-index: 1000;
  background: var(--brand-dark); color: #fff; padding: 10px 18px;
  font-size: 12px; letter-spacing: 0.08em; text-transform: uppercase;
  text-decoration: none; border-radius: 2px; transition: top 0.2s;
}
.skip-link:focus { top: 12px; }

:root {
  --cream: #F5F0E8;
  --warm-white: #FAF7F2;
  --sage: #7A8C76;
  --sage-brand: #839674;
  --sage-light: #B8C4B4;
  --terracotta: #B8714A;
  --brand-dark: #163441;
  --charcoal: #2C2926;
  --mid: #6B6560;
  --border-warm: rgba(44,41,38,0.12);
  --border-strong: rgba(44,41,38,0.25);
  --max: 1100px;
  --font-head: 'Manrope', 'Jost', sans-serif;
}

/* ── BOLD TWO-COLOUR DISPLAY HEADINGS ──
   Headlines, page titles and section titles use a bold modern sans in two
   colours (base + terracotta accent via <em>). Elegant italic quotes keep
   the Cormorant serif — they are deliberately NOT in these selectors. */
.headline, .sec-title, .about-title, .range-header h2, .hamper-title, .b2bt,
.why-title, .about-hero-title, .mind-title, .wellbeing-title, .contact-title,
.form-intro h2, .pif-form-intro h2, .collection-title, .page-header h1,
.trade-hero h1, .pif-hero h1 {
  font-family: var(--font-head) !important;
  font-style: normal !important;
  font-weight: 800 !important;
  letter-spacing: -0.02em;
  line-height: 1.08;
}
.headline em, .sec-title em, .about-title em, .range-header h2 em, .hamper-title em,
.b2bt em, .why-title em, .about-hero-title em, .mind-title em, .wellbeing-title em,
.contact-title em, .form-intro h2 em, .pif-form-intro h2 em, .collection-title em,
.page-header h1 em, .trade-hero h1 em, .pif-hero h1 em {
  color: var(--terracotta) !important;
  font-style: normal !important;
  font-weight: inherit;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Jost', sans-serif;
  background: var(--cream);
  color: var(--charcoal);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

main { flex: 1; }

/* ── NAV ── */
nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-warm);
}

.nav-inner {
  max-width: var(--max);
  margin: 0 auto;
  padding: 0 40px;
  height: 72px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.nav-logo img {
  height: 56px;
  width: 56px;
  border-radius: 50%;
}

.nav-links {
  display: flex;
  gap: 28px;
  list-style: none;
}

.nav-links a {
  font-size: 10.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--mid);
  text-decoration: none;
  font-weight: 400;
  transition: color 0.2s;
  padding-bottom: 2px;
}

.nav-links a:hover,
.nav-links a.active { color: var(--brand-dark); border-bottom: 1px solid var(--brand-dark); }

.nav-cta {
  font-size: 10.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 10px 22px;
  border: 1px solid var(--brand-dark);
  color: var(--brand-dark);
  background: transparent;
  cursor: pointer;
  font-family: 'Jost', sans-serif;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.nav-cta:hover { background: var(--brand-dark); color: #ffffff; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-hamburger span {
  display: block; width: 22px; height: 1.5px;
  background: var(--charcoal); transition: all 0.3s;
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--warm-white);
  border-bottom: 1px solid var(--border-warm);
  padding: 16px 24px 20px;
  gap: 16px;
}

.nav-mobile.open { display: flex; }
.nav-mobile a {
  font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--mid); text-decoration: none;
}

/* ── TRUST BAND ── */
.band {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: none;
  border-bottom: none;
  background: var(--brand-dark);
  max-width: 100%;
}

.band-item {
  padding: 18px 20px;
  text-align: center;
  border-right: 1px solid rgba(255,255,255,0.12);
}

.band-item:last-child { border-right: none; }

.band-label {
  font-size: 9.5px; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--sage-light); margin-bottom: 5px;
}

.band-val {
  font-family: 'Cormorant Garamond', serif;
  font-size: 19px; color: #ffffff; font-weight: 300;
}

/* ── BUTTONS ── */
.btn-primary {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 32px; background: var(--brand-dark); color: #ffffff;
  border: none; cursor: pointer; font-family: 'Jost', sans-serif;
  font-weight: 400; text-decoration: none; display: inline-block;
  transition: opacity 0.2s;
}

.btn-primary:hover { opacity: 0.85; }

.btn-outline {
  font-size: 10.5px; letter-spacing: 0.14em; text-transform: uppercase;
  padding: 13px 32px; background: transparent; color: var(--charcoal);
  border: 1px solid var(--border-strong); cursor: pointer;
  font-family: 'Jost', sans-serif; font-weight: 400;
  text-decoration: none; display: inline-block; transition: all 0.2s;
}

.btn-outline:hover { background: var(--charcoal); color: var(--cream); }

.btn-ghost {
  font-size: 10.5px; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--sage-brand); cursor: pointer;
  text-decoration: underline; text-underline-offset: 4px;
  background: none; border: none; font-family: 'Jost', sans-serif;
}

/* ── PAGE HEADER ── */
.page-header {
  background: var(--sage-brand);
  border-bottom: none;
  padding: 56px 40px 48px;
  text-align: center;
}

.page-header .eyebrow {
  font-size: 10px; letter-spacing: 0.24em;
  text-transform: uppercase; color: rgba(255,255,255,0.75); margin-bottom: 14px;
}

.page-header h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: 52px; font-weight: 300; font-style: italic;
  color: #ffffff; line-height: 1.1;
}

/* ── SECTION UTILITY ── */
.section { padding: 64px 40px; }
.section-inner { max-width: var(--max); margin: 0 auto; }

.sec-header {
  display: flex; justify-content: space-between;
  align-items: baseline; margin-bottom: 32px;
}

.sec-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 32px; font-weight: 300; color: var(--charcoal);
}

.sec-link {
  font-size: 10.5px; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--brand-dark);
  text-decoration: underline; text-underline-offset: 3px;
}

/* ── CARDS ── */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}

.card {
  border: 1px solid var(--border-warm);
  overflow: hidden;
  background: var(--warm-white);
  transition: box-shadow 0.3s;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
  display: block;
}

.card:hover { box-shadow: 0 6px 24px rgba(44,41,38,0.08); }

.card-img {
  overflow: hidden;
  background: var(--cream);
  position: relative;
  aspect-ratio: 4 / 5;
}

.card-img img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: 50% 18%;
  transition: transform 0.4s ease;
}

.card:hover .card-img img { transform: scale(1.02); }

.card-body { padding: 16px 18px 20px; border-top: 1px solid var(--border-warm); }

.card-name { font-size: 13.5px; font-weight: 500; color: var(--charcoal); }
.card-desc { font-size: 12px; color: var(--mid); margin-top: 5px; line-height: 1.55; }

/* ── CHARITY STRIP ── */
.charity-strip {
  display: flex; align-items: center; gap: 28px;
  padding: 28px 40px;
  border-top: 1px solid var(--border-warm);
  background: var(--cream);
}

.charity-strip img {
  height: 40px; width: auto; flex-shrink: 0;
  mix-blend-mode: multiply;  /* removes white bg on cream background */
}

.charity-divider {
  width: 1px; height: 36px;
  background: var(--border-strong); flex-shrink: 0;
}

.charity-strip p { font-size: 13px; color: var(--mid); line-height: 1.7; }
.charity-strip strong { color: var(--charcoal); font-weight: 500; }

/* ── FOOTER ── */
footer {
  background: var(--brand-dark);
  border-top: none;
}

.footer-inner {
  max-width: var(--max); margin: 0 auto;
  padding: 32px 40px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
}

.footer-logo {
  display: flex;
  align-items: center;
  text-decoration: none;
}
.footer-logo img {
  height: 48px;
  width: auto;
}

.footer-links {
  display: flex; gap: 24px; list-style: none;
  justify-content: center;
}

.footer-links a {
  font-size: 11px; color: rgba(245,240,232,0.55);
  text-decoration: none; letter-spacing: 0.08em;
  transition: color 0.2s;
}

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

.footer-copy {
  font-size: 11px; color: rgba(245,240,232,0.35);
  text-align: right;
}

/* ── FORMS ── */
.form-group { margin-bottom: 20px; }

.form-group label {
  display: block; font-size: 10.5px;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--mid); margin-bottom: 7px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%; padding: 12px 14px;
  border: 1px solid var(--border-warm);
  background: var(--warm-white);
  font-family: 'Jost', sans-serif;
  font-size: 14px; color: var(--charcoal);
  outline: none; transition: border-color 0.2s;
  border-radius: 0;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus { border-color: var(--border-strong); }

.form-group textarea { resize: vertical; min-height: 120px; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }

.form-check {
  display: flex; align-items: flex-start; gap: 10px;
  margin-bottom: 14px; cursor: pointer;
}

.form-check input[type="checkbox"] {
  width: 16px; height: 16px; margin-top: 2px;
  flex-shrink: 0; accent-color: var(--charcoal);
}

.form-check span { font-size: 13px; color: var(--mid); line-height: 1.5; }

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .nav-links, .nav-cta { display: none; }
  .nav-hamburger { display: flex; }
  .band { grid-template-columns: repeat(2, 1fr); }
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .section { padding: 40px 20px; }
  .page-header { padding: 40px 20px; }
  .page-header h1 { font-size: 38px; }
  .footer-inner { grid-template-columns: 1fr; text-align: center; }
  .footer-copy { text-align: center; }
  .charity-strip { padding: 20px; flex-wrap: wrap; }
}

@media (max-width: 580px) {
  .card-grid { grid-template-columns: 1fr; }
  .band { grid-template-columns: repeat(2, 1fr); }
  .form-row { grid-template-columns: 1fr; }
}

/* ── FOOTER NEWSLETTER ── */
.footer-news-bar {
  border-bottom: 1px solid rgba(184,196,180,0.18);
  padding: 26px 40px;
}
.footer-news {
  max-width: 560px; margin: 0 auto; text-align: center;
}
.footer-news-label {
  font-family: 'Cormorant Garamond', serif; font-style: italic;
  font-size: 18px; color: var(--sage-light); margin-bottom: 14px;
}
.footer-news-row { display: flex; gap: 10px; justify-content: center; }
.footer-news-row input {
  flex: 1; max-width: 320px; background: rgba(245,240,232,0.06);
  border: 1px solid rgba(184,196,180,0.35); color: var(--cream);
  padding: 11px 14px; font-family: 'Jost', sans-serif; font-size: 13px;
}
.footer-news-row input::placeholder { color: rgba(245,240,232,0.4); }
.footer-news-row input:focus { outline: none; border-color: var(--sage-light); }
.footer-news-row button {
  background: var(--sage-brand); color: #fff; border: none;
  padding: 11px 24px; font-size: 11px; letter-spacing: 0.14em;
  text-transform: uppercase; cursor: pointer; transition: background 0.2s;
}
.footer-news-row button:hover { background: var(--sage-light); color: var(--brand-dark); }
.footer-news-msg { font-size: 12.5px; color: var(--sage-light); margin-top: 12px; min-height: 1em; }
@media (max-width: 580px) {
  .footer-news-bar { padding: 22px 20px; }
  .footer-news-row { flex-direction: column; align-items: stretch; }
  .footer-news-row input { max-width: none; }
}

/* ── SCROLL REVEAL (progressive enhancement; content is visible without JS) ── */
.reveal { opacity: 0; transform: translateY(14px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.revealed { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1 !important; transform: none !important; transition: none !important; }
}
