/* ============================================================
   Willow Tree Consulting – Shared Stylesheet
   Colors: Navy #1B2A45 | Gold #C9A84C | Cream #F5F1EA | Terracotta #E07A50
   Fonts: Playfair Display | Raleway | Lora | DM Sans
   ============================================================ */

:root {
  --navy: #1B2A45;
  --navy-dark: #16223A;
  --navy-deep: #091D42;
  --gold: #C9A84C;
  --cream: #F5F1EA;
  --terracotta: #E07A50;
  --white: #fff;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body { background: var(--cream); font-family: 'DM Sans', sans-serif; color: var(--navy); -webkit-font-smoothing: antialiased; }
img { max-width: 100%; display: block; }
a { color: inherit; }

/* ── Header ── */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(245,241,234,0.92);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201,168,76,0.35);
}
.site-header__inner {
  max-width: 1240px; margin: 0 auto;
  padding: 14px 40px;
  position: relative;
  display: flex; align-items: center; justify-content: space-between;
  gap: 20px; flex-wrap: wrap; row-gap: 12px;
}
.site-header__logo {
  display: flex; align-items: center; gap: 16px;
  text-decoration: none; flex-shrink: 0;
}
.site-header__logo img { height: 50px; width: auto; }
.site-header__wordmark { display: flex; flex-direction: column; line-height: 1; }
.site-header__name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 21px; letter-spacing: 0.06em; color: var(--navy); white-space: nowrap;
}
.site-header__sub {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 10px; letter-spacing: 0.34em; color: var(--gold); margin-top: 4px;
}
.site-nav {
  display: flex; align-items: center; flex-wrap: wrap;
  justify-content: flex-end; gap: 14px 24px;
}
.site-nav__link {
  position: relative;
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 14px; letter-spacing: 0.02em;
  color: var(--navy); text-decoration: none;
  padding: 6px 0; white-space: nowrap;
  transition: color 0.2s;
}
.site-nav__link:hover { color: var(--gold); }
.site-nav__link.active::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: -3px;
  height: 2px; background: var(--gold); border-radius: 2px;
}
.btn-book {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 14px; letter-spacing: 0.02em;
  color: var(--cream); background: var(--terracotta);
  text-decoration: none; padding: 11px 22px;
  border-radius: 999px; white-space: nowrap;
  box-shadow: 0 1px 2px rgba(40,30,10,0.12), 0 8px 20px rgba(224,122,80,0.28);
  transition: transform 0.22s cubic-bezier(.22,1,.36,1), box-shadow 0.22s cubic-bezier(.22,1,.36,1);
  display: inline-block;
}
.btn-book:hover {
  transform: translateY(-2px);
  box-shadow: 0 2px 4px rgba(40,30,10,0.16), 0 12px 26px rgba(224,122,80,0.36);
}
/* Mobile nav toggle — hidden on desktop, shown via media query below */
.nav-toggle { position: absolute; opacity: 0; width: 1px; height: 1px; pointer-events: none; }
.nav-burger { display: none; }

/* ── Buttons ── */
.btn {
  display: inline-block;
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--cream); background: var(--terracotta);
  text-decoration: none; padding: 16px 32px;
  border-radius: 999px; border: none; cursor: pointer;
  box-shadow: 0 1px 2px rgba(40,30,10,0.12), 0 10px 26px rgba(224,122,80,0.3);
  transition: transform 0.22s cubic-bezier(.22,1,.36,1), box-shadow 0.22s cubic-bezier(.22,1,.36,1);
}
.btn:hover { transform: translateY(-2px); box-shadow: 0 2px 4px rgba(40,30,10,0.16), 0 14px 32px rgba(224,122,80,0.4); }
.btn--navy { background: var(--navy); box-shadow: 0 10px 26px rgba(27,42,69,0.22); }
.btn--navy:hover { box-shadow: 0 2px 4px rgba(40,30,10,0.14), 0 14px 32px rgba(27,42,69,0.28); }
.btn--sm { font-size: 14px; padding: 13px 22px; }
.btn--wide { width: 100%; text-align: center; font-size: 15px; padding: 14px 20px; border-radius: 11px; }
.btn-text {
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--navy); text-decoration: none;
  border-bottom: 2px solid var(--gold); padding-bottom: 2px;
  transition: color 0.2s;
}
.btn-text:hover { color: var(--terracotta); }

/* ── Eyebrow labels ── */
.eyebrow {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 13px; letter-spacing: 0.26em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.eyebrow--terracotta { color: var(--terracotta); }
.eyebrow--sm { font-size: 12px; letter-spacing: 0.2em; }
.eyebrow--lg { font-size: 14px; margin-bottom: 24px; }

/* ── Gold-framed image ── */
.gold-frame { position: relative; }
.gold-frame__border {
  position: absolute; inset: 18px -18px -18px 18px;
  border: 2px solid var(--gold); border-radius: 22px;
  pointer-events: none; z-index: 1;
}
.gold-frame__img {
  position: relative; border-radius: 22px; overflow: hidden;
  aspect-ratio: 4 / 5;
  box-shadow: 0 2px 6px rgba(40,30,10,0.1), 0 30px 60px rgba(27,42,69,0.18);
}
.gold-frame__img img { width: 100%; height: 100%; object-fit: cover; }
.gold-frame--left .gold-frame__border { inset: -16px 16px 16px -16px; }

/* ── Card ── */
.card {
  background: var(--white); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 20px; padding: 44px;
  box-shadow: 0 1px 2px rgba(40,30,10,0.05), 0 14px 36px rgba(27,42,69,0.07);
}
.card--navy {
  background: var(--navy); border: none; border-radius: 22px; padding: 48px;
  position: relative; overflow: hidden;
  box-shadow: 0 2px 6px rgba(40,30,10,0.1), 0 30px 60px rgba(27,42,69,0.18);
}

/* ── Testimonial figure ── */
.testimonial {
  background: var(--cream); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 18px; padding: 32px 30px; margin: 0;
  display: flex; flex-direction: column;
  break-inside: avoid;
  margin-bottom: 24px;
}
.testimonial--white { background: var(--white); box-shadow: 0 1px 2px rgba(40,30,10,0.05), 0 12px 30px rgba(27,42,69,0.06); }
.testimonial__quote-mark {
  font-family: 'Playfair Display', serif; font-size: 48px;
  line-height: 1; color: var(--gold); margin-bottom: 8px;
}
.testimonial__quote-mark--sm { font-size: 44px; line-height: 0.6; margin-bottom: 14px; }
.testimonial blockquote {
  font-size: 16px; line-height: 1.65; color: rgba(27,42,69,0.85);
  margin: 0 0 22px; flex: 1;
}
.testimonial figcaption {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 14px; color: var(--navy);
}
.testimonial figcaption span {
  display: block; font-weight: 500; font-size: 13px;
  color: rgba(27,42,69,0.6); margin-top: 3px;
}

/* ── Step card ── */
.step-card {
  display: grid; grid-template-columns: 76px 1fr; gap: 28px; align-items: start;
  background: var(--white); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 18px; padding: 32px 36px;
  box-shadow: 0 1px 2px rgba(40,30,10,0.05), 0 12px 30px rgba(27,42,69,0.06);
}
.step-card__num {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: 44px; line-height: 1; color: var(--gold);
}
.step-card h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 23px; color: var(--navy); margin: 0 0 10px;
}
.step-card p { font-size: 16px; line-height: 1.7; color: rgba(27,42,69,0.82); margin: 0; }

/* ── Glow decorations ── */
.glow {
  position: absolute; border-radius: 999px; pointer-events: none;
  background: radial-gradient(circle, rgba(201,168,76,0.14), transparent 65%);
}

/* ── Sections ── */
.section { padding: 96px 40px; }
.section--sm { padding: 72px 40px; }
.section--lg { padding: 100px 40px; }
.section--white { background: var(--white); border-top: 1px solid rgba(201,168,76,0.25); }
.section--navy { background: var(--navy); }
.section--navy-dark { background: var(--navy-dark); }

/* ── Layout helpers ── */
.container { max-width: 1200px; margin: 0 auto; }
.container--sm { max-width: 820px; }
.container--md { max-width: 900px; }
.container--lg { max-width: 1140px; }
.container--xl { max-width: 1240px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
.two-col--hero { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.two-col--hero-flip { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 64px; align-items: center; }
.three-col { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.five-col { display: grid; grid-template-columns: repeat(5, 1fr); gap: 24px; }

.section-header { text-align: center; margin-bottom: 52px; }
.section-header h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(30px, 3.6vw, 42px); color: var(--navy); margin: 0;
}
.section-header--light h2 { color: var(--cream); }

/* ── Forms ── */
.form-group { display: flex; flex-direction: column; gap: 8px; }
.form-label {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.04em; color: rgba(245,241,234,0.78);
}
.form-label .req { color: var(--terracotta); }
.form-label .opt { font-weight: 500; color: rgba(245,241,234,0.5); }
.form-input, .form-textarea {
  width: 100%; font-family: 'DM Sans', sans-serif; font-size: 16px;
  color: var(--navy); background: var(--cream);
  border: 1px solid rgba(201,168,76,0.5); border-radius: 11px;
  padding: 14px 16px; outline: none;
  transition: border-color 0.2s, box-shadow 0.2s;
}
.form-input:focus, .form-textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(201,168,76,0.25);
}
.form-textarea { resize: vertical; min-height: 120px; line-height: 1.6; }
.form-submit {
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 16px;
  color: var(--cream); background: var(--terracotta);
  border: none; border-radius: 11px; padding: 16px 20px;
  cursor: pointer; width: 100%;
  box-shadow: 0 8px 20px rgba(224,122,80,0.3);
  transition: transform 0.22s cubic-bezier(.22,1,.36,1);
}
.form-submit:hover { transform: translateY(-2px); }
.form-hint { font-size: 13px; color: rgba(245,241,234,0.5); margin: 0; text-align: center; }

/* ── Footer ── */
.site-footer {}

/* Booking band */
.booking-band {
  background: var(--navy); padding: 96px 40px;
  position: relative; overflow: hidden;
}
.booking-band__glow {
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 120% at 50% -20%, rgba(201,168,76,0.16), transparent 60%);
  pointer-events: none;
}
.booking-band__inner { max-width: 760px; margin: 0 auto; text-align: center; position: relative; }
.booking-band__headline {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: clamp(32px, 4.4vw, 50px); line-height: 1.1;
  color: var(--cream); margin: 0 0 20px;
}
.booking-band__sub {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 20px; line-height: 1.6;
  color: rgba(245,241,234,0.82); margin: 0 0 36px;
}

/* Newsletter */
.newsletter {
  background: var(--navy-dark); padding: 72px 40px;
  border-top: 1px solid rgba(201,168,76,0.22);
}
.newsletter__inner {
  max-width: 980px; margin: 0 auto;
  display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center;
}
.newsletter__success {
  background: rgba(201,168,76,0.12); border: 1px solid rgba(201,168,76,0.4);
  border-radius: 14px; padding: 28px 30px; display: none;
}
.newsletter__success.visible { display: block; }
.newsletter__form-wrap {}
.newsletter__form-wrap.hidden { display: none; }
.newsletter-form { display: flex; flex-direction: column; gap: 12px; }
.newsletter-form label {
  font-family: 'Raleway', sans-serif; font-weight: 600;
  font-size: 13px; letter-spacing: 0.04em; color: rgba(245,241,234,0.7);
}
.newsletter-row { display: flex; gap: 10px; flex-wrap: wrap; }
.newsletter-input {
  flex: 1; min-width: 200px; font-family: 'DM Sans', sans-serif; font-size: 16px;
  color: var(--navy); background: var(--cream);
  border: 1px solid rgba(201,168,76,0.5); border-radius: 11px;
  padding: 14px 16px; outline: none;
}
.newsletter-input:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(201,168,76,0.25); }
.newsletter-submit {
  font-family: 'Raleway', sans-serif; font-weight: 700; font-size: 15px;
  color: var(--cream); background: var(--terracotta);
  border: none; border-radius: 11px; padding: 14px 26px;
  cursor: pointer; white-space: nowrap;
  box-shadow: 0 8px 20px rgba(224,122,80,0.3);
  transition: transform 0.22s cubic-bezier(.22,1,.36,1);
}
.newsletter-submit:hover { transform: translateY(-2px); }
.newsletter-note { font-size: 13px; color: rgba(245,241,234,0.5); margin: 2px 0 0; }

/* Footer base */
.footer-base { background: var(--navy); padding: 56px 40px 40px; }
.footer-base__grid {
  max-width: 1140px; margin: 0 auto;
  display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 40px;
  padding-bottom: 40px; border-bottom: 1px solid rgba(245,241,234,0.14);
}
.footer-base__logo { display: flex; align-items: center; gap: 12px; margin-bottom: 18px; }
.footer-base__logo img { height: 46px; width: auto; }
.footer-base__wordmark { display: flex; flex-direction: column; line-height: 1; }
.footer-base__name {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 19px; letter-spacing: 0.06em; color: var(--cream); white-space: nowrap;
}
.footer-base__sub { font-family: 'Raleway', sans-serif; font-weight: 600; font-size: 9px; letter-spacing: 0.34em; color: var(--gold); margin-top: 4px; }
.footer-base__tagline {
  font-family: 'Lora', serif; font-style: italic;
  font-size: 18px; color: rgba(245,241,234,0.78); margin: 0 0 16px;
}
.footer-base__email {
  font-size: 15px; color: var(--gold); text-decoration: none; transition: text-decoration 0.2s;
}
.footer-base__email:hover { text-decoration: underline; }
.footer-col-title {
  font-family: 'Raleway', sans-serif; font-weight: 700;
  font-size: 12px; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--gold); margin-bottom: 18px;
}
.footer-links { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 15px; color: rgba(245,241,234,0.82); text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--cream); }
.footer-base__bottom {
  max-width: 1140px; margin: 0 auto;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 12px; padding-top: 24px;
}
.footer-base__copy { font-size: 13px; color: rgba(245,241,234,0.5); }
.footer-base__dr {
  font-family: 'Raleway', sans-serif; font-size: 12px;
  letter-spacing: 0.16em; text-transform: uppercase; color: rgba(245,241,234,0.45);
}

/* ── Logo grid (credentials panel) ── */
.logo-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.logo-tile {
  border: 1px solid rgba(27,42,69,0.12); border-radius: 12px;
  aspect-ratio: 3 / 2; display: flex; align-items: center;
  justify-content: center; padding: 14px;
  box-shadow: 0 1px 2px rgba(40,30,10,0.04);
  overflow: hidden;
}
.logo-tile img { max-width: 100%; max-height: 100%; object-fit: contain; }

/* ── Stat block ── */
.stat { text-align: center; }
.stat__figure {
  font-family: 'Playfair Display', serif; font-weight: 800;
  font-size: clamp(34px, 4vw, 50px); line-height: 1; color: var(--gold); margin-bottom: 12px;
}
.stat__label { font-size: 15px; line-height: 1.5; color: rgba(245,241,234,0.8); }

/* ── Pressure / feature cards ── */
.pressure-card {
  background: var(--white); border: 1px solid rgba(201,168,76,0.3);
  border-radius: 18px; padding: 34px 32px;
  box-shadow: 0 1px 2px rgba(40,30,10,0.05), 0 12px 30px rgba(27,42,69,0.06);
}
.pressure-card h3 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 21px; color: var(--navy); margin: 0 0 12px;
}
.pressure-card p { font-size: 15px; line-height: 1.65; color: rgba(27,42,69,0.78); margin: 0; }

/* ── Section divider ── */
.section-divider { display: flex; align-items: center; gap: 18px; margin-bottom: 36px; }
.section-divider h2 {
  font-family: 'Playfair Display', serif; font-weight: 700;
  font-size: 26px; color: var(--navy); margin: 0; white-space: nowrap;
}
.section-divider__line { flex: 1; height: 1px; background: rgba(201,168,76,0.4); }

/* ── Masonry-ish columns ── */
.col-masonry { column-count: 3; column-gap: 24px; }

/* ── Responsive ── */
@media (max-width: 1024px) {
  .two-col--hero, .two-col--hero-flip { gap: 40px; }
  .five-col { grid-template-columns: repeat(3, 1fr); }
}

/* ── Mobile hamburger nav ── */
@media (max-width: 900px) {
  .site-header__inner { flex-wrap: nowrap; }
  .nav-burger {
    display: flex; flex-direction: column; justify-content: center; gap: 6px;
    width: 28px; height: 44px; box-sizing: content-box;
    padding: 0 8px; margin: 0 -8px; cursor: pointer; flex-shrink: 0;
    -webkit-tap-highlight-color: transparent;
  }
  .nav-burger span {
    display: block; height: 2px; width: 28px; border-radius: 2px;
    background: var(--navy);
    transition: transform 0.28s cubic-bezier(.22,1,.36,1), opacity 0.2s ease;
  }
  .nav-toggle:focus-visible ~ .nav-burger {
    outline: 2px solid var(--gold); outline-offset: 5px; border-radius: 4px;
  }
  .site-nav {
    position: absolute; top: 100%; left: 0; right: 0;
    flex-direction: column; align-items: stretch; justify-content: flex-start;
    gap: 0; padding: 4px 24px 18px;
    background: rgba(245,241,234,0.98);
    backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid rgba(201,168,76,0.35);
    box-shadow: 0 18px 30px rgba(27,42,69,0.12);
    max-height: 0; overflow: hidden; opacity: 0; pointer-events: none;
    transition: max-height 0.32s ease, opacity 0.26s ease, padding 0.32s ease;
  }
  .nav-toggle:checked ~ .site-nav {
    max-height: 80vh; opacity: 1; pointer-events: auto;
  }
  .site-nav__link {
    width: 100%; padding: 14px 2px; font-size: 16px;
    border-bottom: 1px solid rgba(201,168,76,0.18);
  }
  .site-nav__link.active::after { display: none; }
  .site-nav__link.active { color: var(--gold); }
  .btn-book { width: 100%; margin-top: 16px; padding: 14px 22px; text-align: center; }
  /* Burger → X */
  .nav-toggle:checked ~ .nav-burger span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
  .nav-toggle:checked ~ .nav-burger span:nth-child(2) { opacity: 0; }
  .nav-toggle:checked ~ .nav-burger span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
}

@media (max-width: 768px) {
  .section { padding: 64px 24px; }
  .section--sm { padding: 56px 24px; }
  .section--lg { padding: 72px 24px; }
  .two-col, .two-col--hero, .two-col--hero-flip { grid-template-columns: 1fr; gap: 40px; }
  .three-col { grid-template-columns: 1fr 1fr; }
  .five-col { grid-template-columns: 1fr 1fr; }
  .col-masonry { column-count: 2; }
  .booking-band { padding: 72px 24px; }
  .newsletter { padding: 56px 24px; }
  .newsletter__inner { grid-template-columns: 1fr; }
  .footer-base { padding: 40px 24px 32px; }
  .footer-base__grid { grid-template-columns: 1fr 1fr; }
  .site-header__inner { padding: 12px 24px; }
  .section-header { margin-bottom: 36px; }
  .logo-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 480px) {
  .section { padding: 52px 20px; }
  .three-col, .five-col { grid-template-columns: 1fr; }
  .col-masonry { column-count: 1; }
  .footer-base__grid { grid-template-columns: 1fr; }
  .gold-frame__border { inset: 12px -12px -12px 12px; }
  .logo-grid { grid-template-columns: repeat(2, 1fr); }
  .step-card { grid-template-columns: 56px 1fr; gap: 16px; padding: 24px; }
}
