/* Rae's Retreat — Luxury Salon */
:root {
  --burgundy: #7a1f45;
  --burgundy-deep: #5c1533;
  --burgundy-soft: #9a3a5f;
  --gold: #c9a24d;
  --gold-light: #e2c878;
  --gold-dark: #a88532;
  --cream: #faf6f0;
  --cream-dark: #f0e8dc;
  --ink: #2a1a22;
  --muted: #6b5560;
  --white: #ffffff;
  --shadow: 0 12px 40px rgba(90, 21, 51, 0.12);
  --radius: 14px;
  --max: 1120px;
  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-body: "Montserrat", system-ui, sans-serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-weight: 400;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

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

a {
  color: var(--burgundy);
  text-decoration: none;
  transition: color 0.2s ease, opacity 0.2s ease;
}

a:hover {
  color: var(--gold-dark);
}

h1, h2, h3, h4 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.2;
  margin: 0 0 0.6em;
  color: var(--burgundy-deep);
}

h1 { font-size: clamp(2.6rem, 6vw, 4.2rem); font-weight: 500; }
h2 { font-size: clamp(2rem, 4vw, 2.75rem); }
h3 { font-size: 1.45rem; }
h4 { font-size: 1.05rem; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gold); }

p { margin: 0 0 1em; }
p:last-child { margin-bottom: 0; }

ul { margin: 0; padding: 0; list-style: none; }

.container {
  width: min(100% - 2rem, var(--max));
  margin-inline: auto;
}

.container.narrow {
  width: min(100% - 2rem, 720px);
}

.text-center { text-align: center; }
.mt-lg { margin-top: 2.5rem; }
.small { font-size: 0.85rem; color: var(--muted); }
.lead {
  font-size: 1.125rem;
  color: var(--muted);
  max-width: 40rem;
  margin-inline: auto;
}

.eyebrow {
  font-family: var(--font-body);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin: 0 0 0.75rem;
}

.eyebrow.gold { color: var(--gold-dark); }

.ornament {
  color: var(--gold);
  font-size: 1.1rem;
  letter-spacing: 0.4em;
  margin-bottom: 1rem;
}

.section {
  padding: 5rem 0;
}

.section-heading {
  text-align: center;
  margin-bottom: 2.75rem;
}

.section-heading.light h2,
.section-heading.light .eyebrow {
  color: var(--cream);
}

.section-heading.light h2 { color: var(--white); }
.section-heading.light .eyebrow { color: var(--gold-light); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.95rem 1.75rem;
  border-radius: 999px;
  font-family: var(--font-body);
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.15s ease;
}

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

.btn-sm {
  padding: 0.65rem 1.15rem;
  font-size: 0.72rem;
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--burgundy-deep);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: var(--gold-light);
  color: var(--burgundy-deep);
}

.btn-outline {
  background: transparent;
  color: var(--cream);
  border-color: rgba(226, 200, 120, 0.65);
}

.btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
}

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

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

.text-link {
  display: inline-block;
  margin-top: 1.25rem;
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--burgundy);
  border-bottom: 1px solid var(--gold);
  padding-bottom: 0.15rem;
}

.text-link:hover { color: var(--gold-dark); }

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(122, 31, 69, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(201, 162, 77, 0.25);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 78px;
}

.brand-logo {
  height: 56px;
  width: auto;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.5rem;
}

.site-nav a {
  color: rgba(250, 246, 240, 0.88);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--gold-light);
}

.site-nav .btn {
  color: var(--burgundy-deep);
}

.site-nav .btn:hover {
  color: var(--burgundy-deep);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: 0;
  padding: 0.5rem;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--gold-light);
}

/* Hero */
.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: grid;
  place-items: center;
  background:
    linear-gradient(160deg, rgba(92, 21, 51, 0.92), rgba(122, 31, 69, 0.78)),
    url("../assets/logo.jpg") center / cover no-repeat;
  color: var(--cream);
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 70% 20%, rgba(201, 162, 77, 0.18), transparent 50%),
    linear-gradient(180deg, rgba(92, 21, 51, 0.2), rgba(42, 26, 34, 0.55));
  pointer-events: none;
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 4rem 0;
}

.hero h1 {
  color: var(--white);
  margin-bottom: 1rem;
}

.hero-lead {
  max-width: 36rem;
  margin: 0 auto 2rem;
  color: rgba(250, 246, 240, 0.88);
  font-size: 1.05rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: flex-start;
}

.hero-actions.center,
.hero .hero-actions {
  justify-content: center;
}

/* Intro / bands */
.intro .lead { margin-bottom: 1.25rem; }

.burgundy-band {
  background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy));
  color: rgba(250, 246, 240, 0.9);
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(201, 162, 77, 0.28);
  border-radius: var(--radius);
  padding: 1.75rem 1.4rem;
  backdrop-filter: blur(4px);
}

.service-card h3 {
  color: var(--gold-light);
  margin-bottom: 0.6rem;
}

.service-card p {
  color: rgba(250, 246, 240, 0.82);
  font-size: 0.92rem;
}

.price-from {
  margin-top: 1.25rem !important;
  color: var(--gold-light) !important;
  font-weight: 500;
  letter-spacing: 0.04em;
}

/* Packages teaser */
.packages-banner {
  display: grid;
  grid-template-columns: 1.1fr 1.4fr auto;
  gap: 2rem;
  align-items: center;
  background: var(--white);
  border: 1px solid rgba(122, 31, 69, 0.1);
  border-radius: calc(var(--radius) + 4px);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.package-highlights {
  display: grid;
  gap: 1rem;
}

.package-highlights li {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 1rem;
  align-items: center;
  padding: 1rem 0;
  border-bottom: 1px dashed rgba(122, 31, 69, 0.18);
  font-size: 0.92rem;
}

.package-highlights li:last-child { border-bottom: 0; padding-bottom: 0; }
.package-highlights strong {
  font-family: var(--font-display);
  font-size: 1.6rem;
  color: var(--burgundy);
}
.package-highlights em {
  font-style: normal;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--burgundy-deep);
  background: var(--gold-light);
  border-radius: 999px;
  padding: 0.35rem 0.7rem;
}

.coming-soon {
  background: var(--cream-dark);
}

.cta-band {
  background: var(--burgundy);
  color: var(--cream);
  text-align: center;
}

.cta-band h2 { color: var(--white); }
.cta-band p { color: rgba(250, 246, 240, 0.85); margin-bottom: 1.75rem; }

/* Page hero (inner pages) */
.page-hero {
  background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy));
  color: var(--cream);
  padding: 4.5rem 0 3.5rem;
  text-align: center;
}

.page-hero h1 { color: var(--white); }
.page-hero p {
  max-width: 36rem;
  margin: 0.75rem auto 0;
  color: rgba(250, 246, 240, 0.85);
}

/* About */
.about-content {
  display: grid;
  gap: 2.5rem;
}

.about-block {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(122, 31, 69, 0.06);
}

.about-block h2 {
  font-size: 1.85rem;
  margin-bottom: 1rem;
}

.about-signoff {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-style: italic;
  color: var(--burgundy);
  margin-top: 1.5rem;
}

.about-aside {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 2rem;
  align-items: center;
  background: var(--burgundy);
  color: var(--cream);
  border-radius: var(--radius);
  padding: 2rem;
  margin-bottom: 2rem;
}

.about-aside img {
  width: 100%;
  border-radius: 12px;
  border: 1px solid rgba(201, 162, 77, 0.35);
}

.about-aside h2 { color: var(--white); margin-bottom: 0.5rem; }
.about-aside p { color: rgba(250, 246, 240, 0.88); }

/* Pricing */
.price-section {
  margin-bottom: 3rem;
}

.price-section h2 {
  text-align: center;
  margin-bottom: 0.35rem;
}

.price-section .section-note {
  text-align: center;
  color: var(--muted);
  margin-bottom: 1.75rem;
  font-size: 0.95rem;
}

.menu-card {
  background: var(--white);
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  border: 1px solid rgba(122, 31, 69, 0.08);
  overflow: hidden;
}

.menu-card.burgundy {
  background: linear-gradient(160deg, var(--burgundy-deep), var(--burgundy));
  color: var(--cream);
}

.menu-list {
  padding: 0.5rem 0;
}

.menu-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 1rem;
  align-items: baseline;
  padding: 1rem 1.5rem;
  border-bottom: 1px dotted rgba(122, 31, 69, 0.15);
}

.menu-card.burgundy .menu-item {
  border-bottom-color: rgba(226, 200, 120, 0.22);
}

.menu-item:last-child { border-bottom: 0; }

.menu-item .name {
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.menu-card.burgundy .name { color: var(--cream); }

.menu-item .dots {
  display: none;
}

.menu-item .price {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--burgundy);
  white-space: nowrap;
}

.menu-card.burgundy .price { color: var(--gold-light); }

.package-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.package-card {
  background: var(--white);
  border: 1px solid rgba(122, 31, 69, 0.1);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  position: relative;
}

.package-card .was {
  color: var(--muted);
  text-decoration: line-through;
  font-size: 1rem;
  margin-right: 0.5rem;
}

.package-card .now {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--burgundy);
  font-weight: 600;
}

.save-badge {
  position: absolute;
  top: 1.25rem;
  right: 1.25rem;
  background: var(--gold);
  color: var(--burgundy-deep);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  border-radius: 999px;
  padding: 0.45rem 0.75rem;
}

.addons-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1rem;
  font-style: italic;
}

.coming-pill {
  display: inline-flex;
  gap: 1.5rem;
  flex-wrap: wrap;
  justify-content: center;
  margin-top: 1rem;
}

.coming-pill span {
  background: var(--white);
  border: 1px solid rgba(201, 162, 77, 0.45);
  color: var(--burgundy);
  border-radius: 999px;
  padding: 0.65rem 1.2rem;
  font-size: 0.8rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 500;
}

/* Contact */
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 2rem;
  align-items: start;
}

.contact-card,
.form-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border: 1px solid rgba(122, 31, 69, 0.08);
}

.contact-card h2,
.form-card h2 {
  font-size: 1.75rem;
}

.info-list {
  display: grid;
  gap: 1.25rem;
  margin-top: 1.5rem;
}

.info-list li strong {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: 0.25rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-field {
  display: grid;
  gap: 0.4rem;
  margin-bottom: 1rem;
}

.form-field.full { grid-column: 1 / -1; }

.form-field label {
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

.form-field input,
.form-field select,
.form-field textarea {
  width: 100%;
  border: 1px solid rgba(122, 31, 69, 0.18);
  border-radius: 10px;
  padding: 0.85rem 1rem;
  font: inherit;
  color: var(--ink);
  background: var(--cream);
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.form-field input:focus,
.form-field select:focus,
.form-field textarea:focus {
  outline: none;
  border-color: var(--burgundy);
  box-shadow: 0 0 0 3px rgba(122, 31, 69, 0.12);
  background: var(--white);
}

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

.form-status {
  display: none;
  margin-top: 1rem;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  font-size: 0.92rem;
}

.form-status.success {
  display: block;
  background: #eef8f0;
  color: #1f6b3a;
  border: 1px solid #b7dfc2;
}

.form-status.error {
  display: block;
  background: #fdf0f2;
  color: #8a2438;
  border: 1px solid #efc0c8;
}

.form-hint {
  font-size: 0.8rem;
  color: var(--muted);
  margin-top: 0.75rem;
}

/* Footer */
.site-footer {
  background: var(--burgundy-deep);
  color: rgba(250, 246, 240, 0.8);
  padding-top: 3.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 2rem;
  padding-bottom: 2.5rem;
}

.footer-logo {
  height: 72px;
  width: auto;
  margin-bottom: 0.75rem;
}

.footer-brand p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  color: var(--gold-light);
}

.site-footer h4 {
  margin-bottom: 1rem;
}

.site-footer a {
  color: rgba(250, 246, 240, 0.8);
}

.site-footer a:hover {
  color: var(--gold-light);
}

.site-footer ul {
  display: grid;
  gap: 0.5rem;
}

.footer-bottom {
  border-top: 1px solid rgba(201, 162, 77, 0.2);
  padding: 1.1rem 0;
  font-size: 0.82rem;
  color: rgba(250, 246, 240, 0.65);
}

/* Responsive */
@media (max-width: 960px) {
  .card-grid { grid-template-columns: repeat(2, 1fr); }
  .packages-banner {
    grid-template-columns: 1fr;
    text-align: center;
  }
  .package-highlights li {
    grid-template-columns: 1fr;
    text-align: left;
    gap: 0.4rem;
  }
  .about-aside { grid-template-columns: 1fr; text-align: center; }
  .about-aside img { max-width: 220px; margin-inline: auto; }
  .contact-layout { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; }
}

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

  .site-nav {
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--burgundy-deep);
    padding: 0.75rem 1rem 1.25rem;
    border-bottom: 1px solid rgba(201, 162, 77, 0.25);
  }

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

  .site-nav a {
    padding: 0.85rem 0.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  }

  .site-nav .btn {
    margin-top: 0.75rem;
    width: 100%;
  }

  .card-grid,
  .package-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .hero { min-height: 70vh; }
  .section { padding: 3.5rem 0; }
}
