/* ── Reset & Base ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  font-weight: 400;
  line-height: 1.6;
  color: #1a1a2e;
  background: #faf8f5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font: inherit; cursor: pointer; border: none; background: none; }

/* ── Custom Properties ── */
:root {
  --plum: #4A1942;
  --plum-deep: #2D0F28;
  --plum-light: #6B2D5C;
  --plum-muted: #F3E8F5;
  --amber: #D4A843;
  --amber-light: #F0D68A;
  --amber-dark: #B8892A;
  --cream: #FAF8F5;
  --cream-dark: #F0EBE3;
  --text: #1a1a2e;
  --text-light: #555570;
  --white: #ffffff;
  --radius: 12px;
  --shadow: 0 4px 24px rgba(74,25,66,0.08);
  --shadow-lg: 0 12px 48px rgba(74,25,66,0.12);
  --font-serif: 'Playfair Display', Georgia, serif;
  --font-sans: 'Inter', system-ui, sans-serif;
  --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

/* ── Typography ── */
h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 700; line-height: 1.15; }
.text-accent { color: var(--plum); }
.text-plum { color: var(--plum); }
.text-amber { color: var(--amber-dark); }

/* ── Utility ── */
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--amber-dark);
  margin-bottom: 16px;
}
.section__eyebrow--light { color: var(--amber-light); }
.section__eyebrow--dark { color: var(--plum); }
.section__title {
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--text);
  margin-bottom: 24px;
}
.section__title--light { color: var(--white); }
.section__title--dark { color: var(--plum-deep); }

/* ── Buttons ── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 14px 32px;
  border-radius: 50px;
  font-family: var(--font-sans);
  font-weight: 500;
  font-size: 0.95rem;
  transition: all var(--transition);
  white-space: nowrap;
}
.btn--primary {
  background: var(--amber);
  color: var(--plum-deep);
  border: 2px solid var(--amber);
}
.btn--primary:hover {
  background: var(--amber-dark);
  border-color: var(--amber-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(212,168,67,0.35);
}
.btn--ghost {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,0.5);
}
.btn--ghost:hover {
  border-color: var(--white);
  background: rgba(255,255,255,0.1);
  transform: translateY(-2px);
}
.btn--large { padding: 18px 44px; font-size: 1rem; }

/* ── Navigation ── */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 20px 0;
  transition: all var(--transition);
}
.nav.scrolled {
  background: rgba(250,248,245,0.95);
  backdrop-filter: blur(12px);
  padding: 14px 0;
  box-shadow: 0 2px 20px rgba(74,25,66,0.08);
}
.nav__inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  transition: color var(--transition);
}
.nav.scrolled .nav__brand { color: var(--plum-deep); }
.nav__brand-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--plum-deep);
  font-size: 1.1rem;
  font-weight: 900;
}
.nav__menu {
  display: flex;
  align-items: center;
  gap: 8px;
}
.nav__link {
  padding: 8px 16px;
  border-radius: 8px;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(255,255,255,0.85);
  transition: all var(--transition);
}
.nav__link:hover { color: var(--white); background: rgba(255,255,255,0.1); }
.nav.scrolled .nav__link { color: var(--text-light); }
.nav.scrolled .nav__link:hover { color: var(--plum); background: var(--plum-muted); }
.nav__link--cta {
  margin-left: 8px;
  background: var(--amber);
  color: var(--plum-deep) !important;
  font-weight: 600;
}
.nav__link--cta:hover { background: var(--amber-dark); }

/* Mobile toggle */
.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  width: 28px;
  padding: 4px 0;
}
.nav__toggle-line {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.nav.scrolled .nav__toggle-line { background: var(--plum-deep); }
.nav__toggle.active .nav__toggle-line:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav__toggle.active .nav__toggle-line:nth-child(2) { opacity: 0; }
.nav__toggle.active .nav__toggle-line:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ── Hero ── */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero__gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    135deg,
    rgba(45,15,40,0.92) 0%,
    rgba(74,25,66,0.85) 40%,
    rgba(107,45,92,0.75) 70%,
    rgba(212,168,67,0.4) 100%
  );
}
.hero__overlay {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 80%, rgba(212,168,67,0.15) 0%, transparent 60%);
}
.hero__content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 800px;
  padding: 120px 24px 80px;
}
.hero__eyebrow {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 24px;
}
.hero__title {
  font-size: clamp(2.5rem, 7vw, 5rem);
  color: var(--white);
  margin-bottom: 24px;
  line-height: 1.05;
}
.hero__title-em {
  font-style: italic;
  color: var(--amber-light);
}
.hero__subtitle {
  font-size: clamp(1rem, 2vw, 1.2rem);
  color: rgba(255,255,255,0.8);
  max-width: 560px;
  margin: 0 auto 40px;
  line-height: 1.7;
}
.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.hero__scroll {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.5);
  font-size: 0.7rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  animation: float 2s ease-in-out infinite;
}
@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* ── Band (Section) ── */
.band { padding: 100px 0; }
.band--light { background: var(--cream); }
.band--plum {
  background: linear-gradient(135deg, var(--plum-deep) 0%, var(--plum) 60%, var(--plum-light) 100%);
  color: var(--white);
}
.band--amber {
  background: linear-gradient(135deg, var(--amber) 0%, var(--amber-dark) 100%);
}

/* ── Services Grid ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
}
.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 36px 28px;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid transparent;
}
.service-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
  border-color: var(--plum-muted);
}
.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 12px;
  background: var(--plum-muted);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--plum);
  margin-bottom: 20px;
  transition: all var(--transition);
}
.service-card:hover .service-card__icon {
  background: var(--plum);
  color: var(--amber-light);
}
.service-card__title {
  font-size: 1.2rem;
  color: var(--text);
  margin-bottom: 12px;
}
.service-card__desc {
  font-size: 0.9rem;
  color: var(--text-light);
  line-height: 1.7;
}

/* ── About ── */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}
.about__media { position: relative; }
.about__img-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 4/5;
}
.about__badge {
  position: absolute;
  bottom: -24px;
  right: -24px;
  background: var(--amber);
  color: var(--plum-deep);
  padding: 24px 28px;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
  text-align: center;
}
.about__badge-number {
  display: block;
  font-family: var(--font-serif);
  font-size: 2.5rem;
  font-weight: 900;
  line-height: 1;
}
.about__badge-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 500;
  margin-top: 4px;
}
.about__content { color: var(--white); }
.about__text {
  font-size: 1.05rem;
  line-height: 1.8;
  color: rgba(255,255,255,0.8);
  margin-bottom: 20px;
}
.about__stats {
  display: flex;
  gap: 40px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.15);
}
.stat__number {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--amber-light);
}
.stat__label {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  margin-top: 4px;
}

/* ── Schedule ── */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: start;
}
.schedule__info { color: var(--plum-deep); }
.schedule__address,
.schedule__phone,
.schedule__email {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 16px;
  color: var(--text);
}
.schedule__address svg,
.schedule__phone svg,
.schedule__email svg {
  flex-shrink: 0;
  margin-top: 4px;
  color: var(--amber-dark);
}
.schedule__phone a,
.schedule__email a {
  color: var(--plum);
  font-weight: 500;
  transition: color var(--transition);
}
.schedule__phone a:hover,
.schedule__email a:hover { color: var(--amber-dark); }
.schedule__table-wrap {
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}
.schedule__table {
  width: 100%;
  border-collapse: collapse;
}
.schedule__table th {
  background: var(--plum);
  color: var(--amber-light);
  padding: 16px 24px;
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  text-align: left;
}
.schedule__table td {
  padding: 14px 24px;
  font-size: 0.95rem;
  border-bottom: 1px solid var(--cream-dark);
  color: var(--text);
}
.schedule__table tr:last-child td { border-bottom: none; }
.schedule__table tr:hover td { background: var(--plum-muted); }
.schedule__closed td { color: var(--amber-dark); font-weight: 600; }

/* ── CTA Section ── */
.cta-section {
  position: relative;
  padding: 100px 0;
  overflow: hidden;
}
.cta-section__bg {
  position: absolute;
  inset: 0;
}
.cta-section__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.cta-section__overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(45,15,40,0.93) 0%, rgba(74,25,66,0.88) 100%);
}
.cta-section__content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  margin: 0 auto;
  text-align: center;
}
.cta-section__text {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.8);
  line-height: 1.7;
  margin-bottom: 40px;
}

/* ── Contact Form ── */
.contact-form { text-align: left; }
.contact-form__row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.form-group { margin-bottom: 20px; }
.form-label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--amber-light);
  margin-bottom: 8px;
}
.form-input,
.form-textarea {
  width: 100%;
  padding: 14px 18px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: rgba(255,255,255,0.08);
  color: var(--white);
  font-family: var(--font-sans);
  font-size: 0.95rem;
  transition: all var(--transition);
  outline: none;
}
.form-input::placeholder,
.form-textarea::placeholder { color: rgba(255,255,255,0.4); }
.form-input:focus,
.form-textarea:focus {
  border-color: var(--amber);
  background: rgba(255,255,255,0.12);
  box-shadow: 0 0 0 3px rgba(212,168,67,0.2);
}
.form-textarea { resize: vertical; min-height: 120px; }
.form-success {
  display: none;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-top: 16px;
  padding: 14px 20px;
  border-radius: 8px;
  background: rgba(76,175,80,0.15);
  border: 1px solid rgba(76,175,80,0.3);
  color: #81C784;
  font-size: 0.9rem;
}
.form-success.visible { display: flex; }

/* ── Footer ── */
.footer {
  background: var(--plum-deep);
  color: rgba(255,255,255,0.7);
  padding: 64px 0 32px;
}
.footer__grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}
.footer__logo {
  display: flex;
  align-items: center;
  gap: 10px;
  font-family: var(--font-serif);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 16px;
}
.footer__logo-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: var(--amber);
  color: var(--plum-deep);
  font-size: 1.1rem;
  font-weight: 900;
}
.footer__tagline { font-size: 0.9rem; line-height: 1.7; max-width: 280px; }
.footer__heading {
  font-family: var(--font-serif);
  font-size: 1rem;
  font-weight: 700;
  color: var(--amber-light);
  margin-bottom: 16px;
}
.footer__info p,
.footer__links li {
  font-size: 0.9rem;
  line-height: 2;
}
.footer__links a {
  transition: color var(--transition);
}
.footer__links a:hover { color: var(--amber-light); }
.footer__bottom {
  padding-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.8rem;
  color: rgba(255,255,255,0.4);
  text-align: center;
}

/* ── Scroll Animations ── */
.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ── Responsive ── */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-grid { gap: 40px; }
}

@media (max-width: 768px) {
  .nav__toggle { display: flex; }
  .nav__menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 280px;
    height: 100vh;
    background: var(--plum-deep);
    flex-direction: column;
    align-items: flex-start;
    padding: 80px 32px 32px;
    gap: 4px;
    transition: right var(--transition);
    box-shadow: -8px 0 32px rgba(0,0,0,0.3);
  }
  .nav__menu.open { right: 0; }
  .nav__link { color: rgba(255,255,255,0.8) !important; width: 100%; padding: 12px 16px; }
  .nav__link:hover { background: rgba(255,255,255,0.08); color: var(--white) !important; }
  .nav__link--cta { margin-left: 0; margin-top: 12px; text-align: center; }
  .nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(0,0,0,0.5);
    z-index: 999;
  }
  .nav__overlay.visible { display: block; }

  .hero__content { padding: 100px 20px 60px; }
  .hero__actions { flex-direction: column; align-items: center; }
  .btn { width: 100%; max-width: 280px; justify-content: center; }

  .band { padding: 72px 0; }
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 24px; }

  .about-grid { grid-template-columns: 1fr; gap: 32px; }
  .about__badge { bottom: -16px; right: 16px; padding: 16px 20px; }
  .about__badge-number { font-size: 2rem; }
  .about__stats { gap: 24px; flex-wrap: wrap; }

  .schedule-grid { grid-template-columns: 1fr; gap: 32px; }
  .schedule__table-wrap { margin-top: 24px; }

  .cta-section { padding: 72px 0; }
  .contact-form__row { grid-template-columns: 1fr; }

  .footer__grid { grid-template-columns: 1fr; gap: 32px; }
}

@media (max-width: 480px) {
  html { font-size: 15px; }
  .container { padding: 0 16px; }
  .hero__title { font-size: 2.2rem; }
  .section__title { font-size: 1.75rem; }
}
