/* POZ Psikoloji — main styles */

:root {
  --ink: #1a2e29;
  --ink-soft: #3a524b;
  --sage: #4f7a6d;
  --teal: #2e6b5e;
  --teal-deep: #24574a;
  --mist: #ebf3f0;
  --foam: #f7fbfa;
  --leaf: #d8e8e1;
  --line: #c5d4ce;
  --amber: #a88455;
  --white: #ffffff;
  --danger: #8b3a3a;
  --ok: #2e6b5e;

  --font-display: "Lora", Georgia, serif;
  --font-body: "Sora", system-ui, sans-serif;

  --space-1: 0.5rem;
  --space-2: 1rem;
  --space-3: 1.5rem;
  --space-4: 2.5rem;
  --space-5: 4rem;
  --space-6: 6.5rem;

  --radius: 0.35rem;
  --shell: min(1120px, calc(100% - 2.5rem));
  --header-h: 4.25rem;

  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --shadow-soft: 0 18px 50px rgba(26, 46, 41, 0.08);
}

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

/* Author display rules must not defeat the hidden attribute. */
[hidden] {
  display: none !important;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 1.05rem;
  line-height: 1.65;
  color: var(--ink);
  background:
    radial-gradient(1200px 600px at 10% -10%, rgba(79, 122, 109, 0.12), transparent 55%),
    radial-gradient(900px 500px at 100% 0%, rgba(168, 132, 85, 0.08), transparent 50%),
    var(--foam);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--teal);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.18em;
}

a:hover {
  color: var(--ink);
}

h1,
h2,
h3,
.brand-text,
.brand-hero,
.footer-logo {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  margin: 0 0 var(--space-2);
}

h2 {
  font-size: clamp(1.7rem, 3.2vw, 2.4rem);
  margin: 0 0 var(--space-2);
}

h3 {
  font-size: 1.25rem;
  margin: 0 0 0.5rem;
}

p {
  margin: 0 0 1rem;
}

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

.shell.narrow {
  width: min(720px, calc(100% - 2.5rem));
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--ink);
  color: var(--white);
  padding: 0.75rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  border: 0;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  background: rgba(247, 251, 250, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.3s var(--ease), background 0.3s var(--ease);
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: rgba(247, 251, 250, 0.94);
}

.header-inner {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-2);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.65rem;
  text-decoration: none;
  color: var(--ink);
}

.brand-mark {
  width: 0.85rem;
  height: 0.85rem;
  border-radius: 50%;
  background: linear-gradient(145deg, var(--sage), var(--teal-deep));
  box-shadow: 0 0 0 6px rgba(79, 122, 109, 0.15);
}

.brand-text {
  font-size: 1.2rem;
  letter-spacing: -0.01em;
}

.custom-logo-link img {
  max-height: 44px;
  width: auto;
}

.brand-logo {
  height: 42px;
  width: auto;
  display: block;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 1.1rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.nav-list a {
  text-decoration: none;
  color: var(--ink-soft);
  font-size: 0.95rem;
  font-weight: 500;
  white-space: nowrap;
}

.nav-list a:hover,
.nav-list .current-menu-item > a,
.nav-list a[aria-current="page"] {
  color: var(--ink);
}

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

.nav-toggle-bars,
.nav-toggle-bars::before,
.nav-toggle-bars::after {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--ink);
  margin: 0 auto;
  position: relative;
  transition: transform 0.25s var(--ease);
}

.nav-toggle-bars::before,
.nav-toggle-bars::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle-bars::before {
  top: -6px;
}

.nav-toggle-bars::after {
  top: 6px;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars {
  background: transparent;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::before {
  top: 0;
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bars::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.4rem;
  min-height: 3rem;
  padding: 0.7rem 1.35rem;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--teal);
  color: var(--white);
  font-family: var(--font-body);
  font-weight: 550;
  font-size: 0.95rem;
  text-decoration: none;
  cursor: pointer;
  transition: transform 0.25s var(--ease), background 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.btn:hover {
  background: var(--teal-deep);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: var(--shadow-soft);
}

.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line);
}

.btn-ghost:hover {
  background: var(--white);
  color: var(--ink);
}

.btn-small {
  min-height: 2.4rem;
  padding: 0.45rem 1rem;
  font-size: 0.88rem;
}

.text-link {
  color: var(--teal);
  font-weight: 550;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
}

.text-link:hover {
  color: var(--ink);
}

/* Hero */
.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  min-height: calc(100svh - var(--header-h));
  display: grid;
  align-content: center;
  overflow: hidden;
  color: var(--ink);
  text-align: center;
}

.hero-media {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(172deg, #e2efe9 0%, #d2e4dd 42%, #edf5f1 76%, #f7fbfa 100%);
}

.hero-wash {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 62% 52% at 50% 40%, rgba(255, 255, 255, 0.8), transparent 68%);
}

.hero-rings {
  position: absolute;
  left: 50%;
  top: 46%;
  transform: translate(-50%, -50%);
  width: min(115vmin, 940px);
  aspect-ratio: 1;
}

.hero-rings span {
  position: absolute;
  top: 50%;
  left: 50%;
  border-radius: 50%;
  border: 1px solid rgba(46, 107, 94, 0.26);
  animation: breathe-ring 10s ease-in-out infinite;
}

.hero-rings span:nth-child(1) {
  width: 40%;
  height: 40%;
  margin: -20% 0 0 -20%;
}

.hero-rings span:nth-child(2) {
  width: 68%;
  height: 68%;
  margin: -34% 0 0 -34%;
  border-color: rgba(46, 107, 94, 0.18);
  animation-delay: -3.3s;
}

.hero-rings span:nth-child(3) {
  width: 100%;
  height: 100%;
  margin: -50% 0 0 -50%;
  border-color: rgba(46, 107, 94, 0.11);
  animation-delay: -6.6s;
}

@keyframes breathe-ring {
  0%,
  100% {
    transform: scale(1);
    opacity: 1;
  }
  50% {
    transform: scale(1.07);
    opacity: 0.5;
  }
}

.hero-breath {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  width: 100%;
  height: clamp(90px, 18vh, 180px);
  fill: var(--foam);
  opacity: 0.95;
}

.hero-breath path {
  animation: breath 8s ease-in-out infinite;
  transform-origin: center;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: var(--space-5) 0 calc(var(--space-5) + 2rem);
  width: min(46rem, calc(100% - 2.5rem));
  margin-inline: auto;
}

.brand-hero {
  margin: 0 0 0.6rem;
  font-size: clamp(2.4rem, 6vw, 4.4rem);
  letter-spacing: -0.02em;
  line-height: 1.05;
  color: var(--ink);
  animation: rise 0.9s var(--ease) both;
}

.hero-divider {
  display: block;
  width: 3.5rem;
  height: 1px;
  margin: var(--space-3) auto;
  background: rgba(46, 107, 94, 0.35);
  animation: rise 0.9s var(--ease) 0.12s both;
}

.hero-title {
  font-size: clamp(1.5rem, 3.2vw, 2.2rem);
  font-weight: 550;
  max-width: 26ch;
  margin-inline: auto;
  animation: rise 0.9s var(--ease) 0.16s both;
}

.hero-lead {
  font-size: 1.08rem;
  color: var(--ink-soft);
  max-width: 42ch;
  margin-inline: auto;
  animation: rise 0.9s var(--ease) 0.24s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  justify-content: center;
  margin-top: var(--space-3);
  animation: rise 0.9s var(--ease) 0.32s both;
}

@keyframes rise {
  from {
    opacity: 0;
    transform: translateY(18px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes breath {
  0%,
  100% {
    d: path("M0,120 C200,40 400,180 600,100 C800,20 1000,160 1200,80 L1200,200 L0,200 Z");
  }
  50% {
    d: path("M0,100 C220,160 420,40 620,110 C820,180 1020,50 1200,110 L1200,200 L0,200 Z");
  }
}

/* Sections */
.section {
  padding: var(--space-6) 0;
}

.section-head {
  margin-bottom: var(--space-4);
  max-width: 36rem;
}

.section-head p {
  color: var(--ink-soft);
  margin: 0;
}

.section-head-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: var(--space-2);
  max-width: none;
}

.services-section {
  background: var(--foam);
}

.service-rail {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding: 1.35rem 0 1.1rem;
  border-top: 1px solid var(--line);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.service-item:hover {
  border-top-color: var(--sage);
  transform: translateY(-2px);
}

.service-item p {
  color: var(--ink-soft);
  font-size: 0.95rem;
  flex: 1;
  margin: 0;
}

.service-media {
  display: block;
  overflow: hidden;
  border-radius: 0.6rem;
  aspect-ratio: 3 / 2;
  margin-bottom: 0.4rem;
  background: var(--leaf);
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.5s var(--ease);
}

.service-item:hover .service-media img {
  transform: scale(1.04);
}

.service-item:has(.service-media) .service-icon {
  display: none;
}

.service-icon {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 50%;
  background: var(--leaf);
  position: relative;
  margin-bottom: 0.35rem;
}

.service-icon::after {
  content: "";
  position: absolute;
  inset: 0.55rem;
  border-radius: 50%;
  background: var(--sage);
  opacity: 0.85;
}

.service-icon--seedling::after {
  border-radius: 40% 60% 55% 45%;
}
.service-icon--person::after {
  width: 0.55rem;
  height: 0.55rem;
  inset: auto;
  top: 0.45rem;
  left: 50%;
  transform: translateX(-50%);
  box-shadow: 0 0.65rem 0 0.2rem var(--sage);
}
.service-icon--hands::after {
  border-radius: 0.8rem 0.8rem 0.35rem 0.35rem;
}
.service-icon--star::after {
  clip-path: polygon(50% 10%, 61% 40%, 94% 40%, 67% 60%, 76% 90%, 50% 72%, 24% 90%, 33% 60%, 6% 40%, 39% 40%);
  border-radius: 0;
  inset: 0.35rem;
}
.service-icon--compass::after {
  border: 2px solid var(--sage);
  background: transparent;
}
.service-icon--chart::after {
  border-radius: 0;
  inset: 0.65rem 0.55rem 0.45rem;
  background: linear-gradient(90deg, var(--sage) 20%, transparent 20% 35%, var(--sage) 35% 55%, transparent 55% 70%, var(--sage) 70%);
}

.team-page-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: var(--space-3);
  padding-bottom: var(--space-6);
}

.team-card {
  display: flex;
  flex-direction: column;
  gap: var(--space-3);
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  box-shadow: var(--shadow-soft);
}

.team-card:first-child {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) 1.5fr;
  grid-template-areas:
    "identity quote"
    "cta      quote";
  grid-template-rows: auto auto;
  align-content: start;
  gap: var(--space-2) var(--space-4);
}

.team-card:first-child .team-identity {
  grid-area: identity;
}

.team-card:first-child blockquote {
  grid-area: quote;
}

.team-card:first-child .team-cta {
  grid-area: cta;
}

.team-cta {
  align-self: start;
  justify-self: start;
  margin-top: auto;
}

.team-identity {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
}

.team-initials {
  flex: 0 0 3.5rem;
  width: 3.5rem;
  height: 3.5rem;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--leaf);
  color: var(--teal-deep);
  font-family: var(--font-display);
  font-weight: 600;
}

.team-position {
  margin: 0 0 0.25rem;
  color: var(--amber);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.team-card h2 {
  font-size: clamp(1.3rem, 2vw, 1.65rem);
  margin-bottom: 0.3rem;
}

.team-role {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.9rem;
}

.team-card blockquote {
  margin: 0;
  padding-left: var(--space-3);
  border-left: 2px solid var(--sage);
  color: var(--ink-soft);
  font-family: var(--font-display);
  font-size: 1rem;
  line-height: 1.7;
}

.approach-section {
  background:
    linear-gradient(180deg, var(--mist), var(--foam));
}

.approach-grid {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: var(--space-5);
  align-items: start;
}

.approach-copy p {
  color: var(--ink-soft);
  max-width: 38ch;
}

.approach-media {
  margin: 0 0 var(--space-3);
  border-radius: 0.85rem;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  box-shadow: var(--shadow-soft);
}

.approach-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.approach-steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 1rem;
}

.approach-steps li {
  padding: 1.1rem 1.2rem;
  background: rgba(255, 255, 255, 0.7);
  border-left: 3px solid var(--sage);
}

.step-label {
  display: block;
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin-bottom: 0.25rem;
}

.approach-steps p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.news-section {
  background: var(--foam);
}

.news-list {
  display: grid;
  gap: 1rem;
}

.news-item {
  background: transparent;
}

.news-item-link {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 1.25rem;
  align-items: center;
  text-decoration: none;
  color: inherit;
  padding: 1rem 0;
  border-bottom: 1px solid var(--line);
  transition: opacity 0.25s var(--ease);
}

.news-item-link:hover {
  opacity: 0.85;
}

.news-thumb {
  overflow: hidden;
  border-radius: var(--radius);
  aspect-ratio: 3 / 2;
  background: var(--leaf);
}

.news-thumb img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.news-body time {
  display: block;
  font-size: 0.82rem;
  color: var(--amber);
  margin-bottom: 0.35rem;
  letter-spacing: 0.02em;
}

.news-body p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.news-item:not(:has(.news-thumb)) .news-item-link {
  grid-template-columns: 1fr;
}

.cta-band {
  padding-top: 0;
}

.cta-band-inner {
  padding: clamp(2.5rem, 6vw, 4rem);
  background:
    linear-gradient(135deg, #2e6b5e 0%, #3f7f70 45%, #4f7a6d 100%);
  color: var(--white);
  border-radius: 1rem;
  text-align: center;
}

.cta-band-inner p {
  color: rgba(255, 255, 255, 0.88);
  max-width: 36ch;
  margin: 0 auto 1.25rem;
}

.cta-band-inner .btn {
  background: var(--white);
  color: var(--teal-deep);
}

.cta-band-inner .btn:hover {
  background: var(--mist);
  color: var(--ink);
}

.faq-section {
  background: var(--foam);
}

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

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

.faq-item summary {
  display: grid;
  grid-template-columns: 3rem 1fr auto;
  gap: 0.75rem;
  align-items: center;
  padding: 1.25rem 0;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.15rem;
  cursor: pointer;
  list-style: none;
}

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

.faq-number {
  color: var(--amber);
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.08em;
}

.faq-item summary::after {
  content: "+";
  grid-column: 3;
  color: var(--sage);
  font-family: var(--font-body);
  font-size: 1.4rem;
  line-height: 1;
}

.faq-item[open] summary::after {
  content: "−";
}

.faq-item p {
  max-width: 52rem;
  margin: -0.35rem 0 1.4rem 3.75rem;
  color: var(--ink-soft);
}

/* Inner pages */
.page-hero {
  padding: var(--space-5) 0 var(--space-4);
}

.page-hero--soft {
  background:
    linear-gradient(180deg, var(--mist), transparent);
}

.eyebrow {
  margin: 0 0 0.5rem;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--sage);
  font-weight: 550;
}

.page-lead {
  color: var(--ink-soft);
  max-width: 40ch;
  font-size: 1.1rem;
}

.prose {
  padding-bottom: var(--space-5);
}

.about-media,
.service-hero-media {
  margin-bottom: var(--space-4);
  border-radius: 1rem;
  overflow: hidden;
  aspect-ratio: 16 / 7;
  box-shadow: var(--shadow-soft);
}

.about-media img,
.service-hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.prose > *:first-child {
  margin-top: 0;
}

.about-layout,
.service-detail,
.contact-layout {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr;
  gap: var(--space-4);
  padding-bottom: var(--space-6);
  align-items: start;
}

.about-aside,
.service-aside,
.contact-panel {
  padding: 1.35rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  position: sticky;
  top: calc(var(--header-h) + 1rem);
}

.aside-title {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.85rem;
}

.value-list,
.related-services,
.contact-meta,
.footer-meta,
.footer-links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.value-list li,
.related-services li {
  padding: 0.55rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--ink-soft);
}

.related-services a {
  text-decoration: none;
  color: var(--ink-soft);
}

.related-services a:hover {
  color: var(--teal);
}

.service-aside .btn {
  margin-top: 1.25rem;
  width: 100%;
}

.contact-meta li {
  display: grid;
  gap: 0.15rem;
  padding: 0.7rem 0;
  border-bottom: 1px solid var(--line);
}

.contact-meta span {
  font-size: 0.8rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--sage);
}

.contact-form {
  display: grid;
  gap: 1rem;
  padding: 1.5rem;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.75rem;
}

.contact-form label {
  display: grid;
  gap: 0.4rem;
}

.contact-form label span {
  font-size: 0.9rem;
  font-weight: 550;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.75rem 0.9rem;
  font: inherit;
  color: var(--ink);
  background: var(--foam);
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(46, 107, 94, 0.35);
  border-color: var(--sage);
}

.form-notice {
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
}

.form-notice--ok {
  background: #e4f2ec;
  color: var(--ok);
}

.form-notice--err {
  background: #f7e8e8;
  color: var(--danger);
}

.contact-map {
  padding-bottom: var(--space-6);
}

.contact-map-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem 1.5rem;
  margin-bottom: 1.1rem;
}

.contact-map-head h2 {
  margin: 0.2rem 0 0.35rem;
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 2vw, 1.85rem);
  font-weight: 500;
}

.contact-map-address {
  margin: 0;
  max-width: 36rem;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.contact-map-frame {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  background: var(--mist);
  aspect-ratio: 21 / 9;
  min-height: 280px;
}

.contact-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.15) contrast(0.98);
}

/* Booking */
.booking {
  padding-bottom: var(--space-6);
}

.booking-empty {
  padding: var(--space-3);
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  text-align: center;
}

.booking-empty p {
  margin: 0 0 1rem;
  color: var(--ink-soft);
}

.counselor-panel {
  margin-bottom: var(--space-3);
}

.counselor-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 1fr));
  gap: 0.75rem;
}

.counselor-card {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  width: 100%;
  text-align: left;
  padding: 0.85rem;
  border: 1px solid var(--line);
  border-radius: 0.75rem;
  background: var(--foam);
  color: var(--ink);
  font: inherit;
  cursor: pointer;
  transition: border-color 0.2s var(--ease), background 0.2s var(--ease), transform 0.2s var(--ease);
}

.counselor-card:hover {
  background: var(--leaf);
  transform: translateY(-1px);
}

.counselor-card.is-selected {
  border-color: var(--teal);
  background: var(--mist);
  box-shadow: inset 0 0 0 1px var(--teal);
}

.counselor-photo {
  flex: 0 0 3.4rem;
  width: 3.4rem;
  height: 3.4rem;
  border-radius: 50%;
  overflow: hidden;
  background: var(--mist);
  display: grid;
  place-items: center;
  font-family: var(--font-display);
  font-size: 1.25rem;
  color: var(--teal);
}

.counselor-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.counselor-copy {
  display: grid;
  gap: 0.2rem;
  min-width: 0;
}

.counselor-copy strong {
  font-size: 1rem;
}

.counselor-copy span {
  font-size: 0.86rem;
  color: var(--ink-soft);
  line-height: 1.35;
}

.booking-selected-counselor {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.4rem 0.75rem;
  margin: 0 0 1rem;
  padding: 0.7rem 0.9rem;
  background: var(--mist);
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.booking-change {
  margin-left: auto;
  border: 0;
  background: transparent;
  color: var(--teal);
  font: inherit;
  font-size: 0.88rem;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.booking-steps {
  display: flex;
  flex-wrap: wrap;
  gap: 1.25rem;
  list-style: none;
  margin: 0 0 var(--space-3);
  padding: 0;
}

.booking-step {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.92rem;
  color: var(--ink-soft);
  opacity: 0.55;
}

.booking-step.is-active,
.booking-step.is-done {
  opacity: 1;
}

.booking-step-no {
  display: grid;
  place-items: center;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--white);
  font-size: 0.85rem;
}

.booking-step.is-active .booking-step-no {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.booking-step.is-done .booking-step-no {
  background: var(--leaf);
  border-color: var(--sage);
}

.booking-grid {
  display: grid;
  grid-template-columns: 1.35fr 1fr;
  gap: var(--space-3);
  align-items: start;
}

.booking-panel {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 0.85rem;
  padding: 1.35rem;
}

.calendar-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 1rem;
}

.calendar-title {
  margin: 0;
  font-family: var(--font-display);
  font-size: 1.2rem;
}

.calendar-nav {
  width: 2.4rem;
  height: 2.4rem;
  border-radius: 50%;
  border: 1px solid var(--line);
  background: var(--foam);
  color: var(--ink);
  cursor: pointer;
  font-size: 1rem;
  transition: background 0.2s var(--ease);
}

.calendar-nav:hover:not(:disabled) {
  background: var(--leaf);
}

.calendar-nav:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.calendar-grid {
  display: grid;
  grid-template-columns: repeat(7, 1fr);
  gap: 0.35rem;
}

.calendar-weekday {
  text-align: center;
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--sage);
  padding-bottom: 0.35rem;
}

.calendar-blank {
  aspect-ratio: 1;
}

.calendar-day {
  aspect-ratio: 1;
  display: grid;
  place-items: center;
  border-radius: 0.5rem;
  border: 1px solid transparent;
  background: var(--mist);
  color: var(--ink);
  font: inherit;
  font-size: 0.95rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), color 0.2s var(--ease), transform 0.2s var(--ease);
}

.calendar-day.is-free:hover {
  background: var(--leaf);
  transform: translateY(-1px);
}

.calendar-day.is-full {
  background: transparent;
  color: rgba(58, 82, 75, 0.35);
  cursor: not-allowed;
  text-decoration: line-through;
}

.calendar-day.is-today {
  border-color: var(--sage);
}

.calendar-day.is-selected {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.calendar-legend {
  display: flex;
  align-items: center;
  gap: 0.4rem;
  margin: 1rem 0 0;
  font-size: 0.82rem;
  color: var(--ink-soft);
}

.legend-dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 0.2rem;
  display: inline-block;
}

.legend-dot.legend-free {
  background: var(--mist);
  border: 1px solid var(--line);
}

.legend-dot.legend-full {
  background: transparent;
  border: 1px dashed var(--line);
  margin-left: 0.75rem;
}

.booking-side-title {
  margin: 0 0 0.75rem;
  font-family: var(--font-display);
  font-size: 1.1rem;
}

.slot-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(5.2rem, 1fr));
  gap: 0.5rem;
}

.slot {
  padding: 0.6rem 0.4rem;
  border-radius: 0.5rem;
  border: 1px solid var(--line);
  background: var(--foam);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  cursor: pointer;
  transition: background 0.2s var(--ease), border-color 0.2s var(--ease);
}

.slot:hover {
  background: var(--leaf);
}

.slot.is-selected {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

.booking-hint,
.booking-loading {
  margin: 0;
  color: var(--ink-soft);
  font-size: 0.95rem;
}

.booking-error {
  margin: 0;
  color: var(--danger);
  font-size: 0.92rem;
}

.booking-form {
  display: grid;
  gap: 0.9rem;
  margin-top: 1.25rem;
}

.booking-form label {
  display: grid;
  gap: 0.35rem;
}

.booking-form label span {
  font-size: 0.88rem;
  font-weight: 550;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0.65rem 0.8rem;
  font: inherit;
  color: var(--ink);
  background: var(--foam);
}

.booking-form input:focus,
.booking-form select:focus,
.booking-form textarea:focus {
  outline: 2px solid rgba(46, 107, 94, 0.35);
  border-color: var(--sage);
}

.booking-summary {
  margin: 0;
  padding: 0.65rem 0.8rem;
  background: var(--mist);
  border-radius: var(--radius);
  font-weight: 550;
  font-size: 0.95rem;
}

.booking-honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.booking-note {
  margin: 0;
  font-size: 0.85rem;
  color: var(--ink-soft);
}

.booking-result {
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: var(--radius);
  font-size: 0.95rem;
}

.booking-result.is-ok {
  background: #e4f2ec;
  color: var(--ok);
}

.booking-result.is-error {
  background: #f7e8e8;
  color: var(--danger);
}

.booking-fallback {
  margin: var(--space-3) 0 0;
  font-size: 0.95rem;
  color: var(--ink-soft);
}

.news-archive {
  padding-bottom: var(--space-6);
}

.empty-state {
  padding: 2rem;
  background: var(--mist);
  border-radius: 0.75rem;
  color: var(--ink-soft);
}

.single-thumb {
  margin-bottom: var(--space-3);
  border-radius: 0.75rem;
  overflow: hidden;
}

.single-nav {
  padding-bottom: var(--space-6);
}

.navigation.pagination {
  margin-top: var(--space-4);
}

.navigation.pagination .nav-links {
  display: flex;
  gap: 0.5rem;
  flex-wrap: wrap;
}

.navigation.pagination a,
.navigation.pagination .current {
  display: inline-flex;
  min-width: 2.4rem;
  min-height: 2.4rem;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  text-decoration: none;
  color: var(--ink);
  background: var(--white);
}

.navigation.pagination .current {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}

/* Footer */
.site-footer {
  background: #163029;
  color: rgba(255, 255, 255, 0.82);
  padding: var(--space-5) 0 var(--space-3);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr 1.1fr 0.9fr;
  gap: var(--space-4);
}

.footer-logo {
  margin: 0 0 0.5rem;
  font-size: 1.65rem;
  letter-spacing: -0.02em;
  color: var(--white);
}

.footer-tag {
  max-width: 24ch;
  color: rgba(255, 255, 255, 0.7);
}

.footer-heading {
  margin: 0 0 0.85rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #b7d0c6;
}

.footer-links a,
.footer-meta a {
  color: rgba(255, 255, 255, 0.82);
  text-decoration: none;
}

.footer-links a:hover,
.footer-meta a:hover {
  color: var(--white);
}

.footer-links li,
.footer-meta li {
  margin-bottom: 0.45rem;
  font-size: 0.92rem;
}

.footer-bottom {
  margin-top: var(--space-4);
  padding-top: var(--space-3);
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.55);
}

/* Reveal on scroll */
[data-reveal] {
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}

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

/* Focus */
:focus-visible {
  outline: 2px solid var(--teal);
  outline-offset: 3px;
}

/* Responsive */
@media (max-width: 960px) {
  .service-rail {
    grid-template-columns: repeat(2, 1fr);
  }

  .approach-grid,
  .about-layout,
  .service-detail,
  .contact-layout,
  .booking-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .team-page-grid,
  .team-card:first-child {
    grid-template-columns: 1fr;
  }

  .team-card:first-child {
    grid-template-areas:
      "identity"
      "quote"
      "cta";
    gap: var(--space-3);
  }

  .about-aside,
  .service-aside,
  .contact-panel {
    position: static;
  }

  .contact-map-frame {
    aspect-ratio: 4 / 3;
  }
}

@media (max-width: 1080px) {
  .nav-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  .site-nav {
    position: fixed;
    inset: var(--header-h) 0 auto 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 1rem;
    padding: 1.25rem;
    background: rgba(247, 251, 250, 0.98);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
  }

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

  .nav-list {
    flex-direction: column;
    align-items: flex-start;
  }

  .header-cta {
    width: 100%;
  }
}

@media (max-width: 760px) {
  .service-rail {
    grid-template-columns: 1fr;
  }

  .news-item-link {
    grid-template-columns: 1fr;
  }

  .section-head-row {
    flex-direction: column;
    align-items: flex-start;
  }

  .hero-content {
    padding-bottom: calc(var(--space-5) + 3rem);
  }
}

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

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

  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
