:root {
  --color-ink: #11372b;
  --color-ink-strong: #062f22;
  --color-muted: #5c6861;
  --color-page: #f7f8f4;
  --color-surface: #ffffff;
  --color-soft: #eef4e8;
  --color-soft-strong: #dfead5;
  --color-accent: #94bd67;
  --color-accent-dark: #06472f;
  --color-plum: #8c2f66;
  --color-line: #dce6d6;
  --shadow-sm: 0 10px 28px rgba(6, 71, 47, 0.08);
  --shadow-md: 0 18px 44px rgba(6, 71, 47, 0.12);
  --shadow-hover: 0 24px 60px rgba(6, 71, 47, 0.18);
  --radius-md: 18px;
  --radius-lg: 24px;
  --max-width: 1120px;
  --content-width: 720px;
  --font-display: "Century Gothic", "Avenir Next", Avenir, Montserrat, "Trebuchet MS", Arial, sans-serif;
  --font-body: "Avenir Next", Avenir, Montserrat, "Trebuchet MS", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--color-ink);
  font-family: var(--font-body);
  line-height: 1.6;
  background: var(--color-page);
  text-rendering: optimizeLegibility;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
.button:focus-visible {
  outline: 3px solid rgba(148, 189, 103, 0.7);
  outline-offset: 4px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  min-height: 78px;
  padding: 12px clamp(18px, 4vw, 48px);
  background: rgba(247, 248, 244, 0.94);
  border-bottom: 1px solid rgba(220, 230, 214, 0.9);
  backdrop-filter: blur(14px);
}

.brand {
  flex: 0 0 auto;
  text-decoration: none;
}

.brand img {
  width: clamp(188px, 21vw, 300px);
  height: auto;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 6px;
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 0.94rem;
  font-weight: 600;
}

.main-nav a {
  padding: 9px 12px;
  border-radius: 999px;
  text-decoration: none;
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.main-nav a:hover {
  color: var(--color-accent-dark);
  background: rgba(148, 189, 103, 0.14);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  padding: clamp(72px, 9vw, 118px) clamp(18px, 5vw, 64px);
  color: #ffffff;
  background:
    linear-gradient(90deg, rgba(4, 47, 33, 0.92) 0%, rgba(4, 47, 33, 0.78) 42%, rgba(4, 47, 33, 0.18) 100%),
    url("../images/Untitled0.png") center 48% / cover;
}

.hero::after {
  position: absolute;
  right: clamp(18px, 5vw, 64px);
  bottom: 28px;
  width: min(260px, 28vw);
  height: 4px;
  content: "";
  background: linear-gradient(90deg, var(--color-accent), rgba(255, 255, 255, 0.25));
  border-radius: 999px;
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(720px, 100%);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.hero .eyebrow,
.reviews .eyebrow {
  color: #cce6aa;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2,
h3 {
  color: var(--color-ink-strong);
  font-family: var(--font-display);
  font-weight: 600;
  letter-spacing: 0.01em;
}

.hero h1 {
  color: #ffffff;
}

h1 {
  max-width: 780px;
  margin-bottom: 20px;
  font-size: clamp(3rem, 6.8vw, 5.6rem);
  line-height: 1;
}

h2 {
  max-width: 820px;
  margin-bottom: 0;
  font-size: clamp(2rem, 3.8vw, 3rem);
  line-height: 1.12;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.13rem;
  font-weight: 700;
  line-height: 1.25;
}

p {
  color: var(--color-muted);
}

.hero p {
  max-width: 640px;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
}

.hero-actions,
.contact-actions,
.review-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-more {
  margin-top: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
  letter-spacing: 0.01em;
  text-align: center;
  text-decoration: none;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.button.primary {
  color: #063b29;
  background: var(--color-accent);
  box-shadow: 0 14px 32px rgba(148, 189, 103, 0.22);
}

.button.secondary {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.7);
  background: rgba(255, 255, 255, 0.06);
}

.button.secondary.dark {
  color: var(--color-accent-dark);
  border-color: rgba(6, 71, 47, 0.35);
  background: transparent;
}

.hero-actions .button,
.hero-more .button {
  color: #ffffff;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.7);
  box-shadow: none;
}

.hero-actions .appointments-entry {
  color: #063b29;
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 14px 32px rgba(148, 189, 103, 0.22);
}

.contact-actions .button,
.contact-more .button {
  color: var(--color-accent-dark);
  background: transparent;
  border-color: rgba(6, 71, 47, 0.4);
  box-shadow: none;
}

.contact-actions .appointments-entry {
  min-height: 58px;
  padding: 16px 28px;
  color: #063b29;
  background: var(--color-accent);
  border-color: var(--color-accent);
  box-shadow: 0 16px 34px rgba(6, 71, 47, 0.18);
  font-size: 1.04rem;
}

.contact-actions .appointments-entry .whatsapp-icon {
  width: 24px;
  height: 24px;
}

.button.light {
  color: var(--color-accent-dark);
  background: #ffffff;
}

.review-button {
  gap: 9px;
}

.review-mark {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 20px;
  height: 20px;
  font-size: 1rem;
  line-height: 1;
}

.section {
  padding: clamp(64px, 8vw, 96px) clamp(18px, 5vw, 64px);
}

.section-inner {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.section-heading {
  max-width: 820px;
  margin-bottom: 34px;
}

.section-heading .eyebrow {
  margin-bottom: 12px;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: clamp(36px, 6vw, 72px);
  align-items: start;
}

.intro {
  background:
    linear-gradient(180deg, #ffffff 0%, rgba(255, 255, 255, 0) 100%),
    var(--color-page);
}

.intro-copy {
  max-width: var(--content-width);
  padding: 30px;
  background: rgba(255, 255, 255, 0.72);
  border: 1px solid var(--color-line);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
}

.intro-copy p {
  margin-bottom: 16px;
  font-size: 1.04rem;
}

.intro-copy p:last-child {
  margin-bottom: 0;
}

.services,
.spaces {
  background: var(--color-soft);
}

.service-grid,
.space-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.service-grid article,
.team-member,
.space-grid figure {
  position: relative;
  overflow: hidden;
  background: var(--color-surface);
  border: 1px solid rgba(220, 230, 214, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  transition:
    transform 200ms ease,
    box-shadow 200ms ease,
    border-color 200ms ease;
}

.service-grid article::after,
.team-member::after,
.space-grid figure::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  content: "";
  background: linear-gradient(135deg, rgba(148, 189, 103, 0.16), transparent 44%);
  opacity: 0;
  transition: opacity 200ms ease;
}

.service-grid article {
  min-height: 232px;
  padding: 24px;
  border-top: 4px solid var(--color-accent);
}

.service-grid article:first-child {
  display: grid;
  grid-column: 1 / -1;
  grid-template-columns: 54px minmax(210px, 0.34fr) minmax(0, 0.66fr);
  gap: 22px;
  align-items: center;
  border-top-color: var(--color-plum);
  background:
    linear-gradient(180deg, rgba(140, 47, 102, 0.055), transparent 58%),
    var(--color-surface);
}

.service-grid article:first-child h3 {
  margin-bottom: 0;
}

.service-grid article:first-child p {
  grid-column: 3;
  max-width: 760px;
  font-size: 1.04rem;
}

.service-icon,
.service-grid h3 {
  position: relative;
  z-index: 1;
}

.service-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 22px;
  color: var(--color-accent-dark);
  background: #edf3ee;
  border: 1px solid rgba(148, 189, 103, 0.22);
  border-radius: 18px;
  transition:
    transform 200ms ease,
    background-color 200ms ease,
    color 200ms ease;
}

.service-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.service-grid article:first-child .service-icon {
  margin-bottom: 0;
  color: var(--color-plum);
}

.service-grid p,
.team-member p,
.team-member ul {
  position: relative;
  z-index: 1;
}

.service-grid p {
  margin-bottom: 0;
}

.team {
  background: #ffffff;
}

.team-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
  align-items: stretch;
}

.team-member {
  padding: 28px;
}

.team-member.featured {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: 28px;
}

.team-member img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
  border-radius: var(--radius-md);
}

.team-photo {
  height: 100%;
  min-height: 320px;
  overflow: hidden;
  border-radius: var(--radius-md);
}

.team-photo img {
  min-height: 100%;
  border-radius: 0;
}

.team-photo-denis img {
  object-position: center 42%;
  transform: scale(1.3);
  transform-origin: center 42%;
}

.team-member h3 {
  margin-bottom: 6px;
}

.role {
  margin-bottom: 18px;
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: 0.96rem;
  font-weight: 700;
}

.team-member ul {
  display: grid;
  gap: 10px;
  padding: 0;
  margin: 20px 0 0;
  list-style: none;
}

.team-member li {
  position: relative;
  padding: 10px 0 10px 18px;
  color: var(--color-muted);
  border-top: 1px solid var(--color-line);
}

.team-member li::before {
  position: absolute;
  top: 1.05rem;
  left: 0;
  width: 6px;
  height: 6px;
  content: "";
  background: var(--color-accent);
  border-radius: 999px;
}

.reviews {
  color: #ffffff;
  background:
    linear-gradient(120deg, rgba(140, 47, 102, 0.2), transparent 48%),
    var(--color-accent-dark);
}

.reviews h2,
.reviews h3 {
  color: #ffffff;
}

.reviews-heading {
  max-width: 760px;
  margin: 0 auto clamp(36px, 6vw, 62px);
  text-align: center;
}

.reviews-heading h2 {
  margin-bottom: 0;
}

.review-group + .review-group {
  margin-top: clamp(54px, 8vw, 84px);
  padding-top: clamp(54px, 8vw, 84px);
  border-top: 1px solid rgba(255, 255, 255, 0.22);
}

.review-band {
  display: flex;
  align-items: center;
  flex-direction: column;
  text-align: center;
}

.review-band h3 {
  max-width: 780px;
  margin-bottom: 24px;
  font-size: clamp(1.55rem, 3vw, 2.2rem);
}

.review-summary {
  display: flex;
  align-items: center;
  flex-direction: column;
  gap: 3px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.94rem;
}

.review-summary strong {
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 1.35rem;
  line-height: 1.2;
}

.review-summary .stars {
  font-size: 1.75rem;
  line-height: 1.2;
}

.google-wordmark {
  display: inline-flex;
  margin-top: 3px;
  font-family: Arial, sans-serif;
  font-size: 1.8rem;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.google-wordmark span:nth-child(1),
.google-wordmark span:nth-child(4) {
  color: #4285f4;
}

.google-wordmark span:nth-child(2),
.google-wordmark span:nth-child(6) {
  color: #ea4335;
}

.google-wordmark span:nth-child(3) {
  color: #fbbc05;
}

.google-wordmark span:nth-child(5) {
  color: #34a853;
}

.review-carousel {
  position: relative;
  margin-top: 30px;
  padding: 0 22px;
}

.review-grid {
  display: flex;
  gap: 16px;
  margin: 0;
  padding: 2px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scrollbar-width: none;
  scroll-snap-type: x mandatory;
}

.review-grid::-webkit-scrollbar {
  display: none;
}

.review-carousel-static {
  padding-right: 0;
  padding-left: 0;
}

.review-grid-studio {
  justify-content: center;
  overflow: visible;
}

.review-grid blockquote {
  display: flex;
  flex: 0 0 calc((100% - 32px) / 3);
  min-height: 235px;
  margin: 0;
  padding: 20px;
  color: var(--color-ink);
  background: rgba(255, 255, 255, 0.96);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: var(--radius-lg);
  box-shadow: 0 18px 42px rgba(4, 47, 33, 0.22);
  flex-direction: column;
  scroll-snap-align: start;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.review-card-heading {
  display: flex;
  align-items: flex-start;
  justify-content: flex-end;
  gap: 12px;
  min-height: 28px;
}

.review-author {
  display: flex;
  min-width: 0;
  margin-right: auto;
  align-items: center;
  gap: 10px;
}

.review-author > span:last-child {
  display: grid;
  min-width: 0;
  gap: 2px;
}

.review-author strong {
  overflow: hidden;
  color: var(--color-ink-strong);
  font-family: var(--font-display);
  font-size: 0.9rem;
  line-height: 1.25;
  text-overflow: ellipsis;
}

.review-author small {
  color: var(--color-muted);
  font-size: 0.76rem;
  line-height: 1.3;
}

.review-avatar {
  display: grid;
  flex: 0 0 40px;
  width: 40px;
  height: 40px;
  color: #ffffff;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  background: var(--color-accent-dark);
  border: 2px solid rgba(146, 194, 95, 0.45);
  border-radius: 50%;
  place-items: center;
}

.google-g {
  flex: 0 0 auto;
  color: transparent;
  font-family: Arial, sans-serif;
  font-size: 1.25rem;
  font-weight: 800;
  background: conic-gradient(
    from -45deg,
    #4285f4 0deg 95deg,
    #34a853 95deg 175deg,
    #fbbc05 175deg 235deg,
    #ea4335 235deg 315deg,
    #4285f4 315deg 360deg
  );
  background-clip: text;
  -webkit-background-clip: text;
}

.review-grid p {
  margin: 8px 0 0;
  color: var(--color-ink);
  font-size: 0.98rem;
  line-height: 1.48;
}

.review-details {
  margin-top: auto;
  padding-top: 14px;
}

.review-details summary {
  display: inline-flex;
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  list-style: none;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  text-underline-offset: 3px;
}

.review-details summary::-webkit-details-marker {
  display: none;
}

.review-details summary:hover {
  text-decoration: underline;
}

.read-more-icon {
  display: grid;
  width: 20px;
  height: 20px;
  color: #ffffff;
  background: var(--color-accent-dark);
  border-radius: 50%;
  place-items: center;
}

.read-more-icon::before {
  content: "+";
  font-size: 1rem;
  font-weight: 500;
  line-height: 1;
}

.review-details[open] .read-more-icon::before {
  content: "−";
}

.review-full-text {
  padding-top: 4px;
}

.review-full-text p {
  font-size: 0.9rem;
}

.stars {
  color: #fbbc04;
  font-size: 1rem;
  letter-spacing: 0.06em;
}

.review-all-link {
  display: block;
  width: fit-content;
  margin: 18px auto 0;
  color: #cce6aa;
  font-family: var(--font-display);
  font-size: 0.85rem;
  font-weight: 700;
  text-align: center;
  text-underline-offset: 4px;
}

.review-arrow {
  position: absolute;
  top: 50%;
  z-index: 2;
  display: grid;
  width: 38px;
  height: 38px;
  padding: 0 0 3px;
  color: var(--color-accent-dark);
  font: inherit;
  font-size: 1.8rem;
  line-height: 1;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 50%;
  box-shadow: var(--shadow-sm);
  cursor: pointer;
  place-items: center;
  transform: translateY(-50%);
}

.review-arrow:disabled {
  opacity: 0.38;
  cursor: default;
}

.review-arrow-prev {
  left: 3px;
}

.review-arrow-next {
  right: 3px;
}

@media (hover: hover) {
  .review-grid blockquote:hover {
    transform: translateY(-3px);
    box-shadow: 0 24px 54px rgba(4, 47, 33, 0.28);
  }
}

.space-grid figure {
  margin: 0;
}

.space-grid img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  transition: transform 260ms ease;
}

.space-grid figcaption {
  position: relative;
  z-index: 1;
  padding: 18px 20px 20px;
  color: var(--color-ink-strong);
  font-family: var(--font-display);
  font-weight: 700;
}

.section.contact {
  padding-bottom: 0;
  background:
    linear-gradient(180deg, rgba(223, 234, 213, 0.64), rgba(223, 234, 213, 0.92)),
    var(--color-soft-strong);
}

.contact h2 {
  max-width: 620px;
}

.contact p {
  max-width: 600px;
  font-size: 1.04rem;
}

.contact-more {
  margin-top: 12px;
}

.whatsapp-button,
.more-info-button {
  gap: 9px;
}

.whatsapp-icon {
  flex: 0 0 auto;
  width: 21px;
  height: 21px;
  fill: currentColor;
}

.contact-card {
  display: grid;
  gap: 0;
  overflow: hidden;
  padding: 0;
  background: var(--color-surface);
  border: 1px solid rgba(220, 230, 214, 0.95);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md);
  font-style: normal;
}

.contact-card strong {
  padding: 22px 24px;
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
  background: var(--color-accent-dark);
}

.contact-card a {
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr);
  gap: 14px;
  align-items: center;
  padding: 16px 24px;
  color: var(--color-ink);
  text-decoration: none;
  border-top: 1px solid var(--color-line);
  transition:
    color 160ms ease,
    background-color 160ms ease;
}

.contact-copy {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.contact-card .contact-label {
  color: var(--color-muted);
  font-family: var(--font-display);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.contact-value {
  overflow-wrap: anywhere;
}

.contact-icon {
  display: grid;
  width: 42px;
  height: 42px;
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: 13px;
  place-items: center;
}

.contact-icon svg {
  width: 23px;
  height: 23px;
}

.contact-icon-map {
  color: #ea4335;
}

.contact-icon-map svg,
.contact-icon-gmail svg,
.contact-icon-instagram svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.9;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.contact-icon-whatsapp {
  color: #25d366;
}

.contact-icon-whatsapp svg {
  fill: currentColor;
}

.contact-icon-gmail {
  color: #ea4335;
}

.contact-icon-instagram {
  color: #c13584;
}

.contact-card a:hover {
  color: var(--color-accent-dark);
  background: rgba(148, 189, 103, 0.11);
}

.contact-map {
  position: relative;
  width: 100vw;
  height: clamp(300px, 34vw, 430px);
  margin-top: clamp(48px, 7vw, 78px);
  margin-left: calc(50% - 50vw);
  overflow: hidden;
  background: var(--color-soft-strong);
  border-top: 1px solid rgba(6, 71, 47, 0.12);
}

.contact-map iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
}

.map-open-link {
  position: absolute;
  top: 14px;
  left: 14px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 9px 14px;
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-size: 0.86rem;
  font-weight: 700;
  background: #ffffff;
  border: 1px solid var(--color-line);
  border-radius: 8px;
  box-shadow: var(--shadow-sm);
  text-decoration: none;
}

.map-open-link:hover {
  color: #ffffff;
  background: var(--color-accent-dark);
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  padding: 26px clamp(18px, 4vw, 48px);
  color: rgba(255, 255, 255, 0.86);
  background: var(--color-ink-strong);
}

.site-footer span:first-child {
  color: #ffffff;
  font-family: var(--font-display);
  font-weight: 700;
}

.floating-whatsapp {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
  display: grid;
  width: 58px;
  height: 58px;
  color: #ffffff;
  background: #25d366;
  border: 3px solid #ffffff;
  border-radius: 50%;
  box-shadow: 0 12px 30px rgba(6, 71, 47, 0.28);
  text-decoration: none;
  place-items: center;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease;
}

.floating-whatsapp .whatsapp-icon {
  width: 31px;
  height: 31px;
}

.floating-whatsapp:hover {
  transform: translateY(-3px) scale(1.04);
  box-shadow: 0 16px 36px rgba(6, 71, 47, 0.34);
}

.appointments-dialog {
  width: min(920px, calc(100% - 36px));
  max-height: calc(100dvh - 48px);
  margin: auto;
  padding: 0;
  overflow: hidden;
  color: var(--color-ink);
  background: var(--color-page);
  border: 1px solid var(--color-line);
  border-radius: 28px;
  box-shadow: 0 32px 90px rgba(3, 32, 22, 0.3);
}

.appointments-dialog::backdrop {
  background: rgba(6, 47, 34, 0.48);
  backdrop-filter: blur(9px);
}

.appointments-dialog-content {
  position: relative;
  max-height: calc(100dvh - 48px);
  padding: clamp(28px, 5vw, 48px);
  overflow-y: auto;
}

.appointments-dialog-close {
  position: absolute;
  top: 16px;
  right: 16px;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  padding: 0;
  color: var(--color-accent-dark);
  font: 400 2rem/1 var(--font-body);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-radius: 50%;
  cursor: pointer;
  place-items: center;
}

.appointments-dialog-close:hover {
  background: var(--color-soft);
}

.appointments-dialog-close:focus-visible {
  outline: 3px solid rgba(148, 189, 103, 0.7);
  outline-offset: 3px;
}

.appointments-dialog .appointments-heading {
  max-width: 660px;
  margin-bottom: 30px;
  padding: 0 32px;
}

.appointments-dialog .appointments-heading h2 {
  margin-bottom: 10px;
  color: var(--color-accent-dark);
  font-size: clamp(1.75rem, 4vw, 2.55rem);
}

.appointments-dialog .appointment-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
}

.appointments-dialog .appointment-option {
  grid-template-columns: 46px minmax(0, 1fr);
  gap: 8px 14px;
  min-height: 92px;
  padding: 16px;
}

.appointments-dialog .appointment-icon {
  grid-row: 1 / span 2;
  width: 46px;
  height: 46px;
  border-radius: 14px;
}

.appointments-dialog .appointment-icon svg {
  width: 23px;
  height: 23px;
}

.appointment-action {
  color: #168c47;
  font-size: 0.78rem;
  font-weight: 700;
  line-height: 1;
}

.appointments-page {
  min-height: 100vh;
  background: var(--color-page);
}

.appointments-main {
  min-height: calc(100vh - 79px);
  padding: clamp(64px, 10vw, 120px) clamp(18px, 5vw, 64px);
  background:
    linear-gradient(180deg, rgba(238, 244, 232, 0.72), rgba(223, 234, 213, 0.86)),
    var(--color-soft);
}

.appointments-content {
  width: min(var(--max-width), 100%);
  margin: 0 auto;
}

.appointments-heading {
  max-width: 780px;
  margin: 0 auto clamp(34px, 6vw, 56px);
  text-align: center;
}

.appointments-heading h1 {
  margin-bottom: 16px;
  color: var(--color-accent-dark);
  font-size: clamp(2rem, 5vw, 3.5rem);
}

.appointments-heading > p:last-child {
  margin-bottom: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.appointment-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.appointment-option {
  display: grid;
  grid-template-columns: 54px minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  min-height: 112px;
  padding: 20px 22px;
  color: var(--color-ink-strong);
  background: var(--color-surface);
  border: 1px solid var(--color-line);
  border-top: 4px solid var(--color-accent);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-sm);
  text-decoration: none;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease;
}

.appointment-option-featured {
  border-top-color: var(--color-plum);
}

.appointment-option strong {
  font-family: var(--font-display);
  font-size: 1rem;
}

.appointment-icon {
  display: grid;
  width: 54px;
  height: 54px;
  color: var(--color-accent-dark);
  background: var(--color-soft);
  border: 1px solid var(--color-line);
  border-radius: 16px;
  place-items: center;
}

.appointment-icon svg {
  width: 27px;
  height: 27px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.appointment-option-featured .appointment-icon {
  color: var(--color-plum);
}

.appointment-whatsapp {
  width: 25px;
  height: 25px;
  fill: #25d366;
}

.appointment-option:hover {
  border-color: var(--color-accent);
  box-shadow: var(--shadow-hover);
  transform: translateY(-3px);
}

.appointments-back {
  display: block;
  width: fit-content;
  margin: 30px auto 0;
  color: var(--color-accent-dark);
  font-family: var(--font-display);
  font-weight: 700;
  text-underline-offset: 4px;
}

@media (max-width: 760px) {
  .appointments-dialog {
    width: calc(100% - 24px);
    max-height: calc(100dvh - 24px);
    border-radius: 22px;
  }

  .appointments-dialog-content {
    max-height: calc(100dvh - 24px);
    padding: 38px 18px 22px;
  }

  .appointments-dialog .appointments-heading {
    margin-bottom: 24px;
    padding: 0 20px;
  }

  .appointments-dialog .appointment-grid {
    grid-template-columns: 1fr;
  }

  .appointment-grid {
    grid-template-columns: 1fr;
  }

  .appointment-option-featured {
    grid-column: auto;
  }

  .appointment-option {
    grid-template-columns: 46px minmax(0, 1fr) auto;
    gap: 14px;
    min-height: 96px;
    padding: 16px;
  }

  .appointment-icon {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .appointment-icon svg {
    width: 23px;
    height: 23px;
  }
}

@media (hover: hover) {
  .button:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 32px rgba(6, 71, 47, 0.18);
  }

  .service-grid article:hover,
  .team-member:hover,
  .space-grid figure:hover {
    transform: translateY(-6px);
    border-color: rgba(148, 189, 103, 0.78);
    box-shadow: var(--shadow-hover);
  }

  .service-grid article:hover::after,
  .team-member:hover::after,
  .space-grid figure:hover::after {
    opacity: 1;
  }

  .service-grid article:hover .service-icon {
    color: #ffffff;
    background: var(--color-accent-dark);
    transform: rotate(-4deg) scale(1.06);
  }

  .space-grid figure:hover img {
    transform: scale(1.035);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .main-nav {
    justify-content: flex-start;
  }

  .hero {
    min-height: 72vh;
    background:
      linear-gradient(90deg, rgba(4, 47, 33, 0.92), rgba(4, 47, 33, 0.55)),
      url("../images/Untitled0.png") center / cover;
  }

  .split,
  .service-grid,
  .team-grid,
  .team-member.featured,
  .review-band,
  .review-grid,
  .space-grid {
    grid-template-columns: 1fr;
  }

  .service-grid article:first-child {
    grid-template-columns: 1fr;
  }

  .service-grid article:first-child p {
    grid-column: auto;
  }

  .service-grid article:first-child .service-icon {
    margin-bottom: 0;
  }

  .intro-copy {
    max-width: none;
  }

  .team-member.featured {
    align-items: start;
  }

  .team-member img {
    max-height: 420px;
  }

  .team-photo {
    height: 420px;
    min-height: 0;
  }

  .review-actions {
    justify-content: flex-start;
  }

  .review-grid blockquote {
    flex-basis: calc((100% - 16px) / 2);
  }

  .review-grid-studio blockquote {
    flex-basis: calc((100% - 16px) / 2);
  }
}

@media (max-width: 640px) {
  .site-header {
    min-height: auto;
  }

  .brand img {
    width: min(248px, 100%);
  }

  .main-nav {
    gap: 4px;
    font-size: 0.88rem;
  }

  .main-nav a {
    padding: 7px 9px;
  }

  .hero {
    min-height: 66vh;
    padding-top: 64px;
    padding-bottom: 64px;
  }

  .hero::after {
    display: none;
  }

  h1 {
    font-size: clamp(2.45rem, 14vw, 3.65rem);
  }

  h2 {
    font-size: clamp(1.8rem, 9vw, 2.35rem);
  }

  .hero-actions,
  .contact-actions,
  .review-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .button {
    width: 100%;
  }

  .section {
    padding-top: 58px;
    padding-bottom: 58px;
  }

  .section-heading {
    margin-bottom: 26px;
  }

  .intro-copy,
  .service-grid article,
  .team-member {
    padding: 22px;
  }

  .service-grid,
  .space-grid,
  .team-grid {
    gap: 16px;
  }

  .service-grid article {
    min-height: auto;
  }

  .review-grid blockquote {
    flex-basis: 88%;
    min-height: auto;
  }

  .review-carousel {
    padding-right: 14px;
    padding-left: 14px;
  }

  .review-carousel-static {
    padding-right: 0;
    padding-left: 0;
  }

  .review-grid-studio {
    flex-direction: column;
  }

  .review-grid-studio blockquote {
    flex-basis: auto;
    width: 100%;
  }

  .review-arrow {
    width: 34px;
    height: 34px;
  }

  .review-arrow-prev {
    left: -3px;
  }

  .review-arrow-next {
    right: -3px;
  }

  .team-member img {
    min-height: 260px;
  }

  .team-photo {
    height: 340px;
  }

  .contact-card strong,
  .contact-card a {
    padding-right: 20px;
    padding-left: 20px;
  }

  .floating-whatsapp {
    right: 16px;
    bottom: 16px;
    width: 54px;
    height: 54px;
  }
}
