/*
Theme Name:  British Calci Co.
Theme URI:   https://britishcalcico.co.uk
Author:      Andrews Studio
Author URI:  https://andrewsstudio.co.uk
Description: Custom trade theme for British Calci Co.
Version:     1.0.0
Text Domain: bcc
*/

/* =============================================================
   TOKENS
   ============================================================= */
:root {
  --forest:  #1a3a1a;
  --cream:   #f0e8d0;
  --sage:    #5a7d4a;
  --leaf:    #9aba8a;
  --robin:   #c8631f;
  --red:     #9a3a2a;
  --ink:     #0f1f0f;
  --border:  #c8b890;

  --font-display: 'Bebas Neue', sans-serif;
  --font-body:    'Montserrat', sans-serif;

  --max-w:   1280px;
  --px:      64px;
  --py:      96px;
}

/* =============================================================
   RESET
   ============================================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--forest);
  -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; display: block; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button { cursor: pointer; font-family: var(--font-body); border: none; background: none; }

/* =============================================================
   ACCESSIBILITY
   ============================================================= */
.skip-link {
  position: absolute; top: -100%; left: 16px; z-index: 9999;
  background: var(--cream); color: var(--forest);
  font-size: 12px; font-weight: 700; letter-spacing: 0.1em;
  padding: 10px 18px; transition: top 0.2s;
}
.skip-link:focus { top: 16px; }
*:focus-visible { outline: 2px solid var(--robin); outline-offset: 3px; }

/* =============================================================
   LAYOUT
   ============================================================= */
.wrap {
  width: 100%;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
  padding-left: var(--px);
  padding-right: var(--px);
}

/* =============================================================
   BUTTONS
   ============================================================= */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 0;
  transition: background 0.2s, color 0.2s;
  white-space: nowrap;
  line-height: 1;
}
.btn-dark   { background: var(--forest); color: var(--cream); }
.btn-dark:hover  { background: var(--sage); }
.btn-light  { background: var(--cream);  color: var(--forest); }
.btn-light:hover { background: var(--leaf); }
.btn-red    { background: var(--red);    color: var(--cream); }
.btn-red:hover   { background: var(--forest); }

/* =============================================================
   HEADER
   ============================================================= */
.site-header {
  position: absolute;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 32px var(--px);
}

/* Logo */
.site-logo { display: flex; align-items: center; }
.site-logo a { display: block; }
.site-logo img { max-height: 44px; width: auto; }
.site-logo-text {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--cream);
  white-space: nowrap;
}
.custom-logo-link:focus { outline: none; }

/* Primary nav */
.primary-nav ul {
  display: flex;
  align-items: center;
  gap: 32px;
}
.primary-nav a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(240,232,208,0.72);
  transition: color 0.2s;
}
.primary-nav a:hover,
.primary-nav .current-menu-item > a,
.primary-nav .current_page_item > a { color: var(--cream); }

/* Sticky header on inner pages */
.sticky-header .site-header {
  position: fixed;
  background: var(--forest);
  padding-top: 18px;
  padding-bottom: 18px;
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
  animation: drop-in 0.3s ease;
}
@keyframes drop-in {
  from { transform: translateY(-100%); }
  to   { transform: translateY(0); }
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  z-index: 301;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 2px;
  background: var(--cream);
  transition: all 0.3s;
  transform-origin: center;
}
.nav-open .nav-toggle span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-open .nav-toggle span:nth-child(2) { opacity: 0; }
.nav-open .nav-toggle span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =============================================================
   PAGE HEADER  (inner pages only — not homepage)
   ============================================================= */
.page-header {
  background: var(--forest);
  padding: clamp(130px, 20vw, 200px) var(--px) 72px;
  position: relative;
  overflow: hidden;
}
.page-header::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg, rgba(240,232,208,0.03) 0 1px, transparent 1px 60px
  );
}
.page-header-inner {
  position: relative; z-index: 1;
  max-width: var(--max-w); margin: 0 auto;
}
.page-eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--robin); margin-bottom: 14px;
}
.page-title {
  font-family: var(--font-display);
  font-size: clamp(52px, 8vw, 100px);
  line-height: 0.86;
  color: var(--cream);
  margin-bottom: 20px;
}
.page-subtitle {
  font-size: clamp(16px, 1.4vw, 19px);
  color: rgba(240,232,208,0.65);
  line-height: 1.65;
  max-width: 540px;
}

/* =============================================================
   PAGE CONTENT  (inner pages — Gutenberg output)
   ============================================================= */
.page-content {
  background: var(--cream);
  color: var(--forest);
}
.page-content-inner {
  max-width: 820px;
  margin: 0 auto;
  padding: var(--py) var(--px);
}
.template-fullwidth .page-content { background: transparent; }
.template-fullwidth .page-content-inner {
  max-width: 100%;
  padding: 0;
}

/* Gutenberg block styles */
.entry-content > * + * { margin-top: 1.4em; }
.entry-content h2 {
  font-family: var(--font-display);
  font-size: clamp(36px, 4vw, 56px);
  line-height: 0.9; color: var(--forest);
  margin-top: 56px;
}
.entry-content h3 {
  font-family: var(--font-display);
  font-size: clamp(28px, 3vw, 40px);
  line-height: 0.92; color: var(--forest);
}
.entry-content p {
  font-size: 17px; line-height: 1.75;
  color: rgba(26,58,26,0.78);
}
.entry-content ul { list-style: disc; padding-left: 24px; }
.entry-content ol { list-style: decimal; padding-left: 24px; }
.entry-content li { font-size: 16px; line-height: 1.7; color: rgba(26,58,26,0.75); }
.entry-content a { color: var(--sage); text-decoration: underline; text-underline-offset: 3px; }
.entry-content a:hover { color: var(--forest); }
.entry-content strong { font-weight: 700; }
.entry-content blockquote {
  border-left: 3px solid var(--leaf);
  padding: 16px 24px; margin: 32px 0;
  font-style: italic; color: rgba(26,58,26,0.65); font-size: 19px;
}
.entry-content table { margin-bottom: 24px; font-size: 15px; }
.entry-content th {
  background: var(--forest); color: var(--cream);
  padding: 12px 16px; text-align: left;
  font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase;
}
.entry-content td { padding: 12px 16px; border-bottom: 1px solid var(--border); }
.entry-content tr:last-child td { border-bottom: none; }
.alignleft  { float: left; margin-right: 24px; margin-bottom: 16px; }
.alignright { float: right; margin-left: 24px; margin-bottom: 16px; }
.aligncenter { margin-left: auto; margin-right: auto; }

/* =============================================================
   FOOTER
   ============================================================= */
.site-footer {
  background: var(--ink);
  color: var(--cream);
}
.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 64px var(--px) 0;
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 56px;
}
.footer-logo { margin-bottom: 14px; }
.footer-logo img { max-height: 40px; filter: brightness(0) invert(1); opacity: 0.8; }
.footer-logo-text {
  font-size: 11px; font-weight: 800;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: rgba(240,232,208,0.8); margin-bottom: 14px;
}
.footer-tagline {
  font-size: 13px; line-height: 1.7;
  color: rgba(240,232,208,0.38);
}
.footer-col-head {
  font-size: 9px; font-weight: 700;
  letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--leaf); margin-bottom: 18px;
}
.footer-nav { display: flex; flex-direction: column; gap: 10px; }
.footer-nav a {
  font-size: 13px; color: rgba(240,232,208,0.5);
  transition: color 0.2s;
}
.footer-nav a:hover { color: var(--cream); }
.footer-email {
  display: block; font-size: 14px; font-weight: 600;
  color: var(--leaf); margin-bottom: 12px;
  transition: color 0.2s;
}
.footer-email:hover { color: var(--cream); }
.footer-address {
  font-style: normal; font-size: 12px;
  line-height: 1.85; color: rgba(240,232,208,0.32);
}
.footer-bottom {
  max-width: var(--max-w); margin: 0 auto;
  padding: 24px var(--px) 32px;
  border-top: 1px solid rgba(240,232,208,0.06);
  margin-top: 48px;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 11px; color: rgba(240,232,208,0.22); letter-spacing: 0.06em;
}

/* =============================================================
   404
   ============================================================= */
.error-404-section {
  background: var(--forest);
  min-height: 80vh;
  display: flex; align-items: center; justify-content: center;
  text-align: center; padding: 120px var(--px) 80px;
  position: relative; overflow: hidden;
}
.error-404-section::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none;
  background-image: repeating-linear-gradient(
    90deg, rgba(240,232,208,0.03) 0 1px, transparent 1px 60px
  );
}
.error-404-inner { position: relative; z-index: 1; }
.error-404-code {
  font-family: var(--font-display);
  font-size: clamp(120px, 22vw, 260px);
  line-height: 0.8; color: rgba(240,232,208,0.06);
}
.error-404-title {
  font-family: var(--font-display);
  font-size: clamp(36px, 5vw, 64px);
  color: var(--cream); margin-bottom: 16px;
}
.error-404-body {
  font-size: 17px; color: rgba(240,232,208,0.5);
  line-height: 1.65; max-width: 400px;
  margin: 0 auto 36px;
}

/* =============================================================
   HOMEPAGE COMPONENT STYLES
   These are used by the Custom HTML content on the Home page.
   ============================================================= */

/* Hero */
.hero {
  position: relative;
  min-height: clamp(600px, 92vh, 980px);
  background-color: var(--forest);
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute; inset: 0; z-index: 1;
  background: linear-gradient(
    to right,
    rgba(8,24,8,0.9) 0%,
    rgba(8,24,8,0.75) 38%,
    rgba(8,24,8,0.3) 62%,
    transparent 78%
  );
}
.hero-content {
  position: relative; z-index: 2;
  padding: clamp(140px,18vw,190px) var(--px) 80px;
  max-width: 820px; width: 100%;
}
.hero-eyebrow {
  font-size: 11px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase;
  color: var(--robin); margin-bottom: 24px;
}
.hero-headline {
  font-family: var(--font-display);
  font-size: clamp(64px, 10vw, 148px);
  line-height: 0.83; color: var(--cream); margin-bottom: 32px;
}
.hero-headline em { color: var(--leaf); font-style: normal; }
.hero-lede {
  font-size: clamp(16px, 1.4vw, 19px); line-height: 1.7;
  color: rgba(240,232,208,0.85); max-width: 520px; margin-bottom: 44px;
}
.hero-lede .struck {
  text-decoration: line-through;
  text-decoration-color: var(--red);
  text-decoration-thickness: 2px;
  color: rgba(240,232,208,0.45);
}
.hero-lede strong { color: var(--cream); }
.hero-ctas { display: flex; gap: 18px; align-items: center; flex-wrap: wrap; }
.hero-btn {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  padding: 16px 28px; background: var(--cream); color: var(--forest);
  transition: background 0.2s;
}
.hero-btn:hover { background: var(--leaf); }
.hero-link {
  display: inline-block; font-family: var(--font-body); font-weight: 700;
  font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(240,232,208,0.75);
  border-bottom: 1px solid rgba(240,232,208,0.4); padding-bottom: 2px;
  transition: all 0.2s;
}
.hero-link:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* Marquee */
.marquee-strip {
  background: var(--leaf); padding: 13px 0;
  overflow: hidden; position: relative; z-index: 10;
}
.marquee-track {
  display: flex; white-space: nowrap; width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-strip:hover .marquee-track { animation-play-state: paused; }
.marquee-item {
  font-size: 10px; font-weight: 800; letter-spacing: 0.24em;
  text-transform: uppercase; color: var(--forest); padding: 0 24px;
}
.marquee-dot { font-size: 10px; color: var(--sage); padding: 0 4px; flex-shrink: 0; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* Section shared */
.section-forest { background: var(--forest); color: var(--cream); }
.section-cream  { background: var(--cream);  color: var(--forest); }
.section-red    { background: var(--red);    color: var(--cream); }
.section-pad    { padding: var(--py) var(--px); }
.section-inner  { max-width: var(--max-w); margin: 0 auto; }

.pinstripe { position: relative; overflow: hidden; }
.pinstripe::before {
  content: "";
  position: absolute; inset: 0; pointer-events: none; z-index: 0;
  background-image: repeating-linear-gradient(
    90deg, rgba(240,232,208,0.03) 0 1px, transparent 1px 60px
  );
}
.pinstripe > * { position: relative; z-index: 1; }

.eyebrow {
  font-size: 10px; font-weight: 700;
  letter-spacing: 0.28em; text-transform: uppercase; margin-bottom: 14px;
}
.eyebrow-robin { color: var(--robin); }

.section-headline {
  font-family: var(--font-display);
  font-size: clamp(48px, 6vw, 80px);
  line-height: 0.88; margin-top: 12px;
}
.section-headline em { color: var(--leaf); font-style: normal; }

/* Contrast table */
.contrast-intro { margin-bottom: 48px; }
.contrast-intro p { font-size: 18px; line-height: 1.7; color: rgba(26,58,26,0.68); max-width: 580px; margin-top: 16px; }
.contrast-table { display: grid; grid-template-columns: 1fr 1fr; }
.c-col { padding: 40px; }
.c-col-us   { background: var(--forest); color: var(--cream); }
.c-col-them { background: #e4dcca; color: var(--forest); }
.c-col-title {
  font-size: 9px; font-weight: 800; letter-spacing: 0.24em; text-transform: uppercase;
  padding-bottom: 16px; margin-bottom: 24px; border-bottom: 1px solid rgba(240,232,208,0.15);
}
.c-col-them .c-col-title { border-bottom-color: rgba(26,58,26,0.1); }
.c-row { padding: 14px 0; border-bottom: 1px solid rgba(240,232,208,0.07); }
.c-col-them .c-row { border-bottom-color: rgba(26,58,26,0.07); }
.c-row:last-child { border-bottom: none; }
.c-label { font-size: 9px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.45; margin-bottom: 4px; }
.c-value { font-size: 15px; font-weight: 600; line-height: 1.4; margin-bottom: 7px; }
.c-value-dim { font-weight: 400; opacity: 0.6; }
.tag { display: inline-block; font-size: 9px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; padding: 3px 10px; }
.tag-yes { background: var(--leaf); color: var(--forest); }
.tag-no  { background: rgba(154,58,42,0.12); color: var(--red); }

/* Numbers */
.numbers-header { margin-bottom: 64px; }
.numbers-grid { display: grid; grid-template-columns: repeat(4,1fr); border-top: 1px solid rgba(240,232,208,0.1); }
.n-item { padding: 48px 36px 48px 0; border-right: 1px solid rgba(240,232,208,0.1); }
.n-item:last-child { border-right: none; padding-right: 0; }
.n-big { font-family: var(--font-display); font-size: clamp(60px,6.5vw,90px); line-height: 0.84; color: var(--leaf); margin-bottom: 14px; }
.n-big span { font-size: 0.44em; color: var(--sage); }
.n-cap { font-size: 13px; line-height: 1.65; color: rgba(240,232,208,0.58); max-width: 190px; }

/* Product */
.product-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.product-img-wrap { position: relative; display: flex; justify-content: center; }
.product-img { max-width: 360px; filter: drop-shadow(0 32px 64px rgba(26,58,26,0.22)); }
.product-badge {
  position: absolute; bottom: 10px; right: 20px;
  background: var(--forest); color: var(--cream); padding: 14px 18px;
  text-align: center; font-family: var(--font-display); font-size: 28px; line-height: 0.9;
}
.product-badge small {
  display: block; font-family: var(--font-body); font-size: 9px;
  font-weight: 700; letter-spacing: 0.2em; color: var(--leaf); margin-bottom: 2px;
}
.product-headline { font-family: var(--font-display); font-size: clamp(44px,5vw,72px); line-height: 0.88; color: var(--forest); margin: 14px 0 24px; }
.product-body { font-size: 17px; line-height: 1.75; color: rgba(26,58,26,0.7); margin-bottom: 32px; }
.spec-table { margin-bottom: 36px; }
.spec-row { display: flex; justify-content: space-between; align-items: baseline; padding: 12px 0; border-bottom: 1px solid var(--border); font-size: 14px; }
.spec-row:first-child { border-top: 1px solid var(--border); }
.spec-key { color: rgba(26,58,26,0.52); }
.spec-val { font-weight: 700; }

/* Birds */
.birds-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; margin-top: 56px; }
.birds-list { display: grid; grid-template-columns: 1fr 1fr; }
.bird-item { padding: 18px 0; border-bottom: 1px solid rgba(240,232,208,0.08); display: flex; flex-direction: column; gap: 4px; }
.bird-item:nth-last-child(-n+2) { border-bottom: none; }
.bird-name { font-family: var(--font-display); font-size: 28px; line-height: 0.9; color: var(--cream); }
.bird-note { font-size: 11px; color: rgba(240,232,208,0.45); }
.birds-panel { background: rgba(240,232,208,0.04); border: 1px solid rgba(240,232,208,0.1); padding: 40px; }
.birds-panel-title { font-family: var(--font-display); font-size: 42px; line-height: 0.9; color: var(--leaf); margin-bottom: 20px; }
.birds-panel p { font-size: 16px; line-height: 1.75; color: rgba(240,232,208,0.65); margin-bottom: 16px; }
.birds-panel-link { display: inline-block; font-family: var(--font-body); font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--leaf); border-bottom: 1px solid var(--leaf); padding-bottom: 2px; }

/* Farm */
.farm-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.farm-headline { font-family: var(--font-display); font-size: clamp(44px,5vw,68px); line-height: 0.88; color: var(--forest); margin: 14px 0 24px; }
.farm-body { font-size: 17px; line-height: 1.75; color: rgba(26,58,26,0.7); margin-bottom: 16px; }
.farm-loc { display: flex; align-items: center; gap: 12px; font-size: 10px; font-weight: 700; letter-spacing: 0.22em; text-transform: uppercase; color: var(--sage); margin: 28px 0 36px; }
.farm-loc::before { content: ""; display: block; width: 24px; height: 1px; background: var(--sage); flex-shrink: 0; }

/* Stats card */
.stats-card { background: var(--forest); color: var(--cream); padding: 36px 40px; }
.stats-card-label { font-size: 9px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: var(--leaf); margin-bottom: 24px; }
.stat-row { display: flex; justify-content: space-between; align-items: baseline; padding: 11px 0; border-bottom: 1px solid rgba(240,232,208,0.08); font-size: 14px; }
.stat-row:last-child { border-bottom: none; }
.stat-key { color: rgba(240,232,208,0.52); }
.stat-val { font-weight: 700; font-size: 15px; }

/* Trade CTA */
.trade-cta-inner { display: flex; justify-content: space-between; align-items: center; gap: 40px; flex-wrap: wrap; }
.trade-eyebrow { font-size: 10px; font-weight: 700; letter-spacing: 0.24em; text-transform: uppercase; color: rgba(240,232,208,0.52); margin-bottom: 16px; }
.trade-headline { font-family: var(--font-display); font-size: clamp(40px,5vw,68px); line-height: 0.87; color: var(--cream); }
.trade-actions { display: flex; flex-direction: column; gap: 14px; flex-shrink: 0; }
.trade-btn { display: inline-block; font-family: var(--font-body); font-weight: 700; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; padding: 16px 28px; background: var(--cream); color: var(--red); transition: background 0.2s, color 0.2s; }
.trade-btn:hover { background: var(--forest); color: var(--cream); }
.trade-email { font-size: 11px; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: rgba(240,232,208,0.6); border-bottom: 1px solid rgba(240,232,208,0.3); padding-bottom: 2px; transition: all 0.2s; }
.trade-email:hover { color: var(--cream); border-bottom-color: var(--cream); }

/* =============================================================
   RESPONSIVE
   ============================================================= */
@media (max-width: 1100px) {
  :root { --px: 40px; --py: 72px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
  .contrast-table { grid-template-columns: 1fr; }
  .numbers-grid { grid-template-columns: repeat(2,1fr); }
  .n-item:nth-child(2) { border-right: none; }
  .n-item { padding-right: 0; }
  .product-grid, .farm-grid, .birds-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero::before {
    background: linear-gradient(
      to bottom, rgba(8,24,8,0.82) 0%, rgba(8,24,8,0.72) 100%
    );
  }
}

@media (max-width: 768px) {
  :root { --px: 24px; --py: 56px; }
  .nav-toggle { display: flex; }
  .primary-nav {
    display: none; position: fixed; inset: 0;
    background: rgba(10,24,10,0.98); z-index: 300;
    flex-direction: column; align-items: center; justify-content: center;
  }
  .primary-nav ul { flex-direction: column; gap: 24px; text-align: center; }
  .primary-nav a { font-size: 14px; color: var(--cream); }
  .nav-open .primary-nav { display: flex; }
  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
  .footer-bottom { flex-direction: column; gap: 8px; text-align: center; padding-bottom: 32px; }
  .numbers-grid { grid-template-columns: 1fr 1fr; }
  .n-item { padding: 28px 16px 28px 0; }
  .n-item:nth-child(2) { border-right: 1px solid rgba(240,232,208,0.1); }
  .n-item:nth-child(3) { border-right: none; }
  .birds-list { grid-template-columns: 1fr; }
  .trade-cta-inner { flex-direction: column; align-items: flex-start; }
  .trade-actions { flex-direction: row; flex-wrap: wrap; }
  .product-badge { display: none; }
  .hero { background-position: 70% center; }
  .hero-ctas { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 480px) {
  :root { --px: 20px; }
  .numbers-grid { grid-template-columns: 1fr; }
  .n-item { border-right: none !important; border-bottom: 1px solid rgba(240,232,208,0.08); padding: 28px 0; }
  .n-item:last-child { border-bottom: none; }
  .hero { background-position: 75% center; }
}
