:root {
  --ink: #15211f;
  --muted: #61706d;
  --paper: #fbfbf4;
  --mist: #eef5f1;
  --teal: #0f5f55;
  --teal-2: #197868;
  --rose: #8c4b5c;
  --gold: #c89242;
  --clay: #b96c45;
  --line: rgba(21, 33, 31, 0.12);
  --shadow: 0 22px 65px rgba(21, 33, 31, 0.14);
  --radius: 8px;
  --header-height: 76px;
  font-family: "Cairo", Tahoma, Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Cairo", Tahoma, Arial, sans-serif;
  line-height: 1.8;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: var(--header-height);
  padding: 12px clamp(18px, 5%, 72px);
  color: #fff;
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.scrolled,
.site-header.nav-open {
  color: var(--ink);
  background: rgba(251, 251, 244, 0.96);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 12px 30px rgba(21, 33, 31, 0.08);
  backdrop-filter: blur(14px);
}

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

.brand-mark {
  display: grid;
  place-items: center;
  width: 46px;
  height: 46px;
  flex: 0 0 46px;
  border: 1px solid rgba(255, 255, 255, 0.4);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.14);
  color: #fff;
  font-weight: 800;
}

.site-header.scrolled .brand-mark,
.site-header.nav-open .brand-mark {
  color: #fff;
  border-color: transparent;
  background: var(--teal);
}

.brand strong,
.brand small {
  display: block;
  white-space: nowrap;
}

.brand strong {
  font-size: 1rem;
  line-height: 1.3;
}

.brand small {
  color: rgba(255, 255, 255, 0.74);
  font-size: 0.78rem;
}

.site-header.scrolled .brand small,
.site-header.nav-open .brand small {
  color: var(--muted);
}

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

.site-nav a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  min-height: 42px;
  padding: 8px 13px;
  border-radius: 999px;
  color: inherit;
  font-weight: 700;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(255, 255, 255, 0.16);
  outline: none;
}

.site-header.scrolled .site-nav a:hover,
.site-header.scrolled .site-nav a:focus-visible,
.site-header.nav-open .site-nav a:hover,
.site-header.nav-open .site-nav a:focus-visible {
  background: rgba(15, 95, 85, 0.09);
}

.site-nav .nav-cta {
  color: #fff;
  background: var(--teal-2);
}

.site-nav .nav-cta:hover,
.site-nav .nav-cta:focus-visible {
  background: var(--teal);
}

.nav-toggle {
  display: none;
  place-items: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 50%;
  color: inherit;
  background: rgba(255, 255, 255, 0.14);
  cursor: pointer;
}

.site-header.scrolled .nav-toggle,
.site-header.nav-open .nav-toggle {
  background: rgba(15, 95, 85, 0.1);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 88svh;
  overflow: hidden;
  color: #fff;
  background: #0d2725;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center right;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(13, 26, 25, 0.92), rgba(13, 26, 25, 0.72) 42%, rgba(13, 26, 25, 0.34) 74%),
    linear-gradient(180deg, rgba(13, 26, 25, 0.34), rgba(13, 26, 25, 0.66));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(760px, 100%);
  padding: calc(var(--header-height) + 44px) clamp(20px, 6%, 88px) 44px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 0.9rem;
  font-weight: 800;
}

.hero h1,
.section h2,
.intro-band h2 {
  margin: 0;
  line-height: 1.35;
}

.hero h1 {
  max-width: 11ch;
  font-size: 4rem;
  font-weight: 800;
}

.hero-copy {
  max-width: 650px;
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.18rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  margin-top: 30px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 12px 19px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
  outline: none;
}

.button-primary {
  color: #fff;
  background: var(--teal-2);
  box-shadow: 0 16px 38px rgba(15, 95, 85, 0.28);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--teal);
}

.button-soft {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(255, 255, 255, 0.11);
}

.button-outline {
  color: var(--teal);
  border-color: rgba(15, 95, 85, 0.24);
  background: #fff;
}

.full {
  width: 100%;
}

.hero-stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  max-width: 650px;
  margin: 36px 0 0;
}

.hero-stats div {
  min-width: 0;
  padding: 14px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
}

.hero-stats dt,
.hero-stats dd {
  margin: 0;
}

.hero-stats dt {
  font-weight: 800;
}

.hero-stats dd {
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.88rem;
}

.section,
.intro-band {
  padding: 78px clamp(18px, 5%, 72px);
}

.intro-band {
  padding-top: 44px;
  padding-bottom: 44px;
  background: var(--mist);
}

.section-inner {
  width: min(1160px, 100%);
  margin: 0 auto;
}

.intro-grid,
.booking-grid,
.contact-grid,
.faq-layout,
.program-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 40px;
  align-items: start;
}

.intro-grid h2,
.section h2 {
  font-size: 2.35rem;
}

.intro-grid p:last-child,
.section-heading p,
.muted {
  color: var(--muted);
}

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

.align-start {
  margin: 0;
  text-align: start;
}

.service-grid,
.quote-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.service-card,
.quote-grid figure,
.contact-form,
.timeline article {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  box-shadow: 0 14px 40px rgba(21, 33, 31, 0.07);
}

.service-card {
  display: flex;
  flex-direction: column;
  min-height: 276px;
  padding: 22px;
}

.card-icon {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  color: #fff;
  background: linear-gradient(135deg, var(--teal), var(--rose));
}

.service-card h3,
.timeline h3 {
  margin: 18px 0 8px;
  font-size: 1.2rem;
}

.service-card p,
.timeline p,
.faq-list p {
  margin: 0;
  color: var(--muted);
}

.service-card a {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  color: var(--teal);
  font-weight: 800;
}

.section-tint {
  background:
    radial-gradient(circle at 18% 20%, rgba(200, 146, 66, 0.12), transparent 28%),
    linear-gradient(135deg, #eef5f1, #f9f5ea 54%, #f5eef0);
}

.timeline {
  display: grid;
  gap: 14px;
}

.timeline article {
  position: relative;
  padding: 22px 24px 22px 94px;
  overflow: hidden;
}

.timeline span {
  position: absolute;
  top: 22px;
  left: 24px;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  color: #fff;
  background: var(--rose);
  font-weight: 800;
}

.booking-options {
  display: grid;
  gap: 12px;
}

.slot-card {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 4px 14px;
  align-items: center;
  width: 100%;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  color: var(--ink);
  background: #fff;
  text-align: start;
  cursor: pointer;
  transition: border-color 160ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.slot-card:hover,
.slot-card:focus-visible,
.slot-card.active {
  border-color: rgba(15, 95, 85, 0.42);
  box-shadow: 0 16px 34px rgba(21, 33, 31, 0.08);
  transform: translateY(-1px);
  outline: none;
}

.slot-card i {
  grid-row: span 2;
  color: var(--teal);
}

.slot-card strong,
.slot-card span {
  min-width: 0;
}

.slot-card span {
  color: var(--muted);
  font-size: 0.92rem;
}

.testimonials {
  background: #fff;
}

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

.quote-grid figure {
  margin: 0;
  padding: 24px;
}

.quote-grid blockquote {
  margin: 0;
  color: var(--ink);
  font-size: 1.05rem;
  font-weight: 700;
}

.quote-grid figcaption {
  margin-top: 18px;
  color: var(--rose);
  font-weight: 800;
}

.faq-list {
  display: grid;
  gap: 10px;
}

details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
}

summary {
  padding: 18px 20px;
  font-weight: 800;
  cursor: pointer;
}

details p {
  padding: 0 20px 18px;
}

.contact-section {
  background: #fff;
}

.contact-form {
  display: grid;
  gap: 14px;
  padding: 24px;
}

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

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 12px 14px;
  color: var(--ink);
  background: #fff;
  outline: none;
}

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

.contact-form textarea {
  resize: vertical;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(18px, 5%, 72px);
  color: #fff;
  background: var(--ink);
}

.site-footer p {
  margin: 0;
  font-weight: 800;
}

.site-footer div {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.floating-social {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 18;
  display: grid;
  gap: 10px;
}

.social-button {
  display: grid;
  place-items: center;
  grid-template-columns: 58px max-content;
  width: 58px;
  height: 58px;
  overflow: hidden;
  border-radius: 50%;
  color: #fff;
  background: var(--teal-2);
  box-shadow: 0 18px 36px rgba(21, 33, 31, 0.2);
  transition: width 180ms ease, border-radius 180ms ease, transform 160ms ease, box-shadow 160ms ease;
}

.social-button span {
  padding-inline: 0 18px;
  white-space: nowrap;
  font-size: 0.92rem;
  font-weight: 800;
}

.brand-icon {
  width: 26px;
  height: 26px;
  fill: currentColor;
}

.brand-icon-stroke {
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.social-button:hover,
.social-button:focus-visible {
  width: 142px;
  border-radius: 999px;
  transform: translateY(-2px);
  box-shadow: 0 22px 42px rgba(21, 33, 31, 0.26);
  outline: none;
}

.social-whatsapp {
  background: #1f9f64;
}

.social-instagram {
  background: linear-gradient(135deg, #6f3bd2, #d63d76 52%, #f2a044);
}

.social-tiktok {
  background: #111;
}

.lucide {
  width: 20px;
  height: 20px;
  stroke-width: 2.2;
}

@media (max-width: 980px) {
  .site-nav {
    position: fixed;
    inset: var(--header-height) 16px auto;
    display: none;
    grid-template-columns: 1fr;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--ink);
    background: rgba(251, 251, 244, 0.98);
    box-shadow: var(--shadow);
  }

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

  .site-nav a {
    border-radius: var(--radius);
  }

  .nav-toggle {
    display: grid;
  }

  .hero {
    min-height: 84svh;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .intro-grid,
  .booking-grid,
  .contact-grid,
  .faq-layout,
  .program-layout {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 720px) {
  .site-header {
    padding-inline: 14px;
  }

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

  .brand small {
    display: none;
  }

  .hero {
    min-height: 82svh;
  }

  .hero-image {
    object-position: center right;
  }

  .hero-overlay {
    background:
      linear-gradient(180deg, rgba(13, 26, 25, 0.82), rgba(13, 26, 25, 0.78)),
      linear-gradient(90deg, rgba(13, 26, 25, 0.5), rgba(13, 26, 25, 0.18));
  }

  .hero-content {
    padding: calc(var(--header-height) + 28px) 18px 34px;
  }

  .hero h1 {
    max-width: 9ch;
    font-size: 2.45rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-actions,
  .contact-actions {
    align-items: stretch;
  }

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

  .hero-stats {
    grid-template-columns: 1fr;
    margin-top: 24px;
  }

  .section,
  .intro-band {
    padding: 56px 18px;
  }

  .intro-grid h2,
  .section h2 {
    font-size: 1.9rem;
  }

  .service-grid,
  .quote-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    min-height: auto;
  }

  .timeline article {
    padding: 22px;
  }

  .timeline span {
    position: static;
    margin-bottom: 10px;
  }

  .site-footer {
    flex-direction: column;
  }

  .floating-social {
    right: 16px;
    bottom: 16px;
    display: flex;
    gap: 9px;
  }

  .social-button,
  .social-button:hover,
  .social-button:focus-visible {
    grid-template-columns: 1fr;
    width: 54px;
    height: 54px;
    border-radius: 50%;
  }

  .social-button span {
    position: absolute;
    width: 1px;
    height: 1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
  }
}
