/* =====================================================
   Seven System Connect — Global Stylesheet
   ===================================================== */

@font-face {
  font-family: 'Cormorant Garamond';
  font-style: normal;
  font-weight: 400 600;
  font-display: swap;
  src: url('../fonts/cormorant-garamond.woff2') format('woff2');
}
@font-face {
  font-family: 'Cormorant Garamond';
  font-style: italic;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/cormorant-garamond-italic.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url('../fonts/lato-300.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('../fonts/lato-400.woff2') format('woff2');
}
@font-face {
  font-family: 'Lato';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('../fonts/lato-700.woff2') format('woff2');
}


/* --- Design Tokens --- */
:root {
  --cream:    #f7f2ea;
  --sand:     #d8c9b0;
  --sand-lt:  #ede5d8;
  --charcoal: #3a3530;
  --muted:    #6b6560;
  --sage:     #6b8f71;
  --sage-dk:  #4e6e54;
  --white:    #ffffff;

  --font-heading: 'Cormorant Garamond', Georgia, serif;
  --font-body:    'Lato', system-ui, sans-serif;

  --radius:  12px;
  --radius-sm: 6px;
  --gap:     clamp(1.5rem, 4vw, 3rem);
  --section: clamp(4rem, 8vw, 7rem);

  --shadow: 0 2px 16px rgba(58, 53, 48, 0.08);

  --on-dark:      rgba(252, 246, 238, 0.92);
  --on-dark-sub:  rgba(245, 240, 232, 0.85);
  --on-dark-warm: rgba(232, 220, 202, 0.95);
}

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

html { scroll-behavior: smooth; }

body {
  background: var(--cream);
  color: var(--charcoal);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.7;
  font-weight: 300;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }

ul, ol { list-style: none; }

/* --- Typography --- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  line-height: 1.25;
  color: var(--charcoal);
}

h1 { font-size: clamp(2.2rem, 5vw, 3.8rem); }
h2 { font-size: clamp(1.8rem, 4vw, 2.8rem); }
h3 { font-size: clamp(1.3rem, 3vw, 1.8rem); }
h4 { font-size: 1.2rem; }

p { max-width: 65ch; }

.lead {
  font-size: clamp(1.05rem, 2vw, 1.25rem);
  color: var(--muted);
  font-weight: 300;
}

/* --- Layout --- */
.container {
  width: 100%;
  max-width: 1100px;
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}

section {
  padding-block: var(--section);
}

.section-label {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--sage-dk);
  margin-bottom: 0.75rem;
}

.section-header {
  margin-bottom: var(--gap);
}

.section-header p {
  margin-top: 0.75rem;
  color: var(--muted);
}

.text-center { text-align: center; }
.text-center p { margin-inline: auto; }

/* --- Buttons --- */
.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 50px;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease, box-shadow 0.2s ease;
  border: 2px solid transparent;
}

.btn-primary {
  background: var(--sage);
  color: var(--white);
  border-color: var(--sage);
}

.btn-primary:hover {
  background: var(--sage-dk);
  border-color: var(--sage-dk);
  transform: translateY(-1px);
  box-shadow: 0 6px 20px rgba(107, 143, 113, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--sand);
}

.btn-outline:hover {
  background: var(--sand-lt);
  transform: translateY(-1px);
}

.btn-group {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  align-items: center;
  margin-top: 2rem;
}

/* --- Header & Navigation --- */
.site-header {
  background: var(--cream);
  border-bottom: 1px solid var(--sand);
  position: sticky;
  top: 0;
  z-index: 100;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-block: 0.875rem;
  position: relative;
}

.logo-link {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.logo-link img {
  height: 48px;
  width: auto;
  border-radius: var(--radius-sm);
}

.site-name {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 500;
  line-height: 1.2;
  color: var(--charcoal);
}

/* Mobile nav toggle (CSS-only) */
.nav-toggle { display: none; }

.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  flex-shrink: 0;
}

.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-nav ul {
  display: flex;
  gap: 0.25rem;
  align-items: center;
}

.site-nav a {
  display: block;
  padding: 0.5rem 0.875rem;
  font-size: 0.9rem;
  font-weight: 400;
  color: var(--muted);
  border-radius: var(--radius-sm);
  transition: color 0.2s, background 0.2s;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--charcoal);
  background: var(--sand-lt);
}

/* Mobile nav */
@media (max-width: 700px) {
  .hamburger { display: flex; }

  .site-name { display: none; }

  .site-nav {
    display: none;
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    background: var(--cream);
    border-bottom: 1px solid var(--sand);
    padding: 1rem;
  }

  .site-nav ul {
    flex-direction: column;
    align-items: stretch;
    gap: 0.25rem;
  }

  .site-nav a {
    padding: 0.75rem 1rem;
    font-size: 1rem;
  }

  .nav-toggle:checked ~ .site-nav { display: block; }

  .nav-toggle:checked ~ .hamburger span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }
  .nav-toggle:checked ~ .hamburger span:nth-child(2) {
    transform: scaleX(0);
    opacity: 0;
  }
  .nav-toggle:checked ~ .hamburger span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }
}

/* --- Hero --- */
.hero {
  position: relative;
  min-height: clamp(480px, 88vh, 960px);
  display: flex;
  align-items: center;
  padding-block: clamp(4rem, 10vw, 8rem);
  background-image: url('../images/events/1000004603.jpg');
  background-size: cover;
  background-position: center 45%;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(22, 16, 10, 0.58) 0%,
    rgba(22, 16, 10, 0.38) 55%,
    rgba(22, 16, 10, 0.16) 100%
  );
}

.hero .container {
  position: relative;
  z-index: 1;
  max-width: 680px;
  text-shadow: 0 1px 10px rgba(22, 16, 10, 0.45);
}

.hero-eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--on-dark-sub);
  margin-bottom: 0.75rem;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1.25rem;
}

.hero h1 em {
  font-style: italic;
  color: var(--on-dark-warm);
}

.hero .lead {
  color: var(--on-dark);
  max-width: 55ch;
}

.hero .btn-outline {
  border-color: rgba(245, 240, 232, 0.6);
  color: var(--white);
}

.hero .btn-outline:hover {
  background: rgba(245, 240, 232, 0.15);
  border-color: rgba(245, 240, 232, 0.9);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
}

.card-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
}

/* --- Divider --- */
.divider {
  border: none;
  border-top: 1px solid var(--sand);
  margin-block: 0;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  margin-top: var(--gap);
}

.price-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem 1.5rem;
  box-shadow: var(--shadow);
  text-align: center;
  border: 1px solid var(--sand-lt);
}

.price-card .duration {
  font-family: var(--font-heading);
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--charcoal);
  display: block;
}

.price-card .amount {
  font-size: 2.2rem;
  font-weight: 700;
  color: var(--sage-dk);
  line-height: 1.2;
  margin-block: 0.5rem;
}

.price-card .note {
  font-size: 0.8rem;
  color: var(--muted);
}

/* --- Modalities list --- */
.modality-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.5rem;
}

.modality-pill {
  background: var(--sand-lt);
  color: var(--charcoal);
  border-radius: 50px;
  padding: 0.5rem 1.25rem;
  font-size: 0.9rem;
  font-weight: 400;
  border: 1px solid var(--sand);
}

/* --- Service areas --- */
.area-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.5rem;
}

.area-tag {
  background: var(--cream);
  border: 1px solid var(--sand);
  border-radius: var(--radius-sm);
  padding: 0.4rem 1rem;
  font-size: 0.9rem;
  color: var(--muted);
}

/* --- Booking contact --- */
.booking-block {
  background: var(--sand-lt);
  border-radius: var(--radius);
  padding: 2.5rem 2rem;
  margin-top: var(--gap);
}

.booking-block blockquote {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-style: italic;
  color: var(--muted);
  border-left: 3px solid var(--sage);
  padding-left: 1.25rem;
  margin-bottom: 2rem;
  max-width: 55ch;
}

.therapist-contacts {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.contact-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 1.5rem 2rem;
  box-shadow: var(--shadow);
  text-align: center;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
}

.contact-card .name {
  font-family: var(--font-heading);
  font-size: 1.3rem;
  font-weight: 500;
}

.contact-card .contact-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.contact-card a {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--sage-dk);
  letter-spacing: 0.02em;
  transition: color 0.2s;
  margin-top: 0.15rem;
}

.contact-card a:hover { color: var(--sage); }

/* --- Bio / Therapist --- */
.bio-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  margin-top: var(--gap);
}

.bio-card {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bio-photo-placeholder {
  height: 280px;
  background: var(--sand-lt);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.05em;
}

.bio-photo {
  height: 280px;
  overflow: hidden;
  background: var(--sand-lt);
}

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

.bio-body {
  padding: 2rem;
}

.bio-body h3 { margin-bottom: 0.25rem; }

.bio-title {
  font-size: 0.85rem;
  color: var(--sage-dk);
  font-weight: 700;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-bottom: 1rem;
  display: block;
}

.bio-body p { color: var(--muted); }

/* --- Mission --- */
.mission-block {
  background: var(--charcoal);
  color: var(--cream);
  border-radius: var(--radius);
  padding: clamp(2.5rem, 6vw, 5rem) clamp(2rem, 5vw, 4rem);
  text-align: center;
}

.mission-block h2 { color: var(--cream); }

.mission-block .lead { color: var(--on-dark-sub); }

/* --- Testimonials --- */
.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: var(--gap);
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--sand);
  border-radius: var(--radius);
  padding: 2rem;
  display: flex;
  flex-direction: column;
}
.testimonial-stars {
  color: #b8922a;
  font-size: 1.1rem;
  letter-spacing: 0.1em;
  margin-bottom: 0.875rem;
}
.testimonial-text {
  font-style: italic;
  line-height: 1.75;
  color: var(--charcoal);
  flex: 1;
  margin-bottom: 1.25rem;
}
.testimonial-author {
  font-size: 0.9rem;
  font-weight: 700;
  color: var(--charcoal);
}
.testimonial-source {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.2rem;
}

/* --- CTA band --- */
.cta-band {
  background: var(--sage);
  color: var(--white);
  padding-block: clamp(3rem, 7vw, 5rem);
  text-align: center;
}

.cta-band h2 { color: var(--white); }
.cta-band p  { color: var(--on-dark); margin-inline: auto; }

.cta-band .btn-primary {
  background: var(--white);
  color: var(--sage-dk);
  border-color: var(--white);
}

.cta-band .btn-primary:hover {
  background: var(--cream);
  border-color: var(--cream);
  transform: translateY(-1px);
}

.cta-band .btn-outline {
  border-color: rgba(255,255,255,0.6);
  color: var(--white);
}

.cta-band .btn-outline:hover {
  background: rgba(255,255,255,0.15);
}

.cta-band .btn-group { justify-content: center; }

/* --- Footer --- */
.site-footer {
  background: var(--charcoal);
  color: var(--sand);
  padding-block: clamp(3rem, 6vw, 5rem);
}

.footer-inner {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
}

.footer-brand img {
  height: 56px;
  width: auto;
  margin-bottom: 1rem;
  border-radius: var(--radius-sm);
  opacity: 0.85;
}

.footer-brand .site-name {
  font-size: 1.1rem;
  color: var(--cream);
  display: block;
  margin-bottom: 0.5rem;
}

.footer-brand p {
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.6;
}

.footer-col h4 {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--cream);
  margin-bottom: 1rem;
}

.footer-col a {
  display: block;
  font-size: 0.9rem;
  color: var(--sand);
  margin-bottom: 0.5rem;
  transition: color 0.2s;
}

.footer-col a:hover { color: var(--cream); }

.footer-phone {
  font-size: 1rem;
  font-weight: 700;
  color: var(--cream) !important;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(216, 201, 176, 0.2);
  font-size: 0.8rem;
  color: var(--muted);
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  justify-content: space-between;
}

/* --- Page hero (inner pages) --- */
.page-hero {
  background: var(--sand-lt);
  padding-block: clamp(3.5rem, 7vw, 6rem);
  border-bottom: 1px solid var(--sand);
}

.page-hero--photo {
  --hero-overlay: rgba(22, 16, 10, 0.42);
  position: relative;
  background-color: var(--charcoal);
  background-size: cover;
  background-repeat: no-repeat;
  background-position: center 30%;
  border-bottom: none;
  padding-block: clamp(5rem, 10vw, 8rem);
}

.page-hero--photo::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--hero-overlay);
}

.page-hero--photo .container {
  position: relative;
  z-index: 1;
  text-shadow: 0 1px 10px rgba(22, 16, 10, 0.45);
}

.page-hero--photo .section-label { color: var(--on-dark-sub); }
.page-hero--photo h1              { color: var(--white); }
.page-hero--photo .lead           { color: var(--on-dark); }

/* --- Sections alt background --- */
.bg-white   { background: var(--white); }
.bg-sand    { background: var(--sand-lt); }
.bg-cream   { background: var(--cream); }

/* --- FAQ --- */
.faq-list {
  max-width: 800px;
}

.faq-item {
  padding-block: 2rem;
  border-bottom: 1px solid var(--sand);
}

.faq-item:first-child { padding-top: 0; }
.faq-item:last-child  { border-bottom: none; }

.faq-item h3 {
  font-size: clamp(1.1rem, 2.5vw, 1.35rem);
  margin-bottom: 0.875rem;
  color: var(--charcoal);
}

.faq-item p {
  color: var(--muted);
  max-width: 70ch;
}

/* --- Event photo gallery --- */
.photo-gallery {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(2, 1fr);
  margin-top: var(--gap);
}

.photo-gallery img {
  width: 100%;
  height: 300px;
  object-fit: cover;
  border-radius: var(--radius);
  display: block;
  cursor: pointer;
  transition: filter 0.25s ease, box-shadow 0.25s ease;
}

.photo-gallery img:hover {
  filter: brightness(1.08);
  box-shadow: 0 8px 32px rgba(58, 53, 48, 0.22);
}

/* --- Lightbox --- */
#lightbox {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(22, 16, 10, 0.93);
  z-index: 500;
  align-items: center;
  justify-content: center;
  padding: 2rem;
}

#lightbox.open { display: flex; }

#lightbox img {
  max-width: 100%;
  max-height: 90vh;
  object-fit: contain;
  border-radius: var(--radius);
  box-shadow: 0 24px 64px rgba(0,0,0,0.5);
}

#lightbox-close {
  position: absolute;
  top: 1.25rem;
  right: 1.5rem;
  background: none;
  border: none;
  color: var(--cream);
  font-size: 2.25rem;
  line-height: 1;
  cursor: pointer;
  opacity: 0.8;
  transition: opacity 0.2s;
}

#lightbox-close:hover { opacity: 1; }

.photo-gallery img:first-child {
  grid-column: 1 / -1;
  height: 420px;
}

@media (max-width: 600px) {
  .photo-gallery {
    grid-template-columns: 1fr;
  }
  .photo-gallery img:first-child {
    grid-column: auto;
    height: 260px;
  }
  .photo-gallery img {
    height: 240px;
  }
}

/* --- Responsive tweaks --- */
@media (min-width: 768px) {
  .booking-block { padding: 3rem; }
  .therapist-contacts { gap: 2rem; }
}

@media (max-width: 700px) {
  .hero {
    min-height: 60vh;
    padding-block: 4rem 3.5rem;
  }
}
