/* ============================================================
   ROSE LUXE BEAUTY
   Premium light theme — warm ivory, muted rose, Cormorant Garamond
   ============================================================ */

/* === RESET === */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

/* === TOKENS === */
:root {
  --ivory:     #faf6f2;
  --blush-1:   #f5ede8;
  --blush-2:   #eeddd6;
  --rose:      #9c5f6e;
  --rose-2:    #b87b88;
  --rose-3:    #f2e0e5;
  --gold:      #c4a068;
  --gold-light:#e0c99a;
  --charcoal:  #1a1210;
  --charcoal-2:#2e2220;
  --muted:     #7a6660;
  --border:    #e8ddd8;
  --border-2:  #ddd0ca;

  --font-serif: 'Cormorant Garamond', Georgia, serif;
  --font-sans:  'DM Sans', system-ui, sans-serif;

  --radius:     20px;
  --container:  1160px;
  --section-y:  88px;
}

/* === BASE === */
body {
  font-family: var(--font-sans);
  background: var(--ivory);
  color: var(--charcoal);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}

.container {
  width: min(var(--container), calc(100% - 48px));
  margin: 0 auto;
}

.section { padding: var(--section-y) 0; }
.section--alt { background: var(--blush-1); }

/* === TYPOGRAPHY === */
h1, h2 {
  font-family: var(--font-serif);
  font-weight: 500;
  line-height: 1.02;
  letter-spacing: -0.01em;
  color: var(--charcoal);
}
h1 { font-size: clamp(48px, 7vw, 82px); }
h2 { font-size: clamp(32px, 5vw, 52px); }
h3 { font-family: var(--font-sans); font-size: 16px; font-weight: 600; color: var(--charcoal); }

em { font-style: italic; color: var(--rose); }

p { color: var(--muted); line-height: 1.7; }

/* === LABELS / EYEBROW === */
.eyebrow, .label {
  font-family: var(--font-sans);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
}
.label--light { color: rgba(250, 246, 242, 0.65); }

.rule {
  width: 40px;
  height: 1px;
  background: var(--rose);
  margin: 10px 0 18px;
  opacity: 0.4;
}
.rule--light { background: rgba(250, 246, 242, 0.4); opacity: 1; }

/* === BUTTONS === */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-sans);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  border: 1px solid transparent;
  border-radius: 2px;
  padding: 12px 24px;
  cursor: pointer;
  transition: background 0.18s, border-color 0.18s, color 0.18s, transform 0.15s;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-1px); }

.btn--rose {
  background: var(--rose);
  color: #fff;
  border-color: var(--rose);
}
.btn--rose:hover { background: var(--rose-2); border-color: var(--rose-2); }

.btn--outline {
  background: transparent;
  color: var(--charcoal);
  border-color: var(--border-2);
}
.btn--outline:hover { border-color: var(--rose); color: var(--rose); }

.btn--ivory {
  background: var(--ivory);
  color: var(--rose);
  border-color: var(--ivory);
  font-weight: 700;
}
.btn--ivory:hover { background: #fff; border-color: #fff; }

.btn--ivory-outline {
  background: transparent;
  color: var(--ivory);
  border-color: rgba(250, 246, 242, 0.4);
}
.btn--ivory-outline:hover { border-color: var(--ivory); }

.btn--sm  { padding: 9px 18px; font-size: 11px; }
.btn--lg  { padding: 15px 32px; font-size: 13px; }
.btn--full { width: 100%; }

.btn-group {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 30px;
}

/* === SECTION HEADER === */
.section-header {
  max-width: 580px;
  margin-bottom: 52px;
}
.section-header h2 { margin-bottom: 14px; }
.section-sub { font-size: 16px; line-height: 1.7; max-width: 480px; }

/* === HEADER === */
.header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(250, 246, 242, 0.93);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border);
}

.header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 64px;
  gap: 28px;
}

.header__logo {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

.logo-icon {
  color: var(--rose);
  font-size: 14px;
  line-height: 1;
}

.logo-text {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--charcoal);
  letter-spacing: 0.3px;
}

.header__nav { display: flex; gap: 28px; }

.header__nav a {
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--muted);
  transition: color 0.15s;
}
.header__nav a:hover { color: var(--charcoal); }

/* === HERO === */
.hero {
  position: relative;
  padding: 80px 0;
  background: var(--ivory);
  border-bottom: 1px solid var(--border);
  overflow: hidden;
}

.hero__glow {
  position: absolute;
  top: -20%;
  right: -10%;
  width: 60%;
  height: 120%;
  background: radial-gradient(ellipse, rgba(220, 170, 185, 0.18) 0%, transparent 65%);
  pointer-events: none;
}

.hero__grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: stretch;
  position: relative;
}

.hero__copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-right: 20px;
}

.hero__copy h1 { margin: 14px 0 18px; }

.hero__sub { font-size: 17px; max-width: 480px; line-height: 1.7; }

.hero__panel { display: flex; }

.hero__card {
  background: linear-gradient(160deg, #f9edf1, #f3e0e7);
  border: 1px solid #e8cfd8;
  border-radius: var(--radius);
  padding: 36px 32px;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 440px;
}

.hero__card-tag {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose-2);
}

.hero__card h2 { color: var(--charcoal); margin: 16px 0 12px; }
.hero__card h2 em { color: var(--rose); }
.hero__card > p { color: var(--muted); font-size: 15px; flex: 1; }

.hero__card-footer {
  display: flex;
  gap: 32px;
  border-top: 1px solid rgba(156, 95, 110, 0.18);
  padding-top: 20px;
  margin-top: 28px;
}

.hero__stat strong {
  display: block;
  font-family: var(--font-serif);
  font-size: 28px;
  font-weight: 500;
  color: var(--rose);
  line-height: 1;
}
.hero__stat span {
  display: block;
  font-size: 12px;
  color: var(--muted);
  margin-top: 4px;
}

/* === TRUST BAR === */
.trust-bar {
  background: var(--charcoal);
  border-top: 1px solid #2a1e1a;
  border-bottom: 1px solid #2a1e1a;
}

.trust-bar__inner {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
  align-items: center;
  padding: 32px 0;
  gap: 0;
}

.trust-item {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 0 32px;
}
.trust-item:first-child { padding-left: 0; }
.trust-item:last-child  { padding-right: 0; }

.trust-item strong { font-size: 14px; font-weight: 600; color: #fff; }
.trust-item span   { font-size: 13px; color: #8a7a72; }

.trust-divider {
  width: 1px;
  height: 40px;
  background: rgba(255, 255, 255, 0.1);
  flex-shrink: 0;
}

/* === SERVICES / MENU === */
.menu-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.menu-box {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px 28px 20px;
}

.menu-box--featured {
  background: var(--rose-3);
  border-color: rgba(156, 95, 110, 0.3);
}

.menu-box__category {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--rose);
  padding-bottom: 14px;
  border-bottom: 1px solid rgba(156, 95, 110, 0.2);
  margin-bottom: 4px;
}

.menu-item {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--border);
}
.menu-item--last { border-bottom: none; padding-bottom: 0; }

.menu-item__info { flex: 1; }

.menu-item__name {
  display: block;
  font-size: 15px;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 2px;
}

.menu-item__note {
  display: block;
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.menu-item__price {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--rose);
  flex-shrink: 0;
  padding-top: 1px;
}

.menu-note { margin-top: 18px; font-size: 13px; color: var(--muted); }

/* === EXPERIENCE / PROCESS === */
.process {
  display: grid;
  grid-template-columns: 1fr auto 1fr auto 1fr;
  gap: 0;
  align-items: stretch;
}

.process__step {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px 28px;
}

.process__num {
  display: inline-block;
  font-family: var(--font-serif);
  font-size: 48px;
  font-weight: 300;
  color: var(--rose);
  opacity: 0.35;
  line-height: 1;
  margin-bottom: 14px;
}

.process__step h3 { font-size: 17px; margin-bottom: 10px; }
.process__step p  { font-size: 14px; }

.process__arrow {
  width: 28px;
  align-self: center;
  height: 1px;
  background: rgba(156, 95, 110, 0.3);
  flex-shrink: 0;
}

/* === ABOUT === */
.about__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about__text h2 { margin-bottom: 22px; }
.about__text p  { margin-bottom: 16px; font-size: 16px; }
.about__text p:last-child { margin-bottom: 0; }

.about__pull {
  background: linear-gradient(160deg, #f9edf1, #f0dae2);
  border: 1px solid #e8cfd8;
  border-radius: var(--radius);
  padding: 36px 32px;
  margin-bottom: 16px;
}

.about__pull-quote {
  font-family: var(--font-serif);
  font-size: 22px;
  font-style: italic;
  font-weight: 400;
  line-height: 1.45;
  color: var(--charcoal);
  margin-bottom: 24px;
}

.about__pull-meta {
  border-top: 1px solid rgba(156, 95, 110, 0.2);
  padding-top: 16px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.about__pull-meta strong { font-size: 13px; font-weight: 600; color: var(--rose); letter-spacing: 0.5px; }
.about__pull-meta span  { font-size: 12px; color: var(--muted); }

.about__certs { display: flex; flex-direction: column; gap: 12px; }

.about__cert {
  display: flex;
  flex-direction: column;
  gap: 3px;
  padding: 14px 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 10px;
}
.about__cert strong { font-size: 14px; font-weight: 600; color: var(--charcoal); }
.about__cert span   { font-size: 13px; color: var(--muted); }

/* === GALLERY === */
.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: 240px 240px;
  gap: 12px;
}

.gallery-item {
  border-radius: 14px;
  overflow: hidden;
  position: relative;
  border: 1px solid var(--border);
}

.gallery-item--tall { grid-row: span 2; }

.gallery-item--a { background: linear-gradient(155deg, #c9a0ae, #a07080); }
.gallery-item--b { background: linear-gradient(155deg, #d4b8c0, #b08898); }
.gallery-item--c { background: linear-gradient(155deg, #e0c8d0, #c4a0b0); }
.gallery-item--d { background: linear-gradient(155deg, #b89098, #906878); }
.gallery-item--e { background: linear-gradient(155deg, #c8b0b8, #a88898); }
.gallery-item--f { background: linear-gradient(155deg, #d8b8c4, #b890a0); }

.gallery-item__label {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 40px 16px 14px;
  background: linear-gradient(to top, rgba(26, 18, 16, 0.75) 0%, transparent 100%);
}

.gallery-item__label span {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(250, 246, 242, 0.92);
}

/* === TESTIMONIALS === */
.testimonials {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.testimonial {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.testimonial__stars { color: var(--gold); font-size: 14px; letter-spacing: 2px; }

.testimonial__text {
  font-size: 14px;
  line-height: 1.75;
  color: var(--charcoal-2);
  font-style: italic;
  flex: 1;
}

.testimonial__author {
  border-top: 1px solid var(--border);
  padding-top: 14px;
  display: flex;
  flex-direction: column;
  gap: 3px;
}

.testimonial__name   { font-size: 14px; font-weight: 700; color: var(--charcoal); }
.testimonial__detail { font-size: 13px; color: var(--muted); }

/* === CONTACT === */
.contact-section {
  background: linear-gradient(135deg, #7a3a4a, #9c5f6e);
  color: var(--ivory);
}

.contact-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 80px;
  align-items: center;
}

.contact-section h2 { color: #fff; margin-bottom: 16px; }
.contact-section h2 em { color: rgba(250, 246, 242, 0.75); font-style: italic; }

.contact-sub {
  font-size: 16px;
  color: rgba(250, 246, 242, 0.7);
  max-width: 440px;
  margin-bottom: 32px;
}

.contact-details { display: flex; flex-direction: column; gap: 14px; }
.contact-detail  { display: flex; flex-direction: column; gap: 2px; }

.contact-detail dt {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(250, 246, 242, 0.5);
}

.contact-detail dd { margin: 0; font-size: 15px; color: #fff; }

.contact-ctas {
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 220px;
}

.contact-note {
  font-size: 12px;
  color: rgba(250, 246, 242, 0.4);
  text-align: center;
  margin-top: 4px;
}

/* === FOOTER === */
.footer {
  background: var(--charcoal);
  border-top: 1px solid #2a1e1a;
  padding: 40px 0 28px;
}

.footer__inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  align-items: center;
  gap: 24px;
}

.footer__logo {
  font-family: var(--font-serif);
  font-size: 20px;
  font-weight: 500;
  color: var(--ivory);
  margin-bottom: 4px;
  letter-spacing: 0.3px;
}

.footer__tagline { font-size: 13px; color: #6a5850; }

.footer__nav { display: flex; gap: 22px; flex-wrap: wrap; justify-content: flex-end; }

.footer__nav a { font-size: 12px; color: #6a5850; transition: color 0.15s; }
.footer__nav a:hover { color: var(--ivory); }

.footer__copy { font-size: 12px; color: #4a3830; text-align: right; }

/* ============================================================
   RESPONSIVE
   ============================================================ */

@media (max-width: 1024px) {
  .trust-bar__inner {
    grid-template-columns: 1fr;
    gap: 0;
    padding: 32px 0;
  }
  .trust-item { padding: 16px 0; border-bottom: 1px solid rgba(255,255,255,0.08); }
  .trust-item:last-child { border-bottom: none; }
  .trust-divider { display: none; }

  .about__grid { gap: 40px; }
  .contact-inner { gap: 48px; }
}

@media (max-width: 860px) {
  :root { --section-y: 64px; }

  .hero__grid,
  .about__grid,
  .contact-inner,
  .footer__inner {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .hero__copy { padding-right: 0; }
  .hero__card { min-height: 300px; }

  .menu-grid { grid-template-columns: 1fr; }

  .process {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process__arrow { display: none; }

  .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }
  .gallery-item, .gallery-item--tall { min-height: 200px; grid-row: span 1; }

  .testimonials { grid-template-columns: 1fr; }

  .contact-ctas { min-width: 0; }
  .footer__inner { grid-template-columns: 1fr; }
  .footer__copy, .footer__nav { text-align: left; justify-content: flex-start; }
}

@media (max-width: 600px) {
  .header__nav { display: none; }
  .hero__card-footer { flex-direction: column; gap: 16px; }
  .gallery { grid-template-columns: 1fr; }
  .btn-group, .contact-ctas { flex-direction: column; }
  .btn--lg, .btn--sm { width: 100%; }
}
