/* ===== ANNOUNCEMENT BAR ===== */
.announcement-bar {
  background: var(--deep);
  color: var(--cream);
  text-align: center;
  padding: 0.7rem 1.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.04em;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 101;
}

.announcement-bar p { color: var(--cream); margin: 0; }
.announcement-bar a { color: var(--blush); text-decoration: underline; }
.announcement-bar a:hover { color: var(--white); }

/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --cream: #FAF7F4;
  --blush: #E8C4B8;
  --rose: #C2706A;
  --deep: #3B2A2A;
  --charcoal: #2C2C2C;
  --mid: #7A6A6A;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Jost', sans-serif;
}

html { scroll-behavior: smooth; }

body {
  font-family: var(--font-sans);
  color: var(--charcoal);
  background: var(--white);
  font-size: 16px;
  line-height: 1.7;
}

h1, h2, h3 {
  font-family: var(--font-serif);
  font-weight: 400;
  line-height: 1.2;
  color: var(--deep);
}

h1 { font-size: clamp(3rem, 6vw, 5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 1.5rem; }
h3 { font-size: 1.6rem; margin-bottom: 0.5rem; }

p { color: var(--mid); margin-bottom: 1rem; }

a { text-decoration: none; color: inherit; }

ul { list-style: none; padding: 0; }
ul li { padding: 0.3rem 0; color: var(--mid); font-size: 0.95rem; }
ul li::before { content: "— "; color: var(--rose); }

/* ===== LAYOUT ===== */
.container { max-width: 1100px; margin: 0 auto; padding: 0 2rem; }
.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.center { text-align: center; }

section { padding: 7rem 0; }

/* ===== BUTTONS ===== */
.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s;
  border: none;
  cursor: pointer;
}
.btn-primary:hover { background: var(--deep); }

.btn-secondary {
  display: inline-block;
  color: var(--rose);
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--rose);
  padding-bottom: 2px;
  transition: color 0.3s, border-color 0.3s;
}
.btn-secondary:hover { color: var(--deep); border-color: var(--deep); }

.btn-outline {
  display: inline-block;
  border: 1px solid var(--rose);
  color: var(--rose);
  padding: 0.85rem 2.2rem;
  border-radius: 2px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: all 0.3s;
}
.btn-outline:hover { background: var(--rose); color: var(--white); }

.full-width { width: 100%; }

/* ===== LABELS ===== */
.section-label {
  font-family: var(--font-sans);
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  display: block;
  margin-bottom: 0.8rem;
}

/* ===== NAV ===== */
nav {
  position: fixed;
  top: 2.5rem; left: 0; right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3rem;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(0,0,0,0.06);
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  color: var(--deep);
  letter-spacing: 0.02em;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 0.6rem;
}


.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none;
}

.nav-links a {
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mid);
  transition: color 0.3s;
}
.nav-links a:hover { color: var(--rose); }

.nav-cta {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--rose);
  border: 1px solid var(--rose);
  padding: 0.5rem 1.4rem;
  border-radius: 2px;
  transition: all 0.3s;
}
.nav-cta:hover { background: var(--rose); color: var(--white); }

/* ===== HERO ===== */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--cream);
  padding: 13rem 3rem 6rem;
}

.hero-content { max-width: 680px; margin: 0 auto; }

.hero-eyebrow {
  font-size: 0.78rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.5rem;
}

.hero h1 { margin-bottom: 1.5rem; }

.hero-sub {
  font-size: 1.15rem;
  color: var(--mid);
  max-width: 500px;
  margin-bottom: 2.5rem;
}

/* ===== HERO TESTIMONIAL ===== */
.hero-testimonial {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(0,0,0,0.1);
  max-width: 420px;
}

.hero-testimonial p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.hero-testimonial span {
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  color: var(--rose);
  text-transform: uppercase;
}

/* ===== HERO CTA GROUP ===== */
.hero-cta-group { display: flex; flex-direction: column; gap: 0.6rem; margin-bottom: 0; }
.hero-micro {
  font-size: 0.78rem;
  color: var(--mid);
  letter-spacing: 0.05em;
}

/* ===== HOW IT WORKS ===== */
.how-it-works { background: var(--white); }

.steps-grid {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 1rem;
  margin-bottom: 3rem;
}

.step {
  flex: 1;
  max-width: 280px;
  text-align: center;
  padding: 2rem 1.5rem;
  background: var(--cream);
  border-radius: 2px;
}

.step-number {
  font-family: var(--font-serif);
  font-size: 2.5rem;
  color: var(--rose);
  opacity: 0.4;
  line-height: 1;
  margin-bottom: 0.8rem;
}

.step h3 { font-size: 1.3rem; margin-bottom: 0.5rem; }
.step p { font-size: 0.95rem; margin: 0; }

.step-divider {
  font-size: 1.5rem;
  color: var(--blush);
  padding-top: 3rem;
  flex-shrink: 0;
}

.how-cta { text-align: center; display: flex; flex-direction: column; align-items: center; gap: 0.6rem; }
.micro-copy { font-size: 0.78rem; color: var(--mid); letter-spacing: 0.05em; }

/* ===== ABOUT ===== */
.about { background: var(--white); }

.image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--cream);
  border: 1px dashed var(--blush);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--mid);
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  border-radius: 2px;
}

.about-text p { max-width: 460px; }

.about-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 400;
  color: var(--deep);
  margin-bottom: 0.5rem;
}

.about-name {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 0.08em;
  margin-bottom: 1.2rem;
}

/* ===== HOT TAKE CARD ===== */
.two-col-services {
  grid-template-columns: 1fr 1fr !important;
  max-width: 800px;
  margin: 0 auto;
}

.hot-take {
  background: var(--deep) !important;
  border: none !important;
}

.hot-take h3,
.hot-take p,
.hot-take li { color: var(--cream) !important; }

.hot-take .service-icon { color: var(--blush) !important; }
.hot-take .price { color: var(--cream) !important; }
.hot-take .price-note { color: var(--blush) !important; }
.hot-take .card-micro { color: var(--blush) !important; opacity: 0.8; }

@media (max-width: 700px) {
  .two-col-services { grid-template-columns: 1fr !important; }
}

/* ===== SERVICES ===== */
.services { background: var(--cream); }
.services h2 { margin-bottom: 3.5rem; }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.service-card {
  background: var(--white);
  padding: 2.5rem 2rem;
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.06);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  position: relative;
  transition: box-shadow 0.3s;
}

.service-card > a {
  margin-top: auto;
}

.service-card:hover { box-shadow: 0 8px 40px rgba(0,0,0,0.08); }

.service-card.featured {
  border-color: var(--rose);
  background: var(--deep);
}

.service-card.featured h3,
.service-card.featured p,
.service-card.featured li,
.service-card.featured .service-icon { color: var(--cream); }

.service-card.featured .price { color: var(--blush); }

.service-badge {
  position: absolute;
  top: -12px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--rose);
  color: var(--white);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.3rem 1rem;
  border-radius: 20px;
  white-space: nowrap;
}

.service-icon { font-size: 1.2rem; color: var(--rose); }
.price { font-family: var(--font-serif); font-size: 2rem; color: var(--deep); margin: 0; }
.price-note { font-family: var(--font-sans); font-size: 0.9rem; color: var(--mid); font-weight: 300; }
.service-card.featured .price-note { color: var(--blush); }

.original-price { font-size: 0.85rem; color: var(--mid); margin: -0.5rem 0 0.5rem; }
.service-card.featured .original-price { color: var(--blush); opacity: 0.8; }

.founding-badge {
  background: var(--rose) !important;
}

/* ===== EVENTS ===== */
.events { background: var(--cream); }

.events-sub {
  font-size: 1rem;
  color: var(--mid);
  max-width: 540px;
  margin: 0 auto 3.5rem;
}

.events-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.event-category {
  background: var(--white);
  border-radius: 2px;
  border: 1px solid rgba(0,0,0,0.06);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.event-category-header {
  background: var(--deep);
  padding: 1.5rem 2rem;
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.event-category-header h3 {
  color: var(--cream);
  font-size: 1.4rem;
  margin: 0;
}

.event-type-icon { font-size: 1.3rem; }

.event-coming-soon {
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  flex: 1;
}

.event-coming-soon .btn-outline {
  margin-top: auto;
}

.event-coming-label {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin: 0;
}

.event-teaser {
  font-size: 0.9rem;
  color: var(--mid);
  font-style: italic;
  margin: 0;
}

@media (max-width: 700px) {
  .events-grid { grid-template-columns: 1fr; }
}

/* ===== TESTIMONIALS ===== */
.testimonials { background: var(--white); }
.testimonials h2 { margin-bottom: 3.5rem; }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
}

.testimonial-card {
  background: var(--cream);
  padding: 2.5rem;
  border-radius: 2px;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.testimonial-card p {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  line-height: 1.7;
  color: var(--deep);
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.author-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--rose);
  color: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 1.1rem;
  flex-shrink: 0;
}

.testimonial-author strong { display: block; color: var(--deep); font-size: 0.9rem; }
.testimonial-author span { font-size: 0.8rem; color: var(--mid); }

/* ===== CARD MICRO COPY ===== */
.card-micro {
  font-size: 0.78rem;
  color: var(--mid);
  text-align: center;
  letter-spacing: 0.03em;
  margin: 0;
}
.service-card.featured .card-micro { color: var(--blush); opacity: 0.8; }

/* ===== CLOSING CTA ===== */
.closing-cta {
  background: var(--deep);
  padding: 6rem 0;
  text-align: center;
}

.closing-cta-inner { max-width: 600px; }

.closing-cta h2 {
  color: var(--cream);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: 1rem;
}

.closing-cta p {
  color: var(--blush);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 2.5rem;
}

.btn-light {
  display: inline-block;
  background: var(--cream);
  color: var(--deep);
  padding: 0.95rem 2.5rem;
  border-radius: 2px;
  font-size: 0.9rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: background 0.3s, color 0.3s;
}
.btn-light:hover { background: var(--white); }

/* ===== CONTACT ===== */
.contact { background: var(--cream); }

.contact-inner { max-width: 700px; }

.contact-sub {
  font-size: 1rem;
  color: var(--mid);
  margin-bottom: 3rem;
}

.contact-form { display: flex; flex-direction: column; gap: 1rem; }

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

input, select, textarea {
  width: 100%;
  padding: 0.9rem 1.2rem;
  border: 1px solid rgba(0,0,0,0.12);
  border-radius: 2px;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--charcoal);
  background: var(--white);
  outline: none;
  transition: border-color 0.3s;
}

input:focus, select:focus, textarea:focus { border-color: var(--rose); }

textarea { resize: vertical; }

.form-micro {
  text-align: center;
  font-size: 0.78rem;
  color: var(--mid);
  margin: 0;
  letter-spacing: 0.03em;
}

/* ===== FOOTER ===== */
footer {
  background: var(--deep);
  color: rgba(255,255,255,0.4);
  text-align: center;
  padding: 2rem;
  font-size: 0.85rem;
}

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .two-col { grid-template-columns: 1fr; gap: 3rem; }
  .services-grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
  .testimonials-grid { grid-template-columns: 1fr; }
  nav { padding: 1.2rem 1.5rem; }
  .nav-links { display: none; }
  .steps-grid { flex-direction: column; align-items: center; }
  .step-divider { padding-top: 0; transform: rotate(90deg); }
}

@media (max-width: 600px) {
  .form-row { grid-template-columns: 1fr; }
  .hero { padding: 8rem 1.5rem 4rem; }
  section { padding: 5rem 0; }
}
