/* =========================================================
   Chammica's Apparel — Navy & Grey theme
   ========================================================= */

:root {
  --navy-900: #0b1a36;
  --navy-800: #0f2347;
  --navy-700: #142c58;
  --navy-600: #1e3c75;
  --navy-500: #2a4e94;
  --navy-100: #e7ebf3;

  --grey-50:  #f6f7f9;
  --grey-100: #eceef2;
  --grey-200: #dde0e6;
  --grey-300: #c3c7d0;
  --grey-400: #9aa0ad;
  --grey-500: #6f7585;
  --grey-600: #4a5161;
  --grey-700: #2f3542;
  --grey-900: #141821;

  --white:   #ffffff;
  --cream:   #f4eee4;
  --gold:    #c8a86a;

  --shadow-sm: 0 2px 8px rgba(11, 26, 54, 0.06);
  --shadow-md: 0 10px 30px rgba(11, 26, 54, 0.08);
  --shadow-lg: 0 24px 60px rgba(11, 26, 54, 0.18);

  --radius-sm: 8px;
  --radius-md: 14px;
  --radius-lg: 22px;
  --radius-xl: 32px;

  --ease: cubic-bezier(.22,.9,.3,1);

  --font-serif: "Playfair Display", Georgia, serif;
  --font-sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

/* -------- Reset -------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--white);
  background: var(--grey-700);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; padding: 0; margin: 0; }
button { font: inherit; cursor: pointer; border: none; background: none; }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  color: var(--white);
  font-weight: 600;
  line-height: 1.15;
  margin: 0 0 0.5em;
  letter-spacing: -0.01em;
}
h1 em, h2 em, h3 em { font-style: italic; color: var(--grey-200); font-weight: 500; }

p { margin: 0 0 1em; }

.container {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
}

.eyebrow {
  display: inline-block;
  font-size: 12px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
  position: relative;
  padding-left: 28px;
}
.eyebrow::before {
  content: "";
  position: absolute;
  left: 0; top: 50%;
  width: 20px; height: 1.5px;
  background: var(--white);
}
.eyebrow.light { color: var(--cream); }
.eyebrow.light::before { background: var(--cream); }

/* -------- Announcement -------- */
.announcement {
  background: var(--navy-900);
  color: var(--grey-100);
  text-align: center;
  padding: 10px 20px;
  font-size: 12.5px;
  letter-spacing: 0.08em;
}
.announcement p { margin: 0; }

/* -------- NAV -------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.92);
  backdrop-filter: saturate(180%) blur(16px);
  -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--grey-100);
  transition: box-shadow .3s var(--ease), background .3s var(--ease);
}
.navbar.scrolled { box-shadow: var(--shadow-sm); background: rgba(255,255,255,0.98); }

.nav-inner {
  max-width: 1240px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 600;
  color: var(--navy-900);
}
.brand-mark {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--navy-900);
  color: var(--cream);
  font-family: var(--font-serif);
  font-size: 20px;
  border-radius: 50%;
  letter-spacing: 0;
}
.brand-text {
  font-family: var(--font-serif);
  font-size: 20px;
  letter-spacing: -0.01em;
}
.brand-text em { font-style: italic; color: var(--navy-500); font-weight: 500; }

.nav-links {
  margin-left: auto;
}
.nav-links ul {
  display: flex;
  align-items: center;
  gap: 6px;
}
.nav-links a {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--grey-700);
  border-radius: 999px;
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-links a:hover { color: var(--navy-800); background: var(--grey-50); }
.nav-links .caret { transition: transform .25s var(--ease); }

.btn-nav {
  background: var(--navy-500) !important;
  color: var(--white) !important;
  padding: 11px 22px !important;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.3);
}
.btn-nav:hover { background: var(--navy-600) !important; transform: translateY(-1px); }

/* Dropdown */
.has-dropdown { position: relative; }
.dropdown {
  position: absolute;
  top: calc(100% + 10px);
  left: 50%;
  transform: translateX(-50%) translateY(8px);
  min-width: 320px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  padding: 14px;
  box-shadow: var(--shadow-lg);
  display: grid;
  gap: 4px;
  opacity: 0;
  visibility: hidden;
  transition: all .25s var(--ease);
}
.dropdown::before {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%) rotate(45deg);
  width: 12px; height: 12px;
  background: var(--white);
  border-top: 1px solid var(--grey-100);
  border-left: 1px solid var(--grey-100);
}
.has-dropdown:hover .dropdown,
.has-dropdown:focus-within .dropdown {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.has-dropdown:hover > a .caret { transform: rotate(180deg); }

.dropdown a {
  display: flex !important;
  align-items: center;
  gap: 14px;
  padding: 12px 14px !important;
  border-radius: var(--radius-sm) !important;
  transition: background .2s var(--ease);
}
.dropdown a:hover { background: var(--grey-50); }
.dd-icon {
  width: 40px; height: 40px;
  display: grid; place-items: center;
  background: var(--navy-100);
  border-radius: 10px;
  color: var(--navy-700);
  flex: none;
}
.dropdown strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy-900);
  font-weight: 600;
}
.dropdown small {
  font-size: 12.5px;
  color: var(--grey-500);
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 10px;
}
.menu-toggle span {
  width: 22px; height: 2px;
  background: var(--navy-900);
  transition: transform .25s var(--ease), opacity .25s var(--ease);
}
.menu-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle.open span:nth-child(2) { opacity: 0; }
.menu-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* -------- BUTTONS -------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-size: 14.5px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .3s var(--ease);
  cursor: pointer;
  white-space: nowrap;
}
.btn-primary {
  background: var(--navy-500);
  color: var(--white);
  box-shadow: 0 10px 24px rgba(0,0,0,.35);
}
.btn-primary:hover { background: var(--navy-600); transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.45); }
.btn-ghost {
  background: transparent;
  color: var(--white);
  border: 1.5px solid var(--white);
}
.btn-ghost:hover { background: var(--white); color: var(--navy-900); }
.btn-block { width: 100%; }

/* -------- HERO -------- */
.hero {
  position: relative;
  padding: 72px 0 48px;
  overflow: hidden;
  background: linear-gradient(180deg, var(--grey-900) 0%, var(--grey-700) 100%);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(1000px 500px at 15% -10%, rgba(42, 78, 148, 0.12), transparent 60%),
    radial-gradient(800px 400px at 95% 60%, rgba(11, 26, 54, 0.08), transparent 60%);
  pointer-events: none;
}
.hero-grid {
  max-width: 1240px;
  margin: 0 auto;
  padding: 0 28px;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.hero-copy h1 {
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin: 14px 0 20px;
}
.hero-copy .lead {
  font-size: 17px;
  color: var(--grey-200);
  max-width: 520px;
  margin-bottom: 36px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 54px;
}
.hero-stats {
  display: flex;
  gap: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--grey-200);
  max-width: 520px;
}
.hero-stats div { display: flex; flex-direction: column; gap: 4px; }
.hero-stats strong {
  font-family: var(--font-serif);
  font-size: 28px;
  color: var(--white);
  font-weight: 600;
}
.hero-stats span {
  font-size: 12.5px;
  color: var(--grey-300);
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* hero visual */
.hero-visual {
  position: relative;
  min-height: 560px;
}
.hero-card {
  position: absolute;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  transition: transform .5s var(--ease);
}
.hero-card img,
.hero-card svg { width: 100%; height: 100%; object-fit: cover; display: block; }
.hero-card-main {
  top: 0;
  right: 0;
  width: 72%;
  aspect-ratio: 3/4;
  z-index: 2;
}
.hero-card-sub {
  bottom: 0;
  left: 0;
  width: 52%;
  aspect-ratio: 1/1;
  z-index: 3;
  border: 6px solid var(--white);
}
.hero-card:hover { transform: translateY(-6px); }

.tag {
  position: absolute;
  top: 18px; left: 18px;
  background: var(--white);
  color: var(--navy-900);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
}
.tag-new { background: var(--navy-900); color: var(--cream); }

.hero-badge {
  position: absolute;
  bottom: 28px;
  right: 20px;
  z-index: 4;
  background: var(--white);
  padding: 14px 20px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  display: flex;
  align-items: center;
  gap: 12px;
  max-width: 42%;
}
.hero-badge::before {
  content: "";
  width: 10px; height: 10px;
  background: var(--gold);
  border-radius: 50%;
  box-shadow: 0 0 0 4px rgba(200,168,106,.2);
}
.hero-badge strong {
  display: block;
  font-size: 14px;
  color: var(--navy-900);
  font-weight: 600;
}
.hero-badge small { font-size: 11.5px; color: var(--grey-500); }

.hero-accent {
  position: absolute;
  width: 140px; height: 140px;
  bottom: -20px;
  right: 20%;
  background: var(--navy-100);
  border-radius: 50%;
  z-index: 1;
  filter: blur(2px);
}

/* marquee */
.marquee {
  margin-top: 56px;
  padding: 18px 0;
  background: var(--navy-900);
  color: var(--cream);
  overflow: hidden;
  position: relative;
}
.marquee-track {
  display: flex;
  gap: 36px;
  white-space: nowrap;
  animation: marquee 30s linear infinite;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
}
.marquee-track span { color: var(--cream); opacity: .85; }
@keyframes marquee {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* -------- SECTIONS -------- */
.section {
  padding: 110px 0;
}
.section-alt { background: var(--grey-600); }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 60px;
}
.section-head h2 {
  font-size: clamp(32px, 4.2vw, 52px);
  margin-bottom: 16px;
}
.section-head p { color: var(--grey-200); font-size: 16.5px; }
.section-head.row {
  display: flex;
  text-align: left;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  max-width: none;
}
.section-head.row .section-lead {
  max-width: 400px;
  color: var(--grey-200);
  margin: 0;
}

/* Category tiles */
.category-tiles {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}
.cat-tile {
  display: grid;
  place-items: center;
  padding: 44px 24px;
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-md);
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  transition: all .3s var(--ease);
  position: relative;
  overflow: hidden;
}
.cat-tile::after {
  content: "→";
  position: absolute;
  right: 22px; top: 50%;
  transform: translateY(-50%) translateX(-4px);
  opacity: 0;
  transition: all .3s var(--ease);
  font-family: var(--font-sans);
}
.cat-tile:hover {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
  transform: translateY(-3px);
}
.cat-tile:hover::after { opacity: 1; transform: translateY(-50%) translateX(0); }

/* -------- PRODUCT GRID -------- */
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.product-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: all .35s var(--ease);
  position: relative;
  cursor: pointer;
}
.section-alt .product-card { background: var(--white); }
.product-media {
  position: relative;
  aspect-ratio: 4/5;
  overflow: hidden;
  background: var(--grey-100);
}
.product-media img,
.product-media svg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
  transition: transform .7s var(--ease);
}
.product-card:hover .product-media img,
.product-card:hover .product-media svg { transform: scale(1.04); }
.product-media--svg { background: var(--grey-100); }

.product-badge {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--white);
  color: var(--navy-900);
  padding: 5px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.product-badge.navy { background: var(--navy-900); color: var(--cream); }
.product-badge.gold { background: var(--gold); color: var(--navy-900); }

.product-fav {
  position: absolute;
  top: 14px; right: 14px;
  width: 38px; height: 38px;
  display: grid; place-items: center;
  background: var(--white);
  border-radius: 50%;
  color: var(--grey-600);
  opacity: 0;
  transform: translateY(-6px);
  transition: all .3s var(--ease);
  box-shadow: var(--shadow-sm);
}
.product-card:hover .product-fav { opacity: 1; transform: translateY(0); }
.product-fav:hover { color: var(--navy-900); }

.product-quick {
  position: absolute;
  left: 14px; right: 14px; bottom: 14px;
  padding: 12px 18px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-align: center;
  opacity: 0;
  transform: translateY(10px);
  transition: all .3s var(--ease);
}
.product-card:hover .product-quick { opacity: 1; transform: translateY(0); }

.product-info {
  padding: 20px 6px 0;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 16px;
}
.product-title {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy-900);
  margin: 0 0 4px;
  font-weight: 600;
}
.product-sub {
  font-size: 13px;
  color: var(--grey-500);
  letter-spacing: 0.02em;
}
.product-price {
  font-family: var(--font-serif);
  font-size: 18px;
  color: var(--navy-700);
  font-weight: 600;
  white-space: nowrap;
}

/* -------- CTA -------- */
.cta {
  padding: 120px 0;
  background:
    radial-gradient(600px 400px at 80% 20%, rgba(255,255,255,0.06), transparent 70%),
    linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--white);
  position: relative;
  overflow: hidden;
}
.cta-inner {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 60px;
  align-items: center;
  position: relative;
}
.cta-copy h2 {
  color: var(--white);
  font-size: clamp(34px, 4.4vw, 54px);
  margin-bottom: 18px;
}
.cta-copy h2 em { color: var(--cream); }
.cta-copy p { color: rgba(255,255,255,0.78); font-size: 17px; max-width: 500px; margin-bottom: 32px; }

.cta-form {
  display: flex;
  gap: 10px;
  padding: 8px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 999px;
  max-width: 500px;
  backdrop-filter: blur(10px);
}
.cta-form input {
  flex: 1;
  border: none;
  background: transparent;
  padding: 12px 20px;
  font-size: 15px;
  color: var(--white);
  outline: none;
  font-family: inherit;
}
.cta-form input::placeholder { color: rgba(255,255,255,0.55); }
.cta-form .btn { padding: 12px 24px; background: var(--cream); color: var(--navy-900); }
.cta-form .btn:hover { background: var(--white); }
.cta-fine {
  display: block;
  margin-top: 14px;
  color: rgba(255,255,255,0.55);
  font-size: 12.5px;
  letter-spacing: 0.04em;
}

/* CTA visual */
.cta-visual {
  position: relative;
  height: 360px;
  display: grid;
  place-items: center;
}
.cta-circle {
  width: 180px; height: 180px;
  display: grid; place-items: center;
  background: var(--cream);
  color: var(--navy-900);
  font-family: var(--font-serif);
  font-size: 88px;
  font-style: italic;
  border-radius: 50%;
  z-index: 2;
  box-shadow: 0 20px 60px rgba(0,0,0,0.3);
}
.cta-orbit {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 280px; height: 280px;
  border: 1px dashed rgba(255,255,255,0.25);
  border-radius: 50%;
  animation: spin 30s linear infinite;
}
.cta-orbit--2 {
  width: 380px; height: 380px;
  border-style: solid;
  border-color: rgba(255,255,255,0.08);
  animation-duration: 50s;
  animation-direction: reverse;
}
@keyframes spin {
  to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* -------- CONTACT -------- */
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 80px;
  align-items: flex-start;
}
.contact-copy h2 { font-size: clamp(32px, 4vw, 48px); margin-bottom: 16px; }
.contact-copy p { color: var(--grey-200); font-size: 16.5px; margin-bottom: 32px; }
.contact-list {
  display: grid;
  gap: 18px;
  border-top: 1px solid var(--grey-200);
  padding-top: 28px;
}
.contact-list li {
  display: grid;
  grid-template-columns: 100px 1fr;
  align-items: center;
}
.contact-list strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-300);
  font-weight: 600;
}
.contact-list span {
  color: var(--white);
  font-weight: 500;
  font-size: 15px;
}

.contact-form {
  background: var(--white);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  padding: 38px;
  box-shadow: var(--shadow-md);
  display: grid;
  gap: 20px;
}
.contact-form label {
  display: grid;
  gap: 8px;
}
.contact-form label span {
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
}
.contact-form input,
.contact-form textarea {
  padding: 14px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font-family: inherit;
  font-size: 15px;
  color: var(--grey-700);
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
  background: var(--grey-50);
  outline: none;
  resize: vertical;
}
.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--navy-500);
  box-shadow: 0 0 0 4px rgba(42,78,148,0.1);
  background: var(--white);
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

/* -------- FOOTER -------- */
.footer {
  background: var(--navy-900);
  color: rgba(255,255,255,0.7);
  padding-top: 80px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 60px;
}
.footer-brand p { max-width: 340px; margin-top: 16px; font-size: 14.5px; line-height: 1.7; }
.footer h4 {
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 12.5px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 18px;
  font-weight: 600;
}
.footer ul { display: grid; gap: 10px; }
.footer ul a {
  font-size: 14.5px;
  color: rgba(255,255,255,0.7);
  transition: color .2s var(--ease);
}
.footer ul a:hover { color: var(--cream); }

.brand-light { color: var(--white); }
.brand-light .brand-mark { background: var(--cream); color: var(--navy-900); }
.brand-light .brand-text { color: var(--white); }
.brand-light .brand-text em { color: var(--cream); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 24px 0;
}
.footer-bottom-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}
.footer-bottom small { color: rgba(255,255,255,0.5); font-size: 13px; }
.socials { display: flex; gap: 10px; }
.socials a {
  width: 36px; height: 36px;
  display: grid; place-items: center;
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: 50%;
  color: rgba(255,255,255,0.7);
  transition: all .25s var(--ease);
}
.socials a:hover {
  background: var(--cream);
  color: var(--navy-900);
  border-color: var(--cream);
  transform: translateY(-2px);
}

/* -------- REVEAL ANIMATION -------- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .8s var(--ease), transform .8s var(--ease);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* -------- SECTION CTA (view all) -------- */
.section-cta {
  display: flex;
  justify-content: center;
  margin-top: 44px;
}

/* -------- FEATURES STRIP -------- */
.features {
  padding: 110px 0;
  background: var(--grey-700);
  border-top: 1px solid var(--grey-600);
  border-bottom: 1px solid var(--grey-600);
}
.features .section-head { margin-bottom: 50px; }
.features-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}
.feature-card {
  padding: 30px 26px 28px;
  background: var(--grey-50);
  border-radius: var(--radius-lg);
  border: 1px solid var(--grey-600);
  display: flex;
  flex-direction: column;
  gap: 10px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.feature-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  border-color: var(--navy-500);
}
.feature-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 14px;
}
.feature-icon {
  width: 50px; height: 50px;
  display: grid; place-items: center;
  background: var(--navy-500);
  color: var(--white);
  border-radius: 12px;
  box-shadow: 0 8px 18px rgba(11,26,54,0.3);
  margin: 0;
}
.feature-number {
  font-family: var(--font-serif);
  font-size: 44px;
  line-height: 1;
  color: var(--navy-900);
  opacity: 0.14;
  font-weight: 600;
  letter-spacing: -0.02em;
}
.feature-tag {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--navy-500);
  font-weight: 700;
}
.feature-card h3 {
  font-family: var(--font-serif);
  font-size: 20px;
  margin: 0;
  color: var(--navy-900);
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.feature-card p {
  font-size: 14px;
  color: var(--grey-600);
  margin: 0;
  line-height: 1.6;
}

/* -------- TESTIMONIALS -------- */
.testimonials {
  padding: 120px 0;
  background: var(--grey-600);
  position: relative;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.testimonial {
  padding: 36px 32px;
  background: var(--grey-50);
  border: 1px solid var(--grey-100);
  border-radius: var(--radius-lg);
  position: relative;
  transition: all .3s var(--ease);
}
.testimonial:hover {
  background: var(--white);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.testimonial::before {
  content: "“";
  position: absolute;
  top: -14px;
  left: 26px;
  font-family: var(--font-serif);
  font-size: 80px;
  line-height: 1;
  color: var(--navy-900);
  opacity: 0.15;
}
.testimonial-stars {
  color: var(--gold);
  font-size: 16px;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 18px;
  line-height: 1.55;
  color: var(--navy-900);
  font-style: italic;
  margin-bottom: 24px;
  font-weight: 500;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  padding-top: 20px;
  border-top: 1px solid var(--grey-200);
}
.testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--cream);
  display: grid; place-items: center;
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 600;
}
.testimonial-author strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy-900);
}
.testimonial-author small {
  font-size: 12.5px;
  color: var(--grey-500);
  letter-spacing: 0.04em;
}

/* -------- EDITORIAL (2-col story) -------- */
.editorial {
  padding: 110px 0;
}
.editorial-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.editorial-inner.reverse { direction: rtl; }
.editorial-inner.reverse > * { direction: ltr; }
.editorial-copy h2 {
  font-size: clamp(30px, 3.8vw, 48px);
  margin-bottom: 18px;
}
.editorial-copy p {
  font-size: 16.5px;
  color: var(--grey-200);
  line-height: 1.75;
  max-width: 500px;
}
.editorial-copy .eyebrow { margin-bottom: 20px; }
.editorial-visual {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.editorial-visual img,
.editorial-visual svg {
  width: 100%; height: 100%;
  object-fit: cover;
  display: block;
}
.editorial-quote {
  position: absolute;
  left: 24px;
  right: 24px;
  bottom: 24px;
  max-width: 300px;
  background: var(--white);
  padding: 22px 26px;
  border-radius: var(--radius-md);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.35);
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy-900);
  font-size: 16px;
  line-height: 1.45;
}
.editorial-quote::before {
  content: "";
  display: block;
  width: 32px;
  height: 2px;
  background: var(--navy-500);
  margin-bottom: 12px;
}
.editorial-quote strong {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11.5px;
  color: var(--grey-500);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 600;
}

/* -------- PAGE BANNER (category page top) -------- */
.page-banner {
  position: relative;
  padding: 110px 0 90px;
  color: var(--white);
  background: var(--navy-900);
  overflow: hidden;
  isolation: isolate;
}
.page-banner::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: var(--banner-img, none);
  background-size: cover;
  background-position: center;
  opacity: 0.42;
  z-index: -2;
}
.page-banner::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(11,26,54,0.88), rgba(11,26,54,0.55));
  z-index: -1;
}
.page-banner .banner-img {
  position: absolute;
  inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  opacity: 0.5;
  z-index: -2;
}
.page-banner .container { position: relative; z-index: 1; }
.page-banner .eyebrow { color: var(--cream); }
.page-banner .eyebrow::before { background: var(--cream); }
.page-banner h1 {
  color: var(--white);
  font-size: clamp(42px, 5.6vw, 74px);
  line-height: 1.02;
  margin: 16px 0 18px;
  max-width: 820px;
}
.page-banner h1 em { color: var(--cream); }
.page-banner .lead {
  color: rgba(255,255,255,0.82);
  font-size: 17px;
  max-width: 640px;
  line-height: 1.7;
  margin-bottom: 0;
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 26px;
  font-weight: 500;
}
.breadcrumb a {
  color: rgba(255,255,255,0.7);
  transition: color .2s var(--ease);
}
.breadcrumb a:hover { color: var(--white); }
.breadcrumb span.sep { color: rgba(255,255,255,0.35); }
.breadcrumb strong { color: var(--cream); font-weight: 600; }

/* -------- FILTER / SORT BAR -------- */
.filter-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 20px;
  padding: 22px 0 28px;
  margin-bottom: 40px;
  border-bottom: 1px solid var(--grey-500);
}
.filter-left { display: flex; align-items: center; gap: 24px; flex-wrap: wrap; }
.filter-count {
  font-size: 13px;
  color: var(--grey-200);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 600;
}
.filter-chips {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.chip {
  padding: 8px 16px;
  border-radius: 999px;
  background: var(--white);
  border: 1px solid var(--grey-200);
  font-size: 13px;
  font-weight: 500;
  color: var(--grey-600);
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: all .2s var(--ease);
}
.chip:hover { border-color: var(--navy-500); color: var(--navy-900); }
.chip.active {
  background: var(--navy-900);
  color: var(--white);
  border-color: var(--navy-900);
}

.sort-wrap {
  display: flex;
  align-items: center;
  gap: 10px;
}
.sort-wrap label {
  font-size: 12.5px;
  color: var(--grey-200);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
}
.sort-wrap select {
  padding: 9px 36px 9px 14px;
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  background: var(--white) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6' viewBox='0 0 10 6'%3E%3Cpath d='M1 1l4 4 4-4' stroke='%230b1a36' stroke-width='1.6' fill='none' stroke-linecap='round'/%3E%3C/svg%3E") no-repeat right 14px center;
  font-family: inherit;
  font-size: 13.5px;
  color: var(--navy-900);
  -webkit-appearance: none;
  appearance: none;
  cursor: pointer;
  outline: none;
  transition: border-color .2s var(--ease);
}
.sort-wrap select:focus { border-color: var(--navy-500); }

/* -------- RELATED CATEGORIES (on category pages) -------- */
.related-categories {
  padding: 110px 0 110px;
  background: var(--grey-600);
}
.related-categories .section-head { margin-bottom: 40px; }

/* -------- CATEGORY PAGE MAIN SECTION -------- */
.category-products { padding: 60px 0 110px; }

/* -------- JOURNAL PAGE -------- */
.journal-featured {
  padding: 80px 0 40px;
  background: var(--grey-700);
}
.journal-featured-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-600);
  border-radius: var(--radius-xl);
  padding: 56px 56px;
  display: grid;
  grid-template-columns: 1.4fr 0.9fr;
  gap: 56px;
  align-items: center;
  position: relative;
  overflow: hidden;
}
.journal-featured-copy .feature-tag {
  display: inline-block;
  margin-bottom: 18px;
}
.journal-featured-copy h2 {
  font-size: clamp(28px, 3.4vw, 42px);
  margin-bottom: 20px;
  line-height: 1.15;
  color: var(--navy-900);
}
.journal-featured-copy .lead {
  color: var(--grey-600);
  font-size: 16.5px;
  line-height: 1.75;
  margin-bottom: 24px;
  max-width: 620px;
}
.journal-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 28px;
}
.journal-meta .sep { color: var(--grey-300); }
.journal-featured-copy .btn-ghost {
  color: var(--navy-900);
  border-color: var(--navy-900);
}
.journal-featured-copy .btn-ghost:hover {
  background: var(--navy-900);
  color: var(--white);
}

.journal-featured-side {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding-left: 36px;
  border-left: 1px solid var(--grey-200);
}
.journal-issue {
  font-family: var(--font-serif);
  color: var(--navy-900);
  line-height: 1;
}
.journal-issue small {
  display: block;
  font-family: var(--font-sans);
  font-size: 11px;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
  margin-bottom: 10px;
}
.journal-issue strong {
  font-size: clamp(80px, 10vw, 132px);
  font-weight: 600;
  letter-spacing: -0.04em;
  display: block;
}
.journal-pullquote {
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 18px;
  line-height: 1.5;
  color: var(--navy-900);
  margin: 0;
  padding-top: 24px;
  border-top: 1px solid var(--grey-200);
}
.journal-pullquote cite {
  display: block;
  margin-top: 12px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
}

.journal-archive {
  padding: 80px 0 120px;
}
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.journal-card {
  background: var(--grey-50);
  border: 1px solid var(--grey-600);
  border-radius: var(--radius-lg);
  padding: 32px 28px 26px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}
.journal-card:hover {
  transform: translateY(-6px);
  box-shadow: 0 24px 50px rgba(0,0,0,0.35);
  border-color: var(--navy-500);
}
.journal-card-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 700;
}
.journal-cat {
  color: var(--navy-500);
}
.journal-date {
  color: var(--grey-500);
}
.journal-card h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy-900);
  margin: 0;
  line-height: 1.25;
  letter-spacing: -0.01em;
}
.journal-card p {
  font-size: 14.5px;
  color: var(--grey-600);
  line-height: 1.65;
  margin: 0;
  flex: 1;
}
.journal-foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 18px;
  border-top: 1px solid var(--grey-200);
  font-size: 12.5px;
}
.journal-read-time {
  color: var(--grey-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-weight: 600;
  font-size: 11px;
}
.journal-read {
  color: var(--navy-900);
  font-weight: 600;
  letter-spacing: 0.04em;
  font-size: 13px;
  transition: color .2s var(--ease), transform .2s var(--ease);
  display: inline-flex;
  gap: 6px;
}
.journal-read:hover {
  color: var(--navy-500);
}
.journal-read:hover span { transform: translateX(3px); }
.journal-read span { transition: transform .2s var(--ease); display: inline-block; }

/* -------- SHOP PAGE -------- */
.cart-toggle {
  position: relative;
  width: 42px; height: 42px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--grey-50);
  color: var(--navy-900);
  margin-left: 6px;
  transition: background .2s var(--ease), transform .2s var(--ease);
}
.cart-toggle:hover { background: var(--navy-900); color: var(--white); transform: translateY(-1px); }
.cart-badge {
  position: absolute;
  top: -4px; right: -4px;
  min-width: 20px; height: 20px;
  padding: 0 5px;
  background: var(--navy-500);
  color: var(--white);
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  display: grid;
  place-items: center;
  line-height: 1;
  border: 2px solid var(--white);
  transition: transform .2s var(--ease), background .2s var(--ease);
}
.cart-badge[data-count="0"] { background: var(--grey-500); transform: scale(0.9); opacity: 0.7; }

.shop-banner { padding: 80px 0 60px; }
.shop-banner h1 { font-size: clamp(38px, 5vw, 66px); }

.shop-controls { padding: 20px 0 10px; background: var(--grey-700); }
.shop-products { padding: 20px 0 110px; background: var(--grey-700); }

.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
}

/* Always reserve the right-side page scrollbar gutter so navbar width is
   identical across every page (home, category, shop, journal). */
html { overflow-y: scroll; }
html::-webkit-scrollbar { width: 12px; }
html::-webkit-scrollbar-track { background: var(--grey-900); }
html::-webkit-scrollbar-thumb {
  background: var(--navy-500);
  border: 3px solid var(--grey-900);
  border-radius: 999px;
}
html::-webkit-scrollbar-thumb:hover { background: var(--navy-600); }
html { scrollbar-width: thin; scrollbar-color: var(--navy-500) var(--grey-900); }
.shop-card {
  background: var(--white);
  border-radius: var(--radius-md);
  overflow: hidden;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .35s var(--ease), box-shadow .35s var(--ease);
  border: 1px solid var(--grey-600);
}
.shop-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 42px rgba(0,0,0,0.35);
}
.shop-card .product-media { border-radius: 0; }
.shop-card-info {
  padding: 18px 18px 8px;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
}
.shop-card-title h3 {
  font-family: var(--font-serif);
  font-size: 16.5px;
  margin: 0 0 4px;
  color: var(--navy-900);
  font-weight: 600;
  line-height: 1.25;
}
.shop-card-sub {
  font-size: 12.5px;
  color: var(--grey-500);
}
.shop-card-price {
  font-family: var(--font-serif);
  font-size: 17px;
  color: var(--navy-700);
  font-weight: 600;
  white-space: nowrap;
}
.shop-add {
  margin: 0 18px 18px;
  padding: 11px 14px;
  border-radius: 999px;
  background: var(--navy-900);
  color: var(--white);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.04em;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  transition: background .2s var(--ease), transform .15s var(--ease);
}
.shop-add:hover { background: var(--navy-600); transform: translateY(-1px); }
.shop-add.in-cart { background: var(--navy-500); }
.shop-add.in-cart::before { content: "\2713"; font-weight: bold; margin-right: 4px; }
.shop-add.in-cart svg { display: none; }

/* -------- CART DRAWER -------- */
body.no-scroll { overflow: hidden; }
.cart-overlay {
  position: fixed; inset: 0;
  background: rgba(11, 26, 54, 0.55);
  opacity: 0; pointer-events: none;
  backdrop-filter: blur(4px);
  transition: opacity .3s var(--ease);
  z-index: 900;
}
.cart-overlay.open { opacity: 1; pointer-events: auto; }
.cart-drawer {
  position: fixed;
  top: 0; right: 0;
  width: 440px;
  max-width: 96vw;
  height: 100dvh;
  background: var(--grey-50);
  box-shadow: -24px 0 60px rgba(0,0,0,0.35);
  transform: translateX(100%);
  transition: transform .36s var(--ease);
  z-index: 950;
  display: flex;
  flex-direction: column;
}
.cart-drawer.open { transform: translateX(0); }
.cart-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 26px 28px 20px;
  border-bottom: 1px solid var(--grey-200);
}
.cart-head h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  color: var(--navy-900);
  margin: 0;
}
.cart-close {
  width: 38px; height: 38px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--navy-900);
  background: transparent;
  transition: background .2s var(--ease);
}
.cart-close:hover { background: var(--grey-100); }
.cart-body {
  flex: 1;
  overflow-y: auto;
  padding: 18px 28px;
}
.cart-empty {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 14px;
  height: 100%;
  color: var(--grey-500);
  padding: 40px 20px;
}
.cart-empty svg { color: var(--grey-400); }
.cart-empty p { color: var(--grey-600); max-width: 240px; margin: 0; font-size: 14.5px; }
.cart-empty .btn-ghost { color: var(--navy-900); border-color: var(--navy-900); }
.cart-empty .btn-ghost:hover { background: var(--navy-900); color: var(--white); }
.cart-item {
  display: grid;
  grid-template-columns: 72px 1fr;
  gap: 14px;
  padding: 16px 0;
  border-bottom: 1px solid var(--grey-200);
}
.cart-item:last-child { border-bottom: none; }
.cart-thumb {
  width: 72px; height: 92px;
  border-radius: 10px;
  overflow: hidden;
  background: var(--grey-200);
}
.cart-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; }
.cart-item-info { display: flex; flex-direction: column; gap: 6px; }
.cart-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 8px;
}
.cart-item-top h4 {
  font-family: var(--font-serif);
  font-size: 15.5px;
  color: var(--navy-900);
  margin: 0;
  font-weight: 600;
  line-height: 1.25;
}
.cart-remove {
  width: 26px; height: 26px;
  display: grid; place-items: center;
  border-radius: 50%;
  color: var(--grey-500);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.cart-remove:hover { color: #c83a3a; background: rgba(200,58,58,0.08); }
.cart-item-sub {
  font-size: 12.5px;
  color: var(--grey-500);
}
.cart-item-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 6px;
}
.qty-control {
  display: inline-flex;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: 999px;
  overflow: hidden;
}
.qty-btn {
  width: 30px; height: 32px;
  display: grid; place-items: center;
  font-size: 16px;
  font-weight: 600;
  color: var(--navy-900);
  transition: background .15s var(--ease);
}
.qty-btn:hover { background: var(--grey-100); }
.qty-input {
  width: 34px;
  height: 32px;
  border: none;
  text-align: center;
  font: inherit;
  font-size: 14px;
  font-weight: 600;
  color: var(--navy-900);
  background: transparent;
  outline: none;
}
.cart-line-price {
  font-family: var(--font-serif);
  color: var(--navy-900);
  font-weight: 600;
  font-size: 15px;
}
.cart-foot {
  border-top: 1px solid var(--grey-200);
  padding: 22px 28px 26px;
  background: var(--white);
}
.cart-summary { margin-bottom: 16px; }
.cart-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 4px 0;
  font-size: 14.5px;
  color: var(--grey-600);
}
.cart-row.small { font-size: 12.5px; color: var(--grey-500); }
.cart-row.total {
  padding-top: 12px;
  margin-top: 8px;
  border-top: 1px solid var(--grey-200);
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 600;
  color: var(--navy-900);
}
.cart-foot .btn-primary:disabled { opacity: 0.45; cursor: not-allowed; transform: none; }
.cart-note {
  display: block;
  text-align: center;
  margin-top: 10px;
  font-size: 11.5px;
  color: var(--grey-500);
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

/* -------- TOAST -------- */
.toast {
  position: fixed;
  bottom: 28px; left: 50%;
  transform: translateX(-50%) translateY(20px);
  background: var(--navy-900);
  color: var(--white);
  padding: 12px 22px;
  border-radius: 999px;
  font-size: 14px;
  letter-spacing: 0.02em;
  box-shadow: 0 10px 30px rgba(0,0,0,0.35);
  opacity: 0;
  pointer-events: none;
  transition: transform .3s var(--ease), opacity .3s var(--ease);
  z-index: 1000;
}
.toast.show { opacity: 1; transform: translateX(-50%) translateY(0); }

/* -------- CHECKOUT MODAL -------- */
.checkout-modal {
  position: fixed; inset: 0;
  background: rgba(11, 26, 54, 0.7);
  backdrop-filter: blur(6px);
  display: grid;
  place-items: center;
  padding: 36px 20px;
  opacity: 0; pointer-events: none;
  transition: opacity .3s var(--ease);
  z-index: 1100;
  overflow-y: auto;
}
.checkout-modal.open { opacity: 1; pointer-events: auto; }
.checkout-inner {
  background: var(--grey-50);
  color: var(--navy-900);
  border-radius: var(--radius-xl);
  width: min(1100px, 100%);
  max-height: calc(100dvh - 72px);
  overflow-y: auto;
  position: relative;
  box-shadow: 0 40px 100px rgba(0,0,0,0.55);
}
.checkout-close {
  position: absolute;
  top: 18px; right: 18px;
  width: 40px; height: 40px;
  display: grid; place-items: center;
  border-radius: 50%;
  background: var(--white);
  color: var(--navy-900);
  box-shadow: 0 4px 12px rgba(0,0,0,0.1);
  transition: background .2s var(--ease);
  z-index: 2;
}
.checkout-close:hover { background: var(--grey-100); }
.checkout-header {
  padding: 44px 48px 24px;
  border-bottom: 1px solid var(--grey-200);
  background: var(--white);
  border-radius: var(--radius-xl) var(--radius-xl) 0 0;
}
.checkout-header .eyebrow { color: var(--navy-600); margin-bottom: 8px; }
.checkout-header .eyebrow::before { background: var(--navy-600); }
.checkout-header h2 {
  color: var(--navy-900);
  font-size: clamp(28px, 3.4vw, 40px);
  margin: 0 0 22px;
}
.checkout-steps {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.checkout-steps .step {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 8px 18px 8px 10px;
  border-radius: 999px;
  background: var(--grey-100);
  color: var(--grey-500);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: all .25s var(--ease);
}
.checkout-steps .step b {
  width: 22px; height: 22px;
  border-radius: 50%;
  background: var(--white);
  color: var(--grey-500);
  display: grid; place-items: center;
  font-size: 11.5px;
  font-weight: 700;
}
.checkout-steps .step.active { background: var(--navy-900); color: var(--white); }
.checkout-steps .step.active b { background: var(--cream); color: var(--navy-900); }
.checkout-steps .step.done { background: var(--navy-100); color: var(--navy-900); }
.checkout-steps .step.done b { background: var(--navy-500); color: var(--white); }

.checkout-body { padding: 32px 48px 48px; }
.checkout-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.9fr;
  gap: 40px;
  align-items: start;
}
.checkout-form h3 {
  font-family: var(--font-serif);
  font-size: 22px;
  margin: 0 0 20px;
  color: var(--navy-900);
}
.checkout-form label {
  display: grid;
  gap: 8px;
  margin-bottom: 16px;
}
.checkout-form label span {
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
}
.checkout-form input,
.checkout-form select {
  padding: 13px 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-sm);
  font: inherit;
  font-size: 15px;
  color: var(--navy-900);
  background: var(--white);
  outline: none;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.checkout-form input:focus,
.checkout-form select:focus {
  border-color: var(--navy-500);
  box-shadow: 0 0 0 4px rgba(42,78,148,0.12);
}
.pay-option {
  grid-template-columns: auto 1fr !important;
  align-items: center;
  padding: 16px;
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  background: var(--white);
  cursor: pointer;
  margin-bottom: 16px;
  display: grid;
  gap: 14px;
  transition: border-color .2s var(--ease), background .2s var(--ease);
}
.pay-option input[type="radio"] { accent-color: var(--navy-900); width: 18px; height: 18px; }
.pay-option strong {
  display: block;
  font-size: 14.5px;
  color: var(--navy-900);
  font-family: var(--font-sans);
  letter-spacing: 0;
  text-transform: none;
  font-weight: 600;
  margin-bottom: 2px;
}
.pay-option small {
  font-size: 12.5px;
  color: var(--grey-500);
  text-transform: none;
  letter-spacing: 0.02em;
}
.pay-option:has(input:checked) { border-color: var(--navy-500); background: var(--grey-50); }
.checkout-actions {
  display: flex;
  gap: 12px;
  margin-top: 10px;
  flex-wrap: wrap;
}
.checkout-actions .btn-ghost { color: var(--navy-900); border-color: var(--navy-900); }
.checkout-actions .btn-ghost:hover { background: var(--navy-900); color: var(--white); }

.checkout-summary {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-lg);
  padding: 28px 26px;
  position: sticky;
  top: 20px;
}
.checkout-summary h3 {
  font-family: var(--font-serif);
  font-size: 19px;
  margin: 0 0 18px;
  color: var(--navy-900);
}
.checkout-summary-list {
  list-style: none;
  padding: 0;
  margin: 0 0 16px;
  display: grid;
  gap: 10px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--grey-200);
  max-height: 200px;
  overflow-y: auto;
}
.checkout-summary-list li {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 13.5px;
  color: var(--navy-900);
}
.checkout-summary-list small { color: var(--grey-500); }
.checkout-summary-lines { display: grid; gap: 8px; }
.checkout-summary-lines > div {
  display: flex;
  justify-content: space-between;
  font-size: 14px;
  color: var(--grey-600);
}
.checkout-summary-lines .total {
  padding-top: 12px;
  margin-top: 4px;
  border-top: 1px solid var(--grey-200);
  font-family: var(--font-serif);
  font-size: 20px;
  color: var(--navy-900);
  font-weight: 600;
}

.review-block {
  background: var(--white);
  border: 1px solid var(--grey-200);
  border-radius: var(--radius-md);
  padding: 18px 22px;
  margin-bottom: 16px;
}
.review-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 8px;
}
.review-head strong {
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 700;
}
.review-edit {
  font-size: 12px;
  color: var(--navy-500);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 700;
  padding: 4px 6px;
}
.review-block p {
  margin: 0;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--navy-900);
}
.review-block small { color: var(--grey-500); }

.checkout-success {
  text-align: center;
  padding: 40px 20px;
  max-width: 540px;
  margin: 0 auto;
}
.success-badge {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: var(--navy-900);
  color: var(--cream);
  display: grid;
  place-items: center;
  margin: 0 auto 24px;
  box-shadow: 0 12px 30px rgba(11,26,54,0.3);
}
.checkout-success h2 {
  font-size: clamp(28px, 3.4vw, 40px);
  margin-bottom: 14px;
  color: var(--navy-900);
}
.checkout-success p {
  font-size: 16px;
  color: var(--grey-600);
  line-height: 1.7;
  margin-bottom: 28px;
}
.success-actions { display: flex; justify-content: center; gap: 12px; flex-wrap: wrap; }

/* -------- ARTICLE PAGE -------- */
.article-header {
  padding: 90px 0 50px;
  background: var(--grey-700);
}
.article-header-inner {
  max-width: 860px;
}
.article-header .breadcrumb { margin-bottom: 28px; color: var(--grey-300); }
.article-header .breadcrumb a { color: var(--grey-200); }
.article-header .breadcrumb a:hover { color: var(--white); }
.article-header .breadcrumb .sep { color: var(--grey-500); }
.article-header .breadcrumb strong { color: var(--white); }
.article-header h1 {
  font-size: clamp(34px, 5vw, 60px);
  line-height: 1.08;
  margin: 16px 0 20px;
  color: var(--white);
  letter-spacing: -0.015em;
}
.article-header h1 em { color: var(--grey-200); }
.article-dek {
  font-size: 18.5px;
  line-height: 1.65;
  color: var(--grey-200);
  margin-bottom: 36px;
  max-width: 740px;
}
.article-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  padding-top: 28px;
  border-top: 1px solid var(--grey-500);
}
.article-meta-author {
  display: flex;
  align-items: center;
  gap: 14px;
}
.article-avatar {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  background: var(--navy-500);
  color: var(--white);
  border-radius: 50%;
  font-family: var(--font-serif);
  font-size: 18px;
  font-weight: 600;
}
.article-meta-author strong {
  display: block;
  font-size: 14.5px;
  color: var(--white);
  font-weight: 600;
}
.article-meta-author small {
  font-size: 12px;
  color: var(--grey-300);
  letter-spacing: 0.04em;
}
.article-meta-info {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--grey-300);
  font-weight: 600;
}
.article-meta-info .sep { color: var(--grey-500); }

.article-body {
  padding: 70px 0 90px;
  background: var(--grey-50);
}
.article-body-inner {
  max-width: 760px;
}
.article-body p {
  font-family: var(--font-sans);
  font-size: 17px;
  line-height: 1.8;
  color: var(--grey-700);
  margin: 0 0 1.4em;
}
.article-body p em { color: var(--navy-700); font-style: italic; }
.article-intro {
  font-size: 19px !important;
  line-height: 1.7 !important;
  color: var(--grey-900) !important;
  margin-bottom: 1.6em !important;
}
.dropcap {
  float: left;
  font-family: var(--font-serif);
  font-size: 76px;
  line-height: 0.85;
  padding: 8px 14px 0 0;
  color: var(--navy-900);
  font-weight: 600;
}
.article-body h2 {
  font-family: var(--font-serif);
  font-size: clamp(24px, 3vw, 32px);
  color: var(--navy-900);
  margin: 2em 0 0.6em;
  letter-spacing: -0.01em;
  line-height: 1.25;
}
.article-body h2:first-of-type { margin-top: 1.4em; }
.article-list {
  padding-left: 0;
  margin: 0 0 1.6em;
  counter-reset: article-list;
  list-style: none;
}
.article-list li {
  position: relative;
  padding-left: 52px;
  margin-bottom: 18px;
  counter-increment: article-list;
  font-size: 16.5px;
  line-height: 1.75;
  color: var(--grey-700);
}
.article-list li::before {
  content: counter(article-list, decimal-leading-zero);
  position: absolute;
  left: 0; top: 2px;
  font-family: var(--font-serif);
  font-size: 22px;
  font-weight: 600;
  color: var(--navy-500);
  line-height: 1;
}
.article-list strong { color: var(--navy-900); font-weight: 600; }
.article-quote {
  margin: 2em 0;
  padding: 28px 32px;
  border-left: 3px solid var(--navy-500);
  background: var(--white);
  border-radius: 0 var(--radius-md) var(--radius-md) 0;
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 20px;
  line-height: 1.5;
  color: var(--navy-900);
}
.article-quote cite {
  display: block;
  margin-top: 14px;
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 12px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
}
.article-pullquote {
  margin: 2.4em -40px;
  padding: 36px 48px;
  background: var(--navy-900);
  color: var(--white);
  border-radius: var(--radius-lg);
  text-align: center;
}
.article-pullquote p {
  font-family: var(--font-serif);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.4;
  color: var(--white) !important;
  font-style: italic;
  margin: 0 !important;
  max-width: 620px;
  margin-left: auto !important;
  margin-right: auto !important;
}
.article-signoff {
  margin-top: 3em;
  padding-top: 28px;
  border-top: 1px solid var(--grey-200);
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  font-family: var(--font-serif);
  font-style: italic;
  color: var(--navy-900);
  font-size: 16px;
}
.article-signoff small {
  font-family: var(--font-sans);
  font-style: normal;
  font-size: 11.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--grey-500);
  font-weight: 600;
}
.article-related { padding-top: 80px; }

/* -------- RESPONSIVE -------- */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-visual { min-height: 460px; max-width: 560px; margin: 0 auto; width: 100%; }
  .cta-inner { grid-template-columns: 1fr; }
  .cta-visual { height: 280px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .product-grid { grid-template-columns: repeat(2, 1fr); }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .section-head.row { flex-direction: column; align-items: flex-start; gap: 20px; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { grid-template-columns: 1fr; gap: 20px; }
  .journal-featured-card { grid-template-columns: 1fr; gap: 32px; padding: 40px 36px; }
  .journal-featured-side { padding-left: 0; border-left: none; padding-top: 28px; border-top: 1px solid var(--grey-200); }
  .journal-grid { grid-template-columns: repeat(2, 1fr); }
  .shop-grid { grid-template-columns: repeat(3, 1fr); gap: 22px; }
  .checkout-grid { grid-template-columns: 1fr; }
  .checkout-summary { position: static; }
  .checkout-body { padding: 24px 32px 32px; }
  .checkout-header { padding: 32px 32px 20px; }
  .editorial-inner { grid-template-columns: 1fr; gap: 48px; }
  .editorial-inner.reverse { direction: ltr; }
  .editorial-quote { left: 16px; right: 16px; bottom: 16px; max-width: none; }
  .page-banner { padding: 80px 0 70px; }
}

@media (max-width: 720px) {
  .section { padding: 70px 0; }
  .hero { padding: 48px 0 32px; }
  .hero-stats { flex-wrap: wrap; gap: 24px; }
  .hero-stats strong { font-size: 24px; }
  .hero-copy h1 { font-size: 44px; }
  .hero-badge { right: 16px; bottom: 16px; top: auto; padding: 10px 14px; max-width: 60%; }
  .hero-badge strong { font-size: 13px; }

  .menu-toggle { display: flex; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--white);
    border-top: 1px solid var(--grey-100);
    padding: 16px 20px 22px;
    transform: translateY(-10px);
    opacity: 0;
    visibility: hidden;
    transition: all .25s var(--ease);
    box-shadow: var(--shadow-md);
  }
  .nav-links.open { opacity: 1; visibility: visible; transform: translateY(0); }
  .nav-links ul { flex-direction: column; align-items: stretch; gap: 2px; }
  .nav-links ul a { padding: 14px 16px; width: 100%; justify-content: space-between; }
  .dropdown {
    position: static;
    transform: none;
    box-shadow: none;
    border: none;
    background: var(--grey-50);
    opacity: 1; visibility: visible;
    display: none;
    padding: 6px;
    margin-top: 4px;
    min-width: 0;
  }
  .dropdown::before { display: none; }
  .has-dropdown.open .dropdown { display: grid; }

  .btn-nav { width: 100%; justify-content: center; }

  .cta-form { flex-direction: column; border-radius: var(--radius-md); }
  .cta-form input { padding: 14px 16px; }
  .cta-form .btn { width: 100%; }

  .field-row { grid-template-columns: 1fr; }
  .contact-form { padding: 26px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .category-tiles { gap: 12px; }
  .cat-tile { padding: 30px 20px; font-size: 18px; }
  .contact-list li { grid-template-columns: 80px 1fr; }
  .features { padding: 70px 0; }
  .features-grid { grid-template-columns: 1fr; gap: 22px; }
  .journal-featured { padding: 48px 0 24px; }
  .journal-featured-card { padding: 32px 24px; }
  .journal-archive { padding: 60px 0 80px; }
  .journal-grid { grid-template-columns: 1fr; gap: 18px; }
  .shop-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .shop-card-info { padding: 14px 14px 6px; }
  .shop-card-title h3 { font-size: 15px; }
  .shop-add { margin: 0 14px 14px; font-size: 12.5px; padding: 10px 12px; }
  .cart-drawer { width: 100vw; }
  .cart-head, .cart-foot { padding-left: 20px; padding-right: 20px; }
  .cart-body { padding: 16px 20px; }
  .checkout-modal { padding: 20px 12px; }
  .checkout-inner { border-radius: var(--radius-md); }
  .checkout-header { padding: 28px 22px 18px; }
  .checkout-body { padding: 20px 22px 26px; }
  .checkout-summary { padding: 20px 18px; }
  .article-header { padding: 60px 0 40px; }
  .article-body { padding: 48px 0 70px; }
  .article-pullquote { margin: 2em 0; padding: 28px 22px; }
  .dropcap { font-size: 58px; padding: 6px 10px 0 0; }
  .article-meta { flex-direction: column; align-items: flex-start; gap: 16px; }
  .testimonials { padding: 70px 0; }
  .editorial { padding: 70px 0; }
  .filter-bar { padding-top: 12px; margin-bottom: 28px; }
  .sort-wrap { width: 100%; justify-content: space-between; }
}

@media (max-width: 480px) {
  .product-grid { grid-template-columns: 1fr; }
  .brand-text { font-size: 17px; }
  .announcement { font-size: 11.5px; }
  .footer-grid { grid-template-columns: 1fr; }
}
