/* =========================================================
   Sada T-Shirts — Stylesheet
   Aesthetic: clean, minimal, editorial apparel basics brand
   ========================================================= */

:root {
  --bg: #ffffff;
  --bg-alt: #f6f5f2;
  --bg-dark: #0a0a0a;
  --text: #0a0a0a;
  --text-muted: #6b6b6b;
  --line: #e5e5e5;
  --line-strong: #d4d4d4;
  --accent: #0a0a0a;

  --font-display: "Archivo", "Helvetica Neue", Helvetica, Arial, sans-serif;
  --font-body: "Inter", "Helvetica Neue", Helvetica, Arial, sans-serif;

  --max-width: 1280px;
  --gutter: 24px;
  --radius: 0px;

  --transition: 220ms cubic-bezier(0.2, 0.6, 0.2, 1);
}

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

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

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

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

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

.container {
  width: 100%;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1;
  margin: 0;
}

h1 {
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  letter-spacing: -0.03em;
}

h3 {
  font-size: 1.15rem;
  font-weight: 600;
  letter-spacing: -0.01em;
}

p { margin: 0 0 1rem; }

.eyebrow {
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin: 0 0 1.25rem;
}

.eyebrow-light { color: rgba(255,255,255,0.6); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 14px 24px;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1px solid var(--text);
  cursor: pointer;
  transition: background var(--transition), color var(--transition), transform var(--transition);
  white-space: nowrap;
}

.btn-sm { padding: 10px 18px; font-size: 0.78rem; }

.btn-dark {
  background: var(--text);
  color: #fff;
}
.btn-dark:hover { background: #2a2a2a; }

.btn-outline {
  background: transparent;
  color: var(--text);
}
.btn-outline:hover { background: var(--text); color: #fff; }

.btn-light {
  background: #fff;
  color: var(--text);
  border-color: #fff;
}
.btn-light:hover { background: transparent; color: #fff; border-color: #fff; }

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: #fff;
}
.btn-outline-light:hover { background: #fff; color: var(--text); }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(140%) blur(8px);
  -webkit-backdrop-filter: saturate(140%) blur(8px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  gap: 1.5rem;
}

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: 0.04em;
  font-size: 0.95rem;
  text-decoration: none;
  flex-shrink: 0;
}

.logo-pill {
  display: inline-flex;
  align-items: center;
  height: 48px !important;
  flex-shrink: 0;
  transition: transform var(--transition);
}
.logo-pill img {
  height: 48px !important;
  width: auto !important;
  max-width: 160px !important;
  display: block;
  object-fit: contain;
}
.logo:hover .logo-pill { transform: scale(1.02); }

.logo-pill-sm {
  height: 38px !important;
}
.logo-pill-sm img { height: 38px !important; max-width: 130px !important; }

.logo-thin {
  font-weight: 500;
  color: var(--text-muted);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  white-space: nowrap;
}

.nav {
  display: flex;
  gap: 2.25rem;
  font-size: 0.88rem;
  font-weight: 500;
}

.nav a {
  position: relative;
  padding: 4px 0;
  color: var(--text);
  transition: color var(--transition);
}
.nav a::after {
  content: "";
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 1px;
  background: var(--text);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}
.nav a:hover::after { transform: scaleX(1); }

.header-actions { display: flex; align-items: center; gap: 12px; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  width: 40px; height: 40px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  cursor: pointer;
}
.menu-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  background: var(--text);
  transition: transform var(--transition), opacity var(--transition);
}
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  padding: clamp(40px, 7vw, 96px) 0 clamp(40px, 6vw, 80px);
  border-bottom: 1px solid var(--line);
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(24px, 5vw, 80px);
  align-items: center;
}

.hero-copy h1 { margin: 0 0 1.5rem; }

.hero-heading {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 0;
  margin: 0 0 1.5rem;
  line-height: 1;
  width: 100%;
}
.hero-logo {
  display: block;
  width: 130%;
  max-width: 900px;
  height: auto;
  margin: 0 0 0 -180px;
}
.hero-heading-text {
  display: block;
  margin-top: 1.5rem;
  font-family: var(--font-display);
  font-size: clamp(3.2rem, 9vw, 7rem);
  font-weight: 800;
  letter-spacing: -0.04em;
  line-height: 1;
}

.lede {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-muted);
  max-width: 460px;
  line-height: 1.5;
  margin-bottom: 2rem;
}

.hero-ctas { display: flex; flex-wrap: wrap; gap: 12px; }

.hero-image { position: relative; }

.hero-photo {
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  display: block;
}

.hero-tag {
  position: absolute;
  top: 16px; left: 16px;
  background: var(--bg);
  color: var(--text);
  padding: 8px 14px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border: 1px solid var(--line);
}

/* ---------- Image Placeholders ---------- */
.image-placeholder {
  position: relative;
  width: 100%;
  background: var(--bg-alt);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  color: var(--text-muted);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.78rem;
  overflow: hidden;
  border: 1px solid var(--line);
}
.image-placeholder small {
  display: block;
  margin-top: 6px;
  font-family: var(--font-body);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: none;
  color: #9a9a9a;
}
.image-placeholder::before,
.image-placeholder::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.image-placeholder::before {
  background:
    linear-gradient(135deg, transparent calc(50% - 0.5px), var(--line-strong) 50%, transparent calc(50% + 0.5px)),
    linear-gradient(45deg, transparent calc(50% - 0.5px), var(--line-strong) 50%, transparent calc(50% + 0.5px));
  opacity: 0.5;
}
.image-placeholder span,
.image-placeholder small { position: relative; z-index: 1; background: var(--bg-alt); padding: 2px 8px; }

.hero-placeholder { aspect-ratio: 4/5; }
.product-placeholder { aspect-ratio: 1/1; }
.about-placeholder { aspect-ratio: 5/6; }

/* ---------- Marquee ---------- */
.marquee {
  border-bottom: 1px solid var(--line);
  background: var(--bg);
  overflow: hidden;
  padding: 22px 0;
}
.marquee-track {
  display: flex;
  gap: 2.5rem;
  white-space: nowrap;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.1rem;
  letter-spacing: -0.01em;
  text-transform: uppercase;
  animation: marquee 28s linear infinite;
  width: max-content;
}
.marquee-track span:nth-child(even) { color: var(--text-muted); font-weight: 400; }

@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ---------- Sections ---------- */
.section {
  padding: clamp(64px, 10vw, 128px) 0;
  border-bottom: 1px solid var(--line);
}

.section-alt { background: var(--bg-alt); }

.section-head {
  max-width: 720px;
  margin: 0 0 clamp(40px, 6vw, 64px);
}

.section-head h2 { margin-bottom: 1rem; }

.section-sub {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 520px;
}

/* ---------- Products ---------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  justify-content: center;
}

.product-card {
  background: #fff;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  transition: transform var(--transition), border-color var(--transition);
}
.product-card:hover {
  transform: translateY(-4px);
  border-color: var(--text);
}
.product-card .image-placeholder { border: none; border-bottom: 1px solid var(--line); }

.product-photo {
  width: 100%;
  aspect-ratio: 1/1;
  object-fit: cover;
  display: block;
  border-bottom: 1px solid var(--line);
  background-color: #f0eee9;
}

.about-photo {
  width: 100%;
  aspect-ratio: 5/6;
  object-fit: cover;
  display: block;
  background-color: #f0eee9;
}

.product-body {
  padding: 20px 22px 24px;
}
.product-body h3 { margin: 0 0 10px; }
.product-body p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.92rem;
  line-height: 1.55;
}

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(32px, 6vw, 80px);
  align-items: center;
}

.about-copy h2 { margin-bottom: 1.5rem; }
.about-copy p { color: var(--text-muted); max-width: 540px; font-size: 1rem; }

.about-points {
  list-style: none;
  padding: 0;
  margin: 2rem 0 0;
  border-top: 1px solid var(--line-strong);
}
.about-points li {
  padding: 16px 0;
  border-bottom: 1px solid var(--line-strong);
  font-size: 0.95rem;
  color: var(--text-muted);
}
.about-points li strong {
  display: inline-block;
  min-width: 140px;
  color: var(--text);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.about-since {
  margin: 18px 0 0;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.8rem, 3.2vw, 2.8rem);
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--text);
  text-align: center;
}

/* ---------- Animated Shirt (About) ---------- */
.shirt-glow {
  width: 100%;
  max-width: 460px;
  margin: 0 auto;
}
.shirt-svg {
  width: 100%;
  height: auto;
  display: block;
  overflow: visible;
}

/* faint base outline so the shirt edge always reads */
.shirt-outline-base {
  fill: none;
  stroke: rgba(0, 0, 0, 0.12);
  stroke-width: 3;
}

/* the moving light segment — shared geometry */
.shirt-light {
  fill: none;
  stroke: url(#rgbGrad);
  /* dash: short bright visible segment, big gap = rest of the ~3100 perimeter */
  stroke-dasharray: 150 2960;
  stroke-linecap: round;
  animation: shirtSweep 3s linear infinite;
}
.shirt-light-core {
  stroke-width: 5;
}
.shirt-light-glow {
  stroke-width: 9;
  opacity: 0.85;
}

@keyframes shirtSweep {
  from { stroke-dashoffset: 3110; }
  to   { stroke-dashoffset: 0; }
}

@media (prefers-reduced-motion: reduce) {
  .shirt-light { animation: none; opacity: 0; }
  .shirt-outline-base { stroke: rgba(0,0,0,0.2); }
}

/* ---------- Wholesale CTA Strip ---------- */
.wholesale-strip {
  background: var(--bg-alt, #f5f3ef);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding: clamp(32px, 5vw, 56px) 0;
}
.wholesale-strip-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  flex-wrap: wrap;
}
.wholesale-strip-copy { flex: 1 1 360px; }
.wholesale-strip-copy h3 {
  margin: 8px 0 6px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(1.4rem, 2.2vw, 1.9rem);
  letter-spacing: -0.02em;
  line-height: 1.15;
}
.wholesale-strip-copy p {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.98rem;
  max-width: 520px;
}
.wholesale-strip .btn { flex: 0 0 auto; }

/* ---------- Colors ---------- */
.color-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 28px 20px;
}

.color-card {
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.swatch {
  width: 100%;
  aspect-ratio: 1/1;
  border-radius: 50%;
  display: block;
  transition: transform var(--transition);
  box-shadow: 0 1px 2px rgba(0,0,0,0.04);
}

.swatch-photo {
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.color-card:hover .swatch { transform: scale(1.06); }

.color-card p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* ---------- Where to Buy (dark) ---------- */
.section-dark {
  background: var(--bg-dark);
  color: #fff;
  border-bottom: none;
}

.where-inner {
  max-width: 800px;
  text-align: center;
  margin: 0 auto;
}
.where-inner h2 { margin-bottom: 1.25rem; }
.where-text {
  color: rgba(255,255,255,0.7);
  font-size: 1.1rem;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.where-ctas {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
}

.where-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 4rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(255,255,255,0.15);
  text-align: left;
}
.where-meta span {
  display: block;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 8px;
}
.where-meta p {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
}

.where-link {
  color: #fff;
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.4);
  padding-bottom: 2px;
  transition: border-color var(--transition);
}
.where-link:hover { border-bottom-color: #fff; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: clamp(32px, 6vw, 80px);
}

.contact-head h2 { margin-bottom: 1rem; }
.contact-head p { color: var(--text-muted); max-width: 380px; }

.contact-info {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.contact-block {
  border-top: 1px solid var(--text);
  padding-top: 20px;
}
.contact-label {
  display: block;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-block p {
  margin: 0 0 6px;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.contact-link {
  color: var(--text);
  border-bottom: 1px solid var(--text);
  padding-bottom: 2px;
}
.contact-link:hover { opacity: 0.7; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--bg);
  padding: 40px 0 32px;
  border-top: 1px solid var(--line);
}

.footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: 0.08em;
  font-size: 0.85rem;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1.75rem;
  font-size: 0.85rem;
  color: var(--text-muted);
}
.footer-nav a:hover { color: var(--text); }

.footer-copy {
  margin: 0;
  color: var(--text-muted);
  font-size: 0.8rem;
  width: 100%;
  padding-top: 24px;
  border-top: 1px solid var(--line);
  margin-top: 8px;
}

/* ---------- Wholesale Form ---------- */
.wholesale-wrap { max-width: 760px; margin: 0 auto; }

.wholesale-head { margin-bottom: 4rem; }
.wholesale-title {
  font-size: clamp(2.4rem, 5vw, 3.6rem);
  margin: 0 0 1.25rem;
}
.wholesale-intro {
  color: var(--text-muted);
  font-size: 1.05rem;
  max-width: 580px;
  line-height: 1.6;
}

.wholesale-form { display: block; }

.form-section-title {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text);
  margin: 3.5rem 0 1.75rem;
  padding-bottom: 14px;
  border-bottom: 1px solid var(--line-strong);
}
.form-section-title:first-of-type { margin-top: 0; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-bottom: 24px;
}
.form-row-3 { grid-template-columns: 2fr 1fr 1fr; }

.form-field { display: flex; flex-direction: column; margin-bottom: 24px; }
.form-row .form-field { margin-bottom: 0; }

.form-field label {
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 10px;
}

.required { color: #b91c1c; margin-left: 2px; }

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  padding: 14px 16px;
  font-family: var(--font-body);
  font-size: 0.95rem;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--line-strong);
  border-radius: 0;
  transition: border-color var(--transition);
  -webkit-appearance: none;
  appearance: none;
  box-sizing: border-box;
}
.form-field input::placeholder,
.form-field textarea::placeholder {
  color: #aaa;
  font-style: normal;
}
.form-field select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath fill='%230a0a0a' d='M6 8L0 0h12z'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
  cursor: pointer;
}
.form-field textarea { resize: vertical; min-height: 120px; line-height: 1.5; }

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--text);
}

.form-help {
  color: var(--text-muted);
  font-size: 0.92rem;
  margin: -12px 0 20px;
  line-height: 1.5;
}

/* File upload styling */
.form-field input[type="file"] {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
.file-label {
  display: flex !important;
  align-items: center;
  gap: 16px;
  cursor: pointer;
  padding: 0 !important;
  text-transform: none !important;
  letter-spacing: 0 !important;
  font-family: var(--font-body) !important;
  font-size: 0.95rem !important;
  font-weight: 400 !important;
  margin-bottom: 0 !important;
  color: var(--text-muted);
}
.file-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  font-family: var(--font-display);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text);
  background: #fff;
  border: 1px solid var(--text);
  transition: background var(--transition), color var(--transition);
  flex-shrink: 0;
}
.file-label:hover .file-button { background: var(--text); color: #fff; }
.file-name {
  color: var(--text-muted);
  font-size: 0.9rem;
  word-break: break-all;
}

.form-submit {
  margin-top: 4rem;
  padding-top: 2.5rem;
  border-top: 1px solid var(--line-strong);
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 1rem;
}
.form-submit .btn { padding: 18px 42px; font-size: 0.88rem; }
.form-note {
  color: var(--text-muted);
  font-size: 0.85rem;
  margin: 0;
}

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 700ms ease, transform 700ms cubic-bezier(0.2, 0.6, 0.2, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .color-grid { grid-template-columns: repeat(4, 1fr); }
  .hero-grid { gap: 40px; }
}

@media (max-width: 820px) {
  .nav {
    position: absolute;
    top: 72px; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--line);
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 8px var(--gutter) 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform var(--transition), opacity var(--transition);
  }
  .nav.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav a {
    width: 100%;
    padding: 14px 0;
    border-bottom: 1px solid var(--line);
    font-size: 1rem;
  }
  .nav a:last-child { border-bottom: none; }

  .menu-toggle { display: inline-flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero-copy {
    display: flex;
    flex-direction: column;
    text-align: center;
    align-items: center;
    order: 1;
  }
  .hero-image {
    order: 2;
    margin-top: 0;
  }
  .hero-copy .eyebrow { text-align: center; }
  .hero-copy .lede {
    margin-left: auto;
    margin-right: auto;
    text-align: center;
  }
  .hero-ctas {
    justify-content: center;
    align-items: center;
    width: 100%;
  }
  .hero-heading {
    align-items: center;
    text-align: center;
  }
  .hero-heading-text { text-align: center; }
  .hero-logo {
    width: 100%;
    max-width: 460px;
    margin: 0 auto;
  }
  .hero-placeholder { aspect-ratio: 1/1; }

  .about-grid { grid-template-columns: 1fr; }
  .about-image { max-width: 420px; }

  /* Show the full About image on mobile — no zoom/crop */
  .about-photo {
    aspect-ratio: auto !important;
    height: auto !important;
    object-fit: contain;
  }

  .contact-grid { grid-template-columns: 1fr; }
  .contact-info { grid-template-columns: 1fr; gap: 12px; }
  .contact-block { padding-top: 16px; }

  .where-meta { grid-template-columns: 1fr; gap: 18px; text-align: center; }

  .wholesale-strip {
    padding: 28px 0;
  }
  .wholesale-strip-inner {
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    gap: 14px;
  }
  .wholesale-strip-copy {
    flex: 0 0 auto;
    width: 100%;
  }
  .wholesale-strip-copy h3 { font-size: 1.35rem; }
  .wholesale-strip-copy p { font-size: 0.95rem; }
  .wholesale-strip .btn { width: 100%; text-align: center; }
}

/* --- Product layout on phones: 2-column grid, NO carousel --- */
@media (max-width: 700px) {
  .product-grid {
    grid-template-columns: 1fr 1fr;
    gap: 14px;
  }

  .product-card {
    flex-direction: column-reverse;
  }

  /* Image is below text, so divider goes on TOP of image */
  .product-card .product-photo,
  .product-card .image-placeholder {
    border-bottom: none;
    border-top: 1px solid var(--line);
  }

  /* Force square product images on mobile */
  .product-photo {
    aspect-ratio: 1 / 1 !important;
    height: auto !important;
    width: 100% !important;
    object-fit: cover;
  }
  .product-placeholder { aspect-ratio: 1/1; }

  /* Names only — hide descriptions on mobile */
  .product-body {
    padding: 12px 14px;
  }
  .product-body h3 {
    font-size: 0.95rem;
    margin: 0;
  }
  .product-body p {
    display: none;
  }
}

@media (max-width: 560px) {
  :root { --gutter: 18px; }
  .color-grid { grid-template-columns: repeat(3, 1fr); gap: 14px; }
  .hero-ctas .btn { width: 100%; }
  .header-actions .btn-sm { display: none; }
  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
  }
  .footer-brand { margin-bottom: 0; }

  .form-row,
  .form-row-3 { grid-template-columns: 1fr; gap: 0; }
  .form-row .form-field { margin-bottom: 20px; }
  .file-label { flex-direction: column; align-items: flex-start; }
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}
