/* ── TOKENS ──────────────────────────────────────────────────────── */
:root {
  --olive:        #5a6344;
  --olive-dark:   #3e4630;
  --olive-mid:    #6b7551;
  --olive-light:  #8a9470;
  --concrete:     #c8c5bd;
  --concrete-lt:  #e4e1db;
  --rust:         #b8601e;
  --rust-lt:      #d4793a;
  --cream:        #f5f2ed;
  --cream-dark:   #ede9e2;
  --charcoal:     #1e1e1e;
  --grey:         #5e5e5e;
  --white:        #ffffff;

  --font-serif:   'Cinzel', serif;
  --font-accent:  'Playfair Display', serif;
  --font-body:    'Lato', sans-serif;

  --nav-h:   76px;
  --max-w:   1200px;
  --radius:  3px;
  --radius-lg: 8px;
  --ease:    cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* ── RESET ───────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: var(--font-body); color: var(--charcoal); background: var(--cream); line-height: 1.75; overflow-x: hidden; }
/* Pages without a full-height hero need clearance from the fixed nav; #hero itself
   already sits below the nav's overlay treatment, so the home page opts out. */
body:not(.has-hero) { padding-top: var(--nav-h); }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

/* ── UTILITIES ───────────────────────────────────────────────────── */
.container  { max-width: var(--max-w); margin: 0 auto; padding: 0 28px; }
.center     { text-align: center; }
.center .section-sub { margin-left: auto; margin-right: auto; }

.btn {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 38px; border: 2px solid transparent; cursor: pointer;
  font-family: var(--font-serif); font-size: 0.78rem; letter-spacing: 0.18em;
  text-transform: uppercase; border-radius: var(--radius);
  transition: background 0.28s var(--ease), color 0.28s var(--ease),
              border-color 0.28s var(--ease), transform 0.2s var(--ease),
              box-shadow 0.28s var(--ease);
}
.btn-primary { background: var(--rust); color: var(--white); border-color: var(--rust); }
.btn-primary:hover { background: var(--rust-lt); border-color: var(--rust-lt); transform: translateY(-3px); box-shadow: 0 8px 28px rgba(184,96,30,0.35); }
.btn-ghost   { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.6); }
.btn-ghost:hover { background: rgba(255,255,255,0.12); border-color: var(--white); transform: translateY(-3px); }
.btn-outline { background: transparent; color: var(--olive-dark); border-color: var(--olive); }
.btn-outline:hover { background: var(--olive-dark); color: var(--white); transform: translateY(-3px); }
.full-w { width: 100%; }

.section-label {
  display: inline-block; font-family: var(--font-body); font-size: 0.68rem;
  letter-spacing: 0.28em; text-transform: uppercase; color: var(--rust);
  font-weight: 700; border-bottom: 2px solid var(--rust); padding-bottom: 3px; margin-bottom: 14px;
}
.section-label.light { color: var(--concrete); border-color: var(--concrete); }

h1, h2 { font-family: var(--font-serif); font-size: clamp(1.75rem, 3.5vw, 2.75rem); font-weight: 600; line-height: 1.2; margin-bottom: 20px; }
h1.light, h2.light { color: var(--white); }
.section-sub { font-size: 1rem; color: var(--grey); max-width: 580px; margin-bottom: 52px; line-height: 1.8; }
.section-sub.light { color: rgba(255,255,255,0.65); }
.lead { font-size: 1.08rem; color: var(--charcoal); font-weight: 400; margin-bottom: 16px; line-height: 1.8; }

.placeholder-note { font-style: italic; color: var(--concrete); font-size: 0.88em; }

.section-head { display: flex; justify-content: space-between; align-items: flex-start; gap: 32px; margin-bottom: 0; }
.section-head.center { flex-direction: column; align-items: center; }

/* ── NAV ─────────────────────────────────────────────────────────── */
#navbar {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 1000;
  transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), backdrop-filter 0.35s;
}
#navbar.scrolled {
  background: rgba(37,43,26,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.28);
}
/* Pages without a hero have no dark image behind the nav to give the transparent state
   contrast, so they need the same solid treatment as ".scrolled" from the very start. */
body:not(.has-hero) #navbar {
  background: rgba(37,43,26,0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.28);
}
.nav-inner {
  display: flex; align-items: center; justify-content: space-between;
  height: var(--nav-h); max-width: var(--max-w); margin: 0 auto; padding: 0 28px;
}
.nav-logo img { height: 56px; width: auto; transition: opacity 0.2s; }
.nav-logo:hover img { opacity: 0.8; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
  font-family: var(--font-serif); font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: rgba(255,255,255,0.85); position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after { content: ''; position: absolute; bottom: -2px; left: 0; width: 0; height: 1px; background: var(--rust); transition: width 0.25s var(--ease); }
.nav-links a:hover, .nav-links a:hover::after,
.nav-links a.active, .nav-links a.active::after { color: var(--white); width: 100%; }
.nav-links .nav-cta { background: var(--rust); color: var(--white); padding: 9px 22px; border-radius: var(--radius); letter-spacing: 0.14em; }
.nav-links .nav-cta::after { display: none; }
.nav-links .nav-cta:hover { background: var(--rust-lt); color: var(--white); }

/* ── NAV DROPDOWN (Products) ────────────────────────────────────── */
.nav-dropdown { position: relative; }
.nav-dropdown-toggle { display: inline-flex; align-items: center; gap: 6px; }
.nav-dropdown-toggle::before {
  content: '▾'; order: 2; font-size: 0.7em; transition: transform 0.2s var(--ease);
}
.nav-dropdown-menu {
  position: absolute; top: calc(100% + 18px); left: 50%; transform: translateX(-50%);
  min-width: 220px; background: rgba(37,43,26,0.98); backdrop-filter: blur(12px);
  border-radius: var(--radius-lg); padding: 10px 0; box-shadow: 0 16px 48px rgba(0,0,0,0.32);
  opacity: 0; visibility: hidden; transform: translateX(-50%) translateY(8px);
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease), visibility 0.22s;
  z-index: 10;
}
.nav-dropdown:hover .nav-dropdown-menu,
.nav-dropdown:focus-within .nav-dropdown-menu,
.nav-dropdown.open .nav-dropdown-menu {
  opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0);
}
.nav-dropdown.open .nav-dropdown-toggle::before { transform: rotate(180deg); }
.nav-dropdown-menu li { width: 100%; }
.nav-dropdown-menu a {
  display: block; padding: 10px 22px; font-size: 0.7rem; letter-spacing: 0.08em;
  white-space: nowrap; color: rgba(255,255,255,0.75);
}
.nav-dropdown-menu a::after { display: none; }
.nav-dropdown-menu a:hover { color: var(--white); background: rgba(255,255,255,0.06); width: 100%; }
.hamburger { display: none; flex-direction: column; gap: 5px; background: none; border: none; cursor: pointer; padding: 6px; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--white); border-radius: 2px; transition: transform 0.3s, opacity 0.3s; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BREADCRUMB ──────────────────────────────────────────────────── */
.breadcrumb {
  max-width: var(--max-w); margin: 0 auto; padding: 20px 28px 0;
  display: flex; flex-wrap: wrap; gap: 6px; align-items: center;
  font-size: 0.78rem; color: var(--grey);
}
.breadcrumb a { color: var(--olive); }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span[aria-hidden] { color: var(--concrete); }
.breadcrumb .current { color: var(--charcoal); font-weight: 600; }

/* ── HERO ────────────────────────────────────────────────────────── */
#hero {
  position: relative; height: 100svh; min-height: 620px;
  display: flex; align-items: center; justify-content: center; overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center 40%;
  transform: scale(1.04);
  transition: transform 8s ease-out;
}
.hero-bg.loaded { transform: scale(1); }
.hero-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(160deg, rgba(37,43,26,0.72) 0%, rgba(30,30,30,0.42) 60%, rgba(37,43,26,0.55) 100%);
}
.hero-content {
  position: relative; text-align: center; padding: 24px;
  display: flex; flex-direction: column; align-items: center; gap: 18px;
  animation: fadeUp 1s var(--ease) both;
}
.hero-eyebrow {
  font-family: var(--font-body); font-size: 0.72rem; letter-spacing: 0.35em;
  text-transform: uppercase; color: var(--concrete); opacity: 0.9;
}
.hero-logo { width: clamp(200px, 32vw, 300px); height: auto; }
.hero-tagline {
  font-family: var(--font-accent); font-style: italic;
  font-size: clamp(1rem, 2.2vw, 1.35rem); color: rgba(255,255,255,0.8); letter-spacing: 0.04em;
}
.hero-btns { display: flex; gap: 16px; flex-wrap: wrap; justify-content: center; margin-top: 8px; }

.scroll-hint {
  position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 8px;
  color: rgba(255,255,255,0.55); font-family: var(--font-body); font-size: 0.68rem;
  letter-spacing: 0.22em; text-transform: uppercase; text-decoration: none;
  animation: fadeIn 2s 1.2s both;
}
.scroll-line {
  width: 1px; height: 40px;
  background: linear-gradient(to bottom, rgba(255,255,255,0.5), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}

/* ── TICKER ─────────────────────────────────────────────────────── */
.ticker-wrap {
  background: var(--olive-dark); padding: 14px 0; overflow: hidden;
  border-top: 1px solid rgba(255,255,255,0.06); border-bottom: 1px solid rgba(255,255,255,0.06);
}
.ticker {
  display: flex; gap: 0; white-space: nowrap;
  animation: ticker 30s linear infinite;
}
.ticker span {
  font-family: var(--font-serif); font-size: 0.75rem; letter-spacing: 0.22em;
  text-transform: uppercase; color: rgba(255,255,255,0.7); padding: 0 24px;
}
.ticker .sep { color: var(--rust); padding: 0 8px; }

/* ── ABOUT ───────────────────────────────────────────────────────── */
#about { padding: 110px 0; background: var(--cream); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center;
}
.about-imgs { position: relative; }
.about-img-main {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 16px 16px 60px rgba(0,0,0,0.18);
}
.about-img-main img { height: 520px; width: 100%; object-fit: cover; object-position: center top; }
.about-img-float {
  position: absolute; bottom: -36px; right: -36px; width: 200px;
  border-radius: var(--radius-lg); overflow: hidden;
  border: 5px solid var(--cream);
  box-shadow: 8px 8px 32px rgba(0,0,0,0.22);
}
.about-img-float img { height: 160px; width: 100%; object-fit: cover; }
.img-badge {
  position: absolute; top: 0; left: 0; right: 0;
  background: var(--olive-dark); color: var(--white);
  font-family: var(--font-serif); font-size: 0.72rem; letter-spacing: 0.2em;
  text-transform: uppercase; text-align: center; padding: 8px 0;
}
.about-text { padding-left: 8px; }
.about-text h1, .about-text h2 { margin-top: 8px; }
.about-text p { color: var(--grey); margin-bottom: 16px; }
.about-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 24px; }
.about-tags span {
  background: var(--olive); color: var(--white);
  font-family: var(--font-serif); font-size: 0.68rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 7px 16px; border-radius: 40px;
}

/* ── OUR STORY / HERITAGE TIMELINE ───────────────────────────────── */
#heritage { padding: 110px 0; background: var(--white); }
.timeline { display: flex; margin-top: 8px; }
.tl-item {
  flex: 1; position: relative; padding: 0 12px;
  display: flex; flex-direction: column; align-items: center; text-align: center;
}
.tl-year {
  font-family: var(--font-serif); font-size: 1.5rem; font-weight: 700;
  color: var(--rust); line-height: 1; min-height: 1.5rem; margin-bottom: 20px;
}
.tl-year sup { font-size: 0.55em; vertical-align: super; }
.tl-dot {
  width: 18px; height: 18px; border-radius: 50%; background: var(--rust);
  box-shadow: 0 0 0 6px rgba(184,96,30,0.14); position: relative; z-index: 1; flex-shrink: 0;
}
.tl-desc { margin-top: 20px; font-size: 0.86rem; color: var(--grey); line-height: 1.55; }
/* connector line drawn from each dot's centre to the next */
.tl-item:not(:last-child)::after {
  content: ''; position: absolute; z-index: 0;
  top: calc(1.5rem + 29px); left: 50%; width: 100%; height: 2px;
  background: rgba(90,99,68,0.22);
}

/* ── STATS ───────────────────────────────────────────────────────── */
.stats-banner { background: var(--olive-dark); padding: 60px 0; }
.stats-grid {
  display: flex; align-items: center; justify-content: space-around;
  gap: 24px; flex-wrap: wrap;
}
.stat { text-align: center; }
.stat-num {
  display: block; font-family: var(--font-serif); font-size: clamp(2.4rem, 5vw, 3.6rem);
  color: var(--white); font-weight: 700; line-height: 1;
}
.stat-num sup { font-size: 0.5em; vertical-align: super; }
.stat-label {
  display: block; font-family: var(--font-body); font-size: 0.75rem; letter-spacing: 0.18em;
  text-transform: uppercase; color: var(--olive-light); margin-top: 8px;
}
.stat-div { width: 1px; height: 60px; background: rgba(255,255,255,0.12); }

/* ── WHY US ──────────────────────────────────────────────────────── */
#why-us { padding: 110px 0; background: var(--white); }
#why-us h2 { margin-top: 8px; }
.features-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 8px; }
.feature-card {
  padding: 36px 28px; border: 1px solid var(--concrete-lt);
  border-radius: var(--radius-lg); background: var(--cream);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease), border-color 0.28s;
}
.feature-card:hover { transform: translateY(-6px); box-shadow: 0 16px 48px rgba(0,0,0,0.09); border-color: var(--olive-light); }
.feature-icon {
  font-size: 1.4rem; color: var(--rust); margin-bottom: 18px;
  display: inline-block; transform-origin: center center; transition: transform 0.3s, color 0.3s;
}
.feature-card:hover .feature-icon { transform: rotate(45deg); }
.feature-card h2, .feature-card h3 { font-family: var(--font-serif); font-size: 0.95rem; letter-spacing: 0.08em; text-transform: uppercase; margin-bottom: 12px; color: var(--olive-dark); }
.feature-card p  { font-size: 0.9rem; color: var(--grey); line-height: 1.75; }

/* ── COLOURS ─────────────────────────────────────────────────────── */
#colours { background: var(--olive-dark); padding: 110px 0; }
#colours h1.light { margin-top: 8px; }
.colour-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.colour-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-lg); overflow: hidden;
  transition: transform 0.28s var(--ease), background 0.28s;
}
.colour-card:hover { transform: translateY(-6px); background: rgba(255,255,255,0.11); }
.swatch { width: 100%; height: 100px; overflow: hidden; }
/* Photographed swatches must fill the same 100px band as the gradient below, so the one
   finish still awaiting a photo sits flush with the other five. */
.swatch img { width: 100%; height: 100%; object-fit: cover; }
.swatch-grey-dry-brush { background: linear-gradient(135deg, #7a7a78, #aeada8); }
.colour-info { padding: 22px 24px 26px; }
.colour-card h2 { font-family: var(--font-serif); font-size: 0.85rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--white); margin-bottom: 8px; }
.colour-card p  { font-size: 0.84rem; color: rgba(255,255,255,0.56); line-height: 1.65; }
.colour-cost {
  display: inline-block; margin-top: 14px;
  font-family: var(--font-body); font-size: 0.62rem; letter-spacing: 0.16em;
  text-transform: uppercase; font-weight: 700;
  padding: 4px 11px; border-radius: 40px;
}
.colour-cost.included { background: rgba(255,255,255,0.12); color: rgba(255,255,255,0.72); }
.colour-cost.extra    { background: rgba(184,96,30,0.9); color: var(--white); }

/* ── RUST EFFECT SYSTEM ──────────────────────────────────────────── */
#rust-system { padding: 110px 0; background: var(--white); }
#rust-system h1 { margin-top: 8px; }
.rust-steps { counter-reset: step; }
.rust-steps .feature-card { position: relative; counter-increment: step; }
.rust-steps .feature-card::before {
  content: counter(step, decimal-leading-zero);
  position: absolute; top: 20px; right: 24px;
  font-family: var(--font-serif); font-size: 1.6rem; font-weight: 700;
  color: rgba(184,96,30,0.16); line-height: 1;
}
/* start, not stretch — the two size cards can end up with different chip counts and a
   stretched bordered box leaves dead space under the shorter one. */
.rust-sizes { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; margin-top: 44px; align-items: start; }
.size-card {
  background: var(--cream); border: 1px solid var(--concrete-lt);
  border-radius: var(--radius-lg); overflow: hidden;
}
.size-card h3 {
  background: var(--olive-dark); color: var(--white);
  font-family: var(--font-serif); font-size: 0.78rem; letter-spacing: 0.16em;
  text-transform: uppercase; padding: 13px 20px; text-align: left; font-weight: 600;
}
.size-card-chips { display: flex; flex-wrap: wrap; gap: 10px; padding: 20px; }
.size-card-chips span {
  background: var(--white); border: 1px solid var(--concrete-lt); color: var(--olive-dark);
  font-family: var(--font-serif); font-size: 0.82rem; font-weight: 600;
  padding: 8px 16px; border-radius: var(--radius);
}
.rust-note { margin-top: 24px; font-size: 0.85rem; color: var(--grey); font-style: italic; }
.rust-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 28px; justify-content: center; }
.rust-tags span {
  background: var(--cream-dark); color: var(--olive-dark); border: 1px solid var(--concrete-lt);
  font-family: var(--font-serif); font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; padding: 7px 16px; border-radius: 40px;
}

/* ── PRODUCTS ────────────────────────────────────────────────────── */
#products { padding: 110px 0; background: var(--cream-dark); }
#products h1 { margin-top: 8px; }
.section-head .section-sub { margin-bottom: 0; }
.product-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }

/* Each range repeats the .section-head + .product-grid pair, so ranges need a lighter
   sub-heading than the section itself. */
.range-head { text-align: center; margin: 84px 0 -16px; }
.range-head:first-of-type { margin-top: 52px; }
.range-head h2 {
  font-family: var(--font-serif); font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 600; color: var(--olive-dark); margin: 6px 0 12px;
}
.range-sub { font-size: 0.92rem; color: var(--grey); max-width: 560px; margin: 0 auto; line-height: 1.75; }
.product-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07);
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.product-card:hover { transform: translateY(-8px); box-shadow: 0 16px 52px rgba(0,0,0,0.14); }
/* object-fit:cover previously cropped inconsistently-framed product photos (heads,
   off-centre stones, sculpture feet) differently at every breakpoint, sometimes cutting
   into the subject itself. contain + a neutral mat guarantees the whole product is always
   visible, at the cost of some letterboxing on photos whose aspect doesn't match the box. */
.product-img-wrap { overflow: hidden; height: 230px; position: relative; background: var(--cream-dark); }
/* Standing figures cannot survive a 230px landscape crop, so the Sculpture range gets a
   taller box. Each range has its own grid, so the whole row grows together. */
.product-img-wrap.tall { height: 420px; }
.product-img-wrap img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.45s var(--ease); }
.product-card:hover .product-img-wrap img { transform: scale(1.08); }
.product-badge {
  position: absolute; top: 14px; left: 14px;
  background: var(--olive-dark); color: var(--white);
  font-family: var(--font-serif); font-size: 0.62rem; letter-spacing: 0.18em;
  text-transform: uppercase; padding: 5px 12px; border-radius: 40px;
}
.product-info { padding: 20px 22px 24px; display: flex; flex-direction: column; gap: 4px; }
.product-code { font-size: 0.68rem; letter-spacing: 0.2em; text-transform: uppercase; color: var(--rust); font-weight: 700; }
.product-info h2, .product-info h3 { font-family: var(--font-accent); font-size: 1.08rem; font-weight: 600; color: var(--charcoal); margin: 2px 0 4px; }
.product-dims { font-size: 0.8rem; color: var(--grey); }
.product-enquire {
  display: inline-block; margin-top: 14px; font-family: var(--font-serif);
  font-size: 0.72rem; letter-spacing: 0.14em; text-transform: uppercase;
  color: var(--rust); border-bottom: 1px solid var(--rust); padding-bottom: 2px;
  transition: color 0.2s, border-color 0.2s;
}
.product-enquire:hover { color: var(--rust-lt); border-color: var(--rust-lt); }
.products-cta { text-align: center; margin-top: 60px; }
.products-cta p { color: var(--grey); margin-bottom: 20px; font-size: 0.95rem; }

/* ── PRODUCT RANGE HUB CARDS (products.html) ────────────────────── */
.range-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.range-card {
  background: var(--white); border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: 0 2px 20px rgba(0,0,0,0.07); display: flex; flex-direction: column;
  transition: transform 0.28s var(--ease), box-shadow 0.28s var(--ease);
}
.range-card:hover { transform: translateY(-8px); box-shadow: 0 16px 52px rgba(0,0,0,0.14); }
.range-card-img { height: 220px; overflow: hidden; background: var(--cream-dark); }
.range-card-img img { width: 100%; height: 100%; object-fit: contain; transition: transform 0.45s var(--ease); }
.range-card:hover .range-card-img img { transform: scale(1.08); }
.range-card-body { padding: 24px 26px 28px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.range-card-body h2 { font-family: var(--font-serif); font-size: 1.1rem; font-weight: 600; color: var(--olive-dark); }
.range-card-body p { font-size: 0.9rem; color: var(--grey); flex: 1; }

/* Ordering terms from the 2026 catalogue — the questions a buyer asks next. */
.terms-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px;
  margin-top: 64px; padding-top: 48px; border-top: 1px solid var(--concrete);
}
.terms-col h3 {
  font-family: var(--font-serif); font-size: 0.74rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--olive-dark); margin-bottom: 16px;
}
.terms-col ul li {
  position: relative; padding-left: 16px; margin-bottom: 9px;
  font-size: 0.86rem; color: var(--grey); line-height: 1.6;
}
.terms-col ul li::before { content: '·'; position: absolute; left: 2px; color: var(--rust); font-weight: 700; }

/* ── GALLERY ─────────────────────────────────────────────────────── */
#gallery { padding: 110px 0; background: var(--white); }
#gallery h1 { margin-top: 8px; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 12px;
}
.gallery-item { overflow: hidden; border-radius: var(--radius-lg); position: relative; cursor: pointer; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s var(--ease); }
.gallery-item:hover img { transform: scale(1.07); }
.gi-tall { grid-row: span 2; }
.gi-wide { grid-column: span 2; }
.gallery-overlay {
  position: absolute; inset: 0; background: rgba(37,43,26,0);
  display: flex; align-items: flex-end; padding: 20px;
  transition: background 0.3s var(--ease);
}
.gallery-overlay span {
  font-family: var(--font-serif); font-size: 0.78rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--white);
  opacity: 0; transform: translateY(8px);
  transition: opacity 0.3s var(--ease), transform 0.3s var(--ease);
}
.gallery-item:hover .gallery-overlay { background: rgba(37,43,26,0.45); }
.gallery-item:hover .gallery-overlay span { opacity: 1; transform: translateY(0); }

/* ── CTA BANNER ─────────────────────────────────────────────────── */
.cta-banner { position: relative; padding: 120px 0; overflow: hidden; }
.cta-bg {
  position: absolute; inset: 0;
  background-size: cover; background-position: center;
  filter: saturate(0.7);
}
.cta-overlay { position: absolute; inset: 0; background: rgba(37,43,26,0.80); }
.cta-content {
  position: relative; text-align: center;
  display: flex; flex-direction: column; align-items: center; gap: 20px;
}
.cta-content h2 { color: var(--white); font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.cta-content p { color: rgba(255,255,255,0.72); max-width: 560px; font-size: 1rem; line-height: 1.8; }

/* ── CONTACT ─────────────────────────────────────────────────────── */
#contact { padding: 110px 0; background: var(--cream-dark); }
.contact-wrap { display: grid; grid-template-columns: 1fr 1.2fr; gap: 72px; align-items: start; }
.contact-left h1 { margin-top: 8px; margin-bottom: 16px; }
.contact-left > p { color: var(--grey); margin-bottom: 36px; line-height: 1.8; }
.contact-cards { display: flex; flex-direction: column; gap: 12px; }
.contact-card {
  display: flex; align-items: center; gap: 16px;
  background: var(--white); border-radius: var(--radius-lg);
  padding: 16px 20px; border: 1px solid var(--concrete-lt);
  transition: transform 0.22s var(--ease), box-shadow 0.22s, border-color 0.22s;
}
.contact-card:hover { transform: translateX(4px); box-shadow: 0 4px 20px rgba(0,0,0,0.09); border-color: var(--olive-light); }
.contact-card.whatsapp { border-left: 3px solid #25d366; }
.cc-icon { font-size: 1.3rem; flex-shrink: 0; }
.contact-card strong { display: block; font-family: var(--font-serif); font-size: 0.72rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--olive-dark); margin-bottom: 2px; }
.contact-card span { font-size: 0.9rem; color: var(--grey); }
.contact-right {
  background: var(--white); border-radius: var(--radius-lg);
  padding: 44px 40px; box-shadow: 0 4px 40px rgba(0,0,0,0.09);
}
.contact-form h2 { font-family: var(--font-serif); font-size: 1rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--olive-dark); margin-bottom: 30px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; margin-bottom: 20px; }
.form-group label { font-size: 0.7rem; letter-spacing: 0.16em; text-transform: uppercase; color: var(--olive-mid); font-weight: 700; margin-bottom: 7px; }
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px; background: var(--cream); border: 1px solid var(--concrete-lt);
  border-radius: var(--radius); font-family: var(--font-body); font-size: 0.92rem;
  color: var(--charcoal); outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
  appearance: none;
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus { border-color: var(--olive); box-shadow: 0 0 0 3px rgba(90,99,68,0.12); }
.form-group textarea { resize: vertical; }
.form-note { margin-top: 12px; font-size: 0.85rem; color: var(--olive); text-align: center; min-height: 20px; }
.form-note.form-note-error { color: var(--rust); }
.form-note a { text-decoration: underline; }

/* ── FOOTER ──────────────────────────────────────────────────────── */
.footer-top { background: var(--olive-dark); padding: 72px 0 52px; }
.footer-grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr; gap: 52px; }
.footer-logo { height: 72px; width: auto; margin-bottom: 18px; }
.footer-brand p { font-size: 0.88rem; color: var(--white); line-height: 1.8; max-width: 280px; }
.footer-social { display: flex; gap: 12px; margin-top: 22px; }
.footer-social a { display: inline-flex; align-items: center; justify-content: center; width: 38px; height: 38px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.25); color: var(--white); transition: background 0.2s, border-color 0.2s, color 0.2s, transform 0.2s; }
.footer-social a:hover { background: var(--rust); border-color: var(--rust); color: var(--white); transform: translateY(-2px); }
.footer-social a:focus-visible { outline: 2px solid var(--rust-lt); outline-offset: 3px; }
.footer-social svg { width: 18px; height: 18px; fill: currentColor; display: block; }
.footer-col h2 { font-family: var(--font-serif); font-size: 0.78rem; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.9); margin-bottom: 20px; }
.footer-col ul li { margin-bottom: 10px; color: var(--white); font-size: 0.88rem; }
.footer-col a { font-size: 0.88rem; color: var(--white); transition: color 0.2s; }
.footer-col a:hover { color: var(--rust-lt); }
.footer-bottom { background: #262b1d; padding: 18px 0; }
.footer-bottom-inner { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom p { font-size: 0.8rem; color: rgba(255,255,255,0.6); }

/* ── ANIMATIONS ──────────────────────────────────────────────────── */
@keyframes fadeUp   { from { opacity:0; transform: translateY(28px); } to { opacity:1; transform: translateY(0); } }
@keyframes fadeIn   { from { opacity:0; } to { opacity:1; } }
@keyframes ticker   { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@keyframes scrollPulse { 0%,100% { opacity:0.4; transform: scaleY(1); } 50% { opacity:1; transform: scaleY(1.3); } }

/* ── SCROLL REVEAL ───────────────────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(32px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ── RESPONSIVE ──────────────────────────────────────────────────── */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid   { grid-template-columns: 1fr 1fr; }
  .footer-brand  { grid-column: span 2; }
  .terms-grid    { grid-template-columns: repeat(2, 1fr); gap: 32px; }
  /* nav gains a 9th item; tighten before the hamburger takes over at 640px */
  .nav-links { gap: 20px; }
  .nav-links a { font-size: 0.68rem; letter-spacing: 0.1em; }
}
@media (max-width: 900px) {
  .about-grid, .contact-wrap { grid-template-columns: 1fr; gap: 52px; }
  .about-img-float { display: none; }
  .colour-grid { grid-template-columns: repeat(2, 1fr); }
  .product-grid, .range-grid { grid-template-columns: repeat(2, 1fr); }
  .rust-sizes { grid-template-columns: 1fr; }
  .product-img-wrap.tall { height: 380px; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .gi-tall, .gi-wide { grid-column: span 1; grid-row: span 1; }
  .section-head { flex-direction: column; }

  /* timeline: horizontal → vertical */
  .timeline {
    flex-direction: column; align-items: stretch;
    border-left: 2px solid rgba(90,99,68,0.22); margin-left: 9px; margin-top: 24px;
  }
  .tl-item {
    flex: none; align-items: flex-start; text-align: left;
    padding: 0 0 30px 28px;
  }
  .tl-item:last-child { padding-bottom: 0; }
  .tl-item:not(:last-child)::after { display: none; }
  .tl-year { margin: 0 0 6px; min-height: auto; }
  .tl-dot { position: absolute; left: -10px; top: 5px; margin: 0; }
  .tl-desc { margin-top: 0; }
}
/* Nav switches to the hamburger before the other grids collapse: with nine links the
   horizontal nav needs ~670px, so it must hand over above the 640px layout breakpoint.
   --nav-h stays 76px here, which is what the dropdown's `top` should be at these widths. */
@media (max-width: 760px) {
  .nav-links {
    display: none; flex-direction: column; position: absolute;
    top: var(--nav-h); left: 0; width: 100%;
    background: rgba(37,43,26,0.97); backdrop-filter: blur(12px);
    padding: 24px 28px 32px; gap: 20px;
  }
  .nav-links.open { display: flex; }
  .nav-links .nav-cta { align-self: flex-start; }
  .nav-links a { font-size: 0.78rem; letter-spacing: 0.14em; }
  .hamburger { display: flex; }

  /* dropdown becomes an inline accordion under the hamburger menu — hover flyouts don't work on touch */
  .nav-dropdown { width: 100%; }
  .nav-dropdown-menu {
    position: static; transform: none; opacity: 1; visibility: visible;
    min-width: 0; background: rgba(0,0,0,0.18); box-shadow: none;
    max-height: 0; overflow: hidden; padding: 0; margin-top: 12px;
    transition: max-height 0.25s var(--ease), padding 0.25s var(--ease);
  }
  .nav-dropdown.open .nav-dropdown-menu { max-height: 400px; padding: 6px 0; }
  .nav-dropdown-menu a { padding: 10px 14px; font-size: 0.74rem; white-space: normal; }
}
@media (max-width: 640px) {
  :root { --nav-h: 64px; }
  .features-grid { grid-template-columns: 1fr; }
  .colour-grid { grid-template-columns: 1fr; }
  .product-grid, .range-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .stat-div { display: none; }
  .stats-grid { gap: 36px; }
  .terms-grid { grid-template-columns: 1fr; gap: 28px; margin-top: 48px; padding-top: 36px; }
  .range-head { margin: 56px 0 -8px; }
  .range-head:first-of-type { margin-top: 40px; }
  .product-img-wrap.tall { height: 420px; }
  .size-card-chips { padding: 16px; gap: 8px; }
  #about, #why-us, #colours, #rust-system, #products, #gallery, .cta-banner, #contact { padding: 72px 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-brand { grid-column: span 1; }
  .contact-right { padding: 32px 24px; }
}
