/* Wellthisisnew Coaching — Brand Stylesheet */

:root {
  /* Brand palette — deep navy dominant, deep orange primary, peach + cream neutrals */
  --cream: #FFF6EF;
  --peach-100: #F8E8DD;
  --peach-200: #F0D2BC;
  --peach-300: #E8B98A;
  --terracotta: #E9652B;
  --terracotta-dark: #0E2A5A;
  --ink: #0E2A5A;
  --ink-soft: #3D4F73;
  --muted: #8A8F9C;
  --line: #F0DFD0;
  --white: #FFFFFF;

  --font-serif: 'Cormorant Garamond', 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --radius: 14px;
  --radius-lg: 24px;
  --shadow-sm: 0 2px 12px rgba(14, 42, 90, 0.06);
  --shadow-md: 0 10px 30px rgba(14, 42, 90, 0.10);

  --max-w: 1140px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--cream);
  line-height: 1.65;
  font-size: 17px;
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--terracotta-dark);
  text-decoration: none;
  transition: color 0.2s ease;
}
a:hover { color: var(--ink); }

h1, h2, h3, h4 {
  font-family: var(--font-serif);
  font-weight: 500;
  color: var(--ink);
  line-height: 1.2;
  margin: 0 0 0.6em;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.4rem, 5vw, 3.6rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.35rem; }

p { margin: 0 0 1em; }

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

/* ---------- Header / Nav ---------- */
.site-header {
  position: sticky;
  top: 0;
  background: rgba(255, 246, 239, 0.92);
  backdrop-filter: saturate(180%) blur(10px);
  border-bottom: 1px solid var(--line);
  z-index: 50;
}

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

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--ink);
  text-decoration: none;
}
.brand-mark {
  display: inline-block;
  width: 42px;
  height: 42px;
  flex-shrink: 0;
  background: url('../images/logo-monogram.png') center / contain no-repeat;
  transition: transform 0.3s ease;
}
.brand:hover .brand-mark { transform: rotate(15deg); }
.brand-mark svg { display: none; }
.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1;
}
.brand-name {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand-tag {
  font-family: var(--font-sans);
  font-size: 0.7rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-top: 4px;
}
.site-footer .brand-mark { width: 38px; height: 38px; }

@media (max-width: 520px) {
  .brand-name { font-size: 1.1rem; }
  .brand-mark { width: 34px; height: 34px; }
}

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

.nav-links a {
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  position: relative;
}
.nav-links a.active,
.nav-links a:hover { color: var(--terracotta); }
.nav-links a.btn-primary,
.nav-links a.btn-primary:hover { color: var(--white); }
.nav-links a.active::after {
  content: '';
  position: absolute;
  left: 0; right: 0;
  bottom: -6px;
  height: 2px;
  background: var(--terracotta);
  border-radius: 2px;
}

.nav-toggle {
  display: none;
  background: none;
  border: 0;
  cursor: pointer;
  padding: 6px;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--ink);
  margin: 5px 0;
  border-radius: 2px;
  transition: transform 0.2s;
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.97rem;
  letter-spacing: 0.01em;
  cursor: pointer;
  border: 0;
  transition: transform 0.15s ease, box-shadow 0.2s ease, background 0.2s ease;
  font-family: var(--font-sans);
}
.btn-primary {
  background: var(--terracotta);
  color: var(--white);
  box-shadow: 0 6px 18px rgba(233, 101, 43, 0.28);
}
.btn-primary:hover {
  background: var(--terracotta-dark);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(14, 42, 90, 0.32);
}
.btn-secondary {
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--ink);
}
.btn-secondary:hover {
  background: var(--ink);
  color: var(--cream);
}
.btn-ghost {
  background: var(--peach-100);
  color: var(--ink);
}
.btn-ghost:hover { background: var(--peach-200); color: var(--ink); }
.btn-book {
  background: #E22D7A;
  color: var(--white);
  box-shadow: 0 6px 18px rgba(226, 45, 122, 0.28);
}
.btn-book:hover {
  background: #B11E5E;
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 10px 22px rgba(226, 45, 122, 0.34);
}
.nav-links a.btn-book,
.nav-links a.btn-book:hover { color: var(--white); }

.btn-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

/* ---------- Hero ---------- */
.hero {
  padding: 90px 0 80px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--peach-200) 0%, transparent 70%);
  opacity: 0.7;
  z-index: 0;
}
.hero-inner {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 70px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.eyebrow {
  display: inline-block;
  font-size: 0.82rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--terracotta);
  font-weight: 600;
  margin-bottom: 18px;
}
.hero h1 { margin-bottom: 22px; }
.hero p.lead {
  font-size: 1.18rem;
  color: var(--ink-soft);
  max-width: 540px;
  margin-bottom: 0;
}

.portrait-wrap {
  position: relative;
  aspect-ratio: 4 / 5;
  border-radius: var(--radius-lg);
  background: linear-gradient(135deg, var(--peach-200), var(--peach-300));
  box-shadow: var(--shadow-md);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.portrait-wrap::after {
  content: 'Portrait';
  font-family: var(--font-serif);
  font-style: italic;
  font-size: 1.4rem;
  color: rgba(43, 32, 24, 0.45);
}
.portrait-wrap:has(img)::after { content: none; }
.portrait-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
}
.portrait-wrap.small { aspect-ratio: 4 / 5; max-width: 340px; }

/* ---------- Sections ---------- */
section { padding: 80px 0; }
section.tight { padding: 56px 0; }

.section-head {
  text-align: center;
  max-width: 680px;
  margin: 0 auto 56px;
}
.section-head p {
  color: var(--ink-soft);
  font-size: 1.08rem;
}

.bg-peach { background: var(--peach-100); }
.bg-cream { background: var(--cream); }

/* ---------- Pillars / Feature Grid ---------- */
.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.pillar {
  background: var(--white);
  padding: 36px 30px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--line);
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.pillar-icon {
  width: 48px; height: 48px;
  border-radius: 12px;
  background: var(--peach-100);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  color: var(--terracotta);
}
.pillar h3 { margin-bottom: 10px; }
.pillar p { color: var(--ink-soft); margin: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 64px;
  align-items: start;
}
.about-grid .lead { font-size: 1.15rem; color: var(--ink-soft); }

.stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 50px 0;
  text-align: center;
}
.stat {
  padding: 28px 16px;
  background: var(--peach-100);
  border-radius: var(--radius);
}
.stat-num {
  font-family: var(--font-serif);
  font-size: 2.4rem;
  color: var(--terracotta);
  line-height: 1;
}
.stat-label {
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 6px;
}

/* ---------- Services ---------- */
.services {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.service-card.wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 1.15fr);
  gap: 44px;
  align-items: start;
}
.service-card.wide .info { display: flex; flex-direction: column; }
.service-card.wide ul { margin: 0; }
.service-card {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px 34px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform 0.2s ease, box-shadow 0.25s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.service-card.featured {
  background: linear-gradient(180deg, var(--peach-100), var(--white));
  border-color: var(--peach-300);
}
.service-card .tag {
  position: absolute;
  top: 22px; right: 22px;
  background: var(--terracotta);
  color: var(--white);
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 5px 12px;
  border-radius: 999px;
}
.service-card h3 {
  font-size: 1.6rem;
  margin-bottom: 6px;
}
.service-card .summary {
  color: var(--ink-soft);
  margin-bottom: 22px;
}
.service-card ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  flex-grow: 1;
}
.service-card li {
  padding: 8px 0 8px 26px;
  position: relative;
  color: var(--ink-soft);
  font-size: 0.97rem;
  border-bottom: 1px dashed var(--line);
}
.service-card li:last-child { border-bottom: 0; }
.service-card li::before {
  content: '';
  position: absolute;
  left: 0; top: 16px;
  width: 14px; height: 14px;
  background: var(--peach-200);
  border-radius: 50%;
  border: 3px solid var(--terracotta);
}

/* ---------- Testimonials ---------- */
.testimonials-wall {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 28px;
}
.testimonial {
  background: var(--white);
  border-radius: var(--radius);
  padding: 56px 34px 36px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.testimonial::before {
  content: '';
  position: absolute;
  top: -18px; left: 24px;
  width: 52px; height: 52px;
  background: url('../images/icon-heart.png') center / contain no-repeat;
}
.testimonial blockquote {
  margin: 0 0 22px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  line-height: 1.5;
  color: var(--ink);
  font-style: italic;
  position: relative;
  z-index: 1;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 14px;
  border-top: 1px solid var(--line);
  padding-top: 18px;
}
.author-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--peach-200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-serif);
  font-weight: 600;
  color: var(--terracotta-dark);
}
.author-info strong { display: block; font-size: 0.98rem; }
.author-info span { color: var(--muted); font-size: 0.88rem; }

.testimonial.placeholder {
  background: var(--white);
  border-style: dashed;
}
.testimonial.placeholder blockquote {
  color: var(--ink-soft);
}

/* ---------- Substack ---------- */
.substack-hero {
  background: linear-gradient(135deg, var(--peach-100), var(--peach-200));
  border-radius: var(--radius-lg);
  padding: 64px 56px;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
  box-shadow: var(--shadow-sm);
}
.substack-hero .icon {
  width: 64px; height: 64px;
  margin: 0 auto 24px;
  background: var(--white);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow-sm);
}

.posts-preview {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.post-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px;
  border: 1px solid var(--line);
  transition: transform 0.2s;
}
.post-card:hover { transform: translateY(-3px); }
.post-card .date {
  font-size: 0.82rem;
  color: var(--muted);
  letter-spacing: 0.05em;
}
.post-card h3 {
  font-size: 1.2rem;
  margin: 8px 0 10px;
}
.post-card p { font-size: 0.95rem; color: var(--ink-soft); margin: 0; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}
.contact-info h3 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--terracotta);
  margin-bottom: 8px;
}
.contact-info p { color: var(--ink-soft); margin-bottom: 28px; }

.contact-methods {
  list-style: none;
  padding: 0;
  margin: 0 0 36px;
  display: grid;
  gap: 14px;
}
.contact-methods li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 16px 20px;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid var(--line);
}
.contact-methods .ico {
  width: 36px; height: 36px;
  background: var(--peach-100);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  flex-shrink: 0;
}

form.contact-form {
  background: var(--white);
  border-radius: var(--radius-lg);
  padding: 40px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.form-row { margin-bottom: 20px; }
.form-row.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
  margin-bottom: 0;
}
.form-row.split > * { margin-bottom: 20px; }
label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 6px;
  color: var(--ink);
}
input, select, textarea {
  width: 100%;
  padding: 13px 16px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: inherit;
  font-size: 0.98rem;
  background: var(--cream);
  color: var(--ink);
  transition: border-color 0.2s, background 0.2s;
}
input:focus, select:focus, textarea:focus {
  outline: none;
  border-color: var(--terracotta);
  background: var(--white);
}
textarea { resize: vertical; min-height: 160px; }

.form-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 14px;
}

.form-success {
  display: none;
  background: var(--peach-100);
  border: 1px solid var(--peach-300);
  border-radius: var(--radius);
  padding: 20px;
  margin-top: 18px;
  color: var(--ink);
}
.form-success.show { display: block; }

/* ---------- CTA Band ---------- */
.cta-band {
  background: var(--ink);
  color: var(--cream);
  padding: 80px 0;
  text-align: center;
}
.cta-band h2 { color: var(--cream); }
.cta-band p {
  color: rgba(255, 248, 241, 0.78);
  max-width: 560px;
  margin: 0 auto 30px;
  font-size: 1.08rem;
}
.cta-band .btn-primary {
  background: var(--peach-200);
  color: var(--ink);
  box-shadow: 0 6px 18px rgba(0,0,0,0.25);
}
.cta-band .btn-primary:hover {
  background: var(--cream);
  color: var(--ink);
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--peach-100);
  padding: 60px 0 30px;
  border-top: 1px solid var(--line);
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 40px;
  margin-bottom: 40px;
}
.footer-grid h4 {
  font-family: var(--font-sans);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--ink);
  margin-bottom: 16px;
}
.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}
.footer-grid a { color: var(--ink-soft); font-size: 0.95rem; }
.footer-grid a:hover { color: var(--terracotta); }

.socials {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}
.social-link {
  width: 38px; height: 38px;
  border-radius: 50%;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--terracotta);
  border: 1px solid var(--line);
}
.social-link:hover { background: var(--terracotta); color: var(--white); }

.footer-bottom {
  border-top: 1px solid var(--line);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.88rem;
  color: var(--muted);
}

/* ---------- Page Header ---------- */
.page-hero {
  padding: 70px 0 50px;
  text-align: center;
  position: relative;
}
.page-hero h1 { margin-bottom: 14px; }
.page-hero p {
  font-size: 1.15rem;
  color: var(--ink-soft);
  max-width: 600px;
  margin: 0 auto;
}

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .hero { padding: 60px 0; }
  .hero-inner { grid-template-columns: 1fr; gap: 40px; }
  .pillars, .services, .testimonials-wall, .posts-preview { grid-template-columns: 1fr; }
  .service-card.wide { grid-template-columns: 1fr; gap: 24px; }
  .about-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(3, 1fr); gap: 12px; }
  .stat-num { font-size: 1.8rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .substack-hero { padding: 44px 28px; }

  .nav-toggle { display: block; }
  .nav-links {
    position: absolute;
    top: 100%; left: 0; right: 0;
    background: var(--cream);
    flex-direction: column;
    align-items: flex-start;
    padding: 20px 24px;
    border-bottom: 1px solid var(--line);
    gap: 18px;
    display: none;
  }
  .nav-links.open { display: flex; }
  .nav-links a.active::after { display: none; }

  section { padding: 56px 0; }
  .form-row.split { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
  .btn { padding: 12px 22px; font-size: 0.92rem; }
}
