@font-face {
  font-family: "Sora";
  src: url("/assets/fonts/sora-latin.woff2") format("woff2");
  font-style: normal;
  font-weight: 400 800;
  font-display: swap;
}

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

:root {
  --ink: #11100f;
  --muted: #655f58;
  --olive: #776237;
  --olive-dark: #62502d;
  --rose: #d3a39f;
  --cream: #f7f0e7;
  --paper: #ffffff;
  --soft: #f4f2ef;
  --green: #1ed760;
  --line: #afa79d;
  --shadow: 0 16px 50px rgba(49, 37, 20, 0.12);
  --radius: 28px;
  --container: 1180px;
  color-scheme: light;
  font-family: "Sora", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-synthesis: none;
  scroll-behavior: smooth;
}

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

html {
  scroll-padding-top: 90px;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: clip;
  background: var(--paper);
  color: var(--ink);
  font-size: 16px;
  line-height: 1.7;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: clip;
}

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

img {
  height: auto;
}

a {
  color: inherit;
  text-decoration-thickness: 1px;
  text-underline-offset: 0.2em;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button,
input,
textarea,
select {
  font: inherit;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.045em;
  line-height: 1.12;
}

h2 {
  margin-bottom: 24px;
  font-size: clamp(2rem, 4vw, 3.75rem);
}

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

strong {
  font-weight: 750;
}

address {
  font-style: normal;
}

.container {
  width: min(calc(100% - 48px), var(--container));
  margin-inline: auto;
}

.section {
  padding: clamp(84px, 10vw, 150px) 0;
}

.section--cream {
  position: relative;
  border-radius: 44px;
  background: var(--cream);
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  transform: translateY(-150%);
  border-radius: 8px;
  background: white;
  color: black;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid #27d878;
  outline-offset: 4px;
}

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  padding: 12px 20px;
  border: 1px solid rgba(255, 255, 255, 0.26);
  border-radius: 999px;
  background: var(--olive);
  box-shadow: 0 8px 18px rgba(72, 53, 21, 0.18);
  color: white;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.15;
  text-decoration: none;
  transition:
    transform 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: var(--olive-dark);
  box-shadow: 0 12px 26px rgba(72, 53, 21, 0.25);
}

.button-phone {
  font-weight: 600;
}

.pill,
.subheading-rule span,
.line-label span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 14px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 0.68rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.eyebrow {
  margin-bottom: 10px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.subheading-rule,
.line-label {
  position: relative;
  display: flex;
  align-items: center;
  margin-bottom: 26px;
  color: var(--ink);
}

.subheading-rule::after,
.line-label::before,
.line-label::after {
  height: 1px;
  flex: 1;
  content: "";
  background: currentColor;
  opacity: 0.7;
}

.subheading-rule::after {
  margin-left: -1px;
}

.line-label {
  justify-content: center;
}

.line-label::before {
  margin-right: -1px;
}

.line-label::after {
  margin-left: -1px;
}

.reveal {
  opacity: 1;
  transform: none;
}

.reveal.is-visible {
  opacity: 1;
  transform: none;
}

/* Header */

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  padding: 18px 0;
  color: white;
  transition:
    padding 180ms ease,
    background-color 180ms ease,
    box-shadow 180ms ease,
    color 180ms ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 10px 30px rgba(42, 30, 13, 0.1);
  color: var(--ink);
  backdrop-filter: blur(16px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand-mark {
  width: 35px;
  color: var(--rose);
  overflow: visible;
}

.brand-mark path,
.footer-rose path,
.pain-decoration path {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-copy {
  display: grid;
}

.brand-name {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.08rem;
  line-height: 0.9;
}

.brand-role {
  margin-top: 5px;
  font-size: 0.48rem;
  font-weight: 750;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 24px;
}

.site-nav > a:not(.button) {
  position: relative;
  font-size: 0.8rem;
  font-weight: 600;
  text-decoration: none;
}

.site-nav > a:not(.button)::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: currentColor;
  content: "";
  transition: transform 180ms ease;
}

.site-nav > a:not(.button):hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.button--header {
  min-height: 42px;
  padding-inline: 18px;
  background: rgba(119, 98, 55, 0.88);
  font-size: 0.72rem;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  padding: 11px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
}

.menu-toggle span:not(.sr-only) {
  display: block;
  width: 100%;
  height: 1px;
  margin: 5px 0;
  background: currentColor;
  transition: transform 180ms ease;
}

/* Hero */

.hero {
  position: relative;
  display: grid;
  min-height: min(900px, 100svh);
  align-items: center;
  overflow: hidden;
  background: #9a7655;
  color: white;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-media img {
  object-fit: cover;
  object-position: center 43%;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(81, 55, 28, 0.72) 0%, rgba(81, 55, 28, 0.28) 52%, rgba(81, 55, 28, 0.04) 76%),
    linear-gradient(0deg, rgba(55, 35, 18, 0.26), transparent 40%);
}

.hero-content {
  position: relative;
  z-index: 1;
  padding-top: 110px;
}

.experience-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 32px;
  font-size: 0.72rem;
  line-height: 1.15;
}

.experience-number {
  display: grid;
  width: 50px;
  height: 50px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.45);
  border-radius: 50%;
  background: rgba(211, 163, 159, 0.35);
  font-size: 1.2rem;
  font-weight: 800;
  backdrop-filter: blur(8px);
}

.hero h1 {
  max-width: 760px;
  margin-bottom: 28px;
  font-size: clamp(2.65rem, 5.2vw, 5.1rem);
  text-wrap: balance;
}

.hero-content > p {
  max-width: 650px;
  margin-bottom: 32px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1rem, 1.5vw, 1.25rem);
  line-height: 1.55;
}

.button--hero {
  min-height: 55px;
  padding-inline: 24px;
  background: rgba(119, 98, 55, 0.9);
  backdrop-filter: blur(8px);
}

.hero-scroll {
  position: absolute;
  z-index: 2;
  bottom: 0;
  left: 50%;
  display: grid;
  width: 108px;
  height: 55px;
  place-items: center;
  transform: translateX(-50%);
  border-radius: 60px 60px 0 0;
  background: white;
  color: var(--olive);
  font-size: 2rem;
  line-height: 1;
  text-decoration: none;
}

/* About */

.about-grid,
.approach-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: clamp(48px, 7vw, 100px);
}

.about-visual {
  position: relative;
}

.about-visual picture,
.approach-photo {
  display: block;
  overflow: hidden;
  border-radius: var(--radius);
}

.about-visual img,
.approach-photo img {
  width: 100%;
}

.about-visual blockquote {
  position: absolute;
  right: 7%;
  bottom: 8%;
  left: 7%;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 14px;
  margin: 0;
  padding: 22px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  background: rgba(38, 30, 24, 0.64);
  box-shadow: 0 10px 34px rgba(0, 0, 0, 0.18);
  color: white;
  font-size: 0.84rem;
  line-height: 1.55;
  backdrop-filter: blur(12px);
}

.quote-mark {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: Georgia, serif;
  font-size: 2rem;
}

.about-copy h2 {
  font-size: clamp(2.4rem, 4vw, 4.2rem);
}

.about-copy .pill {
  margin-bottom: 24px;
}

.about-copy > p:last-of-type {
  color: #302e2b;
}

.credentials {
  display: flex;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  gap: 10px;
  list-style: none;
}

.credentials li {
  padding: 9px 14px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.035em;
  line-height: 1.35;
  text-transform: uppercase;
}

.approach-grid {
  margin-top: clamp(100px, 13vw, 180px);
  grid-template-columns: 1.12fr 0.88fr;
}

.approach-copy > p {
  color: #302e2b;
}

.quote-card {
  display: flex;
  align-items: center;
  gap: 18px;
  margin: 30px 0;
  padding: 22px;
  border-radius: 20px;
  background: var(--soft);
  font-size: 0.9rem;
  line-height: 1.55;
}

.approach-photo img {
  aspect-ratio: 4 / 5.2;
  object-fit: cover;
}

/* Audience and services */

.audience {
  padding-top: clamp(100px, 12vw, 170px);
}

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

.section-heading--center {
  margin: 0 auto clamp(50px, 7vw, 82px);
  text-align: center;
}

.section-heading--center > p:not(.line-label) {
  margin-inline: auto;
  max-width: 650px;
  color: var(--muted);
}

.line-label {
  width: min(100%, 540px);
  margin-inline: auto;
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.audience-card {
  min-height: 390px;
  padding: clamp(28px, 4vw, 42px);
  border-radius: 24px;
  background: var(--olive);
  box-shadow: inset 0 0 0 1px rgba(0, 0, 0, 0.08);
  color: white;
}

.emoji {
  display: grid;
  width: 40px;
  height: 40px;
  margin-bottom: 28px;
  place-items: center;
  border-radius: 9px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 1.25rem;
}

.audience-card h3 {
  margin-bottom: 4px;
}

.age {
  margin-bottom: 28px;
  font-size: 0.92rem;
}

.card-label {
  margin-bottom: 14px;
  font-size: 0.7rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.check-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.check-list li {
  position: relative;
  margin: 10px 0;
  padding-left: 24px;
  color: rgba(255, 255, 255, 0.91);
  font-size: 0.84rem;
  line-height: 1.45;
}

.check-list li::before {
  position: absolute;
  top: 0;
  left: 0;
  color: #20e486;
  content: "✓";
  font-weight: 800;
}

.services {
  max-width: 700px;
  margin-top: clamp(70px, 9vw, 120px);
}

.service-list {
  display: grid;
  gap: 12px;
  margin-bottom: 24px;
}

.service-list article {
  display: flex;
  min-height: 92px;
  align-items: center;
  gap: 20px;
  padding: 16px 24px;
  border: 1px solid #867c70;
  border-radius: 18px;
}

.service-list article > span {
  display: grid;
  width: 48px;
  height: 48px;
  place-items: center;
  flex: 0 0 auto;
  overflow: hidden;
  border-radius: 12px;
  background: #e1dbd2;
  font-size: 1.35rem;
}

.service-list article:last-child > span {
  font-size: 0.82rem;
}

.service-list p {
  margin: 0;
}

.service-list strong,
.service-list small {
  display: block;
}

.service-list strong {
  font-size: 1.12rem;
}

.service-list small {
  margin-top: 4px;
  font-size: 0.86rem;
}

/* Office */

.office {
  padding-bottom: clamp(90px, 11vw, 160px);
}

.office-gallery {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: 16px;
}

.office-gallery img {
  width: 100%;
  height: 360px;
  grid-column: span 3;
  border-radius: 22px;
  object-fit: cover;
}

.office-gallery .office-gallery-wide {
  grid-column: span 6;
  object-position: center;
}

/* Pain points */

.pain-points {
  border-top: 1px solid var(--line);
}

.pain-grid {
  display: grid;
  grid-template-columns: minmax(0, 700px) 1fr;
  gap: 90px;
}

.quote-list {
  display: grid;
  margin: 0 0 30px;
  padding: 0;
  gap: 12px;
  list-style: none;
}

.quote-list li {
  display: flex;
  min-height: 72px;
  align-items: center;
  gap: 16px;
  padding: 15px 20px;
  border-radius: 18px;
  background: var(--soft);
  font-size: 0.9rem;
}

.quote-list li span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: Georgia, serif;
  font-size: 1.7rem;
}

.pain-conclusion {
  margin-bottom: 28px;
}

.pain-decoration {
  display: grid;
  place-items: center;
  color: var(--rose);
}

.pain-decoration svg {
  width: min(100%, 300px);
}

.pain-decoration path {
  stroke-width: 2;
}

/* FAQ and contact */

.faq-contact {
  padding-bottom: 90px;
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  align-items: start;
  gap: 16px;
}

.faq-grid details {
  border: 1px solid #8f8477;
  border-radius: 18px;
  background: transparent;
  transition:
    border-color 180ms ease,
    background-color 180ms ease;
}

.faq-grid details[open] {
  border-color: var(--olive);
  background: rgba(255, 255, 255, 0.32);
}

.faq-grid summary {
  position: relative;
  display: flex;
  min-height: 86px;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px 64px 22px 26px;
  cursor: pointer;
  font-size: 0.95rem;
  font-weight: 700;
  list-style: none;
}

.faq-grid summary::-webkit-details-marker {
  display: none;
}

.faq-grid summary::after {
  position: absolute;
  right: 24px;
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 6px;
  content: "+";
  font-size: 1.2rem;
  line-height: 1;
}

.faq-grid details[open] summary {
  color: var(--olive);
}

.faq-grid details[open] summary::after {
  content: "×";
}

.faq-grid details p {
  padding: 0 26px 24px;
  color: #3c342b;
  font-size: 0.9rem;
}

.contact-grid {
  display: grid;
  margin-top: clamp(80px, 10vw, 140px);
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
}

.contact-copy > p {
  margin-bottom: 28px;
}

.contact-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 10px;
  margin-bottom: 24px;
}

.contact-list a {
  display: flex;
  min-height: 74px;
  align-items: center;
  gap: 14px;
  padding: 14px 18px;
  border-radius: 18px;
  background: #eee8df;
  font-size: 0.82rem;
  text-decoration: none;
}

.contact-list a:first-child,
.contact-list .contact-address {
  grid-column: 1 / -1;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--ink);
  color: white;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
}

.map-card {
  min-height: 520px;
  overflow: hidden;
  border-radius: 28px;
  background: #e9e3da;
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 520px;
  border: 0;
}

.map-placeholder {
  display: grid;
  min-height: 520px;
  place-items: center;
  align-content: center;
  padding: 40px;
  background:
    radial-gradient(circle at 28% 28%, rgba(211, 163, 159, 0.35), transparent 32%),
    linear-gradient(145deg, #eee7dc, #ddd2c4);
  text-align: center;
}

.map-placeholder .map-pin {
  display: grid;
  width: 62px;
  height: 62px;
  margin-bottom: 18px;
  place-items: center;
  border-radius: 50%;
  background: var(--olive);
  box-shadow: var(--shadow);
  color: white;
  font-size: 2rem;
}

.map-placeholder h3 {
  margin-bottom: 8px;
}

.map-placeholder p {
  max-width: 360px;
  margin-bottom: 22px;
}

.map-placeholder > a {
  margin-top: 14px;
  font-size: 0.78rem;
  font-weight: 700;
}

/* Floating WhatsApp */

.whatsapp-float {
  position: fixed;
  z-index: 90;
  right: 24px;
  bottom: 24px;
  display: grid;
  width: 58px;
  height: 58px;
  place-items: center;
  border: 2px solid white;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.22);
  transition: transform 180ms ease;
}

.whatsapp-float:hover {
  transform: translateY(-3px) scale(1.03);
}

.whatsapp-float svg {
  width: 31px;
  fill: white;
}

/* Footer */

.site-footer {
  background: var(--olive);
  color: white;
}

.footer-top {
  display: grid;
  padding: 42px 0;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 30px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-top > strong {
  justify-self: end;
  font-size: 0.85rem;
}

.footer-social {
  display: flex;
  gap: 10px;
}

.footer-social a {
  display: grid;
  width: 28px;
  height: 28px;
  place-items: center;
  border: 1px solid white;
  border-radius: 50%;
  font-size: 0.72rem;
  font-weight: 800;
  text-decoration: none;
}

.brand--footer .brand-mark {
  color: white;
}

.footer-main {
  padding: 75px 0 80px;
}

.footer-rose {
  display: grid;
  margin-bottom: 70px;
  place-items: center;
  color: var(--rose);
}

.footer-rose svg {
  width: 95px;
}

.footer-links {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 60px;
}

.footer-links h2 {
  margin-bottom: 18px;
  font-size: 1rem;
  letter-spacing: 0;
}

.footer-links a {
  display: block;
  width: fit-content;
  margin: 9px 0;
  color: rgba(255, 255, 255, 0.93);
  font-size: 0.78rem;
  text-decoration: none;
}

.footer-links a:hover {
  color: white;
  text-decoration: underline;
}

.footer-consent-link {
  display: block;
  margin: 9px 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: rgba(255, 255, 255, 0.93);
  cursor: pointer;
  font-size: 0.78rem;
  text-align: left;
}

.footer-consent-link:hover {
  color: white;
  text-decoration: underline;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.28);
}

.footer-bottom .container {
  display: flex;
  min-height: 82px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  color: rgba(255, 255, 255, 0.9);
  font-size: 0.7rem;
}

/* Privacy consent */

.consent-banner {
  position: fixed;
  z-index: 220;
  right: 16px;
  bottom: 16px;
  left: 16px;
  display: grid;
  width: min(calc(100% - 32px), 1040px);
  margin-inline: auto;
  padding: 18px;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: center;
  gap: 20px;
  border: 1px solid rgba(119, 98, 55, 0.2);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.98);
  box-shadow: 0 20px 70px rgba(22, 17, 10, 0.28);
  color: var(--ink);
  backdrop-filter: blur(18px);
}

.consent-banner[hidden] {
  display: none;
}

.consent-copy strong {
  display: block;
  margin-bottom: 3px;
}

.consent-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.5;
}

.consent-actions {
  display: flex;
  gap: 10px;
}

.consent-actions .button {
  min-height: 44px;
  border-color: var(--olive);
  cursor: pointer;
  white-space: nowrap;
}

.button--secondary {
  background: white;
  box-shadow: none;
  color: var(--olive-dark);
}

.button--secondary:hover {
  background: var(--cream);
}

/* Responsive */

@media (max-width: 1000px) {
  .site-nav {
    gap: 15px;
  }

  .site-nav > a:not(.button) {
    font-size: 0.72rem;
  }

  .about-grid {
    gap: 46px;
  }

  .office-gallery img {
    height: 300px;
  }
}

@media (max-width: 840px) {
  .container {
    width: min(calc(100% - 40px), var(--container));
  }

  .section {
    padding-block: 88px;
  }

  .section--cream {
    border-radius: 28px;
  }

  .menu-toggle {
    display: block;
  }

  .site-nav {
    position: fixed;
    z-index: -1;
    top: 0;
    right: 0;
    left: 0;
    display: grid;
    padding: 100px 24px 28px;
    transform: translateY(-110%);
    gap: 0;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    color: var(--ink);
    opacity: 0;
    transition:
      transform 220ms ease,
      opacity 180ms ease;
    backdrop-filter: blur(18px);
  }

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

  .site-nav > a:not(.button) {
    padding: 13px 5px;
    border-bottom: 1px solid #e8e4df;
    font-size: 0.95rem;
  }

  .site-nav .button {
    margin-top: 20px;
  }

  .site-header:has(.site-nav.is-open) {
    color: var(--ink);
  }

  .about-grid,
  .approach-grid,
  .contact-grid,
  .pain-grid {
    grid-template-columns: 1fr;
  }

  .about-visual {
    max-width: 650px;
    margin-inline: auto;
  }

  .approach-grid {
    gap: 48px;
  }

  .approach-photo {
    max-width: 580px;
    grid-row: 1;
  }

  .pain-decoration {
    display: none;
  }

  .office-gallery img,
  .office-gallery .office-gallery-wide {
    height: 300px;
    grid-column: span 4;
  }

  .office-gallery .office-gallery-wide {
    grid-column: span 8;
  }
}

@media (max-width: 700px) {
  body {
    font-size: 15px;
  }

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

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

  .brand-role {
    font-size: 0.42rem;
  }

  .site-header {
    padding: 12px 0;
  }

  .hero {
    min-height: 790px;
    align-items: end;
  }

  .hero-media img {
    object-position: center 52%;
  }

  .hero-overlay {
    background:
      linear-gradient(0deg, rgba(62, 39, 18, 0.86) 0%, rgba(62, 39, 18, 0.22) 68%, rgba(62, 39, 18, 0.08) 100%),
      linear-gradient(90deg, rgba(62, 39, 18, 0.23), transparent 75%);
  }

  .hero-content {
    padding-top: 140px;
    padding-bottom: 90px;
  }

  .experience-badge {
    margin-bottom: 16px;
  }

  .experience-number {
    width: 42px;
    height: 42px;
  }

  .hero h1 {
    max-width: 520px;
    margin-bottom: 18px;
    font-size: clamp(2rem, 8.5vw, 2.65rem);
  }

  .hero-content > p {
    margin-bottom: 24px;
    font-size: 0.95rem;
  }

  .button--hero {
    width: calc(100% - 72px);
    padding-inline: 15px;
  }

  .button-phone {
    display: none;
  }

  .about-visual blockquote {
    position: relative;
    right: auto;
    bottom: auto;
    left: auto;
    margin: 12px 0 0;
    background: var(--soft);
    color: var(--ink);
  }

  .about-copy h2 {
    font-size: 2.4rem;
  }

  .credentials {
    display: grid;
  }

  .credentials li {
    text-align: center;
  }

  .approach-grid {
    margin-top: 90px;
  }

  .audience-grid,
  .faq-grid {
    grid-template-columns: 1fr;
  }

  .audience-card {
    min-height: auto;
  }

  .services {
    max-width: none;
  }

  .service-list article {
    min-height: 86px;
    padding: 14px 16px;
  }

  .service-list strong {
    font-size: 1rem;
  }

  .office-gallery {
    grid-template-columns: 1fr;
  }

  .office-gallery img,
  .office-gallery .office-gallery-wide {
    width: 100%;
    height: auto;
    max-height: 520px;
    grid-column: auto;
    aspect-ratio: 4 / 5;
    object-fit: cover;
  }

  .office-gallery .office-gallery-wide {
    aspect-ratio: 4 / 3;
  }

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

  .contact-list a,
  .contact-list a:first-child,
  .contact-list .contact-address {
    grid-column: auto;
  }

  .contact-list a {
    min-width: 0;
    overflow-wrap: anywhere;
  }

  .map-card,
  .map-card iframe,
  .map-placeholder {
    min-height: 390px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-top > strong {
    justify-self: auto;
  }

  .footer-main {
    padding-top: 60px;
  }

  .footer-rose {
    margin-bottom: 54px;
  }

  .footer-links {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-links a {
    width: auto;
  }

  .footer-bottom .container {
    padding-block: 22px;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }

  .whatsapp-float {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }

  .consent-banner {
    padding: 16px;
    grid-template-columns: 1fr;
    gap: 12px;
  }

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

  .consent-actions .button {
    padding-inline: 12px;
    font-size: 0.72rem;
    white-space: normal;
  }
}

@media (max-width: 390px) {
  .consent-actions {
    grid-template-columns: 1fr;
  }
}

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

  .reveal {
    opacity: 1;
    transform: none;
  }
}

/* Supporting pages */

.simple-page {
  min-height: 100vh;
  background: var(--cream);
}

.simple-header {
  padding: 20px 0;
  background: var(--olive);
  color: white;
}

.simple-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.simple-header > .container > a:last-child {
  font-size: 0.82rem;
  font-weight: 700;
}

.simple-main {
  padding: clamp(70px, 10vw, 130px) 0;
}

.simple-card {
  width: min(calc(100% - 40px), 820px);
  margin-inline: auto;
  padding: clamp(28px, 6vw, 70px);
  border-radius: 28px;
  background: white;
  box-shadow: var(--shadow);
}

.simple-card h1 {
  margin-bottom: 20px;
  font-size: clamp(2.3rem, 6vw, 4.5rem);
}

.simple-card h2 {
  margin-top: 42px;
  font-size: 1.35rem;
  letter-spacing: -0.025em;
}

.simple-card p,
.simple-card li {
  color: #403b35;
}

.simple-card .button {
  margin-top: 22px;
}
