/* ===== Neon Echo CAMP — Modern Outdoor Editorial ===== */

:root {
  --forest: #2C3A2A;
  --forest-deep: #1E2A1D;
  --rust: #B85C3A;
  --rust-deep: #8E4528;
  --moss: #6B7A5C;
  --cream: #F4EFE5;
  --cream-warm: #EDE5D3;
  --bone: #E2D9C6;
  --ink: #1A1A1A;
  --ink-soft: #3D3D3D;
  --stone: #8C887E;
  --paper: #FFFFFF;
  --line: #D7CFBC;

  --serif: 'Fraunces', 'Noto Serif TC', 'Songti TC', 'PMingLiU', serif;
  --sans: 'Manrope', 'Noto Sans TC', 'PingFang TC', 'Microsoft JhengHei', sans-serif;
  --display: 'Fraunces', 'Noto Serif TC', serif;

  --container: 1320px;
  --pad: clamp(20px, 4vw, 64px);
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--sans);
  background: var(--cream);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.6;
  font-feature-settings: "ss01", "ss02";
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

a { color: inherit; text-decoration: none; transition: opacity .25s; }
a:hover { opacity: .7; }

button { font-family: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 { font-family: var(--display); font-weight: 500; line-height: 1.05; letter-spacing: -0.02em; margin: 0; }

p { margin: 0 0 1em; }

.container { max-width: var(--container); margin: 0 auto; padding-left: var(--pad); padding-right: var(--pad); }

/* ===== TOP STRIP ===== */
.topstrip {
  background: var(--forest-deep);
  color: var(--cream);
  font-size: 12px;
  letter-spacing: 0.08em;
  padding: 8px 0;
  font-family: var(--sans);
}
.topstrip__inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}
.topstrip__left, .topstrip__right { display: flex; gap: 20px; align-items: center; }
.topstrip__item { opacity: .85; }

/* ===== HEADER / NAV ===== */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  position: sticky;
  top: 0;
  z-index: 100;
}
.nav {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 16px 0;
}
.nav__logo img { height: 44px; width: auto; }
.nav__menu {
  display: flex;
  gap: 36px;
  justify-content: center;
  list-style: none;
  margin: 0;
  padding: 0;
}
.nav__menu a {
  font-family: var(--sans);
  font-weight: 500;
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  position: relative;
  padding: 4px 0;
}
.nav__menu a::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 0; height: 1px;
  background: var(--rust);
  transition: width .3s;
}
.nav__menu a:hover { opacity: 1; }
.nav__menu a:hover::after, .nav__menu a.active::after { width: 100%; }

.nav__right { display: flex; align-items: center; gap: 16px; }
.cart-btn {
  display: flex; align-items: center; gap: 8px;
  font-family: var(--sans); font-size: 13px; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--ink);
  padding: 8px 14px;
  border: 1px solid var(--ink);
  border-radius: 100px;
  transition: all .25s;
}
.cart-btn:hover { background: var(--ink); color: var(--cream); opacity: 1; }
.cart-btn__count {
  background: var(--rust);
  color: var(--cream);
  border-radius: 100px;
  padding: 2px 8px;
  font-size: 11px;
  min-width: 22px;
  text-align: center;
}
.nav__toggle { display: none; }

/* ===== HERO — Split editorial ===== */
.hero {
  padding: clamp(40px, 6vw, 80px) 0 clamp(60px, 8vw, 120px);
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(32px, 5vw, 72px);
  align-items: end;
}
.hero__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.hero__eyebrow::before {
  content: '';
  width: 32px; height: 1px; background: var(--rust);
}
.hero__title {
  font-size: clamp(48px, 8vw, 116px);
  font-weight: 400;
  line-height: 0.95;
  letter-spacing: -0.035em;
  margin-bottom: 36px;
}
.hero__title em {
  font-style: italic;
  font-weight: 300;
  color: var(--rust);
}
.hero__lead {
  font-family: var(--sans);
  font-size: clamp(15px, 1.5vw, 17px);
  line-height: 1.6;
  color: var(--ink-soft);
  max-width: 480px;
  margin-bottom: 40px;
}
.hero__cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}
.hero__meta {
  display: flex;
  gap: 40px;
  margin-top: 64px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.hero__meta strong { color: var(--ink); font-weight: 600; }

.hero__img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 4px;
}
.hero__img img {
  width: 100%; height: 100%;
  object-fit: cover;
}
.hero__img-tag {
  position: absolute;
  bottom: 20px; left: 20px;
  background: var(--cream);
  color: var(--ink);
  padding: 8px 14px;
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

/* ===== BUTTONS ===== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 16px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all .25s;
  border: 1px solid transparent;
}
.btn--dark { background: var(--ink); color: var(--cream); }
.btn--dark:hover { background: var(--rust); opacity: 1; }
.btn--rust { background: var(--rust); color: var(--cream); }
.btn--rust:hover { background: var(--rust-deep); opacity: 1; }
.btn--ghost { background: transparent; color: var(--ink); border-color: var(--ink); }
.btn--ghost:hover { background: var(--ink); color: var(--cream); opacity: 1; }
.btn--block { width: 100%; }
.btn--lg { padding: 20px 36px; font-size: 14px; }

/* ===== SECTION ===== */
.section { padding: clamp(60px, 9vw, 120px) 0; }
.section--paper { background: var(--paper); }
.section--forest { background: var(--forest); color: var(--cream); }
.section--bone { background: var(--bone); }
.section--cream-warm { background: var(--cream-warm); }

.section-head {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: end;
  gap: 32px;
  margin-bottom: clamp(40px, 6vw, 72px);
  padding-bottom: 24px;
  border-bottom: 1px solid var(--line);
}
.section-head__num {
  font-family: var(--display);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.1em;
  color: var(--rust);
}
.section-head__title {
  font-size: clamp(32px, 4.5vw, 64px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.025em;
}
.section-head__title em { font-style: italic; font-weight: 300; }
.section-head__action {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  display: flex;
  align-items: center;
  gap: 8px;
}
.section--forest .section-head { border-color: rgba(255,255,255,.15); }
.section--forest .section-head__num { color: var(--bone); }

/* ===== CATEGORIES ===== */
.cats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.cat {
  position: relative;
  aspect-ratio: 3/4;
  overflow: hidden;
  border-radius: 2px;
  cursor: pointer;
}
.cat img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s;
}
.cat:hover img { transform: scale(1.04); opacity: 1; }
.cat__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(28,30,25,0.65) 0%, transparent 50%);
  display: flex;
  align-items: flex-end;
  padding: 24px;
}
.cat__label {
  color: var(--cream);
}
.cat__label-num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.25em;
  opacity: .7;
  margin-bottom: 6px;
}
.cat__label-name {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: -0.02em;
}

/* ===== PRODUCT GRID ===== */
.products {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(24px, 3vw, 48px) clamp(16px, 2vw, 32px);
}
.product {
  display: block;
  cursor: pointer;
  transition: transform .3s;
}
.product:hover { opacity: 1; }
.product:hover .product__img img { transform: scale(1.04); }
.product__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone);
  position: relative;
  border-radius: 2px;
  margin-bottom: 16px;
}
.product__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .6s ease;
}
.product__badge {
  position: absolute;
  top: 12px; left: 12px;
  background: var(--rust);
  color: var(--cream);
  padding: 4px 10px;
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  font-weight: 600;
}
.product__num {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  color: var(--stone);
  margin-bottom: 4px;
}
.product__cat {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}
.product__name {
  font-family: var(--display);
  font-size: 19px;
  font-weight: 500;
  line-height: 1.2;
  letter-spacing: -0.015em;
  margin-bottom: 8px;
}
.product__row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-top: 6px;
}
.product__price {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  letter-spacing: -0.01em;
}
.product__price--old {
  text-decoration: line-through;
  color: var(--stone);
  margin-right: 8px;
  font-weight: 400;
  font-size: 14px;
}
.product__quickadd {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--ink);
  border-bottom: 1px solid var(--ink);
  padding-bottom: 2px;
  transition: color .2s;
}
.product__quickadd:hover { color: var(--rust); border-color: var(--rust); }

/* ===== BRAND STORY (Split editorial) ===== */
.story {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 96px);
  align-items: center;
}
.story__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  border-radius: 2px;
}
.story__img img { width: 100%; height: 100%; object-fit: cover; }
.story__eyebrow {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 24px;
}
.story__title {
  font-size: clamp(36px, 5vw, 60px);
  font-weight: 400;
  line-height: 1.05;
  margin-bottom: 28px;
}
.story__title em { font-style: italic; }
.story__text {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 16px;
}
.story__signature {
  font-family: var(--display);
  font-style: italic;
  font-size: 18px;
  margin-top: 32px;
  color: var(--ink);
}

/* ===== EDITORIAL CTA (Lifestyle band) ===== */
.lifestyle-band {
  position: relative;
  aspect-ratio: 16/7;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}
.lifestyle-band img { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.lifestyle-band::after { content: ''; position: absolute; inset: 0; background: rgba(0,0,0,.4); }
.lifestyle-band__inner { position: relative; z-index: 2; color: var(--cream); padding: 32px; }
.lifestyle-band__quote {
  font-family: var(--display);
  font-style: italic;
  font-size: clamp(28px, 4vw, 52px);
  font-weight: 300;
  line-height: 1.15;
  max-width: 900px;
  margin: 0 auto 20px;
}
.lifestyle-band__cite {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  opacity: .85;
}

/* ===== FOOTER — 橫向資訊條 ===== */
.site-footer {
  background: var(--forest-deep);
  color: var(--cream);
  padding: 64px 0 24px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.12);
}
.footer-brand h3 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: -0.02em;
  margin-bottom: 16px;
  color: var(--cream);
}
.footer-brand p {
  font-family: var(--sans);
  font-size: 14px;
  opacity: .75;
  line-height: 1.65;
  max-width: 340px;
}
.footer-col h4 {
  font-family: var(--sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--bone);
  margin-bottom: 20px;
}
.footer-col ul { list-style: none; padding: 0; margin: 0; }
.footer-col li { margin-bottom: 10px; }
.footer-col a {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--cream);
  opacity: .8;
}
.footer-col p {
  font-family: var(--sans);
  font-size: 14px;
  opacity: .8;
  line-height: 1.7;
  margin-bottom: 8px;
}
.footer-bottom {
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--sans);
  font-size: 12px;
  opacity: .65;
  letter-spacing: 0.05em;
  flex-wrap: wrap;
  gap: 12px;
}

/* ===== PAGE HEAD ===== */
.page-head {
  padding: clamp(48px, 6vw, 100px) 0 clamp(36px, 5vw, 60px);
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.page-head__crumb {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}
.page-head__title {
  font-size: clamp(40px, 6vw, 84px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.03em;
  margin-bottom: 16px;
}
.page-head__title em { font-style: italic; }
.page-head__lead {
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.7;
  color: var(--ink-soft);
  max-width: 640px;
}

/* ===== FILTER ===== */
.filter-row {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}
.filter-chip {
  font-family: var(--sans);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 10px 18px;
  border: 1px solid var(--line);
  border-radius: 100px;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  transition: all .2s;
}
.filter-chip:hover { border-color: var(--ink); }
.filter-chip.active { background: var(--ink); color: var(--cream); border-color: var(--ink); }

/* ===== PRODUCT DETAIL ===== */
.pdp {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: clamp(40px, 6vw, 80px);
  align-items: start;
}
.pdp__gallery {
  position: sticky;
  top: 120px;
}
.pdp__img {
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--bone);
  border-radius: 2px;
}
.pdp__img img { width: 100%; height: 100%; object-fit: cover; }
.pdp__thumbs {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}
.pdp__thumb {
  aspect-ratio: 1;
  overflow: hidden;
  background: var(--bone);
  cursor: pointer;
  opacity: .6;
  border: 1px solid transparent;
}
.pdp__thumb.active { opacity: 1; border-color: var(--ink); }
.pdp__thumb img { width: 100%; height: 100%; object-fit: cover; }

.pdp__cat {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 16px;
}
.pdp__title {
  font-size: clamp(32px, 4.5vw, 52px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -0.025em;
  margin-bottom: 24px;
}
.pdp__price {
  font-family: var(--display);
  font-size: 28px;
  margin-bottom: 32px;
  font-weight: 500;
}
.pdp__price-old {
  text-decoration: line-through;
  color: var(--stone);
  font-size: 18px;
  margin-right: 12px;
  font-weight: 400;
}
.pdp__desc {
  font-family: var(--sans);
  font-size: 15px;
  line-height: 1.75;
  color: var(--ink-soft);
  margin-bottom: 32px;
  padding-bottom: 32px;
  border-bottom: 1px solid var(--line);
}
.pdp__spec {
  margin-bottom: 32px;
}
.pdp__spec h4 {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 12px;
}
.pdp__spec ul {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  line-height: 1.85;
}
.pdp__spec li {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 16px;
  padding: 6px 0;
  border-bottom: 1px dotted var(--line);
}
.pdp__spec li span:first-child { color: var(--stone); font-size: 12px; letter-spacing: 0.1em; text-transform: uppercase; }
.pdp__qty-row {
  display: flex;
  gap: 12px;
  align-items: stretch;
  margin-bottom: 16px;
}
.pdp__qty {
  display: flex;
  align-items: center;
  border: 1px solid var(--ink);
  border-radius: 100px;
  overflow: hidden;
}
.pdp__qty button {
  width: 44px; height: 52px;
  font-size: 18px;
  background: transparent;
}
.pdp__qty input {
  width: 50px;
  text-align: center;
  border: none;
  background: transparent;
  font-family: var(--display);
  font-size: 17px;
  outline: none;
}
.pdp__share {
  margin-top: 24px;
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--stone);
}

/* ===== CART ===== */
.cart-wrap { display: grid; grid-template-columns: 1.5fr 1fr; gap: clamp(32px, 5vw, 64px); align-items: start; }
.cart-list {
  background: var(--paper);
  border: 1px solid var(--line);
}
.cart-item {
  display: grid;
  grid-template-columns: 100px 1fr auto auto;
  gap: 20px;
  align-items: center;
  padding: 20px;
  border-bottom: 1px solid var(--line);
}
.cart-item:last-child { border-bottom: none; }
.cart-item__img {
  width: 100px; height: 110px;
  background: var(--bone);
  overflow: hidden;
  border-radius: 2px;
}
.cart-item__img img { width: 100%; height: 100%; object-fit: cover; }
.cart-item__name {
  font-family: var(--display);
  font-size: 16px;
  font-weight: 500;
  margin-bottom: 4px;
  line-height: 1.25;
}
.cart-item__cat {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 6px;
}
.cart-item__price {
  font-family: var(--display);
  font-size: 14px;
  color: var(--ink-soft);
}
.cart-item__qty {
  display: inline-flex;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 100px;
}
.cart-item__qty button { width: 32px; height: 36px; font-size: 14px; }
.cart-item__qty input { width: 36px; text-align: center; border: none; background: transparent; font-family: var(--display); font-size: 14px; }
.cart-item__sub {
  font-family: var(--display);
  font-size: 17px;
  font-weight: 500;
  text-align: right;
  min-width: 110px;
}
.cart-item__remove {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--stone);
  margin-top: 6px;
  display: inline-block;
}
.cart-item__remove:hover { color: var(--rust); }

/* Mini variant used in checkout summary */
.cart-item--mini {
  grid-template-columns: 64px 1fr auto;
  padding: 12px 0;
}
.cart-item--mini .cart-item__img { width: 64px; height: 64px; }
.cart-item--mini .cart-item__name { font-size: 14px; margin: 2px 0 0; }
.cart-item--mini .cart-item__cat { font-size: 11px; margin: 0; }
.cart-item--mini .cart-item__sub { font-size: 14px; }

.cart-summary {
  background: var(--bone);
  padding: 32px;
  border-radius: 2px;
  position: sticky;
  top: 120px;
}
.cart-summary h3 {
  font-family: var(--display);
  font-size: 22px;
  margin-bottom: 24px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}
.cart-summary__row {
  display: flex;
  justify-content: space-between;
  margin-bottom: 12px;
  font-size: 14px;
}
.cart-summary__row--total {
  margin-top: 20px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
}
.cart-empty {
  background: var(--paper);
  padding: 80px 32px;
  text-align: center;
  border: 1px solid var(--line);
}
.cart-empty h3 { font-size: 28px; margin-bottom: 12px; font-family: var(--display); }
.cart-empty p { color: var(--ink-soft); margin-bottom: 32px; }

/* ===== FORMS ===== */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.form-field { display: flex; flex-direction: column; gap: 6px; }
.form-field--full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ink-soft);
}
.form-field input,
.form-field select,
.form-field textarea {
  padding: 14px 16px;
  background: var(--paper);
  border: 1px solid var(--line);
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink);
  border-radius: 2px;
  outline: none;
  transition: border .2s;
}
.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus { border-color: var(--ink); }
.form-section {
  background: var(--paper);
  padding: 32px;
  margin-bottom: 24px;
  border-radius: 2px;
  border: 1px solid var(--line);
}
.form-section h3 {
  font-family: var(--display);
  font-size: 20px;
  margin-bottom: 6px;
}
.form-section .meta {
  font-family: var(--sans);
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rust);
  margin-bottom: 20px;
}

/* ===== ABOUT / POLICY ===== */
.prose {
  max-width: 760px;
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.85;
  color: var(--ink-soft);
}
.prose h2 {
  font-family: var(--display);
  font-size: 32px;
  font-weight: 400;
  color: var(--ink);
  margin: 48px 0 16px;
  letter-spacing: -0.02em;
}
.prose h3 {
  font-family: var(--display);
  font-size: 22px;
  font-weight: 500;
  color: var(--ink);
  margin: 32px 0 12px;
}
.prose p { margin-bottom: 18px; }
.prose ul { padding-left: 24px; margin: 16px 0 24px; }
.prose li { margin-bottom: 8px; }
.prose strong { color: var(--ink); }

/* ===== VALUE BAND (about) ===== */
.values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
}
.value {
  border-top: 2px solid var(--rust);
  padding-top: 24px;
}
.value__num {
  font-family: var(--display);
  font-size: 12px;
  letter-spacing: 0.2em;
  color: var(--rust);
  margin-bottom: 12px;
}
.value h3 {
  font-family: var(--display);
  font-size: 24px;
  font-weight: 500;
  margin-bottom: 12px;
  letter-spacing: -0.02em;
}
.value p {
  font-family: var(--sans);
  font-size: 14px;
  color: var(--ink-soft);
  line-height: 1.7;
}

/* ===== CONTACT CARD ===== */
.contact-wrap {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: start;
}
.contact-card {
  padding: 40px;
  background: var(--cream-warm);
  border-radius: 2px;
}
.contact-card h3 {
  font-family: var(--display);
  font-size: 26px;
  margin-bottom: 24px;
  letter-spacing: -0.02em;
}
.contact-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
  font-size: 14px;
}
.contact-item:last-of-type { border-bottom: none; }
.contact-item dt {
  font-family: var(--sans);
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rust);
  font-weight: 600;
}
.contact-item dd { margin: 0; font-family: var(--sans); }

/* ===== ORDER CONFIRMATION ===== */
.order-confirm {
  text-align: center;
  padding: 80px 24px;
  background: var(--paper);
  border: 1px solid var(--line);
}
.order-confirm__mark {
  width: 64px; height: 64px;
  border: 2px solid var(--rust);
  border-radius: 100px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--rust);
  margin-bottom: 24px;
}
.order-confirm h2 {
  font-family: var(--display);
  font-size: 40px;
  font-weight: 400;
  margin-bottom: 16px;
  letter-spacing: -0.02em;
}
.order-confirm p { color: var(--ink-soft); margin-bottom: 12px; max-width: 480px; margin-left: auto; margin-right: auto; }
.order-confirm__no {
  font-family: var(--display);
  font-size: 14px;
  letter-spacing: 0.15em;
  background: var(--cream);
  padding: 12px 20px;
  border-radius: 100px;
  display: inline-block;
  margin: 16px 0 32px;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero__grid { grid-template-columns: 1fr; }
  .hero__img { aspect-ratio: 4/3; max-width: 100%; }
  .cats { grid-template-columns: repeat(2, 1fr); }
  .products { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .story { grid-template-columns: 1fr; }
  .pdp { grid-template-columns: 1fr; }
  .pdp__gallery { position: static; }
  .cart-wrap { grid-template-columns: 1fr; }
  .cart-summary { position: static; }
  .contact-wrap { grid-template-columns: 1fr; }
  .values { grid-template-columns: 1fr; gap: 24px; }
  .form-grid { grid-template-columns: 1fr; }
}

@media (max-width: 720px) {
  :root { --pad: 18px; }
  .topstrip { font-size: 11px; }
  .topstrip__inner { justify-content: center; flex-wrap: wrap; }
  .topstrip__item:nth-child(2) { display: none; }
  
  .nav { grid-template-columns: auto auto; padding: 14px 0; }
  .nav__logo img { height: 38px; }
  .nav__menu { display: none; }
  .nav__menu.open {
    display: flex;
    position: absolute;
    top: 100%; left: 0; right: 0;
    flex-direction: column;
    background: var(--cream);
    padding: 24px var(--pad);
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
    gap: 20px;
    box-shadow: 0 12px 24px rgba(0,0,0,.08);
  }
  .nav__menu a { font-size: 14px; letter-spacing: 0.15em; padding: 6px 0; }
  .nav__right { gap: 10px; }
  .nav__toggle {
    display: flex;
    width: 40px; height: 40px;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    gap: 5px;
  }
  .nav__toggle span { display: block; width: 22px; height: 1.5px; background: var(--ink); transition: all .25s; }
  .nav__toggle.active span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
  .nav__toggle.active span:nth-child(2) { opacity: 0; }
  .nav__toggle.active span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }
  .cart-btn { padding: 8px 12px; font-size: 12px; }
  
  .hero { padding: 32px 0 56px; }
  .hero__title { font-size: clamp(40px, 11vw, 64px); }
  .hero__meta { gap: 20px; flex-wrap: wrap; }
  .hero__meta > div { min-width: 45%; }
  
  .cats { grid-template-columns: 1fr; gap: 12px; }
  .cat { aspect-ratio: 16/10; }
  
  .products { grid-template-columns: 1fr; gap: 32px; }
  
  .section-head { grid-template-columns: 1fr; gap: 16px; align-items: start; }
  .section-head__action { justify-self: start; }
  
  .footer-grid { grid-template-columns: 1fr; gap: 32px; padding-bottom: 32px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; }
  
  .cart-item:not(.cart-item--mini) { grid-template-columns: 80px 1fr; gap: 16px; }
  .cart-item:not(.cart-item--mini) .cart-item__sub,
  .cart-item:not(.cart-item--mini) .cart-item__qty { grid-column: 1 / -1; }
  .cart-item:not(.cart-item--mini) .cart-item__qty { justify-self: start; }
  .cart-item:not(.cart-item--mini) .cart-item__sub { text-align: left; }
  
  .pdp__qty-row { flex-direction: column; }
  .pdp__qty { align-self: flex-start; }
  
  .lifestyle-band { aspect-ratio: 4/5; }
}

/* Subtle reveal */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}
.reveal { animation: fadeUp .8s ease both; }
.reveal-d1 { animation-delay: .08s; }
.reveal-d2 { animation-delay: .16s; }
.reveal-d3 { animation-delay: .24s; }
