:root {
  --bg: #fbf7f0;
  --surface: #ffffff;
  --ink: #221b16;
  --muted: #766d63;
  --gold: #b78a3c;
  --gold-soft: #ead8b3;
  --blue: #1c3b55;
  --blue-soft: #eaf1f5;
  --shadow: 0 24px 70px rgba(45, 34, 23, 0.14);
  --radius-lg: 32px;
  --radius-md: 22px;
  --radius-sm: 14px;
  --max-width: 1160px;
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  min-height: 100vh;
  font-family: Georgia, 'Times New Roman', serif;
  color: var(--ink);
  background: radial-gradient(circle at top left, rgba(234, 216, 179, 0.65), transparent 32rem), var(--bg);
  line-height: 1.6;
  overflow-x: hidden;
}

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

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.container {
  width: min(100% - 32px, var(--max-width));
  margin: 0 auto;
}

.section-pad {
  padding: 96px 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid rgba(183, 138, 60, 0.18);
}

.navbar {
  width: min(100% - 32px, var(--max-width));
  min-height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.brand-mark {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #122537);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  box-shadow: 0 12px 26px rgba(28, 59, 85, 0.25);
  font-size: 0.98rem;
}

.brand-text {
  font-size: 1.05rem;
}

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

.nav-links a {
  padding: 10px 14px;
  color: var(--muted);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.94rem;
  transition: color 0.25s ease, background 0.25s ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--blue);
  background: rgba(183, 138, 60, 0.12);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid rgba(183, 138, 60, 0.3);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.7);
  cursor: pointer;
}

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

.menu-toggle.active span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.hero {
  position: relative;
  min-height: calc(100vh - 78px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 84% 18%, rgba(28, 59, 85, 0.16), transparent 24rem),
    radial-gradient(circle at 12% 72%, rgba(183, 138, 60, 0.18), transparent 26rem);
  pointer-events: none;
}

.hero-bg::before,
.hero-bg::after {
  content: '';
  position: absolute;
  border: 1px solid rgba(183, 138, 60, 0.18);
  border-radius: 50%;
}

.hero-bg::before {
  width: 520px;
  height: 520px;
  right: -160px;
  top: 80px;
}

.hero-bg::after {
  width: 300px;
  height: 300px;
  left: -90px;
  bottom: 80px;
}

.hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(300px, 0.95fr);
  align-items: center;
  gap: 56px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 16px;
  color: var(--gold);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
}

.hero h1 {
  max-width: 780px;
  font-size: clamp(3.4rem, 8vw, 7.8rem);
  line-height: 0.88;
  letter-spacing: -0.06em;
}

.hero h2 {
  max-width: 710px;
  margin-top: 24px;
  color: var(--blue);
  font-family: Arial, Helvetica, sans-serif;
  font-size: clamp(1.3rem, 2.6vw, 2.3rem);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  max-width: 610px;
  margin-top: 20px;
  color: var(--muted);
  font-size: clamp(1.05rem, 2vw, 1.28rem);
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 22px;
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.95rem;
  font-weight: 700;
  text-align: center;
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

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

.btn-primary {
  color: #fff;
  background: linear-gradient(145deg, var(--blue), #102436);
  box-shadow: 0 16px 34px rgba(28, 59, 85, 0.25);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  box-shadow: 0 20px 44px rgba(28, 59, 85, 0.34);
}

.btn-ghost {
  color: var(--blue);
  background: rgba(255, 255, 255, 0.68);
  border-color: rgba(183, 138, 60, 0.35);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  background: #fff;
  box-shadow: 0 12px 26px rgba(45, 34, 23, 0.1);
}

.quick-info {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 180px));
  gap: 16px;
  margin-top: 38px;
}

.quick-info div,
.caption-card,
.intro-box,
.service-card,
.schedule-card,
.contact-card {
  background: rgba(255, 255, 255, 0.78);
  border: 1px solid rgba(183, 138, 60, 0.18);
  box-shadow: 0 18px 44px rgba(45, 34, 23, 0.08);
  backdrop-filter: blur(14px);
}

.quick-info div {
  padding: 18px;
  border-radius: var(--radius-sm);
}

.quick-info span,
.contact-row span,
.caption-card span {
  display: block;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.82rem;
}

.quick-info strong,
.contact-row strong,
.caption-card strong {
  display: block;
  margin-top: 4px;
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
}

.hero-card {
  position: relative;
  padding: 18px;
  border-radius: 38px;
  background: linear-gradient(145deg, rgba(255,255,255,0.88), rgba(234,216,179,0.32));
  border: 1px solid rgba(183, 138, 60, 0.22);
  box-shadow: var(--shadow);
}

.hero-card::before {
  content: '';
  position: absolute;
  inset: 28px -16px -16px 38px;
  z-index: -1;
  border-radius: 40px;
  background: rgba(28, 59, 85, 0.12);
}

.image-frame {
  overflow: hidden;
  border-radius: 28px;
  background: var(--blue-soft);
  border: 1px solid rgba(28, 59, 85, 0.12);
}

.image-frame img,
.gallery-item img,
.modal img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.caption-card {
  position: absolute;
  right: 34px;
  bottom: 34px;
  max-width: min(78%, 330px);
  padding: 16px 18px;
  border-radius: 18px;
}

.split-grid,
.contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 42px;
  align-items: start;
}

.section-heading h2,
.center-heading h2,
.schedule-card h2,
.contact-copy h2 {
  font-size: clamp(2.2rem, 5vw, 4.6rem);
  line-height: 0.95;
  letter-spacing: -0.05em;
}

.intro-box {
  padding: clamp(26px, 5vw, 48px);
  border-radius: var(--radius-lg);
  font-size: clamp(1.08rem, 2vw, 1.28rem);
}

.intro-box p + p {
  margin-top: 18px;
}

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

.center-heading .eyebrow {
  justify-content: center;
}

.center-heading .eyebrow::after {
  content: '';
  width: 34px;
  height: 1px;
  background: currentColor;
}

.center-heading p:not(.eyebrow) {
  margin-top: 16px;
  color: var(--muted);
  font-family: Arial, Helvetica, sans-serif;
}

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

.service-card {
  position: relative;
  min-height: 220px;
  padding: 30px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}

.service-card::after {
  content: '';
  position: absolute;
  width: 160px;
  height: 160px;
  right: -70px;
  bottom: -70px;
  border-radius: 50%;
  background: rgba(183, 138, 60, 0.14);
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 28px 70px rgba(45, 34, 23, 0.14);
}

.service-icon {
  width: 70px;
  height: 70px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  color: #fff;
  background: linear-gradient(145deg, var(--gold), #8d6728);
  border-radius: 22px;
  font-size: 1.55rem;
  box-shadow: 0 16px 30px rgba(183, 138, 60, 0.24);
}

.service-card h3 {
  position: relative;
  z-index: 1;
  font-size: clamp(1.35rem, 2.4vw, 2rem);
  line-height: 1.08;
}

.schedule {
  padding-top: 36px;
}

.schedule-card {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  padding: clamp(28px, 5vw, 54px);
  border-radius: var(--radius-lg);
  background:
    linear-gradient(135deg, rgba(255,255,255,0.9), rgba(234,216,179,0.3)),
    radial-gradient(circle at right, rgba(28, 59, 85, 0.12), transparent 24rem);
}

.schedule-card p:not(.eyebrow) {
  margin-top: 12px;
  color: var(--muted);
  font-size: 1.12rem;
}

.schedule-card .muted {
  margin-top: 4px;
}

.gallery-wrap {
  max-width: 720px;
  margin: 0 auto;
  padding: 16px;
  border-radius: 36px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(183, 138, 60, 0.2);
  box-shadow: var(--shadow);
}

.gallery-item {
  width: 100%;
  padding: 0;
  border: 0;
  border-radius: 26px;
  overflow: hidden;
  background: var(--blue-soft);
  cursor: zoom-in;
}

.contact {
  background:
    linear-gradient(180deg, transparent, rgba(28, 59, 85, 0.06)),
    radial-gradient(circle at 14% 10%, rgba(183, 138, 60, 0.12), transparent 24rem);
}

.contact-copy p:not(.eyebrow) {
  max-width: 460px;
  margin-top: 22px;
  color: var(--muted);
  font-size: 1.12rem;
}

.contact-card {
  padding: clamp(24px, 4vw, 42px);
  border-radius: var(--radius-lg);
}

.contact-row {
  display: grid;
  grid-template-columns: 118px 1fr;
  gap: 18px;
  padding: 18px 0;
  border-bottom: 1px solid rgba(183, 138, 60, 0.18);
}

.contact-row:first-child {
  padding-top: 0;
}

.full {
  width: 100%;
}

.site-footer {
  padding: 28px 0;
  color: rgba(255,255,255,0.86);
  background: #122537;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 0.92rem;
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.floating-whatsapp {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 45;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 14px 20px;
  color: #fff;
  background: linear-gradient(145deg, #1d8051, #12683f);
  border-radius: 999px;
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 800;
  box-shadow: 0 16px 34px rgba(18, 104, 63, 0.28);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: 26px;
  background: rgba(18, 37, 55, 0.86);
}

.modal.open {
  display: flex;
}

.modal img {
  max-width: min(92vw, 900px);
  max-height: 84vh;
  border-radius: 18px;
  background: #fff;
  box-shadow: 0 26px 80px rgba(0,0,0,0.36);
}

.modal-close {
  position: fixed;
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  color: var(--ink);
  background: #fff;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

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

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

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

.delay-2 {
  transition-delay: 0.22s;
}

@media (max-width: 940px) {
  .section-pad {
    padding: 72px 0;
  }

  .hero {
    min-height: auto;
  }

  .hero-grid,
  .split-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 40px;
  }

  .hero h1 {
    font-size: clamp(3rem, 13vw, 6rem);
  }

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

  .schedule-card,
  .footer-grid {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 760px) {
  .navbar {
    min-height: 70px;
  }

  .brand-text {
    font-size: 0.96rem;
  }

  .menu-toggle {
    display: block;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    background: rgba(255,255,255,0.95);
    border: 1px solid rgba(183, 138, 60, 0.22);
    border-radius: 22px;
    box-shadow: 0 18px 44px rgba(45, 34, 23, 0.12);
  }

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

  .nav-links a {
    padding: 13px 14px;
  }

  .hero-actions,
  .contact-actions,
  .quick-info {
    grid-template-columns: 1fr;
    flex-direction: column;
  }

  .btn,
  .hero-actions .btn,
  .schedule-card .btn {
    width: 100%;
  }

  .hero-card {
    padding: 12px;
    border-radius: 28px;
  }

  .caption-card {
    position: static;
    max-width: none;
    margin-top: 12px;
  }

  .image-frame,
  .gallery-item {
    border-radius: 22px;
  }

  .contact-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .floating-whatsapp {
    right: 14px;
    left: 14px;
    bottom: 14px;
  }

  .site-footer {
    padding-bottom: 86px;
  }
}

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

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

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