/* ─── Reset & Base ─── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --burgundy: #6B1D3A;
  --burgundy-deep: #4A1028;
  --burgundy-light: #8C2D4E;
  --blush: #F5E6E0;
  --blush-light: #FDF6F3;
  --blush-mid: #F0D5CC;
  --cream: #FFFAF8;
  --text-dark: #1A1A1A;
  --text-mid: #4A4A4A;
  --text-light: #7A7A7A;
  --white: #FFFFFF;
  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
  --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-sans);
  font-weight: 300;
  color: var(--text-dark);
  background-color: var(--cream);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

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

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

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ─── Typography ─── */
.section-eyebrow {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 12px;
}

.section-title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.15;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.section-title em {
  font-style: italic;
  color: var(--burgundy);
}

/* ─── Buttons ─── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.8rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 14px 32px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  transition: all var(--transition);
}

.btn--primary {
  background: var(--burgundy);
  color: var(--white);
  border-color: var(--burgundy);
}

.btn--primary:hover {
  background: var(--burgundy-deep);
  border-color: var(--burgundy-deep);
}

.btn--ghost {
  background: transparent;
  color: var(--burgundy);
  border-color: var(--burgundy);
}

.btn--ghost:hover {
  background: var(--burgundy);
  color: var(--white);
}

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

/* ─── Header ─── */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: rgba(255, 250, 248, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(107, 29, 58, 0.08);
  transition: all var(--transition);
}

.header.scrolled {
  box-shadow: 0 2px 20px rgba(107, 29, 58, 0.06);
}

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

.logo {
  display: flex;
  align-items: center;
  gap: 10px;
}

.logo__mark {
  font-size: 1rem;
  color: var(--burgundy);
  line-height: 1;
}

.logo__text {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 400;
  color: var(--text-dark);
}

.logo__text em {
  font-style: italic;
  color: var(--burgundy);
}

/* ─── Desktop Nav ─── */
.nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  font-family: var(--font-sans);
  font-weight: 400;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-mid);
  transition: color var(--transition);
  position: relative;
}

.nav__link::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--burgundy);
  transition: width var(--transition);
}

.nav__link:hover {
  color: var(--burgundy);
}

.nav__link:hover::after {
  width: 100%;
}

.nav__link--cta {
  padding: 10px 24px;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
  transition: all var(--transition);
}

.nav__link--cta::after {
  display: none;
}

.nav__link--cta:hover {
  background: var(--burgundy);
  color: var(--white);
}

/* ─── Mobile Menu Toggle ─── */
.menu-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--text-dark);
  transition: all var(--transition);
  transform-origin: center;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: rotate(45deg) translate(4px, 5px);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: rotate(-45deg) translate(4px, -5px);
}

/* ─── Mobile Nav Overlay ─── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 999;
  background: rgba(255, 250, 248, 0.98);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  visibility: hidden;
  transition: all var(--transition);
}

.nav-overlay.active {
  opacity: 1;
  visibility: visible;
}

.nav-overlay__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 28px;
}

.nav-overlay__link {
  font-family: var(--font-serif);
  font-size: 1.8rem;
  font-weight: 300;
  color: var(--text-dark);
  transition: color var(--transition);
}

.nav-overlay__link:hover {
  color: var(--burgundy);
}

.nav-overlay__link--cta {
  font-family: var(--font-sans);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-top: 12px;
  padding: 14px 40px;
  border: 1px solid var(--burgundy);
  color: var(--burgundy);
}

/* ─── Hero ─── */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding-top: 72px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}

.hero__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
  padding-top: 40px;
  padding-bottom: 40px;
}

.hero__eyebrow {
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--burgundy);
  margin-bottom: 20px;
  font-weight: 400;
}

.hero__title {
  font-family: var(--font-serif);
  font-weight: 300;
  font-size: clamp(2.8rem, 5.5vw, 4.5rem);
  line-height: 1.1;
  color: var(--text-dark);
  margin-bottom: 28px;
}

.hero__title em {
  font-style: italic;
  color: var(--burgundy);
}

.hero__desc {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin-bottom: 36px;
  max-width: 460px;
}

.hero__actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero__image {
  position: relative;
}

.hero__image img {
  width: 100%;
  height: 780px;
  object-fit: cover;
  border-radius: 0;
}

.hero__image-accent {
  position: absolute;
  bottom: -20px;
  right: -20px;
  width: 60%;
  height: 60%;
  border: 1px solid var(--blush-mid);
  z-index: -1;
}

.hero__scroll {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-light);
  animation: float 2.5s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ─── Divider ─── */
.divider {
  display: flex;
  align-items: center;
  gap: 20px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.divider__line {
  flex: 1;
  height: 1px;
  background: var(--blush-mid);
}

.divider__dot {
  font-size: 0.6rem;
  color: var(--burgundy);
  letter-spacing: 0.2em;
}

/* ─── Services ─── */
.services {
  padding: 100px 0;
  background: var(--cream);
}

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

.service-card {
  padding: 40px 32px;
  border: 1px solid var(--blush-mid);
  transition: all var(--transition);
  position: relative;
}

.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 2px;
  background: var(--burgundy);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform var(--transition);
}

.service-card:hover {
  border-color: var(--burgundy);
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(107, 29, 58, 0.08);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card__icon {
  color: var(--burgundy);
  margin-bottom: 20px;
}

.service-card__title {
  font-family: var(--font-serif);
  font-weight: 400;
  font-size: 1.4rem;
  margin-bottom: 12px;
  color: var(--text-dark);
}

.service-card__desc {
  font-size: 0.88rem;
  line-height: 1.75;
  color: var(--text-mid);
}

/* ─── About ─── */
.about {
  padding: 100px 0;
  background: var(--blush-light);
}

.about__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about__image img {
  width: 100%;
  height: 680px;
  object-fit: cover;
}

.about__content {
  padding: 20px 0;
}

.about__content p {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 20px;
}

.about__stats {
  display: flex;
  align-items: center;
  gap: 28px;
  margin-top: 40px;
  padding-top: 32px;
  border-top: 1px solid var(--blush-mid);
}

.stat {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.stat__number {
  font-family: var(--font-serif);
  font-size: 2.2rem;
  font-weight: 300;
  color: var(--burgundy);
  line-height: 1;
}

.stat__label {
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-light);
}

.stat__divider {
  flex: 0 0 1px;
  height: 40px;
  background: var(--blush-mid);
}

/* ─── Gallery ─── */
.gallery {
  padding: 100px 0 80px;
  background: var(--cream);
}

.gallery > .container {
  margin-bottom: 48px;
}

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  padding: 0 24px;
  max-width: 1248px;
  margin: 0 auto;
}

.gallery__item {
  overflow: hidden;
}

.gallery__item img {
  width: 100%;
  height: 520px;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.gallery__item:hover img {
  transform: scale(1.04);
}

/* ─── Info (Hours & Location) ─── */
.info {
  padding: 100px 0;
  background: var(--blush-light);
}

.info__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
}

.info__block {
  padding: 20px 0;
}

.hours-table {
  width: 100%;
  border-collapse: collapse;
  margin-top: 8px;
}

.hours-table tr {
  border-bottom: 1px solid var(--blush-mid);
}

.hours-table tr:last-child {
  border-bottom: none;
}

.hours-table td {
  padding: 14px 0;
  font-size: 0.9rem;
  color: var(--text-mid);
  vertical-align: middle;
}

.hours-table td:first-child {
  font-weight: 500;
  color: var(--text-dark);
  padding-right: 24px;
}

.hours-table td:last-child {
  color: var(--text-light);
}

.address {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-style: normal;
  font-size: 0.95rem;
  line-height: 1.8;
  color: var(--text-mid);
  margin: 20px 0 28px;
}

.address svg {
  color: var(--burgundy);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ─── Contact ─── */
.contact {
  padding: 100px 0;
  background: var(--cream);
}

.contact__container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact__desc {
  font-size: 0.95rem;
  line-height: 1.85;
  color: var(--text-mid);
  margin-bottom: 36px;
}

.contact__details {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.contact__item {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 0.9rem;
  color: var(--text-mid);
  transition: color var(--transition);
}

.contact__item:hover {
  color: var(--burgundy);
}

.contact__item svg {
  color: var(--burgundy);
  flex-shrink: 0;
}

.contact__item--whatsapp {
  color: #25D366;
}

.contact__item--whatsapp:hover {
  color: #128C7E;
}

.contact__item--whatsapp svg {
  color: #25D366;
}

/* ─── Contact Form ─── */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-label {
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-light);
  font-weight: 400;
}

.form-input {
  font-family: var(--font-sans);
  font-weight: 300;
  font-size: 0.9rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1px solid var(--blush-mid);
  padding: 14px 16px;
  outline: none;
  transition: border-color var(--transition);
  border-radius: 0;
  width: 100%;
}

.form-input:focus {
  border-color: var(--burgundy);
}

.form-input::placeholder {
  color: var(--text-light);
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236B1D3A' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 40px;
}

.form-textarea {
  resize: vertical;
  min-height: 120px;
}

.contact-form__note {
  font-size: 0.78rem;
  color: var(--text-light);
  text-align: center;
  margin-top: -8px;
}

.contact-form__success {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  padding: 40px 20px;
  text-align: center;
  color: var(--burgundy);
}

.contact-form__success svg {
  color: var(--burgundy);
}

.contact-form__success p {
  font-size: 0.95rem;
  line-height: 1.7;
  color: var(--text-mid);
}

/* ─── Map ─── */
.map-section {
  border-top: 1px solid var(--blush-mid);
}

.map-section iframe {
  filter: saturate(0.3) brightness(1.05);
  transition: filter var(--transition);
}

.map-section:hover iframe {
  filter: saturate(0.6) brightness(1.02);
}

/* ─── Footer ─── */
.footer {
  background: var(--burgundy-deep);
  color: var(--white);
  padding: 64px 0 0;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 48px;
  padding-bottom: 48px;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.footer__brand .logo__mark {
  color: var(--blush);
  font-size: 1.2rem;
}

.footer__brand .logo__text {
  font-family: var(--font-serif);
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--white);
}

.footer__brand .logo__text em {
  font-style: italic;
  color: var(--blush);
}

.footer__tagline {
  font-size: 0.82rem;
  color: rgba(255, 250, 248, 0.5);
  margin-top: 4px;
  font-style: italic;
  font-family: var(--font-serif);
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: rgba(255, 250, 248, 0.6);
  transition: color var(--transition);
}

.footer__links a:hover {
  color: var(--white);
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.85rem;
  color: rgba(255, 250, 248, 0.6);
  line-height: 1.8;
}

.footer__contact a {
  transition: color var(--transition);
}

.footer__contact a:hover {
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 250, 248, 0.1);
  padding: 20px 0;
}

.footer__bottom p {
  font-size: 0.75rem;
  color: rgba(255, 250, 248, 0.35);
  text-align: center;
  letter-spacing: 0.05em;
}

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

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

/* ─── Responsive ─── */
@media (max-width: 1024px) {
  .hero__container {
    gap: 40px;
  }

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

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

@media (max-width: 768px) {
  .menu-toggle {
    display: flex;
  }

  .nav {
    display: none;
  }

  .hero__container {
    grid-template-columns: 1fr;
    gap: 40px;
    text-align: center;
  }

  .hero__title {
    font-size: clamp(2.2rem, 8vw, 3.2rem);
  }

  .hero__desc {
    margin-left: auto;
    margin-right: auto;
  }

  .hero__actions {
    justify-content: center;
  }

  .hero__image img {
    height: 500px;
  }

  .hero__image-accent {
    display: none;
  }

  .services__grid {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about__container {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .about__image img {
    height: 420px;
  }

  .about__stats {
    justify-content: center;
  }

  .gallery__grid {
    grid-template-columns: 1fr 1fr;
    gap: 8px;
  }

  .gallery__item img {
    height: 300px;
  }

  .info__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .contact__container {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  .footer__inner {
    grid-template-columns: 1fr;
    gap: 32px;
    text-align: center;
  }

  .footer__brand {
    align-items: center;
  }

  .footer__links {
    align-items: center;
  }

  .footer__contact {
    align-items: center;
  }
}

@media (max-width: 480px) {
  .container {
    padding: 0 18px;
  }

  .hero {
    padding-top: 64px;
  }

  .hero__container {
    padding-top: 20px;
    padding-bottom: 60px;
  }

  .hero__image img {
    height: 400px;
  }

  .services,
  .about,
  .gallery,
  .info,
  .contact {
    padding: 72px 0;
  }

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

  .gallery__item img {
    height: 360px;
  }

  .btn {
    padding: 12px 24px;
    font-size: 0.75rem;
  }

  .hero__scroll {
    display: none;
  }
}
