:root {
  --bg: #fbf7ef;
  --surface: #fffaf2;
  --surface-strong: #f2e5d2;
  --text: #211b16;
  --muted: #6f6258;
  --black: #14110f;
  --gold: #b88a3d;
  --gold-soft: #e3c68f;
  --border: rgba(33, 27, 22, 0.12);
  --shadow: 0 18px 45px rgba(33, 27, 22, 0.12);
  --radius: 24px;
  --container: 1120px;
}

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

html {
  scroll-behavior: smooth;
  scrollbar-color: var(--gold) var(--surface-strong);
  scrollbar-width: thin;
}

::-webkit-scrollbar {
  width: 12px;
}

::-webkit-scrollbar-track {
  background: var(--surface-strong);
}

::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--gold-soft), var(--gold));
  border: 3px solid var(--surface-strong);
  border-radius: 999px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--black);
}

body {
  font-family: "Poppins", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.6;
}

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

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

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

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

.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: rgba(251, 247, 239, 0.92);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: -0.03em;
}

.logo__mark {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--black);
  color: var(--gold-soft);
  font-family: "Playfair Display", serif;
  font-size: 1.25rem;
}

.menu-btn {
  width: 44px;
  height: 44px;
  display: grid;
  place-content: center;
  gap: 5px;
  border: 1px solid var(--border);
  border-radius: 14px;
  background: var(--surface);
  cursor: pointer;
}

.menu-btn span {
  width: 20px;
  height: 2px;
  background: var(--text);
  border-radius: 99px;
}

.nav {
  position: absolute;
  top: 72px;
  left: 16px;
  right: 16px;
  display: none;
  flex-direction: column;
  gap: 4px;
  padding: 12px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 18px;
  box-shadow: var(--shadow);
}

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

.nav a {
  padding: 12px;
  border-radius: 12px;
  font-weight: 500;
}

.nav a:hover {
  background: var(--surface-strong);
}

.hero {
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 10% 20%, rgba(184, 138, 61, 0.16), transparent 28%),
    radial-gradient(circle at 90% 0%, rgba(20, 17, 15, 0.08), transparent 22%);
  pointer-events: none;
}

.hero__grid,
.about__grid,
.schedule__grid {
  position: relative;
  display: grid;
  gap: 36px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 12px;
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  width: 22px;
  height: 2px;
  background: currentColor;
}

h1,
h2,
h3 {
  font-family: "Playfair Display", serif;
  line-height: 1.08;
  letter-spacing: -0.04em;
}

h1 {
  max-width: 760px;
  font-size: clamp(2.6rem, 12vw, 3.8rem);
}

h2 {
  font-size: clamp(2rem, 8vw, 3.8rem);
}

h3 {
  font-size: 1.35rem;
}

p {
  color: var(--muted);
}

.hero__content > p,
.about__content p,
.schedule__grid > div > p {
  margin-top: 18px;
  font-size: 1.02rem;
}

.hero__actions {
  display: grid;
  gap: 12px;
  margin-top: 28px;
}

.btn {
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 700;
  text-align: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--black);
  color: #fff;
  box-shadow: 0 14px 32px rgba(20, 17, 15, 0.2);
}

.btn--ghost {
  border: 1px solid var(--border);
  background: rgba(255, 250, 242, 0.8);
}

.btn--light {
  background: #fff;
  color: var(--black);
}

.btn--full {
  width: 100%;
}

.hero__info {
  display: grid;
  grid-template-columns: 1fr;
  gap: 12px;
  margin-top: 30px;
}

.hero__info div {
  padding: 18px;
  border: 1px solid var(--border);
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.7);
}

.hero__info strong,
.hero__info span {
  display: block;
}

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

.hero__media,
.about__image {
  position: relative;
}

.hero__media img,
.about__image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.hero__card {
  position: absolute;
  left: 16px;
  right: 16px;
  bottom: 16px;
  padding: 16px;
  border-radius: 18px;
  background: rgba(255, 250, 242, 0.92);
  backdrop-filter: blur(14px);
  border: 1px solid var(--border);
}

.hero__card strong,
.hero__card span {
  display: block;
}

.hero__card span {
  color: var(--muted);
  font-size: 0.9rem;
}

.about {
  background: var(--surface);
}

.about__content p + p {
  margin-top: 14px;
}

.section-head {
  max-width: 760px;
  margin-bottom: 28px;
}

.section-head p {
  margin-top: 12px;
}

.services__grid,
.testimonials__grid {
  display: grid;
  gap: 18px;
}

.service-card {
  overflow: hidden;
  display: grid;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(33, 27, 22, 0.08);
}

.service-card img {
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

.service-card div {
  padding: 20px;
}

.service-card p {
  margin-top: 8px;
}

.banner {
  padding: 56px 0;
  background: var(--black);
  color: #fff;
}

.banner__inner {
  display: grid;
  gap: 18px;
}

.banner p {
  color: rgba(255, 255, 255, 0.72);
}

.gallery {
  background: var(--surface);
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.gallery__grid img {
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 18px;
}

.testimonials__grid article,
.contact-card {
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: 0 10px 28px rgba(33, 27, 22, 0.08);
}

.testimonials__grid strong {
  display: block;
  margin-top: 14px;
}

.contact-card {
  display: grid;
  gap: 16px;
}

.contact-card__item {
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border);
}

.contact-card__item span,
.contact-card__item strong {
  display: block;
}

.contact-card__item span {
  color: var(--gold);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.footer {
  padding: 40px 0;
  background: var(--black);
  color: #fff;
}

.footer p {
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.65);
}

.footer__inner,
.footer__links {
  display: grid;
  gap: 20px;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.72);
}

.logo--footer .logo__mark {
  background: #fff;
  color: var(--black);
}

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 30;
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #25d366;
  box-shadow: 0 14px 32px rgba(20, 17, 15, 0.24);
}

.whatsapp-float svg {
  width: 32px;
  height: 32px;
  fill: #fff;
}

@media (min-width: 560px) {
  .hero__actions,
  .hero__info {
    grid-template-columns: repeat(2, max-content);
  }

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

@media (min-width: 760px) {
  .menu-btn {
    display: none;
  }

  .nav {
    position: static;
    display: flex;
    flex-direction: row;
    align-items: center;
    width: auto;
    padding: 0;
    border: 0;
    box-shadow: none;
    background: transparent;
  }

  .nav a {
    padding: 8px 10px;
  }

  .hero__grid,
  .about__grid,
  .schedule__grid {
    grid-template-columns: 1.08fr 0.92fr;
    align-items: center;
  }

  .about__grid {
    grid-template-columns: 0.9fr 1.1fr;
  }

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

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

  .banner__inner,
  .footer__inner {
    grid-template-columns: 1fr auto;
    align-items: center;
  }

  .footer__links {
    grid-template-columns: repeat(4, auto);
  }
}

@media (min-width: 1040px) {
  .section-pad {
    padding: 56px 0;
  }

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

  .service-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
  }

  .service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow);
  }
}
