@import url("https://fonts.googleapis.com/css2?family=Bricolage+Grotesque:opsz,wght@12..96,500;12..96,700;12..96,800&family=Hanken+Grotesk:wght@400;500;600&family=Space+Mono:wght@400;700&display=swap");

:root {
  --ink: #191a1c;
  --graphite: #222428;
  --paper: #ffffff;
  --mist: #f5f5f2;
  --mist-2: #ecece7;
  --orange: #e0922e;
  --orange-dark: #ad6518;
  --grey: #5d6064;
  --grey-2: #85898e;
  --line: #e2e1dc;
  --line-dark: rgba(255, 255, 255, 0.15);
  --shadow: 0 22px 54px -34px rgba(20, 20, 22, 0.34);
  --display: "Bricolage Grotesque", system-ui, sans-serif;
  --body: "Hanken Grotesk", system-ui, sans-serif;
  --mono: "Space Mono", ui-monospace, monospace;
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--body);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

html.menu-open,
body.menu-open {
  overflow: hidden;
  overscroll-behavior: none;
}

/* Retire any floating WhatsApp widget left behind by an older upload. */
.wa-float,
.whatsapp-float,
.floating-whatsapp,
.whatsapp-floating,
[data-floating-whatsapp] {
  display: none !important;
}

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

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

p,
h1,
h2,
h3,
h4,
ul,
ol {
  margin-top: 0;
}

.wrap {
  width: min(var(--max), calc(100% - 48px));
  margin-inline: auto;
}

.mono,
.eyebrow,
.section-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.eyebrow,
.section-label {
  color: var(--orange-dark);
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 18px;
}

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  transform: translateY(-140%);
  padding: 10px 14px;
  border-radius: 6px;
  color: #fff;
  background: var(--ink);
}

.skip-link:focus {
  transform: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.94);
  backdrop-filter: blur(12px);
}

.header-inner {
  display: flex;
  min-height: 68px;
  align-items: center;
  gap: 24px;
}

.brand {
  display: flex;
  min-width: max-content;
  align-items: center;
  gap: 12px;
}

.brand img {
  width: 62px;
  height: auto;
}

.brand-copy {
  display: grid;
  line-height: 1;
}

.brand-copy strong {
  font-family: var(--display);
  font-size: 1.08rem;
  letter-spacing: -0.025em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--grey);
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.bearhill-origin {
  min-width: max-content;
  padding: 7px 10px;
  border-left: 1px solid var(--line);
  color: var(--orange-dark);
  font: 700 0.62rem var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.bearhill-origin:hover {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.main-nav {
  display: flex;
  margin-left: auto;
  align-items: center;
  gap: 24px;
}

.main-nav > a,
.nav-dropdown > button {
  border: 0;
  color: var(--ink);
  background: none;
  font: 600 0.91rem var(--body);
  cursor: pointer;
}

.main-nav > a:hover,
.nav-dropdown > button:hover,
.main-nav > a[aria-current="page"] {
  color: var(--orange-dark);
}

.nav-dropdown {
  position: relative;
}

.nav-dropdown > button {
  padding: 14px 0;
}

.nav-dropdown > button::after {
  margin-left: 6px;
  content: "▾";
  font-size: 0.68rem;
}

.nav-panel {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  display: grid;
  width: 285px;
  visibility: hidden;
  transform: translate(-50%, 8px);
  gap: 2px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: 14px;
  opacity: 0;
  background: #fff;
  box-shadow: var(--shadow);
  transition: 0.18s ease;
}

.nav-dropdown:hover .nav-panel,
.nav-dropdown:focus-within .nav-panel {
  visibility: visible;
  transform: translate(-50%, 0);
  opacity: 1;
}

.nav-panel a {
  padding: 9px 11px;
  border-radius: 8px;
  font-size: 0.9rem;
}

.nav-panel a:hover {
  color: var(--orange-dark);
  background: var(--mist);
}

.language-picker {
  position: relative;
}

.language-button {
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 7px;
  color: var(--ink);
  background: #fff;
  font: 700 0.63rem var(--mono);
  cursor: pointer;
}

.language-button::after {
  margin-left: 7px;
  content: "▾";
}

.language-menu {
  position: absolute;
  top: calc(100% + 10px);
  right: 0;
  display: none;
  width: 164px;
  padding: 8px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: #fff;
  box-shadow: var(--shadow);
}

.language-picker.open .language-menu {
  display: grid;
}

.language-menu a {
  padding: 8px 10px;
  border-radius: 7px;
  font-size: 0.88rem;
}

.language-menu a:hover,
.language-menu a[aria-current="page"] {
  color: var(--orange-dark);
  background: var(--mist);
}

.menu-button {
  display: none;
  margin-left: auto;
  padding: 7px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #fff;
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 10px 18px;
  border: 1px solid var(--orange-dark);
  border-radius: 8px;
  color: var(--ink);
  background: var(--orange);
  font-weight: 700;
  transition: transform 0.17s ease, box-shadow 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 13px 24px -16px rgba(106, 62, 11, 0.65);
}

.button.dark {
  border-color: var(--ink);
  color: #fff;
  background: var(--ink);
}

.button.light {
  border-color: rgba(255, 255, 255, 0.42);
  color: #fff;
  background: transparent;
}

.button.small {
  min-height: 38px;
  padding: 8px 13px;
  font-size: 0.86rem;
}

.text-link {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding-bottom: 2px;
  border-bottom: 1px solid currentColor;
  font-weight: 700;
}

.hero {
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.hero-grid {
  display: grid;
  min-height: 630px;
  grid-template-columns: 0.92fr 1.08fr;
  align-items: stretch;
}

.hero-copy {
  display: flex;
  max-width: 610px;
  flex-direction: column;
  justify-content: center;
  padding: 86px 58px 86px 0;
}

.hero h1,
.page-hero h1,
.section-head h2,
.feature-copy h2,
.story-copy h2,
.cta h2 {
  margin-bottom: 0;
  font-family: var(--display);
  font-weight: 800;
  line-height: 1.03;
  letter-spacing: -0.04em;
  text-wrap: balance;
}

.hero h1 {
  max-width: 12ch;
  font-size: clamp(3rem, 6.4vw, 5.7rem);
}

.hero h1 em,
.page-hero h1 em,
.section-head h2 em,
.feature-copy h2 em {
  color: var(--orange-dark);
  font-style: normal;
}

.lead {
  max-width: 55ch;
  margin: 23px 0 30px;
  color: var(--grey);
  font-size: 1.14rem;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 18px;
}

.hero-note {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 26px;
  margin-top: 42px;
  color: var(--grey-2);
  font: 400 0.63rem var(--mono);
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-media {
  position: relative;
  min-height: 630px;
  overflow: hidden;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(245, 245, 242, 0.18), transparent 22%);
  content: "";
}

.image-caption {
  position: absolute;
  right: 18px;
  bottom: 18px;
  z-index: 2;
  max-width: 280px;
  padding: 10px 12px;
  border-radius: 6px;
  color: #fff;
  background: rgba(25, 26, 28, 0.84);
  font: 400 0.62rem/1.5 var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.fact-strip {
  border-bottom: 1px solid var(--line);
  background: #fff;
}

.fact-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

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

.fact:first-child {
  border-left: 0;
  padding-left: 0;
}

.fact strong {
  display: block;
  font-family: var(--display);
  font-size: 1.25rem;
  line-height: 1.2;
}

.fact span {
  display: block;
  margin-top: 4px;
  color: var(--grey);
  font-size: 0.82rem;
}

.section {
  padding: 94px 0;
}

.section.mist {
  border-block: 1px solid var(--line);
  background: var(--mist);
}

.section.dark-section {
  color: #fff;
  background: var(--graphite);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(280px, 0.44fr);
  gap: 80px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2 {
  max-width: 15ch;
  margin-top: 10px;
  font-size: clamp(2.3rem, 4.8vw, 4.4rem);
}

.section-head > p {
  margin: 0;
  color: var(--grey);
  font-size: 1.04rem;
}

.dark-section .section-head > p {
  color: rgba(255, 255, 255, 0.68);
}

.two-column {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.feature-image {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 15px;
  background: var(--mist);
}

.feature-image img {
  width: 100%;
  aspect-ratio: 5 / 4;
  object-fit: cover;
}

.feature-image.tall img {
  aspect-ratio: 4 / 5;
}

.feature-copy {
  max-width: 610px;
}

.feature-copy h2,
.story-copy h2 {
  margin: 9px 0 20px;
  font-size: clamp(2.15rem, 4vw, 3.6rem);
}

.feature-copy p,
.story-copy p,
.prose p {
  color: var(--grey);
  font-size: 1.03rem;
}

.feature-copy p + p,
.story-copy p + p {
  margin-top: 17px;
}

.story {
  border-block: 1px solid var(--line);
  background: var(--mist);
}

.story-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 75px;
  align-items: start;
}

.story-mark {
  position: sticky;
  top: 104px;
}

.story-mark img {
  width: 100%;
  aspect-ratio: 4 / 5;
  border-radius: 14px;
  object-fit: cover;
}

.story-signoff {
  margin-top: 30px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 1.25rem;
  font-weight: 700;
}

.product-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 22px;
}

.product-card {
  display: flex;
  overflow: hidden;
  flex-direction: column;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: #fff;
}

.product-card.featured {
  border-color: rgba(25, 26, 28, 0.34);
  box-shadow: var(--shadow);
}

.product-card > img {
  width: 100%;
  height: 370px;
  object-fit: cover;
}

.product-content {
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 27px;
}

.badge {
  align-self: flex-start;
  margin-bottom: 14px;
  padding: 5px 8px;
  border: 1px solid var(--line);
  border-radius: 999px;
  color: var(--orange-dark);
  font: 700 0.62rem var(--mono);
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-card h3 {
  margin-bottom: 12px;
  font-family: var(--display);
  font-size: clamp(1.85rem, 3vw, 2.65rem);
  line-height: 1.05;
  letter-spacing: -0.03em;
}

.product-card p {
  color: var(--grey);
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px 20px;
  padding: 0;
  margin: 10px 0 25px;
  list-style: none;
}

.check-list li {
  font-size: 0.9rem;
}

.check-list li::before {
  margin-right: 7px;
  color: var(--orange-dark);
  content: "✓";
  font-weight: 700;
}

.product-bottom {
  display: flex;
  margin-top: auto;
  padding-top: 21px;
  border-top: 1px solid var(--line);
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.price {
  white-space: nowrap;
  font-family: var(--display);
  font-size: 2rem;
  font-weight: 800;
  line-height: 1;
}

.price small {
  display: block;
  margin-top: 6px;
  color: var(--grey);
  font: 400 0.62rem var(--mono);
}

.shipping-row {
  display: grid;
  grid-template-columns: auto repeat(3, 1fr);
  margin-top: 28px;
  padding-top: 25px;
  border-top: 1px solid var(--line);
  align-items: center;
  gap: 22px;
}

.shipping-row img {
  width: 82px;
}

.shipping-row p {
  display: grid;
  margin: 0;
  padding-left: 20px;
  border-left: 1px solid var(--line);
  line-height: 1.35;
}

.shipping-row strong {
  font-size: 0.88rem;
}

.shipping-row span {
  margin-top: 3px;
  color: var(--grey);
  font-size: 0.76rem;
}

.stage-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  border-block: 1px solid rgba(255, 255, 255, 0.18);
}

.stage {
  min-height: 285px;
  padding: 27px 20px;
  border-left: 1px solid rgba(255, 255, 255, 0.18);
}

.stage:first-child {
  border-left: 0;
}

.stage .stage-no {
  color: var(--orange);
  font: 700 0.64rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.stage h3 {
  margin: 29px 0 8px;
  font-family: var(--display);
  font-size: 1.58rem;
  line-height: 1;
}

.stage strong {
  display: block;
  color: rgba(255, 255, 255, 0.8);
  font-size: 0.86rem;
}

.stage p {
  margin: 17px 0 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
  line-height: 1.55;
}

.category-grid,
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.category-card,
.info-card {
  display: flex;
  min-height: 245px;
  flex-direction: column;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  transition: transform 0.18s ease, box-shadow 0.2s ease;
}

.category-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.category-card .mono,
.info-card .mono {
  margin-bottom: 28px;
  color: var(--orange-dark);
}

.category-card h3,
.info-card h3 {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 1.42rem;
  line-height: 1.1;
}

.category-card p,
.info-card p {
  color: var(--grey);
  font-size: 0.93rem;
}

.category-card .text-link {
  align-self: flex-start;
  margin-top: auto;
  color: var(--orange-dark);
  font-size: 0.9rem;
}

.process {
  counter-reset: step;
}

.process-step {
  display: grid;
  grid-template-columns: 72px 0.75fr 1.25fr;
  gap: 28px;
  padding: 27px 0;
  border-top: 1px solid var(--line);
  align-items: start;
}

.process-step:last-child {
  border-bottom: 1px solid var(--line);
}

.process-step::before {
  counter-increment: step;
  color: var(--orange-dark);
  content: "0" counter(step);
  font: 700 0.75rem var(--mono);
}

.process-step h3 {
  margin: 0;
  font-family: var(--display);
  font-size: 1.35rem;
  line-height: 1.15;
}

.process-step p {
  max-width: 62ch;
  margin: 0;
  color: var(--grey);
}

.organiser-band {
  color: #fff;
  background: var(--ink);
}

.organiser-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 70px;
  align-items: start;
}

.organiser-grid h2 {
  margin: 10px 0 20px;
  font-family: var(--display);
  font-size: clamp(2.4rem, 5vw, 4.5rem);
  line-height: 1;
  letter-spacing: -0.04em;
}

.organiser-grid p {
  color: rgba(255, 255, 255, 0.68);
}

.organiser-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line-dark);
}

.organiser-list div {
  padding: 21px 18px 21px 0;
  border-bottom: 1px solid var(--line-dark);
}

.organiser-list div:nth-child(even) {
  padding-left: 18px;
  border-left: 1px solid var(--line-dark);
}

.organiser-list strong {
  display: block;
  margin-bottom: 4px;
  font-family: var(--display);
  font-size: 1.08rem;
}

.organiser-list span {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.84rem;
}

.section-action {
  margin-top: 32px;
}

.contact-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9px;
  padding: 16px;
  border-radius: 14px;
  color: var(--ink);
  background: #fff;
  box-shadow: var(--shadow);
}

.contact-form label {
  display: flex;
  flex-direction: column;
  gap: 3px;
  font-size: 0.84rem;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  margin-top: 3px;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--ink);
  background: #fff;
  font: inherit;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--orange-dark);
  outline: 3px solid rgba(224, 146, 46, 0.16);
}

.contact-form .botcheck {
  display: none;
}

.contact-form .field-wide,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-section {
  padding-top: 42px;
  padding-bottom: 42px;
  text-align: left;
}

.contact-section .section-label {
  color: var(--orange);
}

.contact-wrap {
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 38px;
  align-items: start;
}

.contact-copy h2 {
  max-width: 12ch;
  margin: 8px 0 14px;
  font-family: var(--display);
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.contact-copy > p {
  max-width: 48ch;
  color: rgba(255, 255, 255, 0.7);
  line-height: 1.55;
}

.contact-email,
.contact-whatsapp {
  margin-bottom: 10px;
}

.contact-email a,
.contact-whatsapp a {
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.contact-whatsapp span,
.contact-note {
  display: inline-block;
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.84rem;
}

.contact-note {
  margin: 8px 0 0;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 14px 0;
}

.social-links a {
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 700;
}

.social-links a:hover {
  border-color: var(--orange);
  color: #fff;
  background: rgba(224, 146, 46, 0.12);
}

.gallery-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 0.8fr;
  grid-template-rows: repeat(2, 270px);
  gap: 12px;
}

.gallery-grid img {
  width: 100%;
  height: 100%;
  border-radius: 11px;
  object-fit: cover;
}

.gallery-grid img:first-child {
  grid-row: 1 / 3;
}

.modular-showcase {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  align-items: center;
  gap: clamp(28px, 5vw, 68px);
  margin-top: 32px;
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
  box-shadow: 0 18px 55px rgba(18, 32, 28, 0.08);
}

.modular-copy h3 {
  max-width: 12ch;
  margin: 8px 0 16px;
  font-size: clamp(2rem, 3.2vw, 3.4rem);
  line-height: 0.98;
}

.modular-copy p {
  color: var(--muted);
}

.modular-photo-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.modular-photo-grid img {
  width: 100%;
  height: 100%;
  aspect-ratio: 4 / 3;
  border-radius: 10px;
  object-fit: cover;
}

.modular-photo-grid img:first-child {
  grid-row: 1 / 3;
  aspect-ratio: 3 / 4;
}

.faq {
  max-width: 850px;
  margin: 0 auto;
  border-top: 1px solid var(--line);
}

.faq details {
  border-bottom: 1px solid var(--line);
}

.faq summary {
  position: relative;
  padding: 22px 42px 22px 0;
  cursor: pointer;
  list-style: none;
  font-family: var(--display);
  font-size: 1.13rem;
  font-weight: 700;
}

.faq summary::-webkit-details-marker {
  display: none;
}

.faq summary::after {
  position: absolute;
  top: 19px;
  right: 4px;
  color: var(--orange-dark);
  content: "+";
  font: 400 1.4rem var(--mono);
}

.faq details[open] summary::after {
  content: "−";
}

.faq p {
  max-width: 72ch;
  margin: 0;
  padding: 0 45px 22px 0;
  color: var(--grey);
}

.cta {
  padding: 78px 24px;
  text-align: center;
  color: #fff;
  background: var(--graphite);
}

.cta h2 {
  max-width: 18ch;
  margin: 0 auto 15px;
  font-size: clamp(2.2rem, 4.8vw, 4rem);
}

.cta p {
  max-width: 55ch;
  margin: 0 auto 28px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 1.05rem;
}

.page-hero {
  padding: 88px 0 78px;
  border-bottom: 1px solid var(--line);
  background: var(--mist);
}

.page-hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 70px;
  align-items: end;
}

.page-hero h1 {
  max-width: 15ch;
  margin-top: 8px;
  font-size: clamp(3rem, 6vw, 5.5rem);
}

.page-hero .lead {
  margin-bottom: 0;
}

.breadcrumbs {
  margin-bottom: 25px;
  color: var(--grey-2);
  font: 400 0.64rem var(--mono);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.breadcrumbs a {
  color: var(--orange-dark);
}

.article-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 260px;
  gap: 70px;
  align-items: start;
}

.prose {
  max-width: 790px;
}

.prose h2 {
  margin: 45px 0 15px;
  font-family: var(--display);
  font-size: clamp(1.8rem, 3.5vw, 2.8rem);
  line-height: 1.08;
  letter-spacing: -0.025em;
}

.prose h2:first-child {
  margin-top: 0;
}

.prose h3 {
  margin: 29px 0 9px;
  font-family: var(--display);
  font-size: 1.3rem;
  line-height: 1.15;
}

.prose ul {
  padding-left: 1.2em;
  color: var(--grey);
}

.prose li {
  margin: 8px 0;
}

.callout {
  margin: 32px 0;
  padding: 24px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--orange);
  border-radius: 10px;
  background: var(--mist);
}

.callout h3 {
  margin-top: 0;
}

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

.toc {
  position: sticky;
  top: 94px;
  padding: 20px;
  border: 1px solid var(--line);
  border-radius: 13px;
  background: #fff;
  box-shadow: var(--shadow);
}

.toc strong {
  display: block;
  margin-bottom: 9px;
  color: var(--orange-dark);
  font: 700 0.68rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.toc a {
  display: block;
  padding: 6px 0;
  color: var(--grey);
  font-size: 0.9rem;
}

.toc a:hover {
  color: var(--orange-dark);
}

.language-intro {
  max-width: 760px;
}

.language-intro h1 {
  margin-bottom: 15px;
  font-family: var(--display);
  font-size: clamp(2.6rem, 5vw, 4.6rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.legal-note {
  padding: 16px 0;
  border-top: 1px solid var(--line);
  color: var(--grey);
  font-size: 0.78rem;
}

footer {
  padding: 42px 0 20px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--graphite);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.45fr 1fr 1fr 1fr;
  gap: 28px;
}

.footer-brand .brand img {
  filter: brightness(0) invert(1);
}

.footer-brand .brand-copy strong {
  color: #fff;
}

.footer-brand .brand-copy small {
  color: rgba(255, 255, 255, 0.44);
}

.footer-brand > p {
  max-width: 35ch;
  margin-top: 12px;
}

.footer-grid h4 {
  margin-bottom: 13px;
  color: var(--orange);
  font: 700 0.67rem var(--mono);
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.footer-grid > div:not(:first-child) a {
  display: block;
  padding: 3px 0;
}

.footer-grid > div:last-child a[href^="https://bearhill.eu"] {
  margin-bottom: 5px;
  color: #fff;
  font-weight: 700;
  text-decoration: underline;
  text-decoration-color: var(--orange);
  text-underline-offset: 4px;
}

.footer-grid > div:not(:first-child) a:hover {
  color: #fff;
}

.footer-bottom {
  display: flex;
  margin-top: 28px;
  padding-top: 18px;
  border-top: 1px solid var(--line-dark);
  justify-content: space-between;
  gap: 25px;
  color: rgba(255, 255, 255, 0.42);
  font: 400 0.58rem var(--mono);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

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

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

@media (max-width: 1020px) {
  .site-header {
    /*
     * iOS Safari treats backdrop-filter as a containing block for fixed
     * descendants. That trapped the mobile navigation inside the 68px header.
     * The phone drawer is anchored to the sticky header instead, so its height
     * is explicitly the remaining visual viewport.
     */
    background: #fff;
    -webkit-backdrop-filter: none;
    backdrop-filter: none;
  }

  .menu-button {
    position: relative;
    z-index: 2;
    display: grid;
    width: 44px;
    height: 44px;
    flex: 0 0 44px;
    place-items: center;
    padding: 0;
    color: var(--ink);
    cursor: pointer;
    line-height: 1;
  }

  .main-nav {
    display: none;
    margin-left: auto;
  }

  .main-nav.open {
    position: absolute;
    z-index: 1;
    top: 100%;
    right: 0;
    bottom: auto;
    left: 0;
    display: flex;
    width: 100%;
    height: calc(100vh - var(--mobile-nav-top, 68px));
    height: calc(100dvh - var(--mobile-nav-top, 68px));
    max-height: calc(100vh - var(--mobile-nav-top, 68px));
    max-height: calc(100dvh - var(--mobile-nav-top, 68px));
    overflow-y: auto;
    overscroll-behavior: contain;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 16px max(24px, calc((100vw - var(--max)) / 2 + 24px))
      calc(28px + env(safe-area-inset-bottom));
    border-top: 1px solid var(--line);
    background: #fff;
    box-shadow: 0 20px 40px rgba(20, 20, 22, 0.12);
    -webkit-overflow-scrolling: touch;
  }

  .main-nav.open > a,
  .main-nav.open .nav-dropdown {
    display: block;
    width: 100%;
    padding: 0;
    border-bottom: 1px solid var(--line);
    font-size: 1.05rem;
  }

  .main-nav.open > a {
    padding: 16px 2px;
  }

  .main-nav.open .nav-dropdown > button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 16px 2px;
    text-align: left;
    font-size: 1.05rem;
  }

  .main-nav.open .nav-dropdown > button::after {
    transition: transform 0.18s ease;
  }

  .main-nav.open .nav-dropdown.open > button::after {
    transform: rotate(180deg);
  }

  .main-nav.open .nav-panel {
    position: static;
    display: none;
    width: auto;
    visibility: hidden;
    transform: none;
    gap: 2px;
    padding: 0 0 14px 12px;
    border: 0;
    opacity: 0;
    background: transparent;
    box-shadow: none;
  }

  .main-nav.open .nav-dropdown.open .nav-panel {
    display: grid;
    visibility: visible;
    opacity: 1;
  }

  .main-nav.open .nav-panel a {
    padding: 9px 10px;
  }

  .main-nav.open .language-picker {
    display: block;
    margin-top: 18px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: var(--mist);
  }

  .main-nav.open .language-button {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: space-between;
    padding: 0;
    border: 0;
    background: transparent;
    font-size: 0.72rem;
    text-align: left;
  }

  .main-nav.open .language-menu {
    position: static;
    display: none;
    grid-template-columns: 1fr 1fr;
    width: auto;
    gap: 3px;
    margin-top: 12px;
    padding: 10px 0 0;
    border-top: 1px solid var(--line);
    border-radius: 0;
    background: transparent;
  }

  .main-nav.open .language-picker.open .language-menu {
    display: grid;
  }

  .main-nav.open .language-menu a {
    padding: 9px 10px;
    border: 0;
    box-shadow: none;
  }

  .main-nav.open .header-shop {
    display: inline-flex;
    width: 100%;
    min-height: 48px;
    margin-top: 18px;
    padding: 10px 18px;
    border: 1px solid var(--orange-dark);
    text-align: center;
  }

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

  .hero-copy {
    max-width: 760px;
    padding: 75px 0 66px;
  }

  .hero-media {
    min-height: 520px;
  }

  .section-head {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .two-column,
  .story-grid,
  .organiser-grid,
  .page-hero-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .story-mark {
    position: static;
  }

  .story-mark img {
    aspect-ratio: 16 / 10;
  }

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

  .stage {
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .stage:nth-child(odd) {
    border-left: 0;
  }

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

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

  .article-layout {
    grid-template-columns: 1fr;
  }

  .contact-wrap {
    grid-template-columns: 1fr;
  }

  .toc {
    position: static;
    order: -1;
  }

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

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

@media (max-width: 760px) {
  .wrap {
    width: min(100% - 32px, var(--max));
  }

  .header-inner {
    gap: 10px;
  }

  .brand img {
    width: 52px;
  }

  .brand-copy strong {
    font-size: 0.98rem;
  }

  .bearhill-origin {
    padding: 6px 0 6px 8px;
    font-size: 0.52rem;
  }

  .hero h1 {
    font-size: 3.5rem;
  }

  .hero-media {
    min-height: 400px;
  }

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

  .fact {
    border-bottom: 1px solid var(--line);
  }

  .fact:nth-child(odd) {
    padding-left: 0;
    border-left: 0;
  }

  .section {
    padding: 70px 0;
  }

  .two-column {
    gap: 30px;
  }

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

  .contact-form {
    grid-template-columns: 1fr;
  }

  .contact-form .field-wide,
  .contact-form button {
    grid-column: 1;
  }

  .product-card > img {
    height: 310px;
  }

  .shipping-row {
    grid-template-columns: auto 1fr;
  }

  .shipping-row p:nth-last-child(-n + 2) {
    display: none;
  }

  .category-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .process-step {
    grid-template-columns: 48px 1fr;
    gap: 12px;
  }

  .process-step p {
    grid-column: 2;
  }

  .gallery-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 340px 210px 210px;
  }

  .gallery-grid img:first-child {
    grid-column: 1 / -1;
    grid-row: auto;
  }

  .modular-showcase {
    grid-template-columns: 1fr;
  }

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

  .footer-brand {
    grid-column: 1 / -1;
  }

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

  .footer-bottom {
    flex-direction: column;
  }
}

@media (max-width: 520px) {
  .hero-copy {
    padding: 60px 0 54px;
  }

  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-media {
    min-height: 330px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

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

  .fact {
    padding: 18px 14px;
  }

  .section-head h2,
  .feature-copy h2,
  .story-copy h2 {
    font-size: 2.4rem;
  }

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

  .stage,
  .stage:nth-child(odd) {
    min-height: auto;
    border-left: 0;
  }

  .stage:last-child {
    grid-column: auto;
  }

  .product-card > img {
    height: 250px;
  }

  .check-list {
    grid-template-columns: 1fr;
  }

  .product-bottom {
    align-items: stretch;
    flex-direction: column;
  }

  .product-bottom .button {
    width: 100%;
  }

  .organiser-list {
    grid-template-columns: 1fr;
  }

  .organiser-list div:nth-child(even) {
    padding-left: 0;
    border-left: 0;
  }

  .gallery-grid {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: repeat(5, 300px);
  }

  .gallery-grid img:first-child {
    grid-column: auto;
  }

  .modular-showcase {
    padding: 20px;
  }

  .modular-photo-grid {
    grid-template-columns: 1fr;
  }

  .modular-photo-grid img {
    grid-column: auto;
    grid-row: auto;
    aspect-ratio: 4 / 3;
  }

  .modular-photo-grid img:first-child {
    aspect-ratio: 3 / 4;
  }

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

  .contact-form {
    padding: 16px;
  }

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

  .contact-section {
    padding-top: 38px;
    padding-bottom: 38px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

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

  .button,
  .category-card {
    transition: none;
  }
}
