/* ==========================================================================
   HEI TAONGA — SITE STYLES
   ========================================================================== */

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

:root {
  --dp: #1C3A28;
  --kawa: #2D6B4A;
  --inanga: #7EB99A;
  --river: #F4EFE6;
  --whenua: #8B7355;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Jost', -apple-system, BlinkMacSystemFont, sans-serif;

  --max-w: 1400px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: #fff;
  font-family: var(--sans);
  color: #1a1a1a;
  line-height: 1.6;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; display: block; }

a { color: inherit; text-decoration: none; }

button { font-family: inherit; cursor: pointer; }

/* ==========================================================================
   NAV
   ========================================================================== */

.nav {
  background: var(--dp);
  padding: 0 clamp(20px, 4vw, 48px);
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: sticky;
  top: 0;
  z-index: 100;
}

.nav-brand { display: flex; align-items: center; gap: 14px; }
.nav-logo-img { height: 48px; width: auto; }
.nav-wordmark { display: flex; flex-direction: column; line-height: 1.1; }
.nav-ht {
  font-family: var(--serif);
  font-size: 22px;
  color: var(--river);
  letter-spacing: 0.12em;
  font-weight: 400;
}
.nav-sub {
  font-size: 9px;
  letter-spacing: 0.22em;
  color: var(--inanga);
  text-transform: uppercase;
  margin-top: 3px;
}

.nav-links { display: flex; gap: 32px; }
.nav-links a {
  color: rgba(244,239,230,0.72);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--river); }

.nav-icons { display: flex; gap: 18px; font-size: 18px; color: rgba(244,239,230,0.78); align-items: center; }
.nav-icons a { transition: color 0.2s; }
.nav-icons a:hover { color: var(--river); }
.cart-dot { position: relative; }
.cart-dot::after {
  content: '0';
  position: absolute;
  top: -6px;
  right: -7px;
  background: var(--inanga);
  color: var(--dp);
  font-size: 9px;
  font-weight: 700;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.mobile-toggle { display: none; background: transparent; border: none; color: var(--river); font-size: 22px; }

@media (max-width: 900px) {
  .nav-links { display: none; }
  .mobile-toggle { display: block; }
  .nav-icons { gap: 12px; }
  .nav-ht { font-size: 18px; }
  .nav-sub { font-size: 8px; }
  .nav-logo-img { height: 38px; }
}

/* Mobile menu */
.mobile-menu {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  background: var(--dp);
  padding: 20px;
  z-index: 99;
  border-top: 1px solid rgba(126,185,154,0.15);
}
.mobile-menu.open { display: block; }
.mobile-menu a {
  display: block;
  color: rgba(244,239,230,0.85);
  padding: 12px 0;
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(244,239,230,0.08);
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn-pri {
  background: var(--inanga);
  color: var(--dp);
  padding: 14px 32px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 2px;
  transition: background 0.2s;
  display: inline-block;
}
.btn-pri:hover { background: var(--river); }

.btn-sec {
  background: transparent;
  color: rgba(244,239,230,0.85);
  padding: 14px 26px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 400;
  border: 1px solid rgba(244,239,230,0.3);
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-sec:hover { border-color: var(--river); color: var(--river); }

.btn-sec-dark {
  background: transparent;
  color: var(--dp);
  padding: 14px 26px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--dp);
  border-radius: 2px;
  display: inline-block;
  transition: background 0.2s, color 0.2s;
}
.btn-sec-dark:hover { background: var(--dp); color: var(--river); }

/* ==========================================================================
   SECTIONS
   ========================================================================== */

.sec {
  padding: clamp(48px, 8vw, 84px) clamp(20px, 4vw, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
}

.sec-label {
  font-size: 10px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--whenua);
  margin-bottom: 12px;
  font-weight: 500;
}

.sec-h2 {
  font-family: var(--serif);
  font-size: clamp(30px, 5vw, 46px);
  color: var(--dp);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -0.01em;
}

.sec-hdr {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 44px;
  gap: 20px;
  flex-wrap: wrap;
}

.view-all {
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--kawa);
  border-bottom: 1px solid var(--inanga);
  padding-bottom: 3px;
  font-weight: 500;
}

/* ==========================================================================
   HERO
   ========================================================================== */

.hero {
  background: var(--dp);
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 560px;
  align-items: center;
  overflow: hidden;
}
.hero-l { padding: clamp(48px, 6vw, 80px) clamp(24px, 5vw, 64px); }
.hero-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--inanga);
  margin-bottom: 20px;
  font-weight: 500;
}
.hero-h1 {
  font-family: var(--serif);
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.05;
  color: var(--river);
  font-weight: 300;
  margin-bottom: 26px;
  letter-spacing: -0.01em;
}
.hero-h1 em { font-style: italic; color: var(--inanga); font-weight: 400; }
.hero-p {
  font-size: 15px;
  color: rgba(244,239,230,0.65);
  line-height: 1.78;
  max-width: 380px;
  margin-bottom: 38px;
  font-weight: 300;
}
.hero-r {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  min-height: 400px;
}
.hero-r::before {
  content: '';
  position: absolute;
  width: 440px;
  height: 440px;
  border-radius: 50%;
  border: 1px solid rgba(126,185,154,0.08);
  max-width: 90%;
  aspect-ratio: 1;
}
.hero-r::after {
  content: '';
  position: absolute;
  width: 340px;
  height: 340px;
  border-radius: 50%;
  border: 1px solid rgba(126,185,154,0.15);
  max-width: 75%;
  aspect-ratio: 1;
}
.hero-logo {
  height: 340px;
  width: auto;
  position: relative;
  z-index: 1;
  opacity: 0.95;
  max-width: 70%;
  object-fit: contain;
}
.hero-tag {
  position: absolute;
  bottom: 40px;
  right: 40px;
  font-family: var(--serif);
  font-size: 14px;
  color: rgba(244,239,230,0.4);
  font-style: italic;
}
@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-r { padding: 40px 20px; min-height: 320px; }
  .hero-tag { display: none; }
}

/* Small hero for interior pages */
.hero-sm {
  background: var(--dp);
  padding: clamp(60px, 8vw, 100px) clamp(24px, 5vw, 48px);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.hero-sm-eyebrow {
  font-size: 11px;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: var(--inanga);
  margin-bottom: 14px;
  font-weight: 500;
}
.hero-sm h1 {
  font-family: var(--serif);
  font-size: clamp(36px, 5vw, 56px);
  color: var(--river);
  font-weight: 300;
  line-height: 1.1;
}
.hero-sm p {
  color: rgba(244,239,230,0.7);
  font-size: 15px;
  max-width: 560px;
  margin: 20px auto 0;
  font-weight: 300;
  line-height: 1.7;
}
.hero-sm-bg {
  position: absolute;
  right: -80px;
  top: 50%;
  transform: translateY(-50%);
  width: 340px;
  height: 340px;
  opacity: 0.05;
  pointer-events: none;
}

/* ==========================================================================
   TRUST BAR
   ========================================================================== */

.trust {
  background: var(--river);
  padding: 18px clamp(20px, 4vw, 48px);
  display: flex;
  justify-content: center;
  gap: clamp(20px, 4vw, 60px);
  border-bottom: 1px solid rgba(139,115,85,0.15);
  flex-wrap: wrap;
}
.ti {
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--whenua);
  text-transform: uppercase;
  font-weight: 500;
  display: flex;
  align-items: center;
  gap: 8px;
}
.ti-mark { color: var(--inanga); font-size: 11px; }

/* ==========================================================================
   PRODUCT GRID
   ========================================================================== */

.pgrid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 24px;
}
.pcard {
  cursor: pointer;
  transition: transform 0.3s;
  display: block;
  color: inherit;
}
.pcard-img {
  aspect-ratio: 1;
  border-radius: 4px;
  overflow: hidden;
  margin-bottom: 16px;
  position: relative;
  background: var(--river);
}
.pcard-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: transform 0.5s;
}
.pcard:hover .pcard-img img { transform: scale(1.05); }
.pcard-overlay {
  position: absolute;
  inset: 0;
  background: rgba(28,58,40,0.88);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s;
}
.pcard:hover .pcard-overlay { opacity: 1; }
.pcard-btn {
  background: var(--river);
  color: var(--dp);
  font-size: 10px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 11px 18px;
  font-weight: 600;
  border: none;
}
.pcard-meaning {
  font-size: 10px;
  color: var(--whenua);
  margin-bottom: 4px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 500;
}
.pcard-name {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--dp);
  margin-bottom: 6px;
  font-weight: 400;
}
.pcard-price { font-size: 13px; color: #666; letter-spacing: 0.04em; }
.pcard-badge {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--dp);
  color: var(--river);
  font-size: 9px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  padding: 5px 10px;
  font-weight: 500;
}

/* ==========================================================================
   STORY
   ========================================================================== */

.story {
  background: var(--dp);
  padding: clamp(60px, 8vw, 96px) clamp(24px, 5vw, 48px);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: center;
  position: relative;
  overflow: hidden;
}
.story-bg-logo {
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  opacity: 0.04;
  pointer-events: none;
}
.story-text { position: relative; z-index: 1; }
.story-text .sec-h2 { color: var(--river); }
.story-text .sec-label { color: var(--inanga); }
.story-body {
  font-size: 15px;
  color: rgba(244,239,230,0.7);
  line-height: 1.85;
  margin-top: 22px;
  font-weight: 300;
}
.story-body em {
  color: var(--inanga);
  font-style: italic;
  font-family: var(--serif);
  font-size: 18px;
}
.stats-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  position: relative;
  z-index: 1;
}
.stat-box {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(126,185,154,0.18);
  border-radius: 12px;
  padding: 26px 18px;
  text-align: center;
}
.stat-n {
  font-family: var(--serif);
  font-size: 42px;
  color: var(--inanga);
  line-height: 1;
  font-weight: 300;
}
.stat-l {
  font-size: 10px;
  color: rgba(244,239,230,0.55);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  margin-top: 8px;
}
@media (max-width: 900px) {
  .story { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PROCESS
   ========================================================================== */

.process { background: var(--river); }
.steps {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 32px;
  margin-top: 52px;
}
.step { text-align: center; position: relative; }
.step-num {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--dp);
  color: var(--river);
  font-family: var(--serif);
  font-size: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-weight: 300;
}
.step-t {
  font-size: 13px;
  font-weight: 600;
  color: var(--dp);
  margin-bottom: 8px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.step-d { font-size: 13px; color: #666; line-height: 1.7; font-weight: 300; }

/* ==========================================================================
   TESTIMONIALS
   ========================================================================== */

.tests {
  background: var(--whenua);
  padding: clamp(50px, 7vw, 72px) clamp(24px, 5vw, 48px);
  text-align: center;
}
.tests .sec-h2 { color: var(--river); }
.tests .sec-label { color: rgba(244,239,230,0.6); }
.tgrid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 24px;
  margin-top: 44px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.tcard {
  background: rgba(255,255,255,0.1);
  border-radius: 12px;
  padding: 26px;
  text-align: left;
}
.tstars { color: var(--inanga); font-size: 13px; letter-spacing: 3px; margin-bottom: 12px; }
.tquote {
  font-family: var(--serif);
  font-size: 17px;
  color: var(--river);
  line-height: 1.65;
  font-style: italic;
  margin-bottom: 14px;
  font-weight: 300;
}
.tauthor {
  font-size: 10px;
  color: rgba(244,239,230,0.6);
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 500;
}

/* ==========================================================================
   NEWSLETTER
   ========================================================================== */

.news {
  background: var(--river);
  padding: 64px clamp(20px, 4vw, 48px);
  text-align: center;
  border-top: 1px solid rgba(139,115,85,0.15);
}
.news-h { font-family: var(--serif); font-size: 34px; color: var(--dp); font-weight: 300; margin-bottom: 10px; }
.news-p { font-size: 14px; color: #666; margin-bottom: 28px; font-weight: 300; }
.news-form { display: flex; max-width: 440px; margin: 0 auto; gap: 8px; flex-wrap: wrap; }
.news-form input {
  flex: 1;
  min-width: 200px;
  padding: 14px 18px;
  font-size: 13px;
  border: 1px solid rgba(139,115,85,0.3);
  background: #fff;
  font-family: inherit;
  border-radius: 2px;
}
.news-form input:focus { outline: none; border-color: var(--kawa); }
.news-form button {
  background: var(--dp);
  color: var(--river);
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  border: none;
  border-radius: 2px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

footer {
  background: var(--dp);
  color: rgba(244,239,230,0.7);
  padding: 60px clamp(20px, 4vw, 48px) 32px;
}
.fgrid {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  max-width: var(--max-w);
  margin-left: auto;
  margin-right: auto;
}
.fbrand { display: flex; flex-direction: column; gap: 14px; }
.fbrand-row { display: flex; align-items: center; gap: 14px; }
.fbrand-img { height: 42px; width: auto; }
.fbrand-text-h { font-family: var(--serif); font-size: 19px; color: var(--river); letter-spacing: 0.12em; }
.fbrand-text-s { font-size: 9px; letter-spacing: 0.22em; color: var(--inanga); text-transform: uppercase; margin-top: 3px; }
.fbrand-p { font-size: 13px; line-height: 1.75; font-weight: 300; max-width: 230px; color: rgba(244,239,230,0.55); }
.fcol h4 {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--river);
  margin-bottom: 16px;
  font-weight: 500;
}
.fcol a {
  display: block;
  font-size: 13px;
  margin-bottom: 9px;
  color: rgba(244,239,230,0.55);
  transition: color 0.2s;
}
.fcol a:hover { color: var(--inanga); }
.fsocial { display: flex; gap: 14px; margin-top: 8px; }
.fsocial a { font-size: 18px; color: rgba(244,239,230,0.5); }
.fbot {
  border-top: 1px solid rgba(244,239,230,0.1);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 12px;
  color: rgba(244,239,230,0.45);
  max-width: var(--max-w);
  margin: 0 auto;
  flex-wrap: wrap;
  gap: 12px;
}
.fbot-tag { font-family: var(--serif); font-style: italic; font-size: 14px; color: rgba(244,239,230,0.4); }
@media (max-width: 900px) {
  .fgrid { grid-template-columns: 1fr 1fr; gap: 32px; }
}
@media (max-width: 600px) {
  .fgrid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   PRODUCT DETAIL PAGE
   ========================================================================== */

.pdp {
  padding: clamp(40px, 6vw, 72px) clamp(20px, 4vw, 48px);
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: clamp(30px, 5vw, 64px);
}
.pdp-img {
  aspect-ratio: 1;
  border-radius: 6px;
  overflow: hidden;
  background: var(--river);
}
.pdp-img img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info { padding: 20px 0; }
.pdp-meaning {
  font-size: 11px;
  color: var(--whenua);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 12px;
  font-weight: 500;
}
.pdp-h1 {
  font-family: var(--serif);
  font-size: clamp(32px, 4vw, 44px);
  color: var(--dp);
  font-weight: 300;
  margin-bottom: 16px;
  line-height: 1.1;
}
.pdp-price { font-size: 22px; color: var(--dp); margin-bottom: 24px; font-weight: 400; }
.pdp-desc { font-size: 15px; color: #444; line-height: 1.75; margin-bottom: 28px; font-weight: 300; }
.pdp-meta {
  border-top: 1px solid #eee;
  border-bottom: 1px solid #eee;
  padding: 20px 0;
  margin-bottom: 28px;
}
.pdp-meta-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  font-size: 13px;
  color: #555;
}
.pdp-meta-row strong { color: var(--dp); font-weight: 500; }
.pdp-buy { display: flex; gap: 10px; margin-bottom: 32px; }
.pdp-qty {
  display: flex;
  align-items: center;
  border: 1px solid #ddd;
  border-radius: 2px;
}
.pdp-qty button {
  background: transparent;
  border: none;
  width: 40px;
  height: 46px;
  font-size: 18px;
  color: var(--dp);
}
.pdp-qty input {
  width: 40px;
  text-align: center;
  border: none;
  font-size: 14px;
  font-family: inherit;
  height: 46px;
}
.pdp-add {
  flex: 1;
  background: var(--dp);
  color: var(--river);
  border: none;
  border-radius: 2px;
  padding: 14px 28px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
}
.pdp-add:hover { background: var(--kawa); }
.pdp-meaning-box {
  background: var(--river);
  border-radius: 8px;
  padding: 24px;
  border-left: 3px solid var(--inanga);
}
.pdp-meaning-box h3 {
  font-family: var(--serif);
  font-size: 20px;
  color: var(--dp);
  font-weight: 400;
  margin-bottom: 10px;
}
.pdp-meaning-box p { font-size: 13px; color: #555; line-height: 1.7; font-weight: 300; }
@media (max-width: 900px) {
  .pdp { grid-template-columns: 1fr; }
}

/* ==========================================================================
   COLLECTIONS PAGE
   ========================================================================== */

.filters {
  display: flex;
  gap: 12px;
  padding: 24px clamp(20px, 4vw, 48px);
  border-bottom: 1px solid #eee;
  overflow-x: auto;
  max-width: var(--max-w);
  margin: 0 auto;
}
.filter-chip {
  padding: 8px 18px;
  border: 1px solid #ddd;
  border-radius: 20px;
  font-size: 11px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #666;
  background: #fff;
  cursor: pointer;
  white-space: nowrap;
  font-weight: 500;
  transition: all 0.2s;
}
.filter-chip:hover { border-color: var(--kawa); color: var(--kawa); }
.filter-chip.active { background: var(--dp); color: var(--river); border-color: var(--dp); }

/* ==========================================================================
   ABOUT PAGE
   ========================================================================== */

.about-content {
  max-width: 780px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 84px) clamp(20px, 4vw, 48px);
}
.about-content h2 {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--dp);
  font-weight: 300;
  margin: 40px 0 16px;
  line-height: 1.2;
}
.about-content h2:first-child { margin-top: 0; }
.about-content p {
  font-size: 16px;
  color: #444;
  line-height: 1.85;
  margin-bottom: 20px;
  font-weight: 300;
}
.about-content em {
  color: var(--kawa);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
}
.about-content .dropcap {
  font-family: var(--serif);
  font-size: 52px;
  float: left;
  line-height: 0.9;
  margin: 8px 12px 0 0;
  color: var(--kawa);
  font-weight: 400;
}

/* ==========================================================================
   CONTACT PAGE
   ========================================================================== */

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(30px, 5vw, 64px);
  max-width: 1100px;
  margin: 0 auto;
  padding: clamp(48px, 8vw, 84px) clamp(20px, 4vw, 48px);
}
.contact-info h2 {
  font-family: var(--serif);
  font-size: 32px;
  color: var(--dp);
  font-weight: 300;
  margin-bottom: 20px;
}
.contact-info p { font-size: 15px; color: #555; line-height: 1.75; margin-bottom: 20px; font-weight: 300; }
.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
  margin-bottom: 18px;
  font-size: 14px;
  color: #444;
}
.contact-item-label {
  font-size: 10px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--whenua);
  font-weight: 500;
  margin-bottom: 4px;
}
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.contact-form label {
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--dp);
  font-weight: 500;
  margin-bottom: 6px;
}
.contact-form input,
.contact-form select,
.contact-form textarea {
  padding: 14px 16px;
  font-size: 14px;
  border: 1px solid #ddd;
  background: #fff;
  font-family: inherit;
  border-radius: 2px;
  color: #333;
}
.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus { outline: none; border-color: var(--kawa); }
.contact-form textarea { min-height: 140px; resize: vertical; }
.contact-form button {
  background: var(--dp);
  color: var(--river);
  padding: 15px 32px;
  border: none;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 600;
  border-radius: 2px;
  align-self: flex-start;
  cursor: pointer;
}
.contact-form button:hover { background: var(--kawa); }
@media (max-width: 900px) {
  .contact-grid { grid-template-columns: 1fr; }
}

/* ==========================================================================
   MEANINGS PAGE
   ========================================================================== */

.meanings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 40px;
}
.meaning-card {
  background: var(--river);
  border-radius: 10px;
  padding: 32px 26px;
  border: 1px solid rgba(139,115,85,0.12);
}
.meaning-card-te {
  font-family: var(--serif);
  font-size: 24px;
  color: var(--kawa);
  font-style: italic;
  margin-bottom: 6px;
  font-weight: 400;
}
.meaning-card-en {
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--whenua);
  text-transform: uppercase;
  margin-bottom: 16px;
  font-weight: 500;
}
.meaning-card-desc { font-size: 14px; color: #444; line-height: 1.75; font-weight: 300; }
