/* ============================================================
   LIQUID BREATHWORK — BASE STYLES
   Reset, typography, links, forms, utilities
   ============================================================ */

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

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

body {
  font-family: var(--font-body);
  font-weight: var(--fw-regular);
  font-size: var(--fs-body);
  line-height: var(--lh-body);
  color: var(--cream);
  background: linear-gradient(135deg, var(--abyss) 0%, var(--deep-water) 50%, var(--abyss) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: var(--fw-bold);
  line-height: var(--lh-heading);
  margin-bottom: var(--space-md);
}

h1 {
  font-size: var(--fs-h1);
  color: var(--cream);
  margin-bottom: var(--space-lg);
}

h2 {
  font-size: var(--fs-h2);
  color: var(--warm-sand);
  margin-bottom: var(--space-xl);
}

h3 {
  font-size: var(--fs-h3);
  color: var(--warm-sand);
  margin-bottom: var(--space-lg);
}

h4 {
  font-size: var(--fs-h4);
  color: var(--gold);
  margin-bottom: var(--space-md);
}

p {
  font-size: var(--fs-body);
  margin-bottom: var(--space-lg);
  line-height: var(--lh-body);
  color: var(--cream);
}

a {
  color: var(--gold);
  text-decoration: none;
  transition: color var(--ease);
}
a:hover { color: var(--warm-sand); }

blockquote {
  border-left: 4px solid var(--gold);
  padding-left: var(--space-xl);
  margin: var(--space-2xl) 0;
  font-size: clamp(1.1rem, 1.5vw, 1.3rem);
  font-style: italic;
  color: var(--warm-sand);
  line-height: var(--lh-body);
}

strong { font-weight: var(--fw-semibold); }
em { font-style: italic; }

/* --- Eyebrow Label --- */
.eyebrow {
  font-family: var(--font-body);
  font-weight: var(--fw-semibold);
  font-size: var(--fs-eyebrow);
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: var(--space-sm);
  display: block;
}

/* --- Gold Accent Line --- */
.gold-line {
  width: 48px;
  height: 2px;
  background: var(--gold);
  margin-bottom: var(--space-lg);
}
.gold-line--center {
  margin-left: auto;
  margin-right: auto;
}

/* --- Layout Containers --- */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 5%;
}

section {
  padding: var(--space-section) 0;
  border-bottom: 1px solid var(--gold-10);
  position: relative;
}

.section-header {
  text-align: center;
  margin-bottom: var(--space-2xl);
}
.section-header .eyebrow { margin-bottom: var(--space-sm); }
.section-header h2 { margin-bottom: var(--space-xs); }

/* --- Form Elements --- */
input, textarea, select {
  font-family: var(--font-body);
  font-size: var(--fs-body);
  color: var(--cream);
  background: var(--undertow-60);
  border: 1px solid var(--gold-20);
  border-radius: var(--radius-md);
  padding: var(--space-sm) var(--space-md);
  width: 100%;
  transition: border-color var(--ease);
}

input:focus, textarea:focus, select:focus {
  outline: none;
  border-color: var(--gold);
}

input::placeholder, textarea::placeholder {
  color: var(--cream-40);
}

label {
  display: block;
  font-size: var(--fs-small);
  color: var(--warm-sand);
  margin-bottom: var(--space-xs);
  font-weight: var(--fw-medium);
}

/* --- Utility Classes --- */
.text-center { text-align: center; }
.text-left { text-align: left; }
.text-gold { color: var(--gold); }
.text-sand { color: var(--warm-sand); }
.text-cream { color: var(--cream); }
.text-muted { color: var(--cream-50); }

.max-w-text { max-width: var(--max-width-text); margin-left: auto; margin-right: auto; }
.max-w-sm { max-width: 600px; margin-left: auto; margin-right: auto; }
.max-w-md { max-width: 700px; margin-left: auto; margin-right: auto; }
.max-w-lg { max-width: 900px; margin-left: auto; margin-right: auto; }

.mb-0 { margin-bottom: 0; }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }
.mb-2xl { margin-bottom: var(--space-2xl); }
.mb-3xl { margin-bottom: var(--space-3xl); }

.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }
.mt-2xl { margin-top: var(--space-2xl); }

.sr-only {
  position: absolute;
  width: 1px; height: 1px;
  padding: 0; margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* --- Animations --- */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity var(--ease-slow), transform var(--ease-slow);
}
.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}
.fade-in-delay-1 { transition-delay: 0.15s; }
.fade-in-delay-2 { transition-delay: 0.3s; }
.fade-in-delay-3 { transition-delay: 0.45s; }
