/* ============================================
   Holistic Wellness Center OC
   Reclaim. Restore. Rise.
   ============================================ */

:root {
  --bg: #F5F0E8;
  --bg-warm: #EBE3D5;
  --bg-card: #FAF6EE;
  --text: #2D2D2D;
  --text-soft: #5A4F46;
  --text-muted: #8C8074;
  --gold: #C99749;
  --gold-soft: #D4A254;
  --gold-deep: #A87B36;
  --teal: #5B8A8A;
  --teal-deep: #3F6B6B;
  --plum: #4A2040;
  --line: rgba(45, 45, 45, 0.08);
  --shadow-sm: 0 2px 8px rgba(74, 32, 64, 0.05);
  --shadow-md: 0 8px 24px rgba(74, 32, 64, 0.08);
  --shadow-lg: 0 16px 48px rgba(74, 32, 64, 0.12);
  --radius: 14px;
  --radius-lg: 24px;
  --max-width: 1200px;
  --max-width-narrow: 880px;
  --header-h: 76px;
}

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

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: 'Outfit', -apple-system, BlinkMacSystemFont, system-ui, sans-serif;
  font-size: 17px;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  font-weight: 300;
  letter-spacing: 0.01em;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--teal-deep);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-deep);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 400;
  letter-spacing: 0.005em;
  line-height: 1.2;
  color: var(--text);
}

h1 { font-size: clamp(2.4rem, 5.5vw, 4.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.2rem); }
h3 { font-size: clamp(1.4rem, 2.5vw, 1.9rem); }
h4 { font-size: 1.2rem; font-weight: 500; }

p {
  color: var(--text-soft);
}

p + p { margin-top: 1rem; }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.container-narrow {
  max-width: var(--max-width-narrow);
  margin: 0 auto;
  padding: 0 24px;
}

/* ============================================
   HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(245, 240, 232, 0.92);
  backdrop-filter: saturate(140%) blur(10px);
  -webkit-backdrop-filter: saturate(140%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  height: var(--header-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--text);
  letter-spacing: 0.02em;
}

.nav-logo img {
  width: 44px;
  height: 44px;
  object-fit: contain;
}

.nav-logo span {
  display: none;
}

@media (min-width: 720px) {
  .nav-logo span {
    display: inline;
  }
}

.nav-links {
  display: none;
  list-style: none;
  gap: 28px;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  position: relative;
  padding: 6px 0;
}

.nav-links a:hover { color: var(--gold-deep); }
.nav-links a.active { color: var(--gold-deep); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--gold);
}

.nav-cta {
  display: none;
}

@media (min-width: 980px) {
  .nav-links { display: flex; }
  .nav-cta { display: inline-block; }
}

.nav-toggle {
  display: flex;
  flex-direction: column;
  justify-content: space-around;
  width: 32px;
  height: 28px;
  background: transparent;
  border: none;
  cursor: pointer;
  padding: 0;
}

.nav-toggle span {
  display: block;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

@media (min-width: 980px) {
  .nav-toggle { display: none; }
}

.nav-mobile {
  display: none;
  flex-direction: column;
  background: var(--bg);
  border-bottom: 1px solid var(--line);
  padding: 16px 24px 24px;
  gap: 4px;
}

.nav-mobile.open { display: flex; }

.nav-mobile a {
  padding: 14px 4px;
  color: var(--text);
  font-size: 1rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  border-bottom: 1px solid var(--line);
}

.nav-mobile a:last-child { border-bottom: none; }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 32px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.25s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--gold);
  color: #fff;
}

.btn-primary:hover {
  background: var(--gold-deep);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

.btn-outline {
  background: transparent;
  color: var(--text);
  border-color: var(--text);
}

.btn-outline:hover {
  background: var(--text);
  color: var(--bg);
}

.btn-teal {
  background: var(--teal-deep);
  color: #fff;
}

.btn-teal:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-1px);
  box-shadow: var(--shadow-md);
}

/* ============================================
   HERO
   ============================================ */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: flex;
  align-items: center;
  background: var(--bg);
  overflow: hidden;
  padding: 80px 0 100px;
}

.hero::before {
  content: '';
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212, 162, 84, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  bottom: -300px;
  left: -200px;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(91, 138, 138, 0.15) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  align-items: center;
}

@media (min-width: 920px) {
  .hero-inner {
    grid-template-columns: 1.1fr 1fr;
    gap: 80px;
  }
}

.hero-eyebrow {
  display: inline-block;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 24px;
}

.hero h1 {
  font-size: clamp(2.8rem, 6.5vw, 5.2rem);
  line-height: 1.05;
  margin-bottom: 24px;
  letter-spacing: -0.005em;
}

.hero h1 em {
  font-style: italic;
  color: var(--teal-deep);
}

.hero-tagline {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.3rem, 2.3vw, 1.7rem);
  font-style: italic;
  color: var(--text-soft);
  margin-bottom: 32px;
  line-height: 1.4;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 40px;
}

.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-visual img {
  width: 100%;
  max-width: 480px;
  filter: drop-shadow(0 20px 40px rgba(74, 32, 64, 0.15));
  animation: float 8s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

/* ============================================
   SECTIONS
   ============================================ */
section {
  padding: 90px 0;
}

@media (min-width: 768px) {
  section { padding: 110px 0; }
}

.section-eyebrow {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.section-title {
  margin-bottom: 24px;
}

.section-intro {
  font-size: 1.1rem;
  color: var(--text-soft);
  max-width: 680px;
  margin-bottom: 60px;
}

.section-center {
  text-align: center;
}

.section-center .section-intro {
  margin-left: auto;
  margin-right: auto;
}

.bg-warm {
  background: var(--bg-warm);
}

.bg-dark {
  background: var(--text);
  color: var(--bg);
}

.bg-dark h1, .bg-dark h2, .bg-dark h3, .bg-dark h4 {
  color: var(--bg);
}

.bg-dark p {
  color: rgba(245, 240, 232, 0.8);
}

.bg-dark .section-eyebrow {
  color: var(--gold-soft);
}

/* ============================================
   PILLAR / OFFERINGS GRID
   ============================================ */
.pillars {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}

@media (min-width: 720px) {
  .pillars { grid-template-columns: repeat(2, 1fr); }
}

@media (min-width: 1024px) {
  .pillars { grid-template-columns: repeat(4, 1fr); }
}

.pillar {
  background: var(--bg-card);
  padding: 36px 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.pillar-icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--gold);
}

.pillar h3 {
  margin-bottom: 14px;
  font-size: 1.4rem;
}

.pillar p {
  font-size: 0.95rem;
  margin-bottom: 18px;
}

.pillar ul {
  list-style: none;
  padding: 0;
}

.pillar ul li {
  padding: 6px 0 6px 22px;
  position: relative;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.pillar ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 14px;
  width: 8px;
  height: 8px;
  background: var(--gold);
  border-radius: 50%;
  opacity: 0.6;
}

/* ============================================
   WHO WE HELP — pill list
   ============================================ */
.help-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 60px;
  align-items: center;
}

@media (min-width: 920px) {
  .help-grid { grid-template-columns: 1fr 1fr; }
}

.help-list {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
}

.help-list li {
  background: var(--bg-card);
  padding: 10px 18px;
  border-radius: 999px;
  font-size: 0.92rem;
  color: var(--text-soft);
  border: 1px solid var(--line);
}

.help-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 5;
}

.help-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* ============================================
   FOUNDERS PREVIEW
   ============================================ */
.founders {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
}

@media (min-width: 768px) {
  .founders { grid-template-columns: 1fr 1fr; gap: 60px; }
}

.founder {
  text-align: center;
}

.founder-photo {
  aspect-ratio: 1;
  border-radius: 50%;
  overflow: hidden;
  width: 240px;
  height: 240px;
  margin: 0 auto 24px;
  box-shadow: var(--shadow-md);
}

.founder-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder h3 {
  margin-bottom: 6px;
}

.founder-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin-bottom: 16px;
}

.founder-bio {
  font-size: 0.98rem;
  margin-bottom: 20px;
  max-width: 380px;
  margin-left: auto;
  margin-right: auto;
}

/* ============================================
   FOUNDER FULL (about page)
   ============================================ */
.founder-full {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
  margin-bottom: 100px;
  align-items: center;
}

.founder-full:last-child { margin-bottom: 0; }

@media (min-width: 820px) {
  .founder-full {
    grid-template-columns: 1fr 1.4fr;
    gap: 70px;
  }
  .founder-full.reverse {
    grid-template-columns: 1.4fr 1fr;
  }
  .founder-full.reverse .founder-full-image {
    order: 2;
  }
}

.founder-full-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: var(--shadow-md);
}

.founder-full-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.founder-full h2 {
  margin-bottom: 6px;
}

.founder-full .founder-title {
  margin-bottom: 28px;
  text-align: left;
}

.founder-credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 24px 0;
}

.founder-credentials span {
  background: var(--bg-warm);
  color: var(--text-soft);
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}

/* ============================================
   QUOTE
   ============================================ */
.quote {
  text-align: center;
  max-width: 800px;
  margin: 0 auto;
  padding: 0 20px;
}

.quote p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(1.5rem, 3vw, 2.2rem);
  font-style: italic;
  line-height: 1.4;
  color: inherit;
}

.quote-attribution {
  display: block;
  margin-top: 24px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--gold-deep);
  font-style: normal;
}

/* ============================================
   GALLERY (retreats)
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 14px;
}

@media (min-width: 720px) {
  .gallery {
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
  }
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  transition: transform 0.4s ease;
}

.gallery a {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.gallery a:hover img {
  transform: scale(1.04);
}

.gallery-tall { aspect-ratio: 3 / 5; }
.gallery-wide { aspect-ratio: 4 / 3; }

/* ============================================
   SCHEDULE TABLE
   ============================================ */
.schedule-table {
  width: 100%;
  border-collapse: collapse;
  background: var(--bg-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
}

.schedule-table th,
.schedule-table td {
  padding: 18px 20px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  font-size: 0.95rem;
}

.schedule-table th {
  background: var(--bg-warm);
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 500;
  font-size: 1.05rem;
  letter-spacing: 0.02em;
  color: var(--text);
}

.schedule-table tr:last-child td {
  border-bottom: none;
}

.schedule-table tr:hover td {
  background: rgba(212, 162, 84, 0.05);
}

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  background: linear-gradient(135deg, var(--teal-deep) 0%, var(--teal) 100%);
  color: #fff;
  padding: 80px 24px;
  border-radius: var(--radius-lg);
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 162, 84, 0.25) 0%, transparent 70%);
  border-radius: 50%;
}

.cta-banner h2 {
  color: #fff;
  position: relative;
  margin-bottom: 16px;
}

.cta-banner p {
  color: rgba(255, 255, 255, 0.9);
  max-width: 580px;
  margin: 0 auto 32px;
  position: relative;
  font-size: 1.05rem;
}

.cta-banner .btn-primary {
  position: relative;
  background: #fff;
  color: var(--teal-deep);
}

.cta-banner .btn-primary:hover {
  background: var(--bg);
  color: var(--teal-deep);
}

/* ============================================
   PAGE HEADER (sub-pages)
   ============================================ */
.page-header {
  background: var(--bg-warm);
  padding: 80px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-header::before {
  content: '';
  position: absolute;
  top: -150px;
  right: -150px;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212, 162, 84, 0.18) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.page-header h1 {
  margin-bottom: 16px;
  position: relative;
}

.page-header p {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: clamp(1.1rem, 2vw, 1.4rem);
  color: var(--text-soft);
  max-width: 620px;
  margin: 0 auto;
  position: relative;
}

/* ============================================
   SERVICES PAGE — service category
   ============================================ */
.service-category {
  margin-bottom: 80px;
}

.service-category:last-child {
  margin-bottom: 0;
}

.service-category-head {
  display: flex;
  align-items: baseline;
  gap: 20px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--line);
}

.service-category-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic;
  font-size: 1.4rem;
  color: var(--gold);
}

.service-category h2 {
  margin: 0;
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 20px;
}

@media (min-width: 720px) {
  .service-list { grid-template-columns: 1fr 1fr; }
}

.service-item {
  background: var(--bg-card);
  padding: 28px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
}

.service-item h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 500;
  margin-bottom: 8px;
  color: var(--text);
}

.service-item p {
  font-size: 0.95rem;
  margin-bottom: 0;
}

.service-item .meta {
  margin-top: 12px;
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 50px;
}

@media (min-width: 820px) {
  .contact-grid {
    grid-template-columns: 1fr 1.2fr;
    gap: 70px;
  }
}

.contact-info h3 {
  font-size: 1.1rem;
  font-family: 'Outfit', sans-serif;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-deep);
  margin: 32px 0 8px;
}

.contact-info h3:first-child {
  margin-top: 0;
}

.contact-info p, .contact-info a {
  font-size: 1.05rem;
  color: var(--text);
}

.contact-info a {
  color: var(--text);
  border-bottom: 1px solid var(--gold);
}

.contact-info a:hover {
  color: var(--gold-deep);
}

.map-wrap {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-md);
  aspect-ratio: 4 / 3;
}

.map-wrap iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

/* ============================================
   BOOK PAGE
   ============================================ */
.booking-placeholder {
  background: var(--bg-card);
  border: 2px dashed var(--gold);
  border-radius: var(--radius-lg);
  padding: 60px 32px;
  text-align: center;
  margin: 40px 0;
}

.booking-placeholder h3 {
  margin-bottom: 16px;
  color: var(--gold-deep);
}

.booking-placeholder p {
  max-width: 540px;
  margin: 0 auto;
}

.booking-providers {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
  max-width: 720px;
  margin: 50px auto 0;
}

@media (min-width: 720px) {
  .booking-providers { grid-template-columns: 1fr 1fr; }
}

.booking-provider {
  background: var(--bg-card);
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: 18px;
}

.booking-provider-photo {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
}

.booking-provider-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.booking-provider h4 {
  margin-bottom: 2px;
  font-size: 1.1rem;
}

.booking-provider .meta {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.04em;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background: var(--text);
  color: var(--bg);
  padding: 70px 0 30px;
  margin-top: 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  margin-bottom: 50px;
}

@media (min-width: 720px) {
  .footer-grid {
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 60px;
  }
}

.footer-brand {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-brand-row {
  display: flex;
  align-items: center;
  gap: 14px;
}

.footer-brand-row img {
  width: 56px;
  height: 56px;
  background: var(--bg);
  border-radius: 50%;
  padding: 6px;
}

.footer-brand-row span {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.4rem;
  color: var(--bg);
}

.footer-brand p {
  color: rgba(245, 240, 232, 0.7);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-soft);
  margin-bottom: 18px;
}

.footer ul {
  list-style: none;
}

.footer ul li {
  margin-bottom: 10px;
}

.footer a {
  color: rgba(245, 240, 232, 0.8);
  font-size: 0.95rem;
}

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

.footer-bottom {
  border-top: 1px solid rgba(245, 240, 232, 0.1);
  padding-top: 30px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: center;
  text-align: center;
}

@media (min-width: 720px) {
  .footer-bottom {
    flex-direction: row;
    justify-content: space-between;
    text-align: left;
  }
}

.footer-bottom p {
  color: rgba(245, 240, 232, 0.5);
  font-size: 0.85rem;
}

.socials {
  display: flex;
  gap: 16px;
}

.socials a {
  width: 36px;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(245, 240, 232, 0.08);
  color: var(--bg);
  transition: background 0.2s ease;
}

.socials a:hover {
  background: var(--gold);
  color: #fff;
}

.socials svg { width: 18px; height: 18px; }

/* ============================================
   UTILITIES
   ============================================ */
.text-center { text-align: center; }
.mt-0 { margin-top: 0; }
.mt-2 { margin-top: 2rem; }
.mt-4 { margin-top: 4rem; }
.mb-0 { margin-bottom: 0; }
.mb-2 { margin-bottom: 2rem; }
.mb-4 { margin-bottom: 4rem; }

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.fade-in {
  animation: fadeInUp 0.8s ease-out backwards;
}

.fade-in.delay-1 { animation-delay: 0.1s; }
.fade-in.delay-2 { animation-delay: 0.25s; }
.fade-in.delay-3 { animation-delay: 0.4s; }
.fade-in.delay-4 { animation-delay: 0.55s; }
