/*
 * Modern Yogi — Component Library
 * Ported from HTML design concepts.
 * All components use --my-* design tokens.
 */

/* ─────────────────────────────────────────────
   ANNOUNCEMENT BAR (util bar)
───────────────────────────────────────────── */
.my-util-bar {
  background: var(--my-black);
  color: var(--my-white);
  text-align: center;
  padding: 7px 16px;
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
}
.my-util-bar a {
  color: rgba(255,255,255,.7);
  text-decoration: underline;
}
.my-util-bar a:hover {
  color: var(--my-white);
}

/* ─────────────────────────────────────────────
   PRIMARY NAV
───────────────────────────────────────────── */
.my-primary-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  background: var(--my-white);
  border-bottom: 2px solid var(--my-black);
}

.my-pnav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: var(--my-nav-h);
  padding: 0 var(--my-gutter);
}

/* Logo */
.my-pnav-logo {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  line-height: 1;
  color: var(--my-black);
}
.my-pnav-logo .m { color: var(--my-lime); }
.my-pnav-logo .y { color: var(--my-teal); }
.my-pnav-logo:hover { opacity: .85; }

/* Centre links */
.my-pnav-links {
  display: flex;
  align-items: center;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
}

.my-pnav-link {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--my-black);
  padding: 0 22px;
  height: var(--my-nav-h);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--my-g200);
  transition: background var(--my-t-fast);
}
.my-pnav-link:first-child { border-left: 1px solid var(--my-g200); }
.my-pnav-link:hover       { background: var(--my-g100); color: var(--my-black); }
.my-pnav-link.current-menu-item,
.my-pnav-link.active {
  background: var(--my-black);
  color: var(--my-white);
}

/* Right actions */
.my-pnav-actions {
  display: flex;
  align-items: center;
}

.my-pnav-action {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .04em;
  color: var(--my-g600);
  padding: 0 16px;
  height: var(--my-nav-h);
  display: flex;
  align-items: center;
  border-left: 1px solid var(--my-g200);
  transition: color var(--my-t-fast);
}
.my-pnav-action:hover { color: var(--my-black); }

.my-pnav-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .10em;
  text-transform: uppercase;
  color: var(--my-white);
  background: var(--my-teal);
  padding: 0 22px;
  height: var(--my-nav-h);
  display: flex;
  align-items: center;
  border-left: 1px solid var(--my-g200);
  transition: background var(--my-t-fast);
}
.my-pnav-cta:hover { background: var(--my-teal-deep); color: var(--my-white); }

/* Cart button */
.my-pnav-cart {
  position: relative;
  display: flex;
  align-items: center;
  padding: 0 18px;
  height: var(--my-nav-h);
  border-left: 1px solid var(--my-g200);
  cursor: pointer;
  transition: background var(--my-t-fast);
}
.my-pnav-cart:hover { background: var(--my-g100); }
.my-pnav-cart svg  { width: 18px; height: 18px; }

.my-cart-count {
  position: absolute;
  top: 10px;
  right: 10px;
  background: var(--my-teal);
  color: var(--my-white);
  font-size: 9px;
  font-weight: 700;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  line-height: 1;
}
.my-cart-count:empty { display: none; }

/* Hamburger (mobile) */
.my-pnav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 16px;
  border-left: 1px solid var(--my-g200);
  background: none;
  border-top: none;
  border-bottom: none;
  border-right: none;
}
.my-pnav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--my-black);
  transition: all var(--my-t-med);
}

/* ─────────────────────────────────────────────
   SECONDARY (PAGE) NAV
───────────────────────────────────────────── */
.my-secondary-nav {
  position: sticky;
  top: var(--my-nav-h);
  z-index: 190;
  background: var(--my-white);
  border-bottom: 1px solid var(--my-g200);
  display: flex;
  overflow-x: auto;
  scrollbar-width: none;
}
.my-secondary-nav::-webkit-scrollbar { display: none; }

.my-snav-link {
  flex-shrink: 0;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .06em;
  text-transform: uppercase;
  color: var(--my-black);
  padding: 0 20px;
  height: var(--my-snav-h);
  display: flex;
  align-items: center;
  border-right: 1px solid var(--my-g200);
  white-space: nowrap;
  transition: background var(--my-t-fast);
  cursor: pointer;
}
.my-snav-link:hover  { background: var(--my-g100); color: var(--my-black); }
.my-snav-link.active { background: var(--my-black); color: var(--my-white); }

/* ─────────────────────────────────────────────
   TICKER / MARQUEE
───────────────────────────────────────────── */
.my-ticker {
  overflow: hidden;
  height: 36px;
  display: flex;
  align-items: center;
  border-bottom: 1px solid var(--my-black);
  background: var(--my-black);
}
.my-ticker-inner {
  display: flex;
  white-space: nowrap;
  animation: my-ticker 44s linear infinite;
}
.my-ticker-item {
  font-size: 10px;
  font-weight: 400;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--my-white);
  padding: 0 32px;
  border-right: 1px solid #333;
}
@keyframes my-ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ─────────────────────────────────────────────
   BUTTONS
───────────────────────────────────────────── */
.my-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--my-font);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  padding: 13px 32px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background var(--my-t-fast), color var(--my-t-fast), border-color var(--my-t-fast);
  text-decoration: none;
  line-height: 1;
}

.my-btn--teal {
  background: var(--my-teal);
  color: var(--my-white);
  border-color: var(--my-teal);
}
.my-btn--teal:hover {
  background: var(--my-teal-deep);
  border-color: var(--my-teal-deep);
  color: var(--my-white);
}

.my-btn--black {
  background: var(--my-black);
  color: var(--my-white);
  border-color: var(--my-black);
}
.my-btn--black:hover {
  background: var(--my-g800);
  color: var(--my-white);
}

.my-btn--outline {
  background: transparent;
  color: var(--my-black);
  border-color: var(--my-black);
}
.my-btn--outline:hover {
  background: var(--my-g100);
  color: var(--my-black);
}

.my-btn--outline-teal {
  background: transparent;
  color: var(--my-teal);
  border-color: var(--my-teal);
  padding: 12px 32px;
}
.my-btn--outline-teal:hover {
  background: var(--my-teal-wash);
  color: var(--my-teal);
}

/* ─────────────────────────────────────────────
   SECTION HEADER (sec-hd)
───────────────────────────────────────────── */
.my-sec-hd {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--my-g200);
}
.my-sec-hd-title {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .10em;
  text-transform: uppercase;
}
.my-sec-hd-sub {
  font-size: 11px;
  color: var(--my-g400);
}
.my-sec-hd-action {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--my-g600);
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.my-sec-hd-action::after { content: '→'; }
.my-sec-hd-action:hover  { color: var(--my-black); }

/* ─────────────────────────────────────────────
   PRODUCT CARD GRID
───────────────────────────────────────────── */
.my-card-grid {
  display: grid;
  border-bottom: 1px solid var(--my-black);
}
.my-card-grid--2 { grid-template-columns: 1fr 1fr; }
.my-card-grid--3 { grid-template-columns: 1fr 1fr 1fr; }
.my-card-grid--4 { grid-template-columns: 1fr 1fr 1fr 1fr; }

.my-prod-card {
  border-right: 1px solid var(--my-g200);
  border-bottom: 1px solid var(--my-g200);
  display: flex;
  flex-direction: column;
}
.my-prod-card:last-child { border-right: none; }

.my-prod-card-img {
  aspect-ratio: 1 / 1;
  overflow: hidden;
  background: var(--my-g100);
  border-bottom: 1px solid var(--my-g200);
  position: relative;
}
.my-prod-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s cubic-bezier(.25,.46,.45,.94);
}
.my-prod-card:hover .my-prod-card-img img {
  transform: scale(1.04);
}

.my-prod-card-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  padding: 4px 10px;
  color: var(--my-white);
  background: var(--my-black);
}
.my-prod-card-badge--teal { background: var(--my-teal); }
.my-prod-card-badge--lime { background: var(--my-lime); }

.my-prod-card-body {
  padding: 20px 20px 16px;
  display: flex;
  flex-direction: column;
  flex: 1;
}
.my-prod-card-sub {
  font-size: 11px;
  color: var(--my-g400);
  letter-spacing: .04em;
  margin-bottom: 6px;
}
.my-prod-card-title {
  font-size: 14px;
  font-weight: 600;
  letter-spacing: -.01em;
  margin-bottom: 10px;
}
.my-prod-card-desc {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--my-g600);
  flex: 1;
  margin-bottom: 16px;
}
.my-prod-card-price {
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.my-prod-card-price span {
  font-size: 11px;
  font-weight: 300;
  color: var(--my-g400);
  margin-left: 6px;
}
.my-prod-card-cta {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--my-teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border-top: 1px solid var(--my-g200);
  padding-top: 12px;
  margin-top: auto;
  transition: color var(--my-t-fast);
}
.my-prod-card-cta:hover { color: var(--my-teal-deep); }

/* Colour swatches on card */
.my-prod-card-swatches {
  display: flex;
  gap: 5px;
  margin-bottom: 12px;
  flex-wrap: wrap;
}
.my-swatch {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  border: 2px solid transparent;
  outline: 1px solid var(--my-g200);
  cursor: pointer;
  transition: outline-color var(--my-t-fast), border-color var(--my-t-fast);
}
.my-swatch.active,
.my-swatch:hover {
  outline-color: var(--my-black);
  border-color: var(--my-white);
}
.my-swatch--more {
  font-size: 9px;
  font-weight: 700;
  color: var(--my-g400);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  border: 1px solid var(--my-g200);
  background: var(--my-g100);
  width: 18px;
  height: 18px;
}

/* ─────────────────────────────────────────────
   SPLIT LAYOUT
───────────────────────────────────────────── */
.my-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--my-black);
  min-height: 520px;
}
.my-split--flip { direction: rtl; }
.my-split--flip > * { direction: ltr; }

.my-split-img {
  position: relative;
  overflow: hidden;
  background: var(--my-g100);
  border-right: 1px solid var(--my-black);
}
.my-split--flip .my-split-img {
  border-right: none;
  border-left: 1px solid var(--my-black);
}
.my-split-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}

.my-split-copy {
  padding: 64px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.my-split-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--my-g400);
  margin-bottom: 14px;
}
.my-split-h {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.my-split-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--my-g600);
  max-width: 360px;
  margin-bottom: 28px;
}
.my-split-price {
  font-size: 16px;
  font-weight: 600;
  margin-bottom: 24px;
}
.my-split-price span {
  font-size: 12px;
  font-weight: 300;
  color: var(--my-g400);
  margin-left: 8px;
}

/* Spec table inside splits */
.my-spec-table {
  margin: 16px 0 28px;
  border-top: 1px solid var(--my-g200);
}
.my-spec-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--my-g200);
  font-size: 12px;
}
.my-spec-k { color: var(--my-g400); }
.my-spec-v { font-weight: 500; }

/* ─────────────────────────────────────────────
   FEATURES STRIP
───────────────────────────────────────────── */
.my-features {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid var(--my-g200);
}
.my-feat {
  padding: 36px 28px;
  border-right: 1px solid var(--my-g200);
}
.my-feat:last-child { border-right: none; }
.my-feat-num {
  font-size: clamp(28px, 4vw, 48px);
  font-weight: 700;
  letter-spacing: -.03em;
  line-height: 1;
  margin-bottom: 8px;
}
.my-feat-num--teal { color: var(--my-teal); }
.my-feat-label {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.my-feat-body {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--my-g600);
}

/* ─────────────────────────────────────────────
   HERO
───────────────────────────────────────────── */
.my-hero {
  position: relative;
  overflow: hidden;
  border-bottom: 2px solid var(--my-black);
  min-height: 80vh;
  display: flex;
  align-items: flex-end;
}
.my-hero-bg {
  position: absolute;
  inset: 0;
  background: var(--my-g100);
}
.my-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}
.my-hero-content {
  position: relative;
  z-index: 2;
  padding: 64px var(--my-gutter);
  max-width: 680px;
}
.my-hero-h1 {
  font-size: clamp(52px, 10vw, 120px);
  font-weight: 700;
  line-height: .92;
  letter-spacing: -.04em;
  color: var(--my-white);
  margin-bottom: 24px;
  text-shadow: 0 2px 20px rgba(0,0,0,.25);
}
.my-hero-sub {
  font-size: 14px;
  font-weight: 300;
  line-height: 1.75;
  color: rgba(255,255,255,.85);
  max-width: 380px;
  margin-bottom: 32px;
}
.my-hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

/* Dark overlay on hero */
.my-hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.55) 0%, rgba(0,0,0,.15) 60%, transparent 100%);
  z-index: 1;
}

/* ─────────────────────────────────────────────
   PHOTO STRIP
───────────────────────────────────────────── */
.my-photo-strip {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  height: 420px;
  border-bottom: 1px solid var(--my-black);
  overflow: hidden;
}
.my-ph {
  overflow: hidden;
  border-right: 1px solid var(--my-black);
  position: relative;
}
.my-ph:last-child { border-right: none; }
.my-ph img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.my-ph:hover img { transform: scale(1.04); }

/* ─────────────────────────────────────────────
   CAMPAIGN GRID
───────────────────────────────────────────── */
.my-campaign-grid {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  border-bottom: 1px solid var(--my-g200);
}
.my-camp-tile {
  position: relative;
  overflow: hidden;
  border-right: 1px solid var(--my-g200);
  aspect-ratio: 3 / 4;
}
.my-camp-tile:last-child { border-right: none; }
.my-camp-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .7s ease;
}
.my-camp-tile:hover img { transform: scale(1.05); }
.my-camp-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,.6) 0%, transparent 60%);
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 28px;
}
.my-camp-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: rgba(255,255,255,.7);
  margin-bottom: 8px;
}
.my-camp-title {
  font-size: clamp(18px, 2.2vw, 28px);
  font-weight: 700;
  color: var(--my-white);
  line-height: 1.1;
  margin-bottom: 14px;
}
.my-camp-link {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: var(--my-white);
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

/* ─────────────────────────────────────────────
   CTA BANNER
───────────────────────────────────────────── */
.my-cta-banner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-bottom: 1px solid var(--my-black);
  min-height: 400px;
}
.my-cta-img {
  overflow: hidden;
  background: var(--my-g100);
  border-right: 1px solid var(--my-black);
  position: relative;
}
.my-cta-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  position: absolute;
  inset: 0;
}
.my-cta-copy {
  padding: 72px 56px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: var(--my-g100);
}
.my-cta-eyebrow {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: var(--my-g400);
  margin-bottom: 14px;
}
.my-cta-h {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -.02em;
  margin-bottom: 18px;
}
.my-cta-body {
  font-size: 13px;
  font-weight: 300;
  line-height: 1.85;
  color: var(--my-g600);
  max-width: 300px;
  margin-bottom: 32px;
}

/* ─────────────────────────────────────────────
   SUTRA / QUOTE BLOCK
───────────────────────────────────────────── */
.my-sutra {
  background: var(--my-black);
  padding: 72px 48px;
  text-align: center;
  border-bottom: 1px solid var(--my-g200);
}
.my-sutra-quote {
  font-size: clamp(22px, 3.5vw, 44px);
  font-weight: 300;
  font-style: italic;
  line-height: 1.4;
  color: var(--my-white);
  max-width: 720px;
  margin: 0 auto 20px;
}
.my-sutra-attr {
  font-size: 11px;
  font-weight: 400;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--my-teal);
}

/* ─────────────────────────────────────────────
   FOOTER
───────────────────────────────────────────── */
.my-site-footer {
  background: var(--my-black);
}

.my-footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  border-bottom: 1px solid #1e1e1e;
}

.my-f-col {
  padding: 44px var(--my-gutter);
  border-right: 1px solid #1e1e1e;
}
.my-f-col:last-child { border-right: none; }

.my-f-logo {
  font-size: 18px;
  font-weight: 700;
  letter-spacing: .04em;
  text-transform: uppercase;
  margin-bottom: 4px;
  color: var(--my-white);
}
.my-f-logo .m { color: var(--my-lime); }
.my-f-logo .y { color: var(--my-teal); }

.my-f-sub {
  font-size: 9px;
  font-weight: 400;
  letter-spacing: .20em;
  text-transform: uppercase;
  color: #444;
  margin-bottom: 16px;
}
.my-f-tagline {
  font-size: 12px;
  font-weight: 300;
  line-height: 1.75;
  color: #666;
  max-width: 220px;
}

.my-f-head {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: #555;
  padding-bottom: 10px;
  border-bottom: 1px solid #1e1e1e;
  margin-bottom: 14px;
}

.my-f-col ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.my-f-col ul a {
  font-size: 12px;
  font-weight: 300;
  color: #777;
  transition: color var(--my-t-fast);
}
.my-f-col ul a:hover { color: var(--my-white); }

.my-footer-bot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px var(--my-gutter);
}
.my-f-copy {
  font-size: 10px;
  font-weight: 300;
  letter-spacing: .06em;
  color: #3a3a3a;
}
.my-f-socials {
  display: flex;
}
.my-f-socials a {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: #4a4a4a;
  padding: 0 14px;
  border-left: 1px solid #1e1e1e;
  transition: color var(--my-t-fast);
}
.my-f-socials a:first-child {
  border-left: none;
  padding-left: 0;
}
.my-f-socials a:hover { color: var(--my-white); }

/* ─────────────────────────────────────────────
   MODAL
───────────────────────────────────────────── */
.my-overlay {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(0,0,0,.5);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity var(--my-t-med);
}
.my-overlay.open {
  opacity: 1;
  pointer-events: all;
}
.my-modal {
  background: var(--my-white);
  width: 100%;
  max-width: 520px;
  max-height: 92vh;
  overflow-y: auto;
  border: 1px solid var(--my-black);
  transform: translateY(16px);
  transition: transform var(--my-t-med);
}
.my-overlay.open .my-modal { transform: none; }

.my-modal-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 24px;
  border-bottom: 1px solid var(--my-g200);
}
.my-modal-title {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
}
.my-modal-close {
  background: none;
  border: none;
  font-size: 22px;
  cursor: pointer;
  line-height: 1;
  color: var(--my-black);
  padding: 0;
}
.my-modal-body { padding: 24px; }

/* Form fields */
.my-field { margin-bottom: 16px; }
.my-field label {
  display: block;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.my-field input,
.my-field select,
.my-field textarea {
  width: 100%;
  border: 1px solid var(--my-g200);
  padding: 9px 11px;
  font-family: var(--my-font);
  font-size: 13px;
  font-weight: 300;
  background: var(--my-white);
  color: var(--my-black);
  outline: none;
  transition: border-color var(--my-t-fast);
  border-radius: 0;
  -webkit-appearance: none;
}
.my-field input:focus,
.my-field select:focus,
.my-field textarea:focus { border-color: var(--my-black); }
.my-field textarea { height: 80px; resize: none; }

.my-f-row { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

.my-modal-submit {
  width: 100%;
  background: var(--my-teal);
  color: var(--my-white);
  border: none;
  padding: 13px;
  font-family: var(--my-font);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background var(--my-t-fast);
}
.my-modal-submit:hover { background: var(--my-teal-deep); }
.my-modal-foot {
  font-size: 10px;
  font-weight: 300;
  color: var(--my-g400);
  text-align: center;
  margin-top: 10px;
  letter-spacing: .06em;
}

/* ─────────────────────────────────────────────
   STORY / EDITORIAL COMPONENTS
───────────────────────────────────────────── */
.my-story-block {
  max-width: 780px;
  margin: 0 auto;
  padding: var(--my-section-v) 48px;
  border-bottom: 1px solid var(--my-g200);
}
.my-story-block--full {
  max-width: 100%;
  padding: var(--my-section-v) 80px;
}
.my-story-eyebrow {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--my-teal);
  margin-bottom: 20px;
}
.my-story-h {
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -.02em;
  margin-bottom: 24px;
}
.my-story-body {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.95;
  color: var(--my-g600);
}
.my-story-body p { margin-bottom: 20px; }
.my-story-body p:last-child { margin-bottom: 0; }

/* ─────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────── */
@media (max-width: 1100px) {
  .my-pnav-links    { position: static; transform: none; }
  .my-pnav-action   { display: none; }

  .my-card-grid--4  { grid-template-columns: 1fr 1fr; }
  .my-card-grid--3  { grid-template-columns: 1fr 1fr; }

  .my-split         { grid-template-columns: 1fr; }
  .my-split--flip   { direction: ltr; }
  .my-split-img     { min-height: 56vw; border-right: none !important; border-left: none !important; border-bottom: 1px solid var(--my-black); }
  .my-split-copy    { padding: 48px 36px; }

  .my-features      { grid-template-columns: 1fr 1fr; }
  .my-feat:nth-child(2)  { border-right: none; }
  .my-feat:nth-child(3),
  .my-feat:nth-child(4)  { border-top: 1px solid var(--my-g200); }

  .my-cta-banner    { grid-template-columns: 1fr; }
  .my-cta-img       { min-height: 320px; border-right: none; border-bottom: 1px solid var(--my-black); }
  .my-cta-copy      { padding: 48px 36px; }

  .my-footer-top    { grid-template-columns: 1fr 1fr; }
  .my-campaign-grid { grid-template-columns: 1fr 1fr; }
  .my-camp-tile:last-child { display: none; }
  .my-story-block--full { padding: 64px 36px; }
}

@media (max-width: 720px) {
  .my-pnav-links    { display: none; }
  .my-pnav-hamburger { display: flex; }

  .my-card-grid--2,
  .my-card-grid--3,
  .my-card-grid--4  { grid-template-columns: 1fr; }
  .my-prod-card     { border-right: none !important; }

  .my-campaign-grid { grid-template-columns: 1fr; }
  .my-camp-tile:nth-child(n+2) { display: none; }

  .my-photo-strip   { height: 60vw; grid-template-columns: 1fr; }
  .my-ph:nth-child(n+2) { display: none; }

  .my-features      { grid-template-columns: 1fr 1fr; }
  .my-footer-top    { grid-template-columns: 1fr 1fr; }
  .my-f-col         { padding: 28px 16px; }
  .my-footer-bot    { flex-direction: column; gap: 10px; padding: 14px 16px; }
  .my-f-row         { grid-template-columns: 1fr; gap: 0; }
  .my-modal-body    { padding: 18px; }
  .my-story-block   { padding: 48px 24px; }
  .my-hero-content  { padding: 40px 24px; }
}
