:root {
  --bg: #f7f8fb;
  --bg-soft: #edf0f5;
  --surface: rgba(255, 255, 255, 0.82);
  --surface-strong: #ffffff;
  --text: #1d2430;
  --muted: #667085;
  --accent: #cfd4dc;
  --accent-dark: #8e98a8;
  --accent-soft: rgba(207, 212, 220, 0.35);
  --line: rgba(29, 36, 48, 0.1);
  --shadow: 0 24px 60px rgba(88, 99, 120, 0.14);
  --radius-lg: 28px;
  --radius-md: 20px;
  --radius-sm: 14px;
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--text);
  background:
    radial-gradient(circle at 12% 10%, rgba(255, 255, 255, 0.95), transparent 22%),
    radial-gradient(circle at 82% 14%, rgba(211, 217, 227, 0.45), transparent 18%),
    linear-gradient(180deg, #fcfdff 0%, #f6f8fb 50%, #eef2f7 100%);
}

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

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

.container {
  width: min(calc(100% - 2rem), var(--container));
  margin: 0 auto;
}

.section {
  padding: 5.5rem 0;
}

.page-shell {
  overflow: hidden;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(16px);
  background: rgba(247, 248, 251, 0.84);
  border-bottom: 1px solid rgba(29, 36, 48, 0.06);
}

.nav {
  min-height: 84px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand-mark {
  width: 56px;
  height: 56px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  padding: 0.45rem;
  background: linear-gradient(180deg, #222833, #3a4454);
  border: 1px solid rgba(255, 255, 255, 0.18);
  box-shadow: var(--shadow);
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  filter: drop-shadow(0 4px 12px rgba(255, 255, 255, 0.18));
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.05;
}

.brand-text strong {
  font-size: 0.98rem;
}

.brand-text span {
  font-size: 0.86rem;
  color: var(--muted);
}

.nav-menu {
  display: flex;
  align-items: center;
  gap: 1.4rem;
}

.nav-menu a {
  color: var(--muted);
  font-weight: 600;
  transition: color 0.25s ease;
}

.nav-menu a:hover,
.nav-menu a:focus-visible {
  color: var(--text);
}

.nav-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.72);
  padding: 0;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 20px;
  height: 2px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  padding: 6rem 0 4.5rem;
}

.hero-backdrop {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.82), transparent 48%),
    radial-gradient(circle at 73% 24%, rgba(255, 255, 255, 0.95), transparent 18%),
    radial-gradient(circle at 22% 72%, rgba(207, 212, 220, 0.24), transparent 22%);
  pointer-events: none;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
}

.eyebrow {
  margin: 0 0 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #8d97a7;
}

.hero-emblem {
  width: 112px;
  height: 112px;
  margin-bottom: 1.5rem;
  padding: 1rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 30%, rgba(86, 96, 114, 0.95), rgba(31, 37, 47, 0.98)),
    linear-gradient(180deg, #1b2028, #2d3441);
  border: 1px solid rgba(255, 255, 255, 0.16);
  box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.06), var(--shadow);
}

.hero-emblem img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero h1,
.section-heading h2,
.times-copy h2,
.contact-copy h2 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 0.98;
}

.hero h1 {
  font-size: clamp(2.9rem, 6vw, 5.4rem);
  max-width: 12ch;
}

.hero-text,
.intro-text p,
.times-copy p,
.contact-copy p,
.info-card p,
.service-card p,
.time-item p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1.02rem;
}

.hero-text {
  max-width: 60ch;
  margin: 1.35rem 0 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 1.35rem;
  border-radius: 999px;
  font-weight: 800;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.button-primary {
  color: #16202c;
  background: linear-gradient(135deg, #eef2f7 0%, #cfd5df 100%);
  box-shadow: 0 18px 36px rgba(152, 163, 181, 0.28);
}

.button-secondary {
  border: 1px solid rgba(29, 36, 48, 0.1);
  background: rgba(255, 255, 255, 0.78);
}

.hero-card,
.contact-card,
.service-card,
.info-card,
.time-item {
  border: 1px solid rgba(255, 255, 255, 0.72);
  background: var(--surface);
  backdrop-filter: blur(18px);
  box-shadow: var(--shadow);
}

.service-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
  position: relative;
  overflow: hidden;
}

.service-card::after {
  content: "";
  position: absolute;
  inset: auto -20% -35% auto;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(219, 224, 232, 0.55), transparent 70%);
}

.service-icon {
  width: 54px;
  height: 54px;
  margin-bottom: 1rem;
  padding: 0.55rem;
  display: grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(180deg, #2b3240, #404a5c);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.service-icon img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.service-label {
  margin: 0;
  color: #8d97a7;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.76rem;
}

.service-card h2 {
  margin: 0.75rem 0 1rem;
  font-size: clamp(1.8rem, 3.3vw, 2.4rem);
  line-height: 1.1;
}

.service-list {
  margin: 1.4rem 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.8rem;
}

.service-list li {
  position: relative;
  padding-left: 1.4rem;
  color: var(--text);
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 8px;
  height: 8px;
  border-radius: 999px;
  background: linear-gradient(180deg, #bcc3cf, #8e98a8);
}

.intro-grid,
.times-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.section-heading h2,
.times-copy h2,
.contact-copy h2 {
  font-size: clamp(2rem, 4vw, 3.35rem);
  max-width: 14ch;
}

.centered {
  text-align: center;
}

.centered h2 {
  max-width: none;
}

.card-grid {
  margin-top: 2.5rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
}

.info-card {
  padding: 1.7rem;
  border-radius: var(--radius-md);
}

.card-number {
  display: inline-flex;
  margin-bottom: 1rem;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #8d97a7;
}

.info-card h3 {
  margin: 0 0 0.8rem;
  font-size: 1.35rem;
}

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

.time-item {
  padding: 1.4rem 1.5rem;
  border-radius: var(--radius-md);
}

.time-item span {
  display: block;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #8d97a7;
}

.time-item strong {
  display: block;
  margin-top: 0.35rem;
  font-size: 1.45rem;
}

.quote-band {
  padding: 4.5rem 0;
}

.quote-band .container {
  padding: 2.5rem;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.92), rgba(239, 242, 247, 0.95)),
    linear-gradient(135deg, #f6f8fb 0%, #edf1f6 100%);
  border: 1px solid rgba(29, 36, 48, 0.08);
  box-shadow: var(--shadow);
}

.quote-band p {
  margin: 0;
  color: #27313f;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.6rem, 3vw, 2.6rem);
  line-height: 1.3;
}

.quote-band span {
  display: inline-block;
  margin-top: 1rem;
  color: #7d8796;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.78rem;
  font-weight: 700;
}

.contact-card {
  padding: 2rem;
  border-radius: var(--radius-lg);
}

.contact-row + .contact-row {
  margin-top: 1.35rem;
  padding-top: 1.35rem;
  border-top: 1px solid var(--line);
}

.contact-row span {
  display: block;
  color: var(--muted);
  font-size: 0.84rem;
  margin-bottom: 0.35rem;
}

.contact-row strong {
  font-size: 1.06rem;
}

.site-footer {
  padding: 1.5rem 0 2rem;
}

.social-floats {
  position: fixed;
  right: 1.25rem;
  bottom: 1.25rem;
  z-index: 60;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.social-float {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  color: var(--text);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(29, 36, 48, 0.08);
  box-shadow: 0 18px 40px rgba(91, 104, 128, 0.16);
  backdrop-filter: blur(14px);
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.social-float:hover,
.social-float:focus-visible {
  transform: translateY(-3px);
  background: rgba(255, 255, 255, 0.96);
  box-shadow: 0 22px 48px rgba(91, 104, 128, 0.2);
}

.social-float-icon {
  width: 36px;
  height: 36px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(180deg, #f4f6fa, #e4e9f0);
  border: 1px solid rgba(29, 36, 48, 0.08);
}

.social-float-icon svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.whatsapp-float .social-float-icon {
  color: #1f9d57;
}

.instagram-float .social-float-icon {
  color: #7a4cff;
}

.footer-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  color: var(--muted);
  border-top: 1px solid rgba(29, 36, 48, 0.08);
  padding-top: 1.5rem;
}

.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal-delay {
  transition-delay: 0.12s;
}

.reveal-delay-2 {
  transition-delay: 0.24s;
}

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

@media (max-width: 920px) {
  .hero-grid,
  .intro-grid,
  .times-grid,
  .contact-grid,
  .card-grid {
    grid-template-columns: 1fr;
  }

  .hero {
    padding-top: 4.5rem;
  }

  .section {
    padding: 4rem 0;
  }

  .nav-toggle {
    display: inline-block;
    position: relative;
    z-index: 3;
  }

  .nav-menu {
    position: absolute;
    top: calc(100% + 0.75rem);
    left: 1rem;
    right: 1rem;
    display: grid;
    gap: 0.75rem;
    padding: 1rem;
    border: 1px solid rgba(29, 36, 48, 0.08);
    border-radius: 20px;
    background: rgba(255, 255, 255, 0.98);
    box-shadow: var(--shadow);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px);
    transition: opacity 0.25s ease, transform 0.25s ease;
  }

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

  .nav-menu a {
    padding: 0.4rem 0;
  }
}

@media (max-width: 640px) {
  .container {
    width: min(calc(100% - 1.25rem), var(--container));
  }

  .site-header {
    position: sticky;
  }

  .nav {
    min-height: 74px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
    border-radius: 14px;
  }

  .hero h1 {
    max-width: none;
  }

  .section-heading h2,
  .times-copy h2,
  .contact-copy h2 {
    max-width: none;
  }

  .service-card,
  .contact-card,
  .info-card,
  .quote-band .container,
  .time-item {
    padding: 1.35rem;
  }

  .footer-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .social-floats {
    right: 0.85rem;
    bottom: 0.85rem;
  }

  .social-float {
    min-height: 48px;
    width: 48px;
    height: 48px;
  }

  .social-float-icon {
    width: 32px;
    height: 32px;
  }
}

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

  *,
  *::before,
  *::after {
    animation: none !important;
    transition: none !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }
}
