:root {
  --green-950: #021f1c;
  --green-900: #042b26;
  --green-800: #0a4038;
  --green-700: #11564b;
  --gold-300: #f4d58a;
  --gold-400: #dcb45d;
  --gold-500: #bd8b2f;
  --cream: #f7f3eb;
  --paper: #fffdf8;
  --ink: #12201d;
  --muted: #63716d;
  --line: rgba(21, 65, 57, 0.14);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
}

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

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

svg {
  width: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 36px;
  width: min(1380px, calc(100% - 72px));
  margin: 0 auto;
  padding: 24px 0;
  color: white;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
}

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

.brand-monogram {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  color: var(--gold-300);
  border: 1px solid rgba(244, 213, 138, 0.52);
  border-radius: 50%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
  letter-spacing: -2px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 22px;
  font-weight: 500;
  letter-spacing: 0.035em;
}

.brand-copy small {
  margin-top: 5px;
  color: var(--gold-300);
  font-size: 9px;
  letter-spacing: 0.25em;
  text-transform: uppercase;
}

.desktop-nav {
  display: flex;
  gap: 30px;
  font-size: 13px;
}

.desktop-nav a {
  position: relative;
  padding: 10px 0;
  color: rgba(255, 255, 255, 0.82);
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 4px;
  left: 0;
  height: 1px;
  background: var(--gold-300);
  content: "";
  transform: scaleX(0);
  transition: transform 0.25s ease;
}

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

.header-cta {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 10px;
  padding: 13px 18px;
  border: 1px solid rgba(244, 213, 138, 0.66);
  border-radius: 100px;
  color: var(--gold-300);
  font-size: 12px;
  font-weight: 700;
  transition: 0.25s ease;
}

.header-cta:hover {
  background: var(--gold-300);
  color: var(--green-950);
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: 53% 47%;
  min-height: 790px;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 34%, rgba(19, 92, 76, 0.7), transparent 34%),
    linear-gradient(120deg, #011b18 0%, #04352e 58%, #021c19 100%);
  color: white;
}

.hero::before {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 42px 42px;
  content: "";
  mask-image: linear-gradient(to right, black, transparent 65%);
}

.hero-glow {
  position: absolute;
  top: 18%;
  left: -80px;
  width: 500px;
  height: 500px;
  border: 1px solid rgba(219, 180, 93, 0.14);
  border-radius: 50%;
}

.hero-glow::before,
.hero-glow::after {
  position: absolute;
  inset: 55px;
  border: 1px solid rgba(219, 180, 93, 0.1);
  border-radius: inherit;
  content: "";
}

.hero-glow::after {
  inset: 110px;
}

.hero-content {
  position: relative;
  z-index: 3;
  align-self: center;
  width: min(660px, calc(100% - 80px));
  margin: 92px 0 0 auto;
  padding-left: 36px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-300);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.eyebrow span {
  width: 35px;
  height: 1px;
  background: currentColor;
}

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

h1,
h2,
blockquote {
  font-family: Georgia, "Times New Roman", serif;
}

.hero h1 {
  max-width: 650px;
  margin: 24px 0;
  font-size: clamp(54px, 5.1vw, 82px);
  font-weight: 400;
  line-height: 0.98;
  letter-spacing: -0.045em;
}

.hero h1 em,
.testimonial blockquote em {
  display: block;
  color: var(--gold-300);
  font-weight: 400;
}

.hero-content > p {
  max-width: 610px;
  margin: 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 17px;
  line-height: 1.75;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  min-height: 58px;
  padding: 0 27px;
  border-radius: 4px;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

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

.btn-gold {
  background: linear-gradient(135deg, #f4d58a, #c7953b);
  box-shadow: 0 14px 36px rgba(189, 139, 47, 0.2);
  color: #092a25;
}

.btn-dark {
  margin-top: 26px;
  background: var(--green-900);
  color: white;
}

.text-link {
  padding-bottom: 4px;
  border-bottom: 1px solid rgba(255,255,255,.35);
  color: rgba(255,255,255,.8);
  font-size: 13px;
}

.hero-proof {
  display: flex;
  gap: 0;
  margin-top: 56px;
}

.hero-proof div {
  display: flex;
  flex-direction: column;
  min-width: 155px;
  padding: 0 24px;
  border-left: 1px solid rgba(255, 255, 255, 0.17);
}

.hero-proof div:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-proof strong {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  font-weight: 500;
}

.hero-proof span {
  margin-top: 5px;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-visual {
  position: relative;
  min-height: 790px;
  background: #0c322c;
}

.portrait-frame {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.portrait-frame::after {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, var(--green-900) 0%, transparent 24%),
    linear-gradient(0deg, rgba(2, 31, 28, 0.38), transparent 55%);
  content: "";
}

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

.floating-card {
  position: absolute;
  z-index: 3;
  bottom: 72px;
  left: -38px;
  display: flex;
  align-items: center;
  gap: 14px;
  width: 310px;
  padding: 18px;
  background: rgba(255, 253, 248, 0.93);
  border: 1px solid rgba(244, 213, 138, 0.6);
  box-shadow: 0 18px 52px rgba(0, 0, 0, 0.25);
  color: var(--green-950);
  backdrop-filter: blur(10px);
}

.floating-icon {
  display: grid;
  place-items: center;
  flex: 0 0 44px;
  width: 44px;
  height: 44px;
  background: var(--green-900);
  border-radius: 50%;
  color: var(--gold-300);
}

.floating-card div {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.floating-card strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.floating-card small {
  color: #69716f;
  font-size: 10px;
  line-height: 1.4;
}

.vertical-mark {
  position: absolute;
  z-index: 3;
  right: 22px;
  bottom: 40px;
  color: rgba(255,255,255,.34);
  font-size: 9px;
  letter-spacing: .3em;
  writing-mode: vertical-rl;
}

.trust-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 34px;
  min-height: 82px;
  padding: 18px 24px;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
  color: var(--green-800);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .16em;
  text-align: center;
  text-transform: uppercase;
}

.trust-strip i {
  width: 5px;
  height: 5px;
  background: var(--gold-400);
  border-radius: 50%;
}

.instagram-strip {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 18px;
  width: min(1180px, calc(100% - 48px));
  margin: 36px auto 0;
  padding: 22px 28px;
  background: linear-gradient(120deg, #fffaf0, #f7edda);
  border: 1px solid rgba(189, 139, 47, 0.25);
  box-shadow: 0 14px 40px rgba(4, 43, 38, 0.08);
  color: var(--green-900);
  transition: transform .2s ease, box-shadow .2s ease;
}

.instagram-strip:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 48px rgba(4, 43, 38, 0.12);
}

.instagram-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  background: var(--green-900);
  border-radius: 50%;
  color: var(--gold-300);
}

.instagram-icon svg {
  width: 25px;
}

.instagram-icon .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.instagram-copy {
  display: flex;
  flex-direction: column;
  gap: 5px;
}

.instagram-copy small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: .13em;
  text-transform: uppercase;
}

.instagram-copy strong {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 21px;
  font-weight: 500;
}

.instagram-action {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--gold-500);
  font-size: 11px;
  font-weight: 800;
  letter-spacing: .06em;
  text-transform: uppercase;
}

.section {
  padding: 112px max(5vw, 40px);
}

.about {
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: clamp(70px, 9vw, 140px);
  align-items: center;
  width: min(1250px, 100%);
  margin: 0 auto;
}

.about-gallery {
  position: relative;
  min-height: 620px;
}

.image-card {
  position: absolute;
  overflow: hidden;
}

.image-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.image-card-main {
  inset: 0 18% 0 0;
  border-radius: 150px 4px 4px 4px;
}

.image-card-main img {
  object-position: center 18%;
}

.image-card-detail {
  right: 0;
  bottom: 24px;
  width: 38%;
  height: 265px;
  border: 8px solid var(--paper);
  border-radius: 4px 4px 90px 4px;
}

.experience-badge {
  position: absolute;
  z-index: 2;
  top: 78px;
  right: 2%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: 145px;
  height: 145px;
  padding: 24px;
  background: var(--green-900);
  border-radius: 50%;
  color: white;
  text-align: center;
}

.experience-badge strong {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 38px;
  font-weight: 400;
}

.experience-badge span {
  font-size: 9px;
  line-height: 1.5;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.about-copy h2,
.section-heading h2,
.process-copy h2,
.faq h2,
.final-cta h2 {
  margin: 20px 0 24px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(38px, 4vw, 58px);
  font-weight: 400;
  line-height: 1.05;
  letter-spacing: -.035em;
}

.about-copy > p,
.process-copy > p,
.faq-intro > p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.8;
}

.about-copy .lead {
  color: var(--green-800);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  line-height: 1.55;
}

.check-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px 20px;
  margin: 30px 0 0;
  padding: 26px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  list-style: none;
}

.check-list li {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--green-800);
  font-size: 12px;
  font-weight: 700;
}

.check-list svg {
  width: 17px;
  color: var(--gold-500);
}

.treatments {
  background:
    radial-gradient(circle at 90% 0%, rgba(32, 104, 88, .28), transparent 30%),
    var(--green-950);
  color: white;
}

.section-heading {
  display: grid;
  grid-template-columns: 1.3fr .7fr;
  gap: 80px;
  align-items: end;
  width: min(1250px, 100%);
  margin: 0 auto 58px;
}

.section-heading h2 {
  max-width: 740px;
  margin-bottom: 0;
}

.section-heading > p {
  margin: 0 0 5px;
  color: rgba(255,255,255,.58);
  font-size: 14px;
  line-height: 1.75;
}

.treatments-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  width: min(1250px, 100%);
  margin: 0 auto;
  background: rgba(244, 213, 138, 0.22);
  border: 1px solid rgba(244, 213, 138, 0.22);
}

.treatment-card {
  position: relative;
  min-height: 335px;
  padding: 32px 28px;
  overflow: hidden;
  background: var(--green-950);
  transition: background .25s ease;
}

.treatment-card:hover {
  background: var(--green-800);
}

.card-number {
  color: var(--gold-400);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 13px;
}

.treatment-card h3 {
  margin: 80px 0 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 26px;
  font-weight: 400;
}

.treatment-card p {
  color: rgba(255,255,255,.56);
  font-size: 13px;
  line-height: 1.65;
}

.treatment-card a {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--gold-300);
  font-size: 10px;
  font-weight: 800;
  letter-spacing: .1em;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: .9fr 1.1fr;
  gap: clamp(60px, 8vw, 120px);
  align-items: start;
  width: min(1250px, 100%);
  margin: 0 auto;
}

.process-copy img {
  width: 100%;
  max-height: 290px;
  margin-top: 34px;
  border-radius: 4px;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(.75);
}

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

.steps li {
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 24px;
  padding: 28px 0;
  border-bottom: 1px solid var(--line);
}

.steps li:first-child {
  padding-top: 0;
}

.steps li > span {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 29px;
}

.steps h3 {
  margin: 0 0 10px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
  font-weight: 400;
}

.steps p {
  max-width: 520px;
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

.testimonial {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--cream);
  text-align: center;
}

.quote-mark {
  color: var(--gold-500);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 78px;
  line-height: .7;
}

.testimonial blockquote {
  max-width: 920px;
  margin: 35px auto;
  color: var(--green-900);
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.18;
  letter-spacing: -.025em;
}

.quote-author {
  display: flex;
  align-items: center;
  gap: 13px;
  text-align: left;
}

.quote-author > span {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  background: var(--green-900);
  border-radius: 50%;
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 15px;
}

.quote-author div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.quote-author strong {
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 16px;
  font-weight: 500;
}

.quote-author small {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: .07em;
  text-transform: uppercase;
}

.faq {
  display: grid;
  grid-template-columns: .8fr 1.2fr;
  gap: clamp(60px, 9vw, 140px);
  width: min(1250px, 100%);
  margin: 0 auto;
}

.faq-intro {
  position: sticky;
  top: 40px;
  align-self: start;
}

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 28px 0;
  color: var(--green-900);
  cursor: pointer;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 20px;
  list-style: none;
}

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

.faq-list summary span {
  display: grid;
  place-items: center;
  flex: 0 0 34px;
  width: 34px;
  height: 34px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--gold-500);
  transition: transform .2s ease;
}

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

.faq-list details p {
  margin: -5px 54px 25px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.75;
}

.location-section {
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 28px;
  padding: 60px max(8vw, 50px);
  background: var(--cream);
  border-top: 1px solid var(--line);
}

.location-icon {
  display: grid;
  place-items: center;
  width: 72px;
  height: 72px;
  background: var(--green-900);
  border-radius: 50%;
  color: var(--gold-300);
}

.location-icon svg {
  width: 29px;
}

.location-copy h2 {
  margin: 11px 0 9px;
  color: var(--green-900);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 400;
  letter-spacing: -.025em;
}

.location-copy address {
  color: var(--muted);
  font-size: 14px;
  font-style: normal;
  line-height: 1.65;
}

.location-button {
  margin-top: 0;
  min-width: 190px;
}

.final-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 60px;
  padding: 90px max(8vw, 50px);
  background:
    radial-gradient(circle at 82% 0, rgba(55, 126, 108, .34), transparent 34%),
    var(--green-900);
  color: white;
}

.final-cta > div {
  max-width: 700px;
}

.final-cta h2 {
  margin-bottom: 16px;
}

.final-cta p {
  max-width: 620px;
  color: rgba(255,255,255,.62);
  font-size: 15px;
  line-height: 1.7;
}

footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 40px;
  padding: 50px max(5vw, 40px) 28px;
  background: #011714;
  color: white;
}

.footer-links {
  display: flex;
  gap: 26px;
  color: rgba(255,255,255,.54);
  font-size: 11px;
}

.footer-links a:hover {
  color: var(--gold-300);
}

.footer-contact {
  display: flex;
  flex-direction: column;
  justify-self: end;
  gap: 5px;
  text-align: right;
}

.footer-contact small {
  color: rgba(255,255,255,.46);
  font-size: 9px;
  letter-spacing: .14em;
  text-transform: uppercase;
}

.footer-contact a {
  color: var(--gold-300);
  font-family: Georgia, "Times New Roman", serif;
  font-size: 19px;
}

.footer-address {
  grid-column: 1 / -1;
  color: rgba(255,255,255,.52);
  font-size: 11px;
  line-height: 1.5;
  text-align: center;
  transition: color .2s ease;
}

.footer-address:hover {
  color: var(--gold-300);
}

.copyright {
  grid-column: 1 / -1;
  margin: 30px 0 0;
  padding-top: 25px;
  border-top: 1px solid rgba(255,255,255,.08);
  color: rgba(255,255,255,.3);
  font-size: 9px;
  letter-spacing: .08em;
  text-align: center;
}

.whatsapp-float {
  position: fixed;
  z-index: 30;
  right: 22px;
  bottom: 22px;
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 18px;
  background: #25d366;
  border: 3px solid white;
  border-radius: 100px;
  box-shadow: 0 10px 30px rgba(0,0,0,.22);
  color: white;
  font-size: 11px;
  font-weight: 800;
}

.whatsapp-float svg {
  width: 24px;
  fill: currentColor;
  stroke: none;
}

@media (max-width: 1050px) {
  .site-header {
    grid-template-columns: 1fr auto;
  }

  .desktop-nav {
    display: none;
  }

  .hero {
    grid-template-columns: 58% 42%;
  }

  .hero-content {
    width: calc(100% - 36px);
    padding-left: 24px;
  }

  .hero-proof div {
    min-width: 0;
  }

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

  .about {
    gap: 60px;
  }
}

@media (max-width: 760px) {
  .site-header {
    position: absolute;
    width: calc(100% - 36px);
    padding: 17px 0;
  }

  .brand-copy strong {
    font-size: 18px;
  }

  .brand-monogram {
    width: 42px;
    height: 42px;
  }

  .header-cta {
    width: 45px;
    height: 45px;
    padding: 0;
    justify-content: center;
    border-radius: 50%;
    font-size: 0;
  }

  .hero {
    display: flex;
    flex-direction: column;
    min-height: auto;
  }

  .hero-content {
    width: auto;
    margin: 0;
    padding: 145px 23px 52px;
  }

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

  .hero-content > p {
    font-size: 15px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 19px;
  }

  .btn {
    width: 100%;
  }

  .text-link {
    align-self: center;
  }

  .hero-proof {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 45px;
  }

  .hero-proof div {
    padding: 0 10px;
    text-align: center;
  }

  .hero-proof strong {
    font-size: 20px;
  }

  .hero-proof span {
    font-size: 8px;
    line-height: 1.4;
  }

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

  .portrait-frame::after {
    background: linear-gradient(0deg, var(--green-900), transparent 32%);
  }

  .portrait-frame img {
    object-position: center 18%;
  }

  .floating-card {
    right: 22px;
    bottom: 24px;
    left: 22px;
    width: auto;
  }

  .vertical-mark {
    display: none;
  }

  .trust-strip {
    flex-wrap: wrap;
    gap: 14px 18px;
    padding: 24px 18px;
    line-height: 1.4;
  }

  .instagram-strip {
    grid-template-columns: auto 1fr;
    width: calc(100% - 36px);
    margin-top: 24px;
    padding: 18px;
  }

  .instagram-copy strong {
    font-size: 16px;
    overflow-wrap: anywhere;
  }

  .instagram-action {
    grid-column: 2;
    font-size: 9px;
  }

  .section {
    padding: 78px 23px;
  }

  .about,
  .process,
  .faq {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-gallery {
    min-height: 500px;
  }

  .image-card-main {
    right: 12%;
  }

  .image-card-detail {
    width: 42%;
    height: 205px;
  }

  .experience-badge {
    top: 50px;
    right: 0;
    width: 120px;
    height: 120px;
    padding: 18px;
  }

  .experience-badge strong {
    font-size: 30px;
  }

  .about-copy h2,
  .section-heading h2,
  .process-copy h2,
  .faq h2,
  .final-cta h2 {
    font-size: 40px;
  }

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

  .section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
  }

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

  .treatment-card {
    min-height: 285px;
  }

  .treatment-card h3 {
    margin-top: 48px;
  }

  .process-copy img {
    max-height: 220px;
  }

  .testimonial blockquote {
    font-size: 32px;
  }

  .faq-intro {
    position: static;
  }

  .final-cta {
    align-items: stretch;
    flex-direction: column;
    padding: 70px 23px;
  }

  .location-section {
    grid-template-columns: 1fr;
    justify-items: start;
    padding: 58px 23px;
  }

  .location-button {
    width: 100%;
  }

  footer {
    grid-template-columns: 1fr;
    justify-items: center;
    padding: 50px 23px 26px;
    text-align: center;
  }

  .footer-links {
    flex-wrap: wrap;
    justify-content: center;
  }

  .footer-contact {
    justify-self: center;
    text-align: center;
  }

  .copyright {
    width: 100%;
  }

  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 54px;
    padding: 0;
    justify-content: center;
  }

  .whatsapp-float span {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  * {
    transition: none !important;
  }
}
