/* =========================================================
   NorthTEAs Global — Design System
   Palette: warm cream · deep forest green · estate gold
   Type: Cormorant Garamond (display serif) + Inter (sans)
   ========================================================= */

/* ---------- Fonts ---------- */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Inter:wght@400;500;600;700&display=swap');

/* ---------- Tokens ---------- */
:root {
  --cream:        #efe8dd;
  --cream-2:      #f4efe6;
  --cream-3:      #e7ddce;
  --paper:        #f6f2ea;
  --ink:          #23261f;
  --ink-soft:     #4a4d43;
  --muted:        #7c7d70;
  --line:         #d8cebd;
  --green:        #1f3d29;
  --green-deep:   #17301f;
  --green-soft:   #2a4d34;
  --gold:         #c19a3e;
  --gold-deep:    #a9832f;
  --gold-soft:    #cbae66;
  --white:        #ffffff;

  --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
  --sans:  'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  --wrap: 1200px;
  --gutter: clamp(20px, 5vw, 64px);
  --radius: 2px;
  --shadow: 0 18px 50px -24px rgba(23, 48, 31, .45);
  --ease: cubic-bezier(.22, .61, .36, 1);
}

/* ---------- Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
* { margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  font-family: var(--sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.6;
  font-size: 16px;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
ul { list-style: none; }

/* ---------- Typography helpers ---------- */
.serif { font-family: var(--serif); }
h1, h2, h3, h4 { font-family: var(--serif); font-weight: 500; line-height: 1.06; color: var(--ink); letter-spacing: -.01em; }

.eyebrow {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .26em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow--light { color: var(--gold-soft); }
.label {
  font-family: var(--sans);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
}

/* ---------- Layout ---------- */
.wrap { width: 100%; max-width: var(--wrap); margin-inline: auto; padding-inline: var(--gutter); }
.section { padding-block: clamp(56px, 8vw, 112px); }
.center { text-align: center; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: var(--cream-2);
  border-bottom: 1px solid var(--line);
}
.site-header.is-transparent {
  position: fixed; left: 0; right: 0;
  background: transparent; border-bottom-color: transparent;
  transition: background .35s var(--ease), border-color .35s var(--ease);
}
.site-header.is-transparent.scrolled {
  background: var(--cream-2); border-bottom-color: var(--line);
}
.header-inner {
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px; height: 78px;
}
.brand { display: flex; align-items: center; gap: 14px; }
.brand__mark {
  width: 46px; height: 46px; border-radius: 50%;
  background: var(--green); color: var(--gold-soft);
  display: grid; place-items: center;
  font-family: var(--serif); font-size: 22px; font-weight: 600;
  border: 1px solid rgba(193,154,62,.5);
}
.brand__logo { width: 50px; height: 50px; object-fit: contain; display: block; }
.mobile-nav__logo { width: 40px; height: 40px; object-fit: contain; }
.footer-logo { width: 168px; height: auto; margin-bottom: 8px; }
.brand__name { font-family: var(--serif); font-size: 25px; font-weight: 500; line-height: 1; color: var(--ink); }
.brand__tea { font-weight: 700; }
.brand__sub {
  font-size: 10px; font-weight: 600; letter-spacing: .28em; text-transform: uppercase;
  color: var(--gold-deep); margin-top: 4px;
}
.is-transparent:not(.scrolled) .brand__name { color: #fff; }
.is-transparent:not(.scrolled) .brand__sub { color: var(--gold-soft); }

.nav { display: flex; align-items: center; gap: 34px; }
.nav__links { display: flex; gap: 30px; }
.nav__links a {
  font-size: 13px; font-weight: 500; letter-spacing: .04em; color: var(--ink-soft);
  position: relative; padding-block: 6px; transition: color .2s;
}
.nav__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; width: 0; height: 1.5px;
  background: var(--gold-deep); transition: width .28s var(--ease);
}
.nav__links a:hover, .nav__links a.active { color: var(--ink); }
.nav__links a:hover::after, .nav__links a.active::after { width: 100%; }
.is-transparent:not(.scrolled) .nav__links a { color: rgba(255,255,255,.9); }
.is-transparent:not(.scrolled) .nav__links a:hover { color: #fff; }

.header-utils { display: flex; align-items: center; gap: 18px; }
.lang { display: inline-flex; align-items: center; gap: 6px; font-size: 12px; font-weight: 600; letter-spacing: .08em; color: var(--ink-soft); }
.is-transparent:not(.scrolled) .lang { color: #fff; }
.lang svg { width: 16px; height: 16px; }

.burger {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line);
  border-radius: var(--radius); place-items: center; color: var(--ink);
}
.is-transparent:not(.scrolled) .burger { color: #fff; border-color: rgba(255,255,255,.4); }
.burger svg { width: 20px; height: 20px; }

/* Mobile drawer */
.mobile-nav {
  position: fixed; inset: 0; z-index: 70; background: var(--green-deep);
  color: #fff; padding: 28px var(--gutter); display: flex; flex-direction: column;
  transform: translateX(100%); transition: transform .4s var(--ease); visibility: hidden;
}
.mobile-nav.open { transform: translateX(0); visibility: visible; }
.mobile-nav__top { display: flex; align-items: center; justify-content: space-between; margin-bottom: 40px; }
.mobile-nav__close { width: 42px; height: 42px; border: 1px solid rgba(255,255,255,.3); border-radius: var(--radius); display: grid; place-items: center; color: #fff; }
.mobile-nav__close svg { width: 20px; height: 20px; }
.mobile-nav a.mlink {
  font-family: var(--serif); font-size: 32px; font-weight: 500; padding-block: 14px;
  border-bottom: 1px solid rgba(255,255,255,.12); color: #f4efe6;
}
.mobile-nav a.mlink:last-of-type { border-bottom: none; }
.mobile-nav__cta { margin-top: auto; }

/* =========================================================
   Buttons
   ========================================================= */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 12px;
  font-family: var(--sans); font-size: 12.5px; font-weight: 600; letter-spacing: .16em;
  text-transform: uppercase; padding: 17px 30px; border-radius: var(--radius);
  transition: all .28s var(--ease); cursor: pointer; border: 1.5px solid transparent;
}
.btn svg { width: 16px; height: 16px; transition: transform .28s var(--ease); }
.btn:hover svg { transform: translateX(5px); }
.btn--gold { background: var(--gold); color: #23261f; }
.btn--gold:hover { background: var(--gold-deep); }
.btn--green { background: var(--green); color: #f4efe6; }
.btn--green:hover { background: var(--green-deep); }
.btn--outline { border-color: var(--ink); color: var(--ink); }
.btn--outline:hover { background: var(--ink); color: var(--cream); }
.btn--ghost-light { border-color: rgba(255,255,255,.65); color: #fff; }
.btn--ghost-light:hover { background: #fff; color: var(--green); border-color: #fff; }
.btn--block { width: 100%; }

/* =========================================================
   Hero
   ========================================================= */
.hero { position: relative; min-height: 100svh; display: flex; align-items: flex-end; color: #fff; }
.hero__bg { position: absolute; inset: 0; z-index: -2; }
.hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.hero__bg::after {
  content: ""; position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(23,48,31,.55) 0%, rgba(23,48,31,.25) 35%, rgba(23,48,31,.75) 100%);
}
.hero__inner { padding-block: 120px 72px; max-width: 820px; }
.hero__eyebrow { color: var(--gold-soft); margin-bottom: 26px; display: block; }
.hero h1 {
  color: #fff; font-weight: 500;
  font-size: clamp(46px, 8.5vw, 104px); line-height: .98; letter-spacing: -.02em;
}
.hero h1 em { font-style: italic; color: var(--gold-soft); }
.hero__lead {
  margin-top: 26px; max-width: 620px; font-size: clamp(16px, 2.3vw, 19px);
  color: rgba(255,255,255,.9); line-height: 1.55;
}
.hero__actions { margin-top: 40px; display: flex; flex-wrap: wrap; gap: 16px; }

/* =========================================================
   What we do
   ========================================================= */
.intro-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: clamp(32px, 6vw, 80px); align-items: start; }
.section-head h2 { font-size: clamp(30px, 4.4vw, 52px); margin-top: 18px; }
.intro-copy { font-size: 17px; color: var(--ink-soft); }
.intro-copy p + p { margin-top: 18px; }

.services { margin-top: clamp(48px, 6vw, 76px); display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--line); border: 1px solid var(--line); }
.service { background: var(--cream); padding: clamp(28px, 3vw, 40px); transition: background .3s; }
.service:hover { background: var(--cream-2); }
.service__num { font-family: var(--serif); font-size: 15px; color: var(--gold-deep); letter-spacing: .1em; }
.service__icon { width: 40px; height: 40px; color: var(--green); margin: 16px 0 22px; }
.service h3 { font-size: 27px; margin-bottom: 12px; }
.service p { color: var(--ink-soft); font-size: 15px; }

/* =========================================================
   Stats band
   ========================================================= */
.stats { background: var(--green); color: #f4efe6; }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { padding: clamp(36px, 5vw, 60px) 28px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.stat:last-child { border-right: none; }
.stat__num { font-family: var(--serif); font-size: clamp(38px, 5vw, 60px); line-height: 1; color: #fff; }
.stat__num .u { color: var(--gold-soft); font-size: .6em; }
.stat__label { margin-top: 14px; font-size: 11px; letter-spacing: .18em; text-transform: uppercase; color: rgba(255,255,255,.65); }

/* =========================================================
   Feature split (sourcing)
   ========================================================= */
.split { display: grid; grid-template-columns: 1fr 1fr; align-items: stretch; }
.split__media { min-height: 440px; position: relative; }
.split__media img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.split__body { background: var(--cream-2); padding: clamp(40px, 6vw, 88px) clamp(28px, 5vw, 72px); display: flex; flex-direction: column; justify-content: center; }
.split__body h2 { font-size: clamp(28px, 3.6vw, 44px); margin: 16px 0 20px; }
.split__body p { color: var(--ink-soft); }
.split__body .btn { margin-top: 30px; align-self: flex-start; }
.split .checklist { margin: 24px 0 4px; display: grid; gap: 12px; }
.checklist li { display: flex; gap: 12px; align-items: flex-start; font-size: 15px; color: var(--ink-soft); }
.checklist svg { width: 18px; height: 18px; color: var(--gold-deep); flex-shrink: 0; margin-top: 3px; }

/* =========================================================
   Page intro (catalogue / journal / product breadcrumb)
   ========================================================= */
.page-top { padding-top: 100px; }
.breadcrumb { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; letter-spacing: .1em; text-transform: uppercase; color: var(--muted); margin-bottom: 8px; }
.breadcrumb svg { width: 14px; height: 14px; }
.breadcrumb:hover { color: var(--ink); }
.page-head h1 { font-size: clamp(36px, 6vw, 72px); margin-top: 16px; max-width: 14ch; }
.page-head p { margin-top: 22px; max-width: 60ch; color: var(--ink-soft); font-size: 17px; }

/* =========================================================
   Catalogue
   ========================================================= */
.filters { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; margin-top: 44px; padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.filter {
  font-size: 11.5px; font-weight: 600; letter-spacing: .14em; text-transform: uppercase;
  padding: 10px 20px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-soft);
  transition: all .22s var(--ease);
}
.filter:hover { border-color: var(--green-soft); color: var(--ink); }
.filter.active { background: var(--green); border-color: var(--green); color: #f4efe6; }
.filters__count { margin-left: auto; font-size: 12px; letter-spacing: .12em; text-transform: uppercase; color: var(--muted); }

.product-grid { margin-top: 44px; display: grid; grid-template-columns: repeat(2, 1fr); gap: clamp(28px, 4vw, 56px); }
.card { display: flex; flex-direction: column; }
.card__media { position: relative; aspect-ratio: 4 / 3; overflow: hidden; background: var(--cream-3); border-radius: var(--radius); }
.card__media img { width: 100%; height: 100%; object-fit: cover; transition: transform .8s var(--ease); }
.card:hover .card__media img { transform: scale(1.05); }
.card__moq { position: absolute; top: 14px; right: 14px; background: rgba(23,38,31,.82); color: #f4efe6; font-size: 10.5px; letter-spacing: .1em; text-transform: uppercase; padding: 6px 12px; border-radius: var(--radius); backdrop-filter: blur(4px); }
.card__cat { margin-top: 18px; font-size: 10.5px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); }
.card h3 { font-size: 26px; margin-top: 8px; }
.card h3 a:hover { color: var(--green-soft); }
.card__desc { margin-top: 8px; color: var(--ink-soft); font-size: 14.5px; }
.card__link { margin-top: 14px; display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; color: var(--green); }
.card__link svg { width: 15px; height: 15px; transition: transform .25s var(--ease); }
.card__link:hover svg { transform: translateX(4px); }
.is-hidden { display: none !important; }

/* =========================================================
   Product detail
   ========================================================= */
.product { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(32px, 5vw, 72px); align-items: start; margin-top: 30px; }
.product__media { position: sticky; top: 100px; border-radius: var(--radius); overflow: hidden; background: var(--cream-3); aspect-ratio: 1/1; }
.product__media img { width: 100%; height: 100%; object-fit: cover; }
.product__tags { display: flex; gap: 8px; }
.tag { font-size: 10px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; color: var(--gold-deep); border: 1px solid var(--line); padding: 5px 10px; border-radius: var(--radius); }
.product h1 { font-size: clamp(34px, 4.6vw, 54px); margin: 20px 0 18px; line-height: 1.02; }
.product__desc { color: var(--ink-soft); font-size: 16px; max-width: 46ch; }

.specs { margin-top: 32px; border-top: 1px solid var(--line); }
.spec-row { display: grid; grid-template-columns: 200px 1fr; gap: 16px; padding: 15px 0; border-bottom: 1px solid var(--line); align-items: center; }
.spec-row dt { display: flex; align-items: center; gap: 10px; font-size: 11px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); }
.spec-row dt svg { width: 16px; height: 16px; color: var(--green-soft); }
.spec-row dd { font-size: 15px; color: var(--ink); font-weight: 500; }

.tasting { margin-top: 30px; }
.tasting p { font-family: var(--serif); font-style: italic; font-size: 22px; color: var(--green-soft); line-height: 1.4; max-width: 40ch; margin-top: 8px; }

.packaging { margin-top: 30px; }
.chips { display: flex; flex-wrap: wrap; gap: 10px; margin-top: 12px; }
.chip { font-size: 11px; font-weight: 600; letter-spacing: .1em; text-transform: uppercase; padding: 10px 16px; border: 1px solid var(--line); border-radius: var(--radius); color: var(--ink-soft); }
.product .btn { margin-top: 34px; }

/* =========================================================
   Inquiry / forms
   ========================================================= */
.inquiry { background: var(--cream-2); border-top: 1px solid var(--line); }
.form-head h2 { font-size: clamp(30px, 4.4vw, 48px); margin-top: 14px; }
.form-head p { margin-top: 16px; max-width: 62ch; color: var(--ink-soft); }
.form { margin-top: 46px; display: grid; grid-template-columns: 1fr 1fr; gap: 30px 44px; }
.field { display: flex; flex-direction: column; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: 10.5px; font-weight: 600; letter-spacing: .16em; text-transform: uppercase; color: var(--muted); margin-bottom: 10px; }
.field label .req { color: var(--gold-deep); margin-left: 3px; }
.field input:user-invalid, .field select:user-invalid, .field textarea:user-invalid { border-bottom-color: #b4402f; }
.field input:user-invalid::placeholder, .field textarea:user-invalid::placeholder { color: #cf8b80; }
.field input, .field select, .field textarea {
  font-family: var(--sans); font-size: 15px; color: var(--ink);
  background: transparent; border: none; border-bottom: 1px solid var(--line);
  padding: 10px 2px; transition: border-color .25s;
}
.field textarea { resize: vertical; min-height: 60px; }
.field input::placeholder, .field textarea::placeholder { color: #a9a595; }
.field input:focus, .field select:focus, .field textarea:focus { outline: none; border-bottom-color: var(--green); }
.field select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237c7d70' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 2px center; cursor: pointer; }
.form__foot { grid-column: 1 / -1; display: flex; align-items: center; gap: 22px; margin-top: 6px; flex-wrap: wrap; }
.form__note { font-size: 12.5px; color: var(--muted); }
.form__success { grid-column: 1/-1; display: none; padding: 18px 22px; background: rgba(31,61,41,.08); border: 1px solid var(--green-soft); border-radius: var(--radius); color: var(--green); font-size: 14px; }
.form__success.show { display: block; }

/* =========================================================
   Journal
   ========================================================= */
.journal-empty { padding: clamp(48px,10vw,120px) 0; text-align: center; color: var(--muted); font-size: 15px; }
.journal-grid { margin-top: clamp(34px,5vw,54px); display: grid; grid-template-columns: repeat(2,1fr); gap: clamp(24px,4vw,48px); }
.card__meta { margin-top: 6px; font-size: 12.5px; color: var(--muted); letter-spacing: .02em; }

/* Article detail (journal post) */
.article { max-width: 760px; }
.article__meta { margin-top: 14px; font-size: 13px; letter-spacing: .04em; color: var(--muted); }
.article__hero { margin: clamp(24px,4vw,40px) 0; border-radius: var(--radius); overflow: hidden; aspect-ratio: 16 / 9; background: var(--cream-3); }
.article__hero img { width: 100%; height: 100%; object-fit: cover; }
.article__body { max-width: 680px; }
.article__body p { color: var(--ink-soft); font-size: 17px; line-height: 1.7; }
.article__body p + p { margin-top: 20px; }
.article__body p.lead { font-size: 20px; color: var(--ink); font-family: var(--serif); line-height: 1.5; }
.article__back { margin-top: clamp(32px,4vw,44px); display: inline-flex; align-items: center; gap: 8px; font-size: 12px; font-weight: 600; letter-spacing: .12em; text-transform: uppercase; color: var(--green); }
.article__back svg { width: 15px; height: 15px; }

/* =========================================================
   Footer
   ========================================================= */
.site-footer { background: var(--green); color: #d7d2c4; }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding-block: clamp(48px, 6vw, 80px); }
.footer-brand__name { font-family: var(--serif); font-size: 30px; color: #fff; line-height: 1.05; }
.footer-brand__tag { color: var(--gold-soft); font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; margin: 14px 0 18px; }
.footer-brand p { font-size: 14px; max-width: 34ch; color: rgba(255,255,255,.66); }
.footer-col h4 { font-size: 11px; font-weight: 600; letter-spacing: .2em; text-transform: uppercase; color: var(--gold-soft); font-family: var(--sans); margin-bottom: 18px; }
.footer-col ul { display: grid; gap: 12px; }
.footer-col a, .footer-contact li { font-size: 14px; color: rgba(255,255,255,.72); transition: color .2s; }
.footer-col a:hover { color: #fff; }
.footer-contact li { display: flex; gap: 12px; align-items: flex-start; }
.footer-contact svg { width: 16px; height: 16px; color: var(--gold-soft); flex-shrink: 0; margin-top: 3px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.12); padding-block: 24px; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; }
.footer-bottom p { font-size: 12px; color: rgba(255,255,255,.5); letter-spacing: .02em; }
.footer-credit { border-top: 1px solid rgba(255,255,255,.08); padding-block: 18px; text-align: center; }
.footer-credit p { font-size: 12px; color: rgba(255,255,255,.55); letter-spacing: .04em; }
.footer-credit a { color: var(--gold-soft); font-weight: 600; transition: color .2s; }
.footer-credit a:hover { color: #fff; }

/* =========================================================
   Floating chat
   ========================================================= */
.chat-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 55;
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: #25b862; color: #fff; padding: 13px 18px; border-radius: 40px;
  box-shadow: 0 12px 30px -8px rgba(37,184,98,.6); font-size: 13px; font-weight: 600;
  transition: transform .25s var(--ease);
}
.chat-fab:hover { transform: translateY(-3px); }
.chat-fab svg { width: 20px; height: 20px; }
.chat-fab .chat-fab__text { display: inline; }

/* =========================================================
   Reveal animation
   ========================================================= */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* =========================================================
   Responsive
   ========================================================= */
@media (max-width: 980px) {
  .nav__links { display: none; }
  .lang { display: none; }
  .burger { display: grid; }
  .intro-grid { grid-template-columns: 1fr; }
  .services { grid-template-columns: 1fr; }
  .stats__grid { grid-template-columns: repeat(2, 1fr); }
  .stat:nth-child(2) { border-right: none; }
  .stat:nth-child(1), .stat:nth-child(2) { border-bottom: 1px solid rgba(255,255,255,.1); }
  .split { grid-template-columns: 1fr; }
  .split__media { min-height: 300px; }
  .product { grid-template-columns: 1fr; }
  .product__media { position: relative; top: 0; max-width: 520px; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .chat-fab { gap: 0; padding: 0; width: 54px; height: 54px; border-radius: 50%; }
  .chat-fab .chat-fab__text { display: none; }
  .chat-fab svg { width: 24px; height: 24px; }
}
@media (max-width: 620px) {
  .product-grid { grid-template-columns: 1fr; }
  .journal-grid { gap: 20px; }
  .journal-grid .card h3 { font-size: 18px; margin-top: 6px; }
  .journal-grid .card__desc { font-size: 13px; }
  .journal-grid .card__cat { font-size: 9.5px; letter-spacing: .14em; }
  .form { grid-template-columns: 1fr; }
  .spec-row { grid-template-columns: 1fr; gap: 4px; }
  .footer-top { grid-template-columns: 1fr; gap: 34px; }
  .hero__actions { flex-direction: column; align-items: stretch; }
  .hero__actions .btn { width: 100%; }
  .brand__sub { display: none; }
  .footer-credit { padding-bottom: 84px; }
}
