/* ============================================================
   Cozy Wraps — BLANKET STORE
   style.css — Global Stylesheet
   ============================================================ */

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

:root {
  --cream:       #FAF6EF;
  --parchment:   #F0E6D3;
  --sand:        #E2CEAE;
  --warm-tan:    #C4956A;
  --sienna:      #8B5E3C;
  --bark:        #5C3D23;
  --charcoal:    #2C2218;
  --mist:        #F7F3EC;
  --white:       #FFFFFF;
  --shadow-soft: 0 4px 24px rgba(92,61,35,0.10);
  --shadow-card: 0 8px 40px rgba(92,61,35,0.13);
  --radius-sm:   8px;
  --radius-md:   16px;
  --radius-lg:   28px;
  --transition:  0.28s cubic-bezier(0.4,0,0.2,1);
  --font-display:'Cormorant Garamond', Georgia, serif;
  --font-body:   'Jost', sans-serif;
}

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

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

body {
  font-family: var(--font-body);
  background-color: var(--cream);
  color: var(--charcoal);
  line-height: 1.7;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  overflow-x: hidden;
}

img { display: block; max-width: 100%; }
a  { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: var(--font-body); }

/* ── 2. TYPOGRAPHY ──────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 400;
  line-height: 1.2;
  color: var(--bark);
}

h1 { font-size: clamp(2.4rem, 5vw, 4rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.7rem); }
h4 { font-size: 1.1rem; }

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--warm-tan);
  display: block;
  margin-bottom: 0.5rem;
}

/* ── 3. LAYOUT HELPERS ──────────────────────────────────── */
.container {
  width: min(1220px, 94%);
  margin: 0 auto;
}

.section {
  padding: 88px 0;
}

.section--sm { padding: 60px 0; }

.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}

/* ── 4. HEADER / NAV ────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 900;
  background: rgba(250, 246, 239, 0.94);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(196,149,106,0.18);
  transition: box-shadow var(--transition);
}

.site-header.scrolled { box-shadow: var(--shadow-soft); }

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

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-icon {
  width: 38px;
  height: 38px;
}

.logo-text {
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 500;
  color: var(--bark);
  letter-spacing: 0.02em;
  line-height: 1;
}

.logo-text span {
  color: var(--warm-tan);
}

/* Main nav */
.main-nav { display: flex; align-items: center; gap: 0.25rem; }

.nav-link {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--charcoal);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
  position: relative;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 4px;
  left: 50%;
  transform: translateX(-50%) scaleX(0);
  width: calc(100% - 28px);
  height: 1.5px;
  background: var(--warm-tan);
  transition: transform var(--transition);
  transform-origin: center;
}

.nav-link:hover,
.nav-link.active {
  color: var(--sienna);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: translateX(-50%) scaleX(1);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  height: 1.5px;
  background: var(--bark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  flex-direction: column;
  background: var(--cream);
  border-top: 1px solid var(--sand);
  padding: 12px 0 20px;
  animation: slideDown 0.22s ease;
}

.mobile-nav.open { display: flex; }

.mobile-nav .nav-link {
  padding: 12px 24px;
  font-size: 0.88rem;
  border-radius: 0;
}

@keyframes slideDown {
  from { opacity: 0; transform: translateY(-8px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ── 5. FOOTER ──────────────────────────────────────────── */
.site-footer {
  background: var(--bark);
  color: var(--parchment);
  padding: 72px 0 0;
  margin-top: auto;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(240,230,211,0.15);
}

.footer-brand .logo-text { color: var(--parchment); font-size: 1.4rem; }
.footer-brand .logo-text span { color: var(--sand); }

.footer-tagline {
  font-size: 0.88rem;
  color: rgba(240,230,211,0.7);
  margin-top: 12px;
  line-height: 1.65;
  max-width: 240px;
}

.footer-social {
  display: flex;
  gap: 10px;
  margin-top: 20px;
}

.social-btn {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(240,230,211,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--parchment);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background var(--transition), border-color var(--transition), transform var(--transition);
}

.social-btn:hover {
  background: var(--warm-tan);
  border-color: var(--warm-tan);
  transform: translateY(-2px);
}

.footer-col-title {
  font-family: var(--font-body);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--sand);
  margin-bottom: 18px;
}

.footer-links { display: flex; flex-direction: column; gap: 10px; }

.footer-links a {
  font-size: 0.88rem;
  color: rgba(240,230,211,0.7);
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--parchment); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 0;
  font-size: 0.8rem;
  color: rgba(240,230,211,0.45);
  flex-wrap: wrap;
  gap: 12px;
}

.footer-bottom a { color: rgba(240,230,211,0.55); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--parchment); }

/* ── 6. BUTTONS ─────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 28px;
  border-radius: 50px;
  font-family: var(--font-body);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  transition: all var(--transition);
  cursor: pointer;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--sienna);
  color: var(--cream);
  border-color: var(--sienna);
}

.btn-primary:hover {
  background: var(--bark);
  border-color: var(--bark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,61,35,0.28);
}

.btn-outline {
  background: transparent;
  color: var(--sienna);
  border-color: var(--sienna);
}

.btn-outline:hover {
  background: var(--sienna);
  color: var(--cream);
  transform: translateY(-2px);
}

.btn-ghost {
  background: rgba(255,255,255,0.12);
  color: var(--cream);
  border-color: rgba(255,255,255,0.3);
}

.btn-ghost:hover {
  background: rgba(255,255,255,0.22);
  transform: translateY(-2px);
}

/* ── 7. PRODUCT CARDS ───────────────────────────────────── */
.products-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(270px, 1fr));
  gap: 28px;
}

.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition), box-shadow var(--transition);
  cursor: pointer;
}

.product-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-card);
}

.product-img-wrap {
  position: relative;
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--parchment);
}

.product-img-wrap svg {
  width: 100%;
  height: 100%;
  transition: transform 0.42s cubic-bezier(0.4,0,0.2,1);
}

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

.product-badge {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--sienna);
  color: var(--cream);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 50px;
}

.product-badge.new    { background: var(--warm-tan); }
.product-badge.sale   { background: #C4562A; }
.product-badge.best   { background: var(--bark); }

.product-info {
  padding: 18px 20px 20px;
}

.product-name {
  font-family: var(--font-display);
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--bark);
  margin-bottom: 6px;
}

.product-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 10px;
}

.product-price {
  font-size: 1.05rem;
  font-weight: 600;
  color: var(--sienna);
}

.product-material {
  font-size: 0.78rem;
  color: var(--warm-tan);
  letter-spacing: 0.04em;
}

/* ── 8. MODALS ──────────────────────────────────────────── */
.modal-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(44,34,24,0.55);
  backdrop-filter: blur(4px);
  z-index: 1000;
  align-items: center;
  justify-content: center;
  padding: 20px;
  animation: fadeIn 0.22s ease;
}

.modal-overlay.active { display: flex; }

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.modal-box {
  background: var(--cream);
  border-radius: var(--radius-lg);
  max-width: 820px;
  width: 100%;
  max-height: 90vh;
  overflow-y: auto;
  box-shadow: 0 24px 80px rgba(44,34,24,0.28);
  animation: modalIn 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
  position: relative;
}

@keyframes modalIn {
  from { opacity: 0; transform: scale(0.88) translateY(24px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 20px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: var(--parchment);
  color: var(--bark);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background var(--transition), transform var(--transition);
  z-index: 2;
  border: none;
  cursor: pointer;
}

.modal-close:hover {
  background: var(--sand);
  transform: rotate(90deg);
}

.modal-body {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.modal-image {
  background: var(--parchment);
  border-radius: var(--radius-lg) 0 0 var(--radius-lg);
  overflow: hidden;
  min-height: 360px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.modal-image svg { width: 100%; height: 100%; }

.modal-details {
  padding: 40px 36px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.modal-product-name {
  font-size: 1.9rem;
  font-weight: 400;
  color: var(--bark);
  line-height: 1.2;
}

.modal-product-price {
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--sienna);
}

.modal-product-desc {
  font-size: 0.9rem;
  color: #5a4836;
  line-height: 1.75;
  flex: 1;
}

.modal-product-specs {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.spec-row {
  display: flex;
  gap: 10px;
  font-size: 0.82rem;
}

.spec-label {
  color: var(--warm-tan);
  font-weight: 600;
  letter-spacing: 0.06em;
  min-width: 80px;
}

.spec-value { color: var(--charcoal); }

.modal-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-top: 8px; }

/* Order popup (small) */
.order-popup {
  max-width: 420px;
  padding: 44px 40px;
  text-align: center;
  border-radius: var(--radius-lg);
}

.order-popup-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 1.8rem;
}

.order-popup h3 {
  font-size: 1.5rem;
  margin-bottom: 10px;
}

.order-popup p {
  font-size: 0.9rem;
  color: #5a4836;
  line-height: 1.7;
  margin-bottom: 24px;
}

/* ── 9. HERO ─────────────────────────────────────────────── */
.hero {
  position: relative;
  min-height: min(92vh, 820px);
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--parchment);
}

.hero-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.hero-bg svg {
  position: absolute;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 600px;
}

.hero h1 {
  font-size: clamp(2.8rem, 5.5vw, 4.4rem);
  font-weight: 300;
  line-height: 1.1;
  margin-bottom: 22px;
  color: var(--bark);
}

.hero h1 em {
  font-style: italic;
  color: var(--warm-tan);
}

.hero-sub {
  font-size: 1.05rem;
  color: var(--sienna);
  max-width: 440px;
  margin-bottom: 36px;
  line-height: 1.75;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

/* ── 10. PAGE BANNERS ────────────────────────────────────── */
.page-banner {
  background: var(--parchment);
  padding: 72px 0 56px;
  text-align: center;
  border-bottom: 1px solid var(--sand);
  position: relative;
  overflow: hidden;
}

.page-banner::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(196,149,106,0.12) 0%, transparent 70%);
}

.page-banner .container { position: relative; }

.page-banner h1 { margin-bottom: 12px; }

.page-banner p {
  font-size: 1rem;
  color: var(--sienna);
  max-width: 480px;
  margin: 0 auto;
}

/* ── 11. SECTION HEADERS ─────────────────────────────────── */
.section-header {
  text-align: center;
  margin-bottom: 52px;
}

.section-header h2 { margin-bottom: 14px; }

.section-header p {
  font-size: 1rem;
  color: var(--sienna);
  max-width: 500px;
  margin: 0 auto;
}

/* ── 12. FEATURES / GRID CARDS ───────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 32px;
}

.feature-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 36px 28px;
  text-align: center;
  box-shadow: var(--shadow-soft);
  transition: transform var(--transition);
}

.feature-card:hover { transform: translateY(-4px); }

.feature-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 18px;
  font-size: 1.6rem;
}

.feature-card h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.feature-card p {
  font-size: 0.85rem;
  color: #5a4836;
  line-height: 1.65;
}

/* ── 13. TESTIMONIALS ────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 28px;
}

.testimonial-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 28px;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial-card::before {
  content: '\201C';
  font-family: var(--font-display);
  font-size: 5rem;
  color: var(--sand);
  position: absolute;
  top: 10px;
  left: 20px;
  line-height: 1;
}

.testimonial-text {
  font-size: 0.92rem;
  color: #5a4836;
  line-height: 1.75;
  margin-bottom: 18px;
  padding-top: 28px;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-size: 1rem;
  font-weight: 500;
  color: var(--sienna);
  flex-shrink: 0;
}

.testimonial-name {
  font-weight: 600;
  font-size: 0.88rem;
  color: var(--bark);
}

.testimonial-stars {
  color: var(--warm-tan);
  font-size: 0.75rem;
  letter-spacing: 2px;
}

/* ── 14. FILTER BAR ──────────────────────────────────────── */
.filter-bar {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter-btn {
  padding: 8px 20px;
  border-radius: 50px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border: 1.5px solid var(--sand);
  color: var(--sienna);
  background: transparent;
  transition: all var(--transition);
  cursor: pointer;
}

.filter-btn:hover,
.filter-btn.active {
  background: var(--sienna);
  border-color: var(--sienna);
  color: var(--cream);
}

/* ── 15. ABOUT PAGE ──────────────────────────────────────── */
.about-story {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

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

.about-img-main {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.about-img-accent {
  position: absolute;
  bottom: -24px;
  right: -24px;
  width: 45%;
  border-radius: var(--radius-md);
  overflow: hidden;
  box-shadow: var(--shadow-card);
  border: 6px solid var(--cream);
}

.about-text h2 { margin-bottom: 20px; }
.about-text p { font-size: 0.95rem; color: #5a4836; line-height: 1.8; margin-bottom: 16px; }

.values-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 32px;
}

.value-item { display: flex; gap: 14px; align-items: flex-start; }
.value-dot  { width: 8px; height: 8px; border-radius: 50%; background: var(--warm-tan); margin-top: 8px; flex-shrink: 0; }
.value-item h4 { margin-bottom: 4px; font-size: 0.95rem; }
.value-item p  { font-size: 0.82rem; color: #5a4836; line-height: 1.6; }

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 28px;
}

.team-card {
  background: var(--white);
  border-radius: var(--radius-md);
  padding: 32px 24px;
  text-align: center;
  box-shadow: var(--shadow-soft);
}

.team-avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--sienna);
}

.team-card h4 { margin-bottom: 4px; }
.team-card p  { font-size: 0.82rem; color: var(--warm-tan); }

/* ── 16. CONTACT PAGE ────────────────────────────────────── */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 72px;
  align-items: start;
}

.contact-info h3 { margin-bottom: 16px; }
.contact-info p  { font-size: 0.92rem; color: #5a4836; line-height: 1.75; margin-bottom: 28px; }

.contact-items { display: flex; flex-direction: column; gap: 18px; }

.contact-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}

.contact-item-icon {
  width: 42px;
  height: 42px;
  border-radius: var(--radius-sm);
  background: var(--parchment);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
}

.contact-item-text strong {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-tan);
  margin-bottom: 3px;
}

.contact-item-text span {
  font-size: 0.9rem;
  color: var(--charcoal);
}

/* Contact form */
.contact-form-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 44px 40px;
  box-shadow: var(--shadow-card);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

.form-group.full { grid-column: 1 / -1; }

.form-group label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--warm-tan);
}

.form-group input,
.form-group textarea,
.form-group select {
  padding: 12px 16px;
  border: 1.5px solid var(--sand);
  border-radius: var(--radius-sm);
  font-family: var(--font-body);
  font-size: 0.9rem;
  color: var(--charcoal);
  background: var(--cream);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--warm-tan);
  box-shadow: 0 0 0 3px rgba(196,149,106,0.15);
}

.form-group textarea { resize: vertical; min-height: 120px; }

.form-success {
  display: none;
  text-align: center;
  padding: 24px;
}

.form-success .ok-icon { font-size: 2.5rem; margin-bottom: 12px; }
.form-success h4 { margin-bottom: 8px; }
.form-success p { font-size: 0.88rem; color: #5a4836; }

/* ── 17. POLICY PAGES ────────────────────────────────────── */
.policy-content {
  max-width: 780px;
  margin: 0 auto;
}

.policy-content h2 {
  font-size: 1.5rem;
  margin: 40px 0 14px;
  color: var(--sienna);
}

.policy-content h2:first-child { margin-top: 0; }

.policy-content p,
.policy-content li {
  font-size: 0.92rem;
  color: #4a3828;
  line-height: 1.85;
  margin-bottom: 12px;
}

.policy-content ul {
  list-style: disc;
  padding-left: 22px;
  margin-bottom: 14px;
}

.policy-date {
  font-size: 0.82rem;
  color: var(--warm-tan);
  margin-bottom: 36px;
}

/* ── 18. UTILITY ─────────────────────────────────────────── */
.text-center { text-align: center; }
.mt-8  { margin-top:  8px; }
.mt-16 { margin-top: 16px; }
.mt-24 { margin-top: 24px; }
.mb-8  { margin-bottom:  8px; }

.divider {
  height: 1px;
  background: var(--sand);
  margin: 0;
  border: none;
}

/* ── 19. RESPONSIVE ──────────────────────────────────────── */
@media (max-width: 1024px) {
  .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; }
  .footer-grid > *:last-child { grid-column: 1 / -1; }
  .about-story { gap: 48px; }
  .contact-layout { gap: 48px; }
}

@media (max-width: 768px) {
  .section { padding: 64px 0; }

  .main-nav { display: none; }
  .hamburger { display: flex; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

  .footer-grid > *:first-child { grid-column: 1 / -1; }

  .modal-body { grid-template-columns: 1fr; }
  .modal-image {
    border-radius: var(--radius-lg) var(--radius-lg) 0 0;
    min-height: 220px;
  }

  .about-story { grid-template-columns: 1fr; }
  .about-img-accent { display: none; }

  .contact-layout { grid-template-columns: 1fr; }
  .form-grid { grid-template-columns: 1fr; }

  .values-grid { grid-template-columns: 1fr; }

  .hero { min-height: auto; padding: 72px 0; }
}

@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
  .products-grid { grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 18px; }
  .modal-details { padding: 28px 22px; }
  .contact-form-card { padding: 28px 20px; }
  .order-popup { padding: 32px 24px; }
  .header-inner { height: 62px; }
}
