@import url("https://fonts.googleapis.com/css2?family=DM+Sans:opsz,wght@9..40,400;9..40,500;9..40,600;9..40,700&family=Fraunces:opsz,wght,SOFT@9..144,500..700,0..100&display=swap");

:root {
  --paper: #fbfaf6;
  --paper-deep: #f1eee6;
  --ink: #222622;
  --muted: #667067;
  --line: #ddd8cc;
  --clay: #a95034;
  --clay-dark: #7f3926;
  --sage: #62734c;
  --sage-pale: #dfe5d6;
  --gold: #b69354;
  --white: #ffffff;
  --shadow: 0 16px 40px rgba(46, 52, 42, 0.11);
  --radius: 8px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font-family: "DM Sans", sans-serif;
  line-height: 1.65;
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea,
select {
  font: inherit;
}

button {
  cursor: pointer;
}

.container {
  width: min(calc(100% - 40px), var(--container));
  margin-inline: auto;
}

.site-header {
  position: fixed;
  z-index: 1000;
  top: 0;
  right: 0;
  left: 0;
  height: 78px;
  border-bottom: 1px solid transparent;
  background: rgba(251, 250, 246, 0.93);
  backdrop-filter: blur(14px);
  transition: border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.scrolled {
  border-color: var(--line);
  box-shadow: 0 8px 24px rgba(34, 38, 34, 0.06);
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  color: var(--clay-dark);
  font-family: "Fraunces", serif;
  font-size: 23px;
  font-weight: 650;
  line-height: 1;
  white-space: nowrap;
}

.brand-mark {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--clay);
  border-radius: 50%;
  color: var(--clay);
  font-size: 14px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
}

.main-nav a,
.footer-links a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: color 0.2s ease;
}

.main-nav a:hover,
.main-nav a.active,
.footer-links a:hover {
  color: var(--clay);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 10px;
}

.icon-btn {
  display: inline-grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
  transition: border-color 0.2s ease, color 0.2s ease, background 0.2s ease;
}

.icon-btn:hover {
  border-color: var(--clay);
  background: var(--white);
  color: var(--clay);
}

.menu-toggle {
  display: none;
}

.btn {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 4px;
  padding: 11px 20px;
  font-size: 13px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--clay);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--clay-dark);
}

.btn-secondary {
  border-color: var(--sage);
  background: transparent;
  color: var(--sage);
}

.btn-secondary:hover {
  background: var(--sage);
  color: var(--white);
}

.btn-light {
  border-color: rgba(255, 255, 255, 0.65);
  color: var(--white);
}

.btn-light:hover {
  background: var(--white);
  color: var(--clay-dark);
}

.hero {
  position: relative;
  display: grid;
  min-height: 720px;
  align-items: center;
  overflow: hidden;
  color: var(--white);
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(24, 28, 23, 0.7) 0%, rgba(24, 28, 23, 0.38) 45%, rgba(24, 28, 23, 0.06) 75%);
  content: "";
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(650px, 100%);
  padding-top: 72px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.15em;
}

.eyebrow::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.hero .eyebrow {
  color: #f1c49b;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  font-family: "Fraunces", serif;
  font-weight: 620;
  line-height: 1.16;
}

h1 {
  max-width: 640px;
  font-size: clamp(48px, 7vw, 84px);
}

h2 {
  font-size: clamp(34px, 4.5vw, 52px);
}

h3 {
  font-size: 26px;
}

h4 {
  font-size: 20px;
}

.hero p {
  max-width: 590px;
  margin: 24px 0 34px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 19px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-note {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - var(--container)) / 2));
  bottom: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.13em;
}

.hero-note::before {
  width: 46px;
  height: 1px;
  background: rgba(255, 255, 255, 0.65);
  content: "";
}

.intro-strip {
  padding: 44px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper-deep);
}

.intro-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  align-items: center;
  gap: 30px;
}

.intro-grid p {
  margin: 0;
  color: var(--muted);
}

.intro-stat {
  padding-left: 24px;
  border-left: 1px solid var(--line);
}

.intro-stat strong {
  display: block;
  color: var(--clay-dark);
  font-family: "Fraunces", serif;
  font-size: 28px;
  font-weight: 600;
}

.intro-stat span {
  color: var(--muted);
  font-size: 13px;
}

.section {
  padding: 108px 0;
}

.section-soft {
  background: var(--paper-deep);
}

.section-sage {
  background: var(--sage);
  color: var(--white);
}

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 28px;
  margin-bottom: 42px;
}

.section-head p {
  max-width: 490px;
  margin: 0;
  color: var(--muted);
}

.section-sage .section-head p,
.section-sage .eyebrow {
  color: rgba(255, 255, 255, 0.74);
}

.editorial-grid {
  display: grid;
  grid-template-columns: 1.35fr 0.9fr;
  gap: 28px;
}

.editorial-side {
  display: grid;
  gap: 28px;
}

.article-card {
  min-width: 0;
}

.article-card img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: var(--radius);
  transition: transform 0.5s ease;
}

.article-card:hover img,
.category-card:hover img,
.kit-card:hover img {
  transform: scale(1.035);
}

.article-image {
  overflow: hidden;
  border-radius: var(--radius);
}

.article-card.featured img {
  aspect-ratio: 16 / 12;
}

.article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 18px;
  margin: 18px 0 10px;
  color: var(--sage);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.11em;
}

.article-card h3,
.article-card h4 {
  transition: color 0.2s ease;
}

.article-card:hover h3,
.article-card:hover h4,
.kit-card:hover h3 {
  color: var(--clay);
}

.article-card p {
  margin: 12px 0 0;
  color: var(--muted);
}

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.category-card {
  position: relative;
  overflow: hidden;
  min-height: 330px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--white);
}

.category-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
  transition: transform 0.5s ease, opacity 0.3s ease;
}

.category-card:hover img {
  opacity: 0.6;
}

.category-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 42%, rgba(20, 24, 20, 0.84));
  content: "";
}

.category-content {
  position: absolute;
  z-index: 1;
  right: 20px;
  bottom: 20px;
  left: 20px;
}

.category-content span {
  display: block;
  margin-top: 6px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 13px;
}

.filter-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-bottom: 32px;
}

.filter-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 15px;
  background: var(--white);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.filter-btn:hover,
.filter-btn.active {
  border-color: var(--sage);
  background: var(--sage);
  color: var(--white);
}

.guide-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 70px;
  align-items: start;
}

.guide-intro {
  position: sticky;
  top: 112px;
}

.guide-intro p {
  margin: 22px 0 0;
  color: var(--muted);
}

.guide-list {
  border-top: 1px solid var(--line);
}

.guide-row {
  display: grid;
  grid-template-columns: 56px 1fr auto;
  align-items: center;
  gap: 20px;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  transition: padding 0.2s ease, color 0.2s ease;
}

.guide-row:hover {
  padding-left: 8px;
  color: var(--clay);
}

.guide-number {
  color: var(--gold);
  font-family: "Fraunces", serif;
  font-size: 20px;
}

.guide-row p {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.guide-row i {
  color: var(--clay);
}

.kits-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.kit-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.kit-card[hidden],
.workshop-card[hidden] {
  display: none;
}

.kit-image {
  overflow: hidden;
}

.kit-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.kit-body {
  padding: 22px;
}

.kit-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 12px;
}

.rating {
  color: var(--gold);
  font-size: 13px;
  white-space: nowrap;
}

.tag {
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.kit-body p {
  margin: 12px 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--clay);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

button.text-link {
  border: 0;
  padding: 0;
  background: transparent;
}

.interactive-panel {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: center;
  padding: 36px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.interactive-panel h2 {
  font-size: clamp(30px, 4vw, 42px);
}

.interactive-panel p {
  margin: 14px 0 0;
  color: var(--muted);
}

.choice-group {
  display: grid;
  gap: 12px;
}

.choice-label {
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.choice-options {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.choice-btn {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 9px 15px;
  background: var(--paper);
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.choice-btn:hover,
.choice-btn.active {
  border-color: var(--clay);
  background: var(--clay);
  color: var(--white);
}

.recommendation-box {
  min-height: 122px;
  margin-top: 18px;
  padding: 20px;
  border-left: 3px solid var(--gold);
  background: var(--paper-deep);
}

.recommendation-box strong {
  display: block;
  margin-bottom: 5px;
  color: var(--clay-dark);
  font-family: "Fraunces", serif;
  font-size: 22px;
}

.recommendation-box p {
  margin: 0;
  font-size: 14px;
}

.about-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.value-card {
  padding: 26px;
  border-top: 3px solid var(--clay);
  background: var(--white);
}

.value-card i {
  margin-bottom: 18px;
  color: var(--sage);
  font-size: 24px;
}

.value-card p {
  margin: 10px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-top: 1px solid var(--line);
}

.timeline-item {
  position: relative;
  padding: 28px 28px 0 0;
}

.timeline-item::before {
  position: absolute;
  top: -6px;
  left: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--clay);
  content: "";
}

.timeline-item span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.timeline-item p {
  margin: 8px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.workshop-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.workshop-card {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.workshop-card img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.workshop-card-body {
  padding: 22px;
}

.workshop-card-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 14px;
  margin-bottom: 10px;
  color: var(--sage);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.09em;
}

.workshop-card p {
  margin: 10px 0 16px;
  color: var(--muted);
  font-size: 14px;
}

.modal-backdrop {
  position: fixed;
  z-index: 2000;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(25, 30, 25, 0.62);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.22s ease, visibility 0.22s ease;
}

.modal-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.info-modal {
  position: relative;
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  width: min(900px, 100%);
  max-height: min(720px, calc(100vh - 40px));
  overflow: auto;
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 24px 70px rgba(22, 28, 22, 0.28);
  transform: translateY(16px);
  transition: transform 0.22s ease;
}

.modal-backdrop.open .info-modal {
  transform: none;
}

.modal-image {
  width: 100%;
  height: 100%;
  min-height: 420px;
  object-fit: cover;
}

.modal-content {
  padding: 44px;
}

.modal-content h2 {
  margin: 8px 0 14px;
  font-size: 36px;
}

.modal-content p {
  margin: 0 0 18px;
  color: var(--muted);
}

.modal-facts {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
  margin: 24px 0;
}

.modal-fact {
  padding: 13px;
  border: 1px solid var(--line);
  background: var(--paper);
}

.modal-fact strong {
  display: block;
  color: var(--clay-dark);
  font-size: 13px;
}

.modal-fact span {
  color: var(--muted);
  font-size: 12px;
}

.modal-close {
  position: absolute;
  z-index: 1;
  top: 14px;
  right: 14px;
  background: var(--white);
}

.workshop-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 500px;
  background: var(--sage);
  color: var(--white);
}

.workshop-image {
  width: 100%;
  height: 100%;
  min-height: 500px;
  object-fit: cover;
}

.workshop-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  max-width: 590px;
  padding: 70px;
}

.workshop-copy p {
  margin: 20px 0 28px;
  color: rgba(255, 255, 255, 0.78);
}

.postcode-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
  max-width: 500px;
}

.field {
  width: 100%;
  min-height: 48px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 11px 14px;
  background: var(--white);
  color: var(--ink);
  outline: none;
}

.field:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(182, 147, 84, 0.17);
}

.form-message {
  min-height: 24px;
  margin: 12px 0 0;
  color: rgba(255, 255, 255, 0.82);
  font-size: 13px;
}

.newsletter {
  padding: 64px 0;
  border-top: 1px solid var(--line);
  background: var(--paper-deep);
}

.newsletter-wrap {
  display: grid;
  grid-template-columns: 1fr 0.9fr;
  align-items: center;
  gap: 60px;
}

.newsletter h2 {
  font-size: clamp(30px, 4vw, 44px);
}

.newsletter p {
  margin: 12px 0 0;
  color: var(--muted);
}

.newsletter-form {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 10px;
}

.newsletter-message {
  grid-column: 1 / -1;
  min-height: 20px;
  margin: 0;
  color: var(--sage);
  font-size: 13px;
}

.site-footer {
  padding: 66px 0 26px;
  background: #232a24;
  color: rgba(255, 255, 255, 0.72);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.7fr 1.2fr;
  gap: 54px;
}

.site-footer .brand {
  color: var(--white);
}

.site-footer .brand-mark {
  border-color: rgba(255, 255, 255, 0.5);
  color: var(--white);
}

.footer-about {
  max-width: 390px;
  margin: 20px 0 0;
  font-size: 14px;
}

.footer-title {
  margin: 0 0 18px;
  color: #e9c9ac;
  font-family: "DM Sans", sans-serif;
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.footer-links {
  display: grid;
  gap: 11px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
}

.company-info {
  display: grid;
  gap: 6px;
  margin: 0;
  font-size: 13px;
}

.company-info span {
  color: rgba(255, 255, 255, 0.48);
}

.footer-bottom {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 32px;
  margin-top: 46px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 12px;
}

.footer-bottom p {
  margin: 0;
}

.page-hero {
  position: relative;
  display: grid;
  min-height: 460px;
  align-items: end;
  overflow: hidden;
  padding: 138px 0 70px;
  color: var(--white);
}

.page-hero::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26, 31, 25, 0.76), rgba(26, 31, 25, 0.2));
  content: "";
}

.page-hero img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero-content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.page-hero h1 {
  font-size: clamp(44px, 6vw, 68px);
}

.page-hero p {
  max-width: 610px;
  margin: 20px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 18px;
}

.content-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 320px;
  gap: 64px;
}

.prose {
  max-width: 760px;
}

.prose h2 {
  margin: 0 0 22px;
  font-size: 38px;
}

.prose h3 {
  margin: 34px 0 12px;
}

.prose p {
  margin: 0 0 18px;
  color: var(--muted);
}

.prose ul {
  margin: 0 0 24px;
  padding-left: 20px;
  color: var(--muted);
}

.prose li {
  margin-bottom: 8px;
}

.aside-panel {
  padding: 26px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.aside-panel h3 {
  margin-bottom: 14px;
  font-size: 23px;
}

.aside-panel p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 14px;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 70px;
}

.contact-details {
  display: grid;
  gap: 24px;
  margin-top: 30px;
}

.contact-item {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 12px;
}

.contact-item i {
  color: var(--clay);
  font-size: 18px;
  padding-top: 4px;
}

.contact-item strong {
  display: block;
  margin-bottom: 3px;
}

.contact-item span,
.contact-item a {
  color: var(--muted);
  font-size: 14px;
}

.contact-form {
  display: grid;
  gap: 15px;
  padding: 30px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.contact-form label {
  color: var(--muted);
  font-size: 13px;
  font-weight: 700;
}

.contact-form textarea {
  min-height: 150px;
  resize: vertical;
}

.contact-form .btn {
  justify-self: start;
}

.contact-message {
  min-height: 20px;
  margin: 0;
  color: var(--sage);
  font-size: 13px;
}

.search-panel {
  position: fixed;
  z-index: 1200;
  top: 0;
  right: 0;
  left: 0;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  transform: translateY(-110%);
  transition: transform 0.25s ease;
}

.search-panel.open {
  transform: translateY(0);
}

.search-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 12px;
}

.search-input-wrap {
  position: relative;
}

.search-input-wrap i {
  position: absolute;
  top: 50%;
  left: 16px;
  color: var(--muted);
  transform: translateY(-50%);
}

.search-input {
  width: 100%;
  min-height: 52px;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 12px 16px 12px 46px;
  background: var(--white);
  outline: none;
}

.search-results {
  grid-column: 1 / -1;
  display: none;
  gap: 8px;
  padding-top: 8px;
}

.search-results.visible {
  display: grid;
}

.search-result {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

.search-result:hover {
  color: var(--clay);
}

.search-result i {
  font-size: 12px;
}

.no-results {
  color: var(--muted);
  font-size: 14px;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

@media (max-width: 980px) {
  .main-nav {
    position: fixed;
    top: 78px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: var(--shadow);
    transform: translateY(-140%);
    transition: transform 0.25s ease;
  }

  .main-nav.open {
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px 20px;
    border-top: 1px solid var(--line);
  }

  .menu-toggle {
    display: inline-grid;
  }

  .intro-grid {
    grid-template-columns: 1fr repeat(3, 0.7fr);
  }

  .category-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .guide-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .guide-intro {
    position: static;
  }

  .kits-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .workshop-copy {
    padding: 52px 38px;
  }

  .footer-grid {
    grid-template-columns: 1fr 0.7fr;
  }

  .footer-grid > :last-child {
    grid-column: 1 / -1;
  }

  .content-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .aside-panel {
    max-width: 520px;
  }

  .interactive-panel {
    grid-template-columns: 1fr;
  }

  .workshop-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 740px) {
  .container {
    width: min(calc(100% - 28px), var(--container));
  }

  .site-header {
    height: 68px;
  }

  .brand {
    font-size: 19px;
    max-width: calc(100vw - 150px);
    overflow: hidden;
    text-overflow: ellipsis;
  }

  .brand-mark {
    width: 29px;
    height: 29px;
  }

  .main-nav {
    top: 68px;
  }

  .nav-actions .btn {
    display: none;
  }

  .hero {
    min-height: 680px;
  }

  .hero::after {
    background: linear-gradient(90deg, rgba(24, 28, 23, 0.77), rgba(24, 28, 23, 0.24));
  }

  .hero-content {
    padding-top: 68px;
  }

  h1 {
    font-size: 48px;
  }

  .hero p {
    font-size: 17px;
  }

  .hero-note {
    right: 14px;
    bottom: 22px;
    left: 14px;
  }

  .intro-grid {
    grid-template-columns: 1fr;
  }

  .intro-stat {
    padding: 0 0 0 18px;
  }

  .section {
    padding: 74px 0;
  }

  .section-head {
    display: block;
    margin-bottom: 30px;
  }

  .section-head p {
    margin-top: 16px;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
  }

  .article-card.featured img {
    aspect-ratio: 4 / 3;
  }

  .category-grid,
  .kits-grid,
  .workshop-grid,
  .about-values,
  .timeline {
    grid-template-columns: 1fr;
  }

  .interactive-panel {
    padding: 24px;
  }

  .timeline {
    gap: 22px;
    border-top: 0;
  }

  .timeline-item {
    padding: 0 0 0 20px;
    border-left: 1px solid var(--line);
  }

  .timeline-item::before {
    top: 7px;
    left: -6px;
  }

  .info-modal {
    grid-template-columns: 1fr;
  }

  .modal-image {
    min-height: 220px;
    max-height: 260px;
  }

  .modal-content {
    padding: 28px 20px;
  }

  .category-card {
    min-height: 290px;
  }

  .guide-row {
    grid-template-columns: 44px 1fr auto;
    gap: 12px;
  }

  .guide-row h3 {
    font-size: 22px;
  }

  .workshop-band {
    grid-template-columns: 1fr;
  }

  .workshop-image {
    min-height: 290px;
  }

  .workshop-copy {
    padding: 42px 20px;
  }

  .postcode-form,
  .newsletter-form {
    grid-template-columns: 1fr;
  }

  .newsletter-wrap {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .footer-grid > :last-child {
    grid-column: auto;
  }

  .footer-bottom {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .page-hero {
    min-height: 400px;
    padding-bottom: 48px;
  }

  .page-hero h1 {
    font-size: 44px;
  }

  .contact-form {
    padding: 20px;
  }
}

@media (max-width: 480px) {
  .hero-actions {
    display: grid;
  }

  .hero-actions .btn {
    width: 100%;
  }

  h1 {
    font-size: 42px;
    overflow-wrap: anywhere;
  }

  h2 {
    font-size: 34px;
  }

  .guide-row {
    grid-template-columns: 36px 1fr;
  }

  .guide-row i {
    display: none;
  }

  .search-inner {
    grid-template-columns: 1fr auto;
  }

  .modal-facts {
    grid-template-columns: 1fr;
  }
}
