@font-face {
  font-family: "Fraunces";
  font-style: normal;
  font-weight: 600 700;
  font-display: swap;
  src: url("../fonts/fraunces-latin.woff2") format("woff2");
}

@font-face {
  font-family: "Manrope";
  font-style: normal;
  font-weight: 400 700;
  font-display: swap;
  src: url("../fonts/manrope-latin.woff2") format("woff2");
}

:root {
  color-scheme: light;
  --ink: #141315;
  --muted: #5b5b60;
  --paper: #f6f1ec;
  --cream: #fbf8f4;
  --accent: #e07a3f;
  --accent-dark: #b95a27;
  --sage: #6c8b7e;
  --sea: #1c3f3a;
  --border: rgba(20, 19, 21, 0.12);
  --shadow: 0 18px 45px rgba(28, 30, 33, 0.12);
  --radius-xl: 28px;
  --radius-lg: 20px;
  --radius-md: 14px;
  --max-width: 1240px;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Manrope", system-ui, sans-serif;
  background: radial-gradient(circle at 10% 0%, #f5e7db 0%, #f8f0e6 35%, #f9f4ef 60%, #f1f3f2 100%);
  color: var(--ink);
  line-height: 1.6;
  min-height: 100vh;
  overflow-x: hidden;
}

.page {
  padding-top: 40px;
}

.noise {
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='180' height='180' viewBox='0 0 180 180'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.8' numOctaves='2' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='180' height='180' filter='url(%23n)' opacity='.05'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 0;
}

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

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

main {
  position: relative;
  z-index: 1;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  backdrop-filter: blur(18px);
  background: rgba(251, 247, 242, 0.92);
  border-bottom: 1px solid rgba(20, 19, 21, 0.08);
  box-shadow: 0 10px 24px rgba(20, 19, 21, 0.04);
}

.nav {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 16px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.nav-menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-left: auto;
  border: 1px solid var(--border);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  cursor: pointer;
  box-shadow: 0 10px 22px rgba(20, 19, 21, 0.08);
  transition: transform 0.2s ease, border 0.2s ease, background 0.2s ease;
}

.nav-menu-toggle:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 122, 63, 0.4);
  background: rgba(255, 255, 255, 0.96);
}

.nav-menu-toggle-box {
  display: grid;
  gap: 5px;
}

.nav-menu-toggle-line {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav.nav-open .nav-menu-toggle-line:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.nav.nav-open .nav-menu-toggle-line:nth-child(2) {
  opacity: 0;
}

.nav.nav-open .nav-menu-toggle-line:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.brand-mark {
  width: 60px;
  height: 60px;
  display: block;
  object-fit: cover;
  border-radius: 50%;
  background: #2b2821;
  box-shadow: 0 10px 22px rgba(20, 19, 21, 0.14);
  flex-shrink: 0;
}

.brand-text {
  display: flex;
  flex-direction: column;
  min-width: 0;
  font-family: "Fraunces", Georgia, serif;
}

.brand-name {
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.1;
}

.brand-sub {
  font-family: "Manrope", system-ui, sans-serif;
  font-size: 0.78rem;
  letter-spacing: 0.02em;
  color: var(--muted);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.94rem;
}

.nav-link {
  color: var(--muted);
  font-weight: 500;
  transition: color 0.18s ease;
}

.nav-link:hover {
  color: var(--ink);
}

.icon-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.6);
  transition: transform 0.2s ease, border 0.2s ease, color 0.2s ease;
}

.icon-link svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.icon-link:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 122, 63, 0.5);
  color: var(--accent-dark);
}

.icon-link-instagram {
  color: #f58529;
}

.icon-link-linkedin {
  color: #0a66c2;
}

.btn-whatsapp {
  gap: 10px;
}

.btn-whatsapp svg {
  width: 18px;
  height: 18px;
  fill: currentColor;
}

.btn-primary.btn-whatsapp {
  background: #25d366;
  box-shadow: 0 12px 26px rgba(37, 211, 102, 0.35);
}

.btn-primary.btn-whatsapp:hover {
  background: #1db954;
  box-shadow: 0 16px 30px rgba(37, 211, 102, 0.45);
}

.btn-secondary.btn-whatsapp,
.btn-ghost.btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.4);
  color: #1b6a3b;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:disabled {
  opacity: 0.72;
  cursor: progress;
  transform: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: 0 12px 26px rgba(224, 122, 63, 0.35);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 30px rgba(224, 122, 63, 0.45);
  background: var(--accent-dark);
}

.btn-secondary {
  border: 1px solid var(--border);
  color: var(--ink);
  background: rgba(255, 255, 255, 0.65);
}

.btn-ghost {
  border: 1px solid var(--border);
  color: var(--ink);
  background: transparent;
}

.nav-pill {
  padding: 11px 18px;
  font-size: 0.9rem;
}

.nav-pill-posh {
  background: rgba(224, 122, 63, 0.14);
  border-color: rgba(224, 122, 63, 0.38);
  color: var(--accent-dark);
  box-shadow: 0 10px 20px rgba(224, 122, 63, 0.14);
}

.nav-pill-posh:hover {
  background: rgba(224, 122, 63, 0.2);
}

.hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 56px 28px 44px;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(420px, 0.86fr);
  gap: 64px;
  align-items: start;
  position: relative;
}

.hero-content {
  max-width: 560px;
  padding-top: 52px;
}

.hero-content h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(3.4rem, 5vw, 5.35rem);
  line-height: 0.94;
  letter-spacing: -0.05em;
  margin-bottom: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.22em;
  font-size: 0.74rem;
  color: var(--sage);
  margin-bottom: 16px;
  font-weight: 600;
}

.hero-copy {
  max-width: 44ch;
  font-size: 1.05rem;
  line-height: 1.78;
  color: var(--muted);
  margin-bottom: 26px;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 30px;
}

.hero-highlights {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  font-size: 0.85rem;
  color: var(--muted);
}

.hero-highlights > div {
  padding: 16px 16px 15px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.62);
  border: 1px solid rgba(20, 19, 21, 0.08);
  box-shadow: 0 18px 34px rgba(20, 19, 21, 0.06);
}

.stat {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.55rem;
  display: block;
  color: var(--ink);
  margin-bottom: 2px;
}

.hero-media {
  position: relative;
  display: grid;
  gap: 20px;
  justify-items: end;
  padding-bottom: 36px;
}

.image-frame {
  width: min(100%, 456px);
  aspect-ratio: 5 / 8;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: 0 34px 70px rgba(20, 19, 21, 0.16);
  border: 6px solid rgba(255, 255, 255, 0.88);
  background: rgba(255, 255, 255, 0.92);
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 10%;
}

.hero-card {
  position: absolute;
  left: -10px;
  bottom: -6px;
  max-width: 268px;
  background: rgba(28, 63, 58, 0.96);
  color: rgba(255, 255, 255, 0.9);
  border-radius: 24px;
  padding: 22px 24px;
  box-shadow: 0 24px 50px rgba(20, 19, 21, 0.24);
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.hero-card h3 {
  font-family: "Fraunces", Georgia, serif;
  margin-bottom: 10px;
  color: #fff;
}

.hero-card p {
  color: rgba(255, 255, 255, 0.74);
}

.hero-card a {
  color: #f4c8ad;
  font-weight: 600;
}

.trust {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 28px 62px;
}

.trust-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 24px 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
}

.trust-logos {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
  gap: 12px;
  color: var(--muted);
  font-weight: 600;
}

.trust-location {
  font-size: 0.9rem;
  color: var(--sage);
}

.services,
.about,
.impact,
.testimonials,
.contact {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px;
}

.section-head {
  max-width: 640px;
  margin-bottom: 36px;
}

.section-head h2,
.about-content h2,
.impact-grid h2,
.contact-card h2 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2rem, 3vw, 2.8rem);
  margin-bottom: 12px;
}

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

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.service-card {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 255, 255, 0.85);
  box-shadow: var(--shadow);
  border: 1px solid transparent;
  transition: transform 0.2s ease, border 0.2s ease;
  display: flex;
  flex-direction: column;
  gap: 10px;
  height: 100%;
}

.service-card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(224, 122, 63, 0.3);
}

.service-card h3 {
  font-family: "Fraunces", Georgia, serif;
  margin-bottom: 10px;
}

.service-card p {
  color: var(--muted);
  flex: 1;
}

.mini-list {
  margin: 0 0 8px 16px;
  color: var(--muted);
}

.mini-list li {
  margin-bottom: 6px;
}

.tag {
  display: inline-block;
  margin-top: auto;
  font-size: 0.78rem;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(108, 139, 126, 0.15);
  color: var(--sea);
  font-weight: 600;
}

.about {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 36px;
  align-items: center;
}

.about-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin: 24px 0;
  color: var(--muted);
}

.about-media {
  position: relative;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.about-overlay {
  position: absolute;
  bottom: 18px;
  left: 18px;
  right: 18px;
  padding: 18px;
  border-radius: var(--radius-md);
  background: rgba(20, 19, 21, 0.7);
  color: #fff;
  font-family: "Fraunces", Georgia, serif;
}

.impact {
  background: linear-gradient(135deg, rgba(108, 139, 126, 0.15), rgba(28, 63, 58, 0.07));
  border-radius: var(--radius-xl);
}

.impact-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 40px;
}

.impact-steps {
  display: grid;
  gap: 18px;
}

.step {
  background: rgba(255, 255, 255, 0.8);
  padding: 20px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.step span {
  font-weight: 600;
  color: var(--accent-dark);
}

.testimonials {
  padding-top: 30px;
}

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.testimonial-grid figure {
  background: #fff;
  padding: 24px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.testimonial-grid blockquote {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.05rem;
  margin-bottom: 16px;
}

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

.service-list {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px 24px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
}

.service-item {
  background: rgba(255, 255, 255, 0.9);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 16px;
  font-weight: 600;
  color: var(--ink);
  box-shadow: 0 12px 22px rgba(0, 0, 0, 0.04);
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  transition: transform 0.16s ease, border 0.16s ease, box-shadow 0.16s ease;
}

.service-item:hover {
  transform: translateY(-2px);
  border-color: rgba(224, 122, 63, 0.4);
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.06);
}

.service-item::after {
  content: "→";
  font-weight: 700;
  color: var(--accent-dark);
}

.page-hero {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 20px;
}

.blog-hero {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
  align-items: start;
}

.blog-hero-card {
  background: linear-gradient(135deg, rgba(224, 122, 63, 0.12), rgba(28, 63, 58, 0.08));
  border-radius: var(--radius-xl);
  padding: 20px;
  box-shadow: var(--shadow);
}

.filter-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.pill {
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 8px 14px;
  background: rgba(255, 255, 255, 0.8);
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.15s ease, border 0.15s ease, background 0.15s ease;
}

.pill:hover {
  transform: translateY(-1px);
  border-color: rgba(224, 122, 63, 0.5);
}

.pill-active {
  background: rgba(224, 122, 63, 0.14);
  border-color: rgba(224, 122, 63, 0.6);
}

.page-hero-content h1 {
  font-family: "Fraunces", Georgia, serif;
  font-size: clamp(2.4rem, 3.6vw, 3.2rem);
  margin-bottom: 12px;
}

.cta-inline {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.contact-inline {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 12px;
  margin-top: 16px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 18px;
}

.faq-grid article {
  background: rgba(255, 255, 255, 0.9);
  padding: 22px;
  border-radius: var(--radius-md);
  box-shadow: var(--shadow);
}

.faq-grid h3 {
  font-family: "Fraunces", Georgia, serif;
  margin-bottom: 10px;
}

.contact {
  padding-bottom: 100px;
}

.contact-card {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 32px;
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 36px;
  box-shadow: var(--shadow);
}

.pricing {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 48px 24px 72px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-xl);
  padding: 28px 32px;
  box-shadow: var(--shadow);
  display: grid;
  gap: 16px;
  border: 1px solid var(--border);
}

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.price-tile {
  background: linear-gradient(135deg, rgba(224, 122, 63, 0.07), rgba(108, 139, 126, 0.05));
  border-radius: var(--radius-lg);
  padding: 18px 20px;
  border: 1px solid rgba(224, 122, 63, 0.2);
  display: grid;
  gap: 10px;
}

.price-tile h3 {
  font-family: "Fraunces", Georgia, serif;
  font-size: 1.8rem;
}

.price-note {
  color: var(--muted);
  font-size: 0.95rem;
}

.badge {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(224, 122, 63, 0.16);
  color: var(--accent-dark);
  font-weight: 700;
  font-size: 0.8rem;
  letter-spacing: 0.02em;
}

.badge-secondary {
  background: rgba(108, 139, 126, 0.16);
  color: var(--sea);
}

.blog-grid {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 18px 24px 72px;
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.blog-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid rgba(224, 122, 63, 0.08);
  transition: transform 0.2s ease, box-shadow 0.2s ease, border 0.2s ease;
}

.blog-card:hover {
  transform: translateY(-4px);
  border: 1px solid rgba(224, 122, 63, 0.25);
  box-shadow: 0 18px 32px rgba(0, 0, 0, 0.08);
}

.blog-card h3 {
  font-family: "Fraunces", Georgia, serif;
  margin: 8px 0 10px;
}

.blog-card .mini-list {
  margin-top: 6px;
}

.post-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin: 12px 0 6px;
}

.post-body {
  margin-top: 6px;
  color: var(--muted);
}

.ghost-btn {
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--border);
}

.post-body h4 {
  font-family: "Fraunces", Georgia, serif;
  margin: 12px 0 6px;
}

.post-body ul {
  margin-left: 18px;
  margin-bottom: 10px;
  color: var(--muted);
}

.cta-bar {
  background: linear-gradient(135deg, rgba(224, 122, 63, 0.12), rgba(28, 63, 58, 0.08));
  border-radius: var(--radius-xl);
  max-width: var(--max-width);
  margin: 40px auto 80px;
  padding: 26px 30px;
}

.cta-bar-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
}

.cta-bar-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-about {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 72px 24px 32px;
}

.contact-details {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.contact-details span {
  text-transform: uppercase;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  color: var(--sage);
}

.contact-form {
  display: grid;
  gap: 16px;
}

.field-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

label {
  display: grid;
  gap: 8px;
  font-size: 0.9rem;
  color: var(--muted);
}

input,
select,
textarea {
  border-radius: 12px;
  border: 1px solid var(--border);
  padding: 12px 14px;
  font-family: inherit;
  background: rgba(255, 255, 255, 0.92);
}

input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(224, 122, 63, 0.35);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.input-help {
  font-size: 0.82rem;
  color: var(--muted);
}

.form-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  opacity: 0;
  pointer-events: none;
}

.form-status {
  min-height: 1.5em;
  font-size: 0.92rem;
  color: var(--muted);
}

.form-status-success {
  color: #17673a;
}

.form-status-error {
  color: #9b2c2c;
}

.contact-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 24px;
  display: flex;
  justify-content: space-between;
  color: var(--muted);
}

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

section[id] {
  scroll-margin-top: 110px;
}

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

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

@media (max-width: 980px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-actions {
    flex-wrap: wrap;
    width: 100%;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 48px;
    gap: 28px;
  }

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

  .about,
  .impact-grid,
  .contact-card,
  .cta-bar-content {
    grid-template-columns: 1fr;
  }

  .hero-card {
    position: static;
    max-width: 100%;
  }

  .hero-media {
    justify-items: stretch;
    padding-bottom: 0;
  }

  .image-frame {
    width: min(100%, 620px);
  }

  .field-row {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 820px) {
  body.nav-open {
    overflow: hidden;
  }

  .page {
    padding-top: 24px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    padding: 16px 20px;
    gap: 16px;
  }

  .brand {
    min-width: 0;
  }

  .brand-mark {
    width: 52px;
    height: 52px;
  }

  .brand-name {
    font-size: 0.95rem;
  }

  .brand-sub {
    font-size: 0.72rem;
  }

  .nav-menu-toggle {
    display: inline-flex;
  }

  .nav.has-enhanced-nav .nav-actions {
    width: 100%;
    display: none;
  }

  .nav.has-enhanced-nav.nav-open .nav-actions {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
    padding: 16px;
    border: 1px solid var(--border);
    border-radius: 24px;
    background: rgba(251, 248, 244, 0.96);
    box-shadow: var(--shadow);
  }

  .nav.has-enhanced-nav .nav-link:not(.icon-link),
  .nav.has-enhanced-nav .nav-actions > .btn {
    min-height: 48px;
    width: 100%;
  }

  .nav.has-enhanced-nav .nav-link:not(.icon-link) {
    display: inline-flex;
    align-items: center;
    justify-content: flex-start;
    padding: 12px 16px;
    border: 1px solid var(--border);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.84);
    color: var(--ink);
    font-weight: 600;
  }

  .nav.has-enhanced-nav .nav-actions > .btn {
    justify-content: center;
  }

  .nav.has-enhanced-nav .nav-actions > .btn-whatsapp {
    grid-column: 1 / -1;
  }

  .nav.has-enhanced-nav .nav-actions > .icon-link {
    width: 100%;
    height: 48px;
    border-radius: 16px;
  }

  .hero {
    padding: 58px 20px 48px;
    gap: 32px;
  }

  .hero-content {
    padding-top: 0;
  }

  .hero-copy,
  .section-copy {
    font-size: 1rem;
  }

  .trust,
  .services,
  .about,
  .impact,
  .testimonials,
  .contact,
  .faq,
  .pricing,
  .page-about,
  .page-hero,
  .blog-grid,
  .service-list {
    padding-left: 20px;
    padding-right: 20px;
  }

  .services,
  .about,
  .impact,
  .contact,
  .faq,
  .pricing,
  .page-about {
    padding-top: 60px;
    padding-bottom: 60px;
  }

  .contact-card,
  .trust-card,
  .pricing-card,
  .blog-card,
  .service-card,
  .faq-grid article {
    padding: 20px;
  }

  .cta-bar {
    margin: 28px 20px 64px;
    padding: 24px 22px;
  }

  .hero-card {
    padding: 18px 20px;
  }

  .footer {
    padding: 20px;
  }
}

@media (max-width: 640px) {
  .page {
    padding-top: 16px;
  }

  .hero {
    padding: 36px 20px 38px;
    gap: 24px;
  }

  .hero-content h1 {
    font-size: clamp(2.55rem, 12vw, 3.35rem);
  }

  .page-hero-content h1 {
    font-size: clamp(1.9rem, 10vw, 2.5rem);
  }

  .hero-actions,
  .cta-inline,
  .cta-bar-actions,
  .post-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions .btn,
  .cta-inline .btn,
  .cta-bar-actions .btn,
  .post-actions .btn {
    width: 100%;
  }

  .service-grid,
  .pricing-grid,
  .faq-grid,
  .blog-grid,
  .service-list,
  .contact-inline {
    grid-template-columns: 1fr;
  }

  .blog-grid {
    padding-top: 12px;
    padding-bottom: 60px;
  }

  .page-hero,
  .services,
  .about,
  .impact,
  .contact,
  .faq,
  .pricing,
  .page-about {
    padding-top: 52px;
    padding-bottom: 52px;
  }

  .section-head {
    margin-bottom: 28px;
  }

  .hero-highlights {
    grid-template-columns: 1fr;
  }

  .hero-highlights > div {
    padding: 14px 15px;
  }

  .contact-card,
  .pricing-card,
  .cta-bar,
  .blog-card,
  .service-card,
  .faq-grid article,
  .trust-card {
    padding: 18px;
    border-radius: 22px;
  }

  .about-overlay {
    position: static;
    margin: 0;
    border-radius: 0 0 var(--radius-md) var(--radius-md);
  }

  .price-tile h3 {
    font-size: 1.55rem;
  }

  .cta-bar {
    margin: 24px 20px 56px;
    padding: 22px 18px;
  }

  .footer {
    flex-direction: column;
    gap: 12px;
  }
}
