/* ============================================================
   ROOT / DESIGN TOKENS
   ============================================================ */
:root {
  --sage: #a8d8d8;
  --sage-dark: #2c5f5f;
  --sage-box: #d1e8e8;
  --cream: #f8f4f0;
  --cream-light: #fdfaf7;
  --off-white: #fefefe;
  --text: #1f2a2a;
  --text-muted: #5a6a6a;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Lato', Arial, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
  --border-radius: 16px;
}

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

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

html, body {
  width: 100%;
  overflow-x: clip;
}

body {
  font-family: var(--font-sans);
  color: var(--text);
  background: #fff;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   TYPOGRAPHY HELPERS
   ============================================================ */
.section-heading {
  font-family: var(--font-serif);
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 600;
  color: var(--sage-dark);
  line-height: 1.15;
  margin-bottom: 0.25rem;
}

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

.heading-line {
  display: block;
  width: 80px;
  height: 2px;
  background: var(--sage-dark);
  margin: 0.5rem 0 1.5rem;
  border-radius: 2px;
}

.heading-line.center {
  margin: 0.5rem auto 1.5rem;
}

.section-sub {
  text-align: center;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto 2.5rem;
  font-size: 1rem;
}

/* ============================================================
   BUTTONS
   ============================================================ */
.btn {
  display: inline-block;
  padding: 0.75rem 2rem;
  font-family: var(--font-sans);
  font-size: 0.9rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  cursor: pointer;
  border: none;
  border-radius: var(--border-radius);
  transition: background var(--transition), color var(--transition), transform var(--transition), box-shadow var(--transition);
  text-align: center;
}

.btn-dark {
  background: linear-gradient(135deg, var(--sage-dark), #1a4040);
  color: #fff;
  box-shadow: 0 4px 15px rgba(44, 95, 95, 0.3);
}

.btn-dark:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(44, 95, 95, 0.4);
}

.full-width {
  width: 100%;
  display: block;
}

/* ============================================================
   HEADER / NAV
   ============================================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--sage);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 16px rgba(0, 0, 0, 0.1);
}

.header-inner {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 1.5rem;
  height: 80px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  min-width: 0;
}

.logo-icon {
  width: 64px;
  height: 48px;
  flex-shrink: 0;
  object-fit: contain;
}

.logo-text {
  display: flex;
  flex-direction: column;
  line-height: 1.2;
  min-width: 0;
}

.logo-name {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.logo-subtitle {
  font-size: 0.78rem;
  color: var(--sage-dark);
  letter-spacing: 0.04em;
}

/* Nav */
.main-nav ul {
  display: flex;
  gap: 2.5rem;
  align-items: center;
}

.nav-link {
  font-size: 0.82rem;
  letter-spacing: 0.1em;
  color: var(--sage-dark);
  font-weight: 700;
  position: relative;
  padding-bottom: 3px;
  transition: opacity var(--transition);
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--sage-dark);
  transition: width var(--transition);
}

.nav-link:hover::after,
.nav-link.active::after {
  width: 100%;
}

.nav-link:hover {
  opacity: 0.75;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 200;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--sage-dark);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.hamburger.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.hamburger.active span:nth-child(2) {
  opacity: 0;
}

.hamburger.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background-color: var(--cream);
  isolation: isolate;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url('./images/hero-bg.jpg') center center / cover no-repeat;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(245, 237, 224, 0.35);
  z-index: 1;
}

.hero-content {
  position: relative;
  z-index: 2;
  text-align: center;
  width: 100%;
  max-width: 900px;
  padding: 2rem 1.5rem;
}

.hero-title {
  font-family: var(--font-serif);
  font-size: clamp(2.6rem, 7vw, 5rem);
  font-weight: 600;
  color: var(--sage-dark);
  line-height: 1.1;
  margin-bottom: 0.5rem;
}

.hero-divider {
  width: min(200px, 60vw);
  height: 2px;
  background: var(--sage-dark);
  border-radius: 2px;
  margin: 0.6rem auto 1.2rem;
}

.hero-sub {
  font-size: 0.82rem;
  letter-spacing: 0.25em;
  color: var(--sage-dark);
  margin-bottom: 2.5rem;
}

/* ============================================================
   ABOUT HOME SECTION
   ============================================================ */
.about-home {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.about-home-grid {
  max-width: 1100px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
}

.about-home-img {
  min-height: 440px;
  overflow: hidden;
}

.about-home-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-home-text {
  background: var(--sage-box);
  padding: 3.5rem 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
}

.about-name {
  font-size: 1rem;
  line-height: 1.5;
}

/* ============================================================
   ABOUT FULL PAGE
   ============================================================ */
.about-full {
  background: var(--cream);
  padding: 5rem 1.5rem 4rem;
}

.about-full-inner {
  max-width: 1100px;
  margin: 0 auto 3rem;
}

.about-full-grid {
  max-width: 1100px;
  margin: 0 auto 4rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  gap: 0;
  min-height: 420px;
}

.about-full-img {
  overflow: hidden;
}
.about-full-img {
  width: 100%;
  height: auto; /* or remove fixed height */
}

.about-full-img img {
  width: 100%;
  height: auto;
  display: block;
}

.about-full-text.sage-box {
  background: var(--sage-box);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
}

/* Approach */
.approach-section {
  max-width: 1100px;
  margin: 0 auto;
  padding-top: 2rem;
}

.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: stretch;
  min-height: 380px;
  gap: 0;
  margin-bottom: 2.5rem;
}

.approach-text.sage-box {
  background: var(--sage-box);
  padding: 3rem 2.5rem;
  display: flex;
  align-items: center;
}

.approach-img {
  overflow: hidden;
}

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

.approach-cta {
  text-align: center;
  margin-top: 1rem;
}

/* ============================================================
   SERVICES
   ============================================================ */
.services-section {
  background: var(--cream-light);
}

.section-header.cream-bg {
  padding: 4rem 1.5rem 1rem;
  background: var(--cream-light);
}

.services-grid {
  max-width: 1100px;
  margin: 0 auto;
  padding: 2rem 1.5rem 5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.service-card,
.package-card,
.testimonial {
  border-radius: var(--border-radius);
  overflow: hidden;
}

.service-card {
  background: #fff;
  display: flex;
  flex-direction: column;
  border: 1px solid rgba(0, 0, 0, 0.06);
  transition: box-shadow var(--transition), transform var(--transition);
}

.service-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
  transform: translateY(-4px);
}

.service-card-img {
  width: 100%;
  height: 220px;
  overflow: hidden;
  flex-shrink: 0;
}

.service-card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s ease;
}

.service-card:hover .service-card-img img {
  transform: scale(1.04);
}

.service-card-body {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  flex: 1;
}

.service-card-body h3 {
  font-family: var(--font-serif);
  font-size: 1.3rem;
  color: var(--sage-dark);
  font-weight: 600;
}

.service-meta {
  font-size: 0.85rem;
  color: var(--text-muted);
}

.service-desc {
  font-size: 0.92rem;
  color: var(--text-muted);
  flex: 1;
}

.service-card-body .btn {
  margin-top: auto;
}

/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials-section {
  background: var(--sage);
  padding: 5rem 1.5rem;
}

.testimonials-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 1rem;
}

.testimonial {
  background: rgba(255, 255, 255, 0.25);
  border-left: 3px solid var(--sage-dark);
  padding: 1.8rem 1.5rem;
}

.testimonial p {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--sage-dark);
  margin-bottom: 1rem;
  line-height: 1.7;
}

.testimonial cite {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  font-style: normal;
  font-weight: 700;
  color: var(--sage-dark);
}

/* ============================================================
   PACKAGES
   ============================================================ */
.packages-section {
  background: var(--cream-light);
  padding: 5rem 1.5rem;
}

.packages-inner {
  max-width: 1100px;
  margin: 0 auto;
}

.packages-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
  margin-top: 1rem;
}

.package-card {
  background: var(--off-white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  position: relative;
  transition: box-shadow var(--transition), transform var(--transition);
}

.package-card:hover {
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.09);
  transform: translateY(-4px);
}

.package-card.featured {
  background: #e8ede6;
  border-color: var(--sage-dark);
}

.badge {
  position: absolute;
  top: -16px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--sage-dark);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  padding: 0.3rem 1rem;
  white-space: nowrap;
}

.package-name {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  color: var(--sage-dark);
  font-weight: 600;
  text-align: center;
}

.package-price {
  text-align: center;
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--sage-dark);
  line-height: 1;
  font-family: var(--font-serif);
}

.package-price sup {
  font-size: 1.4rem;
  vertical-align: super;
  font-weight: 400;
}

.package-sessions {
  text-align: center;
  font-size: 0.9rem;
  color: var(--text-muted);
}

.package-validity {
  text-align: center;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 0.5rem;
}

.package-benefits {
  margin-top: 1rem;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
  padding-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.package-benefits li {
  font-size: 0.88rem;
  color: var(--text-muted);
  text-align: center;
  padding: 0.3rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.package-benefits li:last-child {
  border-bottom: none;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact-section {
  background: var(--cream);
  padding: 5rem 1.5rem;
}

.contact-inner {
  max-width: 1000px;
  margin: 0 auto;
  background: var(--cream-light);
  padding: 3.5rem 3rem;
  display: grid;
  grid-template-columns: 1fr 1.6fr;
  gap: 3rem;
  align-items: start;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.contact-info h3.lets-chat {
  font-family: var(--font-serif);
  font-size: 1.6rem;
  color: var(--sage-dark);
  font-weight: 600;
}

.contact-info p {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.7;
}

.contact-info a {
  color: var(--sage-dark);
}

.contact-info a:hover {
  text-decoration: underline;
}

/* Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.form-group label {
  font-size: 0.82rem;
  color: var(--text-muted);
  letter-spacing: 0.03em;
}

.req {
  color: #c0392b;
}

.form-group input,
.form-group textarea {
  border: none;
  border-bottom: 1.5px solid #bbb;
  background: transparent;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  padding: 0.5rem 0;
  outline: none;
  transition: border-color var(--transition);
  width: 100%;
  resize: none;
}

.form-group input:focus,
.form-group textarea:focus {
  border-bottom-color: var(--sage-dark);
}

.form-success {
  display: none;
  color: var(--sage-dark);
  font-size: 0.9rem;
  text-align: center;
  margin-top: 0.5rem;
  font-weight: 600;
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--sage);
  padding: 2.5rem 1.5rem;
}

.footer-inner {
  max-width: 1100px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 1.4rem;
  font-weight: 600;
  color: var(--sage-dark);
}

.footer-contact {
  font-size: 0.88rem;
  color: var(--sage-dark);
}

.footer-contact a:hover {
  text-decoration: underline;
}

.footer-social {
  display: flex;
  gap: 1rem;
  align-items: center;
}

.footer-social a {
  color: var(--sage-dark);
  transition: opacity var(--transition);
}

.footer-social a:hover {
  opacity: 0.65;
}

.footer-copy {
  font-size: 0.78rem;
  color: var(--sage-dark);
  width: 100%;
  text-align: center;
  margin-top: 0.5rem;
}

/* ============================================================
   RESPONSIVE — TABLET (≤ 900px)
   ============================================================ */
@media (max-width: 900px) {
  .services-grid,
  .testimonials-grid,
  .packages-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .about-home-grid,
  .about-full-grid,
  .approach-grid {
    grid-template-columns: 1fr;
  }

  .about-home-img,
  .about-full-img,
  .approach-img {
    min-height: 320px;
    height: 320px;
  }

  .about-home-text,
  .about-full-text.sage-box,
  .approach-text.sage-box {
    padding: 2.5rem 2rem;
  }

  .contact-inner {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 2.5rem 2rem;
  }
}

/* ============================================================
   RESPONSIVE — MOBILE (≤ 600px)
   ============================================================ */
@media (max-width: 600px) {
  .service-card,
  .package-card {
    border-radius: 12px;
  }

  /* Header */
  .header-inner {
    padding: 0 1rem;
    gap: 0.75rem;
  }

  .hamburger {
    display: flex;
  }

  .logo {
    gap: 0.5rem;
    flex: 1;
    min-width: 0;
  }

  .logo-icon {
    width: 42px;
    height: 42px;
    max-width: 42px;
    flex-shrink: 0;
  }

  .logo-name {
    font-size: 1.05rem;
    line-height: 1.05;
  }

  .logo-subtitle {
    font-size: 0.58rem;
    line-height: 1.15;
    letter-spacing: 0.02em;
  }

  .main-nav {
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--sage);
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
  }

  .main-nav.open {
    max-height: 400px;
    padding: 1rem 0 1.5rem;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 0;
    align-items: flex-start;
    padding: 0 1.5rem;
  }

  .main-nav ul li {
    width: 100%;
  }

  .nav-link {
    display: block;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(61, 90, 62, 0.15);
    width: 100%;
  }

  /* Hero */
  .hero {
    min-height: 75vh;
  }

  .hero::before {
    background-position: 58% center;
    background-size: cover;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
    padding: 2rem 1rem;
  }

  .hero-title {
    font-size: 2.2rem;
  }

  .hero-divider {
    width: min(140px, 55vw);
  }

  .hero-sub {
    font-size: 0.76rem;
    letter-spacing: 0.18em;
  }

  /* Grids */
  .services-grid,
  .testimonials-grid,
  .packages-grid {
    grid-template-columns: 1fr;
  }

  .packages-grid {
    padding-top: 1.5rem;
  }

  .package-card.featured {
    margin-top: 1.5rem;
  }

  /* About */
  .about-home-img,
  .about-full-img,
  .approach-img {
    min-height: 260px;
    height: 260px;
    width: 100%;
    object-fit: cover;
  }

  .about-home-text,
  .about-full-text.sage-box,
  .approach-text.sage-box {
    padding: 2rem 1.25rem;
  }

  /* Form */
  .form-row {
    grid-template-columns: 1fr;
  }

  /* Contact */
  .contact-inner {
    padding: 2rem 1.25rem;
  }

  /* Footer */
  .footer-inner {
    flex-direction: column;
    text-align: center;
  }

  .footer-social {
    justify-content: center;
  }
}