/* ============================================
   CBM Cricket — Heritage workshop design system
   ============================================ */

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { -webkit-text-size-adjust: 100%; scroll-behavior: smooth; }
body { min-height: 100vh; line-height: 1.6; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
img, picture, video { display: block; max-width: 100%; height: auto; }
input, button, textarea, select { font: inherit; color: inherit; }
button { background: none; border: 0; cursor: pointer; }
a { color: inherit; text-decoration: none; }

/* ---------- Tokens ---------- */
:root {
  --cream: #F4EFE6;
  --bone: #E8E1D3;
  --ink: #1C1C1A;
  --charcoal: #3A3A36;
  --mute: #6E6B62;
  --willow: #7A8A5C;
  --oxblood: #6B2A2A;
  --rule: #C9C0AE;

  --serif: 'Fraunces', 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Helvetica Neue', Arial, sans-serif;

  --max: 1280px;
  --gutter: clamp(1.25rem, 4vw, 3rem);
  --rhythm: clamp(4rem, 9vw, 8rem);

  --t-fast: 200ms;
  --t-med: 400ms;
  --t-slow: 700ms;
  --ease: cubic-bezier(.2, .7, .2, 1);
}

/* ---------- Base typography ---------- */
body {
  font-family: var(--sans);
  font-size: 17px;
  color: var(--ink);
  background: var(--cream);
  font-feature-settings: "ss01", "cv11";
}

h1, h2, h3, h4 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--ink);
  font-variation-settings: "SOFT" 30, "WONK" 0;
}

h1 { font-size: clamp(2.6rem, 6.5vw, 5.5rem); }
h2 { font-size: clamp(2rem, 4.5vw, 3.6rem); }
h3 { font-size: clamp(1.4rem, 2.4vw, 1.85rem); }
h4 { font-size: 1.15rem; letter-spacing: 0; }

p { color: var(--charcoal); }
p + p { margin-top: 1em; }

::selection { background: var(--ink); color: var(--cream); }

/* ---------- Reusable atoms ---------- */
.eyebrow {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

.hairline {
  border: 0;
  border-top: 1px solid var(--rule);
  width: 100%;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  padding: 0.95rem 1.6rem;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--ink);
  background: var(--ink);
  color: var(--cream);
  transition: background var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
  cursor: pointer;
}
.btn:hover { background: var(--oxblood); border-color: var(--oxblood); }
.btn:focus-visible { outline: 2px solid var(--oxblood); outline-offset: 3px; }

.btn--ghost {
  background: transparent;
  color: var(--ink);
}
.btn--ghost:hover { background: var(--ink); color: var(--cream); }

.btn--light {
  background: var(--cream);
  color: var(--ink);
  border-color: var(--cream);
}
.btn--light:hover { background: var(--bone); border-color: var(--bone); color: var(--ink); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 0.6em;
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.35em;
  transition: gap var(--t-fast) var(--ease), color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.link-arrow:hover { gap: 1em; color: var(--oxblood); border-color: var(--oxblood); }

.tag {
  display: inline-block;
  padding: 0.28rem 0.7rem;
  font-size: 0.7rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--charcoal);
  background: var(--bone);
}

/* ---------- Layout ---------- */
.container {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
}

.section { padding-block: var(--rhythm); }
.section--tight { padding-block: calc(var(--rhythm) * 0.6); }
.section--bone { background: var(--bone); }
.section--ink { background: var(--ink); color: var(--cream); }
.section--ink h2, .section--ink h3 { color: var(--cream); }
.section--ink p { color: rgba(244, 239, 230, 0.78); }
.section--ink .eyebrow { color: rgba(244, 239, 230, 0.6); }

.grid { display: grid; gap: clamp(1rem, 2vw, 2rem); }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--2 { grid-template-columns: repeat(2, 1fr); }

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.split__media { aspect-ratio: 4 / 5; overflow: hidden; }
.split__media img { width: 100%; height: 100%; object-fit: cover; transition: transform var(--t-slow) var(--ease); }
.split__media:hover img { transform: scale(1.03); }

.section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
  padding-bottom: 1.5rem;
  border-bottom: 1px solid var(--rule);
}
.section-head__title { max-width: 32ch; }
.section-head .eyebrow { display: block; margin-bottom: 0.85rem; }

/* ---------- Header ---------- */
.site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 50;
  padding: 1.1rem 0;
  background: transparent;
  transition: background var(--t-med) var(--ease), border-color var(--t-med) var(--ease), padding var(--t-med) var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.is-scrolled {
  background: rgba(244, 239, 230, 0.92);
  -webkit-backdrop-filter: saturate(150%) blur(12px);
  backdrop-filter: saturate(150%) blur(12px);
  border-bottom-color: var(--rule);
  padding: 0.75rem 0;
}

/* When the page has no hero (interior pages), the header starts solid */
.site-header.is-solid {
  background: var(--cream);
  border-bottom-color: var(--rule);
}

.site-header__inner {
  max-width: var(--max);
  margin: 0 auto;
  padding-inline: var(--gutter);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.site-header__brand {
  display: inline-flex;
  align-items: center;
  gap: 0.85rem;
}

.wordmark {
  font-family: var(--serif);
  font-size: 1.45rem;
  letter-spacing: 0.04em;
  font-weight: 500;
  color: var(--ink);
  display: inline-flex;
  align-items: baseline;
  gap: 0.35em;
}

.header-social {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease), transform var(--t-fast) var(--ease);
}
.header-social svg { width: 20px; height: 20px; display: block; }
.header-social:hover { color: var(--oxblood); transform: translateY(-1px); }
.site-header:not(.is-solid):not(.is-scrolled) .header-social { color: var(--cream); }
.site-header:not(.is-solid):not(.is-scrolled) .header-social:hover { color: rgba(244,239,230,0.7); }
.wordmark__dot { color: var(--oxblood); }
.site-header:not(.is-solid):not(.is-scrolled) .wordmark { color: var(--cream); text-shadow: 0 1px 16px rgba(0,0,0,0.35); }
.site-header:not(.is-solid):not(.is-scrolled) .wordmark__dot { color: var(--cream); }

.nav { display: flex; align-items: center; gap: 0.5rem; }
.nav__list {
  list-style: none;
  display: flex;
  gap: clamp(0.75rem, 2vw, 1.75rem);
}
.nav__link {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  padding: 0.5rem 0.25rem;
  position: relative;
  color: var(--ink);
  transition: color var(--t-fast) var(--ease);
}
.site-header:not(.is-solid):not(.is-scrolled) .nav__link { color: var(--cream); }
.nav__link::after {
  content: '';
  position: absolute;
  left: 0.25rem; right: 0.25rem; bottom: 0.25rem;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left center;
  transition: transform var(--t-fast) var(--ease);
}
.nav__link:hover::after, .nav__link[aria-current="page"]::after { transform: scaleX(1); }

.nav__cta {
  margin-left: 0.75rem;
  font-size: 0.75rem;
  padding: 0.6rem 0.9rem;
  letter-spacing: 0.14em;
}

.nav-toggle {
  display: none;
  width: 44px; height: 44px;
  position: relative;
  color: var(--ink);
}
.site-header:not(.is-solid):not(.is-scrolled) .nav-toggle { color: var(--cream); }
.nav-toggle__bar, .nav-toggle__bar::before, .nav-toggle__bar::after {
  position: absolute;
  left: 10px;
  width: 24px;
  height: 1.5px;
  background: currentColor;
  transition: transform var(--t-med) var(--ease), top var(--t-med) var(--ease), opacity var(--t-fast) var(--ease);
}
.nav-toggle__bar { top: 21px; }
.nav-toggle__bar::before { content: ''; top: -7px; }
.nav-toggle__bar::after { content: ''; top: 7px; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar { background: transparent; }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::before { top: 0; transform: rotate(45deg); }
.nav-toggle[aria-expanded="true"] .nav-toggle__bar::after { top: 0; transform: rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: min(92vh, 880px);
  display: grid;
  align-items: end;
  color: var(--cream);
  overflow: hidden;
}
.hero__media {
  position: absolute; inset: 0;
  z-index: -2;
}
.hero__media img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero::after {
  content: '';
  position: absolute; inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(28,28,26,0.55) 0%, rgba(28,28,26,0.15) 35%, rgba(28,28,26,0.85) 100%);
}
.hero__inner {
  max-width: var(--max);
  margin: 0 auto;
  width: 100%;
  padding: var(--gutter);
  padding-bottom: clamp(3rem, 8vw, 6rem);
  padding-top: 9rem;
}
.hero__eyebrow {
  color: rgba(244, 239, 230, 0.78);
  margin-bottom: 1.5rem;
}
.hero h1 {
  color: var(--cream);
  max-width: 14ch;
  margin-bottom: 1.5rem;
  font-variation-settings: "SOFT" 100, "WONK" 0, "opsz" 144;
}
.hero__lead {
  color: rgba(244, 239, 230, 0.85);
  max-width: 48ch;
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  margin-bottom: 2.5rem;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 1rem; }
.hero__ctas .btn--ghost {
  color: var(--cream);
  border-color: var(--cream);
}
.hero__ctas .btn--ghost:hover { background: var(--cream); color: var(--ink); }

.hero--inner {
  min-height: 50vh;
  align-items: center;
  color: var(--ink);
}
.hero--inner::after {
  background: linear-gradient(180deg, rgba(244,239,230,0.4), rgba(244,239,230,0.85));
}
.hero--inner h1 { color: var(--ink); }
.hero--inner .hero__lead { color: var(--charcoal); }
.hero--inner .hero__eyebrow { color: var(--mute); }
.hero--inner .hero__inner { padding-top: 8rem; padding-bottom: 4rem; }

.hero--text {
  background: var(--cream);
  color: var(--ink);
  min-height: auto;
  padding-top: 9rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid var(--rule);
}
.hero--text::after { display: none; }
.hero--text h1 { color: var(--ink); }
.hero--text .hero__lead { color: var(--charcoal); max-width: 60ch; }
.hero--text .hero__eyebrow { color: var(--mute); }

/* ---------- Signature collection (home) ---------- */
.collection-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
}
.product-tile {
  display: flex;
  flex-direction: column;
  background: transparent;
}
.product-tile__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bone);
  margin-bottom: 1.5rem;
}
.product-tile__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.product-tile:hover .product-tile__media img { transform: scale(1.04); }
.product-tile__meta {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.5rem;
}
.product-tile__name {
  font-family: var(--serif);
  font-size: 1.7rem;
  font-weight: 400;
}
.product-tile__price {
  font-size: 1rem;
  letter-spacing: 0.04em;
  color: var(--charcoal);
}
.product-tile__grade {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.85rem;
}
.product-tile__desc {
  font-size: 0.95rem;
  color: var(--charcoal);
  margin-bottom: 1.25rem;
  flex-grow: 1;
}
.product-tile__cta {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--ink);
  padding-bottom: 0.35em;
  align-self: flex-start;
  transition: color var(--t-fast) var(--ease), border-color var(--t-fast) var(--ease);
}
.product-tile__cta:hover { color: var(--oxblood); border-color: var(--oxblood); }

/* ---------- Workshop strip ---------- */
.workshop {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
}
.workshop__media { aspect-ratio: 4 / 5; overflow: hidden; }
.workshop__media img { width: 100%; height: 100%; object-fit: cover; }
.workshop__copy h2 { margin: 0.85rem 0 1.5rem; max-width: 16ch; }
.workshop__copy p { max-width: 44ch; margin-bottom: 1.5rem; }

/* ---------- Categories teaser (home) ---------- */
.categories {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1rem, 2vw, 2rem);
}
.category {
  position: relative;
  aspect-ratio: 4 / 5;
  overflow: hidden;
  display: block;
  color: var(--cream);
}
.category img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.category::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 45%, rgba(28,28,26,0.7) 100%);
  transition: opacity var(--t-med) var(--ease);
}
.category__label {
  position: absolute;
  left: 1.5rem; right: 1.5rem; bottom: 1.5rem;
  z-index: 1;
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.category__name {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.4vw, 2rem);
  line-height: 1;
}
.category__arrow { font-size: 1.4rem; }
.category:hover img { transform: scale(1.05); }

/* ---------- Pull quote ---------- */
.pullquote {
  text-align: center;
  max-width: 28ch;
  margin: 0 auto;
  font-family: var(--serif);
  font-style: italic;
  font-size: clamp(1.8rem, 4vw, 3rem);
  line-height: 1.2;
  color: var(--ink);
  font-variation-settings: "SOFT" 100, "opsz" 144;
}
.pullquote::before, .pullquote::after { content: '"'; opacity: 0.5; }
.pullquote__attr {
  display: block;
  margin-top: 2rem;
  font-family: var(--sans);
  font-style: normal;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- Contact strip ---------- */
.contact-strip { text-align: center; }
.contact-strip h2 { max-width: 22ch; margin: 0 auto 1.5rem; }
.contact-strip p { max-width: 48ch; margin: 0 auto 2.5rem; }
.contact-strip__phone {
  display: block;
  font-family: var(--serif);
  font-size: clamp(1.5rem, 3vw, 2rem);
  margin-top: 1.5rem;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--ink);
  color: rgba(244, 239, 230, 0.7);
  padding: clamp(3rem, 6vw, 5rem) 0 2rem;
  font-size: 0.92rem;
}
.site-footer a { color: var(--cream); }
.site-footer a:hover { color: var(--bone); }
.site-footer__top {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(201, 192, 174, 0.2);
}
.site-footer__title {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}
.site-footer ul { list-style: none; display: grid; gap: 0.55rem; }
.site-footer__brand .wordmark { color: var(--cream); }
.site-footer__brand .wordmark__dot { color: var(--cream); opacity: 0.6; }
.site-footer__tagline { margin-top: 1rem; max-width: 30ch; color: rgba(244, 239, 230, 0.55); font-size: 0.88rem; }
.site-footer__bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  padding-top: 2rem;
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(244, 239, 230, 0.5);
}

/* ---------- Bats page: range table ---------- */
.range {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
}
.range__row {
  display: grid;
  grid-template-columns: 1.1fr 2fr;
  gap: clamp(2rem, 5vw, 4rem);
  padding: clamp(2.5rem, 5vw, 4rem) 0;
  border-bottom: 1px solid var(--rule);
  align-items: center;
}
.range__media {
  aspect-ratio: 3 / 4;
  overflow: hidden;
  background: var(--bone);
}
.range__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform var(--t-slow) var(--ease);
}
.range__row:hover .range__media img { transform: scale(1.03); }

.range__copy { max-width: 56ch; }
.range__head {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 0.5rem;
}
.range__name { font-family: var(--serif); font-size: clamp(2rem, 3.5vw, 2.6rem); }
.range__price { font-size: 1.2rem; letter-spacing: 0.04em; color: var(--ink); white-space: nowrap; }
.range__price--poa { font-size: 0.85rem; letter-spacing: 0.18em; text-transform: uppercase; color: var(--mute); }
.range__grade {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 1rem;
}
.range__desc { font-size: 1.05rem; line-height: 1.65; margin-bottom: 1.5rem; }
.range__specs {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.65rem 2rem;
  margin-bottom: 2rem;
  font-size: 0.92rem;
  color: var(--charcoal);
}
.range__specs strong {
  display: block;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  font-weight: 500;
  margin-bottom: 0.25rem;
}

.bats-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: clamp(2rem, 5vw, 5rem);
  align-items: start;
}
.bats-aside {
  position: sticky;
  top: 6rem;
  padding: 2rem;
  background: var(--bone);
  border: 1px solid var(--rule);
}
.bats-aside h3 { font-size: 1.3rem; margin-bottom: 1rem; }
.bats-aside p { font-size: 0.92rem; margin-bottom: 1rem; }
.bats-aside dl { display: grid; gap: 0.85rem; margin-top: 1.25rem; }
.bats-aside dt {
  font-size: 0.7rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.2rem;
}
.bats-aside dd { font-size: 0.92rem; color: var(--charcoal); }

/* ---------- Kit page sections ---------- */
.kit-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 1px solid var(--rule);
}
.kit-section:nth-child(even) .kit-section__media { order: 2; }
.kit-section__media { aspect-ratio: 4 / 5; overflow: hidden; }
.kit-section__media img { width: 100%; height: 100%; object-fit: cover; }
.kit-section__copy h2 { margin-bottom: 1rem; max-width: 16ch; }
.kit-section__copy p { max-width: 50ch; margin-bottom: 2rem; font-size: 1.02rem; }

.variant-table {
  border-top: 1px solid var(--rule);
  margin-bottom: 2rem;
}
.variant-row {
  display: grid;
  grid-template-columns: 1.1fr 2fr 0.6fr;
  gap: 1rem 2rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--rule);
  align-items: baseline;
}
.variant-row__name {
  font-family: var(--serif);
  font-size: 1.2rem;
}
.variant-row__detail { font-size: 0.92rem; color: var(--charcoal); }
.variant-row__price { font-size: 1rem; text-align: right; color: var(--ink); }

/* ---------- About timeline ---------- */
.about-article {
  max-width: 720px;
  margin: 0 auto;
}
.about-article p { font-size: 1.1rem; line-height: 1.75; margin-bottom: 1.5rem; }

.timeline {
  display: grid;
  gap: 0;
  border-top: 1px solid var(--rule);
  margin-block: 4rem;
}
.timeline__entry {
  display: grid;
  grid-template-columns: 120px 1fr 1.2fr;
  gap: clamp(1.5rem, 4vw, 4rem);
  padding: clamp(2rem, 4vw, 3rem) 0;
  border-bottom: 1px solid var(--rule);
  align-items: start;
}
.timeline__year {
  font-family: var(--serif);
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--oxblood);
  line-height: 1;
  padding-top: 0.25rem;
}
.timeline__body p { font-size: 1.05rem; line-height: 1.7; }
.timeline__media { aspect-ratio: 4 / 5; overflow: hidden; max-width: 320px; justify-self: end; width: 100%; }
.timeline__media img { width: 100%; height: 100%; object-fit: cover; }

.mission-block {
  background: var(--bone);
  padding: clamp(3rem, 6vw, 5rem) clamp(1.5rem, 4vw, 3rem);
  text-align: center;
  border-block: 1px solid var(--rule);
}
.mission-block .eyebrow { display: block; margin-bottom: 1.5rem; }
.mission-block p {
  max-width: 40ch;
  margin: 0 auto 2rem;
  font-family: var(--serif);
  font-size: clamp(1.3rem, 2.4vw, 1.7rem);
  line-height: 1.4;
  color: var(--ink);
}

/* ---------- Contact page ---------- */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: start;
}
.contact-card { display: grid; gap: 2rem; }
.contact-card__group h3 {
  font-size: 0.75rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
  margin-bottom: 0.6rem;
  font-family: var(--sans);
  font-weight: 500;
}
.contact-card__group p, .contact-card__group a {
  font-size: 1.05rem;
  color: var(--ink);
}
.contact-card__group a {
  border-bottom: 1px solid var(--rule);
  padding-bottom: 2px;
  transition: border-color var(--t-fast) var(--ease), color var(--t-fast) var(--ease);
}
.contact-card__group a:hover { border-color: var(--oxblood); color: var(--oxblood); }

.enquiry-form { display: grid; gap: 1.25rem; }
.enquiry-form__row {
  display: grid;
  gap: 0.4rem;
}
.enquiry-form__row label {
  font-size: 0.72rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mute);
}
.enquiry-form input,
.enquiry-form select,
.enquiry-form textarea {
  background: transparent;
  border: 0;
  border-bottom: 1px solid var(--rule);
  padding: 0.85rem 0.25rem;
  font-size: 1rem;
  color: var(--ink);
  font-family: var(--sans);
  border-radius: 0;
  appearance: none;
  transition: border-color var(--t-fast) var(--ease);
}
.enquiry-form input:focus,
.enquiry-form select:focus,
.enquiry-form textarea:focus {
  outline: 0;
  border-bottom-color: var(--ink);
}
.enquiry-form textarea {
  min-height: 130px;
  resize: vertical;
}
.enquiry-form__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}
.enquiry-form__submit { justify-self: start; margin-top: 0.5rem; }
.enquiry-form__note {
  font-size: 0.82rem;
  color: var(--mute);
  max-width: 50ch;
}

.map-strip {
  height: 280px;
  background:
    linear-gradient(180deg, rgba(244,239,230,0) 0%, rgba(244,239,230,0.6) 100%),
    radial-gradient(circle at 60% 40%, var(--willow) 0, var(--willow) 6px, transparent 7px),
    repeating-linear-gradient(45deg, var(--bone) 0 20px, var(--cream) 20px 40px);
  border: 1px solid var(--rule);
  position: relative;
  overflow: hidden;
}
.map-strip::after {
  content: 'Somerset, England';
  position: absolute;
  left: 50%; top: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--serif);
  font-size: 1.5rem;
  color: var(--ink);
  background: var(--cream);
  padding: 0.6rem 1.4rem;
  border: 1px solid var(--rule);
}

/* ---------- Testimonials ---------- */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 3rem);
}
.testimonial {
  border-top: 1px solid var(--rule);
  padding-top: 2rem;
  display: flex;
  flex-direction: column;
  margin: 0;
}
.testimonial blockquote {
  font-family: var(--serif);
  font-size: clamp(1.05rem, 1.5vw, 1.3rem);
  line-height: 1.45;
  color: var(--ink);
  margin: 0 0 2rem;
  flex-grow: 1;
  font-variation-settings: "SOFT" 50, "opsz" 24;
}
.testimonial blockquote::before {
  content: "\201C";
  display: block;
  font-family: var(--serif);
  font-size: 3.6rem;
  line-height: 0.5;
  color: var(--willow);
  margin-bottom: 1.25rem;
}
.testimonial figcaption {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  margin-top: auto;
}
.testimonial__name {
  font-weight: 500;
  font-size: 0.98rem;
  color: var(--ink);
}
.testimonial__role {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--mute);
}

/* ---------- Instagram feed ---------- */
.insta-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: clamp(0.5rem, 1vw, 0.85rem);
}
.insta-tile {
  position: relative;
  aspect-ratio: 1 / 1;
  overflow: hidden;
  display: block;
  background: var(--ink);
}
.insta-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow) var(--ease), opacity var(--t-fast) var(--ease);
}
.insta-tile:hover img,
.insta-tile:focus-visible img {
  transform: scale(1.06);
  opacity: 0.55;
}
.insta-tile__overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1.5rem;
  color: var(--cream);
  opacity: 0;
  transition: opacity var(--t-fast) var(--ease);
  font-size: 0.92rem;
  font-weight: 500;
  pointer-events: none;
}
.insta-tile:hover .insta-tile__overlay,
.insta-tile:focus-visible .insta-tile__overlay { opacity: 1; }
.insta-tile__stat {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

/* ---------- Footer social list ---------- */
.social-list { display: grid; gap: 0.55rem; list-style: none; }
.social-list a {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
}
.social-list__icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  display: inline-block;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity var(--t-slow) var(--ease), transform var(--t-slow) var(--ease);
  will-change: opacity, transform;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Mobile ---------- */
@media (max-width: 960px) {
  .grid--3 { grid-template-columns: repeat(2, 1fr); }
  .collection-grid { grid-template-columns: repeat(2, 1fr); }
  .categories { grid-template-columns: repeat(3, 1fr); }
  .split, .workshop { grid-template-columns: 1fr; }
  .bats-layout { grid-template-columns: 1fr; }
  .bats-aside { position: static; }
  .kit-section { grid-template-columns: 1fr; }
  .kit-section:nth-child(even) .kit-section__media { order: 0; }
  .timeline__entry { grid-template-columns: 1fr; }
  .timeline__media { max-width: none; justify-self: stretch; }
  .contact-layout { grid-template-columns: 1fr; }
  .site-footer__top { grid-template-columns: repeat(2, 1fr); }
  .range__row { grid-template-columns: 1fr; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 0; }
  .testimonial { padding-block: 2rem; }
  .testimonial:not(:last-child) { border-bottom: 1px solid var(--rule); }
  .insta-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 720px) {
  .nav__list { display: none; }
  .nav-toggle { display: block; }

  .nav.is-open .nav__list {
    display: flex;
    position: fixed;
    inset: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 1rem;
    padding: 4rem 2rem;
    z-index: 100;
  }
  .nav.is-open .nav__link { font-size: 1.4rem; letter-spacing: 0.06em; }
  .nav.is-open .nav__cta { margin: 1.5rem 0 0; font-size: 0.85rem; }

  .grid--3, .collection-grid, .categories { grid-template-columns: 1fr; }
  .enquiry-form__split { grid-template-columns: 1fr; }
  .variant-row { grid-template-columns: 1fr; gap: 0.25rem; padding: 1.25rem 0; }
  .variant-row__price { text-align: left; }
  .site-footer__top { grid-template-columns: 1fr; gap: 2rem; }
  .insta-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation: none !important;
    transition: none !important;
  }
  .reveal { opacity: 1; transform: none; }
  html { scroll-behavior: auto; }
}
