/* ─────────────────────────────────────────────
   Morning Notes Collective — Main Stylesheet
   ───────────────────────────────────────────── */

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

:root {
  --navy:       #2C2420;
  --coral:      #C8693A;
  --cream:      #FAF8F4;
  --sage:       #7A9E7E;
  --gold:       #C8956C;
  --warm-white: #FEFCF9;
  --text-dark:  #2C2420;
  --text-mid:   #6B5B52;
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Lato', sans-serif;
  background: var(--warm-white);
  color: var(--text-dark);
  overflow-x: hidden;
}

/* ─── NAV ─── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.2rem 5%;
  background: rgba(253,250,245,0.95);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(43,58,103,0.08);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 2px 20px rgba(43,58,103,0.1); }

.nav-logo {
  display: flex; align-items: center; gap: 0.6rem; text-decoration: none;
}
.nav-logo img { height: 40px; width: auto; display: block; }
.nav-logo-text {
  font-family: 'Playfair Display', serif;
  font-size: 1rem; font-weight: 700;
  color: var(--navy); line-height: 1.1;
  letter-spacing: 0.04em;
}
.nav-logo-text span {
  display: block; font-size: 0.6rem; font-weight: 400;
  letter-spacing: 0.18em; color: var(--coral); text-transform: uppercase;
}

.nav-links { display: flex; gap: 2.5rem; list-style: none; }
.nav-links a {
  font-size: 0.82rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--navy); text-decoration: none; font-weight: 700;
  position: relative; padding-bottom: 2px;
  transition: color 0.2s;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 1.5px;
  background: var(--coral); transition: width 0.3s;
}
.nav-links a:hover { color: var(--coral); }
.nav-links a:hover::after { width: 100%; }

/* ─── HERO ─── */
#hero {
  min-height: 70vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding: 0;
  position: relative; overflow: hidden;
  background: var(--cream);
}

.hero-blob {
  position: absolute;
  border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%;
  z-index: 0;
  pointer-events: none;
}

/* Primary blob — large, coral/gold, upper right */
.hero-blob--primary {
  top: -12%;
  right: -8%;
  width: 58vw;
  height: 82vh;
  background: linear-gradient(
    135deg,
    rgba(200, 105, 58, 0.13) 0%,
    rgba(200, 149, 108, 0.11) 40%,
    rgba(122, 158, 126, 0.07) 100%
  );
  animation: morphBlobA 14s ease-in-out infinite alternate;
}

/* Secondary blob — smaller, sage accent, offset for depth */
.hero-blob--secondary {
  top: 10%;
  right: 5%;
  width: 36vw;
  height: 55vh;
  background: linear-gradient(
    160deg,
    rgba(200, 149, 108, 0.08) 0%,
    rgba(122, 158, 126, 0.09) 60%,
    rgba(200, 105, 58, 0.05) 100%
  );
  animation: morphBlobB 18s ease-in-out infinite alternate;
  animation-delay: -6s;
}

@keyframes morphBlobA {
  0%   { border-radius: 30% 70% 70% 30% / 30% 30% 70% 70%; transform: rotate(0deg)   scale(1);    }
  33%  { border-radius: 50% 50% 30% 70% / 60% 40% 60% 40%; transform: rotate(2deg)   scale(1.04); }
  66%  { border-radius: 60% 40% 55% 45% / 45% 60% 40% 55%; transform: rotate(-1deg)  scale(0.97); }
  100% { border-radius: 70% 30% 50% 50% / 40% 60% 40% 60%; transform: rotate(-3deg)  scale(1.02); }
}

@keyframes morphBlobB {
  0%   { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; transform: rotate(0deg)   scale(1);    }
  40%  { border-radius: 40% 60% 60% 40% / 30% 60% 40% 70%; transform: rotate(4deg)   scale(1.06); }
  70%  { border-radius: 50% 50% 40% 60% / 55% 45% 55% 45%; transform: rotate(-2deg)  scale(0.95); }
  100% { border-radius: 30% 70% 70% 30% / 50% 50% 50% 50%; transform: rotate(3deg)   scale(1.03); }
}

.hero-content {
  position: relative; z-index: 2; animation: fadeUp 0.9s ease both;
  width: 100%; padding: 3.5rem 4rem 3rem 8%;
  display: flex; flex-direction: column; justify-content: center;
}

.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.6rem;
  font-size: 1rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral); font-weight: 700; margin-bottom: 1.6rem;
}
.hero-eyebrow::before { content: ''; display: block; width: 28px; height: 1.5px; background: var(--coral); }

.hero-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.6rem, 5vw, 4rem);
  font-weight: 700; line-height: 1.15;
  color: var(--text-dark); margin-bottom: 1.2rem;
}
.hero-headline em { font-style: italic; color: var(--coral); }

.hero-sub {
  font-size: 1.3rem; color: var(--text-mid); line-height: 1.75;
  margin-bottom: 2.4rem; font-weight: 300;
}

.hero-cta,
.about-cta {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--coral); color: #fff;
  padding: 0.9rem 2rem; border-radius: 2px;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; text-decoration: none;
  transition: background 0.25s, transform 0.2s;
  align-self: flex-start;
}
.hero-cta:hover,
.about-cta:hover { background: #a84a26; transform: translateY(-2px); }
.hero-cta svg,
.about-cta svg { width: 16px; height: 16px; transition: transform 0.2s; }
.hero-cta:hover svg,
.about-cta:hover svg { transform: translateX(4px); }

.hero-tags {
  display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 2.2rem;
}
.hero-tag {
  font-size: 0.72rem; letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-dark); border: 1.5px solid rgba(44,36,32,0.2);
  padding: 0.35rem 0.9rem; border-radius: 100px;
  font-weight: 700;
}

/* ─── DIVIDER WAVES ─── */
.wave-divider { display: block; width: 100%; line-height: 0; }

/* ─── PILLARS ─── */
#pillars {
  background: var(--warm-white);
  padding: 0.75rem 5%;
  position: relative;
}
.pillars-inner {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1.5px;
}
.pillar {
  padding: 3rem 2.5rem;
  border-right: 1px solid rgba(43,58,103,0.1);
  opacity: 0; transform: translateY(30px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.pillar:last-child { border-right: none; }
.pillar.visible { opacity: 1; transform: translateY(0); }
.pillar-icon { margin-bottom: 1.4rem; }
.pillar-icon svg { width: 40px; height: 40px; }
.pillar-title {
  font-family: 'Playfair Display', serif;
  font-size: 1.35rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.8rem;
}
.pillar-body { font-size: 0.9rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

/* ─── ABOUT ─── */
#about {
  background: #e9e2dc;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 600px;
}
.about-inner { display: contents; }
.about-text {
  padding: 0.75rem 8% 0.75rem 4rem;
  display: flex; flex-direction: column; justify-content: center;
}
.about-label {
  font-size: 0.97rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral); font-weight: 700; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.about-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--coral); }
.about-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 700; color: var(--navy);
  line-height: 1.2; margin-bottom: 1.6rem;
}
.about-headline em { font-style: italic; color: var(--coral); }
.about-body { font-size: 1.25rem; color: var(--text-mid); line-height: 1.85; font-weight: 300; margin-bottom: 1.4rem; }
.about-signature {
  font-family: 'Playfair Display', serif;
  font-style: italic; font-size: 1.1rem; color: var(--navy);
  margin-top: 2rem;
}

.about-visual { display: flex; flex-direction: column; gap: 1.2rem; }
.about-quote-card {
  background: var(--coral);
  padding: 2.2rem 2rem; border-radius: 4px;
  position: relative; overflow: hidden;
}
.about-quote-card::before {
  font-family: 'Playfair Display', serif;
  font-size: 8rem; color: rgba(255,255,255,0.12); line-height: 1;
}
.about-quote-text {
  font-family: 'Lato', serif;
  text-align: center;
  font-size: 1.2rem;
  color: #fff; line-height: 1.6; position: relative; z-index: 1;
}

.about-values { display: grid; grid-template-columns: 1fr 1fr; gap: 0.8rem; }
.about-value {
  background: white; padding: 1.2rem 1.4rem; border-radius: 4px;
  border-left: 3px solid var(--sage);
}
.about-value-title { font-size: 1rem; letter-spacing: 0.1em; font-weight: 700; color: var(--navy); margin-bottom: 0.3rem; }
.about-value-text { font-size: 0.82rem; color: var(--text-mid); line-height: 1.5; }

.about-photo { width: 100%; height: 100%; overflow: hidden; }
.about-photo img {
  width: 100%; height: 100%; object-fit: cover; object-position: center;
  display: block;
}

/* ─── FOUNDER / OUR APPROACH ─── */
#founder {
  background: #e9e2dc;
  position: relative; overflow: hidden;
  display: grid; grid-template-columns: 1fr 1fr;
  min-height: 780px;
}
.founder-inner { display: contents; }
.founder-text {
  padding: 0.75rem 4rem 0.75rem 8%;
  display: flex; flex-direction: column; justify-content: center;
}
.founder-photo {
  width: 100%; height: 100%;
  overflow: hidden;
  position: relative;
}
/* Both images are stacked; JS toggles founder-img--hidden to crossfade.
   Default state: approach visible, kristin hidden (via class in HTML). */
.founder-photo img {
  width: 100%; height: 130%; object-fit: cover; object-position: top;
  display: block;
  position: absolute; top: 0; left: 0;
  will-change: transform, opacity;
  opacity: 1;
  transition: opacity 1.4s ease;
}
.founder-photo img.founder-img--hidden {
  opacity: 0;
  pointer-events: none;
}
/* meetkristin.png sits on top; approach.jpg is the base layer */
#founderImgKristin {
  z-index: 1;
  object-position: center top;
  width: 60%;
  height: auto;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: contain;
}
#founderImgApproach {
  z-index: 0;
}
.founder-photo::after {
  content: ''; position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  background: linear-gradient(to right, #e9e2dc 0%, rgba(233,226,220,0.5) 50%, transparent 100%);
  pointer-events: none;
  z-index: 2;
}
.founder-label {
  font-size: 0.97rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral); font-weight: 700; margin-bottom: 1.2rem;
  display: flex; align-items: center; gap: 0.6rem;
}
.founder-label::before { content: ''; display: block; width: 24px; height: 1.5px; background: var(--coral); }
.founder-body {
  font-size: 1.25rem; color: var(--text-mid); line-height: 1.85;
  font-weight: 300; margin-bottom: 1.4rem;
}
.founder-body i { font-style: italic; color: var(--text-dark); }
.founder-body b { font-weight: 600; color: var(--text-dark); }

/* ─── MEET KRISTIN EXPAND ─── */
.meet-kristin-toggle {
  display: inline-flex; align-items: center; gap: 0.55rem;
  background: none; border: none; cursor: pointer;
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--coral);
  padding: 0;
  margin-top: 0.5rem;
  transition: color 0.2s;
}
.meet-kristin-toggle:hover { color: #a84a26; }

.meet-kristin-toggle .mkt-icon {
  display: inline-flex; align-items: center; justify-content: center;
  width: 20px; height: 20px;
  border: 1.5px solid currentColor;
  border-radius: 50%;
  transition: transform 0.35s ease;
  flex-shrink: 0;
}
.meet-kristin-toggle .mkt-icon svg {
  width: 10px; height: 10px;
  transition: transform 0.35s ease;
}
.meet-kristin-toggle[aria-expanded="true"] .mkt-icon svg {
  transform: rotate(180deg);
}

.meet-kristin-panel {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.45s ease;
  overflow: hidden;
}
.meet-kristin-panel.open {
  grid-template-rows: 1fr;
}
.meet-kristin-panel-inner {
  overflow: hidden;
}

.meet-kristin-content {
  display: block;
  margin-top: 1.8rem;
  padding-top: 1.6rem;
  border-top: 1px solid rgba(44,36,32,0.12);
}

/* .meet-kristin-photo removed — image now crossfades in the founder-photo panel */

.meet-kristin-bio-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.42rem; font-weight: 700;
  color: var(--text-dark);
  margin-bottom: 0.25rem;
}
.meet-kristin-bio-title {
  font-size: 0.88rem; letter-spacing: 0.15em; text-transform: uppercase;
  color: var(--coral); font-weight: 700;
  margin-bottom: 1rem;
}
.meet-kristin-bio-body {
  font-size: 1.07rem; color: var(--text-mid); line-height: 1.8; font-weight: 300;
}
.meet-kristin-bio-body p + p { margin-top: 0.9rem; }

/* ─── SERVICES ─── */
#services {
  padding: 7rem 5%;
  background: var(--warm-white);
}
.services-inner { max-width: 1100px; margin: 0 auto; }
.section-header { text-align: center; margin-bottom: 4rem; }
.section-label {
  font-size: 0.97rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral); font-weight: 700; margin-bottom: 1rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.section-label::before,
.section-label::after { content: ''; display: block; width: 24px; height: 1.5px; background: var(--coral); }
.section-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 3.5vw, 2.6rem); font-weight: 700;
  color: var(--navy); margin-bottom: 1rem; line-height: 1.2;
}
.section-sub {
  font-size: 1.25rem; color: var(--text-mid);
  max-width: 520px; margin: 0 auto; line-height: 1.7; font-weight: 300;
}

.services-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem;
}
.service-card {
  padding: 2.4rem 2rem; border: 1.5px solid rgba(43,58,103,0.1);
  border-radius: 4px; position: relative; overflow: hidden;
  background: white;
  opacity: 0; transform: translateY(24px);
  transition: opacity 0.5s ease, transform 0.5s ease, border-color 0.3s, box-shadow 0.3s;
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card:hover {
  border-color: var(--coral);
  box-shadow: 0 12px 40px rgba(226,99,58,0.1);
  transform: translateY(-4px);
}
.service-card::before {
  content: ''; position: absolute; top: 0; left: 0; width: 3px; height: 0;
  background: var(--coral); transition: height 0.3s;
}
.service-card:hover::before { height: 100%; }
.service-num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; font-weight: 700; color: rgba(43,58,103,0.08);
  line-height: 1; margin-bottom: 1.2rem;
}
.service-icon { margin-bottom: 1.2rem; }
.service-icon svg { width: 32px; height: 32px; }
.service-title {
  font-family: 'Lato', serif;
  font-size: 1.2rem; font-weight: 600; color: var(--navy);
  margin-bottom: 0.7rem;
}
.service-body { font-size: 0.88rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; }

.service-bullets {
  max-height: 0; overflow: hidden;
  transition: max-height 0.4s ease, opacity 0.35s ease, margin-top 0.3s ease;
  opacity: 0; margin-top: 0;
}
.service-card:hover .service-bullets {
  max-height: 220px; opacity: 1; margin-top: 1rem;
}
.service-bullets ul {
  margin: 0; padding-left: 1.2rem;
  border-top: 1px solid rgba(43,58,103,0.1); padding-top: 0.9rem;
}
.service-bullets li {
  font-size: 0.82rem; color: var(--text-mid); line-height: 1.75; font-weight: 400;
}

/* ─── CONTACT ─── */
#contact {
  padding: 7rem 0;
  background: var(--cream);
  position: relative; overflow: hidden;
}
.contact-inner {
  max-width: 1100px; margin: 0 auto; text-align: center; position: relative; z-index: 1;
  padding: 0 5% 3rem;
}
.contact-label {
  font-size: 0.72rem; letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--coral); font-weight: 700; margin-bottom: 1.2rem;
  display: inline-flex; align-items: center; gap: 0.6rem;
}
.contact-label::before,
.contact-label::after { content: ''; display: block; width: 24px; height: 1.5px; background: var(--coral); }
.contact-headline {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2rem, 4vw, 3rem); font-weight: 700;
  color: var(--text-dark); line-height: 1.2; margin-bottom: 1.2rem;
}
.contact-headline em { font-style: italic; color: var(--coral); }
.contact-sub { font-size: 1.25rem; color: var(--text-mid); line-height: 1.75; font-weight: 300; margin-bottom: 3rem; }

.contact-email-link {
  display: inline-flex; align-items: center; gap: 0.8rem;
  color: var(--text-dark); text-decoration: none;
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.2rem, 2.5vw, 1.7rem);
  font-style: italic;
  border-bottom: 1.5px solid rgba(226,99,58,0.4);
  padding-bottom: 4px;
  transition: color 0.25s, border-color 0.25s;
}
.contact-email-link:hover { color: var(--coral); border-color: var(--coral); }

.contact-divider { width: 40px; height: 1.5px; background: rgba(43,58,103,0.15); margin: 2.5rem auto; }

.contact-details { display: flex; justify-content: center; gap: 3rem; flex-wrap: wrap; }
.contact-detail-item { text-align: center; }
.contact-detail-label {
  font-size: 0.65rem; letter-spacing: 0.18em; text-transform: uppercase;
  color: rgba(255,255,255,0.4); font-weight: 700; margin-bottom: 0.4rem;
}
.contact-detail-value { font-size: 0.9rem; color: rgba(255,255,255,0.75); }

/* ─── FOOTER ─── */
footer {
  background: #e9e2dc;
  padding: 2rem 5%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
  border-top: 1px solid rgba(43,58,103,0.08);
}
.footer-copy { font-size: 0.78rem; color: var(--text-mid); letter-spacing: 0.06em; }
.footer-tagline { font-style: italic; font-size: 0.85rem; color: var(--text-mid); }

/* ─── LINKEDIN ─── */
.linkedin-link {
  display: inline-flex; align-items: center; gap: 0.5rem;
  text-decoration: none;
  transition: opacity 0.2s, color 0.2s;
}
.linkedin-link svg {
  flex-shrink: 0;
  fill: currentColor;
}
.linkedin-link:hover { opacity: 0.7; }

/* Bio variant — sits between title and body text */
.linkedin-link--bio {
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 1.1rem;
}
.linkedin-link--bio svg { width: 14px; height: 14px; }

/* Footer variant — icon only */
.linkedin-link--footer {
  color: var(--text-mid);
}
.linkedin-link--footer svg { width: 18px; height: 18px; }

/* ─── HAMBURGER MENU ─── */
.nav-hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
  z-index: 200;
}
.nav-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ─── MOBILE NAV DRAWER ─── */
.mobile-nav-drawer {
  display: none;
  position: fixed;
  top: 0; left: 0; right: 0; bottom: 0;
  background: rgba(250,248,244,0.98);
  z-index: 150;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 2.5rem;
}
.mobile-nav-drawer.open { display: flex; }
.mobile-nav-drawer a {
  font-size: 1.5rem;
  font-family: 'Playfair Display', serif;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: 0.05em;
}
.mobile-nav-drawer a:hover { color: var(--coral); }

/* ─── ANIMATIONS ─── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(24px); }
  to   { opacity: 1; transform: translateY(0); }
}

/* ─── CONTACT FORM ─── */
.contact-form {
  width: 100%;
  text-align: left;
}
.cf-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
.cf-col-left,
.cf-col-right { display: flex; flex-direction: column; }
.cf-col-right { height: 100%; }
.cf-col-right .cf-row { flex: 1; display: flex; flex-direction: column; }
.cf-col-right .cf-row textarea { flex: 1; min-height: 180px; }
.cf-row { margin-bottom: 1.25rem; }
.cf-col-right .cf-row { margin-bottom: 1.25rem; }

.cf-row label {
  display: block;
  font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--text-mid);
  margin-bottom: 7px;
}
.cf-row label .cf-optional {
  font-weight: 400; color: rgba(107,91,82,0.55);
  letter-spacing: 0.05em; text-transform: none;
  font-size: 0.7rem; margin-left: 4px;
}
.cf-row input,
.cf-row textarea {
  width: 100%;
  border: 1px solid rgba(44,36,32,0.18);
  border-radius: 2px;
  padding: 11px 14px;
  font-size: 0.9375rem;
  font-family: 'Lato', sans-serif;
  font-weight: 300;
  color: var(--text-dark);
  background: var(--warm-white);
  transition: border-color 0.2s, box-shadow 0.2s;
  box-sizing: border-box;
  -webkit-appearance: none; appearance: none;
  resize: none; line-height: 1.6;
}
.cf-row input::placeholder,
.cf-row textarea::placeholder { color: rgba(107,91,82,0.4); font-weight: 300; }
.cf-row input:hover,
.cf-row textarea:hover { border-color: rgba(44,36,32,0.35); }
.cf-row input:focus,
.cf-row textarea:focus {
  outline: none;
  border-color: var(--coral);
  box-shadow: 0 0 0 3px rgba(200,105,58,0.1);
}
.cf-row.cf-has-error input,
.cf-row.cf-has-error textarea {
  border-color: #b94040;
  box-shadow: 0 0 0 3px rgba(185,64,64,0.1);
}
.cf-error-msg {
  display: none;
  font-size: 0.75rem; color: #b94040;
  margin-top: 5px; letter-spacing: 0.02em;
}
.cf-row.cf-has-error .cf-error-msg { display: block; }

.cf-col-divider {
  width: 1px;
  background: rgba(44,36,32,0.1);
  align-self: stretch;
  display: none;
}
.cf-submit {
  display: inline-flex; align-items: center; gap: 0.7rem;
  background: var(--coral); color: #fff;
  padding: 0.9rem 2rem; border-radius: 2px;
  font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase;
  font-weight: 700; font-family: 'Lato', sans-serif;
  border: none; cursor: pointer;
  transition: background 0.25s, transform 0.2s;
  width: 100%; justify-content: center;
  margin-top: 0.25rem;
}
.cf-submit:hover { background: #a84a26; transform: translateY(-2px); }
.cf-submit:active { transform: translateY(0); }
.cf-submit:disabled { opacity: 0.6; cursor: not-allowed; transform: none; }
.cf-submit svg { width: 16px; height: 16px; transition: transform 0.2s; }
.cf-submit:hover svg { transform: translateX(4px); }

.cf-error-banner {
  display: none;
  background: rgba(185,64,64,0.08);
  border: 1px solid rgba(185,64,64,0.25);
  border-radius: 2px; padding: 11px 14px;
  font-size: 0.82rem; color: #b94040;
  margin-bottom: 1.25rem; letter-spacing: 0.02em;
}
.cf-success {
  display: none;
  text-align: center;
  padding: 3rem 1rem;
}
.cf-success-mark {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem; color: var(--sage);
  margin-bottom: 1rem; line-height: 1;
}
.cf-success h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; font-weight: 600;
  color: var(--text-dark); margin-bottom: 0.7rem;
}
.cf-success p {
  font-size: 1rem; color: var(--text-mid);
  font-weight: 300; line-height: 1.7;
}

/* ─── RESPONSIVE ─── */
@media (max-width: 900px) {
  #hero { grid-template-columns: 1fr; min-height: auto; }
  .hero-blob--primary { width: 90vw; height: 60vh; top: -5%; right: -15%; }
  .hero-blob--secondary { width: 60vw; height: 40vh; top: 5%; right: -5%; }
  .hero-content { width: 100%; padding: 5rem 5% 2.5rem; }

  #about { grid-template-columns: 1fr; }
  .about-visual { padding: 0 5% 5rem; order: 2; }
  .about-text { padding: 5rem 5% 3rem; order: 1; }

  #founder { grid-template-columns: 1fr; }
  .founder-photo { min-height: 360px; order: -1; }
  .founder-photo::after { display: none; }
  .founder-text { padding: 4rem 5%; }



  .services-grid { grid-template-columns: 1fr 1fr; }
  .pillars-inner { grid-template-columns: 1fr; }
  .pillar { border-right: none; border-bottom: 1px solid rgba(43,58,103,0.1); }
  .pillar:last-child { border-bottom: none; }
}

@media (max-width: 600px) {
  .services-grid { grid-template-columns: 1fr; }
  .nav-hamburger { display: flex; }
  .nav-links { display: none; }
  .about-values { grid-template-columns: 1fr; }

  .service-bullets { max-height: none; opacity: 1; margin-top: 1rem; }



  footer { flex-direction: column; text-align: center; }
  .contact-email-link { font-size: clamp(1rem, 4vw, 1.4rem); word-break: break-all; }
}

@media (max-width: 760px) {
  .cf-columns { grid-template-columns: 1fr; gap: 0; }
  .cf-col-right .cf-row textarea { min-height: 140px; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
