/* ── Root & Rise — Design System ── */

:root {
  --cream: #FDFAF5;
  --warm-gold: #C9A96E;
  --soft-violet: #8B6FAE;
  --sage: #7A9E7E;
  --deep-sage: #5C7E5F;
  --warm-sand: #EDE3D6;
  --charcoal: #2C2825;
  --warm-gray: #6B6259;
  --light-warm: #FAF6F0;

  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-sans: 'Lato', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-display: 'Cormorant Garamond', Georgia, serif;

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 24px;
  --radius-full: 9999px;

  --shadow-soft: 0 2px 16px rgba(44,40,37,0.08);
  --shadow-card: 0 4px 24px rgba(44,40,37,0.10);
  --shadow-hover: 0 8px 32px rgba(44,40,37,0.14);
}

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

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

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-sans);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 600;
  line-height: 1.2;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); letter-spacing: -0.01em; }
h2 { font-size: clamp(1.8rem, 3.5vw, 2.6rem); }
h3 { font-size: clamp(1.2rem, 2vw, 1.5rem); }

p { max-width: 60ch; }

a { color: var(--soft-violet); text-decoration: none; }
a:hover { color: var(--warm-gold); }

/* ── Container ── */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.875rem 2rem;
  border: none;
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--warm-gold) 0%, #B8924F 100%);
  color: #fff;
  box-shadow: 0 4px 16px rgba(201,169,110,0.35);
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(201,169,110,0.45);
  color: #fff;
}
.btn-primary:active { transform: translateY(0); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--warm-gold);
  color: var(--charcoal);
}
.btn-outline:hover {
  background: var(--warm-gold);
  color: #fff;
  transform: translateY(-1px);
}

/* ── Decorative Divider ── */
.divider {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin: 1.5rem 0;
}
.divider::before, .divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--warm-gold), transparent);
  opacity: 0.5;
}
.divider-icon {
  color: var(--warm-gold);
  font-size: 1.25rem;
  opacity: 0.7;
}

/* ── HERO ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: linear-gradient(160deg, var(--cream) 0%, var(--warm-sand) 60%, var(--cream) 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  padding: clamp(5rem, 10vw, 8rem) 0;
  width: 100%;
}

.hero-content {
  max-width: 560px;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--soft-violet);
  margin-bottom: 1.5rem;
}
.hero-eyebrow-icon {
  width: 20px;
  height: 20px;
}

.hero-headline {
  color: var(--charcoal);
  margin-bottom: 1.5rem;
}
.hero-headline em {
  font-style: italic;
  color: var(--soft-violet);
}

.hero-sub {
  font-size: 1.125rem;
  color: var(--warm-gray);
  margin-bottom: 2.5rem;
  line-height: 1.7;
}

.hero-form {
  display: flex;
  gap: 0.75rem;
  max-width: 440px;
}
.hero-form input {
  flex: 1;
  padding: 0.875rem 1.25rem;
  border: 1.5px solid rgba(201,169,110,0.35);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  background: #fff;
  color: var(--charcoal);
  outline: none;
  transition: border-color 0.2s;
}
.hero-form input::placeholder { color: var(--warm-gray); opacity: 0.7; }
.hero-form input:focus { border-color: var(--warm-gold); box-shadow: 0 0 0 3px rgba(201,169,110,0.12); }

.hero-image-wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-image {
  width: 100%;
  max-width: 480px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  object-fit: cover;
  aspect-ratio: 4/5;
}
.hero-image-glow {
  position: absolute;
  inset: -20px;
  border-radius: var(--radius-lg);
  background: radial-gradient(ellipse at center, rgba(139,111,174,0.15) 0%, transparent 70%);
  z-index: -1;
  filter: blur(20px);
}

.hero-scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: var(--warm-gray);
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  opacity: 0.6;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(-6px); }
}

/* ── SECTION BASE ── */
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section-label {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--warm-gold);
  margin-bottom: 0.75rem;
}

/* ── FOUR PILLARS ── */
.pillars { background: var(--cream); }

.pillars-header {
  text-align: center;
  max-width: 600px;
  margin: 0 auto 4rem;
}
.pillars-header h2 { margin-bottom: 1rem; }
.pillars-header p { color: var(--warm-gray); margin: 0 auto; }

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

.pillar-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2.5rem;
  border: 1px solid rgba(201,169,110,0.2);
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
  overflow: hidden;
}
.pillar-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--warm-gold), var(--soft-violet));
  opacity: 0;
  transition: opacity 0.25s;
}
.pillar-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-hover);
}
.pillar-card:hover::before { opacity: 1; }

.pillar-icon {
  width: 52px;
  height: 52px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
  margin-bottom: 1.25rem;
}
.pillar-icon-1 { background: rgba(201,169,110,0.15); }
.pillar-icon-2 { background: rgba(139,111,174,0.12); }
.pillar-icon-3 { background: rgba(122,158,126,0.15); }
.pillar-icon-4 { background: rgba(44,40,37,0.07); }

.pillar-card h3 { margin-bottom: 0.75rem; color: var(--charcoal); }
.pillar-card p { color: var(--warm-gray); font-size: 0.9375rem; }

/* ── ABOUT ── */
.about {
  background: linear-gradient(180deg, var(--cream) 0%, var(--warm-sand) 100%);
}
.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.about-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.about-symbol {
  width: 280px;
  height: 280px;
  border-radius: 50%;
  background: radial-gradient(circle at 30% 30%, rgba(201,169,110,0.25) 0%, rgba(139,111,174,0.12) 50%, rgba(122,158,126,0.1) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 0 60px rgba(201,169,110,0.15);
}
.about-symbol-inner {
  width: 160px;
  height: 160px;
  border-radius: 50%;
  border: 2px solid rgba(201,169,110,0.3);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-size: 3rem;
  color: var(--warm-gold);
  opacity: 0.7;
}
.about-content h2 { margin-bottom: 1.25rem; }
.about-content p { color: var(--warm-gray); margin-bottom: 1rem; }
.about-content p:last-of-type { margin-bottom: 2rem; }

/* ── EMAIL CTA ── */
.email-cta {
  background: linear-gradient(135deg, #2C2825 0%, #3D3530 50%, #2C2825 100%);
  color: #fff;
  position: relative;
  overflow: hidden;
}
.email-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -20%;
  width: 70%;
  height: 200%;
  background: radial-gradient(ellipse at center, rgba(201,169,110,0.08) 0%, transparent 60%);
  pointer-events: none;
}
.email-cta-inner {
  text-align: center;
  position: relative;
  z-index: 1;
  max-width: 600px;
  margin: 0 auto;
}
.email-cta h2 { color: #fff; margin-bottom: 1rem; }
.email-cta p { color: rgba(255,255,255,0.65); margin-bottom: 2.5rem; max-width: none; }
.email-cta-form {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
}
.email-cta-form input {
  flex: 1;
  min-width: 260px;
  padding: 0.875rem 1.5rem;
  border: 1.5px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-full);
  font-family: var(--font-sans);
  font-size: 0.9375rem;
  background: rgba(255,255,255,0.08);
  color: #fff;
  outline: none;
  transition: border-color 0.2s, background 0.2s;
}
.email-cta-form input::placeholder { color: rgba(255,255,255,0.45); }
.email-cta-form input:focus {
  border-color: var(--warm-gold);
  background: rgba(255,255,255,0.12);
}
.email-cta-form .btn-primary {
  background: linear-gradient(135deg, var(--warm-gold) 0%, #B8924F 100%);
  white-space: nowrap;
}
.email-cta-tagline {
  margin-top: 1.5rem;
  font-size: 0.8125rem;
  color: rgba(255,255,255,0.4);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
}

/* ── FOOTER ── */
.footer {
  background: #231F1D;
  color: rgba(255,255,255,0.5);
  padding: 2.5rem 0;
}
.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-brand {
  font-family: var(--font-serif);
  font-size: 1.125rem;
  font-weight: 600;
  color: rgba(255,255,255,0.8);
  letter-spacing: 0.02em;
}
.footer-links {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}
.footer-links a {
  color: rgba(255,255,255,0.45);
  font-size: 0.875rem;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--warm-gold); }
.footer-copy {
  font-size: 0.8125rem;
  width: 100%;
  text-align: center;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,0.08);
  margin-top: 1.5rem;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; gap: 2.5rem; text-align: center; }
  .hero-form { max-width: 100%; justify-content: center; }
  .hero-image-wrap { order: -1; }
  .hero-image { max-width: 360px; aspect-ratio: 4/3; }
  .hero-scroll-hint { display: none; }

  .pillars-grid { grid-template-columns: 1fr; }

  .about-inner { grid-template-columns: 1fr; gap: 3rem; text-align: center; }
  .about-symbol { margin: 0 auto; }
}

@media (max-width: 600px) {
  .hero-form { flex-direction: column; }
  .hero-form input, .hero-form .btn { width: 100%; }
  .email-cta-form { flex-direction: column; align-items: stretch; }
  .email-cta-form input, .email-cta-form .btn { width: 100%; }
  .footer-inner { flex-direction: column; text-align: center; }
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to { opacity: 1; transform: translateY(0); }
}
.animate-fade-up {
  animation: fadeUp 0.6s ease-out forwards;
  opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.3s; }
.delay-4 { animation-delay: 0.4s; }
.delay-5 { animation-delay: 0.5s; }