:root {
  --teal: #069a9a;
  --teal-dark: #007f80;
  --teal-deep: #046668;
  --teal-soft: #e8fafa;
  --mint: #c9f3ee;
  --ink: #123b3d;
  --text: #334155;
  --muted: #64748b;
  --line: #dceeee;
  --bg: #f8fafc;
  --white: #ffffff;
  --shadow: 0 22px 60px rgba(0, 122, 122, 0.13);
  --radius: 28px;
  --header-height: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background:
    radial-gradient(circle at 14% 0%, rgba(6, 154, 154, 0.16), transparent 30rem),
    radial-gradient(circle at 100% 18%, rgba(201, 243, 238, 0.7), transparent 26rem),
    linear-gradient(180deg, #f4fbfb 0%, var(--bg) 42%, #ffffff 100%);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.section-shell {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  min-height: var(--header-height);
  background: rgba(255, 255, 255, 0.86);
  border-bottom: 1px solid rgba(220, 238, 238, 0.85);
  backdrop-filter: blur(18px);
}

.nav {
  width: min(1180px, calc(100% - 28px));
  min-height: var(--header-height);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

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

.brand-mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 50px;
  height: 50px;
  flex: 0 0 50px;
  overflow: hidden;
  border-radius: 24px 24px 26px 14px;
  background: var(--teal);
  box-shadow: 0 12px 28px rgba(0, 156, 156, 0.18);
}

.brand-mark img {
  position: relative;
  z-index: 2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  padding: 0;
}

.brand-mark img[src="alemstudio_logo.jpg"] {
  background: transparent;
}

.brand-fallback {
  position: absolute;
  inset: 0;
  display: none;
  place-items: center;
  color: var(--white);
  font-weight: 800;
  letter-spacing: 0;
}

.brand-mark.has-fallback .brand-fallback {
  display: grid;
}

.brand-mark.has-fallback img {
  display: none;
}

.brand strong {
  display: block;
  color: var(--ink);
  font-size: 0.98rem;
  line-height: 1.15;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 0.78rem;
  line-height: 1.2;
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 22px;
  color: #335c5c;
  font-size: 0.95rem;
  font-weight: 650;
}

.nav-menu a {
  transition: color 180ms ease, transform 180ms ease;
}

.nav-menu a:hover {
  color: var(--teal-dark);
}

.nav-cta {
  padding: 12px 18px;
  color: var(--white) !important;
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  border-radius: 999px;
  box-shadow: 0 14px 28px rgba(0, 122, 122, 0.2);
}

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

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--teal-dark);
  border-radius: 999px;
  transition: transform 180ms ease, opacity 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 0.98fr) minmax(320px, 0.82fr);
  align-items: center;
  gap: 42px;
  min-height: calc(100svh - var(--header-height));
  padding: 62px 0 44px;
}

.hero-bg {
  position: absolute;
  inset: 10px -7vw auto auto;
  z-index: -1;
  width: min(560px, 78vw);
  height: min(560px, 78vw);
  background:
    radial-gradient(circle at 36% 36%, rgba(255, 255, 255, 0.78), transparent 5rem),
    linear-gradient(145deg, rgba(6, 154, 154, 0.24), rgba(232, 250, 250, 0.86));
  border-radius: 42% 58% 34% 66% / 52% 30% 70% 48%;
  filter: blur(0.2px);
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 12px solid rgba(6, 154, 154, 0.12);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.hero::before {
  right: 27%;
  top: 15%;
  width: 150px;
  height: 86px;
}

.hero::after {
  right: 13%;
  bottom: 15%;
  width: 220px;
  height: 98px;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1 {
  max-width: 780px;
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.45rem, 8vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2rem, 5vw, 3.35rem);
  line-height: 1.05;
  letter-spacing: 0;
}

h3 {
  margin: 0;
  color: var(--ink);
  font-size: 1.18rem;
  line-height: 1.25;
}

.hero-copy {
  max-width: 660px;
  margin: 24px 0 0;
  color: #415f66;
  font-size: clamp(1.05rem, 2.6vw, 1.25rem);
}

.hero-actions,
.contact-copy .btn {
  margin-top: 30px;
}

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

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 14px 22px;
  border: 0;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 800;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

.btn:hover,
.treatment-card:hover {
  transform: translateY(-3px);
}

.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--teal), var(--teal-deep));
  box-shadow: 0 16px 30px rgba(0, 122, 122, 0.22);
}

.btn-secondary {
  color: var(--teal-dark);
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid rgba(0, 156, 156, 0.18);
}

.btn-large {
  min-height: 58px;
  padding-inline: 28px;
}

.hero-card,
.treatment-card,
.location-card,
.contact-form,
.benefit-item {
  border: 1px solid rgba(220, 238, 238, 0.95);
  background: rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.hero-card {
  position: relative;
  overflow: hidden;
  padding: 22px;
  border-radius: 38px 38px 44px 20px;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: auto -48px -56px auto;
  width: 190px;
  height: 150px;
  border: 18px solid rgba(6, 154, 154, 0.08);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  background: transparent;
  transform: rotate(-20deg);
}

.hero-logo-frame {
  position: relative;
  overflow: hidden;
  display: grid;
  place-items: center;
  aspect-ratio: 1 / 0.82;
  border-radius: 32px 32px 40px 18px;
  background: var(--teal);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.hero-logo-frame::after {
  content: "";
  position: absolute;
  inset: 18px;
  border: 2px solid rgba(255, 255, 255, 0.24);
  border-radius: 48% 52% 38% 62% / 56% 35% 65% 44%;
}

.hero-logo-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-logo-frame.has-fallback {
  min-height: 260px;
}

.hero-logo-frame.has-fallback img {
  display: none;
}

.hero-card-body {
  margin: 24px 0 22px;
}

.hero-card-body h2 {
  font-size: 2rem;
}

.hero-card-body p,
.section-heading p,
.wellness p,
.location-card p,
.contact-copy p {
  color: var(--muted);
  font-size: 1.03rem;
}

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

.check-list li {
  position: relative;
  padding-left: 30px;
  color: #355d5d;
  font-weight: 650;
}

.check-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.42em;
  width: 14px;
  height: 14px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--mint));
  box-shadow: 0 0 0 5px var(--teal-soft);
}

.text-link {
  color: var(--teal-dark);
  font-weight: 850;
}

.trust-strip {
  overflow: hidden;
  padding: 16px 0;
  background: linear-gradient(90deg, var(--teal-deep), var(--teal), #65d4ca);
  color: var(--white);
}

.trust-strip div {
  width: min(1120px, calc(100% - 32px));
  margin-inline: auto;
  display: flex;
  gap: 12px;
  overflow-x: auto;
  scrollbar-width: none;
}

.trust-strip span {
  flex: 0 0 auto;
  padding: 9px 14px;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.12);
  font-size: 0.9rem;
  font-weight: 750;
}

.section {
  padding: 84px 0;
}

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

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

.treatment-card {
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  min-height: 350px;
  padding: 24px;
  border-radius: 28px 28px 32px 16px;
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.treatment-card::after {
  content: "";
  position: absolute;
  right: -38px;
  bottom: -48px;
  width: 150px;
  height: 82px;
  border: 16px solid rgba(6, 154, 154, 0.08);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-24deg);
}

.icon-badge {
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  color: var(--teal-dark);
  border-radius: 18px 18px 22px 10px;
  background: linear-gradient(135deg, var(--teal-soft), #ffffff);
  font-weight: 900;
}

.treatment-card p {
  color: var(--muted);
}

.treatment-card strong {
  display: block;
  margin-top: auto;
  color: #2e6666;
  font-size: 0.95rem;
}

.treatment-card a {
  position: relative;
  z-index: 1;
  margin-top: 22px;
  color: var(--teal-dark);
  font-weight: 850;
}

.soft-section {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(230, 247, 247, 0.74), rgba(255, 255, 255, 0.72));
}

.soft-section::before {
  content: "";
  position: absolute;
  left: -120px;
  bottom: -140px;
  width: 340px;
  height: 340px;
  background: rgba(0, 156, 156, 0.1);
  border-radius: 56% 44% 40% 60%;
}

.two-column {
  position: relative;
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  align-items: start;
}

.benefit-list {
  display: grid;
  gap: 14px;
}

.benefit-item {
  display: grid;
  grid-template-columns: 18px 1fr;
  gap: 16px;
  padding: 22px;
  border-radius: 22px;
}

.benefit-item span {
  width: 16px;
  height: 16px;
  margin-top: 5px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 7px var(--teal-soft);
}

.benefit-item p {
  margin: 8px 0 0;
  color: var(--muted);
}

.wellness {
  position: relative;
  overflow: hidden;
  margin-top: 78px;
  padding: 56px 28px;
  color: var(--white);
  border-radius: 36px;
  background:
    linear-gradient(135deg, rgba(4, 102, 104, 0.96), rgba(6, 154, 154, 0.88)),
    radial-gradient(circle at 85% 20%, rgba(255, 255, 255, 0.5), transparent 12rem);
}

.wellness::after {
  content: "";
  position: absolute;
  right: -70px;
  bottom: -110px;
  width: 330px;
  height: 150px;
  border: 28px solid rgba(255, 255, 255, 0.16);
  border-left-color: transparent;
  border-bottom-color: transparent;
  border-radius: 50%;
  transform: rotate(-22deg);
}

.wellness div {
  position: relative;
  z-index: 1;
  max-width: 760px;
}

.wellness .eyebrow,
.wellness h2,
.wellness p {
  color: var(--white);
}

.wellness p {
  opacity: 0.92;
}

.location-card {
  display: grid;
  grid-template-columns: minmax(220px, 0.72fr) 1fr;
  align-items: center;
  gap: 30px;
  padding: 24px;
  border-radius: 32px;
}

.map-visual {
  position: relative;
  min-height: 260px;
  overflow: hidden;
  border-radius: 24px;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(rgba(255, 255, 255, 0.35) 1px, transparent 1px),
    linear-gradient(135deg, #dff7f5, #9de3da);
  background-size: 42px 42px, 42px 42px, auto;
}

.map-visual::before,
.map-visual::after {
  content: "";
  position: absolute;
  width: 80%;
  height: 42px;
  left: 10%;
  top: 38%;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.55);
  transform: rotate(-18deg);
}

.map-visual::after {
  top: 58%;
  left: -8%;
  transform: rotate(28deg);
}

.pin {
  position: absolute;
  left: 50%;
  top: 44%;
  z-index: 2;
  width: 48px;
  height: 48px;
  border: 10px solid var(--white);
  border-radius: 50% 50% 50% 0;
  background: var(--teal);
  box-shadow: 0 18px 34px rgba(0, 122, 122, 0.28);
  transform: translate(-50%, -50%) rotate(-45deg);
}

.contact-section {
  background: linear-gradient(180deg, #ffffff 0%, #effafa 100%);
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 34px;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: 24px;
  border-radius: 28px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-weight: 750;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 14px 15px;
  color: var(--ink);
  background: #fbfefe;
  outline: none;
  transition: border 180ms ease, box-shadow 180ms ease;
}

.contact-form textarea {
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: rgba(0, 156, 156, 0.65);
  box-shadow: 0 0 0 4px rgba(0, 156, 156, 0.1);
}

.footer {
  padding: 34px 0 92px;
  color: #d9f4f4;
  background: #103b3b;
}

.footer .brand strong,
.footer .brand small,
.footer a,
.footer span,
.footer p {
  color: inherit;
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-details {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
}

.footer p {
  margin: 0;
  color: rgba(217, 244, 244, 0.78);
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 20px;
  color: var(--white);
  border-radius: 999px;
  background: #11a86b;
  box-shadow: 0 16px 34px rgba(17, 168, 107, 0.35);
  font-weight: 900;
  transition: transform 180ms ease;
}

.floating-whatsapp:hover {
  transform: translateY(-3px);
}

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

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

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

@media (max-width: 980px) {
  .nav-toggle {
    display: block;
  }

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

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

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

  .nav-menu {
    position: fixed;
    inset: var(--header-height) 14px auto;
    display: grid;
    gap: 4px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-menu.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0);
  }

  .nav-menu a {
    padding: 12px;
    border-radius: 14px;
  }

  .nav-cta {
    justify-content: center;
    margin-top: 8px;
  }

  .hero,
  .two-column,
  .location-card,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    gap: 26px;
    padding-top: 42px;
  }

  .treatment-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  :root {
    --header-height: 70px;
  }

  .section-shell {
    width: min(100% - 24px, 1120px);
  }

  .nav {
    width: calc(100% - 20px);
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    flex-basis: 46px;
    border-radius: 16px 16px 20px 12px;
  }

  .brand strong {
    font-size: 0.92rem;
  }

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

  .hero {
    min-height: auto;
    padding: 36px 0 32px;
  }

  .hero-actions,
  .hero-actions .btn {
    width: 100%;
  }

  .hero-card,
  .contact-form,
  .location-card {
    padding: 20px;
    border-radius: 26px;
  }

  .section {
    padding: 64px 0;
  }

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

  .treatment-card {
    min-height: 300px;
    border-radius: 22px;
  }

  .wellness {
    margin-top: 54px;
    padding: 38px 22px;
    border-radius: 28px;
  }

  .map-visual {
    min-height: 220px;
  }

  .floating-whatsapp {
    right: 12px;
    bottom: 12px;
    min-height: 50px;
    padding-inline: 17px;
  }
}
