/* =========================================
   RESET & BASE
   ========================================= */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Jost', sans-serif;
  font-weight: 300;
  color: #1a1a1a;
  background: #fff;
  overflow-x: hidden;
}

img { display: block; width: 100%; height: 100%; object-fit: cover; }

a { text-decoration: none; color: inherit; }

/* =========================================
   TYPOGRAPHY
   ========================================= */
h1, h2, h3 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 300;
  line-height: 1.1;
}

h1 { font-size: clamp(4rem, 10vw, 9rem); letter-spacing: -0.02em; }
h2 { font-size: clamp(2.2rem, 5vw, 4rem); letter-spacing: -0.01em; }
h3 { font-size: 1.5rem; font-weight: 400; }

p { line-height: 1.8; color: #444; }

.section-label {
  display: inline-block;
  font-family: 'Jost', sans-serif;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #888;
  margin-bottom: 1rem;
}

.section-label--light { color: #aaa; }

/* =========================================
   BUTTONS
   ========================================= */
.btn {
  display: inline-block;
  padding: 0.9rem 2.5rem;
  font-family: 'Jost', sans-serif;
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  cursor: pointer;
  border: none;
  transition: background 0.3s ease, color 0.3s ease;
}

.btn-light {
  background: #fff;
  color: #1a1a1a;
}
.btn-light:hover { background: #f0f0f0; }

.btn-dark {
  background: #1a1a1a;
  color: #fff;
}
.btn-dark:hover { background: #333; }

.btn-full { width: 100%; text-align: center; }

/* =========================================
   NAVBAR
   ========================================= */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  padding: 1.5rem 0;
  transition: background 0.4s ease, padding 0.4s ease;
}

#navbar.scrolled {
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(8px);
  padding: 1rem 0;
  box-shadow: 0 1px 0 rgba(0,0,0,0.08);
}

.nav-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  font-family: 'Jost', sans-serif;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #fff;
  transition: color 0.4s ease;
}

#navbar.scrolled .nav-logo { color: #1a1a1a; }

/* Hero left panel is always dark, so nav never needs to hide on scroll for color — only bg changes */

.nav-links {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 2.5rem;
}

.nav-links a {
  font-size: 0.75rem;
  font-weight: 400;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.9);
  transition: color 0.3s ease;
}

#navbar.scrolled .nav-links a { color: #1a1a1a; }

.nav-mobile-socials { display: none; }

.nav-socials {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-left: 0.5rem;
}

.nav-socials a {
  display: flex;
  align-items: center;
  color: rgba(255,255,255,0.6);
  transition: color 0.3s ease;
}

.nav-socials a:hover { color: #fff; }

#navbar.scrolled .nav-socials a { color: rgba(0,0,0,0.4); }
#navbar.scrolled .nav-socials a:hover { color: #1a1a1a; }

.nav-links a:hover { opacity: 0.6; }

.nav-cta {
  padding: 0.6rem 1.5rem;
  border: 1px solid rgba(255,255,255,0.7);
  transition: background 0.3s ease, color 0.3s ease, border-color 0.3s ease !important;
}

#navbar.scrolled .nav-cta {
  border-color: #1a1a1a !important;
}

.nav-cta:hover {
  background: #fff !important;
  color: #1a1a1a !important;
}

#navbar.scrolled .nav-cta:hover {
  background: #1a1a1a !important;
  color: #fff !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.25rem;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  background: #fff;
  transition: background 0.4s ease;
}

#navbar.scrolled .nav-toggle span { background: #1a1a1a; }

/* =========================================
   HERO
   ========================================= */
#hero {
  height: 100vh;
  min-height: 600px;
  display: grid;
  grid-template-columns: 44% 56%;
  overflow: hidden;
}

.hero-image-wrap {
  grid-column: 2;
  grid-row: 1;
  position: relative;
  overflow: hidden;
}

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

.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to left,
    transparent 60%,
    rgba(0,0,0,0.08) 100%
  );
}

.hero-content {
  grid-column: 1;
  grid-row: 1;
  background: #111;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: 8rem 4rem 6rem 5rem;
  color: #fff;
  position: relative;
}

.hero-eyebrow {
  font-size: 0.7rem;
  font-weight: 400;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  margin-bottom: 1.5rem;
}

.hero-content h1 {
  color: #fff;
  margin-bottom: 1.75rem;
  font-style: italic;
  font-weight: 300;
  line-height: 1;
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: rgba(255,255,255,0.6);
  letter-spacing: 0.05em;
  margin-bottom: 3rem;
  line-height: 1.8;
}

.scroll-indicator {
  position: absolute;
  bottom: 2.5rem;
  left: 5rem;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.scroll-line {
  display: block;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.25);
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.3; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(0.6); }
}

/* =========================================
   MANTRA STRIP
   ========================================= */
.mantra-strip {
  background: #1a1a1a;
  padding: 2.5rem 2rem;
  text-align: center;
}

.mantra-strip p {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 3vw, 1.6rem);
  font-style: italic;
  font-weight: 300;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.03em;
}

/* =========================================
   ABOUT
   ========================================= */
#about {
  padding: 8rem 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 6rem;
  align-items: center;
}

.about-image-wrap {
  height: 650px;
  overflow: hidden;
}

.about-image-wrap img {
  height: 100%;
  object-fit: cover;
  object-position: center top;
  transition: transform 0.6s ease;
}

.about-image-wrap:hover img { transform: scale(1.03); }

.about-text h2 { margin-bottom: 2rem; }

.about-text p {
  margin-bottom: 1.25rem;
  font-size: 1rem;
}

.about-text p em { font-style: italic; color: #1a1a1a; }

.about-text .btn { margin-top: 1.5rem; }

/* =========================================
   SERVICES
   ========================================= */
#services {
  background: #111;
  padding: 8rem 2rem;
  color: #fff;
  overflow: hidden;
}

.services-inner {
  max-width: 1200px;
  margin: 0 auto;
}

.services-header {
  text-align: center;
  margin-bottom: 4rem;
  overflow: hidden;
}

.services-header h2 {
  color: #fff;
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.services-header.revealed h2 {
  opacity: 1;
  transform: translateY(0);
}

.services-image-wrap {
  position: relative;
  height: 680px;
  overflow: hidden;
  margin-bottom: 5rem;
}

.services-img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  object-position: center center;
  transform: scale(1.05);
  transition: transform 0.1s linear;
}

.services-img-label {
  position: absolute;
  bottom: 1.5rem;
  right: 2rem;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.35);
}

.services-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
}

.service-card {
  padding: 3.5rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  border-right: 1px solid rgba(255,255,255,0.06);
  opacity: 0;
  transform: translateY(50px);
  transition: opacity 0.7s ease, transform 0.7s ease, background 0.3s ease;
  cursor: default;
}

.service-card:last-child { border-right: none; }

.service-card.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-card:hover {
  background: rgba(255,255,255,0.03);
}

.service-card-top {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.service-num {
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.25em;
  color: #555;
  flex-shrink: 0;
}

.service-line {
  height: 1px;
  background: rgba(255,255,255,0.2);
  flex: 1;
  transform-origin: left center;
  transform: scaleX(0);
  transition: transform 0.9s cubic-bezier(0.16, 1, 0.3, 1);
}

.service-card.revealed .service-line {
  transform: scaleX(1);
}

.service-card h3 {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 1.5rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
  transition: letter-spacing 0.4s ease;
}

.service-card:hover h3 {
  letter-spacing: 0.02em;
}

.service-card p {
  font-size: 1.05rem;
  color: #c0c0c0;
  line-height: 1.85;
  margin-bottom: 1.5rem;
  max-width: 420px;
  font-weight: 300;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.5);
  text-decoration: none;
  border-bottom: 1px solid rgba(255,255,255,0.15);
  padding-bottom: 0.3rem;
  transition: color 0.3s ease, border-color 0.3s ease, gap 0.3s ease;
}

.service-link:hover {
  color: #fff;
  border-color: rgba(255,255,255,0.5);
  gap: 1rem;
}

.service-link .arrow {
  display: inline-block;
  transition: transform 0.3s ease;
}

.service-link:hover .arrow {
  transform: translateX(4px);
}

/* ── Service icons ── */
.service-icon-svg {
  width: 40px;
  height: 20px;
  color: rgba(255,255,255,0.28);
  margin-bottom: 1.75rem;
  display: block;
  transition: color 0.3s ease;
}

.service-card:hover .service-icon-svg {
  color: rgba(255,255,255,0.6);
}

/* ── Service bullets ── */
.service-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 2.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
}

.service-bullets li {
  font-size: 0.84rem;
  color: #666;
  padding-left: 1.25rem;
  position: relative;
  line-height: 1.55;
  font-weight: 400;
  transition: color 0.3s ease;
}

.service-bullets li::before {
  content: '—';
  position: absolute;
  left: 0;
  color: rgba(255,255,255,0.15);
  font-size: 0.7rem;
  line-height: 1.9;
}

.service-card:hover .service-bullets li {
  color: #888;
}

/* ── Featured Combined card ── */
.service-card-featured {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding: 3.5rem;
  background: rgba(255,255,255,0.03);
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.7s ease, transform 0.7s ease, background 0.3s ease;
}

.service-card-featured.revealed {
  opacity: 1;
  transform: translateY(0);
}

.service-card-featured:hover {
  background: rgba(255,255,255,0.05);
}

.service-featured-badge {
  display: inline-block;
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: #1a1a1a;
  background: #fff;
  padding: 0.3rem 0.8rem;
  margin-bottom: 2rem;
}

.service-featured-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 5rem;
  align-items: center;
}

.service-featured-left .service-num {
  display: block;
  margin-bottom: 1.25rem;
}

.service-featured-title {
  font-size: clamp(2.2rem, 3.5vw, 3.2rem);
  color: #fff;
  margin-bottom: 1.25rem;
  font-weight: 400;
  font-style: italic;
  line-height: 1.1;
}

.service-featured-desc {
  font-size: 1.05rem;
  color: #c0c0c0;
  line-height: 1.85;
  margin-bottom: 2rem;
  font-weight: 300;
  max-width: 540px;
}

.service-bullets--featured li {
  color: #777;
}

.service-bullets--featured li::before {
  color: rgba(255,255,255,0.2);
}

.service-featured-right {
  flex-shrink: 0;
}

/* =========================================
   CONTACT
   ========================================= */
#contact {
  background: #fff;
  padding: 8rem 2rem;
  color: #1a1a1a;
}

.contact-inner {
  max-width: 900px;
  margin: 0 auto;
}

.contact-inner > span { display: block; }
.contact-inner > h2 { color: #1a1a1a; margin-bottom: 1rem; }

.contact-sub {
  color: #777;
  margin-bottom: 3rem;
  font-size: 0.95rem;
}

.calendly-inline-widget {
  min-width: 300px;
  height: 700px;
  border: 1px solid #eee;
}


/* =========================================
   FOOTER
   ========================================= */
footer {
  background: #0d0d0d;
  padding: 4rem 2rem;
  text-align: center;
}

.footer-inner { max-width: 600px; margin: 0 auto; }

.footer-logo {
  font-family: 'Jost', sans-serif;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.3em;
  color: #fff;
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 0.75rem;
  color: #555;
  letter-spacing: 0.1em;
  margin-bottom: 2rem;
}

.footer-links {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-bottom: 2.5rem;
}

.footer-links a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #666;
  transition: color 0.3s ease;
}

.footer-links a:hover { color: #fff; }

.footer-socials {
  display: flex;
  justify-content: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
}

.footer-socials a {
  display: flex;
  align-items: center;
  color: #555;
  transition: color 0.3s ease;
}

.footer-socials a:hover { color: #fff; }

.footer-copy {
  font-size: 0.7rem;
  color: #333;
  letter-spacing: 0.05em;
}

/* =========================================
   FADE-IN ANIMATIONS
   ========================================= */
.fade-in {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.fade-in.visible {
  opacity: 1;
  transform: translateY(0);
}

/* =========================================
   RESPONSIVE
   ========================================= */

/* ── Tablet (900px) ────────────────────── */
@media (max-width: 900px) {
  #about    { padding: 6rem 2rem; }
  #services { padding: 6rem 2rem; }
  #contact  { padding: 6rem 2rem; }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-image-wrap { height: 480px; }

  .services-cards { grid-template-columns: repeat(2, 1fr); }

  .service-featured-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }
}

/* ── Large mobile / landscape (768px) ──── */
@media (max-width: 768px) {
  #hero {
    grid-template-columns: 1fr;
    grid-template-rows: 52vh auto;
    height: auto;
    min-height: 100vh;
  }

  .hero-image-wrap {
    grid-column: 1;
    grid-row: 1;
    height: 52vh;
  }

  .hero-content {
    grid-column: 1;
    grid-row: 2;
    padding: 3.5rem 2rem 4.5rem;
    align-items: center;
    text-align: center;
  }

  .hero-eyebrow {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
  }

  .hero-sub { margin-bottom: 2.5rem; }

  .scroll-indicator { display: none; }

  #about    { padding: 5rem 1.75rem; }
  #services { padding: 5rem 1.75rem; }
  #contact  { padding: 5rem 1.75rem; }

  .about-grid   { gap: 2.5rem; }
  .about-image-wrap { height: 400px; }

  .services-image-wrap { height: 400px; }

  .calendly-inline-widget { height: 620px; }
}

/* ── Mobile (640px) ─────────────────────── */
@media (max-width: 640px) {
  /* Nav */
  .nav-links { display: none; flex-direction: column; }
  .nav-links.open {
    display: flex;
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: #fff;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    z-index: 99;
  }
  .nav-links.open a { color: #1a1a1a !important; font-size: 1rem; }
  .nav-links.open .nav-cta { border-color: #1a1a1a !important; }
  .nav-toggle { display: flex; z-index: 101; }
  .nav-socials { display: none; }

  .nav-mobile-socials {
    display: none;
  }
  .nav-links.open .nav-mobile-socials {
    display: flex;
    gap: 1.5rem;
    align-items: center;
  }
  .nav-mobile-socials a { color: #888; }
  .nav-mobile-socials a:hover { color: #1a1a1a; }

  /* Sections */
  #about    { padding: 4rem 1.25rem; }
  #services { padding: 4rem 1.25rem; }
  #contact  { padding: 4rem 1.25rem; }

  /* About */
  .about-image-wrap { height: 300px; }

  /* Services */
  .services-cards { grid-template-columns: 1fr; }
  .service-card { border-right: none; padding: 2.5rem 1.5rem; }
  .service-card-featured { padding: 2.5rem 1.5rem; }
  .services-image-wrap { height: 260px; }

  /* Contact */
  .calendly-inline-widget { height: 580px; }

  /* Footer */
  .footer-links { flex-wrap: wrap; gap: 1rem; }
}

/* ── Small mobile (480px) ───────────────── */
@media (max-width: 480px) {
  #about    { padding: 3.5rem 1.25rem; }
  #services { padding: 3.5rem 1.25rem; }
  #contact  { padding: 3.5rem 1.25rem; }

  .hero-content { padding: 3rem 1.5rem 4rem; }

  .about-image-wrap { height: 240px; }

  .service-card { padding: 2rem 1.25rem; }
  .service-card-featured { padding: 2rem 1.25rem; }
  .service-card h3 { font-size: 2rem; }
  .service-featured-title { font-size: 2rem; }

  .service-card p { max-width: 100%; }

  .calendly-inline-widget { height: 550px; }

  footer { padding: 3rem 1.5rem; }
}
