/* ============================================
   Kaieteur Wellness - shared styles
   Palette drawn from Danita's Canva design
   ============================================ */

:root {
  --cream: #FBF3E9;
  --cream-card: #FCF4E6;
  --blush: #F4D8C7;
  --blush-soft: #F8E6DA;
  --terracotta: #A9522D;
  --terracotta-dark: #8C4224;
  --brown: #5C3A28;
  --brown-soft: #7A4E35;
  --teal: #4E8FA0;
  --sage: #8CA98C;
  --gold: #C09A3E;
  --white: #FFFDF9;
  --shadow: 0 10px 30px rgba(92, 58, 40, 0.10);
  --radius: 18px;
}

* { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Nunito Sans', sans-serif;
  font-size: 17px;
  line-height: 1.7;
  color: var(--brown);
  background: var(--cream);
}

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

a { color: var(--terracotta); }

.script {
  font-family: 'Dancing Script', cursive;
  font-weight: 600;
  color: var(--terracotta);
}

h1, h2, h3, h4 {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 600;
  line-height: 1.25;
  color: var(--brown);
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 243, 233, 0.96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(169, 82, 45, 0.15);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 10px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
}

.brand img { height: 76px; width: auto; }

.brand-name {
  font-family: 'Cormorant Garamond', serif;
  letter-spacing: 3px;
  font-size: 1.25rem;
  color: var(--teal);
  font-weight: 600;
}

.brand-name span {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 5px;
  color: var(--gold);
}

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

.nav-links a {
  text-decoration: none;
  color: var(--brown);
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.4px;
  padding: 6px 2px;
  border-bottom: 2px solid transparent;
  transition: color .2s, border-color .2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--terracotta);
  border-color: var(--terracotta);
}

.nav-cta {
  background: var(--terracotta);
  color: var(--white) !important;
  padding: 10px 22px !important;
  border-radius: 999px;
  border: none !important;
  transition: background .2s;
}

.nav-cta:hover { background: var(--terracotta-dark); }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.8rem;
  color: var(--terracotta);
  cursor: pointer;
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 82vh;
  display: flex;
  align-items: center;
  background: url('../images/hero-waterfall.jpg') center/cover no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(100deg, rgba(46, 26, 15, 0.72) 0%, rgba(46, 26, 15, 0.35) 55%, rgba(46, 26, 15, 0.15) 100%);
}

.hero-inner {
  position: relative;
  max-width: 640px;
  padding: 90px 0;
}

.hero .script {
  color: #F8DCC5;
  font-size: clamp(2.3rem, 5vw, 3.4rem);
}

.hero h1 {
  color: var(--white);
  font-size: clamp(2.4rem, 5.5vw, 3.8rem);
  margin: 10px 0 18px;
}

.hero p {
  color: #F3E4D6;
  font-size: 1.12rem;
  margin-bottom: 32px;
}

.btn {
  display: inline-block;
  padding: 14px 34px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 800;
  letter-spacing: 0.5px;
  font-size: 1rem;
  transition: transform .15s, background .2s, color .2s;
}

.btn:hover { transform: translateY(-2px); }

.btn-primary { background: var(--terracotta); color: var(--white); }
.btn-primary:hover { background: var(--terracotta-dark); }

.btn-light { background: var(--cream); color: var(--terracotta); }
.btn-light:hover { background: var(--white); }

.btn-outline {
  border: 2px solid var(--terracotta);
  color: var(--terracotta);
}
.btn-outline:hover { background: var(--terracotta); color: var(--white); }

.btn-row { display: flex; gap: 16px; flex-wrap: wrap; }

/* ---------- Sections ---------- */
.section { padding: 84px 0; }

.section-blush { background: var(--blush-soft); }
.section-terracotta { background: var(--terracotta); }
.section-terracotta h2,
.section-terracotta p { color: var(--cream); }
.section-terracotta .script { color: #F8DCC5; }

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 52px;
}

.section-head .script { font-size: clamp(1.7rem, 3vw, 2.2rem); }

.section-head h2 {
  font-size: clamp(2rem, 4vw, 2.7rem);
  margin-top: 4px;
}

.section-head p { margin-top: 14px; color: var(--brown-soft); }

/* ---------- Split (image + text) ---------- */
.split {
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 56px;
  align-items: center;
}

.split.reverse { grid-template-columns: 1.15fr 1fr; }

.split-img img {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.split-body .script { font-size: 1.9rem; }

.split-body h2 {
  font-size: clamp(1.9rem, 3.4vw, 2.5rem);
  margin: 6px 0 18px;
}

.split-body p { margin-bottom: 16px; color: var(--brown-soft); }

.credentials {
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  color: var(--terracotta);
  font-weight: 800;
  margin-top: 8px;
}

/* ---------- Cards ---------- */
.card-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.card {
  background: var(--cream-card);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  transition: transform .2s;
}

.card:hover { transform: translateY(-6px); }

.card img { height: 210px; width: 100%; object-fit: cover; }

.card-body { padding: 26px 26px 30px; }

.card-body h3 {
  font-size: 1.45rem;
  color: var(--terracotta);
  margin-bottom: 10px;
}

.card-body p { color: var(--brown-soft); font-size: 0.98rem; }

/* ---------- Testimonials ---------- */
.quote-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 30px;
}

.quote-card {
  background: var(--cream-card);
  border-radius: var(--radius);
  padding: 34px 30px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.quote-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3.4rem;
  line-height: 1;
  color: var(--gold);
}

.quote-card blockquote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.22rem;
  line-height: 1.55;
  color: var(--brown);
  flex: 1;
}

.quote-card cite {
  display: block;
  margin-top: 20px;
  font-style: normal;
  font-weight: 800;
  font-size: 0.9rem;
  letter-spacing: 1px;
  color: var(--terracotta);
  text-transform: uppercase;
}

/* ---------- Affirmation band ---------- */
.affirmation {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: center;
}

.affirmation-quote {
  font-family: 'Dancing Script', cursive;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  color: var(--white);
  line-height: 1.4;
  margin: 22px 0 10px;
}

.affirmation small { color: #F0D9C8; font-size: 1rem; }

.affirmation img {
  border-radius: var(--radius);
  box-shadow: 0 14px 40px rgba(0,0,0,0.25);
}

/* ---------- FAQ ---------- */
.faq-list { max-width: 820px; margin: 0 auto; }

.faq-item {
  background: var(--cream-card);
  border-radius: 14px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  overflow: hidden;
}

.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 22px 56px 22px 26px;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--brown);
  position: relative;
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  position: absolute;
  right: 24px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 1.6rem;
  color: var(--terracotta);
  transition: transform .2s;
}

.faq-item[open] summary::after { content: '–'; }

.faq-item p {
  padding: 0 26px 24px;
  color: var(--brown-soft);
}

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 48px;
  align-items: start;
}

.contact-info {
  background: var(--blush);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.contact-info img.logo-lg { width: 200px; margin: 0 auto 10px; }

.contact-info h3 {
  text-align: center;
  font-size: 1.6rem;
  margin-bottom: 24px;
}

.contact-line {
  display: flex;
  gap: 12px;
  margin-bottom: 14px;
  font-size: 1rem;
  color: var(--brown);
}

.contact-line strong { min-width: 66px; color: var(--terracotta); }

.contact-form {
  background: var(--cream-card);
  border-radius: var(--radius);
  padding: 40px 36px;
  box-shadow: var(--shadow);
}

.contact-form h3 { font-size: 1.7rem; margin-bottom: 20px; }

.form-field { margin-bottom: 18px; }

.form-field label {
  display: block;
  font-weight: 800;
  font-size: 0.92rem;
  margin-bottom: 6px;
  color: var(--brown);
}

.form-field input,
.form-field textarea {
  width: 100%;
  padding: 13px 15px;
  border: 1.5px solid rgba(169, 82, 45, 0.3);
  border-radius: 10px;
  background: var(--white);
  font-family: inherit;
  font-size: 1rem;
  color: var(--brown);
  transition: border-color .2s;
}

.form-field input:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--terracotta);
}

.form-note { font-size: 0.85rem; color: var(--brown-soft); margin-top: 12px; }

/* ---------- CTA band ---------- */
.cta-band { text-align: center; }

.cta-band h2 { font-size: clamp(2rem, 4vw, 2.6rem); margin-bottom: 14px; }

.cta-band p { max-width: 620px; margin: 0 auto 30px; }

/* ---------- Footer ---------- */
.site-footer {
  background: var(--terracotta-dark);
  color: #F3DFCF;
  padding: 56px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 36px;
}

.site-footer h4 {
  color: var(--white);
  font-size: 1.2rem;
  margin-bottom: 14px;
  letter-spacing: 1px;
}

.site-footer a { color: #F8DCC5; text-decoration: none; }
.site-footer a:hover { text-decoration: underline; }

.site-footer ul { list-style: none; }
.site-footer li { margin-bottom: 8px; }

.footer-quote {
  font-family: 'Dancing Script', cursive;
  font-size: 1.4rem;
  color: #F8DCC5;
  line-height: 1.5;
}

.footer-bottom {
  border-top: 1px solid rgba(248, 220, 197, 0.25);
  padding-top: 22px;
  text-align: center;
  font-size: 0.85rem;
  color: #E5C6AE;
}

/* ---------- Page hero (inner pages) ---------- */
.page-hero {
  background: var(--blush);
  text-align: center;
  padding: 72px 0 64px;
}

.page-hero .script { font-size: clamp(1.7rem, 3vw, 2.2rem); }

.page-hero h1 { font-size: clamp(2.3rem, 5vw, 3.2rem); margin-top: 4px; }

.page-hero p { max-width: 640px; margin: 14px auto 0; color: var(--brown-soft); }

/* ---------- Misc ---------- */
.eyebrow {
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 0.8rem;
  font-weight: 800;
  color: var(--gold);
}

.divider-wave {
  width: 160px;
  margin: 8px auto 0;
}

.success-banner {
  background: var(--sage);
  color: var(--white);
  padding: 14px 20px;
  border-radius: 12px;
  font-weight: 700;
  margin-bottom: 22px;
}

/* ---------- Responsive ---------- */
@media (max-width: 920px) {
  .split, .split.reverse, .affirmation, .contact-grid { grid-template-columns: 1fr; gap: 36px; }
  .card-grid, .quote-grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .footer-grid { grid-template-columns: 1fr; }
  .split-img { order: -1; }
}

@media (max-width: 820px) {
  .nav-toggle { display: block; }
  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--cream);
    flex-direction: column;
    padding: 18px 0 26px;
    gap: 18px;
    border-bottom: 1px solid rgba(169, 82, 45, 0.2);
    box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .hero { min-height: 70vh; }
}
