/* Core variables */
:root {
  --primary: #8B5E3C;
  --accent: #F5E9DF;
  --muted: #222;
  --bg: #ffffff;
  --max-width: 1100px;
  --pad: 24px;
  font-family: 'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, Arial;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--muted);
  line-height: 1.5;
}

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

/* Layout helpers */

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--pad);
}

.section {
  padding: 56px 0;
}

.section h2 {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  margin-top: 0;
  margin-bottom: 12px;
  color: var(--primary);
}

.section-intro {
  max-width: 650px;
  margin: 0 auto 32px;
  color: rgba(0, 0, 0, 0.7);
  text-align: center;
}

/* HEADER */

.site-header {
  background: linear-gradient(180deg, var(--accent), #fff);
  border-bottom: 1px solid rgba(0, 0, 0, 0.04);
  position: sticky;
  top: 0;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}

.logo {
  font-weight: 700;
  color: var(--primary);
  text-decoration: none;
  font-size: 1.1rem;
}

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

.nav a {
  color: var(--muted);
  text-decoration: none;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
}

.nav a.nav-current {
  text-decoration: underline;
}

.nav .book {
  background: var(--primary);
  color: #fff;
  padding: 8px 16px;
  border-radius: 999px;
  font-size: 0.9rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 24px;
}

/* Ensure mobile nav toggle is visible on small screens */

.nav-toggle {
  display: none;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-left: auto;
    background: transparent;
    border: none;
    cursor: pointer;
  }

  .nav {
    width: 100%;
  }
}

/* HERO */

.hero {
  position: relative;
  padding: 80px 0;
  min-height: 70vh;
  color: #fff;
  background-image: url('assets/asset_0_0.png');
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.55), rgba(0, 0, 0, 0.18));
}

.hero-inner {
  position: relative;
  z-index: 1;
  max-width: 640px;
}

.hero h1,
.hero .lead,
.hero .hero-subtitle {
  color: #fff;
}

.hero .hero-subtitle {
  margin-bottom: 18px;
  opacity: 0.9;
}

.hero .hero-cta .btn.primary {
  background: var(--primary);
  color: #fff;
}

/* legacy grid styles kept for compatibility (not used by full-width hero) */


.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.hero-text {
  max-width: 520px;
}

.hero-text h1 {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  margin: 0 0 16px;
  color: var(--primary);
  line-height: 1.02;
}

.lead {
  margin: 12px 0 14px;
  color: rgba(0, 0, 0, 0.7);
}

.hero-subtitle {
  margin: 0 0 22px;
  color: rgba(0, 0, 0, 0.72);
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.hero-media {
  display: flex;
  justify-content: flex-end;
}

.hero-media img {
  width: 100%;
  max-width: 320px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
}

/* BUTTONS */

.btn {
  display: inline-block;
  padding: 10px 18px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  border: 1px solid transparent;
  font-size: 0.95rem;
}

.btn.primary {
  background: var(--primary);
  color: #fff;
}

.btn.ghost {
  background: transparent;
  border: 1px solid rgba(0, 0, 0, 0.08);
  color: var(--muted);
}

/* SERVICES – Round, Larger, Elegant */

.services {
  padding-top: 4rem;
  padding-bottom: 4rem;
}

/* Outcome bullets under Services heading */
.outcomes {
  margin: 1rem 0 2.25rem;
  padding-left: 1.1rem;
  color: var(--text);
  max-width: 48rem;
}

.outcomes li {
  margin: 0.4rem 0;
  line-height: 1.6;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 3rem 2.5rem;
  align-items: start;
}

.service-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 2.25rem 2rem 1.75rem;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.05);
  border: 1px solid rgba(0, 0, 0, 0.04);
  text-align: left;
}

.service-icon {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: #f5ece4; /* your soft beige tone */
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
}

.service-icon img {
  width: 75px;
  height: 75px;
  object-fit: contain;
  border-radius: 50%;
}

.service-card h3 {
  margin-bottom: 0.6rem;
  font-size: 1.15rem;
}

.service-card p {
  margin: 0;
  font-size: 1rem;
  line-height: 1.6;
}

@media (max-width: 600px) {
  .service-card {
    padding: 1.75rem 1.5rem;
  }

  .service-icon {
    width: 100px;
    height: 100px;
  }

  .service-icon img {
    width: 65px;
    height: 65px;
  }
}


.hero-text h1 {
  color: #fff;
}

.lead {
  color: #fff;
}

.hero-subtitle {
  color: #fff;
}
/* ABOUT */

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

.about-media {
  display: flex;
  justify-content: flex-end;
}

.about-media img {
  width: 100%;
  max-width: 300px;
  border-radius: 12px;
  object-fit: cover;
  box-shadow: 0 6px 20px rgba(0, 0, 0, 0.06);
}

.about-text p {
  margin-top: 0;
  margin-bottom: 12px;
}

/* CONSULTATION */

.consultation {
  background: #faf6f2;
}

.consultation-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
}

/* TESTIMONIALS */

.testimonials {
  background: #fff;
}

.testimonials h2 {
  text-align: left;
}

.testimonial-slider {
  position: relative;
  margin-top: 16px;
  overflow: hidden;
}

.testimonial-track {
  display: flex;
  transition: transform 0.4s ease;
}

.testimonial-card {
  flex: 0 0 100%;
  box-sizing: border-box;
  background: #fff;
  padding: 18px 16px;
  border-radius: 12px;
  box-shadow: 0 6px 18px rgba(0, 0, 0, 0.04);
}

.testimonial-header {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 10px;
}

.testimonial-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  color: var(--primary);
  font-size: 0.95rem;
  overflow: hidden;
}

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

.testimonial-name {
  font-weight: 600;
}

.testimonial-role {
  font-size: 0.85rem;
  color: rgba(0, 0, 0, 0.6);
}

.testimonial-quote {
  font-size: 0.95rem;
  margin: 0;
  color: rgba(0, 0, 0, 0.8);
}

.ts-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  border: none;
  background: #ffffffdd;
  border-radius: 999px;
  padding: 4px 10px;
  font-size: 1.4rem;
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
}

.ts-prev {
  left: 8px;
}

.ts-next {
  right: 8px;
}

.testimonial-dots {
  display: flex;
  justify-content: center;
  gap: 6px;
  margin-top: 14px;
}

.testimonial-dots button {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: none;
  background: rgba(0, 0, 0, 0.2);
  cursor: pointer;
}

.testimonial-dots button.active {
  background: var(--primary);
}

@media (max-width: 640px) {
  .testimonial-card {
    padding: 16px 14px;
  }
}
/* CONTACT CTA */

.contact-cta {
  text-align: center;
  padding-top: 40px;
  padding-bottom: 56px;
}

/* CONTACT PAGE */

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 1fr);
  gap: 32px;
  align-items: flex-start;
}

.contact-text h1 {
  margin-top: 0;
}

.contact-form {
  background: #faf6f2;
  padding: 20px 18px 24px;
  border-radius: 12px;
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.04);
}

.form-row {
  margin-bottom: 14px;
}

.form-row label {
  display: block;
  font-size: 0.9rem;
  font-weight: 600;
  margin-bottom: 4px;
}

.form-row input,
.form-row textarea {
  width: 100%;
  font: inherit;
  padding: 8px 10px;
  border-radius: 8px;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: #fff;
}

.form-row textarea {
  resize: vertical;
}

.hidden {
  display: none;
}

/* FOOTER */

.site-footer {
  background: #f7f5f3;
  padding: 18px 0;
  border-top: 1px solid rgba(0, 0, 0, 0.04);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 0.9rem;
}

.footer-right a {
  margin-left: 12px;
  color: var(--muted);
  text-decoration: none;
}

/* RESPONSIVE */

@media (max-width: 980px) {
  .hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

  .about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.4fr) minmax(0, 0.8fr);
  gap: 32px;
  align-items: center;
}

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

  .test-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .consultation-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .contact-layout {
    grid-template-columns: minmax(0, 1fr);
  }

  .nav {
    display: none;
    position: absolute;
    right: var(--pad);
    top: 100%;
    margin-top: 8px;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    background: #fff;
    padding: 10px 12px;
    border-radius: 10px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
  }

  .nav .book {
    align-self: stretch;
    text-align: center;
    justify-content: center;
  }

  .nav-toggle {
    display: block;
  }
}

@media (max-width: 640px) {
  .hero-text h1 {
    font-size: 2.1rem;
  }

  .services-grid {
    grid-template-columns: minmax(0, 1fr);
  }

  .header-inner {
    padding: 6px 0;
  }

  .footer-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}
.booking-intro {
  max-width: 720px;
  margin: 0 auto 24px auto;
}

.booking-intro h1 {
  font-size: 2.1rem;
  margin-bottom: 8px;
}

.booking-intro p {
  font-size: 1rem;
  line-height: 1.6;
}

.booking-widget {
  max-width: 900px;
}

.booking-widget iframe {
  border-radius: 12px;
  border: 1px solid rgba(0,0,0,0.06);
  box-shadow: 0 8px 26px rgba(0,0,0,0.06);
}
/* HIDE ACUITY HEADER TEXT */
iframe {
  color: transparent;
}
.acuity-embed > *:first-child {
  display: none !important;
}
.corp-cta {
  display: none;
}

@media (min-width: 1024px) {
  .corp-cta {
    display: inline-flex;
    margin-left: 1rem;
    padding: 0.45rem 0.9rem;
    font-size: 0.95rem;
  }
}

/* CORPORATE TESTIMONIALS */

.corporate-testimonials {
  background: #f9f7f4;
}

.corporate-testimonials h2 {
  margin-bottom: 1.75rem;
}

.corporate-testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 2rem;
}

.corp-testimonial {
  background: #ffffff;
  border-radius: 18px;
  padding: 1.75rem 1.5rem;
  box-shadow: 0 10px 26px rgba(0, 0, 0, 0.04);
  border: 1px solid rgba(0, 0, 0, 0.03);
}

.corp-testimonial .quote {
  font-size: 0.98rem;
  line-height: 1.6;
  margin: 0 0 0.9rem 0;
}

.corp-testimonial figcaption {
  font-size: 0.9rem;
  font-weight: 600;
  color: #555;
}
/* MOBILE NAV DROPDOWN FIX */

@media (max-width: 900px) {
  .site-header {
    position: relative;
    z-index: 50;
  }

  .nav {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: #ffffff;
    padding: 1.25rem 1.25rem 2rem; /* extra bottom space for Book button */
    border-radius: 0 0 24px 24px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    max-height: calc(100vh - 70px);
    overflow-y: auto;
  }

  .nav a {
    display: block;
    padding: 0.4rem 0;
  }

  .nav .btn.book {
    width: 100%;
    margin-top: 0.9rem;
    text-align: center;
  }
}

/* ABOUT: Mobile layout fix + responsive heading */
@media (max-width: 700px) {
  .about-grid {
    display: flex;
    flex-direction: column;
    gap: 18px;
    align-items: stretch;
  }

  .about-media {
    order: -1;              /* image above text */
    display: flex;
    justify-content: center;
  }

  .about-media img {
    width: min(220px, 70vw);
    height: auto;
  }

  .about-text {
    max-width: 100%;
  }

  .about-text h2 {
    font-size: clamp(28px, 7vw, 42px);
    line-height: 1.1;
    margin-bottom: 12px;
  }
}
