/* ============================================================
   GOOGLE FONTS
   ============================================================ */
@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,500;1,300;1,400&family=Inter:wght@300;400;500;600;700&display=swap');

/* ============================================================
   CSS VARIABLES — Sunrise Serenity palette
   ============================================================ */
:root {
  --rose:       #C9847A;
  --gold:       #D4A870;
  --parchment:  #E8D5B7;
  --ivory:      #FDF5EC;
  --text:       #3D2E2E;
  --text-light: #7A6358;
  --rose-dark:  #b8736a;
  --white:      #FFFFFF;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'Inter', system-ui, sans-serif;

  --max-width: 1100px;
  --nav-height: 84px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-sans);
  font-size: 16px;
  line-height: 1.6;
  color: var(--text);
  background: var(--ivory);
}

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

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

ul {
  list-style: none;
}

/* ============================================================
   UTILITY
   ============================================================ */
.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.section-label {
  font-family: var(--font-sans);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}

.section-label--lg {
  font-size: 22px;
  letter-spacing: 4px;
  margin-bottom: 40px;
}

.section-title {
  font-family: var(--font-sans);
  font-size: 48px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 40px;
  line-height: 1.1;
}

.btn-primary {
  display: inline-block;
  background: var(--rose);
  color: var(--white);
  padding: 14px 32px;
  border-radius: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-primary:hover {
  background: var(--rose-dark);
  transform: translateY(-1px);
}

.btn-primary:focus-visible {
  outline: 2px solid var(--rose);
  outline-offset: 3px;
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--text-light);
  padding: 14px 32px;
  border-radius: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--parchment);
  cursor: pointer;
  transition: border-color 0.2s ease, color 0.2s ease;
}

.btn-secondary:hover {
  border-color: var(--gold);
  color: var(--text);
}

.btn-secondary:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--nav-height);
  background: var(--ivory);
  border-bottom: 1px solid var(--parchment);
  display: flex;
  align-items: center;
}

.site-nav .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}

.nav-logo {
  font-family: var(--font-serif);
  font-size: 26px;
  font-weight: 500;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--text);
}

.nav-logo span {
  color: var(--rose);
}

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

.nav-links a {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--text-light);
  transition: color 0.2s ease;
}

.nav-links a:hover {
  color: var(--text);
}

.nav-links .btn-primary {
  padding: 9px 20px;
  font-size: 10px;
}

/* Hamburger — hidden on desktop */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

/* Mobile nav open state */
.site-nav.nav-open .nav-links {
  display: flex;
}

/* ============================================================
   RESPONSIVE — NAVIGATION
   ============================================================ */
@media (max-width: 768px) {
  .nav-toggle {
    display: flex;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: var(--nav-height);
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    background: var(--ivory);
    border-bottom: 1px solid var(--parchment);
    padding: 16px 24px 24px;
  }

  .nav-links a {
    padding: 12px 0;
    width: 100%;
    border-bottom: 1px solid var(--parchment);
  }

  .nav-links a:last-child {
    border-bottom: none;
    margin-top: 8px;
  }
}

/* ============================================================
   FOOTER
   ============================================================ */
.site-footer {
  background: var(--text);
  padding: 48px 0;
}

.site-footer .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.footer-logo {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 400;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--parchment);
}

.footer-info {
  font-size: 12px;
  color: #8a7060;
  text-align: center;
  line-height: 1.9;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold);
  transition: opacity 0.2s ease;
}

.footer-links a:hover {
  opacity: 0.7;
}

@media (max-width: 768px) {
  .site-footer .container {
    flex-direction: column;
    text-align: center;
  }
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  padding: 100px 0 88px;
  background: var(--ivory);
  text-align: center;
}

.hero-eyebrow {
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 24px;
}

.hero h1 {
  font-family: var(--font-serif);
  font-size: 76px;
  font-weight: 500;
  line-height: 1.08;
  color: var(--text);
  max-width: 700px;
  margin: 0 auto 20px;
}

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

.hero-tagline {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.7;
  color: var(--text-light);
  max-width: 440px;
  margin: 0 auto 36px;
}

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

.hero-divider {
  width: 40px;
  height: 1px;
  background: var(--gold);
  margin: 60px auto 0;
  opacity: 0.5;
}

@media (max-width: 768px) {
  .hero {
    padding: 64px 0 56px;
  }

  .hero h1 {
    font-size: 40px;
  }
}

/* Hero split layout */
.hero-split {
  text-align: left;
  padding: 80px 0 72px;
}

.hero-split-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.hero-image-col {
  display: flex;
  justify-content: center;
}

.hero-image {
  width: 100%;
  max-width: 420px;
  height: 420px;
  object-fit: cover;
  border-radius: 32px;
}

.hero-split h1 {
  text-align: center;
  margin: 0 0 20px;
  font-size: 56px;
  font-weight: 500;
  line-height: 1.1;
}

.hero-split .hero-tagline {
  text-align: center;
  margin: 0 0 32px;
  max-width: none;
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.8;
}

.hero-text-col {
  display: flex;
  flex-direction: column;
  align-items: center;
}

@media (max-width: 900px) {
  .hero-split-inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero-split h1 {
    font-size: 38px;
  }

  .hero-image {
    max-width: 280px;
    height: 320px;
  }
}

/* ============================================================
   CTA BANNER (Break the Cycle section)
   ============================================================ */
.cta-banner {
  position: relative;
  background: url('../images/hero-sleep.png') center center / cover no-repeat;
  padding: 120px 0;
  text-align: center;
  overflow: hidden;
}

.cta-banner-overlay {
  position: absolute;
  inset: 0;
  background: rgba(30, 20, 20, 0.52);
}

.cta-banner-content {
  position: relative;
  z-index: 1;
}

.cta-banner h2 {
  font-family: var(--font-serif);
  font-size: 72px;
  font-weight: 300;
  color: #fff;
  margin-bottom: 16px;
  line-height: 1.1;
}

.cta-banner p {
  font-size: 15px;
  font-weight: 300;
  color: rgba(255,255,255,0.8);
  margin-bottom: 36px;
  max-width: 480px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.7;
}

.btn-cta {
  display: inline-block;
  background: transparent;
  color: var(--text);
  padding: 14px 36px;
  border-radius: 32px;
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: none;
  cursor: pointer;
  background: var(--parchment);
  transition: background 0.2s ease, transform 0.15s ease;
}

.btn-cta:hover {
  background: #f5e5cc;
  transform: translateY(-1px);
}

@media (max-width: 768px) {
  .cta-banner h2 {
    font-size: 36px;
  }

  .cta-banner {
    padding: 80px 0;
  }
}


/* ============================================================
   TESTIMONIALS
   ============================================================ */
.testimonials {
  padding: 80px 0;
  background: var(--white);
  text-align: center;
}

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

.testimonial-card {
  padding: 32px 24px;
  background: var(--ivory);
  border-radius: 12px;
  text-align: left;
}

.testimonial-mark {
  display: none;
}

.testimonial-quote {
  font-family: var(--font-serif);
  font-size: 16px;
  font-weight: 300;
  font-style: italic;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 16px;
}

.testimonial-author {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--gold);
}

@media (max-width: 900px) {
  .testimonials-grid {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   SERVICES
   ============================================================ */
.services {
  padding: 48px 0 80px;
  background: var(--white);
  text-align: center;
}

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

.service-card {
  padding: 28px 16px;
  border-radius: 12px;
  background: var(--ivory);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 8px 24px rgba(61,46,46,0.08);
}

.service-icon {
  font-size: 44px;
  margin-bottom: 16px;
}

.service-card h3 {
  font-family: var(--font-sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 10px;
}

.service-card p {
  font-size: 15px;
  color: var(--text-light);
  line-height: 1.6;
  text-align: left;
}

@media (max-width: 900px) {
  .services-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

@media (max-width: 600px) {
  .services-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* Services variant modifiers (for sub-pages) */
.services-grid--wide {
  grid-template-columns: repeat(3, 1fr);
}

.services-grid--centred {
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.services-grid--2col {
  grid-template-columns: repeat(2, 1fr);
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

@media (max-width: 900px) {
  .services-grid--wide {
    grid-template-columns: 1fr;
  }

  .services-grid--2col {
    grid-template-columns: 1fr;
  }
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  background: var(--ivory);
  padding: 80px 0;
}

.about-inner {
  display: grid;
  grid-template-columns: 480px 1fr;
  align-items: stretch;
  gap: 64px;
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 48px;
}

.about-photo-wrap {
  width: 100%;
  overflow: hidden;
  border-radius: 32px;
}

.about-text {
  padding: 0;
}

.about-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 35% top;
  display: block;
}

.about-text .section-label {
  text-align: left;
}

.about-text h2 {
  font-family: var(--font-serif);
  font-size: 38px;
  font-weight: 300;
  color: var(--text);
  margin-bottom: 16px;
  line-height: 1.2;
}

.about-text p {
  font-size: 15px;
  font-weight: 300;
  line-height: 1.8;
  color: var(--text-light);
  margin-bottom: 16px;
}

@media (max-width: 768px) {
  .about-inner {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .about-photo-wrap {
    min-height: 320px;
    border-radius: 24px;
  }

  .about-text {
    padding: 0;
  }
}

/* ============================================================
   EVENTS PAGE
   ============================================================ */
.page-hero {
  padding: 36px 0 36px;
  background: var(--ivory);
  text-align: center;
  border-bottom: 1px solid var(--parchment);
}

.page-hero h1 {
  font-family: var(--font-sans);
  font-size: 64px;
  font-weight: 700;
  color: #1a1a1a;
  margin-bottom: 12px;
  line-height: 1.08;
}

.page-hero p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  max-width: 480px;
  margin: 0 auto;
  line-height: 1.7;
}

.page-hero .page-hero-title {
  font-family: var(--font-sans);
  font-size: 20px;
  font-weight: 500;
  color: var(--rose);
  letter-spacing: 5px;
  text-transform: uppercase;
  line-height: 1.2;
  margin-bottom: 16px;
}

.events-section {
  padding: 72px 0;
  background: var(--white);
}

.eventbrite-embed {
  margin-top: 40px;
  min-height: 400px;
}

.events-fallback {
  padding: 64px 24px;
  text-align: center;
  border: 1.5px dashed var(--parchment);
  border-radius: 12px;
  margin-top: 40px;
}

.events-fallback p {
  font-size: 15px;
  color: var(--text-light);
  margin-bottom: 20px;
}

/* ============================================================
   FORMS (used on Bookings + Contact pages)
   ============================================================ */
.form-section {
  padding: 72px 0;
  background: var(--white);
}

.form-section .container {
  max-width: 680px;
}

.form-intro {
  margin-bottom: 40px;
}

.form-intro p {
  font-size: 15px;
  font-weight: 300;
  color: var(--text-light);
  line-height: 1.7;
}

.form-group {
  margin-bottom: 24px;
}

.form-group label {
  display: block;
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: var(--text-light);
  margin-bottom: 8px;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1.5px solid var(--parchment);
  border-radius: 8px;
  background: var(--ivory);
  font-family: var(--font-sans);
  font-size: 14px;
  font-weight: 300;
  color: var(--text);
  transition: border-color 0.2s ease;
  appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--rose);
}

.form-group textarea {
  resize: vertical;
  min-height: 120px;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}

.form-success {
  display: none;
  padding: 20px 24px;
  background: #f0faf0;
  border: 1.5px solid #a8d5a8;
  border-radius: 8px;
  color: #3a6b3a;
  font-size: 14px;
  margin-top: 16px;
}

@media (max-width: 600px) {
  .form-row {
    grid-template-columns: 1fr;
  }
}
