:root {
  --paper: #fffaf6;
  --cream: #f7eee7;
  --cream-deep: #ead8cf;
  --blush: #ecd0cf;
  --rose: #c99091;
  --rose-deep: #9f6264;
  --sage: #7f8d7a;
  --ink: #332b28;
  --muted: #756963;
  --line: #e5d5cc;
  --white: #ffffff;
  --shadow: 0 22px 50px rgba(112, 76, 67, 0.12);
  --maxw: 1160px;
  --radius: 8px;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Jost", Arial, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

a {
  color: inherit;
  text-decoration: none;
}

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

.container {
  width: min(100% - 40px, var(--maxw));
  margin: 0 auto;
}

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1.08;
  letter-spacing: 0;
}

h1 {
  max-width: 560px;
  font-size: clamp(2.8rem, 5.8vw, 5.05rem);
  font-style: italic;
}

h2 {
  font-size: clamp(2.2rem, 5vw, 4.2rem);
  font-style: italic;
}

h3 {
  font-size: clamp(1.35rem, 2vw, 1.7rem);
}

p {
  margin: 0 0 1rem;
  font-size: 1.02rem;
}

.center {
  text-align: center;
}

.intro {
  max-width: 680px;
  margin: 0 auto;
  color: var(--muted);
}

.section {
  padding: clamp(60px, 8vw, 108px) 0;
}

.section-label,
.eyebrow {
  color: var(--rose-deep);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  margin-bottom: 1rem;
  text-transform: uppercase;
}

.quiet-band {
  background: var(--cream);
}

.dark-band {
  background: #33252a;
  color: var(--paper);
}

.dark-band .section-label {
  color: #e0b9b4;
}

.dark-band h2 {
  color: var(--paper);
}

.dark-band .story-copy p {
  color: rgba(255, 250, 246, 0.78);
}

.dark-band .soft-image {
  border-color: rgba(255, 255, 255, 0.18);
  box-shadow: 0 20px 48px rgba(20, 12, 16, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-top: 5px solid #3a1f33;
  border-bottom: 1px solid rgba(229, 213, 204, 0.75);
  background: rgba(255, 250, 246, 0.92);
  backdrop-filter: blur(14px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 86px;
}

.logo {
  display: grid;
  line-height: 1.05;
}

.logo-name {
  font-family: var(--serif);
  font-size: 1.65rem;
  font-style: italic;
  font-weight: 600;
}

.logo-role {
  color: var(--muted);
  font-size: 0.66rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 18px;
}

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

.nav-links a {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: color 0.2s ease, background 0.2s ease;
}

.nav-links a:hover {
  color: var(--rose-deep);
}

.nav-links .nav-cta {
  border: 1px solid var(--rose);
  border-radius: 999px;
  padding: 11px 18px;
}

.nav-instagram {
  display: grid;
  place-items: center;
  width: 38px;
  height: 38px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  padding: 0;
  transition: border-color 0.2s ease, background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.nav-instagram:hover,
.nav-instagram:focus-visible {
  border-color: var(--rose);
  background: var(--cream);
  color: var(--rose-deep);
  transform: translateY(-1px);
}

.nav-instagram svg {
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 1px;
  margin: 4px auto;
  background: var(--ink);
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(5px) rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.nav-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-5px) rotate(-45deg);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 13px 24px;
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  line-height: 1.2;
  text-align: center;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
}

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

.btn-primary {
  background: var(--rose-deep);
  color: var(--white);
}

.btn-primary:hover {
  background: var(--ink);
}

.btn-ghost {
  border-color: var(--rose);
  color: var(--rose-deep);
}

.btn-ghost:hover {
  background: var(--blush);
}

.btn-wide {
  width: 100%;
}

.text-link,
.read-more {
  appearance: none;
  border: 0;
  background: transparent;
  color: var(--rose-deep);
  cursor: pointer;
  display: inline-flex;
  font-size: 0.82rem;
  font-weight: 500;
  font-family: var(--sans);
  letter-spacing: 0.12em;
  padding: 0 0 4px;
  border-bottom: 1px solid rgba(159, 98, 100, 0.42);
  text-transform: uppercase;
}

.text-link:hover,
.read-more:hover {
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: calc(100vh - 86px);
  display: grid;
  align-items: end;
  overflow: hidden;
  background: linear-gradient(115deg, #3b2c2b 0%, #5b4643 38%, #876a66 66%, #ab8a84 100%);
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(51, 43, 40, 0.58), rgba(51, 43, 40, 0.18) 48%, rgba(255, 250, 246, 0.02)),
    linear-gradient(135deg, #3b2c2b 0%, #8b6d67 64%, #ab8a84 100%);
}

.hero-media::before {
  content: "";
  position: absolute;
  right: calc(clamp(20px, 4vw, 64px) - 18px);
  top: calc(clamp(36px, 6vw, 70px) + 18px);
  width: min(44vw, 540px);
  height: min(76vh, 680px);
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 10px;
  background: rgba(255, 250, 246, 0.07);
  box-shadow: none;
}

.hero-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background: linear-gradient(90deg, rgba(51, 43, 40, 0.38), rgba(51, 43, 40, 0.08) 54%, rgba(51, 43, 40, 0));
}

.hero-portrait {
  position: absolute;
  right: clamp(20px, 4vw, 64px);
  top: clamp(36px, 6vw, 70px);
  z-index: 1;
  width: min(44vw, 540px);
  height: min(76vh, 680px);
  border: 1px solid rgba(255, 255, 255, 0.38);
  border-radius: 10px;
  box-shadow: 0 30px 70px rgba(30, 20, 18, 0.36);
  object-fit: cover;
  object-position: center 58%;
}

.hero-content {
  position: relative;
  z-index: 3;
  padding: 0 0 clamp(54px, 8vw, 92px);
  color: var(--white);
}

.hero-content .eyebrow {
  color: rgba(255, 255, 255, 0.82);
}

.hero-lead {
  max-width: 560px;
  margin: 1.3rem 0 1.8rem;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 2vw, 1.25rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.mobile-proof-strip {
  display: block;
  border-bottom: 1px solid var(--line);
  background: var(--cream);
}

.proof-strip-inner {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.proof-strip-inner article {
  padding: 28px 24px;
  border-left: 1px solid var(--line);
}

.proof-strip-inner article:last-child {
  border-right: 1px solid var(--line);
}

.proof-strip-inner strong {
  display: block;
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: clamp(1.65rem, 2.5vw, 2rem);
  font-style: italic;
  font-weight: 500;
  line-height: 1;
}

.proof-strip-inner span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
  margin-top: 0.65rem;
}

.hero-location {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.12);
  color: rgba(255, 250, 246, 0.9);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 8px 16px;
}

.hero-actions .btn-ghost {
  border-color: rgba(255, 255, 255, 0.62);
  color: var(--white);
}

.hero-actions .btn-ghost:hover {
  background: rgba(255, 255, 255, 0.18);
}

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

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

.story-copy {
  max-width: 650px;
}

.story-copy h2 {
  margin-bottom: 1.4rem;
}

.story-copy p {
  color: var(--muted);
}

.portrait-panel,
.soft-image {
  min-height: 560px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.portrait-panel {
  background: var(--cream-deep);
}

.soft-image {
  background: var(--cream-deep);
}

.portrait-panel img,
.soft-image img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  display: block;
}

.portrait-panel img {
  object-position: center top;
}

.soft-image img {
  object-position: center top;
}

.services-section {
  background: var(--paper);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
  margin-top: 38px;
}

.service-card,
.resource-card,
.contact-form {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 12px 34px rgba(112, 76, 67, 0.06);
}

.service-card {
  min-height: 246px;
  padding: 24px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow);
}

.service-number {
  display: block;
  margin-bottom: 24px;
  color: var(--rose);
  font-family: var(--serif);
  font-size: 2.2rem;
  font-style: italic;
}

.service-card h3 {
  margin-bottom: 0.75rem;
}

.service-card p,
.resource-card p,
.article-row p {
  color: var(--muted);
  line-height: 1.62;
}

.service-card-guide {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--rose-deep);
  border-color: transparent;
  color: var(--white);
}

.service-card-guide h3 {
  max-width: 320px;
  color: var(--white);
  font-style: italic;
}

.service-guide-link {
  align-self: flex-start;
  color: var(--white);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.service-card-guide:hover {
  box-shadow: 0 22px 50px rgba(97, 55, 57, 0.22);
}

.resources-section {
  background: var(--paper);
}

.resource-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.resource-card {
  padding: 22px;
}

.resource-cover {
  display: grid;
  place-items: center;
  min-height: 190px;
  margin-bottom: 18px;
  border-radius: 6px;
  background:
    linear-gradient(180deg, rgba(255, 250, 246, 0.56), rgba(255, 250, 246, 0.1)),
    linear-gradient(135deg, var(--blush), var(--cream-deep));
  color: var(--rose-deep);
  font-family: var(--serif);
  font-size: 2.3rem;
  font-style: italic;
}

.resource-type,
.article-meta {
  color: var(--rose-deep);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.14em;
  margin-bottom: 0.45rem;
  text-transform: uppercase;
}

.resource-card h3 {
  margin-bottom: 0.7rem;
}

.article-list {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.article-list[aria-busy="true"] {
  opacity: 0.72;
}

.article-list.is-loaded {
  animation: articleFadeIn 0.24s ease-out;
}

.article-row {
  display: grid;
  align-content: start;
  gap: 16px;
  min-height: 245px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.article-row:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
}

.article-row .read-more {
  align-self: end;
  justify-self: start;
  margin-top: auto;
}

.mobile-scroll-controls {
  display: none;
}

.article-modal[hidden] {
  display: none;
}

.article-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: start center;
  padding: clamp(18px, 5vw, 56px) 14px;
  overflow-y: auto;
}

.article-modal-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(40, 30, 28, 0.52);
  backdrop-filter: blur(6px);
}

.article-modal-panel {
  position: relative;
  z-index: 1;
  width: min(100%, 760px);
  overflow: hidden;
  border-radius: 14px;
  background: var(--paper);
  box-shadow: 0 40px 100px rgba(40, 30, 28, 0.4);
}

.article-modal-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 40px;
  height: 40px;
  border: 0;
  border-radius: 999px;
  background: rgba(255, 250, 246, 0.88);
  box-shadow: 0 6px 18px rgba(80, 60, 55, 0.18);
  color: var(--rose-deep);
  cursor: pointer;
  font: 300 1.45rem/1 var(--sans);
}

.article-modal-visual {
  display: grid;
  place-items: center;
  min-height: clamp(180px, 26vw, 280px);
  background:
    repeating-linear-gradient(45deg, rgba(159, 98, 100, 0.07) 0 1px, transparent 1px 15px),
    linear-gradient(135deg, var(--cream-deep), var(--paper));
  color: var(--rose-deep);
  font-family: "Courier New", monospace;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.article-modal-content {
  padding: clamp(28px, 5vw, 52px);
}

.article-modal-content h2 {
  margin-bottom: 1.2rem;
}

.article-modal-lead {
  margin-bottom: 1.8rem;
  padding-bottom: 1.8rem;
  border-bottom: 1px solid var(--line);
  color: #5e534d;
  font-size: clamp(1.05rem, 1.5vw, 1.18rem);
  font-style: italic;
  line-height: 1.7;
}

.article-modal-body {
  display: grid;
  gap: 1rem;
  color: #4a423d;
}

.article-modal-body h2,
.article-modal-body h3,
.article-modal-body h4 {
  margin: 1.1rem 0 0.1rem;
  color: var(--ink);
}

.article-modal-body h2 {
  font-size: clamp(1.45rem, 2.4vw, 2rem);
}

.article-modal-body h3 {
  font-size: clamp(1.18rem, 1.8vw, 1.45rem);
}

.article-modal-body ul,
.article-modal-body ol {
  display: grid;
  gap: 0.55rem;
  margin: 0.2rem 0 0.4rem 1.35rem;
  padding: 0;
  line-height: 1.72;
}

.article-modal-body blockquote {
  margin: 0.4rem 0;
  padding: 0.2rem 0 0.2rem 1rem;
  border-left: 3px solid var(--rose);
  color: #5e534d;
  font-style: italic;
}

.article-modal-body a {
  color: var(--rose-deep);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

.article-modal-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-top: 2.2rem;
  padding-top: 1.8rem;
  border-top: 1px solid var(--line);
}

.article-modal-cta p {
  max-width: 36ch;
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

@keyframes articleFadeIn {
  from {
    opacity: 0.55;
    transform: translateY(8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.contact-section {
  background: var(--paper);
}

.contact-list {
  display: grid;
  gap: 10px;
  margin-top: 1.6rem;
  color: var(--muted);
  list-style: none;
}

.contact-list a:hover {
  color: var(--rose-deep);
}

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 1.6rem;
}

.contact-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  max-width: 100%;
  min-height: 46px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--white);
  color: var(--ink);
  font-size: 0.86rem;
  line-height: 1.25;
  padding: 10px 16px;
  transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
}

.contact-chip:hover,
.contact-chip:focus-visible {
  border-color: var(--rose);
  background: var(--cream);
  color: var(--rose-deep);
  transform: translateY(-1px);
}

.contact-chip svg {
  width: 18px;
  height: 18px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  flex: 0 0 18px;
}

.contact-chip span:last-child {
  min-width: 0;
  overflow-wrap: anywhere;
}

.contact-whatsapp-icon {
  display: grid;
  place-items: center;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  overflow: hidden;
  flex: 0 0 22px;
}

.contact-whatsapp-icon img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-location {
  display: inline-flex;
  align-items: center;
  margin: 14px 0 0;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: var(--cream);
  color: var(--rose-deep);
  font-size: 0.86rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  padding: 7px 13px;
}

.contact-portrait {
  max-width: 420px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.contact-portrait img {
  display: block;
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: center top;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(24px, 4vw, 38px);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--paper);
  color: var(--ink);
  font: 300 1rem/1.5 var(--sans);
  letter-spacing: 0;
  padding: 13px 14px;
  resize: vertical;
  text-transform: none;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--rose);
  box-shadow: 0 0 0 3px rgba(201, 144, 145, 0.18);
  outline: none;
}

.contact-form select {
  appearance: none;
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 52%, calc(100% - 13px) 52%;
  background-repeat: no-repeat;
  background-size: 5px 5px, 5px 5px;
  cursor: pointer;
}

.hidden-field {
  display: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.86rem;
  margin: 0;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: var(--cream);
  padding: 34px 0;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-inner p {
  margin: 0;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-links a:hover {
  color: var(--rose-deep);
}

.whatsapp-float {
  position: fixed;
  right: clamp(16px, 3vw, 28px);
  bottom: clamp(16px, 3vw, 28px);
  z-index: 30;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-height: 54px;
  border-radius: 999px;
  background: #43ad70;
  color: var(--white);
  box-shadow: 0 16px 34px rgba(67, 173, 112, 0.28);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
  padding: 14px 20px 14px 16px;
  text-transform: uppercase;
  transition: transform 0.2s ease, background 0.2s ease, box-shadow 0.2s ease;
}

.whatsapp-float:hover,
.whatsapp-float:focus-visible {
  background: #379760;
  box-shadow: 0 18px 38px rgba(67, 173, 112, 0.36);
  transform: translateY(-2px);
}

.whatsapp-float:focus-visible {
  outline: 3px solid rgba(67, 173, 112, 0.26);
  outline-offset: 3px;
}

.whatsapp-icon {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: var(--white);
  overflow: hidden;
  flex: 0 0 28px;
}

.whatsapp-icon img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

@media (max-width: 1020px) {
  .nav-links {
    gap: 18px;
  }

  .service-grid,
  .resource-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .article-row {
    grid-template-columns: 1fr;
    gap: 8px;
  }
}

@media (max-width: 820px) {
  body {
    line-height: 1.72;
  }

  .container {
    width: min(100% - 28px, var(--maxw));
  }

  .section {
    padding: 54px 0;
  }

  .nav {
    min-height: 74px;
  }

  .nav-toggle {
    display: block;
    order: 2;
  }

  .nav-right {
    gap: 10px;
  }

  .nav-instagram {
    order: 1;
  }

  .nav-links {
    position: absolute;
    top: 79px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    gap: 0;
    padding: 10px 14px 18px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links li {
    width: 100%;
  }

  .nav-links a {
    display: block;
    padding: 14px 6px;
    text-align: center;
  }

  .hero {
    min-height: min(620px, calc(100svh - 79px));
  }

  .mobile-proof-strip {
    display: block;
    border-bottom: 1px solid var(--line);
    background: var(--cream);
  }

  .proof-strip-inner {
    grid-template-columns: 1fr;
    padding: 6px 0;
  }

  .proof-strip-inner article {
    padding: 18px 0;
    border-left: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-strip-inner article:last-child {
    border-right: 0;
    border-bottom: 0;
  }

  .proof-strip-inner strong {
    display: block;
    color: var(--rose-deep);
    font-family: var(--serif);
    font-size: 1.65rem;
    font-style: italic;
    font-weight: 500;
    line-height: 1;
  }

  .proof-strip-inner span {
    display: block;
    color: var(--muted);
    font-size: 0.86rem;
    margin-top: 0.4rem;
  }

  .hero-media::before {
    right: 2px;
    top: auto;
    bottom: 24px;
    width: min(64vw, 310px);
    height: min(48vh, 390px);
    opacity: 0.48;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(51, 43, 40, 0.2), rgba(51, 43, 40, 0.34) 52%, rgba(51, 43, 40, 0.5));
  }

  .hero-portrait {
    top: auto;
    right: -18px;
    bottom: 0;
    width: min(70vw, 318px);
    height: min(49vh, 405px);
    object-position: center 56%;
    opacity: 0.9;
  }

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

  .hero-lead {
    margin: 1rem 0 1.35rem;
  }

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

  .portrait-panel,
  .soft-image {
    min-height: 430px;
  }

  .service-grid,
  .resource-grid {
    display: flex;
    grid-template-columns: none;
    gap: 14px;
    margin: 30px -14px 0;
    overflow-x: auto;
    padding: 0 14px 8px;
    scroll-padding: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .service-grid::-webkit-scrollbar,
  .resource-grid::-webkit-scrollbar,
  .article-list::-webkit-scrollbar {
    display: none;
  }

  .service-card {
    flex: 0 0 min(78%, 320px);
    min-height: auto;
    padding: 20px;
    scroll-snap-align: start;
  }

  .service-number {
    margin-bottom: 18px;
  }

  .resource-card {
    flex: 0 0 min(78%, 310px);
    padding: 18px;
    scroll-snap-align: start;
  }

  .resource-cover {
    min-height: 160px;
    margin-bottom: 16px;
  }

  .article-list {
    display: flex;
    gap: 16px;
    margin: 30px -14px 0;
    overflow-x: auto;
    padding: 0 14px 8px;
    border-top: 0;
    scroll-padding: 14px;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -webkit-overflow-scrolling: touch;
  }

  .article-row {
    flex: 0 0 min(78%, 320px);
    grid-template-columns: 1fr;
    align-content: start;
    gap: 12px;
    padding: 20px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--paper);
    scroll-snap-align: start;
  }

  .mobile-scroll-controls {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding-top: 14px;
  }

  .mobile-scroll-controls span {
    color: var(--rose-deep);
    font-size: 0.64rem;
    font-weight: 500;
    letter-spacing: 0.16em;
    text-transform: uppercase;
  }

  .scroll-buttons {
    display: flex;
    gap: 10px;
  }

  .scroll-buttons button {
    display: grid;
    place-items: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: var(--paper);
    color: var(--rose-deep);
    cursor: pointer;
    font: 500 1.35rem/1 var(--serif);
  }

  .scroll-buttons button:last-child {
    border-color: var(--rose-deep);
    background: var(--rose-deep);
    color: var(--paper);
  }
}

@media (max-width: 560px) {
  h1 {
    font-size: clamp(2.7rem, 11vw, 3.45rem);
  }

  p {
    font-size: 0.98rem;
  }

  .section {
    padding: 40px 0;
  }

  .logo-name {
    font-size: 1.42rem;
  }

  .logo-role {
    font-size: 0.56rem;
  }

  .nav-instagram,
  .nav-toggle {
    width: 42px;
    height: 42px;
  }

  .hero {
    min-height: 535px;
  }

  .hero-content .eyebrow {
    font-size: 0.66rem;
    letter-spacing: 0.17em;
    margin-bottom: 0.9rem;
  }

  .hero-actions {
    gap: 10px;
  }

  .hero-actions .btn {
    min-height: 48px;
    padding: 12px 20px;
  }

  .hero-location {
    justify-content: center;
    min-height: 38px;
    width: 100%;
    font-size: 0.74rem;
  }

  .story-copy h2,
  .center {
    margin-bottom: 1rem;
  }

  .hero-actions,
  .form-row,
  .footer-inner {
    align-items: stretch;
    flex-direction: column;
    grid-template-columns: 1fr;
  }

  .hero-actions .btn,
  .footer-links {
    width: 100%;
    justify-content: center;
  }

  .resource-cover {
    min-height: 150px;
  }

  .contact-actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .contact-chip {
    justify-content: center;
    min-height: 48px;
    padding: 10px 14px;
    text-align: center;
  }

  .contact-chip-whatsapp {
    display: none;
  }

  .article-modal {
    padding: 12px;
  }

  .article-modal-panel {
    border-radius: 10px;
  }

  .article-modal-cta {
    align-items: stretch;
    flex-direction: column;
  }

  .article-modal-cta .btn {
    width: 100%;
  }

  .whatsapp-float {
    left: auto;
    right: 14px;
    bottom: 12px;
    width: 46px;
    min-height: 46px;
    justify-content: center;
    gap: 0;
    padding: 0;
  }

  .whatsapp-float > span:last-child {
    position: absolute;
    width: 1px;
    height: 1px;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
  }

  .whatsapp-icon {
    width: 28px;
    height: 28px;
    flex-basis: 28px;
  }
}
