:root {
  --brown-950: #26110d;
  --brown-850: #452018;
  --brown-700: #6a352b;
  --clay: #9c5747;
  --rose: #d77b6b;
  --cream: #fff3e6;
  --paper: #fff9f1;
  --sand: #efd9bd;
  --sage: #6f8d86;
  --sage-dark: #315b55;
  --text: #271b18;
  --muted: #6e5b55;
  --white: #ffffff;
  --shadow: 0 24px 70px rgba(38, 17, 13, 0.16);
  --radius: 8px;
  --max: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background: var(--paper);
  font-family: Inter, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.5;
  overflow-x: hidden;
}

body.menu-open {
  overflow: hidden;
}

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

a {
  color: inherit;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: 18px clamp(20px, 5vw, 64px);
  color: var(--cream);
  transition: background 0.25s ease, box-shadow 0.25s ease, color 0.25s ease;
}

.site-header.is-scrolled,
.site-header.is-open {
  color: var(--brown-850);
  background: rgba(255, 249, 241, 0.94);
  box-shadow: 0 12px 30px rgba(69, 32, 24, 0.08);
  backdrop-filter: blur(16px);
}

.brand {
  display: grid;
  gap: 1px;
  text-decoration: none;
  font-weight: 800;
}

.brand span {
  font-size: 18px;
  letter-spacing: 0;
}

.brand small {
  font-size: 12px;
  color: currentColor;
  opacity: 0.72;
  font-weight: 700;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
  font-size: 14px;
  font-weight: 800;
}

.main-nav a {
  text-decoration: none;
  position: relative;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -7px;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 999px;
  background: transparent;
  color: currentColor;
  padding: 11px;
  cursor: pointer;
}

.site-header.is-scrolled .menu-toggle,
.site-header.is-open .menu-toggle {
  border-color: rgba(69, 32, 24, 0.2);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: currentColor;
  border-radius: 999px;
  margin: 5px 0;
}

.section-band {
  position: relative;
  scroll-margin-top: 86px;
}

.section-inner {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 132px clamp(20px, 6vw, 78px) clamp(64px, 8vw, 92px);
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(112deg, rgba(38, 17, 13, 0.96) 0%, rgba(69, 32, 24, 0.94) 46%, rgba(106, 53, 43, 0.9) 100%),
    var(--brown-850);
}

.hero-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(390px, 0.68fr);
  align-items: center;
  gap: clamp(40px, 5vw, 106px);
  width: min(1640px, 100%);
  margin: 0 auto;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(111, 141, 134, 0.2), transparent 48%),
    linear-gradient(180deg, rgba(255, 243, 230, 0.05), transparent 52%);
  pointer-events: none;
}

.hero-content,
.hero-portrait {
  position: relative;
  z-index: 2;
}

.hero-content {
  align-self: center;
  min-width: 0;
  max-width: 650px;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--rose);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero h1,
.section-copy h2,
.section-heading h2,
.listening h2,
.contact h2 {
  margin: 0;
  font-family: "Libre Baskerville", Georgia, serif;
  font-weight: 700;
  letter-spacing: 0;
}

.hero h1 {
  max-width: 760px;
  font-size: clamp(48px, 7vw, 92px);
  line-height: 0.96;
}

.hero-text {
  max-width: 590px;
  margin: 28px 0 0;
  color: rgba(255, 243, 230, 0.86);
  font-size: clamp(18px, 2vw, 22px);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 14px;
  font-weight: 900;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: var(--brown-950);
  background: var(--sand);
  box-shadow: 0 16px 34px rgba(239, 217, 189, 0.22);
}

.button.secondary {
  color: var(--cream);
  border-color: rgba(255, 243, 230, 0.5);
  background: rgba(255, 255, 255, 0.04);
}

.button.text-link {
  color: var(--brown-850);
  border-color: rgba(69, 32, 24, 0.18);
  background: rgba(255, 255, 255, 0.36);
}

.hero-portrait {
  width: clamp(390px, 29vw, 610px);
  min-width: 0;
  aspect-ratio: 0.72;
  overflow: hidden;
  border: 1px solid rgba(255, 243, 230, 0.22);
  border-radius: var(--radius);
  background: rgba(255, 249, 241, 0.1);
  box-shadow: 0 32px 70px rgba(38, 17, 13, 0.34);
  justify-self: center;
}

.hero-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.intro,
.approach,
.contact {
  padding: clamp(76px, 10vw, 122px) 0;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(280px, 0.75fr);
  gap: clamp(28px, 6vw, 86px);
  align-items: center;
}

.split.reverse {
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1fr);
}

.section-copy h2,
.section-heading h2,
.contact h2 {
  color: var(--brown-850);
  font-size: clamp(34px, 5vw, 58px);
  line-height: 1.04;
}

.section-copy p,
.contact p {
  margin: 22px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-copy .lead {
  color: var(--text);
  font-size: clamp(20px, 2.4vw, 26px);
  line-height: 1.32;
}

.credentials {
  border-radius: var(--radius);
  padding: clamp(28px, 4vw, 42px);
  color: var(--cream);
  background:
    linear-gradient(145deg, rgba(106, 53, 43, 0.95), rgba(69, 32, 24, 0.96)),
    var(--brown-850);
  box-shadow: var(--shadow);
}

.credential-title {
  margin: 0 0 18px;
  color: var(--sand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.credentials ul {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 18px;
}

.credentials li {
  position: relative;
  padding-left: 28px;
  color: rgba(255, 243, 230, 0.9);
  font-size: 17px;
}

.credentials li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--rose);
}

.quote-band {
  padding: clamp(82px, 10vw, 132px) 0;
  overflow: hidden;
  color: var(--brown-850);
  background:
    linear-gradient(rgba(255, 249, 241, 0.82), rgba(255, 249, 241, 0.9)),
    url("assets/flower-soft.jpeg") center 72% / cover;
}

.quote-band .section-inner {
  max-width: 940px;
  text-align: center;
}

.quote-band p {
  margin: 0;
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(34px, 5.8vw, 68px);
  line-height: 0.98;
  color: var(--brown-700);
}

.quote-band span {
  display: block;
  max-width: 780px;
  margin: 26px auto 0;
  color: var(--text);
  font-size: clamp(18px, 2.2vw, 22px);
  font-weight: 700;
}

.themes {
  padding: clamp(76px, 10vw, 120px) 0;
  background: #fff7ee;
}

.section-heading {
  max-width: 810px;
}

.theme-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  margin-top: 42px;
}

.theme-item {
  min-height: 178px;
  padding: 24px;
  border-radius: var(--radius);
  border: 1px solid rgba(106, 53, 43, 0.12);
  background: rgba(255, 255, 255, 0.68);
  box-shadow: 0 14px 34px rgba(69, 32, 24, 0.06);
}

.theme-item span {
  color: var(--sage);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0.16em;
}

.theme-item h3 {
  margin: 42px 0 0;
  color: var(--brown-850);
  font-size: clamp(23px, 2.8vw, 34px);
  line-height: 1.05;
}

.approach {
  background:
    radial-gradient(circle at 88% 16%, rgba(111, 141, 134, 0.18), transparent 30%),
    var(--paper);
}

.image-panel {
  min-height: 540px;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.image-panel img {
  width: 100%;
  height: 100%;
  min-height: 540px;
  object-fit: cover;
}

.listening {
  min-height: 560px;
  display: flex;
  align-items: center;
  padding: 90px 0;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(38, 17, 13, 0.74), rgba(106, 53, 43, 0.58)),
    url("assets/women-celebration.jpeg") center / cover;
}

.listening-inner {
  max-width: 900px;
}

.listening p {
  margin: 0;
  max-width: 760px;
  color: rgba(255, 243, 230, 0.88);
  font-size: clamp(23px, 3vw, 36px);
  font-weight: 800;
  line-height: 1.16;
}

.listening h2 {
  max-width: 880px;
  margin-top: 12px;
  color: var(--white);
  font-family: "Archivo Black", Impact, sans-serif;
  font-size: clamp(42px, 7vw, 84px);
  line-height: 0.92;
}

.contact {
  background:
    radial-gradient(circle at 14% 80%, rgba(215, 123, 107, 0.16), transparent 28%),
    linear-gradient(180deg, #fff9f1, #f6e7d6);
}

.contact-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.contact-info {
  border-radius: var(--radius);
  padding: 32px;
  color: var(--cream);
  background: var(--brown-850);
  box-shadow: var(--shadow);
}

.contact-info p {
  margin: 0;
  color: rgba(255, 243, 230, 0.82);
  font-size: 17px;
}

.contact-info p + p {
  margin-top: 12px;
}

.contact-info strong {
  color: var(--white);
  font-size: 22px;
}

.floating-whatsapp {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 15;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 18px;
  border-radius: 999px;
  color: var(--white);
  background: var(--sage-dark);
  box-shadow: 0 16px 38px rgba(49, 91, 85, 0.28);
  text-decoration: none;
  font-size: 13px;
  font-weight: 900;
  gap: 8px;
}

.whatsapp-icon {
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  fill: currentColor;
}

.floating-text {
  line-height: 1;
}

.site-footer {
  padding: 26px 20px;
  color: rgba(255, 243, 230, 0.74);
  background: var(--brown-950);
  text-align: center;
  font-size: 14px;
}

.site-footer p {
  margin: 0;
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (max-width: 900px) {
  .menu-toggle {
    display: block;
  }

  .main-nav {
    position: fixed;
    top: 72px;
    left: 20px;
    right: 20px;
    display: grid;
    gap: 0;
    padding: 12px;
    border-radius: var(--radius);
    color: var(--brown-850);
    background: rgba(255, 249, 241, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s ease;
  }

  .main-nav.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  .main-nav a {
    padding: 16px;
  }

  .hero {
    min-height: auto;
    padding-top: 112px;
  }

  .hero-layout {
    grid-template-columns: minmax(0, 1fr);
    gap: 12px;
    width: min(100%, 390px);
    margin: 0 auto;
  }

  .hero-layout > * {
    min-width: 0;
  }

  .hero-content {
    padding-bottom: 4px;
  }

  .hero-portrait {
    width: min(100%, 390px);
    min-width: 0;
    aspect-ratio: 0.78;
  }

  .split,
  .split.reverse,
  .contact-inner {
    grid-template-columns: 1fr;
  }

  .theme-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .image-panel,
  .image-panel img {
    min-height: 360px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span {
    font-size: 16px;
  }

  .menu-toggle {
    position: fixed;
    top: 14px;
    left: calc(100vw - 62px);
  }

  .hero {
    padding-left: 20px;
    padding-right: 20px;
    gap: 0;
    align-items: flex-start;
  }

  .hero-layout {
    width: 100%;
    max-width: 350px;
    margin: 0;
  }

  .hero h1 {
    font-size: clamp(34px, 9.2vw, 38px);
    line-height: 1.06;
    max-width: 100%;
    overflow-wrap: break-word;
  }

  .hero-text {
    max-width: 100%;
    font-size: 17px;
    overflow-wrap: break-word;
  }

  .hero-content {
    width: 100%;
    max-width: 100%;
  }

  .hero-portrait {
    justify-self: center;
    width: min(100%, 350px);
    margin-top: 12px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .theme-grid {
    grid-template-columns: 1fr;
  }

  .theme-item {
    min-height: 140px;
  }

  .theme-item h3 {
    margin-top: 30px;
  }

  .listening {
    min-height: 480px;
  }

  .floating-whatsapp {
    left: calc(100vw - 66px);
    right: auto;
    bottom: 14px;
    min-width: 52px;
    width: 52px;
    height: 52px;
    padding: 0;
  }

  .floating-text {
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip-path: inset(50%);
    position: absolute;
  }

  .whatsapp-icon {
    width: 24px;
    height: 24px;
  }
}
