/* =========================================================
   KIORA AMOREZ — Editorial Boutique v4 (final)
   Light/cream theme · Mobile-first · Brand-faithful
   ========================================================= */

:root {
  --bg: #f3ead8;
  --bg-warm: #ede2cc;
  --bg-soft: #f8f1e2;
  --bg-paper: #faf6ec;
  --navy: #142a4a;
  --navy-deep: #0c1e38;
  --navy-soft: #1f3a5e;
  --gold: #c9a45c;
  --gold-bright: #dfbc7a;
  --coral: #c4604a;
  --line: rgba(20, 42, 74, 0.14);
  --line-strong: rgba(20, 42, 74, 0.32);
  --muted: #6e6755;

  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1320px;
  --container-narrow: 1040px;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
*::selection { background: var(--navy); color: var(--bg); }

html, body {
  overflow-x: clip;
  overflow-x: hidden;
  max-width: 100vw;
  width: 100%;
}
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }

body {
  font-family: var(--sans);
  background: var(--bg);
  color: var(--navy);
  font-size: 15.5px;
  line-height: 1.65;
  font-weight: 300;
  position: relative;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: opacity 0.4s var(--ease); }
a:hover { opacity: 0.7; }
button { background: none; border: none; cursor: pointer; font-family: inherit; color: inherit; }

::-webkit-scrollbar { width: 8px; }
::-webkit-scrollbar-track { background: var(--bg-warm); }
::-webkit-scrollbar-thumb { background: var(--navy); }

/* ============== TYPOGRAPHY ============== */
h1, h2, h3, h4, h5 {
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: -0.012em;
  line-height: 1.08;
  color: var(--navy);
}
em, .italic { font-style: italic; font-family: var(--serif); }

.eyebrow {
  font-family: var(--sans);
  text-transform: uppercase;
  letter-spacing: 0.42em;
  font-size: 11px;
  font-weight: 500;
  color: var(--navy);
  display: inline-block;
}
.eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--gold);
  margin-right: 14px;
  vertical-align: middle;
}

.container { max-width: var(--container); margin: 0 auto; padding: 0 40px; }
.container-narrow { max-width: var(--container-narrow); margin: 0 auto; padding: 0 40px; }

/* ============== ANNOUNCEMENT ============== */
.announce {
  background: var(--navy);
  text-align: center;
  padding: 11px 20px;
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--bg-soft);
  font-weight: 400;
}
.announce span { color: var(--gold-bright); }

/* ============== HEADER ============== */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(243, 234, 216, 0.95);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  padding: 18px 40px;
  gap: 24px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
  font-size: 11px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-weight: 500;
}
.nav-links a {
  position: relative;
  padding: 6px 0;
  color: var(--navy);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: 0;
  width: 0; height: 1px;
  background: var(--gold);
  transition: width 0.5s var(--ease);
}
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-links a:hover { opacity: 1; }

/* Brand: K + KIORA AMOREZ */
.brand {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  text-align: center;
  color: var(--navy);
  line-height: 1;
}
.brand-mark {
  width: 32px;
  height: 32px;
  display: block;
}
.brand-mark img {
  width: 100%; height: 100%;
  object-fit: contain;
  display: block;
}
.brand-name {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: 0.55em;
  text-transform: uppercase;
  color: var(--navy);
  padding-left: 0.55em;
  line-height: 1;
}
.brand-tag {
  font-family: var(--serif);
  font-style: italic;
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--muted);
  font-weight: 400;
  padding-left: 0.18em;
}

.nav-actions {
  display: flex;
  justify-content: flex-end;
  gap: 18px;
  align-items: center;
}
.icon-btn {
  width: 38px; height: 38px;
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  transition: all 0.4s var(--ease);
  color: var(--navy);
  flex-shrink: 0;
}
.icon-btn:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: var(--bg);
}
.cart-count {
  background: var(--coral);
  color: var(--bg);
  border-radius: 999px;
  width: 17px; height: 17px;
  display: inline-flex; align-items: center; justify-content: center;
  font-size: 9px;
  font-weight: 600;
  margin-left: -10px;
  margin-top: -16px;
  position: relative;
  z-index: 2;
  box-shadow: 0 0 0 2px var(--bg);
}

.menu-toggle {
  display: none;
  width: 38px; height: 38px;
  border-radius: 999px;
  border: 1px solid var(--line);
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 5px;
  flex-shrink: 0;
}
.menu-toggle span {
  display: block;
  width: 16px;
  height: 1.5px;
  background: var(--navy);
}

/* ============== HERO — single column full-bleed ============== */
.hero {
  position: relative;
  min-height: 88vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy);
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  z-index: 0;
}
.hero-bg::after {
  content: '';
  position: absolute; inset: 0;
  background:
    linear-gradient(180deg, rgba(20, 42, 74, 0.0) 0%, rgba(20, 42, 74, 0.15) 50%, rgba(20, 42, 74, 0.55) 100%),
    linear-gradient(90deg, rgba(20, 42, 74, 0.6) 0%, rgba(20, 42, 74, 0.05) 70%);
}
.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  padding: 130px 40px 100px;
  max-width: var(--container);
  margin: 0 auto;
  color: var(--bg);
}
.hero-content .eyebrow { color: var(--gold-bright); }
.hero-content .eyebrow::before { background: var(--gold-bright); }
.hero h1 {
  margin: 28px 0 26px;
  font-size: clamp(2.6rem, 7vw, 6.4rem);
  font-weight: 300;
  letter-spacing: -0.02em;
  line-height: 0.96;
  color: var(--bg);
  max-width: 14ch;
}
.hero h1 em {
  color: var(--gold-bright);
  font-weight: 400;
}
.hero p {
  max-width: 520px;
  font-size: 17px;
  color: rgba(243, 234, 216, 0.88);
  line-height: 1.75;
  margin-bottom: 44px;
}
.hero-cta { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-meta {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
  margin-top: 70px;
  padding-top: 30px;
  border-top: 1px solid rgba(223, 188, 122, 0.3);
  max-width: 760px;
}
.hero-meta div {
  font-size: 9.5px;
  letter-spacing: 0.34em;
  text-transform: uppercase;
  color: rgba(243, 234, 216, 0.6);
  font-weight: 500;
}
.hero-meta strong {
  display: block;
  color: var(--bg);
  font-family: var(--serif);
  font-style: italic;
  font-size: 17px;
  letter-spacing: 0.02em;
  margin-top: 8px;
  font-weight: 400;
  text-transform: none;
}

/* ============== BUTTONS ============== */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  padding: 17px 32px;
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 500;
  border: 1px solid var(--navy);
  color: var(--navy);
  transition: all 0.5s var(--ease);
  position: relative;
  overflow: hidden;
  background: transparent;
  white-space: nowrap;
}
.btn span.arrow { transition: transform 0.4s var(--ease); }
.btn::before {
  content: '';
  position: absolute; inset: 0;
  background: var(--navy);
  transform: translateX(-101%);
  transition: transform 0.55s var(--ease);
  z-index: -1;
}
.btn:hover { color: var(--bg); opacity: 1; }
.btn:hover::before { transform: translateX(0); }
.btn:hover span.arrow { transform: translateX(6px); }

.btn-solid { background: var(--navy); color: var(--bg); }
.btn-solid::before { background: var(--coral); }

.btn-light { border-color: var(--bg); color: var(--bg); }
.btn-light::before { background: var(--bg); }
.btn-light:hover { color: var(--navy); }

.btn-gold { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.btn-gold::before { background: var(--bg); }
.btn-gold:hover { color: var(--navy); }

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--navy);
  font-weight: 500;
  padding: 6px 0;
  border-bottom: 1px solid var(--navy);
}
.link-arrow::after { content: '→'; transition: transform 0.4s var(--ease); }
.link-arrow:hover::after { transform: translateX(8px); }

/* ============== TAGLINE STRIP ============== */
.tagline-strip {
  background: var(--bg-warm);
  text-align: center;
  padding: 50px 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.tagline-strip p {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-style: italic;
  letter-spacing: 0.04em;
  font-weight: 400;
  color: var(--navy);
  line-height: 1.4;
}
.tagline-strip p span {
  color: var(--gold);
  font-style: normal;
  padding: 0 16px;
  font-weight: 600;
}

/* ============== MARQUEE ============== */
.marquee {
  background: var(--navy);
  color: var(--bg);
  overflow: hidden;
  padding: 22px 0;
  position: relative;
  width: 100%;
}
.marquee-track {
  display: flex;
  gap: 70px;
  animation: marquee 50s linear infinite;
  white-space: nowrap;
  width: max-content;
}
.marquee-track span {
  font-family: var(--serif);
  font-size: 21px;
  font-style: italic;
  color: var(--bg);
  letter-spacing: 0.02em;
}
.marquee-track span::before {
  content: '✦';
  color: var(--gold-bright);
  margin-right: 70px;
  font-style: normal;
  font-size: 12px;
  vertical-align: middle;
}
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============== SECTION HEAD ============== */
.section-head {
  text-align: center;
  margin-bottom: 70px;
}
.section-head h2 {
  font-size: clamp(2rem, 4.4vw, 4rem);
  margin-top: 20px;
  font-weight: 300;
  letter-spacing: -0.02em;
}
.section-head h2 em { color: var(--coral); font-weight: 400; }
.section-head p {
  max-width: 560px;
  margin: 22px auto 0;
  color: var(--muted);
  font-size: 15.5px;
  line-height: 1.75;
}

/* ============== CATEGORIES ============== */
.categories {
  background: var(--bg);
  padding: 120px 0 70px;
}
.cat-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 16px;
  margin-top: 60px;
}
.cat-card {
  position: relative;
  aspect-ratio: 3/4.2;
  overflow: hidden;
  background: var(--navy);
}
.cat-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.4s var(--ease);
}
.cat-card:hover img { transform: scale(1.07); }
.cat-card-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(20, 42, 74, 0.4) 65%, rgba(20, 42, 74, 0.92));
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 26px 22px;
}
.cat-card h3 {
  font-size: 24px;
  color: var(--bg);
  margin-bottom: 6px;
  font-weight: 400;
}
.cat-card-overlay span {
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-bright);
  font-weight: 500;
}

/* ============== FEATURED PRODUCTS ============== */
.featured {
  background: var(--bg);
  padding: 130px 0;
}
.product-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;
  margin-top: 60px;
}
.product-card {
  position: relative;
  cursor: pointer;
  text-decoration: none;
  display: block;
}
.product-img {
  position: relative;
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  overflow: hidden;
  margin-bottom: 20px;
}
.product-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.product-card:hover .product-img img { transform: scale(1.05); }
.product-tag {
  position: absolute;
  top: 14px; left: 14px;
  background: var(--navy);
  color: var(--gold-bright);
  padding: 6px 12px;
  font-size: 9px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  z-index: 2;
  font-weight: 500;
}
.product-quick {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: var(--navy);
  color: var(--bg);
  padding: 14px;
  text-align: center;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  transform: translateY(101%);
  transition: transform 0.5s var(--ease);
}
.product-card:hover .product-quick { transform: translateY(0); }
.product-meta { padding: 0 4px; }
.product-cat {
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 8px;
  font-weight: 500;
}
.product-name {
  font-family: var(--serif);
  font-size: 21px;
  color: var(--navy);
  margin-bottom: 8px;
  font-weight: 400;
  line-height: 1.2;
}
.product-price {
  font-size: 14px;
  color: var(--muted);
  font-family: var(--serif);
  font-style: italic;
}
.product-price .old { text-decoration: line-through; opacity: 0.5; margin-right: 10px; font-style: normal; }

/* ============== STORY / EDITORIAL ============== */
.story {
  background: var(--bg-soft);
  padding: 140px 0;
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 80px;
  align-items: center;
}
.story-img {
  aspect-ratio: 4/5;
  overflow: hidden;
  position: relative;
  background: var(--navy);
}
.story-img img { width: 100%; height: 100%; object-fit: cover; }
.story h2 {
  font-size: clamp(2rem, 4.2vw, 3.6rem);
  margin: 22px 0 22px;
  font-weight: 300;
}
.story h2 em { color: var(--coral); font-weight: 400; }
.story p {
  color: var(--muted);
  margin-bottom: 20px;
  font-size: 15.5px;
  line-height: 1.85;
  max-width: 520px;
}
.story-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 44px;
  padding-top: 32px;
  border-top: 1px solid var(--line);
  max-width: 520px;
}
.story-stats div strong {
  display: block;
  font-family: var(--serif);
  font-size: 44px;
  color: var(--coral);
  font-weight: 300;
  line-height: 1;
  margin-bottom: 8px;
  font-style: italic;
}
.story-stats div span {
  font-size: 9.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 500;
}

/* ============== COLLECTIONS (navy) ============== */
.collections {
  background: var(--navy);
  color: var(--bg);
  padding: 140px 0;
}
.collections .eyebrow { color: var(--gold-bright); }
.collections .eyebrow::before { background: var(--gold); }
.collections h2 { color: var(--bg); }
.collections h2 em { color: var(--gold-bright); }
.collections .section-head p { color: rgba(243, 234, 216, 0.65); }
.collections-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 60px;
}
.collection-card {
  position: relative;
  aspect-ratio: 3/4.2;
  overflow: hidden;
  background: var(--navy-deep);
  display: block;
  border: 1px solid rgba(201, 164, 92, 0.18);
}
.collection-card img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.5s var(--ease);
}
.collection-card:hover img { transform: scale(1.06); }
.collection-card-text {
  position: absolute;
  inset: 0;
  display: flex; flex-direction: column;
  justify-content: space-between;
  padding: 32px;
  background: linear-gradient(180deg, rgba(20,42,74,0.4) 0%, rgba(20,42,74,0) 35%, rgba(12,30,56,0.92) 100%);
}
.collection-card-text .top span {
  font-family: var(--serif);
  font-style: italic;
  font-size: 18px;
  color: var(--gold-bright);
}
.collection-card-text h3 {
  font-size: 32px;
  color: var(--bg);
  margin-bottom: 8px;
  font-weight: 400;
}
.collection-card-text p {
  color: rgba(243, 234, 216, 0.78);
  font-size: 13.5px;
  margin-bottom: 16px;
  line-height: 1.6;
  max-width: 280px;
}
.collection-card-text .link-arrow { color: var(--gold-bright); border-color: var(--gold-bright); font-size: 9.5px; letter-spacing: 0.32em; }

/* ============== TESTIMONIAL ============== */
.testimonial {
  background: var(--bg);
  padding: 130px 0;
  text-align: center;
}
.testimonial-quote {
  font-family: var(--serif);
  font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.45;
  color: var(--navy);
  max-width: 880px;
  margin: 32px auto 30px;
  padding: 0 20px;
}
.testimonial-quote::before { content: '"'; color: var(--coral); margin-right: 4px; }
.testimonial-quote::after { content: '"'; color: var(--coral); margin-left: 4px; }
.testimonial cite {
  font-style: normal;
  font-size: 11px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 500;
}

/* ============== JOURNAL ============== */
.journal-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 32px;
  margin-top: 60px;
}
.journal-card { cursor: pointer; }
.journal-img {
  aspect-ratio: 4/5;
  background: var(--bg-warm);
  overflow: hidden;
  margin-bottom: 22px;
}
.journal-img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease);
}
.journal-card:hover .journal-img img { transform: scale(1.05); }
.journal-meta {
  font-size: 9.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  font-weight: 500;
}
.journal-card h3 {
  font-size: 23px;
  color: var(--navy);
  margin-bottom: 12px;
  font-weight: 400;
  line-height: 1.25;
}
.journal-card p { color: var(--muted); font-size: 14px; line-height: 1.7; }

/* ============== NEWSLETTER ============== */
.newsletter {
  background: var(--bg-warm);
  padding: 100px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.newsletter h2 {
  font-size: clamp(1.8rem, 4vw, 3.2rem);
  margin: 16px 0 14px;
  font-weight: 300;
}
.newsletter h2 em { color: var(--coral); font-weight: 400; }
.newsletter p {
  color: var(--muted);
  max-width: 480px;
  margin: 0 auto 36px;
  font-size: 15px;
  line-height: 1.75;
}
.newsletter-form {
  max-width: 540px;
  margin: 0 auto;
  display: flex;
  border: 1px solid var(--line-strong);
  background: var(--bg-soft);
}
.newsletter-form input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 17px 22px;
  color: var(--navy);
  font-family: var(--sans);
  font-size: 13px;
  outline: none;
  min-width: 0;
}
.newsletter-form input::placeholder { color: var(--muted); }
.newsletter-form button {
  background: var(--navy);
  color: var(--bg);
  padding: 0 32px;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  font-weight: 600;
  transition: background 0.4s var(--ease);
  flex-shrink: 0;
}
.newsletter-form button:hover { background: var(--coral); }

/* ============== FOOTER ============== */
.footer {
  background: var(--navy-deep);
  color: rgba(243, 234, 216, 0.78);
  padding: 90px 0 30px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 60px;
}
.footer-brand .brand { align-items: flex-start; text-align: left; }
.footer-brand .brand-mark { width: 42px; height: 42px; }
.footer-brand .brand-mark img { filter: brightness(0) invert(1); }
.footer-brand .brand-name { color: var(--bg); font-size: 13px; padding-left: 0; }
.footer-brand .brand-tag { color: var(--gold-bright); padding-left: 0; font-size: 9.5px; }
.footer-brand p {
  margin: 22px 0;
  font-size: 13.5px;
  line-height: 1.85;
  max-width: 320px;
  color: rgba(243, 234, 216, 0.7);
}
.footer-social { display: flex; gap: 10px; margin-top: 20px; }
.footer-social a {
  width: 38px; height: 38px;
  border: 1px solid rgba(201, 164, 92, 0.3);
  border-radius: 999px;
  display: flex; align-items: center; justify-content: center;
  color: var(--bg);
  transition: all 0.4s var(--ease);
}
.footer-social a:hover {
  border-color: var(--gold-bright);
  background: var(--gold);
  color: var(--navy-deep);
}
.footer h4 {
  color: var(--gold-bright);
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.4em;
  text-transform: uppercase;
  margin-bottom: 22px;
  font-weight: 600;
}
.footer ul { list-style: none; }
.footer ul li { margin-bottom: 11px; font-size: 13.5px; }
.footer ul li a { color: rgba(243, 234, 216, 0.78); }
.footer ul li a:hover { color: var(--gold-bright); opacity: 1; }
.footer-bottom {
  padding-top: 28px;
  border-top: 1px solid rgba(201, 164, 92, 0.18);
  display: flex;
  justify-content: space-between;
  font-size: 11.5px;
  color: rgba(243, 234, 216, 0.55);
  letter-spacing: 0.06em;
  flex-wrap: wrap;
  gap: 14px;
}
.footer-credit a {
  color: var(--gold-bright);
  font-style: italic;
  font-family: var(--serif);
  font-size: 14px;
  border-bottom: 1px solid transparent;
}
.footer-credit a:hover { border-color: var(--gold-bright); opacity: 1; }

/* ============== PAGE HEADER ============== */
.page-head {
  padding: 110px 0 70px;
  text-align: center;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  position: relative;
}
.page-head::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 50%;
  transform: translateX(-50%);
  width: 80px; height: 1px;
  background: var(--coral);
}
.page-head h1 {
  font-size: clamp(2.4rem, 6vw, 5.4rem);
  margin: 16px 0 18px;
  font-weight: 300;
}
.page-head h1 em { color: var(--coral); font-weight: 400; }
.page-head p {
  color: var(--muted);
  max-width: 660px;
  margin: 0 auto;
  font-size: 15.5px;
  line-height: 1.75;
}
.breadcrumb {
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 20px;
  font-weight: 500;
}
.breadcrumb a:hover { color: var(--coral); }
.breadcrumb span { color: var(--coral); margin: 0 12px; }

/* ============== SHOP ============== */
.shop-toolbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 26px 0;
  border-bottom: 1px solid var(--line);
  margin-bottom: 44px;
  flex-wrap: wrap;
  gap: 20px;
}
.filters {
  display: flex;
  gap: 26px;
  font-size: 10.5px;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  flex-wrap: wrap;
}
.filters a { padding: 8px 0; border-bottom: 1px solid transparent; color: var(--navy); font-weight: 500; }
.filters a.active, .filters a:hover { color: var(--coral); border-color: var(--coral); opacity: 1; }
.shop-result { font-size: 12px; color: var(--muted); }
.shop-result select {
  background: transparent;
  border: 1px solid var(--line-strong);
  color: var(--navy);
  padding: 9px 14px;
  font-size: 10.5px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-family: var(--sans);
  margin-left: 14px;
}
.shop-section { padding: 60px 0 130px; background: var(--bg); }
.shop-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 36px 24px;
}
.pagination {
  margin-top: 70px;
  display: flex;
  justify-content: center;
  gap: 8px;
}
.pagination a {
  width: 42px; height: 42px;
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--line);
  font-size: 13px;
  font-family: var(--serif);
  color: var(--navy);
}
.pagination a.active, .pagination a:hover { border-color: var(--coral); color: var(--coral); opacity: 1; }

/* ============== PRODUCT DETAIL ============== */
.pdp { padding: 60px 0 110px; background: var(--bg); }
.pdp-grid { display: grid; grid-template-columns: 1.2fr 1fr; gap: 80px; }
.pdp-gallery { display: grid; gap: 12px; }
.pdp-main {
  aspect-ratio: 1;
  background: var(--bg-warm);
  overflow: hidden;
}
.pdp-main img { width: 100%; height: 100%; object-fit: cover; }
.pdp-thumbs { display: grid; grid-template-columns: repeat(4, 1fr); gap: 10px; }
.pdp-thumb {
  aspect-ratio: 1;
  background: var(--bg-warm);
  overflow: hidden;
  cursor: pointer;
  border: 1px solid transparent;
}
.pdp-thumb.active, .pdp-thumb:hover { border-color: var(--coral); }
.pdp-thumb img { width: 100%; height: 100%; object-fit: cover; }
.pdp-info { padding-top: 14px; }
.pdp-info .product-cat { color: var(--coral); }
.pdp-info h1 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 14px 0; font-weight: 300; }
.pdp-info h1 em { color: var(--coral); font-weight: 400; }
.pdp-price { font-size: 25px; font-family: var(--serif); font-style: italic; color: var(--navy); margin: 22px 0; }
.pdp-price .old { text-decoration: line-through; opacity: 0.45; margin-right: 14px; font-size: 17px; font-style: normal; }
.pdp-desc {
  color: var(--muted);
  line-height: 1.85;
  font-size: 14.5px;
  margin-bottom: 30px;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.pdp-options { margin-bottom: 30px; }
.pdp-options h4 {
  font-family: var(--sans);
  font-size: 10.5px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--coral);
  margin-bottom: 12px;
  font-weight: 600;
}
.swatch-row { display: flex; gap: 10px; margin-bottom: 22px; flex-wrap: wrap; }
.swatch {
  padding: 12px 22px;
  border: 1px solid var(--line);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  cursor: pointer;
  font-weight: 500;
  color: var(--navy);
}
.swatch.active, .swatch:hover { border-color: var(--coral); color: var(--coral); }
.pdp-cta { display: flex; gap: 12px; margin-top: 36px; }
.qty-input { display: flex; border: 1px solid var(--line-strong); align-items: center; }
.qty-input button { padding: 0 16px; height: 100%; font-size: 18px; color: var(--navy); }
.qty-input input {
  width: 50px;
  background: transparent;
  border: none;
  color: var(--navy);
  text-align: center;
  font-family: var(--serif);
  font-size: 17px;
  font-style: italic;
}
.pdp-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 40px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
}
.feature { display: flex; gap: 14px; }
.feature span {
  width: 36px; height: 36px;
  border-radius: 999px;
  border: 1px solid var(--coral);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--coral);
}
.feature strong {
  display: block;
  font-family: var(--serif);
  font-size: 16px;
  color: var(--navy);
  margin-bottom: 4px;
  font-weight: 400;
}
.feature p { font-size: 12px; color: var(--muted); line-height: 1.55; }

/* ============== ABOUT ============== */
.about-intro { background: var(--bg); padding: 120px 0; }
.about-intro-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.about-intro h2 { font-size: clamp(2rem, 4vw, 3.4rem); margin: 16px 0 22px; font-weight: 300; }
.about-intro h2 em { color: var(--coral); font-weight: 400; }
.about-intro p { color: var(--muted); font-size: 15.5px; line-height: 1.85; margin-bottom: 20px; }

.values { background: var(--navy); color: var(--bg); padding: 130px 0; }
.values .eyebrow { color: var(--gold-bright); }
.values .eyebrow::before { background: var(--gold); }
.values .section-head h2 { color: var(--bg); }
.values .section-head h2 em { color: var(--gold-bright); }
.values .section-head p { color: rgba(243, 234, 216, 0.7); }
.values-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 26px;
  margin-top: 60px;
}
.value-item {
  text-align: center;
  padding: 44px 28px;
  border: 1px solid rgba(201, 164, 92, 0.2);
  background: var(--navy-deep);
}
.value-item .num {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--gold-bright);
  font-weight: 300;
  font-style: italic;
  line-height: 1;
}
.value-item h3 {
  font-size: 22px;
  color: var(--bg);
  margin: 12px 0 14px;
  font-weight: 400;
}
.value-item p { color: rgba(243, 234, 216, 0.7); line-height: 1.75; font-size: 13.5px; }

.timeline { background: var(--bg-soft); padding: 130px 0; }
.timeline-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 60px;
}
.timeline-item {
  padding: 30px 0;
  border-top: 1px solid var(--coral);
}
.timeline-item .year {
  font-family: var(--serif);
  font-size: 56px;
  color: var(--coral);
  font-weight: 300;
  margin-bottom: 14px;
  line-height: 1;
  font-style: italic;
}
.timeline-item h3 { font-size: 21px; margin-bottom: 10px; color: var(--navy); font-weight: 400; }
.timeline-item p { color: var(--muted); font-size: 13.5px; line-height: 1.75; }

/* ============== CONTACT ============== */
.contact-section { background: var(--bg); padding: 90px 0; }
.contact-grid { display: grid; grid-template-columns: 1fr 1.3fr; gap: 70px; }
.contact-info h2 { font-size: clamp(1.8rem, 3.6vw, 3rem); margin: 14px 0 28px; font-weight: 300; }
.contact-info h2 em { color: var(--coral); font-weight: 400; }
.contact-info p { color: var(--muted); margin-bottom: 28px; line-height: 1.85; }
.contact-block {
  padding: 22px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 80px 1fr;
  gap: 14px;
}
.contact-block:last-of-type { border-bottom: 1px solid var(--line); }
.contact-block strong {
  font-family: var(--sans);
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--coral);
  font-weight: 600;
}
.contact-block div { color: var(--navy); font-size: 13.5px; line-height: 1.7; }
.contact-form { background: var(--navy); color: var(--bg); padding: 50px; }
.contact-form h3 { font-size: 28px; margin-bottom: 14px; color: var(--bg); font-weight: 300; }
.contact-form h3 em { color: var(--gold-bright); font-weight: 400; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; margin-bottom: 18px; }
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block;
  font-size: 10px;
  letter-spacing: 0.36em;
  text-transform: uppercase;
  color: var(--gold-bright);
  margin-bottom: 8px;
  font-weight: 600;
}
.form-group input, .form-group textarea, .form-group select {
  width: 100%;
  background: transparent;
  border: 1px solid rgba(201, 164, 92, 0.3);
  padding: 13px 15px;
  color: var(--bg);
  font-family: var(--sans);
  font-size: 13.5px;
  outline: none;
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--gold-bright); }
.form-group textarea { min-height: 130px; resize: vertical; }
.contact-form .btn-solid { background: var(--gold); color: var(--navy); border-color: var(--gold); }
.contact-form .btn-solid::before { background: var(--bg); }

/* ============== JOURNAL PAGE ============== */
.journal-page { background: var(--bg); padding: 70px 0 120px; }
.journal-feature {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 50px;
  align-items: center;
  margin-bottom: 90px;
}
.journal-feature .journal-img { aspect-ratio: 4/3; }
.journal-feature h2 { font-size: clamp(1.8rem, 4vw, 3.2rem); margin: 14px 0; font-weight: 300; }
.journal-feature h2 em { color: var(--coral); font-weight: 400; }
.journal-feature p { color: var(--muted); margin-bottom: 22px; line-height: 1.85; }

/* ============== FADE-IN ============== */
.fade-in {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.9s var(--ease), transform 0.9s var(--ease);
}
.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ============== TABLET ============== */
@media (max-width: 1100px) {
  .nav { padding: 16px 30px; gap: 16px; }
  .nav-links, .nav-links-secondary { display: none; }
  .nav-actions { gap: 14px; }
  .menu-toggle { display: inline-flex; }
  .cat-grid { grid-template-columns: repeat(3, 1fr); }
  .product-grid, .shop-grid { grid-template-columns: repeat(3, 1fr); }
  .collections-grid, .journal-grid, .timeline-grid, .values-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 40px; }
  .story-grid, .about-intro-grid, .contact-grid, .pdp-grid, .journal-feature {
    grid-template-columns: 1fr; gap: 50px;
  }
  .hero-content { padding: 110px 30px 90px; }
  .container, .container-narrow { padding: 0 30px; }
}


/* ============================================================
   READABILITY & LUXURY PASS — bump contrast, sizing, hierarchy
   ============================================================ */

body { font-size: 16px; line-height: 1.7; color: #0f1f37; }

/* Headlines: deeper navy for stronger contrast */
h1, h2, h3, h4, h5 { color: #0c1e38; }

/* Body paragraphs: stronger reading text */
.section-head p,
.story p,
.about-intro p,
.contact-info p,
.journal-card p,
.timeline-item p,
.value-item p,
.feature p,
.pdp-desc {
  color: #4a4434;
  font-size: 16px;
  line-height: 1.85;
}

/* Stronger "muted" — darker so it reads on cream */
:root { --muted: #4a4434; }

/* Eyebrow: slightly stronger color */
.eyebrow { color: #0c1e38; font-weight: 600; }
.eyebrow::before { background: var(--coral); }

/* Product cards — better hierarchy */
.product-cat {
  font-size: 10px;
  letter-spacing: 0.36em;
  font-weight: 600;
  color: var(--coral);
}
.product-name {
  font-size: 23px;
  color: #0c1e38;
  line-height: 1.2;
  font-weight: 500;
  margin-bottom: 10px;
}
.product-price {
  font-size: 16px;
  color: #0c1e38;
  font-style: italic;
  font-family: var(--serif);
  font-weight: 500;
}
.product-price .old {
  font-size: 14px;
  font-style: normal;
  color: #8a8273;
}

/* Better category card text — more contrast */
.cat-card-overlay {
  background: linear-gradient(180deg, transparent 30%, rgba(12, 30, 56, 0.5) 60%, rgba(12, 30, 56, 0.96));
}
.cat-card h3 { font-size: 26px; font-weight: 500; color: #fff; }
.cat-card-overlay span { color: #f0d49a; font-weight: 600; }

/* Hero — make text contrast stronger */
.hero-bg::after {
  background:
    linear-gradient(180deg, rgba(12, 30, 56, 0.2) 0%, rgba(12, 30, 56, 0.5) 60%, rgba(12, 30, 56, 0.85) 100%),
    linear-gradient(90deg, rgba(12, 30, 56, 0.7) 0%, rgba(12, 30, 56, 0.15) 70%);
}
.hero h1 { color: #ffffff; text-shadow: 0 2px 30px rgba(0,0,0,0.3); }
.hero h1 em { color: #f3d093; }
.hero p { color: rgba(255, 255, 255, 0.9); font-size: 17.5px; }
.hero-content .eyebrow { color: #f3d093; font-weight: 600; }
.hero-meta strong { color: #fff; font-size: 18px; }
.hero-meta div { color: rgba(255, 255, 255, 0.65); font-weight: 600; }

/* Newsletter text */
.newsletter h2 { color: #0c1e38; }
.newsletter p { color: #4a4434; font-size: 15.5px; }

/* Marquee text */
.marquee-track span { color: #f3ead8; font-weight: 400; }

/* Footer — brighter for readability */
.footer { color: rgba(243, 234, 216, 0.92); }
.footer-brand p { color: rgba(243, 234, 216, 0.82); font-size: 14.5px; }
.footer ul li { font-size: 14px; }
.footer ul li a { color: rgba(243, 234, 216, 0.85); }
.footer h4 { color: #f3d093; }
.footer-bottom { color: rgba(243, 234, 216, 0.7); }

/* Page head bigger + stronger */
.page-head h1 { color: #0c1e38; font-weight: 400; }
.page-head p { color: #4a4434; font-size: 16.5px; }

/* Section heads */
.section-head h2 { font-weight: 400; color: #0c1e38; }
.section-head p { color: #4a4434; font-size: 16.5px; }

/* Tagline strip — more elegant */
.tagline-strip { background: var(--bg-warm); border-top: 1px solid rgba(20, 42, 74, 0.18); border-bottom: 1px solid rgba(20, 42, 74, 0.18); }
.tagline-strip p { color: #0c1e38; font-weight: 500; letter-spacing: 0.1em; }
.tagline-strip p span { color: var(--coral); }

/* Buttons — more presence */
.btn {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.4em;
  padding: 18px 34px;
}

/* Story stats stronger */
.story-stats div strong { font-size: 50px; color: var(--coral); font-weight: 400; }
.story-stats div span { color: #0c1e38; font-weight: 600; opacity: 0.7; }

/* Story heading */
.story h2 { color: #0c1e38; }
.story h2 em { color: var(--coral); }
.story p { color: #4a4434; font-size: 16px; }

/* Testimonial — stronger */
.testimonial-quote { color: #0c1e38; font-weight: 400; }
.testimonial cite { color: var(--coral); font-weight: 700; }

/* Collections card text — stronger */
.collection-card-text h3 { color: #fff; font-size: 36px; font-weight: 500; }
.collection-card-text p { color: rgba(243, 234, 216, 0.9); font-size: 14px; }
.collection-card-text .top span { color: #f3d093; font-weight: 600; }

/* Values items on navy */
.values .section-head h2 { color: #fff; }
.value-item h3 { color: #fff; font-size: 24px; font-weight: 500; }
.value-item p { color: rgba(243, 234, 216, 0.85); font-size: 14.5px; }
.value-item .num { color: #f3d093; }

/* Timeline */
.timeline-item h3 { color: #0c1e38; font-weight: 500; }
.timeline-item p { color: #4a4434; font-size: 14.5px; }

/* Filters / Toolbar */
.filters a { color: #0c1e38; font-weight: 600; }
.filters a.active, .filters a:hover { color: var(--coral); }

/* PDP enhancements */
.pdp-info h1 { color: #0c1e38; font-weight: 400; }
.pdp-price { color: #0c1e38; font-weight: 500; font-size: 30px; }
.pdp-desc { color: #4a4434; font-size: 15.5px; }
.feature strong { color: #0c1e38; font-weight: 500; }
.feature p { color: #4a4434; font-size: 13px; }
.swatch { color: #0c1e38; font-weight: 600; font-size: 11.5px; }
.pdp-options h4 { color: var(--coral); font-weight: 700; font-size: 11px; }

/* Contact form labels */
.contact-form .form-group label { color: #f3d093; font-weight: 700; }
.contact-form h3 { color: #fff; }
.contact-form p { color: rgba(243, 234, 216, 0.9); }
.contact-form .form-group input,
.contact-form .form-group textarea,
.contact-form .form-group select { color: #fff; font-size: 14px; }
.contact-form .form-group input::placeholder,
.contact-form .form-group textarea::placeholder {
  color: rgba(243, 234, 216, 0.5);
}

/* FAQ blocks */
.featured h3 { color: #0c1e38 !important; font-weight: 500 !important; }

/* Smooth interactions */
* { transition-property: opacity, color, background-color, border-color, transform, box-shadow; }

/* Subtle hover lift on cards */
.product-card:hover { transform: translateY(-2px); }
.cat-card { transition: transform 0.5s var(--ease); }
.cat-card:hover { transform: translateY(-2px); }
.collection-card { transition: transform 0.6s var(--ease); }
.collection-card:hover { transform: translateY(-3px); }
.journal-card { transition: transform 0.5s var(--ease); }
.journal-card:hover { transform: translateY(-2px); }

/* Fade-in trigger by default visible (in case JS doesn't fire) */
.fade-in { opacity: 1; transform: none; }
