/* =====================
   Tokens
   ===================== */
:root {
  --cream: #faf6ee;
  --cream-deep: #f3ead8;
  --dark: #1a1a1a;
  --gold: #b8860b;
  --gold-bright: #d4a017;
  --gold-glow: rgba(184, 134, 11, 0.18);
  --gold-glow-soft: rgba(184, 134, 11, 0.08);
  --muted: #5a5a5a;
  --border: #e2d5b8;
  --border-glow: rgba(184, 134, 11, 0.25);
  --max-w: 1100px;
  --narrow-w: 680px;
}

/* =====================
   Reset + Base
   ===================== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--dark);
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1rem;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
}

/* =====================
   Layout
   ===================== */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.75rem;
  position: relative;
  z-index: 1;
}

.container.narrow { max-width: var(--narrow-w); }
.centered { text-align: center; }

/* =====================
   Nav
   ===================== */
nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 1.75rem;
  max-width: var(--max-w);
  margin: 0 auto;
  position: relative;
  z-index: 10;
}

.wordmark {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--dark);
  text-decoration: none;
  letter-spacing: -0.01em;
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}

.wordmark-logo {
  width: 80px;
  height: 80px;
  display: block;
}

.nav-links {
  display: flex;
  gap: 0.5rem;
}

.nav-link {
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--muted);
  text-decoration: none;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 0.4rem 1rem;
  border: 1px solid var(--border);
  border-radius: 2rem;
  transition: all 0.2s;
  cursor: pointer;
}

.nav-link:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: var(--gold-glow-soft);
}

/* =====================
   Hero
   ===================== */
.hero {
  position: relative;
  padding: 6rem 0 5.5rem;
  overflow: hidden;
  border-bottom: 1px solid var(--border);
}

/* Two-column hero layout */
.hero-layout {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: 2rem;
}

.hero-text { max-width: 580px; }

.hero-figure {
  flex-shrink: 0;
  opacity: 0.92;
}

.hero-figure img {
  width: 380px;
  height: auto;
  display: block;
  filter: drop-shadow(0 0 32px rgba(184, 134, 11, 0.18));
}

/* Dot grid overlay */
.hero-grid-overlay {
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(184, 134, 11, 0.2) 1px, transparent 1px);
  background-size: 32px 32px;
  pointer-events: none;
  z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 20%, transparent 100%);
}

/* Warm ambient glow behind hero content */
.hero-glow {
  position: absolute;
  top: -20%;
  left: -10%;
  width: 120%;
  height: 120%;
  background: radial-gradient(ellipse 60% 50% at 40% 60%, rgba(212, 160, 23, 0.12) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.hero h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(3.5rem, 8vw, 6.5rem);
  font-weight: 700;
  line-height: 1.0;
  letter-spacing: -0.03em;
  margin-bottom: 1.5rem;
  color: var(--dark);
}

.hero h1 em {
  font-style: italic;
  font-weight: 700;
  color: var(--gold);
  text-shadow:
    0 0 40px rgba(184, 134, 11, 0.35),
    0 0 80px rgba(184, 134, 11, 0.15);
}

.tagline {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: clamp(1rem, 2.2vw, 1.25rem);
  font-weight: 500;
  color: var(--muted);
  margin-bottom: 1.5rem;
  letter-spacing: -0.01em;
}

.intro {
  max-width: 560px;
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero-cta {
  display: inline-block;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--cream);
  background: var(--dark);
  text-decoration: none;
  padding: 0.75rem 1.75rem;
  border-radius: 2rem;
  letter-spacing: 0.02em;
  transition: all 0.2s;
  border: 1px solid var(--dark);
  cursor: pointer;
}

.hero-cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  box-shadow: 0 0 24px var(--gold-glow);
}

/* =====================
   Section Eyebrow
   ===================== */
.section-eyebrow {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 2.25rem;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.section-eyebrow::before {
  content: '';
  display: inline-block;
  width: 2rem;
  height: 1px;
  background: var(--gold);
  opacity: 0.6;
}

.centered .section-eyebrow {
  justify-content: center;
}

.centered .section-eyebrow::before {
  display: none;
}

/* =====================
   Products
   ===================== */
.products {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
}

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

.product-card {
  position: relative;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 2.25rem 2.25rem 2rem;
  display: flex;
  flex-direction: column;
  gap: 0.875rem;
  background: #ffffff;
  transition: all 0.25s;
  cursor: default;
  overflow: hidden;
}

/* Subtle corner accent */
.product-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold) 0%, transparent 60%);
  opacity: 0.5;
  transition: opacity 0.25s;
}

.product-card:hover {
  border-color: var(--border-glow);
  box-shadow:
    0 0 0 1px var(--border-glow),
    0 8px 32px rgba(184, 134, 11, 0.1),
    0 2px 8px rgba(0,0,0,0.04);
  transform: translateY(-2px);
}

.product-card:hover::before {
  opacity: 1;
}

.product-card h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.6rem;
  font-weight: 700;
  line-height: 1.2;
  letter-spacing: -0.02em;
  color: var(--dark);
}

.product-card h2 em {
  font-weight: 400;
  font-style: italic;
}

.product-one-liner {
  font-size: 0.95rem;
  color: var(--muted);
  line-height: 1.7;
  flex: 1;
}

.product-price {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--gold);
  text-transform: uppercase;
}

.product-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--dark);
  text-decoration: none;
  margin-top: 0.25rem;
  transition: color 0.15s, gap 0.15s;
  cursor: pointer;
}

.product-link:hover {
  color: var(--gold);
  gap: 0.625rem;
}

.more-coming {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  color: var(--muted);
  font-size: 0.95rem;
  opacity: 0.7;
}

/* =====================
   About
   ===================== */
.about {
  padding: 6rem 0;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

/* Subtle warm wash behind about section */
.about::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 70% 100% at 100% 50%, rgba(184, 134, 11, 0.04) 0%, transparent 70%);
  pointer-events: none;
}

.about-headline {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: clamp(2rem, 4vw, 2.75rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
  margin-bottom: 2.5rem;
  color: var(--dark);
  max-width: 720px;
}

.about-headline em {
  font-style: italic;
  font-weight: 400;
  color: var(--gold);
}

.about-row {
  display: grid;
  grid-template-columns: 200px 1fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 2rem;
  max-width: 820px;
}

.about-photo {
  width: 200px;
  height: 240px;
  object-fit: cover;
  object-position: top;
  border-radius: 4px;
  border: 1px solid var(--border);
}

.about-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 1.25rem;
}

.about-copy p:last-child { margin-bottom: 0; }

.about-closer {
  font-size: 1.05rem;
  color: var(--muted);
  line-height: 1.9;
  max-width: 720px;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}

@media (max-width: 640px) {
  .about-row { grid-template-columns: 1fr; }
  .about-photo { width: 160px; height: 190px; }
}

/* =====================
   Contact
   ===================== */
.contact {
  padding: 5rem 0;
  border-bottom: 1px solid var(--border);
}

.contact p:not(.section-eyebrow) {
  font-size: 1.05rem;
  color: var(--muted);
}

.email-link {
  color: var(--gold);
  text-decoration: none;
  font-weight: 500;
  transition: text-shadow 0.2s;
}

.email-link:hover {
  text-shadow: 0 0 16px var(--gold-glow);
}

/* =====================
   Footer
   ===================== */
footer {
  padding: 2rem 1.75rem;
}

.footer-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  color: var(--muted);
}

.footer-inner a {
  color: var(--muted);
  text-decoration: none;
  transition: color 0.15s;
}

.footer-inner a:hover { color: var(--gold); }

/* =====================
   Reduced motion
   ===================== */
@media (prefers-reduced-motion: reduce) {
  * { transition: none !important; transform: none !important; }
}

/* =====================
   Mobile
   ===================== */
@media (max-width: 900px) {
  .hero-layout { grid-template-columns: 1fr; }
  .hero-figure { display: none; }
}

@media (max-width: 640px) {
  .hero { padding: 4rem 0 3.5rem; }
  .products, .about, .contact { padding: 4rem 0; }
  .product-grid { grid-template-columns: 1fr; }
  nav { padding: 1.25rem 1.25rem; }
  .hero h1 { font-size: 3.25rem; }
}

/* =====================
   Blog
   ===================== */
.blog-hero { padding: 5rem 0 3.5rem; }
.blog-hero h1 { font-size: 3rem; }

.blog-post { padding: 3rem 0 5rem; }

.blog-post-header { margin-bottom: 2.5rem; }
.blog-post-header h1 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin: 0.5rem 0 1rem;
}
.blog-post-meta {
  color: var(--muted);
  font-size: 0.95rem;
}

.blog-post-hero {
  margin: 2rem 0 2.5rem;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 6px 24px rgba(0,0,0,0.08);
}
.blog-post-hero img {
  display: block;
  width: 100%;
  height: auto;
  max-width: 100%;
}

.blog-post-body {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--dark);
}

.blog-post-body > * + * { margin-top: 1.25rem; }

.blog-post-body p {
  margin: 0 0 1.5rem;
}

.blog-post-body h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.65rem;
  font-weight: 700;
  color: var(--dark);
  margin: 3rem 0 1.25rem;
  line-height: 1.3;
}

.blog-post-body h3 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 700;
  font-style: italic;
  color: var(--gold);
  margin: 2.25rem 0 0.75rem;
}

.blog-post-body ul,
.blog-post-body ol {
  margin: 0 0 1.5rem 1.5rem;
}
.blog-post-body li {
  margin-bottom: 0.6rem;
  color: var(--dark);
}

.blog-post-body img {
  display: block;
  max-width: 100%;
  height: auto;
  width: 100%;
  margin: 2.5rem auto;
  border-radius: 8px;
  box-shadow: 0 4px 18px rgba(0,0,0,0.07);
}

.blog-post-body a {
  color: var(--gold);
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.blog-post-body a:hover { border-bottom-color: var(--gold); }

.blog-post-body strong { font-weight: 600; color: var(--dark); }

.blog-post-body blockquote {
  border-left: 3px solid var(--gold);
  padding: 0.25rem 0 0.25rem 1.5rem;
  margin: 2rem 0;
  font-style: italic;
  color: var(--muted);
}

.blog-post-cta {
  margin-top: 4rem;
  padding: 2rem 2rem 2.25rem;
  background: var(--cream-deep);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}
.blog-post-cta .section-eyebrow {
  color: var(--gold);
  font-weight: 600;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.75rem;
}
.blog-post-cta p { margin: 0 0 1rem; color: var(--dark); }

/* Blog index list */
.blog-list { display: flex; flex-direction: column; gap: 2.5rem; }
.blog-list-item {
  padding-bottom: 2.5rem;
  border-bottom: 1px solid var(--border);
}
.blog-list-item:last-child { border-bottom: none; }
.blog-list-item h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.75rem;
  font-weight: 700;
  margin-bottom: 0.5rem;
}
.blog-list-item h2 a {
  color: var(--dark);
  text-decoration: none;
}
.blog-list-item h2 a:hover { color: var(--gold); }
.blog-list-meta {
  color: var(--muted);
  font-size: 0.9rem;
  margin-bottom: 0.75rem;
}
.blog-list-item p { color: var(--dark); margin-bottom: 0.75rem; }

@media (max-width: 640px) {
  .blog-post-header h1 { font-size: 2rem; }
  .blog-post-body h2 { font-size: 1.4rem; }
  .blog-post-body { font-size: 1rem; }
  .blog-post { padding: 2rem 0 3rem; }
}

/* =====================
   Blog visual breakers
   ===================== */

/* Callout card -- white/cream with gold eyebrow label, gold left border.
   Use for: "What made it different," "Key insight," labeled side-notes. */
.blog-post-body .callout {
  background: #ffffff;
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  border-radius: 0 8px 8px 0;
  box-shadow: 0 4px 14px rgba(0,0,0,0.05);
}
.blog-post-body .callout-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.blog-post-body .callout p { margin: 0 0 1rem; color: var(--dark); }
.blog-post-body .callout p:last-child { margin-bottom: 0; }

/* Callout, soft variant -- cream-deep background, same gold treatment.
   Use for: "Breakthrough number one," highlighted facts. */
.blog-post-body .callout-soft {
  background: var(--cream-deep);
  border-left: 4px solid var(--gold);
  padding: 1.5rem 1.75rem;
  margin: 2.5rem 0;
  border-radius: 0 8px 8px 0;
}
.blog-post-body .callout-soft .callout-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.blog-post-body .callout-soft p { margin: 0 0 1rem; color: var(--dark); }
.blog-post-body .callout-soft p:last-child { margin-bottom: 0; }

/* Serif italic quote -- Playfair italic, gold left border, no card background.
   Use for: a key thought you want to slow the reader down on. */
.blog-post-body .serif-quote {
  font-family: 'Playfair Display', Georgia, serif;
  font-style: italic;
  font-size: 1.35rem;
  line-height: 1.5;
  color: var(--dark);
  border-left: 3px solid var(--gold);
  padding: 0.5rem 0 0.5rem 1.75rem;
  margin: 2.5rem 0;
}

/* Dramatic pull-quote -- dark background, gold quote marks, italic Inter.
   Use for: a punch line, a moment of suspense, a "stop and read this" beat. */
.blog-post-body .pull-quote {
  font-family: 'Inter', system-ui, sans-serif;
  font-size: 1.2rem;
  font-style: italic;
  font-weight: 400;
  color: #f4ecd8;
  background: #1a1a1a;
  text-align: left;
  padding: 2rem 2.25rem;
  margin: 3rem 0;
  border-left: 5px solid var(--gold);
  border-radius: 4px;
  line-height: 1.65;
  box-shadow: 0 6px 20px rgba(0,0,0,0.12);
}
.blog-post-body .pull-quote::before {
  content: "\201C";
  font-family: 'Playfair Display', Georgia, serif;
  font-style: normal;
  font-size: 2.75rem;
  line-height: 0.8;
  color: var(--gold);
  display: inline-block;
  margin-right: 0.4rem;
  vertical-align: -0.4rem;
}
.blog-post-body .pull-quote::after {
  content: "\201D";
  font-family: 'Playfair Display', Georgia, serif;
  font-style: normal;
  font-size: 1.75rem;
  line-height: 0;
  color: var(--gold);
  margin-left: 0.2rem;
  vertical-align: -0.5rem;
}

/* Section divider -- three dots, gold, centered. Use between major beats. */
.blog-post-body .section-divider {
  text-align: center;
  margin: 3rem 0;
  color: var(--gold);
  font-size: 1.25rem;
  letter-spacing: 0.6em;
  opacity: 0.65;
}

/* =====================
   Blog subscribe form
   ===================== */
.blog-subscribe {
  margin-top: 4rem;
  padding: 2.25rem 2.25rem 2.5rem;
  background: var(--cream-deep);
  border-left: 4px solid var(--gold);
  border-radius: 6px;
}
.blog-subscribe .callout-label {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.75rem;
}
.blog-subscribe h2 {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--dark);
  margin: 0 0 0.5rem;
  line-height: 1.3;
}
.blog-subscribe p {
  color: var(--muted);
  font-size: 0.95rem;
  margin: 0 0 1.5rem;
}
.blog-subscribe-form {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}
.blog-subscribe-input {
  flex: 1;
  min-width: 220px;
  padding: 0.85rem 1rem;
  font-size: 1rem;
  font-family: inherit;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 6px;
  color: var(--dark);
  transition: border-color 0.15s, box-shadow 0.15s;
}
.blog-subscribe-input:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-glow);
}
.blog-subscribe-button {
  padding: 0.85rem 1.75rem;
  font-size: 1rem;
  font-weight: 600;
  font-family: inherit;
  background: var(--gold);
  color: #ffffff;
  border: none;
  border-radius: 6px;
  cursor: pointer;
  transition: background 0.15s;
}
.blog-subscribe-button:hover { background: #9a7008; }
.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}

/* =====================
   Blog: numbered stations (Kieran Pinball pattern)
   ===================== */
.blog-post-body .station {
  position: relative;
  margin: 4.5rem 0 5rem;
  padding-bottom: 1.5rem;
  text-align: center;
}
.blog-post-body .station-pill {
  display: inline-block;
  background: var(--cream-deep);
  color: var(--dark);
  font-family: 'Inter', sans-serif;
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.55rem 1.4rem;
  border-radius: 999px;
  margin-bottom: 1.5rem;
}
.blog-post-body .station-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--dark);
  line-height: 1.15;
  margin: 0 0 1rem;
}
.blog-post-body .station-title em {
  font-style: italic;
  color: var(--gold);
}
.blog-post-body .station-subhead {
  color: var(--muted);
  font-size: 1.05rem;
  font-style: normal;
  line-height: 1.55;
  max-width: 560px;
  margin: 0 auto 2.25rem;
}
.blog-post-body .station-card {
  background: #ffffff;
  border-radius: 14px;
  padding: 2.5rem 2.75rem;
  box-shadow: 0 12px 36px rgba(0,0,0,0.07), 0 2px 6px rgba(0,0,0,0.04);
  text-align: left;
  position: relative;
}
.blog-post-body .station-card > *:first-child { margin-top: 0; }
.blog-post-body .station-card > *:last-child { margin-bottom: 0; }
.blog-post-body .station-number {
  position: absolute;
  bottom: -22px;
  left: -10px;
  width: 60px;
  height: 60px;
  background: #1a1a1a;
  color: #ffffff;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 1.15rem;
  font-style: italic;
  z-index: 2;
  box-shadow: 0 4px 12px rgba(0,0,0,0.18);
}
.blog-post-body .station-number::after {
  content: '';
  position: absolute;
  left: 100%;
  top: 50%;
  margin-left: 14px;
  width: 180px;
  height: 1px;
  background: var(--border);
}

@media (max-width: 640px) {
  .blog-post-body .station-title { font-size: 1.9rem; }
  .blog-post-body .station-card { padding: 1.75rem 1.5rem; }
  .blog-post-body .station-number { width: 48px; height: 48px; font-size: 1rem; bottom: -16px; }
  .blog-post-body .station-number::after { width: 80px; }
}
