/* =========================================================
   ARAVITA PSYCHOLOGICAL CENTER
   PALETTE: VIOLET • PLUM • SOFT LAVENDER • GOLD
   ========================================================= */

/* =========================================================
   ROOT VARIABLES
   ========================================================= */

:root {
  --purple: #5b2378;
  --purple-dark: #421653;
  --purple-soft: #f4eaf7;

  --lavender: #9162a7;
  --lavender-light: #eee4f2;

  --plum: #92265f;
  --plum-dark: #681b46;
  --plum-soft: #f8edf4;

  --cream: #f8f3f8;

  --text: #302438;
  --muted: #6e6472;

  --white: #ffffff;

  --border: #e4d7e8;

  /* Service card */
  --service-card: #e1d4e6;
  --service-card-hover: #ded0e4;
  --service-text: #33243a;
  --service-muted: #685c6d;

  /* Sage accent untuk elemen kecil */
  --sage: #527064;
  --sage-light: #8eae9b;

  /* Gold */
  --gold: #c9a66b;
  --gold-dark: #b89255;

  --shadow: 0 18px 50px rgba(57, 23, 73, 0.1);
}

/* =========================================================
   GLOBAL
   ========================================================= */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family:
    Inter,
    ui-sans-serif,
    system-ui,
    -apple-system,
    BlinkMacSystemFont,
    "Segoe UI",
    sans-serif;
  color: var(--text);
  background: linear-gradient(135deg, #f8f3f8 0%, #f4edf7 48%, #f8f1f5 100%);
  line-height: 1.65;
}

a {
  color: inherit;
}

img {
  max-width: 100%;
}

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

/* =========================================================
   CONTAINER
   ========================================================= */

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

/* =========================================================
   ACCESSIBILITY
   ========================================================= */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
}

.skip-link:focus {
  left: 16px;
  top: 16px;
  background: #ffffff;
  padding: 10px 14px;
  z-index: 9999;
}

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

/* =========================================================
   HEADER
   ========================================================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(146, 38, 95, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.1);
}

.nav-wrap {
  height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #ffffff;
  text-decoration: none;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.04em;
}

.brand-mark {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
}

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

.site-nav a {
  color: #ffffff;
  text-decoration: none;
  font-size: 13px;
  font-weight: 650;
  opacity: 0.9;

  transition:
    opacity 0.4s ease,
    color 0.4s ease,
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.site-nav a:hover {
  opacity: 1;
  color: yellow;
  text-decoration-color: #e6c35c;
  text-underline-offset: 6px;

  transform: translateY(-1px) scale(1.02);
}

.menu-toggle {
  display: none;
  background: none;
  border: 0;
  color: #ffffff;
}

/* =========================================================
   HERO
   ========================================================= */

.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #5b2378 0%, #76245f 48%, #92265f 100%);
  color: #ffffff;
  min-height: 580px;
  display: grid;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -10% -180px;
  height: 360px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 50%;
}

.hero-grid {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns:
    1.05fr
    0.95fr;
  align-items: center;
  gap: 30px;
  padding: 70px 0;
}

.eyebrow {
  font-size: 20px;
  color: yellow;
  font-weight: 550;
  letter-spacing: 0.13em;
  margin: 0 0 14px;
  text-transform: none;
}

.hero h1 {
  font-size: clamp(31px, 3vw, 46px);
  line-height: 0.98;
  letter-spacing: -0.045em;
  margin: 0 0 20px;
  font-weight: 700;
}

.hero h1 span {
  color: skyblue;
  font-size: 0.72em;
  font-weight: 600;
  letter-spacing: -0.025em;
}

.hero-lead {
  font-size: 30px;
  font-weight: 650;
  margin: 0 0 12px;
}

.hero-text {
  max-width: 550px;
  color: rgba(255, 255, 255, 0.85);
  font-size: 15px;
  margin: 0;
}

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

/* =========================================================
   BUTTON
   ========================================================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 22px;
  border-radius: 10px;
  text-decoration: none;
  font-weight: 550;
  font-size: 20px;
  letter-spacing: 0.04em;
  border: 1px solid transparent;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.16);
}

.btn-primary {
  background: orange;
  color: #311442;
  border-color: #d8b66f;
}

.btn-primary:hover {
  background: green;
  color: #ffff;
}

.btn-light {
  background: yellow;
  color: #5b2378;
  border-color: #ffffff;
}

.btn-light:hover {
  background: green;
  color: #ffff;
}

.btn-large {
  min-width: 230px;
}

/* =========================================================
   HERO IMAGE
   ========================================================= */
.hero-art {
  position: relative;
  min-height: 430px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: visible;
}

.hero-art img {
  display: block;
  width: min(480px, 100%);
  max-width: 100%;
  height: auto;
  object-fit: contain;
  transition: transform 0.5s ease;
}

.hero-art img:hover {
  transform: scale(1.02);
}

/* =========================================================
   GENERAL SECTION
   ========================================================= */

.section {
  padding: 105px 0;
}

.section-heading {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 52px;
}

.eyebrow.purple {
  color: var(--purple);
}

.section h2 {
  font-size: clamp(31px, 4vw, 48px);
  line-height: 1.12;
  letter-spacing: -0.035em;
  margin: 0 0 15px;
}

.section-heading > p:last-child {
  color: var(--muted);
  margin: 0;
}

/* =========================================================
   SERVICES SECTION
   ========================================================= */

.services {
  background: linear-gradient(180deg, #f4edf7 0%, #eee4f2 100%);
}

/* =========================================================
   SERVICE GRID
   ========================================================= */

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  align-items: start;
}

/* =========================================================
   SERVICE CARD
   ========================================================= */

.service-card {
  position: relative;
  height: 440px;
  overflow: hidden;
  background: linear-gradient(145deg, #e6d9ea 0%, #ddcfe3 100%);
  border: 1px solid #d8c9de;
  border-radius: 18px;
  box-shadow: 0 14px 35px rgba(82, 45, 96, 0.1);
  transition:
    height 0.45s ease,
    transform 0.35s ease,
    box-shadow 0.35s ease,
    border-color 0.35s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 42px rgba(82, 45, 96, 0.15);
  border-color: rgba(146, 38, 95, 0.25);
}

/* =========================================================
   DETAILS / SUMMARY
   ========================================================= */

.service-card summary {
  list-style: none;
  cursor: pointer;
}

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

.service-card summary:focus-visible {
  outline: 2px solid var(--lavender);
  outline-offset: -2px;
}

/* =========================================================
   SERVICE IMAGE
   ========================================================= */

.service-icon {
  width: 100%;
  height: 200px;
  padding: 0;
  margin: 0;
  overflow: hidden;
  background: transparent;
  line-height: 0;
}

.service-icon img {
  width: 100%;
  height: 100%;
  padding: 0;
  margin: 0;
  display: block;
  object-fit: cover;
  object-position: center center;
  transition: transform 0.5s ease;
}

.service-card:hover .service-icon img {
  transform: scale(1.04);
}

/* =========================================================
   SERVICE CONTENT
   ========================================================= */

.service-content {
  position: relative;
  height: 255px;
  padding: 25px 22px;
  box-sizing: border-box;
}

.service-number {
  position: absolute;
  top: 22px;
  right: 22px;
  color: var(--sage-light);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 2px;
}

.service-content h3 {
  margin: 0 40px 13px 0;
  color: var(--service-text);
  font-size: 18px;
  font-weight: 650;
  line-height: 1.4;
}

.service-content h3:hover {
  color: darkred;
  text-decoration: wavy;
  text-underline-offset: 5px;
  transform: scale(1.03);
}

.service-content > p {
  margin: 0;
  color: var(--service-muted);
  font-size: 13px;
  line-height: 1.8;
}

/* =========================================================
   SERVICE ACTION
   ========================================================= */

.service-action {
  position: absolute;
  left: 22px;
  right: 22px;
  bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 39px;
  padding-top: 10px;
  border-top: 1px solid rgba(82, 112, 100, 0.16);
  color: var(--service-text);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 1.3px;
  text-transform: uppercase;
  z-index: 5;
}

.service-label {
  display: inline-block;
  color: darkblue;
}

.service-arrow {
  width: 27px;
  height: 27px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--sage);
  color: transparent;
  font-size: 0;
  line-height: 1;
  transition:
    transform 0.35s ease,
    background 0.3s ease;
}

.service-arrow::after {
  content: "↓";
  color: #ffffff;
  font-size: 15px;
}

.service-card:hover .service-arrow {
  transform: translateY(2px);
}

/* =========================================================
   SERVICE MORE
   ========================================================= */

.service-more {
  padding: 0 22px 25px;
  color: var(--service-muted);
  font-size: 13px;
  line-height: 1.8;
}

.service-more p {
  margin: 0;
  padding-top: 17px;
  border-top: 1px solid rgba(82, 112, 100, 0.13);
}

.service-more p + p {
  margin-top: 14px;
}

/* =========================================================
   SERVICE LIST
   ========================================================= */

.service-list {
  list-style: none;
  padding: 0;
  margin: 12px 0px 22px;
  border-radius: 16px;
}

.service-list li {
  position: relative;
  padding-left: 34px;
  margin-bottom: 10px;

  color: darkblue;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.6;
}

.service-list li:last-child {
  margin-bottom: 0;
}

.service-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;

  color: darkblue;
  font-size: 18px;
  font-weight: 900;
  line-height: 1.6;
}

/* =========================================================
   SERVICE BOOK BUTTON
   ========================================================= */

.service-book {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  margin-top: 22px;
  padding: 13px 24px;
  box-sizing: border-box;
  background: #e0b83f;
  color: darkred;
  border: 1px solid var(--gold);
  border-radius: 999px;
  font-family: inherit;
  font-size: 15px;
  font-weight: 750;
  letter-spacing: 1.2px;
  line-height: 1;
  text-align: center;
  text-decoration: none;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(139, 111, 60, 0.14);
  transition:
    background-color 0.3s ease,
    border-color 0.3s ease,
    transform 0.3s ease,
    box-shadow 0.3s ease;
}

.service-book:hover {
  background: green;
  border-color: var(--gold-dark);
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 9px 22px rgba(139, 111, 60, 0.2);
}

.service-book:active {
  transform: translateY(0);
}

.service-book:focus-visible {
  outline: 2px solid var(--sage);
  outline-offset: 3px;
}

/* =========================================================
   OPEN SERVICE CARD
   ========================================================= */

.service-card[open] {
  height: auto;
  border-color: rgba(142, 174, 155, 0.7);
  box-shadow: 0 22px 50px rgba(82, 45, 96, 0.16);
}

.service-card[open] .service-icon {
  height: 205px;
}

.service-card[open] .service-label {
  display: none;
}

.service-card[open] .service-arrow {
  width: 32px;
  height: 32px;
  transform: none;
}

.service-card[open] .service-arrow::after {
  content: "↑";
  font-size: 17px;
}

/* =========================================================
   SERVICE CARD 7
   ========================================================= */

.service-card:nth-child(7) {
  grid-column: 2;
}

/* =========================================================
   ABOUT
   ========================================================= */

.about {
  background: #f8f1f6;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.about-visual {
  min-height: 420px;
  position: relative;
}

.about-shape {
  position: absolute;
  width: 350px;
  height: 350px;
  background: #dfcde5;
  border-radius: 45% 55% 55% 45%;
  left: 30px;
  top: 35px;
  transform: rotate(-12deg);
}

.about-card {
  position: absolute;
  color: goldenrod;
  z-index: 2;
  right: 25px;
  top: 85px;
  width: 320px;
  background: #ffffff;
  border-radius: 24px;
  padding: 42px;
  box-shadow: var(--shadow);
}

.quote-mark {
  font:
    80px/1 Georgia,
    serif;
  color: var(--purple);
  display: block;
  height: 65px;
}

.about-card p {
  font:
    700 25px/1.3 Georgia,
    serif;
  margin: 0;
}

.about-copy > p:not(.eyebrow) {
  color: var(--muted);
}

.values {
  display: flex;
  gap: 12px;
  margin-top: 28px;
}

.values div {
  background: #ffffff;
  border-radius: 14px;
  padding: 15px 18px;
  flex: 1;
}

.values strong {
  display: block;
  color: var(--purple);
  font-size: 12px;
}

.values span {
  color: darkblue;
  font-weight: 800;
  font-size: 13px;
}

/* =========================================================
   TEAM
   ========================================================= */

.team {
  background: #f5edf7;
}

.team-placeholder {
  max-width: 700px;
  margin: auto;
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 30px;
  border: 5px solid var(--border);
  border-radius: 20px;
  background: var(--cream);
}

.avatar {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #e7d8eb;
  color: var(--purple);
  font-weight: 900;
  font-size: 20px;
}

.team-placeholder h3 {
  margin: 0 0 5px;
}

.team-placeholder p {
  margin: 0;
  color: var(--muted);
}

/* TOMBOL KONSULTASI */
.psychologist-card {
  display: flex;
  flex-direction: column;
}

.psychologist-info {
  display: flex;
  flex-direction: column;
  flex: 1;
}

.consultation-button {
  display: block;
  width: 100%;
  margin-top: auto;
  padding: 11px 16px;
  box-sizing: border-box;

  background: darkblue;
  color: #ffffff;

  text-align: center;
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9rem;

  border-radius: 999px;

  transition: all 0.25s ease;
}

.consultation-button:hover {
  background: darkblue;
  color: #ffffff;
  transform: translateY(-2px);
  box-shadow: 0 5px 12px rgba(37, 99, 235, 0.25);
}

/* =========================================================
   CTA
   ========================================================= */

.cta {
  background: linear-gradient(135deg, #5b2378 0%, #76245f 100%);
  color: #ffffff;
  padding: 80px 0;
}

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

.cta h2 {
  font-size: clamp(34px, 4vw, 55px);
  line-height: 1.05;
  letter-spacing: -0.04em;
  margin: 0 0 15px;
}

.cta p:last-child {
  color: rgba(255, 255, 255, 0.75);
  margin: 0;
  max-width: 600px;
}

/* =========================================================
   FOOTER
   ========================================================= */

.site-footer {
  background: linear-gradient(135deg, #27142f 0%, #35142f 100%);
  color: #ffffff;
  padding: 60px 0 20px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 50px;
}

.footer-brand {
  margin-bottom: 15px;
}

.site-footer p,
.site-footer a {
  color: rgba(255, 255, 255, 0.67);
  font-size: 13px;
}

.site-footer a {
  text-decoration: none;
}

.site-footer h3 {
  font-size: 13px;
  margin: 0 0 15px;
}

.footer-grid > div:nth-child(2) a {
  display: block;
  margin: 7px 0;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  margin-top: 45px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  font-size: 11px;
  color: rgba(255, 255, 255, 0.5);
}

.social-icons {
  display: flex;
  align-items: center;
  gap: 12px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition:
    transform 0.25s ease,
    opacity 0.25s ease;
}

.social-icons img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.social-icons a:hover {
  transform: translateY(-3px);
  opacity: 0.8;
}

/* =========================================================
   PSYCHOLOGIST TEAM GRID
   ========================================================= */

.psychologist-grid {
  width: 100%;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 24px;
  margin: 42px 0 0;
  padding: 0;
}

/* =========================================================
   PSYCHOLOGIST CARD
   ========================================================= */

.psychologist-card {
  position: relative;
  width: 100%;
  overflow: hidden;
  background: #eef8fc;
  border: 1px solid #eadff0;
  border-radius: 18px;
  box-shadow: 0 6px 20px rgba(70, 35, 90, 0.07);
  transform: translateY(0) scale(1);
  transition:
    transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 0.4s ease,
    border-color 0.4s ease;
  will-change: transform;
  z-index: 1;
}

/* =========================================================
   PSYCHOLOGIST HOVER
   ========================================================= */

.psychologist-card:hover {
  transform: translateY(-8px) scale(1.025);
  border-color: rgba(107, 44, 135, 0.3);
  box-shadow:
    0 18px 40px rgba(70, 35, 90, 0.14),
    0 5px 15px rgba(107, 44, 135, 0.06);
  z-index: 5;
}

/* =========================================================
   PSYCHOLOGIST PHOTO CONTAINER
   ========================================================= */

.psychologist-photo {
  position: relative;
  width: 100%;
  aspect-ratio: 4 / 4.8;
  overflow: hidden;
  background: #f4edf7;
}

/* =========================================================
   PSYCHOLOGIST PHOTO
   ========================================================= */

.psychologist-photo img {
  display: block;
  width: 100%;
  height: 150%;
  object-fit: cover;
  object-position: center center;
  transform: scale(1);
  transition: transform 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.psychologist-card:hover .psychologist-photo img {
  transform: scale(1.045);
}

/* =========================================================
   PSYCHOLOGIST INFO
   ========================================================= */

.psychologist-info {
  padding: 20px 20px 22px;
}

/* =========================================================
   PSYCHOLOGIST NAME
   ========================================================= */

.psychologist-info h3 {
  margin: 0 0 6px;
  color: #291538;
  font-size: 18px;
  font-weight: 700;
  line-height: 1.35;
}

/* =========================================================
   PSYCHOLOGIST TITLE
   ========================================================= */

.psychologist-title {
  margin: 0 0 12px;
  color: #74419a;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

/* =========================================================
   PSYCHOLOGIST SPECIALIZATION
   ========================================================= */
.psychologist-specialization {
  display: inline-block;
  margin: 0 0 12px;
  padding: 5px 10px;
  background: #f3eaf7;
  color: #69378b;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 600;
  line-height: 1.3;
}

/* =========================================================
   PSYCHOLOGIST BIO
   ========================================================= */
.psychologist-bio {
  margin: 0;
  color: #6d6273;
  font-size: 13px;
  font-weight: 600;
  line-height: 1.65;
}

/* =========================================================
   TEAM PLACEHOLDER SPACING
   ========================================================= */

.team-placeholder {
  margin-top: 30px;
  margin-bottom: 0;
}

/* =========================================================
   DESKTOP BESAR
   ========================================================= */

@media (min-width: 1200px) {
  .psychologist-grid {
    gap: 26px;
  }
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1100px) {
  .psychologist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 22px;
  }
}

/* =========================================================
   RESPONSIVE — TABLET 1024
   ========================================================= */
@media (max-width: 1024px) {
  .container {
    width: min(100% - 40px, 1120px);
  }

  /* HEADER */

  .nav-wrap {
    height: 66px;
  }

  .site-nav {
    gap: 20px;
  }

  /* HERO */
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns:
      minmax(0, 1.05fr)
      minmax(0, 0.95fr);
    gap: 22px;
    padding: 65px 0 75px;
  }

  .hero-art {
    min-height: 370px;
  }

  .hero-art img {
    width: min(390px, 100%);
  }

  .hero h1 {
    font-size: clamp(30px, 4vw, 40px);
  }

  .hero-actions {
    margin-top: 24px;
  }

  /* SERVICES */
  .service-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 20px;
  }

  .service-card:nth-child(7) {
    grid-column: auto;
  }

  .service-card {
    height: 450px;
  }

  .service-content {
    height: 265px;
  }

  /* ABOUT */

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

  .about-visual {
    min-height: 360px;
  }

  /* TESTIMONI */

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

  /* CTA */

  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  /* FOOTER */

  .footer-grid {
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 30px;
  }
}

/* =========================================================
   RESPONSIVE — TABLET 820
   ========================================================= */
@media (max-width: 820px) {
  .hero-grid {
    grid-template-columns: 1fr;
    gap: 15px;
  }

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

  .hero-art {
    min-height: 330px;
    margin-top: 5px;
  }

  .hero-art img {
    width: min(360px, 82vw);
  }

  /* ABOUT */
  .about-grid {
    gap: 35px;
  }

  /* PSYCHOLOGIST */
  .psychologist-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr 1fr;
  }
}

/* =========================================================
   RESPONSIVE — MOBILE 680
   ========================================================= */
@media (max-width: 680px) {
  .container {
    width: min(100% - 28px, 1120px);
  }

  /* HEADER */
  .nav-wrap {
    height: 62px;
  }

  .brand {
    min-width: 0;
    max-width: calc(100% - 55px);
  }

  .brand span:last-child {
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  /* ======================================
  MOBILE MENU
   ========================================*/
  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    padding: 9px;
    background: transparent;
    border: 0;
    border-radius: 10px;
    cursor: pointer;
  }

  .menu-toggle > span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: #ffffff;
    border-radius: 99px;
  }

  .site-nav {
    display: none;
    position: absolute;
    top: 62px;
    left: 0;
    right: 0;
    padding: 10px 14px 16px;
    background: var(--purple-dark);
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    box-shadow: 0 14px 25px rgba(0, 0, 0, 0.12);
  }

  .site-nav.open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 8px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    font-size: 13px;
  }

  .site-nav a:last-child {
    border-bottom: 0;
  }

  /* HERO */
  .hero {
    min-height: auto;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 8px;
    padding: 52px 0 55px;
  }

  .hero h1 {
    font-size: clamp(32px, 9.5vw, 42px);
    line-height: 1.02;
  }

  .hero h1 span {
    font-size: 0.72em;
  }

  .eyebrow {
    font-size: 12px;
    line-height: 1.5;
  }

  .hero-copy > p:not(.eyebrow):not(.hero-text) {
    font-size: 14px;

    line-height: 1.7;
  }

  /* HERO IMAGE */
  .hero-art {
    min-height: 275px;
    margin-top: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    width: calc(100% + 28px);
    margin-left: -14px;
  }

  .hero-art img {
    position: relative;
    width: 100%;
    max-width: none;
    height: auto;
    top: auto;
    right: auto;
    bottom: auto;
    left: auto;
    transform: none;
  }

  .hero-art img:hover {
    transform: none;
  }

  /* BUTTON */
  .hero-actions {
    flex-direction: column;
    gap: 10px;
    margin-top: 22px;
  }

  .btn {
    width: 100%;
    min-height: 48px;
    font-size: 14px;
  }

  /* GENERAL SECTION */
  .section {
    padding: 72px 0;
  }

  .section-heading {
    margin-bottom: 38px;
  }

  .section h2 {
    font-size: clamp(30px, 8vw, 38px);
  }

  /* SERVICES */

  .service-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .service-card {
    height: auto;
  }

  .service-card:not([open]) {
    min-height: 470px;
  }

  .service-icon {
    height: 250px;
  }

  .service-content {
    height: 285px;
    padding: 24px 20px;
  }

  .service-content h3 {
    margin-right: 38px;
    font-size: 17px;
  }

  .service-content > p {
    font-size: 13px;
    line-height: 1.75;
  }

  .service-action {
    left: 20px;
    right: 20px;
    bottom: 18px;
  }

  .service-more {
    padding: 0 20px 24px;
    font-size: 13px;
  }

  .service-card[open] .service-icon {
    height: 250px;
  }

  .service-book {
    margin-top: 20px;
    padding: 14px 22px;
  }

  /* ABOUT */
  .about-visual {
    min-height: 300px;
  }
  .about-shape {
    width: 250px;
    height: 250px;
    left: 0;
  }

  .about-card {
    right: 0;
    top: 60px;
    width: min(260px, 82vw);
    padding: 30px;
  }

  .about-card p {
    font-size: 21px;
  }

  .values {
    flex-direction: column;
  }

  /* PSYCHOLOGIST */
  .psychologist-grid {
    grid-template-columns: 1fr;
    gap: 20px;
    margin-top: 34px;
  }

  .psychologist-card:hover {
    transform: translateY(-4px) scale(1.01);
  }

  .psychologist-info {
    padding: 18px 18px 20px;
  }

  .psychologist-info h3 {
    font-size: 17px;
  }

  /* TESTIMONI */
  .row-heading {
    display: block;
  }
  .coming {
    display: inline-block;
    margin-top: 15px;
  }

  .testimoni-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  /* CTA */
  .cta {
    padding: 65px 0;
  }

  .cta-inner {
    gap: 25px;
  }

  .cta h2 {
    font-size: clamp(32px, 9vw, 45px);
  }

  /* FOOTER */
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

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

/* =========================================================
   ACCESSIBILITY — REDUCED MOTION
   ========================================================= */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

  .psychologist-card,
  .psychologist-photo img {
    transition: none;
  }

  .psychologist-card:hover {
    transform: none;
  }

  .psychologist-card:hover .psychologist-photo img {
    transform: none;
  }
}

/* =========================================
   FLOATING WHATSAPP
   ========================================= */
.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  width: 62px;
  height: 62px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  border-radius: 50%;
  text-decoration: none;

  box-shadow:
    0 8px 24px rgba(0, 0, 0, 0.18),
    0 3px 8px rgba(0, 0, 0, 0.12);

  transition:
    transform 0.25s ease,
    box-shadow 0.25s ease;
}

.floating-whatsapp img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: contain;
  border-radius: 50%;
}

.floating-whatsapp:hover {
  transform: translateY(-5px) scale(1.05);

  box-shadow:
    0 12px 30px rgba(0, 0, 0, 0.22),
    0 5px 12px rgba(0, 0, 0, 0.14);
}

.floating-whatsapp:active {
  transform: scale(0.95);
}

/* =========================================
   MOBILE
   ========================================= */
@media (max-width: 680px) {
  .floating-whatsapp {
    width: 54px;
    height: 54px;
    right: 16px;
    bottom: 18px;
  }
}
