@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,700;1,400;1,700&family=Inter:wght@300;400;500&display=swap');

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

:root {
  --night:     #0e0e0e;
  --charcoal:  #1c1c1c;
  --ash:       #2e2e2e;
  --ivory:     #f5f0e8;
  --cream:     #ede6d6;
  --gold:      #c9a84c;
  --gold-dim:  #a8893a;
  --blush:     #d4a9a9;
  --muted:     #888880;
  --rule:      #333330;
}

html { scroll-behavior: smooth; }

body {
  background: var(--night);
  color: var(--ivory);
  font-family: 'Inter', sans-serif;
  font-weight: 300;
  font-size: 16px;
  line-height: 1.75;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.4rem 3rem;
  background: rgba(14,14,14,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--rule);
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.3rem;
  font-style: italic;
  color: var(--ivory);
  text-decoration: none;
  letter-spacing: 0.02em;
}
.nav-logo span { color: var(--gold); }
.nav-links { display: flex; gap: 2.5rem; align-items: center; }
.nav-links a {
  font-size: 0.75rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color 0.2s;
}
.nav-links a:hover, .nav-links a.active { color: var(--ivory); }
.nav-links a.active { color: var(--gold); }
.nav-cta {
  background: var(--gold) !important;
  color: var(--night) !important;
  padding: 0.6rem 1.4rem !important;
  font-weight: 500 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--gold-dim) !important; color: var(--night) !important; }
.nav-toggle { display: none; background: none; border: none; color: var(--ivory); font-size: 1.5rem; cursor: pointer; }

/* ── PAGE HERO (used on Pricing/Contact) ── */
.page-hero {
  padding: 9rem 2rem 5rem;
  text-align: center;
  background: var(--night);
  position: relative;
}
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem;
}
.page-hero-eyebrow::before, .page-hero-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 400;
  line-height: 1.1;
}
.page-hero h1 .italic { font-style: italic; color: var(--gold); }
.page-hero-sub {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 560px;
  margin: 1.5rem auto 0;
  line-height: 1.85;
}

/* ── HERO (Home only) ── */
.hero {
  min-height: 100vh;
  display: grid;
  place-items: center;
  text-align: center;
  padding: 10rem 2rem 6rem;
  position: relative;
  overflow: hidden;
}
.hero-bg {
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 60% at 50% 30%, rgba(201,168,76,0.07) 0%, transparent 65%),
    radial-gradient(ellipse 80% 40% at 20% 80%, rgba(212,169,169,0.05) 0%, transparent 60%);
}
.hero-content { position: relative; z-index: 1; max-width: 820px; }
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 1rem;
  font-size: 0.7rem; letter-spacing: 0.25em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 2.5rem;
}
.hero-eyebrow::before, .hero-eyebrow::after {
  content: ''; display: block; width: 32px; height: 1px; background: var(--gold);
}
.hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(3.5rem, 9vw, 7.5rem);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.01em;
  margin-bottom: 0.15em;
}
.hero h1 .italic { font-style: italic; color: var(--gold); }
.hero-rule {
  width: 1px; height: 60px;
  background: linear-gradient(to bottom, var(--gold), transparent);
  margin: 2.5rem auto;
}
.hero-sub {
  font-size: 1.1rem;
  color: var(--muted);
  max-width: 500px;
  margin: 0 auto 3.5rem;
  line-height: 1.85;
}
.hero-buttons { display: flex; gap: 1rem; justify-content: center; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn-gold {
  background: var(--gold);
  color: var(--night);
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  font-weight: 500;
  transition: background 0.2s, transform 0.15s;
  display: inline-block;
  border: none;
  cursor: pointer;
}
.btn-gold:hover { background: var(--gold-dim); transform: translateY(-2px); }
.btn-ghost {
  border: 1px solid var(--rule);
  color: var(--muted);
  padding: 1rem 2.5rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  text-decoration: none;
  transition: border-color 0.2s, color 0.2s;
  display: inline-block;
}
.btn-ghost:hover { border-color: var(--ivory); color: var(--ivory); }

/* ── STATEMENT ── */
.statement {
  background: var(--ivory);
  color: var(--night);
  padding: 8rem 2rem;
  text-align: center;
}
.statement-inner { max-width: 720px; margin: 0 auto; }
.statement p {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.4rem, 3vw, 2.1rem);
  font-weight: 400;
  line-height: 1.65;
  margin-bottom: 1.5rem;
  color: var(--charcoal);
}
.statement p.founder-attr {
  font-family: 'Inter', sans-serif;
  font-size: 0.82rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-dim);
  margin-top: 2.5rem;
  font-weight: 400;
}

/* ── SECTION GENERIC ── */
.section { padding: 8rem 2rem; max-width: 1100px; margin: 0 auto; }
.section-eyebrow {
  font-size: 0.7rem; letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--gold); display: block; margin-bottom: 1.2rem; text-align: center;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  font-weight: 400; line-height: 1.15; margin-bottom: 1rem; text-align: center;
}
.section-sub {
  text-align: center; color: var(--muted); max-width: 560px; margin: 0 auto 3rem; font-size: 0.98rem;
}

/* ── WHAT GRID (4-step process) ── */
.what-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 0; margin-top: 4rem; border: 1px solid var(--rule);
}
.what-card {
  padding: 2.5rem; border-right: 1px solid var(--rule); border-bottom: 1px solid var(--rule);
  transition: background 0.25s;
}
.what-card:hover { background: var(--charcoal); }
.what-card:last-child { border-right: none; }
.what-num {
  font-family: 'Playfair Display', serif; font-size: 3rem; color: var(--rule);
  line-height: 1; margin-bottom: 1.5rem; font-style: italic;
}
.what-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 400;
  margin-bottom: 0.75rem; color: var(--ivory);
}
.what-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.8; }

/* ── PRODUCT CARDS ── */
.products-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2px; margin-top: 4rem; background: var(--rule);
}
.product-card { background: var(--charcoal); padding: 3rem 2.5rem; position: relative; }
.product-card.hero-card { background: var(--night); }
.product-tag {
  font-size: 0.65rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 1.5rem; display: block;
}
.product-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.6rem; font-weight: 400;
  font-style: italic; margin-bottom: 1rem; line-height: 1.2;
}
.product-card p { font-size: 0.9rem; color: var(--muted); line-height: 1.8; }
.product-price {
  margin-top: 2rem; font-family: 'Playfair Display', serif; font-size: 2.2rem;
  color: var(--gold); font-weight: 400;
}
.product-price span { font-size: 1rem; vertical-align: top; margin-top: 0.4rem; display: inline-block; }

/* ── PRICING CARDS ── */
.pricing-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem; margin-top: 4rem;
}
.pricing-card {
  background: var(--charcoal); border: 1px solid var(--rule);
  padding: 2.75rem 2.25rem; position: relative; transition: transform 0.2s, border-color 0.2s;
}
.pricing-card:hover { transform: translateY(-4px); }
.pricing-card.featured { border-color: var(--gold); }
.featured-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold); color: var(--night);
  font-size: 0.62rem; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.3rem 1rem; font-weight: 500;
}
.pricing-card h3 {
  font-family: 'Playfair Display', serif; font-size: 1.5rem; font-weight: 400;
  font-style: italic; margin-bottom: 0.3rem; color: var(--ivory);
}
.pricing-card .tier-desc { font-size: 0.82rem; color: var(--muted); margin-bottom: 1.5rem; }
.pricing-price {
  font-family: 'Playfair Display', serif; font-size: 2.75rem; font-weight: 400;
  color: var(--gold); margin-bottom: 1.5rem; line-height: 1;
}
.pricing-price span { font-size: 1.2rem; vertical-align: top; margin-top: 0.5rem; display: inline-block; }
.pricing-includes { list-style: none; margin-bottom: 2rem; }
.pricing-includes li {
  font-size: 0.86rem; color: var(--muted); padding: 0.55rem 0;
  border-bottom: 1px solid var(--rule); display: flex; align-items: flex-start; gap: 0.6rem;
}
.pricing-includes li::before { content: '—'; color: var(--gold); flex-shrink: 0; }
.pricing-card .btn-gold, .pricing-card .btn-ghost { display: block; text-align: center; width: 100%; }

/* ── ADD-ONS ── */
.addons-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem; margin-top: 3rem;
}
.addon-card {
  background: var(--charcoal); border: 1px solid var(--rule); padding: 2rem;
}
.addon-card h4 {
  font-family: 'Playfair Display', serif; font-style: italic; font-size: 1.15rem;
  margin-bottom: 0.6rem; color: var(--ivory);
}
.addon-card p { font-size: 0.85rem; color: var(--muted); margin-bottom: 1rem; }
.addon-price { font-family: 'Playfair Display', serif; color: var(--gold); font-size: 1.4rem; }

/* ── FAQ ── */
.faq-list { max-width: 720px; margin: 4rem auto 0; }
.faq-item { border-bottom: 1px solid var(--rule); padding: 1.5rem 0; }
.faq-q {
  font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ivory);
  margin-bottom: 0.6rem; font-style: italic;
}
.faq-a { font-size: 0.92rem; color: var(--muted); line-height: 1.8; }

/* ── FOUNDER QUOTE ── */
.founder {
  background: var(--ivory); color: var(--night); padding: 7rem 2rem; text-align: center;
}
.founder-inner { max-width: 640px; margin: 0 auto; }
.founder blockquote {
  font-family: 'Playfair Display', serif; font-size: clamp(1.3rem, 2.6vw, 1.8rem);
  font-weight: 400; font-style: italic; line-height: 1.6; margin-bottom: 1.5rem; color: var(--charcoal);
}
.founder cite {
  font-size: 0.78rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--gold-dim); font-style: normal;
}

/* ── CONTACT FORM ── */
.contact-wrap { padding: 7rem 2rem 9rem; max-width: 560px; margin: 0 auto; }
.contact-form { display: flex; flex-direction: column; gap: 0; text-align: left; }
.contact-form label {
  font-size: 0.7rem; letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--gold-dim); margin-bottom: 0.5rem; margin-top: 1.4rem; display: block;
}
.contact-form input, .contact-form textarea, .contact-form select {
  background: transparent; border: none; border-bottom: 1px solid var(--rule);
  padding: 0.85rem 0; font-family: 'Inter', sans-serif; font-size: 0.95rem;
  color: var(--ivory); outline: none; width: 100%; transition: border-color 0.2s;
}
.contact-form input:focus, .contact-form textarea:focus, .contact-form select:focus { border-color: var(--gold); }
.contact-form input::placeholder, .contact-form textarea::placeholder { color: var(--muted); }
.contact-form textarea { height: 100px; resize: none; }
.contact-form select { color: var(--muted); }
.contact-form select option { background: var(--charcoal); color: var(--ivory); }
.contact-submit { margin-top: 2.5rem; text-align: center; }

.contact-direct {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr));
  gap: 1.5rem; margin-top: 4rem; text-align: center;
}
.contact-direct-item { border: 1px solid var(--rule); padding: 2rem 1.5rem; }
.contact-direct-item .label {
  font-size: 0.68rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--gold);
  margin-bottom: 0.6rem; display: block;
}
.contact-direct-item .value { font-family: 'Playfair Display', serif; font-size: 1.1rem; color: var(--ivory); }

/* ── FOOTER ── */
footer {
  border-top: 1px solid var(--rule); padding: 2.5rem 3rem;
  display: flex; justify-content: space-between; align-items: center;
  font-size: 0.75rem; color: var(--muted); flex-wrap: wrap; gap: 1rem;
}
.footer-logo { font-family: 'Playfair Display', serif; font-style: italic; font-size: 1rem; color: var(--ivory); }
.footer-logo span { color: var(--gold); }
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a { color: var(--muted); text-decoration: none; transition: color 0.2s; }
.footer-links a:hover { color: var(--gold); }

/* ── IMAGE SLOTS (placeholders until real photos are added) ── */
.img-slot {
  position: relative;
  background: var(--charcoal);
  border: 1px dashed var(--gold-dim);
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-slot img {
  width: 100%; height: 100%; object-fit: cover; display: block;
}
.img-slot-label {
  position: absolute; inset: 0;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  text-align: center; padding: 1.5rem;
  background: rgba(14,14,14,0.55);
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem; letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--gold);
  line-height: 1.6;
}
.img-slot-label span {
  display: block; margin-top: 0.5rem; font-size: 0.7rem; letter-spacing: 0.02em;
  text-transform: none; color: var(--muted); max-width: 320px;
}
/* Once a real image loads successfully, hide the label overlay */
.img-slot:not(.img-missing) .img-slot-label { display: none; }
.img-slot.img-missing img { display: none; }
.img-slot.img-missing { background: var(--ash); }

.img-slot-wide { width: 100%; max-width: 1100px; height: 380px; margin: 0 auto; }
.img-slot-square { width: 280px; height: 280px; margin-top: 2.5rem; border-radius: 4px; }
.img-slot-card { width: 100%; height: 180px; margin-bottom: 1.5rem; }

@media (max-width: 640px) {
  .img-slot-wide { height: 240px; }
  .img-slot-square { width: 180px; height: 180px; }
}

/* ── RESPONSIVE ── */
@media (max-width: 760px) {
  .nav-links { position: fixed; top: 64px; left: 0; right: 0; background: var(--night);
    flex-direction: column; align-items: flex-start; padding: 1.5rem 2rem; gap: 1.2rem;
    border-bottom: 1px solid var(--rule); display: none; }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .nav-cta { margin-top: 0.5rem; }
}
@media (max-width: 640px) {
  nav { padding: 1rem 1.25rem; }
  footer { flex-direction: column; text-align: center; }
  .contact-direct { grid-template-columns: 1fr; }
}
