/* House of RAI — palette matched to logo
   Logo: dark brown wordmark, metallic gold, dusty rose, cream */

:root {
  --plum: #3d2314;
  --plum-dark: #2a170e;
  --plum-light: #5c3a28;
  --gold: #c5a059;
  --gold-light: #d4b87a;
  --gold-dark: #a67c52;
  --rose: #c57b88;
  --blush: #e8c4c8;
  --cream: #faf7f2;
  --cream-alt: #f7f1ea;
  --maroon: #703030;
  --text: #3d2314;
  --text-muted: #6b5348;
  --white: #ffffff;
  --shadow: 0 8px 32px rgba(61, 35, 20, 0.1);
  --shadow-lg: 0 16px 48px rgba(61, 35, 20, 0.14);
  --radius: 12px;
  --radius-lg: 20px;
  --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-script: 'Great Vibes', cursive;
  --font-sans: 'Montserrat', system-ui, sans-serif;
  --header-h: 72px;
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-h);
}

body {
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--plum);
  text-decoration: none;
  transition: color 0.2s ease;
}

a:hover {
  color: var(--gold-dark);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

/* ── Header / Nav ── */

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  background: rgba(253, 248, 242, 0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(197, 160, 89, 0.25);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(1120px, 92vw);
  margin-inline: auto;
  height: var(--header-h);
}

.nav__brand {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  color: var(--plum);
}

.nav__brand:hover {
  color: var(--plum);
}

.nav__logo {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold);
}

.nav__name {
  font-family: var(--font-serif);
  font-size: 1.05rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.nav__name em {
  font-style: normal;
  color: inherit;
}

.nav__menu {
  display: flex;
  align-items: center;
  gap: 1.75rem;
  list-style: none;
}

.nav__menu a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav__cta {
  background: var(--plum);
  color: var(--white) !important;
  padding: 0.55rem 1.25rem;
  border-radius: 999px;
  border: 1px solid var(--plum);
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.nav__cta:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white) !important;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav__toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--plum);
  border-radius: 2px;
  transition: transform 0.25s, opacity 0.25s;
}

/* ── Buttons ── */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.75rem;
  font-family: var(--font-sans);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.25s, color 0.25s, border-color 0.25s, transform 0.2s, box-shadow 0.25s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn--primary {
  background: var(--plum);
  color: var(--white);
  border-color: var(--plum);
  box-shadow: 0 4px 20px rgba(61, 35, 20, 0.25);
}

.btn--primary:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  color: var(--white);
}

.btn--outline {
  background: transparent;
  color: var(--plum);
  border-color: var(--gold);
}

.btn--outline:hover {
  background: var(--gold);
  color: var(--white);
}

.btn--light {
  background: var(--white);
  color: var(--plum);
  border-color: var(--white);
}

.btn--light:hover {
  background: var(--gold-light);
  color: var(--white);
  border-color: var(--gold-light);
}

.btn--full {
  width: 100%;
}

/* ── Hero ── */

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: calc(var(--header-h) + 3rem) 1.5rem 4rem;
  background:
    radial-gradient(ellipse at 15% 20%, rgba(232, 196, 200, 0.35) 0%, transparent 50%),
    radial-gradient(ellipse at 85% 80%, rgba(197, 160, 89, 0.15) 0%, transparent 45%),
    linear-gradient(180deg, var(--cream-alt) 0%, var(--cream) 100%);
  overflow: hidden;
  text-align: center;
}

.hero__floral {
  position: absolute;
  width: 280px;
  height: 280px;
  opacity: 0.35;
  pointer-events: none;
  background:
    radial-gradient(circle at 30% 70%, var(--blush) 0%, transparent 55%),
    radial-gradient(circle at 70% 30%, var(--gold-light) 0%, transparent 50%);
  border-radius: 50%;
  filter: blur(2px);
}

.hero__floral--tl {
  top: -60px;
  left: -80px;
}

.hero__floral--br {
  bottom: -80px;
  right: -60px;
}

.hero__inner {
  position: relative;
  max-width: 680px;
}

.hero__logo {
  width: min(220px, 50vw);
  margin: 0 auto 1.5rem;
  border-radius: 50%;
  box-shadow: var(--shadow-lg);
}

.hero__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--plum-light);
  margin-bottom: 0.5rem;
}

.hero__title {
  font-family: var(--font-serif);
  font-size: clamp(2.5rem, 7vw, 4rem);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.06em;
  line-height: 1.1;
}

.hero__title span {
  color: var(--rose);
}

.hero__script {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 5vw, 2.75rem);
  color: var(--gold-dark);
  margin: 0.75rem 0 0.25rem;
  line-height: 1.2;
}

.hero__tagline {
  font-family: var(--font-script);
  font-size: clamp(1.25rem, 3.5vw, 1.75rem);
  color: var(--plum-light);
  margin-bottom: 1rem;
}

.hero__desc {
  font-size: 1.05rem;
  color: var(--text-muted);
  max-width: 520px;
  margin: 0 auto 2rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: center;
  margin-bottom: 2rem;
}

.hero__locations {
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold-dark);
}

/* ── Sections ── */

.section {
  padding: 5rem 0;
}

.section--alt {
  background: var(--cream-alt);
}

.section__header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 3rem;
}

.section__eyebrow {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.5rem;
}

.section__title {
  font-family: var(--font-serif);
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  font-weight: 600;
  color: var(--plum);
  letter-spacing: 0.04em;
}

.section__title span {
  color: var(--rose);
  font-style: normal;
}

.section__subtitle {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: 1rem;
}

.section__divider {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 1rem;
  margin: 1.25rem auto 0;
  max-width: 200px;
}

.section__divider::before,
.section__divider::after {
  content: '';
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
}

.section__divider span {
  color: var(--plum);
  font-size: 0.75rem;
}

.section__divider--left {
  margin-left: 0;
  margin-right: auto;
}

/* ── About ── */

.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}

.about__lead {
  font-family: var(--font-serif);
  font-size: 1.2rem;
  color: var(--plum);
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about__content p + p {
  margin-top: 1rem;
  color: var(--text-muted);
}

.about__highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.highlight {
  background: var(--white);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(197, 160, 89, 0.2);
  box-shadow: var(--shadow);
}

.highlight__icon {
  display: block;
  color: var(--gold);
  font-size: 1.1rem;
  margin-bottom: 0.5rem;
}

.highlight h3 {
  font-family: var(--font-serif);
  font-size: 1rem;
  color: var(--plum);
  margin-bottom: 0.35rem;
}

.highlight p {
  font-size: 0.875rem;
  color: var(--text-muted);
  line-height: 1.5;
}

/* ── Services ── */

.services__grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1rem;
  list-style: none;
}

.service-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.65rem;
  padding: 1.5rem 0.75rem;
  background: var(--white);
  border-radius: var(--radius);
  border: 1px solid rgba(197, 160, 89, 0.25);
  text-align: center;
  font-size: 0.8rem;
  font-weight: 500;
  color: var(--plum);
  transition: transform 0.2s, box-shadow 0.2s, border-color 0.2s;
}

.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: var(--gold);
}

.service-card__icon {
  font-size: 1.75rem;
  line-height: 1;
}

/* ── Gallery ── */

.gallery__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.gallery__item {
  position: relative;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: var(--white);
  box-shadow: var(--shadow);
  border: 2px solid rgba(197, 160, 89, 0.2);
  transition: transform 0.3s, box-shadow 0.3s;
}

.gallery__item:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.gallery__item img,
.gallery__item video {
  display: block;
  width: 100%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
}

/* The remaining items are the previous Instagram design references. */
.gallery__grid > :nth-child(n + 6) {
  display: none;
}

.gallery__item--featured img {
  aspect-ratio: 1;
  object-fit: contain;
  background: var(--cream);
  padding: 1rem;
}

.gallery__item figcaption {
  padding: 0.85rem 1rem;
  font-family: var(--font-serif);
  font-size: 0.9rem;
  color: var(--plum);
  text-align: center;
  background: linear-gradient(180deg, var(--white) 0%, var(--cream-alt) 100%);
  border-top: 1px solid rgba(197, 160, 89, 0.15);
}

.gallery__item--featured {
  grid-column: span 1;
}

/* ── CTA Banner ── */

.cta-banner {
  padding: 3.5rem 0;
  background:
    linear-gradient(135deg, var(--plum) 0%, var(--plum-dark) 60%, var(--maroon) 100%);
  text-align: center;
}

.cta-banner__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1rem;
}

.cta-banner__script {
  font-family: var(--font-script);
  font-size: clamp(1.75rem, 5vw, 2.5rem);
  color: var(--gold-light);
}

.cta-banner__text {
  font-family: var(--font-serif);
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  max-width: 480px;
}

/* ── Book / Form ── */

.book__grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 3.5rem;
  align-items: start;
}

.book__info p {
  color: var(--text-muted);
  margin-bottom: 1.5rem;
}

.contact-card {
  background: var(--white);
  padding: 1.75rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 160, 89, 0.3);
  box-shadow: var(--shadow);
}

.contact-card__name {
  font-family: var(--font-script);
  font-size: 2rem;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.contact-card__phone {
  display: block;
  font-family: var(--font-serif);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--plum);
  margin-bottom: 1rem;
}

.contact-card__whatsapp {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--white);
  background: #25d366;
  padding: 0.65rem 1.25rem;
  border-radius: 999px;
  transition: background 0.2s, transform 0.2s;
}

.contact-card__whatsapp:hover {
  background: #1da851;
  color: var(--white);
  transform: translateY(-2px);
}

.book-form {
  background: var(--white);
  padding: 2rem;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(197, 160, 89, 0.25);
  box-shadow: var(--shadow);
}

.form-row {
  margin-bottom: 1.25rem;
}

.form-help {
  margin: -0.35rem 0 1rem;
  font-size: 0.85rem;
  color: var(--plum);
}

.form-row--half {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-row label {
  display: block;
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--plum);
  margin-bottom: 0.4rem;
}

.form-row label span {
  color: var(--rose);
}

.form-row input,
.form-row select,
.form-row textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  font-family: var(--font-sans);
  font-size: 0.95rem;
  color: var(--text);
  background: var(--cream);
  border: 1px solid rgba(61, 35, 20, 0.15);
  border-radius: 8px;
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(197, 160, 89, 0.2);
}

.form-row textarea {
  resize: vertical;
  min-height: 100px;
}

.form-success {
  margin-top: 1rem;
  padding: 0.85rem 1rem;
  background: rgba(37, 211, 102, 0.12);
  border: 1px solid rgba(37, 211, 102, 0.35);
  border-radius: 8px;
  font-size: 0.875rem;
  color: #1a7a3a;
  text-align: center;
}

/* ── Footer ── */

.site-footer {
  background: var(--plum-dark);
  color: rgba(255, 255, 255, 0.85);
  padding: 3rem 0 2rem;
  text-align: center;
}

.site-footer__logo {
  width: 72px;
  height: 72px;
  margin: 0 auto 1rem;
  border-radius: 50%;
  border: 2px solid var(--gold);
}

.site-footer__brand {
  font-family: var(--font-serif);
  font-size: 1.35rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  color: var(--plum);
}

.site-footer__brand span {
  color: inherit;
  font-style: normal;
}

.site-footer__tagline {
  font-size: 0.85rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--gold-light);
  margin-bottom: 1.5rem;
}

.site-footer__copy {
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.5);
}

/* ── Responsive ── */

@media (max-width: 960px) {
  .services__grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .about__grid,
  .book__grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .gallery__grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 720px) {
  .nav__toggle {
    display: flex;
  }

  .nav__menu {
    position: fixed;
    inset: var(--header-h) 0 auto;
    flex-direction: column;
    gap: 0;
    background: rgba(253, 248, 242, 0.98);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(197, 160, 89, 0.25);
    padding: 1rem 0 1.5rem;
    transform: translateY(-110%);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.3s, opacity 0.3s;
  }

  .nav__menu--open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav__menu li {
    width: 100%;
    text-align: center;
  }

  .nav__menu a {
    display: block;
    padding: 0.85rem 1rem;
  }

  .nav__cta {
    margin-top: 0.5rem;
  }

  .about__highlights {
    grid-template-columns: 1fr;
  }

  .services__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .gallery__grid {
    grid-template-columns: 1fr;
  }

  .form-row--half {
    grid-template-columns: 1fr;
  }

  .section {
    padding: 3.5rem 0;
  }
}

@media (max-width: 400px) {
  .hero__actions {
    flex-direction: column;
    align-items: stretch;
  }

  .btn {
    width: 100%;
  }
}
