:root {
  --forest: #30443a;
  --forest-deep: #1f3028;
  --forest-soft: #52675d;
  --cream: #f7f3eb;
  --cream-deep: #eee7dc;
  --white: #fffdf9;
  --gold: #c6a36a;
  --gold-soft: #eadbc2;
  --blush: #d9977f;
  --mint: #dfe9e1;
  --text: #25332c;
  --muted: #6e7a73;
  --line: rgba(48, 68, 58, 0.13);
  --shadow-soft: 0 22px 55px rgba(46, 62, 53, 0.12);
  --shadow-card: 0 15px 40px rgba(46, 62, 53, 0.09);
  --serif: "Playfair Display", Georgia, serif;
  --sans: "DM Sans", Arial, sans-serif;
  --shell: min(1180px, calc(100% - 48px));
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 110px;
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--text);
  background: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 999;
  top: 12px;
  left: 12px;
  padding: 10px 16px;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest-deep);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 16px;
  right: 0;
  left: 0;
  transition: top 220ms ease;
}

.header-inner {
  display: grid;
  min-height: 68px;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 32px;
  padding: 9px 12px 9px 16px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 24px;
  background: rgba(255, 253, 249, 0.84);
  box-shadow: 0 14px 40px rgba(35, 52, 43, 0.08);
  backdrop-filter: blur(18px);
  transition: box-shadow 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  top: 9px;
}

.site-header.scrolled .header-inner {
  background: rgba(255, 253, 249, 0.96);
  box-shadow: 0 15px 45px rgba(35, 52, 43, 0.13);
}

.brand {
  display: inline-flex;
  width: fit-content;
  align-items: center;
  gap: 12px;
}

.brand-logo {
  display: block;
  width: 190px;
  height: 50px;
  border-radius: 14px;
  object-fit: cover;
  object-position: center 45%;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: 29px;
}

.desktop-nav a {
  position: relative;
  color: var(--forest-soft);
  font-size: 13px;
  font-weight: 600;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -7px;
  left: 0;
  height: 1px;
  background: var(--gold);
  content: "";
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 180ms ease;
}

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

.button {
  display: inline-flex;
  min-height: 54px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 0 25px;
  border: 1px solid transparent;
  border-radius: 999px;
  color: var(--white);
  background: var(--forest);
  font-size: 14px;
  font-weight: 700;
  line-height: 1.15;
  text-align: center;
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--forest-deep);
  box-shadow: 0 12px 28px rgba(31, 48, 40, 0.2);
  transform: translateY(-2px);
}

.button:focus-visible,
.text-link:focus-visible,
.card-link:focus-visible,
.carousel-button:focus-visible,
summary:focus-visible,
.menu-toggle:focus-visible,
a:focus-visible {
  outline: 3px solid var(--blush);
  outline-offset: 3px;
}

.button-small {
  min-height: 48px;
  padding: 0 20px;
  font-size: 12px;
}

.button-header {
  color: var(--white);
  background: var(--forest);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  border-radius: 50%;
  color: var(--forest);
  background: var(--mint);
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 21px;
  height: 1.5px;
  margin: 6px auto;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(3.8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-3.8px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  top: 96px;
  right: 16px;
  left: 16px;
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 28px;
  background: rgba(255, 253, 249, 0.98);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(18px);
}

.mobile-menu a:not(.button) {
  display: block;
  padding: 13px 4px;
  border-bottom: 1px solid var(--line);
  font-family: var(--serif);
  font-size: 26px;
}

.mobile-menu .button {
  width: 100%;
  margin-top: 22px;
}

.hero {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  padding: 132px 0 82px;
  background:
    radial-gradient(circle at 4% 8%, rgba(234, 219, 194, 0.82), transparent 28%),
    radial-gradient(circle at 92% 12%, rgba(223, 233, 225, 0.95), transparent 31%),
    var(--cream);
}

.hero::before {
  position: absolute;
  top: 190px;
  left: -140px;
  width: 290px;
  height: 290px;
  border: 1px solid rgba(198, 163, 106, 0.3);
  border-radius: 50%;
  content: "";
}

.hero::after {
  position: absolute;
  right: -105px;
  bottom: -125px;
  width: 330px;
  height: 330px;
  border-radius: 48% 52% 61% 39% / 44% 42% 58% 56%;
  background: rgba(217, 151, 127, 0.12);
  content: "";
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(500px, 1.08fr);
  align-items: center;
  gap: 72px;
}

.eyebrow {
  display: block;
  margin: 0 0 20px;
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow.dark {
  color: var(--gold);
}

.eyebrow.light {
  color: var(--gold-soft);
}

.hero h1,
.section-heading h2,
.social-heading h2,
.steps-intro h2,
.about-copy h2,
.faq-intro h2,
.final-cta h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero h1 {
  max-width: 650px;
  font-size: clamp(50px, 5vw, 72px);
}

.hero h1 em,
.social-heading h2 em,
.final-cta h2 em {
  color: var(--blush);
  font-weight: 600;
}

.hero-lead {
  max-width: 570px;
  margin: 25px 0 0;
  color: var(--forest-soft);
  font-size: 18px;
  line-height: 1.6;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 25px;
  margin-top: 31px;
}

.button-primary {
  min-height: 58px;
  padding-inline: 27px;
  background: var(--forest);
}

.button-primary svg,
.mobile-whatsapp svg {
  width: 20px;
  fill: currentColor;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 7px 0;
  color: var(--forest);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  display: grid;
  width: 32px;
  height: 32px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  transition: transform 160ms ease, background 160ms ease;
}

.text-link:hover span {
  background: var(--mint);
  transform: translateY(2px);
}

.microcopy {
  margin: 15px 0 0;
  color: var(--muted);
  font-size: 12px;
}

.hero-visual {
  position: relative;
  min-height: 560px;
}

.hero-image-wrap {
  position: absolute;
  inset: 12px 15px 18px 46px;
  overflow: hidden;
  border: 9px solid rgba(255, 253, 249, 0.84);
  border-radius: 210px 210px 42px 42px;
  box-shadow: var(--shadow-soft);
}

.hero-image-wrap::before {
  position: absolute;
  z-index: 2;
  top: 24px;
  right: 24px;
  width: 88px;
  height: 88px;
  border: 1px solid rgba(255, 255, 255, 0.55);
  border-radius: 50%;
  content: "";
}

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

.hero-image-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(155deg, rgba(31, 48, 40, 0.07), rgba(31, 48, 40, 0.17));
}

.search-card {
  position: absolute;
  z-index: 4;
  display: grid;
  width: 212px;
  grid-template-columns: 31px 1fr;
  padding: 17px 18px;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 22px;
  color: var(--text);
  background: rgba(255, 253, 249, 0.94);
  box-shadow: var(--shadow-card);
  backdrop-filter: blur(12px);
}

.search-card-one {
  top: 63px;
  left: 0;
}

.search-card-two {
  right: -3px;
  bottom: 77px;
  background: rgba(223, 233, 225, 0.96);
}

.search-card > span {
  padding-top: 3px;
  color: var(--gold);
  font-size: 9px;
  font-weight: 700;
}

.search-card strong {
  font-family: var(--serif);
  font-size: 19px;
  line-height: 1.08;
}

.search-card small {
  grid-column: 2;
  margin-top: 5px;
  color: var(--muted);
  font-size: 10px;
}

.location-pill {
  position: absolute;
  z-index: 5;
  bottom: 0;
  left: 78px;
  display: flex;
  min-width: 180px;
  align-items: center;
  gap: 12px;
  padding: 13px 18px;
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  background: rgba(255, 253, 249, 0.95);
  box-shadow: var(--shadow-card);
}

.location-pill svg {
  width: 20px;
  fill: var(--blush);
}

.location-pill span {
  display: flex;
  flex-direction: column;
  line-height: 1.18;
}

.location-pill small {
  color: var(--muted);
  font-size: 9px;
}

.location-pill strong {
  margin-top: 3px;
  font-size: 13px;
}

.trust-strip {
  position: relative;
  z-index: 4;
  margin-top: -20px;
  background: transparent;
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  padding: 15px;
  border: 1px solid rgba(255, 255, 255, 0.8);
  border-radius: 32px;
  background: rgba(255, 253, 249, 0.92);
  box-shadow: var(--shadow-soft);
  backdrop-filter: blur(14px);
}

.trust-grid > div {
  display: grid;
  min-height: 92px;
  grid-template-columns: 42px 1fr;
  align-items: center;
  padding: 17px 21px;
  border-radius: 22px;
  background: var(--cream);
}

.trust-grid > div:nth-child(2) {
  background: var(--mint);
}

.trust-grid > div:nth-child(3) {
  background: #f2e4dc;
}

.trust-grid span {
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
}

.trust-grid p {
  margin: 0;
  color: var(--forest-soft);
  font-size: 13px;
  line-height: 1.4;
}

.trust-grid strong {
  display: block;
  color: var(--text);
  font-family: var(--serif);
  font-size: 19px;
  font-weight: 600;
}

.section {
  padding: 118px 0;
}

.treatments {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.treatments::after {
  position: absolute;
  top: 80px;
  right: -100px;
  width: 240px;
  height: 330px;
  border-radius: 52% 48% 36% 64% / 38% 43% 57% 62%;
  background: rgba(223, 233, 225, 0.48);
  content: "";
}

.section-heading {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  align-items: end;
  gap: 90px;
  margin-bottom: 50px;
}

.section-heading h2,
.social-heading h2,
.steps-intro h2,
.faq-intro h2 {
  max-width: 670px;
  font-size: clamp(43px, 4.7vw, 64px);
}

.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
}

.featured-treatments {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 20px;
}

.treatment-card {
  position: relative;
  display: grid;
  min-height: 365px;
  grid-template-columns: 48px 1fr;
  align-items: end;
  padding: 34px;
  overflow: hidden;
  border-radius: 34px;
  box-shadow: var(--shadow-card);
}

.treatment-card::before {
  position: absolute;
  top: -54px;
  right: -34px;
  width: 170px;
  height: 170px;
  border: 1px solid currentColor;
  border-radius: 50%;
  content: "";
  opacity: 0.12;
}

.treatment-card:nth-child(3) {
  min-height: 305px;
  grid-column: 1 / -1;
}

.treatment-dark {
  color: var(--white);
  background: var(--forest);
}

.treatment-lime {
  color: var(--text);
  background: var(--mint);
}

.treatment-image {
  color: var(--white);
  background:
    linear-gradient(90deg, rgba(31, 48, 40, 0.95) 0%, rgba(31, 48, 40, 0.77) 48%, rgba(31, 48, 40, 0.12) 100%),
    url("/assets/hero-podologia-v2.png") center 59% / cover;
}

.card-number {
  position: relative;
  z-index: 2;
  align-self: start;
  display: grid;
  width: 30px;
  height: 30px;
  place-items: center;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 9px;
  font-weight: 700;
  opacity: 0.72;
}

.treatment-card > div:last-child {
  position: relative;
  z-index: 2;
}

.card-kicker {
  margin: 0 0 11px;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  opacity: 0.65;
  text-transform: uppercase;
}

.treatment-card h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4vw, 53px);
  font-weight: 600;
  line-height: 1;
}

.treatment-card p:not(.card-kicker) {
  max-width: 540px;
  margin: 17px 0 22px;
  font-size: 15px;
  opacity: 0.79;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 9px 15px;
  border: 1px solid currentColor;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
}

.card-link span {
  font-size: 15px;
  transition: transform 160ms ease;
}

.card-link:hover span {
  transform: translate(2px, -2px);
}

.more-services {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  gap: 64px;
  margin-top: 58px;
  padding: 38px;
  border-radius: 32px;
  background: var(--cream);
}

.more-services h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1.15;
}

.more-services ul {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.more-services li {
  display: flex;
  min-height: 58px;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 12px 17px;
  border: 1px solid var(--line);
  border-radius: 17px;
  background: var(--white);
  font-size: 13px;
  font-weight: 600;
}

.more-services i {
  color: var(--gold);
  font-size: 9px;
  font-style: normal;
}

.social-proof {
  position: relative;
  overflow: hidden;
  color: var(--white);
  background: var(--forest-deep);
}

.social-proof::before {
  position: absolute;
  top: -170px;
  left: -120px;
  width: 410px;
  height: 410px;
  border: 1px solid rgba(234, 219, 194, 0.16);
  border-radius: 50%;
  content: "";
}

.social-proof::after {
  position: absolute;
  right: -80px;
  bottom: -210px;
  width: 430px;
  height: 430px;
  border-radius: 41% 59% 68% 32% / 45% 39% 61% 55%;
  background: rgba(217, 151, 127, 0.1);
  content: "";
}

.social-heading,
.carousel-wrap,
.social-note {
  position: relative;
  z-index: 2;
}

.social-heading {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  align-items: end;
  gap: 70px;
  margin-bottom: 46px;
}

.social-heading h2 {
  color: var(--white);
}

.social-heading h2 em {
  color: var(--gold-soft);
}

.social-aside {
  max-width: 430px;
  justify-self: end;
  padding: 22px 24px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.05);
}

.social-aside p {
  margin: 0 0 12px;
  color: rgba(255, 255, 255, 0.68);
}

.social-aside a {
  color: var(--gold-soft);
  font-size: 13px;
  font-weight: 700;
}

.carousel-wrap {
  position: relative;
}

.instagram-carousel {
  display: grid;
  grid-auto-columns: minmax(310px, 35%);
  grid-auto-flow: column;
  gap: 20px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  padding: 0 0 17px;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-color: var(--gold) rgba(255, 255, 255, 0.1);
  scrollbar-width: thin;
}

.instagram-carousel::-webkit-scrollbar {
  height: 5px;
}

.instagram-carousel::-webkit-scrollbar-track {
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
}

.instagram-carousel::-webkit-scrollbar-thumb {
  border-radius: 999px;
  background: var(--gold);
}

.reel-card {
  position: relative;
  min-height: 580px;
  overflow: hidden;
  border: 7px solid rgba(255, 255, 255, 0.08);
  border-radius: 30px;
  background: rgba(255, 255, 255, 0.08);
  scroll-snap-align: start;
}

.reel-label {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  padding: 0 18px;
  color: var(--text);
  background: var(--cream-deep);
}

.reel-label span {
  font-family: var(--serif);
  font-size: 18px;
  font-weight: 600;
}

.reel-label small {
  color: var(--forest-soft);
  font-size: 8px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.reel-video {
  display: block;
  width: 100%;
  height: 520px;
  border: 0;
  background: #111713;
  object-fit: cover;
}

.carousel-button {
  position: absolute;
  z-index: 5;
  top: 50%;
  display: grid;
  width: 50px;
  height: 50px;
  border: 7px solid var(--forest-deep);
  border-radius: 50%;
  place-items: center;
  color: var(--forest-deep);
  background: var(--gold-soft);
  font-size: 18px;
  cursor: pointer;
  transform: translateY(-50%);
}

.carousel-prev {
  left: -24px;
}

.carousel-next {
  right: -24px;
}

.social-note {
  margin: 19px 0 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 11px;
}

.steps {
  position: relative;
  overflow: hidden;
  background: var(--cream);
}

.steps::before {
  position: absolute;
  top: 24%;
  left: -120px;
  width: 250px;
  height: 250px;
  border-radius: 50%;
  background: rgba(217, 151, 127, 0.12);
  content: "";
}

.steps-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  align-items: start;
  gap: 88px;
}

.steps-intro {
  position: sticky;
  top: 130px;
}

.steps-intro > p:not(.eyebrow) {
  max-width: 480px;
  margin: 24px 0 29px;
  color: var(--muted);
}

.button-secondary {
  color: var(--white);
  background: var(--forest);
}

.steps-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.steps-list li {
  display: grid;
  grid-template-columns: 58px 1fr;
  gap: 17px;
  padding: 27px 28px;
  border: 1px solid rgba(255, 255, 255, 0.85);
  border-radius: 26px;
  background: rgba(255, 253, 249, 0.88);
  box-shadow: 0 12px 32px rgba(46, 62, 53, 0.06);
}

.steps-list > li > span {
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 50%;
  color: var(--white);
  background: var(--forest);
  font-size: 10px;
  font-weight: 700;
}

.steps-list h3 {
  margin: 0 0 5px;
  font-family: var(--serif);
  font-size: 27px;
  font-weight: 600;
}

.steps-list p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.about {
  position: relative;
  overflow: hidden;
  background: var(--white);
}

.about::before {
  position: absolute;
  top: 10%;
  left: -115px;
  width: 270px;
  height: 270px;
  border: 1px solid rgba(198, 163, 106, 0.25);
  border-radius: 50%;
  content: "";
}

.about-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 0.84fr 1.16fr;
  align-items: center;
  gap: 100px;
}

.about-photo {
  position: relative;
  max-width: 455px;
}

.photo-frame {
  position: relative;
  height: 635px;
  overflow: hidden;
  border: 9px solid var(--cream);
  border-radius: 200px 200px 40px 40px;
  background: var(--cream);
  box-shadow: var(--shadow-soft);
}

.photo-frame::before {
  position: absolute;
  z-index: 2;
  inset: 17px;
  border: 1px solid rgba(255, 255, 255, 0.56);
  border-radius: 180px 180px 28px 28px;
  content: "";
}

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

.about-seal {
  position: absolute;
  right: -48px;
  bottom: 47px;
  width: 190px;
  height: 72px;
  overflow: hidden;
  border: 7px solid var(--white);
  border-radius: 23px;
  background: #3e4a40;
  box-shadow: var(--shadow-card);
}

.about-seal img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 44%;
}

.about-copy h2 {
  font-size: clamp(50px, 6vw, 76px);
}

.about-lead {
  max-width: 620px;
  margin: 25px 0 17px;
  color: var(--forest);
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.37;
}

.about-copy > p:not(.eyebrow):not(.about-lead) {
  max-width: 600px;
  color: var(--muted);
}

.credentials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 31px 0;
}

.credentials > div {
  min-height: 150px;
  padding: 21px 18px;
  border-radius: 21px;
  background: var(--cream);
}

.credentials > div:nth-child(2) {
  background: var(--mint);
}

.credentials > div:nth-child(3) {
  background: #f2e4dc;
}

.credentials strong {
  display: block;
  margin-bottom: 8px;
  font-size: 13px;
}

.credentials span {
  display: block;
  color: var(--muted);
  font-size: 11px;
  line-height: 1.5;
}

.dark-link span {
  transform: none;
}

.dark-link:hover span {
  transform: translate(2px, -2px);
}

.faq {
  color: var(--white);
  background: var(--forest);
}

.faq-grid {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 84px;
}

.faq-intro {
  position: sticky;
  top: 130px;
}

.faq-intro h2 {
  color: var(--white);
}

.faq-intro > p:not(.eyebrow) {
  color: rgba(255, 255, 255, 0.62);
}

.accordion {
  display: grid;
  gap: 12px;
}

.accordion details {
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.055);
}

.accordion details[open] {
  background: rgba(255, 255, 255, 0.09);
}

.accordion summary {
  display: flex;
  min-height: 72px;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 16px 20px 16px 23px;
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 600;
  cursor: pointer;
  list-style: none;
}

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

.accordion summary span {
  display: grid;
  width: 33px;
  height: 33px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 50%;
  color: var(--forest-deep);
  background: var(--gold-soft);
  font-family: var(--sans);
  font-size: 17px;
  font-weight: 400;
  transition: transform 180ms ease;
}

.accordion details[open] summary span {
  transform: rotate(45deg);
}

.accordion details p {
  max-width: 650px;
  margin: -1px 58px 25px 23px;
  color: rgba(255, 255, 255, 0.67);
  font-size: 15px;
}

.final-cta {
  padding: 70px 0;
  background: var(--cream);
}

.final-cta-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1.13fr 0.87fr;
  align-items: end;
  gap: 76px;
  overflow: hidden;
  padding: 70px 72px;
  border-radius: 42px 120px 42px 120px;
  color: var(--text);
  background: var(--gold-soft);
}

.final-cta-inner::after {
  position: absolute;
  top: -80px;
  right: -60px;
  width: 250px;
  height: 250px;
  border: 1px solid rgba(48, 68, 58, 0.18);
  border-radius: 50%;
  content: "";
}

.final-cta h2 {
  position: relative;
  z-index: 2;
  font-size: clamp(48px, 5.5vw, 73px);
}

.final-cta h2 em {
  color: var(--forest);
}

.final-cta-action {
  position: relative;
  z-index: 2;
}

.final-cta-action p {
  margin: 0 0 22px;
  color: var(--forest-soft);
}

.button-dark {
  width: 100%;
  color: var(--white);
  background: var(--forest-deep);
}

.site-footer {
  margin-top: -1px;
  padding: 72px 0 27px;
  border-radius: 62px 62px 0 0;
  color: rgba(255, 255, 255, 0.72);
  background: var(--forest-deep);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 0.7fr 0.7fr;
  gap: 78px;
  padding-bottom: 50px;
}

.brand-footer {
  color: var(--white);
}

.brand-footer .brand-logo {
  width: 220px;
  height: 70px;
  border: 1px solid rgba(234, 219, 194, 0.18);
  border-radius: 18px;
  object-position: center 44%;
}

.footer-brand p {
  max-width: 320px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.5);
  font-size: 13px;
}

.footer-grid > div > small {
  color: var(--gold-soft);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.footer-grid > div > p {
  margin: 11px 0 0;
  font-size: 13px;
  line-height: 1.9;
}

.footer-grid a:hover {
  color: var(--gold-soft);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  padding-top: 21px;
  border-top: 1px solid rgba(255, 255, 255, 0.11);
  color: rgba(255, 255, 255, 0.35);
  font-size: 10px;
}

.mobile-whatsapp {
  display: none;
}

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

.reveal-delay {
  transition-delay: 100ms;
}

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

@media (max-width: 1080px) {
  :root {
    --shell: min(100% - 40px, 960px);
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero-grid {
    grid-template-columns: 0.96fr 1.04fr;
    gap: 42px;
  }

  .hero h1 {
    font-size: clamp(48px, 5.6vw, 64px);
  }

  .hero-image-wrap {
    left: 27px;
  }

  .about-grid,
  .steps-grid,
  .faq-grid {
    gap: 58px;
  }

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

  .credentials > div {
    min-height: auto;
  }
}

@media (max-width: 860px) {
  .desktop-nav,
  .button-header {
    display: none;
  }

  .header-inner {
    grid-template-columns: 1fr auto;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    padding-top: 125px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 45px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-visual {
    min-height: 535px;
  }

  .hero-image-wrap {
    inset: 12px 35px 18px 68px;
  }

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

  .section-heading,
  .social-heading,
  .steps-grid,
  .about-grid,
  .faq-grid,
  .final-cta-inner,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .section-heading,
  .social-heading,
  .steps-grid,
  .about-grid,
  .faq-grid,
  .final-cta-inner {
    gap: 40px;
  }

  .featured-treatments {
    grid-template-columns: 1fr;
  }

  .treatment-card:nth-child(3) {
    grid-column: auto;
  }

  .more-services {
    grid-template-columns: 1fr;
    gap: 25px;
  }

  .instagram-carousel {
    grid-auto-columns: minmax(300px, 61%);
  }

  .social-aside {
    justify-self: start;
  }

  .steps-intro,
  .faq-intro {
    position: static;
  }

  .about-photo {
    max-width: 550px;
  }

  .credentials {
    grid-template-columns: repeat(3, 1fr);
  }

  .final-cta-inner {
    padding: 58px;
  }

  .footer-grid {
    gap: 34px;
  }
}

@media (max-width: 640px) {
  :root {
    --shell: calc(100% - 28px);
  }

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

  body {
    padding-bottom: 72px;
  }

  .site-header {
    top: 10px;
  }

  .header-inner {
    min-height: 62px;
    padding: 7px 8px 7px 12px;
    border-radius: 20px;
  }

  .brand-logo {
    width: 150px;
    height: 42px;
    border-radius: 12px;
  }

  .menu-toggle {
    width: 42px;
    height: 42px;
  }

  .mobile-menu {
    top: 84px;
    right: 14px;
    left: 14px;
  }

  .hero {
    min-height: auto;
    padding: 108px 0 58px;
  }

  .hero::before,
  .hero::after {
    display: none;
  }

  .eyebrow {
    margin-bottom: 17px;
    font-size: 9px;
    letter-spacing: 0.11em;
  }

  .hero h1 {
    font-size: clamp(40px, 11.5vw, 52px);
    line-height: 1.03;
  }

  .hero-lead {
    margin-top: 20px;
    font-size: 16px;
  }

  .hero-actions {
    display: grid;
    gap: 13px;
    margin-top: 26px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    width: fit-content;
  }

  .microcopy {
    margin-top: 12px;
  }

  .hero-visual {
    min-height: 430px;
  }

  .hero-image-wrap {
    inset: 5px 8px 17px 8px;
    border-width: 6px;
    border-radius: 145px 145px 30px 30px;
  }

  .hero-image-wrap img {
    object-position: 58% center;
  }

  .search-card {
    width: 166px;
    grid-template-columns: 25px 1fr;
    padding: 13px;
    border-radius: 17px;
  }

  .search-card strong {
    font-size: 15px;
  }

  .search-card small {
    display: none;
  }

  .search-card-one {
    top: 12px;
    left: -3px;
  }

  .search-card-two {
    right: -3px;
    bottom: 48px;
  }

  .location-pill {
    bottom: 0;
    left: 24px;
    min-width: 164px;
    padding: 11px 15px;
  }

  .trust-strip {
    margin-top: -10px;
  }

  .trust-grid {
    gap: 9px;
    padding: 9px;
    border-radius: 25px;
  }

  .trust-grid > div {
    min-height: 76px;
    padding: 13px 16px;
    border-radius: 18px;
  }

  .section {
    padding: 82px 0;
  }

  .section-heading,
  .social-heading {
    margin-bottom: 34px;
  }

  .section-heading h2,
  .social-heading h2,
  .steps-intro h2,
  .faq-intro h2 {
    font-size: clamp(38px, 10.7vw, 47px);
  }

  .section-heading > p {
    font-size: 15px;
  }

  .featured-treatments {
    gap: 14px;
  }

  .treatment-card,
  .treatment-card:nth-child(3) {
    min-height: 345px;
    grid-template-columns: 38px 1fr;
    padding: 25px 21px;
    border-radius: 27px;
  }

  .treatment-card h3 {
    font-size: 37px;
  }

  .treatment-card p:not(.card-kicker) {
    font-size: 14px;
  }

  .card-link {
    padding: 9px 12px;
    font-size: 11px;
  }

  .treatment-image {
    background: linear-gradient(90deg, rgba(31, 48, 40, 0.96), rgba(31, 48, 40, 0.7)), url("/assets/hero-podologia-v2.png") 65% center / cover;
  }

  .more-services {
    margin-top: 42px;
    padding: 25px 18px;
    border-radius: 25px;
  }

  .more-services ul {
    grid-template-columns: 1fr;
  }

  .instagram-carousel {
    width: calc(100vw - 14px);
    grid-auto-columns: minmax(282px, 82vw);
    margin-right: calc((100vw - var(--shell)) / -2);
  }

  .reel-card {
    min-height: 530px;
    border-width: 5px;
    border-radius: 25px;
  }

  .reel-video {
    height: 470px;
  }

  .carousel-button {
    display: none;
  }

  .social-aside {
    padding: 18px;
    border-radius: 20px;
  }

  .steps-list li {
    grid-template-columns: 48px 1fr;
    padding: 23px 20px;
    border-radius: 22px;
  }

  .steps-list h3 {
    font-size: 23px;
  }

  .steps-list p {
    font-size: 14px;
  }

  .about-photo {
    width: calc(100% - 26px);
  }

  .photo-frame {
    height: 510px;
    border-width: 6px;
    border-radius: 145px 145px 30px 30px;
  }

  .photo-frame::before {
    border-radius: 128px 128px 22px 22px;
  }

  .about-seal {
    right: -22px;
    bottom: 30px;
    width: 150px;
    height: 60px;
    border-width: 5px;
    border-radius: 18px;
  }

  .about-copy h2 {
    font-size: 51px;
  }

  .about-lead {
    font-size: 21px;
  }

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

  .credentials > div {
    padding: 18px;
    border-radius: 18px;
  }

  .accordion {
    gap: 9px;
  }

  .accordion details {
    border-radius: 18px;
  }

  .accordion summary {
    min-height: 68px;
    padding: 14px 15px 14px 18px;
    font-size: 18px;
  }

  .accordion details p {
    margin: 0 18px 22px;
    font-size: 14px;
  }

  .final-cta {
    padding: 40px 0;
  }

  .final-cta-inner {
    gap: 31px;
    padding: 46px 25px;
    border-radius: 32px 78px 32px 78px;
  }

  .final-cta h2 {
    font-size: 44px;
  }

  .site-footer {
    padding-top: 55px;
    border-radius: 40px 40px 0 0;
  }

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

  .mobile-whatsapp {
    position: fixed;
    z-index: 90;
    right: 12px;
    bottom: 10px;
    left: 12px;
    display: flex;
    min-height: 58px;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 9px 18px;
    border: 1px solid rgba(255, 255, 255, 0.34);
    border-radius: 999px;
    color: var(--white);
    background: var(--forest);
    box-shadow: 0 12px 35px rgba(31, 48, 40, 0.3);
    font-size: 14px;
    font-weight: 800;
  }

  .mobile-whatsapp svg {
    width: 20px;
  }
}

@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;
  }
}
