/* =============================================
   PADBROOK — Design 2: Forest & Gold
   ============================================= */

@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,500;0,700;1,400;1,500&family=Jost:wght@300;400;500&display=swap');

:root {
  --forest:       #1B2E2A;
  --forest-mid:   #243D38;
  --forest-light: #2F5048;
  --ivory:        #F7F3EE;
  --ivory-dark:   #EDE8E1;
  --gold:         #C4983A;
  --gold-light:   #D4A94A;
  --sage:         #7A9E96;
  --warm-gray:    #8A8480;
  --border:       #D6CFC6;
  --white:        #FFFFFF;

  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans:  'Jost', system-ui, sans-serif;

  --max-width: 1200px;
  --nav-height: 76px;
  --section-pad: 100px;
  --transition: 0.3s ease;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--forest);
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
  -webkit-font-smoothing: antialiased;
}

img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 56px;
}

.section { padding: var(--section-pad) 0; }
.section--dark { background: var(--forest); }
.section--ivory { background: var(--ivory-dark); }

.label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: 18px;
}

.label--light { color: var(--gold-light); }

/* --- NAV --- */
.nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100; height: var(--nav-height);
  display: flex; align-items: center;
  background: var(--forest);
  transition: background var(--transition), box-shadow var(--transition);
}

.nav.scrolled {
  background: var(--forest-mid);
  box-shadow: 0 2px 24px rgba(0,0,0,0.25);
}

.nav__inner {
  max-width: var(--max-width); margin: 0 auto;
  padding: 0 56px; width: 100%;
  display: flex; align-items: center; justify-content: space-between;
}

.nav__logo { display: flex; align-items: center; }

.nav__logo-img {
  height: 36px;
  width: auto;
  display: block;
}

.nav__links { display: flex; align-items: center; gap: 44px; }

.nav__links a {
  font-size: 11px; font-weight: 400;
  letter-spacing: 0.14em; text-transform: uppercase;
  color: rgba(247,243,238,0.7);
  transition: color var(--transition);
}

.nav__links a:hover { color: var(--gold); }

.nav__cta {
  color: var(--white) !important;
  background: var(--gold);
  padding: 10px 26px;
  font-weight: 500 !important;
  transition: background var(--transition) !important;
}

.nav__cta:hover { background: var(--gold-light) !important; }

.nav__hamburger {
  display: none; flex-direction: column; gap: 5px;
  cursor: pointer; background: none; border: none; padding: 4px;
}
.nav__hamburger span { display: block; width: 24px; height: 1.5px; background: rgba(247,243,238,0.7); transition: var(--transition); }

.nav__mobile {
  display: none; position: fixed;
  top: var(--nav-height); left: 0; right: 0;
  background: var(--ivory); border-top: 1px solid var(--border);
  padding: 32px 56px 40px; flex-direction: column; gap: 24px; z-index: 99;
}
.nav__mobile.open { display: flex; }
.nav__mobile a { font-size: 13px; letter-spacing: 0.12em; text-transform: uppercase; color: var(--forest); transition: color var(--transition); }
.nav__mobile a:hover { color: var(--gold); }

/* --- HERO --- */
.hero {
  min-height: 100vh;
  background: var(--forest);
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  position: relative;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0; left: 50%;
  width: 1px; height: 100%;
  background: rgba(196,152,58,0.2);
}

.hero__left {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: calc(var(--nav-height) + 60px) 80px 80px 56px;
  position: relative;
  z-index: 1;
}

.hero__right {
  background: linear-gradient(180deg, rgba(27,46,42,0.18) 0%, rgba(27,46,42,0.46) 78%), url('../images/argentine-ram.jpg');
  background-size: cover;
  background-position: center 30%;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 80px 56px;
  gap: 0;
  position: relative;
  overflow: hidden;
}

.hero__right::before {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 280px; height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(196,152,58,0.08) 0%, transparent 70%);
}

.hero__eyebrow {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.24em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 32px;
  display: flex; align-items: center; gap: 16px;
}

.hero__eyebrow::before {
  content: '';
  display: block; width: 40px; height: 1px; background: var(--gold);
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(44px, 5.5vw, 80px);
  font-weight: 400;
  color: var(--ivory);
  line-height: 1.08;
  margin-bottom: 36px;
}

.hero__title em { font-style: italic; color: var(--gold-light); }

.hero__subtitle {
  font-size: 17px; font-weight: 300;
  color: rgba(247,243,238,0.7);
  max-width: 440px; line-height: 1.85;
  margin-bottom: 52px;
}

.btn {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: var(--font-sans);
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.16em; text-transform: uppercase;
  padding: 15px 34px; cursor: pointer;
  transition: var(--transition); border: none;
}

.btn--gold { background: var(--gold); color: var(--white); }
.btn--gold:hover { background: var(--gold-light); }

.btn--outline-light {
  background: transparent; color: var(--ivory);
  border: 1px solid rgba(247,243,238,0.25);
}
.btn--outline-light:hover { border-color: var(--gold); color: var(--gold); }

.btn--forest { background: var(--forest); color: var(--ivory); }
.btn--forest:hover { background: var(--forest-light); }

.btn--outline-dark {
  background: transparent; color: var(--forest);
  border: 1px solid var(--forest);
}
.btn--outline-dark:hover { background: var(--forest); color: var(--ivory); }

.hero__actions { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }

/* Right panel stats */
.hero__stat-list {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}

.hero__stat-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 28px 0;
  border-bottom: 1px solid rgba(196,152,58,0.15);
}

.hero__stat-item:first-child { border-top: 1px solid rgba(196,152,58,0.15); }

.hero__stat-num {
  font-family: var(--font-serif);
  font-size: 40px; font-weight: 400;
  color: var(--gold);
  min-width: 80px; line-height: 1;
}

.hero__stat-desc {
  font-size: 13px; color: rgba(247,243,238,0.5);
  line-height: 1.5;
}

.hero__stat-desc strong {
  display: block; color: rgba(247,243,238,0.85);
  font-weight: 400; margin-bottom: 2px; font-size: 14px;
}

/* --- INTRO STRIP --- */
.intro-strip {
  background: var(--gold);
  padding: 28px 0;
  overflow: hidden;
}

.intro-strip__inner {
  display: flex; align-items: center; gap: 64px;
  white-space: nowrap;
}

.intro-strip__item {
  font-size: 11px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--white); opacity: 0.85;
  flex-shrink: 0;
}

.intro-strip__dot { color: var(--white); opacity: 0.4; }

/* --- ABOUT SPLIT --- */
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.about-split__text {
  padding: var(--section-pad) 72px var(--section-pad) 56px;
  display: flex; flex-direction: column; justify-content: center;
}

.about-split__image {
  background: var(--forest-mid) url('../images/merino-ram.jpg') 30% 15% / cover no-repeat;
  min-height: 600px;
  display: flex; align-items: center; justify-content: center;
  position: relative;
  overflow: hidden;
}

.about-split__image-label {
  display: none;
}

.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(30px, 3.5vw, 52px);
  font-weight: 400; line-height: 1.15;
  color: var(--forest); margin-bottom: 24px;
}

.section-heading em { font-style: italic; color: var(--gold); }
.section-heading--light { color: var(--ivory); }
.section-heading--light em { color: var(--gold-light); }

.divider { width: 40px; height: 2px; background: var(--gold); margin: 24px 0; }

.body-text { font-size: 17px; color: var(--warm-gray); line-height: 1.85; margin-bottom: 16px; }
.body-text--light { color: rgba(247,243,238,0.55); }

/* --- PRODUCTS --- */
.products-section { padding: var(--section-pad) 0; }

.products-header {
  display: flex; align-items: flex-end;
  justify-content: space-between; gap: 40px;
  margin-bottom: 56px;
}

.products-header__text { max-width: 480px; }

.products-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.product-card {
  background: var(--ivory-dark);
  padding: 48px 40px;
  position: relative;
  overflow: hidden;
  transition: background var(--transition);
}

.product-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.product-card:hover { background: var(--forest); }
.product-card:hover::after { transform: scaleX(1); }
.product-card:hover .pc-title { color: var(--ivory); }
.product-card:hover .pc-text { color: rgba(247,243,238,0.5); }
.product-card:hover .pc-link { color: var(--gold); }

.pc-num {
  font-family: var(--font-serif);
  font-size: 56px; font-weight: 400;
  color: var(--border); line-height: 1;
  margin-bottom: 20px;
  transition: color var(--transition);
}

.product-card:hover .pc-num { color: rgba(196,152,58,0.2); }

.pc-title {
  font-family: var(--font-serif);
  font-size: 26px; font-weight: 400;
  color: var(--forest); margin-bottom: 16px;
  transition: color var(--transition);
}

.pc-text {
  font-size: 16px; color: var(--warm-gray);
  line-height: 1.8; margin-bottom: 32px;
  transition: color var(--transition);
}

.pc-link {
  font-size: 10px; font-weight: 500;
  letter-spacing: 0.18em; text-transform: uppercase;
  color: var(--gold); display: inline-flex;
  align-items: center; gap: 8px;
  transition: color var(--transition);
}

/* --- VALUES DARK --- */
.values-dark { padding: var(--section-pad) 0; }

.values-dark__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 60px;
}

.vi {
  padding: 48px 40px;
  border: 1px solid rgba(196,152,58,0.12);
  background: var(--forest-mid);
  position: relative;
}

.vi::before {
  content: attr(data-num);
  position: absolute;
  top: 32px; right: 32px;
  font-family: var(--font-serif);
  font-size: 11px; font-weight: 400;
  color: var(--gold); opacity: 0.5;
  letter-spacing: 0.1em;
}

.vi__title {
  font-family: var(--font-serif);
  font-size: 22px; color: var(--ivory); margin-bottom: 14px;
}

.vi__text { font-size: 18px; color: rgba(247,243,238,0.8); line-height: 1.8; }

/* --- CTA --- */
.cta {
  background: var(--gold);
  padding: 90px 0;
}

.cta__inner {
  display: flex; align-items: center;
  justify-content: space-between; gap: 48px; flex-wrap: wrap;
}

.cta__title {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.5vw, 48px);
  font-weight: 400; color: var(--white);
}

.cta__title em { font-style: italic; }

.cta__sub {
  font-size: 14px; color: rgba(255,255,255,0.75);
  margin-top: 10px;
}

.btn--white { background: var(--white); color: var(--forest); }
.btn--white:hover { background: var(--ivory); }

/* --- FOOTER --- */
.footer { background: var(--forest); padding: 72px 0 40px; }

.footer__top {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 56px; margin-bottom: 56px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 24px; font-weight: 700;
  color: var(--ivory); margin-bottom: 16px;
}

.footer__tagline { font-size: 13px; color: rgba(247,243,238,0.35); line-height: 1.75; max-width: 240px; }

.footer__col-title {
  font-size: 10px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 20px;
}

.footer__links { display: flex; flex-direction: column; gap: 12px; }
.footer__links a { font-size: 13px; color: rgba(247,243,238,0.45); transition: color var(--transition); }
.footer__links a:hover { color: var(--ivory); }

.footer__address { font-size: 13px; color: rgba(247,243,238,0.45); line-height: 1.85; }
.footer__address strong { display: block; color: rgba(247,243,238,0.75); font-weight: 400; margin-bottom: 2px; }

.footer__bottom {
  border-top: 1px solid rgba(247,243,238,0.06);
  padding-top: 32px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px; flex-wrap: wrap;
}

.footer__copy { font-size: 12px; color: rgba(247,243,238,0.25); }

/* --- PAGE HERO (inner pages) --- */
.page-hero {
  padding-top: calc(var(--nav-height) + 80px);
  padding-bottom: 80px;
  background: var(--forest);
}
.page-hero__label { color: var(--gold-light); margin-bottom: 20px; }
.page-hero__title {
  font-family: var(--font-serif);
  font-size: clamp(40px, 5vw, 72px);
  font-weight: 400; color: var(--ivory); line-height: 1.1; max-width: 600px;
}
.page-hero__title em { font-style: italic; color: var(--gold-light); }

/* --- ABOUT STORY --- */
.about-story {
  display: grid; grid-template-columns: 1fr 1.2fr; gap: 80px; align-items: start;
}
.about-story__sticky { position: sticky; top: calc(var(--nav-height) + 40px); }
.about-story__heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 46px); font-weight: 400; line-height: 1.2; margin-bottom: 24px;
}
.about-story__heading em { font-style: italic; color: var(--gold); }
.about-story__text { font-size: 17px; color: var(--warm-gray); line-height: 1.85; margin-bottom: 18px; }

.ceo-card {
  background: var(--forest-mid);
  padding: 36px 40px; margin-top: 40px;
  border-left: 3px solid var(--gold);
}
.ceo-card__name { font-family: var(--font-serif); font-size: 26px; color: var(--ivory); margin-bottom: 6px; }
.ceo-card__role { font-size: 11px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.ceo-card__bio { font-size: 18px; color: rgba(247,243,238,0.92); line-height: 1.8; }

.milestones { display: flex; flex-direction: column; gap: 0; }
.milestone {
  display: flex; gap: 32px;
  padding: 36px 0;
  border-bottom: 1px solid rgba(196,152,58,0.15);
}
.milestone:first-child { padding-top: 0; }
.milestone__year {
  font-family: var(--font-serif); font-size: 36px; font-weight: 400;
  color: rgba(196,152,58,0.3); line-height: 1; min-width: 90px;
}
.milestone__title {
  font-family: var(--font-serif); font-size: 20px; font-weight: 400;
  color: var(--forest); margin-bottom: 10px;
}
.milestone__text { font-size: 17px; color: var(--warm-gray); line-height: 1.8; }

.certifications { display: flex; gap: 10px; flex-wrap: wrap; }
.cert-badge {
  background: var(--ivory-dark); border: 1px solid var(--border);
  padding: 8px 16px; font-size: 10px; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--forest);
  cursor: pointer; transition: background var(--transition), border-color var(--transition), color var(--transition);
  font-family: var(--font-sans); appearance: none; display: inline-flex; align-items: center; gap: 6px;
}
.cert-badge::after { content: '+'; font-size: 14px; line-height: 1; opacity: 0.5; transition: opacity var(--transition); }
.cert-badge:hover {
  background: var(--forest); border-color: var(--forest); color: var(--gold);
}
.cert-badge:hover::after { opacity: 1; }

/* On dark backgrounds (section--dark), badges get light variant */
.section--dark .cert-badge,
.values-dark .cert-badge {
  background: rgba(255,255,255,0.07); border-color: rgba(255,255,255,0.18); color: var(--ivory);
}
.section--dark .cert-badge:hover,
.values-dark .cert-badge:hover {
  background: var(--gold); border-color: var(--gold); color: var(--forest);
}

/* --- CERTIFICATION MODAL --- */
.cert-overlay {
  position: fixed; inset: 0; z-index: 900;
  background: rgba(27,46,42,0.72); backdrop-filter: blur(4px);
  display: flex; align-items: center; justify-content: center;
  padding: 24px;
  opacity: 0; pointer-events: none; transition: opacity 0.25s ease;
}
.cert-overlay.open { opacity: 1; pointer-events: all; }

.cert-modal {
  background: var(--ivory); max-width: 520px; width: 100%;
  padding: 52px 48px 44px; position: relative;
  transform: translateY(20px); transition: transform 0.28s ease;
  box-shadow: 0 24px 80px rgba(0,0,0,0.28);
}
.cert-overlay.open .cert-modal { transform: translateY(0); }

.cert-modal__close {
  position: absolute; top: 20px; right: 24px;
  background: none; border: none; cursor: pointer;
  font-size: 24px; color: var(--warm-gray); line-height: 1;
  transition: color var(--transition);
}
.cert-modal__close:hover { color: var(--forest); }

.cert-modal__abbr {
  font-family: var(--font-serif); font-size: 42px; font-weight: 400;
  color: var(--forest); line-height: 1.1; margin-bottom: 6px;
}
.cert-modal__name {
  font-size: 11px; font-weight: 500; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--gold); margin-bottom: 28px;
}
.cert-modal__divider {
  height: 1px; background: var(--border); margin-bottom: 28px;
}
.cert-modal__body {
  font-size: 16px; color: var(--warm-gray); line-height: 1.85; margin-bottom: 32px;
}
.cert-modal__link {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 11px; font-weight: 500; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--forest);
  border-bottom: 1px solid var(--border); padding-bottom: 3px;
  transition: color var(--transition), border-color var(--transition);
}
.cert-modal__link:hover { color: var(--gold); border-color: var(--gold); }

/* --- WOOL GRID (products page) --- */
.wool-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2px; }
.wool-item { background: var(--ivory-dark); padding: 40px; overflow: hidden; }

.wool-grid--compact {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  margin-top: 2px;
}
.wool-item--compact {
  background: var(--ivory-dark);
  padding: 32px;
  border-top: 2px solid var(--gold);
}
.wool-item--compact .wool-item__title { font-size: 21px; margin-bottom: 10px; }
.wool-item--compact .wool-item__microns { margin-bottom: 10px; }
.wool-item__img {
  width: calc(100% + 80px);
  max-width: none;
  aspect-ratio: 1 / 1;
  height: auto;
  object-fit: cover;
  object-position: center 25%;
  display: block;
  margin: -40px -40px 28px;
}
.wool-item__origin { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--gold); margin-bottom: 12px; }
.wool-item__title { font-family: var(--font-serif); font-size: 24px; font-weight: 400; color: var(--forest); margin-bottom: 12px; }
.wool-item__microns { font-size: 14px; letter-spacing: 0.08em; color: var(--warm-gray); margin-bottom: 12px; }
.wool-item__formats { font-size: 16px; color: var(--warm-gray); line-height: 1.75; }

/* --- FIBRE GRID --- */
.fiber-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2px; }
.fiber-card { background: var(--ivory); padding: 36px 32px; overflow: hidden; }
.fiber-card__img {
  width: calc(100% + 64px);
  max-width: none;
  height: 210px;
  object-fit: cover;
  display: block;
  margin: -36px -32px 24px;
}
.section-banner {
  width: 100%;
  height: 460px;
  object-fit: cover;
  object-position: center 88%;
  display: block;
  margin-bottom: 8px;
}
.about-photo {
  width: 100%;
  height: 300px;
  object-fit: cover;
  display: block;
  margin: 40px 0 0;
}
.fiber-card__title { font-family: var(--font-serif); font-size: 22px; font-weight: 400; color: var(--forest); margin-bottom: 8px; }
.fiber-card__origin { font-size: 10px; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); margin-bottom: 14px; }
.fiber-card__text { font-size: 15px; color: var(--warm-gray); line-height: 1.8; margin-bottom: 14px; }
.fiber-card__cert { font-size: 10px; letter-spacing: 0.1em; text-transform: uppercase; color: var(--forest); font-weight: 500; opacity: 0.6; }

/* --- TREATMENTS GRID --- */
.treatments-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2px; }
.treatment-item { background: var(--forest); padding: 32px 28px; }
.treatment-item__title { font-family: var(--font-serif); font-size: 18px; font-weight: 400; color: var(--ivory); margin-bottom: 10px; }
.treatment-item__text { font-size: 15px; color: rgba(247,243,238,0.65); line-height: 1.75; }

/* --- CONTACT --- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: start; }
.contact-info__heading {
  font-family: var(--font-serif);
  font-size: clamp(28px, 3.2vw, 48px); font-weight: 400; line-height: 1.2; margin-bottom: 24px;
}
.contact-info__heading em { font-style: italic; color: var(--gold); }
.contact-info__text { font-size: 17px; color: var(--warm-gray); line-height: 1.85; margin-bottom: 40px; }

.office-card {
  padding: 32px 36px; border: 1px solid var(--border);
  margin-bottom: 20px; transition: border-color var(--transition);
}
.office-card:hover { border-color: var(--gold); }
.office-card__country { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 10px; }
.office-card__name { font-family: var(--font-serif); font-size: 20px; color: var(--forest); margin-bottom: 12px; }
.office-card__detail { font-size: 16px; color: var(--warm-gray); line-height: 1.75; }
.office-card__detail strong { color: var(--forest); font-weight: 500; }

.email-block {
  background: var(--forest);
  padding: 28px 36px;
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
  flex-wrap: wrap; margin-bottom: 32px;
}
.email-block__label { font-size: 10px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold); margin-bottom: 6px; }
.email-block__address { font-family: var(--font-serif); font-size: 20px; color: var(--ivory); }

.contact-form { display: flex; flex-direction: column; gap: 18px; }
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label { font-size: 10px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--forest); font-weight: 500; }
.form-input, .form-textarea {
  font-family: var(--font-sans); font-size: 16px; font-weight: 300;
  color: var(--forest); background: var(--ivory-dark);
  border: 1px solid var(--border); padding: 13px 16px;
  outline: none; transition: border-color var(--transition); width: 100%;
}
.form-input:focus, .form-textarea:focus { border-color: var(--gold); }
.form-textarea { resize: vertical; min-height: 130px; }

/* --- BODY TEXT utility --- */
.body-text { font-size: 17px; color: var(--warm-gray); line-height: 1.85; margin-bottom: 16px; }

/* --- ANIMATIONS --- */
.fade-up { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }

/* --- RESPONSIVE --- */
@media (max-width: 1024px) {
  .container { padding: 0 32px; }
  .nav__inner { padding: 0 32px; }
  .products-row { grid-template-columns: 1fr 1fr; }
  .values-dark__grid { grid-template-columns: 1fr 1fr; }
  .footer__top { grid-template-columns: 1fr 1fr; gap: 40px; }
  .about-split { grid-template-columns: 1fr; }
  .about-split__image { min-height: 360px; order: -1; }
  .about-split__text { padding: 64px 32px; }
  .about-story { grid-template-columns: 1fr; gap: 48px; }
  .about-story__sticky { position: static; }
  .wool-grid { grid-template-columns: 1fr 1fr; }
  .wool-grid--compact { grid-template-columns: 1fr 1fr; }
  .fiber-grid { grid-template-columns: 1fr 1fr; }
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
}

@media (max-width: 768px) {
  :root { --section-pad: 64px; }
  .container { padding: 0 24px; }
  .nav__inner { padding: 0 24px; }
  .nav__links { display: none; }
  .nav__hamburger { display: flex; }
  .hero { grid-template-columns: 1fr; }
  .hero__right { display: none; }
  .hero__left { padding: calc(var(--nav-height) + 48px) 24px 64px; }
  .products-row { grid-template-columns: 1fr; }
  .values-dark__grid { grid-template-columns: 1fr; }
  .footer__top { grid-template-columns: 1fr; }
  .cta__inner { flex-direction: column; align-items: flex-start; }
  .products-header { flex-direction: column; align-items: flex-start; }
  .wool-grid { grid-template-columns: 1fr; }
  .wool-grid--compact { grid-template-columns: 1fr; }
  .fiber-grid { grid-template-columns: 1fr; }
  .treatments-grid { grid-template-columns: 1fr 1fr; }
  .cert-modal { padding: 40px 28px 36px; }
  .cert-modal__abbr { font-size: 32px; }
}
