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

:root {
  --bg-deep: #0f0d0b;
  --bg-warm: #1a1614;
  --bg-card: #231f1b;
  --cream: #f5efe6;
  --cream-muted: #c4b9a8;
  --gold: #d4a957;
  --gold-soft: #c9985230;
  --blush: #e8a4a0;
  --text-primary: #f5efe6;
  --text-secondary: #a89e90;
  --text-dim: #7a6f62;
  --serif: 'Cormorant Garamond', Georgia, serif;
  --sans: 'Plus Jakarta Sans', -apple-system, sans-serif;
}

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

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

body {
  background: var(--bg-deep);
  color: var(--text-primary);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.7;
  overflow-x: hidden;
}

/* ═══ HERO ═══ */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  padding: 6rem 2rem 4rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 800px;
  height: 800px;
  background: radial-gradient(ellipse, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-label {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1;
}

.hero h1 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 7vw, 5.5rem);
  line-height: 1.1;
  color: var(--cream);
  max-width: 800px;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

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

.hero-poem {
  font-family: var(--serif);
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  font-style: italic;
  color: var(--cream-muted);
  max-width: 500px;
  line-height: 1.9;
  position: relative;
  z-index: 1;
  margin-top: 1rem;
}

.hero-poem .line {
  display: block;
}

/* ═══ DIVIDER ═══ */
.section-divider {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem 2rem;
}

.section-divider .dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.5;
  margin: 0 0.75rem;
}

.section-divider .line {
  width: 60px;
  height: 1px;
  background: linear-gradient(to right, transparent, var(--text-dim), transparent);
}

/* ═══ ETHOS ═══ */
.ethos {
  padding: 5rem 2rem;
  max-width: 700px;
  margin: 0 auto;
  text-align: center;
}

.ethos h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 1.5rem;
  line-height: 1.3;
}

.ethos p {
  font-size: 1.05rem;
  color: var(--text-secondary);
  line-height: 1.9;
}

/* ═══ OFFERINGS ═══ */
.offerings {
  padding: 4rem 2rem 6rem;
  max-width: 1100px;
  margin: 0 auto;
}

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

.offerings-header h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.offerings-header p {
  color: var(--text-secondary);
  font-size: 1rem;
}

.offerings-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

.offering-card {
  background: var(--bg-card);
  border: 1px solid rgba(212, 169, 87, 0.08);
  border-radius: 16px;
  padding: 2.5rem 2rem;
  transition: border-color 0.3s ease, transform 0.3s ease;
}

.offering-card:hover {
  border-color: rgba(212, 169, 87, 0.2);
  transform: translateY(-2px);
}

.offering-icon {
  font-size: 1.8rem;
  margin-bottom: 1.25rem;
  display: block;
}

.offering-card h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--cream);
  margin-bottom: 0.75rem;
}

.offering-card p {
  color: var(--text-secondary);
  font-size: 0.95rem;
  line-height: 1.7;
}

/* ═══ POEM SHOWCASE ═══ */
.poem-showcase {
  padding: 6rem 2rem;
  background: var(--bg-warm);
  text-align: center;
}

.poem-showcase .poem-frame {
  max-width: 550px;
  margin: 0 auto;
  padding: 3rem 2rem;
  border-left: 2px solid var(--gold);
  text-align: left;
}

.poem-frame .poem-title {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.5rem;
}

.poem-frame .poem-text {
  font-family: var(--serif);
  font-size: clamp(1.15rem, 2.5vw, 1.4rem);
  font-style: italic;
  color: var(--cream);
  line-height: 2;
}

.poem-frame .poem-text .line {
  display: block;
}

.poem-frame .poem-author {
  margin-top: 2rem;
  font-family: var(--sans);
  font-size: 0.85rem;
  color: var(--text-dim);
  letter-spacing: 0.05em;
}

/* ═══ THEMES ═══ */
.themes {
  padding: 6rem 2rem;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.themes h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  color: var(--cream);
  margin-bottom: 3rem;
}

.theme-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
}

.theme-tag {
  font-family: var(--serif);
  font-size: 1rem;
  font-style: italic;
  color: var(--cream-muted);
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(196, 185, 168, 0.15);
  border-radius: 100px;
  transition: all 0.3s ease;
}

.theme-tag:hover {
  border-color: var(--gold);
  color: var(--gold);
}

/* ═══ CLOSING ═══ */
.closing {
  padding: 6rem 2rem 4rem;
  text-align: center;
  max-width: 650px;
  margin: 0 auto;
}

.closing h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1.5rem;
}

.closing h2 em {
  font-style: italic;
  color: var(--gold);
}

.closing p {
  color: var(--text-secondary);
  font-size: 1.05rem;
  line-height: 1.8;
}

/* ═══ FOOTER ═══ */
footer {
  padding: 3rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(122, 111, 98, 0.15);
}

.footer-brand {
  font-family: var(--serif);
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--cream-muted);
  letter-spacing: 0.05em;
}

.footer-tagline {
  font-family: var(--serif);
  font-style: italic;
  font-size: 0.85rem;
  color: var(--text-dim);
  margin-top: 0.5rem;
}

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
  .hero { padding: 4rem 1.5rem 3rem; min-height: 90vh; }
  .offerings-grid { grid-template-columns: 1fr; }
  .offering-card { padding: 2rem 1.5rem; }
  .poem-frame { padding: 2rem 1.5rem; }
  .ethos, .themes, .closing { padding: 4rem 1.5rem; }
}

@media (max-width: 480px) {
  .hero h1 { font-size: 2.2rem; }
  .theme-tags { gap: 0.5rem; }
  .theme-tag { font-size: 0.9rem; padding: 0.5rem 1.1rem; }
}

/* ═══ NAV ═══ */
.site-nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2.5rem;
  background: linear-gradient(to bottom, rgba(15,13,11,0.95) 0%, transparent 100%);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.nav-brand {
  font-family: var(--serif);
  font-size: 1rem;
  font-weight: 500;
  color: var(--cream-muted);
  text-decoration: none;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav-brand:hover { color: var(--cream); }

.nav-links { display: flex; align-items: center; gap: 1.5rem; }

.nav-link {
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-link:hover { color: var(--cream); }

.nav-cta {
  font-family: var(--sans);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 0.6rem 1.4rem;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s, opacity 0.2s;
}
.nav-cta:hover { opacity: 0.88; }

/* ═══ HERO BUTTONS ═══ */
.hero-actions {
  display: flex;
  gap: 1rem;
  margin-top: 2.5rem;
  flex-wrap: wrap;
  justify-content: center;
  position: relative;
  z-index: 1;
}

.btn-primary {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--bg-deep);
  background: var(--gold);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: opacity 0.2s, transform 0.2s;
}
.btn-primary:hover { opacity: 0.88; transform: translateY(-1px); }

.btn-ghost {
  display: inline-block;
  font-family: var(--sans);
  font-size: 0.8rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--cream-muted);
  border: 1px solid rgba(196, 185, 168, 0.2);
  padding: 0.9rem 2.2rem;
  text-decoration: none;
  border-radius: 2px;
  transition: border-color 0.2s, color 0.2s;
}
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

.btn-sm { padding: 0.65rem 1.4rem; font-size: 0.75rem; }

/* ═══ SHOP HERO ═══ */
.shop-hero {
  padding: 10rem 2rem 5rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.shop-hero::before {
  content: '';
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 700px;
  height: 700px;
  background: radial-gradient(ellipse, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
}
.shop-hero-inner { position: relative; z-index: 1; }

.shop-title {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(3rem, 8vw, 6rem);
  color: var(--cream);
  line-height: 1.05;
  margin: 1.5rem 0 1rem;
}
.shop-title em { font-style: italic; color: var(--gold); }

.shop-subtitle {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--text-secondary);
}

/* ═══ CATEGORY NAV ═══ */
.category-nav {
  position: sticky;
  top: 64px;
  z-index: 90;
  display: flex;
  gap: 0.5rem;
  justify-content: center;
  flex-wrap: wrap;
  padding: 1rem 2rem;
  background: rgba(15,13,11,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(122,111,98,0.12);
}

.category-pill {
  font-family: var(--sans);
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-secondary);
  padding: 0.5rem 1.2rem;
  border: 1px solid rgba(122,111,98,0.2);
  border-radius: 100px;
  text-decoration: none;
  transition: all 0.25s ease;
}
.category-pill:hover,
.category-pill.active {
  color: var(--gold);
  border-color: rgba(212,169,87,0.35);
  background: rgba(212,169,87,0.07);
}

/* ═══ PRODUCT SECTIONS ═══ */
.product-section {
  padding: 5rem 2rem 6rem;
  max-width: 1200px;
  margin: 0 auto;
}
.product-section.bg-warm {
  max-width: 100%;
  background: var(--bg-warm);
  padding: 5rem 2rem 6rem;
}
.product-section.bg-warm .product-grid {
  max-width: 1200px;
  margin: 0 auto;
}

.section-label-row {
  margin-bottom: 3.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.section-eyebrow {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: var(--gold);
  text-transform: uppercase;
}

.section-title {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4.5vw, 3rem);
  color: var(--cream);
  line-height: 1.2;
}

.section-desc {
  font-size: 1rem;
  color: var(--text-secondary);
  font-style: italic;
  font-family: var(--serif);
}

/* ═══ PRODUCT GRID ═══ */
.product-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 1.75rem;
}

/* ═══ PRODUCT CARD ═══ */
.product-card {
  background: var(--bg-card);
  border: 1px solid rgba(212,169,87,0.07);
  border-radius: 12px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: border-color 0.3s, transform 0.3s;
}
.product-card:hover {
  border-color: rgba(212,169,87,0.2);
  transform: translateY(-3px);
}
.product-card.featured {
  grid-column: span 1;
  border-color: rgba(212,169,87,0.14);
}
@media (min-width: 800px) {
  .product-card.featured { grid-column: span 2; }
  .product-card.featured .card-poem blockquote p { font-size: 1.25rem; }
}

.card-poem {
  padding: 2rem 2rem 1.5rem;
  border-bottom: 1px solid rgba(122,111,98,0.12);
  background: linear-gradient(135deg, rgba(212,169,87,0.04) 0%, transparent 60%);
}

.card-poem-label {
  display: block;
  font-family: var(--sans);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.7;
  margin-bottom: 1rem;
}

.card-poem blockquote {
  margin: 0;
  border: none;
  padding: 0;
}

.card-poem blockquote p {
  font-family: var(--serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream-muted);
  line-height: 1.9;
  margin: 0;
}

.card-body {
  padding: 1.75rem 2rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  flex: 1;
}

.card-body h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.35rem;
  color: var(--cream);
  line-height: 1.2;
}

.card-desc {
  font-size: 0.9rem;
  color: var(--text-secondary);
  line-height: 1.75;
  flex: 1;
}

.card-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.4rem;
  margin-top: 0.25rem;
}

.tag {
  font-family: var(--sans);
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  color: var(--text-dim);
  border: 1px solid rgba(122,111,98,0.2);
  padding: 0.25rem 0.65rem;
  border-radius: 100px;
}

.card-meta {
  display: flex;
  align-items: baseline;
  gap: 1rem;
  margin-top: 0.5rem;
}

.card-price {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.2rem;
  color: var(--gold);
}

.card-turnaround {
  font-family: var(--sans);
  font-size: 0.75rem;
  color: var(--text-dim);
}

/* ═══ SHOP CLOSING ═══ */
.shop-closing {
  padding: 7rem 2rem;
  text-align: center;
  background: var(--bg-deep);
  position: relative;
  overflow: hidden;
}
.shop-closing::before {
  content: '';
  position: absolute;
  bottom: -20%;
  left: 50%;
  transform: translateX(-50%);
  width: 600px;
  height: 600px;
  background: radial-gradient(ellipse, var(--gold-soft) 0%, transparent 70%);
  pointer-events: none;
}
.shop-closing-inner {
  position: relative;
  z-index: 1;
  max-width: 550px;
  margin: 0 auto;
}
.shop-closing h2 {
  font-family: var(--serif);
  font-weight: 300;
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  color: var(--cream);
  line-height: 1.3;
  margin-bottom: 1rem;
}
.shop-closing p {
  color: var(--text-secondary);
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 2rem;
}

/* ═══ RESPONSIVE (SHOP) ═══ */
@media (max-width: 768px) {
  .site-nav { padding: 1rem 1.5rem; }
  .nav-link { display: none; }
  .shop-hero { padding: 8rem 1.5rem 4rem; }
  .product-section { padding: 4rem 1.5rem 5rem; }
  .product-section.bg-warm { padding: 4rem 1.5rem 5rem; }
  .product-grid { grid-template-columns: 1fr; gap: 1.25rem; }
  .product-card.featured { grid-column: span 1; }
  .card-poem { padding: 1.5rem 1.5rem 1.25rem; }
  .card-body { padding: 1.5rem 1.5rem 1.75rem; }
  .category-nav { padding: 0.75rem 1rem; gap: 0.4rem; }
  .category-pill { font-size: 0.7rem; padding: 0.45rem 0.9rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: center; }
  .btn-primary, .btn-ghost { width: 100%; max-width: 280px; text-align: center; }
  .card-meta { flex-direction: column; gap: 0.25rem; }
}