/* ===========================
   THE WRIGHT CLEANER — SHARED CSS
=========================== */
:root {
  --purple-deep:   #2D0057;
  --purple-main:   #4B0082;
  --purple-mid:    #6A0DAD;
  --purple-light:  #9B59B6;
  --purple-tint:   #F3EBF9;
  --gold-main:     #C9A84C;
  --gold-light:    #E8C96B;
  --gold-pale:     #FFF8E7;
  --white:         #FFFFFF;
  --text-dark:     #1A1A2E;
  --text-body:     #3D3D5C;
  --text-muted:    #7A7A9A;
  --border:        #E2D9EE;
  --shadow-sm:     0 2px 8px rgba(75,0,130,0.10);
  --shadow-md:     0 6px 24px rgba(75,0,130,0.16);
  --shadow-lg:     0 16px 48px rgba(75,0,130,0.22);
  --radius-sm:     8px;
  --radius-md:     14px;
  --radius-lg:     24px;
  --transition:    0.25s ease;
  --font-display:  'Playfair Display', Georgia, serif;
  --font-body:     'Inter', system-ui, sans-serif;
  --max-width:     1160px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--text-body);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { cursor: pointer; font-family: inherit; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: clamp(1rem, 5vw, 2.5rem);
}
.sr-only {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem; border-radius: 50px;
  font-weight: 600; font-size: 1rem;
  transition: transform var(--transition), box-shadow var(--transition), background var(--transition);
  border: 2px solid transparent;
}
.btn:hover  { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }
.btn--primary { background: var(--gold-main); color: var(--purple-deep); box-shadow: 0 4px 16px rgba(201,168,76,0.35); }
.btn--primary:hover { background: var(--gold-light); box-shadow: 0 8px 24px rgba(201,168,76,0.45); }
.btn--outline { background: transparent; border-color: var(--gold-main); color: var(--gold-main); }
.btn--outline:hover { background: var(--gold-main); color: var(--purple-deep); }
.btn--lg { padding: 1.05rem 2.5rem; font-size: 1.1rem; }

/* NAVIGATION */
.site-nav {
  position: sticky; top: 0; z-index: 100;
  background: var(--purple-deep);
  border-bottom: 2px solid var(--purple-mid);
  box-shadow: var(--shadow-md);
}
.nav-inner { display: flex; align-items: center; justify-content: space-between; height: 68px; }
.nav-brand { display: flex; align-items: center; gap: 0.75rem; }
.nav-logo { width: 40px; height: 40px; object-fit: contain; filter: drop-shadow(0 2px 4px rgba(0,0,0,0.3)); }
.nav-brand-name { font-family: var(--font-display); font-size: 1.25rem; color: var(--gold-main); letter-spacing: 0.01em; }
.nav-links { display: flex; align-items: center; gap: 2rem; }
.nav-links a {
  font-size: 0.95rem; font-weight: 500; color: rgba(255,255,255,0.82);
  transition: color var(--transition); position: relative;
}
.nav-links a::after {
  content: ''; position: absolute; bottom: -4px; left: 0;
  width: 0; height: 2px; background: var(--gold-main); transition: width var(--transition);
}
.nav-links a:hover, .nav-links a.active { color: var(--gold-light); }
.nav-links a:hover::after, .nav-links a.active::after { width: 100%; }
.nav-cta { margin-left: 0.5rem; }
.nav-toggle { display: none; flex-direction: column; gap: 5px; background: none; border: none; padding: 6px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--gold-main); border-radius: 2px; transition: transform var(--transition), opacity var(--transition); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* PAGE HERO (inner pages) */
.page-hero {
  background: linear-gradient(145deg, var(--purple-deep) 0%, var(--purple-main) 55%, var(--purple-mid) 100%);
  padding: clamp(3rem, 8vw, 5rem) 0;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 80% 60% at 50% 50%, rgba(201,168,76,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-inner { position: relative; z-index: 1; }
.page-hero-eyebrow {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: rgba(201,168,76,0.15); border: 1px solid rgba(201,168,76,0.35);
  color: var(--gold-light); font-size: 0.8rem; font-weight: 600;
  letter-spacing: 0.08em; text-transform: uppercase;
  padding: 0.35rem 0.9rem; border-radius: 50px; margin-bottom: 1.25rem;
}
.page-hero-title {
  font-family: var(--font-display);
  font-size: clamp(2rem, 5vw, 3.5rem);
  color: var(--white); line-height: 1.15; margin-bottom: 1rem;
}
.page-hero-title em { font-style: normal; color: var(--gold-main); }
.page-hero-desc {
  font-size: clamp(1rem, 2vw, 1.15rem);
  color: rgba(255,255,255,0.78);
  max-width: 560px; margin: 0 auto; line-height: 1.7;
}

/* SECTIONS */
.section { padding: clamp(3.5rem, 7vw, 5.5rem) 0; }
.section--alt { background: var(--purple-tint); }
.section--dark { background: var(--purple-deep); color: var(--white); }
.section-eyebrow {
  font-size: 0.78rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--purple-mid); margin-bottom: 0.6rem;
}
.section--dark .section-eyebrow { color: var(--gold-light); }
.section-title {
  font-family: var(--font-display);
  font-size: clamp(1.7rem, 3.5vw, 2.5rem);
  color: var(--text-dark); line-height: 1.2; margin-bottom: 0.85rem;
}
.section--dark .section-title { color: var(--white); }
.section-title em { font-style: normal; color: var(--purple-main); }
.section--dark .section-title em { color: var(--gold-main); }
.section-desc { font-size: 1.05rem; color: var(--text-muted); max-width: 580px; line-height: 1.7; }
.section--dark .section-desc { color: rgba(255,255,255,0.7); }
.section-header { margin-bottom: 3rem; }
.section-header--center { text-align: center; }
.section-header--center .section-desc { margin-inline: auto; }

/* BOOKING CTA */
.booking-cta {
  background: linear-gradient(135deg, var(--purple-deep) 0%, var(--purple-main) 60%, var(--purple-mid) 100%);
  padding: clamp(3.5rem, 7vw, 5rem) 0; text-align: center; position: relative; overflow: hidden;
}
.booking-cta::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 70% 80% at 50% 50%, rgba(201,168,76,0.10) 0%, transparent 70%);
  pointer-events: none;
}
.booking-cta-inner { position: relative; z-index: 1; }
.booking-cta-title { font-family: var(--font-display); font-size: clamp(1.8rem, 4vw, 3rem); color: var(--white); margin-bottom: 1rem; }
.booking-cta-title em { font-style: normal; color: var(--gold-main); }
.booking-cta-desc { color: rgba(255,255,255,0.75); font-size: 1.05rem; max-width: 500px; margin: 0 auto 2.25rem; line-height: 1.65; }
.booking-cta-actions { display: flex; justify-content: center; flex-wrap: wrap; gap: 1rem; }
.booking-cta-note { margin-top: 1.5rem; color: rgba(255,255,255,0.45); font-size: 0.82rem; }

/* FOOTER */
.site-footer { background: var(--purple-deep); color: rgba(255,255,255,0.7); padding: clamp(3rem, 6vw, 4.5rem) 0 1.5rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 2.5rem; padding-bottom: 3rem; border-bottom: 1px solid rgba(255,255,255,0.1); margin-bottom: 1.75rem; }
.footer-brand { display: flex; flex-direction: column; gap: 0.85rem; }
.footer-logo-row { display: flex; align-items: center; gap: 0.6rem; }
.footer-logo { width: 36px; height: 36px; object-fit: contain; }
.footer-brand-name { font-family: var(--font-display); font-size: 1.1rem; color: var(--gold-main); }
.footer-tagline { font-size: 0.88rem; line-height: 1.6; max-width: 260px; }
.footer-social { display: flex; gap: 0.6rem; margin-top: 0.25rem; }
.footer-social a { width: 34px; height: 34px; border-radius: 50%; border: 1px solid rgba(255,255,255,0.2); display: flex; align-items: center; justify-content: center; transition: background var(--transition), border-color var(--transition); }
.footer-social a:hover { background: var(--gold-main); border-color: var(--gold-main); color: var(--purple-deep); }
.footer-col-title { font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--gold-main); margin-bottom: 1rem; }
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links a { font-size: 0.88rem; color: rgba(255,255,255,0.62); transition: color var(--transition), padding-left var(--transition); }
.footer-links a:hover { color: var(--gold-light); padding-left: 4px; }
.footer-contact-item { display: flex; align-items: flex-start; gap: 0.6rem; font-size: 0.88rem; margin-bottom: 0.55rem; }
.footer-contact-item svg { flex-shrink: 0; margin-top: 2px; opacity: 0.6; }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 0.75rem; font-size: 0.8rem; color: rgba(255,255,255,0.38); }
.footer-bottom-links { display: flex; gap: 1.25rem; }
.footer-bottom-links a { color: inherit; transition: color var(--transition); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}
@media (max-width: 768px) {
  .nav-toggle { display: flex; }
  .nav-menu {
    display: none; position: absolute; top: 68px; left: 0; right: 0;
    background: var(--purple-deep); border-top: 1px solid rgba(255,255,255,0.1);
    padding: 1rem 0 1.5rem; flex-direction: column; align-items: stretch;
  }
  .nav-menu.is-open { display: flex; }
  .nav-links { flex-direction: column; align-items: flex-start; gap: 0; padding: 0 1.5rem; }
  .nav-links a { display: block; padding: 0.75rem 0; border-bottom: 1px solid rgba(255,255,255,0.07); width: 100%; }
  .nav-cta { padding: 1rem 1.5rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
}
