/* =============================================
   AGENTIC WELLNESS — Contact / Work with Me
   ============================================= */

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

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

:root {
  --navy:        #2E4A70;
  --navy-mid:    #3D5E8C;
  --navy-light:  #5C7AA8;
  --navy-pale:   #8CA2C4;
  --amber:       #CF8A40;
  --amber-dark:  #B77436;
  --cream:       #F5EDE3;
  --warm-white:  #FFFCF8;
  --off-white:   #FFF9F0;
  --font-display: 'Cormorant', Georgia, serif;
  --font-body:    'Outfit', system-ui, sans-serif;
  --ease-expo:   cubic-bezier(0.16, 1, 0.3, 1);
  --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html { scroll-behavior: smooth; }
body {
  background: var(--warm-white);
  color: var(--navy);
  font-family: var(--font-body);
  font-weight: 300;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

/* ============================================
   HEADER
   ============================================ */
.aw-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.4rem 3.5rem;
  transition: background 0.4s var(--ease-smooth), border-color 0.4s;
  border-bottom: 1px solid transparent;
}
.aw-header.scrolled {
  background: rgba(255,252,248,0.96);
  border-color: rgba(46,74,112,0.1);
  backdrop-filter: blur(16px);
}
.aw-logo { display: flex; flex-direction: column; gap: 0; text-decoration: none; line-height: 1; }
.aw-logo-top {
  font-family: var(--font-body); font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase;
  color: var(--warm-white); transition: color 0.3s;
}
.aw-header.scrolled .aw-logo-top { color: var(--navy); }
.aw-logo-sub {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--amber);
}
.aw-nav { display: flex; align-items: center; gap: 3rem; }
.aw-nav a {
  font-family: var(--font-body); font-size: 0.75rem; font-weight: 500;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  color: rgba(255,252,248,0.7); position: relative; padding-bottom: 2px; transition: color 0.25s;
}
.aw-nav a::after {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 100%;
  height: 1px; background: var(--amber); transition: right 0.35s var(--ease-expo);
}
.aw-nav a:hover { color: var(--warm-white); }
.aw-nav a:hover::after { right: 0; }
.aw-header.scrolled .aw-nav a { color: rgba(46,74,112,0.6); }
.aw-header.scrolled .aw-nav a:hover { color: var(--navy); }
.aw-nav-cta {
  padding: 0.55rem 1.5rem !important; border: 1px solid var(--amber) !important;
  color: var(--amber) !important; transition: background 0.25s, color 0.25s !important;
}
.aw-nav-cta:hover { background: var(--amber) !important; color: var(--warm-white) !important; }
.aw-nav-cta::after { display: none !important; }

/* ============================================
   BUTTONS (shared)
   ============================================ */
.aw-btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase; text-decoration: none;
  padding: 0.9rem 2.4rem; cursor: pointer; border: none;
  transition: all 0.3s var(--ease-expo);
}
.aw-btn-amber { background: var(--amber); color: var(--warm-white); }
.aw-btn-amber:hover {
  background: var(--amber-dark); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(207,138,64,0.35);
}
.aw-btn-outline {
  background: transparent; color: var(--warm-white);
  border: 1px solid rgba(255,252,248,0.3);
}
.aw-btn-outline:hover { border-color: rgba(255,252,248,0.7); transform: translateY(-2px); }
.aw-btn-navy-solid {
  background: var(--navy); color: var(--warm-white);
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.78rem;
  font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase;
  text-decoration: none; padding: 1.1rem 3rem;
  transition: background 0.3s, transform 0.3s var(--ease-expo), box-shadow 0.3s;
}
.aw-btn-navy-solid:hover {
  background: var(--navy-mid); transform: translateY(-3px);
  box-shadow: 0 16px 48px rgba(46,74,112,0.4);
}

/* ============================================
   SECTION SHARED
   ============================================ */
.aw-section-label {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.2em; text-transform: uppercase; color: var(--amber);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 1rem;
}
.aw-section-label::before {
  content: ''; display: block; width: 28px; height: 1px; background: var(--amber);
}
.aw-section-headline {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 3vw + 1rem, 4.2rem);
  font-weight: 300; font-style: italic;
  line-height: 1.05; color: var(--navy);
}
.aw-section-headline strong { font-style: normal; font-weight: 700; }
.aw-section-headline.light { color: var(--warm-white); }

/* ============================================
   HERO
   ============================================ */
.aw-contact-hero {
  min-height: 80svh;
  background: var(--navy);
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 10rem 3.5rem 7rem;
}
.aw-contact-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 60px 60px;
  pointer-events: none;
}
.aw-contact-hero-inner {
  position: relative; z-index: 2;
  max-width: 780px;
}
.aw-contact-eyebrow {
  font-family: var(--font-body); font-size: 0.68rem; font-weight: 600;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--amber);
  display: flex; align-items: center; gap: 0.75rem; margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease-expo) 0.3s forwards;
}
.aw-contact-eyebrow::before {
  content: ''; display: block; width: 32px; height: 1px; background: var(--amber);
}
.aw-contact-h1 {
  font-family: var(--font-display);
  font-size: clamp(3rem, 4vw + 1rem, 6rem);
  font-weight: 300; font-style: italic;
  line-height: 0.95; letter-spacing: -0.01em;
  color: var(--warm-white);
  margin-bottom: 2rem;
  opacity: 0; animation: fadeUp 0.9s var(--ease-expo) 0.45s forwards;
}
.aw-contact-h1 strong {
  display: block; font-style: normal; font-weight: 700; color: var(--amber);
}
.aw-contact-sub {
  font-family: var(--font-body); font-size: 1.05rem; font-weight: 300;
  line-height: 1.75; color: rgba(255,252,248,0.6); max-width: 520px;
  margin-bottom: 3rem;
  opacity: 0; animation: fadeUp 0.8s var(--ease-expo) 0.6s forwards;
}
.aw-contact-hero-actions {
  display: flex; gap: 1.25rem; flex-wrap: wrap;
  opacity: 0; animation: fadeUp 0.8s var(--ease-expo) 0.75s forwards;
}

/* ============================================
   WHAT'S INCLUDED
   ============================================ */
.aw-included {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 3.5rem;
}
.aw-included-header {
  max-width: 700px; margin: 0 auto 5rem; text-align: center;
}
.aw-included-header .aw-section-label { justify-content: center; }
.aw-included-header .aw-section-label::before { display: none; }

.aw-included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2px;
  max-width: 1200px;
  margin: 0 auto;
  background: rgba(46,74,112,0.1);
}
.aw-included-card {
  background: var(--cream);
  padding: 3rem 2.5rem 3.5rem;
  position: relative; overflow: hidden;
  transition: background 0.3s;
}
.aw-included-card:hover { background: var(--off-white); }
.aw-included-step {
  font-family: var(--font-display);
  font-size: clamp(7rem, 11vw, 13rem);
  font-weight: 700; font-style: italic;
  line-height: 1; color: rgba(46,74,112,0.14);
  position: absolute; top: 0.5rem; right: 1rem;
  pointer-events: none; transition: color 0.3s;
}
.aw-included-card:hover .aw-included-step { color: rgba(207,138,64,0.22); }
.aw-included-icon {
  width: 48px; height: 48px; margin-bottom: 2rem;
  color: var(--navy-light);
  transition: color 0.3s;
}
.aw-included-card:hover .aw-included-icon { color: var(--amber); }
.aw-included-title {
  font-family: var(--font-display); font-size: 1.75rem;
  font-weight: 600; line-height: 1.15; color: var(--navy);
  margin-bottom: 1rem;
}
.aw-included-body {
  font-family: var(--font-body); font-size: 0.92rem;
  font-weight: 300; line-height: 1.8; color: rgba(46,74,112,0.65);
  margin-bottom: 2rem;
}
.aw-included-list {
  list-style: none; display: flex; flex-direction: column; gap: 0.5rem;
  border-top: 1px solid rgba(46,74,112,0.12); padding-top: 1.5rem;
}
.aw-included-list li {
  font-family: var(--font-body); font-size: 0.82rem;
  font-weight: 400; color: rgba(46,74,112,0.7);
  display: flex; gap: 0.65rem; align-items: flex-start;
}
.aw-included-list li::before {
  content: '→'; color: var(--amber); flex-shrink: 0; font-size: 0.72rem; margin-top: 0.15rem;
}

/* ============================================
   WHO THIS IS FOR
   ============================================ */
.aw-for-whom {
  background: var(--warm-white);
  padding: clamp(5rem, 10vw, 9rem) 3.5rem;
}
.aw-for-whom-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: center;
}
.aw-for-whom-lead {
  font-family: var(--font-display);
  font-size: clamp(2rem, 2.8vw, 3.4rem);
  font-weight: 300; font-style: italic;
  line-height: 1.1; color: var(--navy);
  margin-bottom: 1.5rem;
}
.aw-for-whom-lead strong {
  font-style: normal; font-weight: 700;
  color: var(--navy);
}
.aw-for-whom-sub {
  font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 300; line-height: 1.85;
  color: rgba(46,74,112,0.6);
}
.aw-for-whom-list {
  list-style: none; display: flex; flex-direction: column; gap: 0;
}
.aw-for-whom-item {
  display: flex; gap: 1.5rem; align-items: flex-start;
  padding: 1.5rem 0;
  border-bottom: 1px solid rgba(46,74,112,0.08);
}
.aw-for-whom-item:first-child { border-top: 1px solid rgba(46,74,112,0.08); }
.aw-for-whom-check {
  width: 28px; height: 28px; flex-shrink: 0;
  border: 1px solid rgba(207,138,64,0.5);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber); margin-top: 0.1rem;
}
.aw-for-whom-check svg { width: 14px; height: 14px; }
.aw-for-whom-text strong {
  display: block; font-family: var(--font-body); font-size: 0.92rem;
  font-weight: 600; color: var(--navy); margin-bottom: 0.2rem;
}
.aw-for-whom-text span {
  font-family: var(--font-body); font-size: 0.85rem;
  font-weight: 300; color: rgba(46,74,112,0.6);
}

/* ============================================
   GET IN TOUCH
   ============================================ */
.aw-contact-section {
  background: var(--navy);
  padding: clamp(5rem, 10vw, 9rem) 3.5rem;
  position: relative; overflow: hidden;
}
.aw-contact-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
  background-size: 60px 60px; pointer-events: none;
}
.aw-contact-section-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 7rem; align-items: start;
  position: relative; z-index: 1;
}
.aw-contact-info-headline {
  font-family: var(--font-display);
  font-size: clamp(2.2rem, 3vw, 3.8rem);
  font-weight: 300; font-style: italic;
  line-height: 1.05; color: var(--warm-white);
  margin-bottom: 1.5rem;
}
.aw-contact-info-headline strong {
  font-style: normal; font-weight: 700; color: var(--amber); display: block;
}
.aw-contact-info-text {
  font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 300; line-height: 1.85;
  color: rgba(255,252,248,0.6); margin-bottom: 2.5rem;
}
.aw-contact-detail-row {
  display: flex; flex-direction: column; gap: 1.25rem;
  margin-bottom: 3rem;
}
.aw-contact-detail {
  display: flex; gap: 1.25rem; align-items: flex-start;
}
.aw-contact-detail-icon {
  width: 42px; height: 42px; flex-shrink: 0;
  border: 1px solid rgba(207,138,64,0.3);
  display: flex; align-items: center; justify-content: center;
  color: var(--amber);
}
.aw-contact-detail-icon svg { width: 18px; height: 18px; }
.aw-contact-detail-label {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,252,248,0.35); display: block; margin-bottom: 0.2rem;
}
.aw-contact-detail-value {
  font-family: var(--font-body); font-size: 0.95rem;
  font-weight: 400; color: var(--warm-white);
}
.aw-contact-detail-value a {
  color: var(--warm-white); text-decoration: none;
  border-bottom: 1px solid rgba(207,138,64,0.4);
  transition: border-color 0.25s;
}
.aw-contact-detail-value a:hover { border-color: var(--amber); }

/* Contact form */
.aw-contact-form { display: flex; flex-direction: column; gap: 1.25rem; }
.aw-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.25rem; }
.aw-form-group { display: flex; flex-direction: column; gap: 0.5rem; }
.aw-form-label {
  font-family: var(--font-body); font-size: 0.65rem; font-weight: 600;
  letter-spacing: 0.16em; text-transform: uppercase;
  color: rgba(255,252,248,0.45);
}
.aw-form-input,
.aw-form-select,
.aw-form-textarea {
  font-family: var(--font-body); font-size: 0.9rem;
  font-weight: 300; color: var(--warm-white);
  background: rgba(255,252,248,0.05);
  border: 1px solid rgba(255,252,248,0.12);
  padding: 0.85rem 1.1rem;
  width: 100%;
  transition: border-color 0.25s, background 0.25s;
  -webkit-appearance: none; appearance: none;
}
.aw-form-input::placeholder,
.aw-form-textarea::placeholder { color: rgba(255,252,248,0.25); }
.aw-form-input:focus,
.aw-form-select:focus,
.aw-form-textarea:focus {
  outline: none;
  border-color: rgba(207,138,64,0.6);
  background: rgba(255,252,248,0.08);
}
.aw-form-select { color: rgba(255,252,248,0.7); cursor: pointer; }
.aw-form-select option { background: var(--navy); color: var(--warm-white); }
.aw-form-textarea { resize: vertical; min-height: 130px; }
.aw-form-submit {
  display: inline-flex; align-items: center; gap: 0.5rem;
  font-family: var(--font-body); font-size: 0.78rem; font-weight: 600;
  letter-spacing: 0.14em; text-transform: uppercase;
  background: var(--amber); color: var(--warm-white);
  border: none; padding: 1rem 2.8rem;
  cursor: pointer; width: fit-content;
  transition: background 0.3s, transform 0.3s var(--ease-expo), box-shadow 0.3s;
}
.aw-form-submit:hover {
  background: var(--amber-dark); transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(207,138,64,0.35);
}
.aw-form-note {
  font-family: var(--font-body); font-size: 0.75rem;
  font-weight: 300; color: rgba(255,252,248,0.35);
  margin-top: -0.25rem;
}

/* ============================================
   FAQ
   ============================================ */
.aw-faq {
  background: var(--cream);
  padding: clamp(5rem, 10vw, 9rem) 3.5rem;
}
.aw-faq-header {
  max-width: 700px; margin: 0 auto 4rem; text-align: center;
}
.aw-faq-header .aw-section-label { justify-content: center; }
.aw-faq-header .aw-section-label::before { display: none; }

.aw-faq-grid {
  max-width: 900px; margin: 0 auto;
  display: flex; flex-direction: column; gap: 0;
  border-top: 1px solid rgba(46,74,112,0.12);
}
.aw-faq-item {
  border-bottom: 1px solid rgba(46,74,112,0.12);
  padding: 2rem 0;
}
.aw-faq-q {
  font-family: var(--font-display); font-size: 1.5rem;
  font-weight: 600; line-height: 1.2; color: var(--navy);
  margin-bottom: 0.85rem;
}
.aw-faq-a {
  font-family: var(--font-body); font-size: 0.92rem;
  font-weight: 300; line-height: 1.85;
  color: rgba(46,74,112,0.65); max-width: 700px;
}

/* ============================================
   FINAL CTA
   ============================================ */
.aw-cta-section {
  background: var(--amber);
  padding: clamp(5rem, 9vw, 8rem) 3.5rem;
  text-align: center; position: relative; overflow: hidden;
}
.aw-cta-section::before {
  content: 'Together';
  position: absolute; top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  font-family: var(--font-display);
  font-size: clamp(6rem, 16vw, 20rem);
  font-weight: 700; font-style: italic;
  color: rgba(255,255,255,0.05);
  white-space: nowrap; pointer-events: none; line-height: 1;
}
.aw-cta-inner { position: relative; z-index: 1; max-width: 680px; margin: 0 auto; }
.aw-cta-section h2 {
  font-family: var(--font-display);
  font-size: clamp(2.4rem, 4vw, 4.5rem);
  font-weight: 300; font-style: italic;
  line-height: 1.05; color: var(--warm-white);
  margin-bottom: 1.25rem;
}
.aw-cta-section h2 strong {
  font-style: normal; font-weight: 700;
  color: var(--navy); display: block;
}
.aw-cta-section p {
  font-family: var(--font-body); font-size: 1rem;
  font-weight: 300; line-height: 1.7;
  color: rgba(255,252,248,0.8); margin-bottom: 2.5rem;
}

/* ============================================
   FOOTER
   ============================================ */
.aw-footer {
  background: var(--navy);
  padding: 2.5rem 3.5rem;
  display: flex; align-items: center; justify-content: space-between;
  gap: 1.5rem; flex-wrap: wrap;
  border-top: 3px solid var(--amber);
}
.aw-footer-logo { display: flex; flex-direction: row; align-items: center; gap: 10px; line-height: 1; }
.aw-footer-logo-mark { flex-shrink: 0; }
.aw-footer-logo-wordmark { display: flex; flex-direction: column; gap: 0; }
.aw-footer-logo strong {
  font-family: var(--font-body); font-size: 1.4rem; font-weight: 700;
  letter-spacing: 0.22em; text-transform: uppercase; color: var(--warm-white);
}
.aw-footer-logo span {
  font-family: var(--font-body); font-size: 0.72rem; font-weight: 400;
  letter-spacing: 0.32em; text-transform: uppercase; color: var(--amber);
}
.aw-footer-copy {
  font-family: var(--font-body); font-size: 0.72rem;
  font-weight: 300; letter-spacing: 0.06em;
  color: rgba(255,252,248,0.4);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}
.reveal {
  opacity: 0; transform: translateY(32px);
  transition: opacity 0.8s var(--ease-expo), transform 0.8s var(--ease-expo);
}
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ============================================
   MOBILE
   ============================================ */
@media (max-width: 1024px) {
  .aw-contact-hero { padding: 10rem 3rem 6rem; }
  .aw-for-whom-inner { grid-template-columns: 1fr; gap: 3.5rem; }
  .aw-contact-section-inner { grid-template-columns: 1fr; gap: 4rem; }
}
@media (max-width: 768px) {
  .aw-header { padding: 1.2rem 1.5rem; }
  .aw-nav a:not(.aw-nav-cta) { display: none; }
  .aw-contact-hero { padding: 9rem 1.5rem 5rem; }
  .aw-included, .aw-for-whom, .aw-contact-section,
  .aw-faq, .aw-cta-section { padding: 4rem 1.5rem; }
  .aw-included-grid { grid-template-columns: 1fr; }
  .aw-form-row { grid-template-columns: 1fr; }
  .aw-footer { padding: 2rem 1.5rem; }
}
