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

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

:root {
  --radius: 0.25rem;
  --background: oklch(0.14 0.012 60);
  --foreground: oklch(0.94 0.015 85);
  --card: oklch(0.18 0.014 60);
  --card-foreground: oklch(0.94 0.015 85);
  --primary: oklch(0.82 0.13 85);
  --primary-foreground: oklch(0.14 0.012 60);
  --secondary: oklch(0.22 0.014 60);
  --muted: oklch(0.20 0.012 60);
  --muted-foreground: oklch(0.70 0.02 80);
  --accent: oklch(0.82 0.13 85);
  --border: oklch(0.82 0.13 85 / 18%);
  --input: oklch(0.82 0.13 85 / 25%);
  --ring: oklch(0.82 0.13 85 / 60%);
  --gold: oklch(0.82 0.13 85);
}

body {
  background-color: var(--background);
  color: var(--foreground);
  font-family: 'Inter', ui-sans-serif, system-ui, sans-serif;
  font-weight: 300;
  -webkit-font-smoothing: antialiased;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', ui-serif, Georgia, serif;
  font-weight: 300;
  letter-spacing: -0.01em;
}

main { flex: 1; }

.tracking-luxe { letter-spacing: 0.32em; }
.font-display { font-family: 'Cormorant Garamond', ui-serif, Georgia, serif; }
.italic { font-style: italic; }

/* Links */
a { color: inherit; text-decoration: none; }

/* Container */
.container { max-width: 80rem; margin: 0 auto; padding: 0 1.5rem; }
@media (min-width: 768px) { .container { padding: 0 2.5rem; } }

/* ── HEADER ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  border-bottom: 1px solid var(--border);
  background: oklch(0.14 0.012 60 / 80%);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}
.site-header__inner {
  max-width: 80rem; margin: 0 auto; padding: 1rem 1.5rem;
  display: flex; align-items: center; justify-content: space-between;
}
@media (min-width: 768px) { .site-header__inner { padding: 1rem 2.5rem; } }

.site-logo { display: flex; align-items: center; gap: 0.75rem; }
.site-logo img { height: 2.75rem; width: 2.75rem; object-fit: contain; border-radius: 50%; }
.site-logo__name { font-family: 'Cormorant Garamond', serif; font-size: 1.125rem; color: var(--primary); letter-spacing: 0.05em; }
.site-logo__sub { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--muted-foreground); }

.site-nav { display: none; align-items: center; gap: 2rem; }
@media (min-width: 1024px) { .site-nav { display: flex; } }
.site-nav a {
  font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.32em;
  color: var(--muted-foreground); transition: color 0.2s;
}
.site-nav a:hover, .site-nav a.active { color: var(--primary); }

.hamburger {
  display: flex; background: none; border: none; cursor: pointer;
  color: var(--primary); padding: 0.25rem;
}
@media (min-width: 1024px) { .hamburger { display: none; } }

.mobile-nav {
  display: none; border-top: 1px solid var(--border);
  background: var(--background);
}
.mobile-nav.open { display: block; }
.mobile-nav__inner { max-width: 80rem; margin: 0 auto; padding: 1rem 1.5rem; display: flex; flex-direction: column; gap: 1rem; }
.mobile-nav a { font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--muted-foreground); }
.mobile-nav a:hover, .mobile-nav a.active { color: var(--primary); }

/* ── FOOTER ── */
.site-footer { border-top: 1px solid var(--border); background: var(--background); }
.site-footer__grid {
  max-width: 80rem; margin: 0 auto; padding: 4rem 1.5rem;
  display: grid; gap: 3rem;
}
@media (min-width: 768px) {
  .site-footer__grid { grid-template-columns: repeat(3, 1fr); padding: 4rem 2.5rem; }
}
.site-footer__logo { display: flex; align-items: center; gap: 0.75rem; }
.site-footer__logo img { height: 3rem; width: 3rem; object-fit: contain; border-radius: 50%; }
.site-footer__desc { margin-top: 1.5rem; font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; max-width: 20rem; }
.footer-label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); margin-bottom: 1rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.5rem; }
.footer-links a { font-size: 0.875rem; color: var(--muted-foreground); transition: color 0.2s; }
.footer-links a:hover { color: var(--primary); }
.footer-contact p { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; }
.footer-contact a:hover { color: var(--primary); }
.site-footer__copy { border-top: 1px solid var(--border); padding: 1.5rem; text-align: center; font-size: 0.75rem; color: var(--muted-foreground); }

/* ── HERO (homepage) ── */
.hero {
  position: relative; overflow: hidden; border-bottom: 1px solid var(--border);
  text-align: center;
}
.hero__bg {
  position: absolute; inset: 0; opacity: 0.3; pointer-events: none;
  background:
    radial-gradient(ellipse at 20% 0%, oklch(0.82 0.13 85 / 0.25), transparent 60%),
    radial-gradient(ellipse at 80% 100%, oklch(0.82 0.13 85 / 0.15), transparent 50%);
}
.hero__inner {
  position: relative; max-width: 80rem; margin: 0 auto; padding: 8rem 1.5rem;
}
@media (min-width: 768px) { .hero__inner { padding: 12rem 2.5rem; } }
.hero__eyebrow { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); margin-bottom: 2rem; }
.hero__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2.5rem, 8vw, 5rem); font-weight: 300; color: var(--foreground); line-height: 1.05; }
.hero__title .italic-gold { font-style: italic; color: var(--primary); }
.hero__desc { margin-top: 2.5rem; font-size: 1rem; color: var(--muted-foreground); max-width: 42rem; margin-left: auto; margin-right: auto; line-height: 1.75; }
.hero__buttons { margin-top: 3rem; display: flex; flex-direction: column; gap: 1rem; align-items: center; justify-content: center; }
@media (min-width: 640px) { .hero__buttons { flex-direction: row; } }
.btn-outline {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 2rem; border: 1px solid var(--primary);
  color: var(--primary); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.32em; transition: background 0.2s, color 0.2s; cursor: pointer;
}
.btn-outline:hover { background: var(--primary); color: var(--primary-foreground); }
.btn-primary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 0.75rem 2rem; background: var(--primary);
  color: var(--primary-foreground); font-size: 0.75rem; text-transform: uppercase;
  letter-spacing: 0.32em; transition: opacity 0.2s; cursor: pointer; border: none;
}
.btn-primary:hover { opacity: 0.9; }
.btn-primary:disabled { opacity: 0.5; cursor: not-allowed; }
.hero__divider { margin-top: 5rem; display: flex; justify-content: center; }
.hero__divider span { display: block; height: 1px; width: 8rem; background: oklch(0.82 0.13 85 / 40%); }

/* ── PILLARS ── */
.pillars { border-bottom: 1px solid var(--border); }
.pillars__grid { max-width: 80rem; margin: 0 auto; padding: 6rem 1.5rem; display: grid; gap: 3rem; }
@media (min-width: 768px) { .pillars__grid { grid-template-columns: repeat(3, 1fr); gap: 2rem; padding: 6rem 2.5rem; } }
.pillar-card {
  display: block; border: 1px solid var(--border); padding: 2.5rem;
  transition: border-color 0.2s; cursor: pointer;
}
.pillar-card:hover { border-color: var(--primary); }
.pillar-card__eyebrow { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); margin-bottom: 1.5rem; }
.pillar-card__title { font-family: 'Cormorant Garamond', serif; font-size: 1.875rem; color: var(--foreground); margin-bottom: 1rem; }
.pillar-card__body { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; }
.pillar-card__cta { margin-top: 2rem; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); opacity: 0; transition: opacity 0.2s; }
.pillar-card:hover .pillar-card__cta { opacity: 1; }

/* ── QUOTE BLOCK ── */
.quote-block { border-bottom: 1px solid var(--border); }
.quote-block__inner { max-width: 56rem; margin: 0 auto; padding: 8rem 1.5rem; text-align: center; }
.quote-mark { font-family: 'Cormorant Garamond', serif; font-size: 3rem; color: var(--primary); margin-bottom: 2rem; line-height: 1; }
.quote-text { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.25rem, 3vw, 1.875rem); color: var(--foreground); line-height: 1.4; }
.quote-attr { margin-top: 2.5rem; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--muted-foreground); }

/* ── PAGE HERO ── */
.page-hero { border-bottom: 1px solid var(--border); position: relative; overflow: hidden; }
.page-hero__bg {
  position: absolute; inset: 0; opacity: 0.2; pointer-events: none;
  background: radial-gradient(ellipse at 50% 0%, oklch(0.82 0.13 85 / 0.3), transparent 60%);
}
.page-hero__inner { position: relative; max-width: 80rem; margin: 0 auto; padding: 6rem 1.5rem 5rem; }
@media (min-width: 768px) { .page-hero__inner { padding: 8rem 2.5rem 6rem; } }
.page-hero__eyebrow { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); margin-bottom: 1.5rem; }
.page-hero__title { font-family: 'Cormorant Garamond', serif; font-size: clamp(2rem, 5vw, 3.5rem); font-weight: 300; color: var(--foreground); margin-bottom: 1.5rem; }
.page-hero__desc { font-size: 1rem; color: var(--muted-foreground); max-width: 40rem; line-height: 1.75; }

/* ── TENETS GRID (Philosophy) ── */
.tenets { border-bottom: 1px solid var(--border); }
.tenets__grid { max-width: 56rem; margin: 0 auto; padding: 6rem 1.5rem; display: grid; gap: 3rem; }
@media (min-width: 768px) { .tenets__grid { grid-template-columns: repeat(2, 1fr); padding: 6rem 2.5rem; } }
.tenet { border-top: 1px solid oklch(0.82 0.13 85 / 30%); padding-top: 2rem; }
.tenet__num { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); margin-bottom: 1rem; }
.tenet__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--foreground); margin-bottom: 0.75rem; }
.tenet__body { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; }

/* ── STEPS (Modus Operandi) ── */
.steps { border-bottom: 1px solid var(--border); }
.steps__inner { max-width: 56rem; margin: 0 auto; padding: 6rem 1.5rem; display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 768px) { .steps__inner { padding: 6rem 2.5rem; } }
.step { display: grid; gap: 2rem; }
@media (min-width: 768px) { .step { grid-template-columns: 120px 1fr; align-items: start; } }
.step__num { font-family: 'Cormorant Garamond', serif; font-size: 3.75rem; color: var(--primary); line-height: 1; }
.step__content { border-left: 1px solid oklch(0.82 0.13 85 / 30%); padding-left: 2rem; }
.step__title { font-family: 'Cormorant Garamond', serif; font-size: 1.875rem; color: var(--foreground); margin-bottom: 1rem; }
.step__body { font-size: 1rem; color: var(--muted-foreground); line-height: 1.75; }

/* ── OFFERINGS GRID (A La Carte) ── */
.offerings { border-bottom: 1px solid var(--border); }
.offerings__grid {
  max-width: 72rem; margin: 0 auto; padding: 6rem 1.5rem;
  display: grid; gap: 1px; background: var(--border);
}
@media (min-width: 768px) { .offerings__grid { grid-template-columns: repeat(2, 1fr); padding: 6rem 2.5rem; } }
@media (min-width: 1024px) { .offerings__grid { grid-template-columns: repeat(3, 1fr); } }
.offering {
  background: var(--background); padding: 2.5rem; transition: background 0.2s;
}
.offering:hover { background: var(--card); }
.offering__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--primary); margin-bottom: 1rem; }
.offering__body { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; }

/* ── TESTIMONIALS (Feedback) ── */
.testimonials { border-bottom: 1px solid var(--border); }
.testimonials__inner { max-width: 56rem; margin: 0 auto; padding: 6rem 1.5rem; display: flex; flex-direction: column; gap: 4rem; }
@media (min-width: 768px) { .testimonials__inner { padding: 6rem 2.5rem; } }
.testimonial { border-top: 1px solid oklch(0.82 0.13 85 / 30%); padding-top: 2.5rem; }
.testimonial__mark { font-family: 'Cormorant Garamond', serif; font-size: 2.5rem; color: var(--primary); margin-bottom: 1rem; line-height: 1; }
.testimonial__quote { font-family: 'Cormorant Garamond', serif; font-style: italic; font-size: clamp(1.125rem, 2.5vw, 1.5rem); color: var(--foreground); line-height: 1.4; max-width: 48rem; }
.testimonial__meta { margin-top: 2rem; display: flex; flex-wrap: wrap; gap: 1.5rem 0.25rem; }
.testimonial__author { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); }
.testimonial__journey { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--muted-foreground); }

/* ── CONTACT ── */
.contact-section { border-bottom: 1px solid var(--border); }
.contact-grid { max-width: 56rem; margin: 0 auto; padding: 6rem 1.5rem; display: grid; gap: 4rem; }
@media (min-width: 768px) { .contact-grid { grid-template-columns: 1fr 1.4fr; padding: 6rem 2.5rem; } }
.contact-info__label { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); margin-bottom: 1rem; }
.contact-info__title { font-family: 'Cormorant Garamond', serif; font-size: 1.5rem; color: var(--foreground); margin-bottom: 1.5rem; }
.contact-info__desc { font-size: 0.875rem; color: var(--muted-foreground); line-height: 1.75; margin-bottom: 2rem; }
.contact-detail { margin-bottom: 1rem; }
.contact-detail dt { font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); margin-bottom: 0.25rem; }
.contact-detail dd { font-size: 0.875rem; color: var(--foreground); }
.contact-detail a:hover { color: var(--primary); }

/* Contact Form */
.contact-form { display: flex; flex-direction: column; gap: 1.5rem; }
.form-row { display: grid; gap: 1.5rem; }
@media (min-width: 640px) { .form-row { grid-template-columns: 1fr 1fr; } }
.field label { display: block; font-size: 0.625rem; text-transform: uppercase; letter-spacing: 0.32em; color: var(--primary); margin-bottom: 0.5rem; }
.field input, .field textarea {
  width: 100%; background: transparent; border: 1px solid var(--border);
  color: var(--foreground); padding: 0.75rem 1rem; font-size: 0.875rem;
  font-family: 'Inter', sans-serif; outline: none; transition: border-color 0.2s;
}
.field input::placeholder, .field textarea::placeholder { color: oklch(0.70 0.02 80 / 60%); }
.field input:focus, .field textarea:focus { border-color: var(--primary); }

/* Toast */
.toast {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 100;
  background: var(--card); border: 1px solid var(--primary);
  color: var(--foreground); padding: 1rem 1.5rem;
  font-size: 0.875rem; max-width: 24rem;
  animation: slideIn 0.3s ease;
  box-shadow: 0 4px 24px oklch(0 0 0 / 40%);
}
@keyframes slideIn { from { transform: translateY(1rem); opacity: 0; } to { transform: none; opacity: 1; } }

/* ── 404 ── */
.not-found { display: flex; align-items: center; justify-content: center; min-height: 60vh; padding: 2rem; text-align: center; }
.not-found h1 { font-family: 'Cormorant Garamond', serif; font-size: 5rem; color: var(--foreground); }
.not-found h2 { font-size: 1.25rem; color: var(--foreground); margin-top: 1rem; }
.not-found p { font-size: 0.875rem; color: var(--muted-foreground); margin-top: 0.5rem; }
.not-found .btn-primary { margin-top: 1.5rem; }
