/* =============================================
   PARPAULINE — Terracotta Nouveau
   ============================================= */

:root {
  --burnt-orange: #C4622D;
  --clay: #D4865A;
  --eggplant: #4E2A4A;
  --taupe: #B5A99A;
  --beige: #EFE8DE;
  --cream: #FAF7F2;
  --sand: #E3D9CC;
  --dark: #1C1208;
  --mid: #5C4A3A;
  --ff-serif: 'Cormorant Garamond', Georgia, serif;
  --ff-sans: 'DM Sans', system-ui, sans-serif;
  --transition: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

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

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--ff-sans);
  background-color: var(--cream);
  color: var(--dark);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* Noise texture overlay */
body::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noise)' opacity='0.04'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9999;
  opacity: 0.4;
}

/* ---- TYPOGRAPHY ---- */

h1, h2, h3, h4 {
  font-family: var(--ff-serif);
  font-weight: 300;
  line-height: 1.1;
}

em {
  font-style: italic;
  color: var(--burnt-orange);
}

p {
  font-family: var(--ff-sans);
  font-size: 0.95rem;
  line-height: 1.75;
  color: var(--mid);
  font-weight: 300;
}

.label {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--taupe);
  margin-bottom: 1rem;
}

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

/* ---- BUTTONS ---- */

.btn {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.9rem 2.4rem;
  border: none;
  cursor: pointer;
  transition: var(--transition);
}

.btn-primary {
  background: var(--burnt-orange);
  color: var(--cream);
}
.btn-primary:hover {
  background: var(--dark);
}

.btn-secondary {
  background: transparent;
  color: var(--dark);
  border: 1px solid var(--dark);
  padding: 0.85rem 2.2rem;
}
.btn-secondary:hover {
  background: var(--dark);
  color: var(--cream);
}

/* ---- NAV ---- */

.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  transition: background 0.3s ease, padding 0.3s ease;
}

.nav.scrolled {
  background: rgba(250, 247, 242, 0.95);
  backdrop-filter: blur(12px);
  padding: 1rem 3rem;
  border-bottom: 1px solid var(--sand);
}

.nav-logo {
  font-family: var(--ff-serif);
  font-size: 1.4rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  color: var(--dark);
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.nav-logo-mark {
  width: 28px;
  height: 28px;
  object-fit: contain;
  opacity: 0.85;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.78rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--burnt-orange); }

.nav-cta {
  background: var(--burnt-orange);
  color: var(--cream) !important;
  padding: 0.55rem 1.4rem;
  font-size: 0.72rem !important;
  letter-spacing: 0.12em !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--dark) !important; color: var(--cream) !important; }

.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}
.nav-hamburger span {
  display: block;
  width: 22px;
  height: 1px;
  background: var(--dark);
  transition: var(--transition);
}

/* ---- HERO ---- */

.hero {
  height: 100svh;
  min-height: 640px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
}

.hero-left {
  background: #EDE4D3;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 2.5rem 4rem 5rem;
  position: relative;
}

.hero-left::after {
  content: '';
  position: absolute;
  top: 0; right: 0;
  width: 1px; height: 100%;
  background: linear-gradient(to bottom, transparent, var(--taupe) 50%, transparent);
  opacity: 0.4;
}

.hero-top {
  display: flex;
  align-items: center;
  gap: 0.9rem;
  margin-top: 4.5rem;
}

.hero-logo-mark {
  width: 30px;
  opacity: 0.65;
}

.hero-tagline {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 300;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--taupe);
}

.hero-bottom { padding-bottom: 0.5rem; }

.hero-title {
  font-family: var(--ff-serif);
  font-size: clamp(4rem, 8vw, 7.5rem);
  font-weight: 300;
  line-height: 0.88;
  letter-spacing: -0.02em;
  color: var(--dark);
  margin-bottom: 2.8rem;
}

.hero-par {
  color: #1A0E08 !important;
}

.hero-title em {
  display: block;
  color: var(--burnt-orange);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--dark);
  text-decoration: none;
  transition: gap 0.35s ease;
}
.hero-cta:hover { gap: 1.7rem; }

.hero-cta-line {
  display: block;
  width: 46px;
  height: 1px;
  background: var(--burnt-orange);
  flex-shrink: 0;
  transition: width 0.35s ease;
}
.hero-cta:hover .hero-cta-line { width: 70px; }

/* ---- HERO RIGHT — ROTATING PHOTO ---- */

.hero-right {
  background: var(--dark);
  position: relative;
  overflow: hidden;
}

.hero-photo {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transition: opacity 0.8s ease;
}

.hero-photo-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(28, 18, 8, 0.28) 0%,
    rgba(78, 42, 74, 0.12) 60%,
    rgba(28, 18, 8, 0.35) 100%
  );
  z-index: 1;
}


.hero-origin {
  position: absolute;
  bottom: 3rem;
  left: 2.5rem;
  font-family: var(--ff-sans);
  font-size: 0.56rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(245, 240, 232, 0.45);
  writing-mode: vertical-rl;
  z-index: 2;
}

@media (max-width: 768px) {
  .hero {
    grid-template-columns: 1fr;
    grid-template-rows: 55svh 45svh;
  }
  .hero-left { padding: 2rem 1.5rem 3rem; }
  .hero-top { margin-top: 3.5rem; }
  .hero-title { font-size: clamp(3.5rem, 14vw, 5.5rem); margin-bottom: 2rem; }
  .sun-wrap { width: 52%; }
}

/* ---- MARQUEE ---- */

.marquee-wrap {
  background: var(--burnt-orange);
  padding: 0.85rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  width: max-content;
  animation: marquee 20s linear infinite;
}

.marquee-track span {
  font-family: var(--ff-serif);
  font-size: 0.95rem;
  font-weight: 300;
  font-style: italic;
  color: rgba(250, 247, 242, 0.9);
  letter-spacing: 0.06em;
  white-space: nowrap;
  padding-right: 0;
}

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

/* ---- SECTIONS ---- */

.section {
  padding: 7rem 3rem;
  max-width: 1280px;
  margin: 0 auto;
}

.section-header {
  text-align: center;
  margin-bottom: 4rem;
}

.section-header h2 {
  font-size: clamp(2.2rem, 4vw, 3.5rem);
  color: var(--dark);
  margin-top: 0.5rem;
}

/* ---- SHOP / PRODUCTS ---- */

.shop {
  max-width: 100%;
  padding-left: 4rem;
  padding-right: 4rem;
}

.product-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2.5rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.product-card {
  display: flex;
  flex-direction: column;
  cursor: pointer;
  text-decoration: none;
  color: inherit;
}

.product-img {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  margin-bottom: 1.2rem;
  background: var(--beige);
}

.product-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

.product-card:hover .product-img img {
  transform: scale(1.04);
}

.product-img-texture {
  position: absolute;
  inset: 0;
  background: linear-gradient(145deg, rgba(255,255,255,0.12) 0%, transparent 50%, rgba(0,0,0,0.15) 100%);
  mix-blend-mode: overlay;
}

.product-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(28, 18, 8, 0);
  transition: background 0.4s ease;
}
.product-card:hover .product-img::after {
  background: rgba(28, 18, 8, 0.08);
}

.product-badge {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: var(--cream);
  color: var(--dark);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 0.7rem;
  z-index: 2;
}

.product-info h3 {
  font-family: var(--ff-serif);
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--dark);
  margin-bottom: 0.35rem;
}

.product-info p {
  font-size: 0.82rem;
  color: var(--taupe);
  margin-bottom: 0.9rem;
}

.product-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: auto;
}

.price {
  font-family: var(--ff-serif);
  font-size: 1.2rem;
  font-weight: 400;
  color: var(--dark);
}

.btn-add {
  display: inline-block;
  font-family: var(--ff-sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  background: transparent;
  border: 1px solid var(--dark);
  color: var(--dark);
  padding: 0.5rem 1rem;
  cursor: pointer;
  transition: var(--transition);
  text-decoration: none;
  white-space: nowrap;
}
.btn-add:hover {
  background: var(--dark);
  color: var(--cream);
}

/* ---- EDITORIAL STRIP ---- */

.editorial-strip {
  background: #1A0E08;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 5rem 6rem;
  overflow: hidden;
  position: relative;
  gap: 4rem;
}

.editorial-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/texture-bg.png');
  background-size: cover;
  background-position: center;
  opacity: 0.06;
  mix-blend-mode: screen;
  pointer-events: none;
}

.editorial-text {
  max-width: 520px;
  z-index: 2;
}

.editorial-text .label {
  color: var(--burnt-orange);
  opacity: 0.7;
}

.editorial-text blockquote {
  font-family: var(--ff-serif);
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  font-weight: 300;
  font-style: italic;
  color: var(--cream);
  line-height: 1.3;
  margin: 0.5rem 0 1rem;
}

.editorial-text p {
  color: rgba(250, 247, 242, 0.4);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
}

.editorial-visual {
  position: relative;
  width: 300px;
  height: 300px;
  flex-shrink: 0;
  z-index: 2;
}

.editorial-bowl {
  width: 100%;
  height: 100%;
  object-fit: contain;
  border-radius: 2px;
  opacity: 0.92;
  filter: brightness(1.08) contrast(1.05);
  drop-shadow: 0 20px 40px rgba(0,0,0,0.5);
}

/* ---- ABOUT ---- */

.about { max-width: 1100px; }

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-img-wrap {
  position: relative;
}

.about-img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  object-position: center top;
  display: block;
  position: relative;
  z-index: 2;
  filter: sepia(18%) contrast(1.08) brightness(0.97);
}

.about-img-deco {
  position: absolute;
  top: 1.5rem;
  left: 1.5rem;
  width: 100%;
  height: 100%;
  border: 1px solid var(--sand);
  z-index: 1;
}

.about-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  color: var(--dark);
  margin-bottom: 1.8rem;
  margin-top: 0.5rem;
}

.about-content p {
  margin-bottom: 1.2rem;
  font-size: 0.95rem;
}

.about-content .btn { margin-top: 1rem; }

/* ---- PROCESS MINIMAL ---- */

.process-minimal {
  border-top: 1px solid var(--sand);
  border-bottom: 1px solid var(--sand);
  padding: 2.2rem 4rem;
}

.process-minimal-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.process-minimal-inner > .label {
  margin-bottom: 0;
  flex-shrink: 0;
}

.process-minimal-steps {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  flex-wrap: wrap;
}

.process-minimal-steps span {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-weight: 300;
  font-style: italic;
  color: var(--mid);
  letter-spacing: 0.02em;
}

.process-dot {
  color: var(--burnt-orange) !important;
  font-style: normal !important;
  font-size: 0.7rem !important;
}

/* ---- CONTACT ---- */

.contact { max-width: 1100px; }

.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-copy h2 {
  font-size: clamp(2rem, 3vw, 2.6rem);
  color: var(--dark);
  margin-bottom: 1.5rem;
  margin-top: 0.5rem;
}

.contact-copy p {
  margin-bottom: 1rem;
  font-size: 0.9rem;
}

.contact-details {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid var(--sand);
}

.contact-details p {
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--taupe);
}

/* ---- FORM ---- */

.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.4rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--taupe);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--dark);
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--sand);
  padding: 0.7rem 0;
  outline: none;
  transition: border-color 0.2s;
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--burnt-orange);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: var(--taupe);
  opacity: 0.6;
}

.form-group textarea { resize: none; }

.form-group select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23B5A99A'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.5rem center;
  padding-right: 1.5rem;
  cursor: pointer;
}

.form-group select option { background: var(--cream); }

.contact-form .btn {
  align-self: flex-start;
  margin-top: 0.5rem;
}

/* ---- FOOTER ---- */

.footer {
  background: var(--dark);
  color: var(--cream);
  padding: 4rem 4rem 2rem;
}

.footer-top {
  display: flex;
  justify-content: space-between;
  gap: 4rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(250, 247, 242, 0.1);
  margin-bottom: 2rem;
}

.footer-logo {
  font-family: var(--ff-serif);
  font-size: 1.8rem;
  font-weight: 300;
  display: block;
  margin-bottom: 0.8rem;
  color: var(--cream);
}

.footer-brand p {
  color: rgba(250, 247, 242, 0.45);
  font-size: 0.82rem;
  line-height: 1.7;
}

.footer-links {
  display: flex;
  gap: 4rem;
}

.footer-col h5 {
  font-family: var(--ff-sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.35);
  margin-bottom: 1.2rem;
}

.footer-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.footer-col ul a {
  font-size: 0.85rem;
  font-weight: 300;
  color: rgba(250, 247, 242, 0.65);
  transition: color 0.2s;
}
.footer-col ul a:hover { color: var(--clay); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-bottom p {
  font-size: 0.72rem;
  color: rgba(250, 247, 242, 0.3);
  font-weight: 300;
  letter-spacing: 0.04em;
}

/* ---- SECTION SUB-HEADING ---- */

.section-sub {
  font-family: var(--ff-serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--taupe);
  margin-top: 0.5rem;
  font-weight: 300;
}

/* ---- SCARCITY LABEL ---- */

.scarcity {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--burnt-orange);
  margin-top: 0.2rem;
}

.price small {
  font-size: 0.65rem;
  font-weight: 300;
  color: var(--taupe);
  letter-spacing: 0.06em;
  margin-left: 0.1rem;
}

.sold-out-badge {
  background: var(--burnt-orange) !important;
  color: var(--cream) !important;
}

/* ---- ABOUT STAT LINE ---- */

.about-stat {
  font-size: 0.78rem !important;
  letter-spacing: 0.06em;
  color: var(--taupe) !important;
  margin-top: 1.5rem !important;
  margin-bottom: 0 !important;
  line-height: 1.5 !important;
}

.about-stat strong {
  color: var(--dark);
  font-weight: 500;
}

/* ---- TESTIMONIALS ---- */

.testimonials {
  background: var(--sand);
  padding: 6rem 4rem;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-inner > .label {
  display: block;
  margin-bottom: 3rem;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3rem;
}

.testimonial {
  border-left: 2px solid var(--burnt-orange);
  padding-left: 1.8rem;
}

.testimonial-quote {
  font-family: var(--ff-serif);
  font-size: 1.05rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--dark);
  margin-bottom: 1rem;
}

.testimonial-author {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  color: var(--taupe);
  font-weight: 400;
  text-transform: uppercase;
}

/* ---- TRUST STRIP ---- */

.trust-strip {
  background: var(--dark);
  padding: 2rem 4rem;
}

.trust-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 2.5rem;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.7rem;
  font-size: 0.72rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 242, 0.65);
}

.trust-icon {
  color: var(--burnt-orange);
  font-size: 0.55rem;
}

.trust-divider {
  width: 1px;
  height: 1.2rem;
  background: rgba(250, 247, 242, 0.15);
  flex-shrink: 0;
}

/* ---- CONTACT INSTAGRAM LINK ---- */

.contact-insta {
  display: inline-block;
  margin-top: 0.8rem;
  font-size: 0.78rem;
  color: var(--burnt-orange);
  letter-spacing: 0.04em;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.contact-insta:hover { border-bottom-color: var(--burnt-orange); }

/* ---- EMAIL CAPTURE ---- */

.email-capture {
  background: #1A0E08;
  padding: 6rem 4rem;
  position: relative;
  overflow: hidden;
}

.email-capture::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('assets/texture-bg.png');
  background-size: cover;
  opacity: 0.05;
  mix-blend-mode: screen;
  pointer-events: none;
}

.email-capture-inner {
  max-width: 900px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  position: relative;
  z-index: 2;
}

.email-capture-copy .label {
  color: var(--burnt-orange);
  opacity: 0.7;
}

.email-capture-copy h2 {
  font-size: clamp(1.8rem, 3vw, 2.6rem);
  color: var(--cream);
  margin-top: 0.4rem;
  margin-bottom: 1rem;
}

.email-capture-copy h2 em { color: var(--clay); }

.email-capture-copy p {
  color: rgba(250, 247, 242, 0.5);
  font-size: 0.9rem;
}

.email-input-wrap {
  display: flex;
  gap: 0;
  border-bottom: 1px solid rgba(250, 247, 242, 0.25);
  margin-bottom: 1rem;
}

.email-input-wrap input {
  flex: 1;
  background: transparent;
  border: none;
  outline: none;
  font-family: var(--ff-sans);
  font-size: 0.9rem;
  color: var(--cream);
  padding: 0.8rem 0;
  font-weight: 300;
}

.email-input-wrap input::placeholder {
  color: rgba(250, 247, 242, 0.3);
}

.email-input-wrap .btn {
  padding: 0.7rem 1.6rem;
  font-size: 0.68rem;
  flex-shrink: 0;
}

.email-note {
  font-size: 0.7rem !important;
  color: rgba(250, 247, 242, 0.25) !important;
  letter-spacing: 0.06em;
}

/* ---- RESPONSIVE ---- */

@media (max-width: 1024px) {
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .process-minimal { padding: 2rem 2rem; }
  .about-grid { gap: 3rem; }
  .editorial-strip { padding: 4rem 3rem; }
  .testimonials-grid { grid-template-columns: 1fr 1fr; }
  .email-capture-inner { gap: 3rem; }
}

@media (max-width: 768px) {
  .nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: fixed;
    inset: 0;
    background: var(--cream);
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    z-index: 99;
  }
  .nav-links.open a { font-size: 1.2rem; }
  .nav-hamburger { display: flex; z-index: 100; }

  .section { padding: 5rem 1.5rem; }
  .shop { padding-left: 1.5rem; padding-right: 1.5rem; }
  .process-minimal { padding: 1.8rem 1.5rem; }
  .process-minimal-inner { gap: 1.2rem; }

  .hero-title { font-size: clamp(4rem, 18vw, 7rem); }

  .product-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem 1rem; }

  .editorial-strip { flex-direction: column; padding: 4rem 2rem; gap: 3rem; }
  .editorial-visual { width: 200px; height: 200px; }

  .about-grid { grid-template-columns: 1fr; gap: 3rem; }
  .about-img-wrap { max-width: 400px; }

  .testimonials { padding: 4rem 1.5rem; }
  .testimonials-grid { grid-template-columns: 1fr; gap: 2.5rem; }

  .trust-strip { padding: 2rem 1.5rem; }
  .trust-inner { gap: 1.5rem; }
  .trust-divider { display: none; }

  .contact-inner { grid-template-columns: 1fr; gap: 3rem; }
  .form-row { grid-template-columns: 1fr; }

  .email-capture { padding: 4rem 1.5rem; }
  .email-capture-inner { grid-template-columns: 1fr; gap: 3rem; }

  .footer-top { flex-direction: column; gap: 2.5rem; }
  .footer-links { flex-wrap: wrap; gap: 2rem; }
  .footer-bottom { flex-direction: column; gap: 0.8rem; text-align: center; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; max-width: 360px; margin: 0 auto; }
  .process-steps { grid-template-columns: 1fr; }
}
