/* =============================================
   DAISY PEREZ COUNSELLING
   Primary: #104f55 (dark teal)
   Inspired by: thepauselife.com — generous
   whitespace, warmth, movement energy
   ============================================= */

:root {
  --primary: #104f55;
  --primary-light: #1a6b73;
  --primary-pale: #eef6f7;
  --primary-mid: #d4ebed;
  --accent: #b8896a;
  --accent-light: #f5ede6;
  --text-dark: #181818;
  --text-mid: #3d3d3d;
  --text-light: #717171;
  --bg: #fdfcfb;
  --bg-warm: #faf7f4;
  --bg-sage: #f3f7f4;
  --white: #ffffff;
  --border: #e8e3de;
  --radius: 16px;
  --radius-sm: 8px;
  --shadow: 0 2px 20px rgba(16, 79, 85, 0.07);
  --shadow-hover: 0 6px 32px rgba(16, 79, 85, 0.13);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text-dark);
  line-height: 1.75;
  font-size: 17px;
}

h1, h2, h3, blockquote {
  font-family: 'Playfair Display', serif;
  line-height: 1.25;
}

h1 { font-size: clamp(2.2rem, 4.5vw, 3.4rem); font-weight: 400; }
h2 { font-size: clamp(1.7rem, 3vw, 2.6rem); font-weight: 400; }
h3 { font-size: 1.15rem; font-weight: 500; font-family: 'DM Sans', sans-serif; }

p { color: var(--text-mid); }
a { color: var(--primary); text-decoration: none; transition: opacity 0.2s; }
a:hover { opacity: 0.7; }

em { font-style: italic; color: var(--accent); }

.container {
  max-width: 1120px;
  margin: 0 auto;
  padding: 0 32px;
}

/* =============================================
   BUTTONS
   ============================================= */
.btn-primary {
  display: inline-block;
  background: var(--primary);
  color: var(--white);
  padding: 15px 32px;
  border-radius: 50px;
  font-size: 0.95rem;
  font-weight: 500;
  letter-spacing: 0.01em;
  transition: background 0.2s, transform 0.15s;
}
.btn-primary:hover {
  background: var(--primary-light);
  opacity: 1;
  transform: translateY(-2px);
}

.btn-ghost {
  display: inline-block;
  color: var(--primary);
  padding: 15px 32px;
  border-radius: 50px;
  border: 1.5px solid var(--primary);
  font-size: 0.95rem;
  font-weight: 500;
  transition: all 0.2s;
}
.btn-ghost:hover {
  background: var(--primary-pale);
  opacity: 1;
}

.btn-large { font-size: 1.05rem; padding: 18px 40px; }

.section-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 14px;
}

/* =============================================
   NAV
   ============================================= */
.nav {
  position: sticky;
  top: 0;
  background: rgba(253, 252, 251, 0.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  z-index: 100;
  padding: 18px 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.15rem;
  color: var(--primary);
  font-weight: 500;
  letter-spacing: -0.01em;
}
.logo span { font-weight: 400; font-style: italic; }

nav {
  display: flex;
  align-items: center;
  gap: 36px;
}

nav a {
  color: var(--text-mid);
  font-size: 0.88rem;
  font-weight: 400;
}
nav a:hover { color: var(--primary); opacity: 1; }

.btn-nav {
  background: var(--primary);
  color: var(--white) !important;
  padding: 10px 24px;
  border-radius: 50px;
  font-size: 0.85rem;
  font-weight: 500;
}
.btn-nav:hover { background: var(--primary-light); opacity: 1; }

.menu-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.4rem;
  color: var(--primary);
  cursor: pointer;
}

/* =============================================
   HERO
   ============================================= */
.hero {
  padding: 90px 0 80px;
  background: var(--bg);
}

.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
}

.eyebrow {
  display: block;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 20px;
}

.hero h1 {
  color: var(--primary);
  margin-bottom: 24px;
}

.lead {
  font-size: 1.1rem;
  line-height: 1.8;
  margin-bottom: 12px;
}

.lead:last-of-type { margin-bottom: 36px; }

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-image {
  position: relative;
}

.hero-image-placeholder {
  width: 100%;
  aspect-ratio: 4/5;
  background: var(--primary-pale);
  border-radius: 40% 60% 60% 40% / 40% 40% 60% 60%;
  border: 3px solid var(--primary-mid);
  overflow: hidden;
}

.hero-image-placeholder img,
.about-image-placeholder img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.hero-badge {
  position: absolute;
  bottom: -16px;
  left: -16px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 14px 18px;
  box-shadow: var(--shadow);
}

.hero-badge span {
  display: block;
  font-size: 0.78rem;
  color: var(--text-light);
  line-height: 1.5;
}

.hero-badge span:first-child {
  font-weight: 500;
  color: var(--primary);
}

/* =============================================
   RECOGNITION
   ============================================= */
.recognition {
  padding: 90px 0;
  background: var(--primary);
  background-image: url('images/office5.png');
  background-size: cover;
  background-position: center;
  position: relative;
}

.recognition::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(16, 79, 85, 0.88);
}

.recognition .container { position: relative; z-index: 1; }

.recognition .section-label {
  color: rgba(255,255,255,0.5);
  text-align: center;
}

.recognition h2 {
  color: var(--white);
  text-align: center;
  margin-bottom: 48px;
}

.recognition-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-bottom: 56px;
}

.recognition-item {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius);
  padding: 24px;
}

.recognition-item p {
  color: rgba(255,255,255,0.9);
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  line-height: 1.75;
  letter-spacing: 0.02em;
}

.recognition-footer {
  text-align: center;
  max-width: 620px;
  margin: 0 auto;
}

.recognition-footer p {
  color: rgba(255,255,255,0.8);
  font-size: 1.05rem;
  margin-bottom: 28px;
  line-height: 1.8;
}

/* =============================================
   ABOUT
   ============================================= */
.about {
  padding: 100px 0;
  background: var(--bg-warm);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 70px;
  align-items: center;
}

.about-image-placeholder {
  width: 100%;
  aspect-ratio: 3/4;
  background: var(--primary-mid);
  border-radius: 50% 50% 40% 40% / 40% 40% 50% 50%;
  border: 3px solid rgba(16, 79, 85, 0.25);
  overflow: hidden;
}

.about-text h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.about-text p {
  margin-bottom: 16px;
}

.about-availability {
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.availability-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--text-mid);
}

.avail-icon { font-size: 1rem; }

/* =============================================
   TESTIMONIALS
   ============================================= */
.testimonials {
  padding: 80px 0;
  background: var(--accent-light);
}

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

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 32px;
  box-shadow: var(--shadow);
}

.testimonial p {
  font-family: 'DM Sans', sans-serif;
  font-style: normal;
  font-weight: 400;
  font-size: 1rem;
  color: var(--text-dark);
  line-height: 1.75;
  letter-spacing: 0.02em;
  margin-bottom: 16px;
}

.testimonial cite {
  font-size: 0.8rem;
  color: var(--text-light);
  font-style: normal;
}

/* =============================================
   SPECIALTIES
   ============================================= */
.specialties {
  padding: 100px 0;
  background: var(--bg);
}

.specialties h2 {
  color: var(--primary);
  margin-bottom: 16px;
}

.specialties-intro {
  font-size: 1.05rem;
  max-width: 620px;
  margin-bottom: 48px;
  line-height: 1.8;
}

.specialties-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.specialty-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  transition: transform 0.2s, box-shadow 0.2s;
}

.specialty-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-hover);
}

.specialty-card.featured {
  background: var(--primary);
  border-color: var(--primary);
  grid-column: span 1;
}

.specialty-card.featured h3 { color: var(--white); }
.specialty-card.featured p { color: rgba(255,255,255,0.85); }

.specialty-card h3 {
  color: var(--primary);
  margin-bottom: 10px;
}

.specialty-card p {
  font-size: 0.9rem;
  line-height: 1.7;
}

/* =============================================
   APPROACH
   ============================================= */
.approach {
  padding: 100px 0;
  background: var(--bg-sage);
}

.approach-inner {
  display: grid;
  grid-template-columns: 1fr 1.1fr 1fr;
  gap: 48px;
  align-items: center;
}

.approach-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 3/4;
}

.approach-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
  border-radius: var(--radius);
}

.approach-text h2 {
  color: var(--primary);
  margin-bottom: 24px;
}

.approach-text p { margin-bottom: 16px; }

.approach-quote-block {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 44px;
}

blockquote {
  font-size: 1.15rem;
  color: var(--white);
  line-height: 1.7;
  margin-bottom: 16px;
}

cite {
  display: block;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.55);
  font-style: normal;
  margin-bottom: 28px;
}

.approach-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.approach-methods span {
  background: rgba(255,255,255,0.12);
  color: rgba(255,255,255,0.85);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.03em;
}

/* =============================================
   FEES
   ============================================= */
.fees {
  padding: 100px 0;
  background: var(--bg-warm);
}

.fees-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.fees-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.fees-text p { margin-bottom: 14px; }

.fees-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 44px;
  box-shadow: var(--shadow);
  text-align: center;
}

.fees-amount {
  font-family: 'Playfair Display', serif;
  font-size: 3.2rem;
  color: var(--primary);
  font-weight: 400;
  line-height: 1;
  margin-bottom: 8px;
}

.fees-amount span {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: var(--text-light);
  font-weight: 400;
}

.fees-list {
  list-style: none;
  text-align: left;
  margin: 24px 0 28px;
}

.fees-list li {
  padding: 10px 0;
  border-bottom: 1px solid var(--border);
  color: var(--text-mid);
  font-size: 0.9rem;
}

.fees-list li:last-child { border-bottom: none; }

/* =============================================
   OPT-IN
   ============================================= */
.optin {
  padding: 100px 0;
  background: var(--bg-warm);
}

.optin-inner {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 70px;
  align-items: center;
}

.optin-pdf-cover {
  background: var(--primary);
  border-radius: var(--radius);
  padding: 44px 36px;
  text-align: center;
  box-shadow: 0 8px 40px rgba(16, 79, 85, 0.2);
  position: relative;
  overflow: hidden;
}

.optin-pdf-cover::before {
  content: '';
  position: absolute;
  top: -40px;
  right: -40px;
  width: 160px;
  height: 160px;
  background: rgba(255,255,255,0.05);
  border-radius: 50%;
}

.pdf-eyebrow {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent) !important;
  font-weight: 500;
  margin-bottom: 16px;
}

.optin-pdf-cover h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  color: var(--white);
  font-weight: 400;
  margin-bottom: 12px;
  line-height: 1.3;
}

.optin-pdf-cover > p {
  color: rgba(255,255,255,0.7);
  font-size: 0.9rem;
}

.optin-text h2 {
  color: var(--primary);
  margin-bottom: 20px;
}

.optin-text p {
  margin-bottom: 14px;
}

.optin-form {
  display: flex;
  flex-direction: column;
  gap: 12px;
  margin-top: 24px;
  max-width: 440px;
}

.optin-form input {
  padding: 14px 18px;
  border: 1.5px solid var(--border);
  border-radius: 50px;
  font-size: 0.95rem;
  font-family: 'DM Sans', sans-serif;
  background: var(--white);
  color: var(--text-dark);
  outline: none;
  transition: border-color 0.2s;
}

.optin-form input:focus {
  border-color: var(--primary);
}

.optin-form input::placeholder {
  color: var(--text-light);
}

.optin-note {
  font-size: 0.78rem !important;
  color: var(--text-light) !important;
  margin-top: 4px !important;
}

/* =============================================
   BOOK
   ============================================= */
.book {
  padding: 110px 0;
  background: var(--primary);
}

.book-inner {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 70px;
  align-items: center;
}

.book-text .section-label { color: rgba(255,255,255,0.5); }

.book-text h2 {
  color: var(--white);
  margin-bottom: 20px;
}

.book-text p {
  color: rgba(255,255,255,0.8);
  margin-bottom: 12px;
  font-size: 1.05rem;
}

.book-actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.book .btn-primary {
  background: var(--white);
  color: var(--primary);
  text-align: center;
}

.book .btn-primary:hover {
  background: var(--primary-pale);
  opacity: 1;
}

.book-note {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55) !important;
  line-height: 1.6;
}

.book-note a {
  color: rgba(255,255,255,0.8);
  text-decoration: underline;
}

/* =============================================
   FOOTER
   ============================================= */
.footer {
  background: #101010;
  padding: 70px 0 0;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.footer-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--white);
  font-weight: 500;
  display: block;
  margin-bottom: 16px;
}

.footer-logo span { font-weight: 400; font-style: italic; }

.footer p { color: rgba(255,255,255,0.5); font-size: 0.88rem; margin-bottom: 6px; }
.footer strong { color: rgba(255,255,255,0.8); font-size: 0.8rem; letter-spacing: 0.08em; text-transform: uppercase; }
.footer a { color: rgba(255,255,255,0.65); }
.footer a:hover { color: rgba(255,255,255,0.9); opacity: 1; }

.footer-bottom {
  padding: 20px 0;
}

.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.25);
}

/* =============================================
   RESPONSIVE
   ============================================= */
@media (max-width: 900px) {
  nav { display: none; }
  .menu-toggle { display: block; }

  .hero-inner,
  .about-inner,
  .approach-inner,
  .fees-inner,
  .book-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .approach-image { display: none; }

  .hero-image { display: none; }

  .recognition-grid,
  .testimonials-grid,
  .specialties-grid {
    grid-template-columns: 1fr;
  }

  .specialty-card.featured { grid-column: span 1; }

  .footer-inner { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 600px) {
  .container { padding: 0 20px; }
  .hero { padding: 60px 0; }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .fees-card { padding: 28px 20px; }
  .approach-quote-block { padding: 28px; }
}
