/* =========================================================
   Sims Beauty — Styles
   ========================================================= */

:root {
  --pink: #e0457b;            /* brand pink — matches brochure */
  --pink-soft: #f48ab0;
  --pink-light: #ffe6ef;
  --pink-bg: #fff1f6;
  --coral: #ff7a8a;
  --rose: #c98a8a;
  --rose-deep: #a65a64;
  --rose-light: #f4e3e1;
  --gold: #d4a14a;
  --gold-light: #f1d7a8;
  --peach: #ffd2c2;
  --mint: #b9e5d1;
  --lilac: #e6d1eb;
  --cream: #fff7f1;
  --ivory: #fffaf5;
  --charcoal: #271a22;
  --text: #3a2c30;
  --muted: #7a6870;
  --line: #f1dde2;
  --shadow: 0 12px 40px rgba(224, 69, 123, 0.10);
  --shadow-lg: 0 24px 60px rgba(43, 31, 31, 0.16);
  --shadow-pink: 0 14px 36px rgba(224, 69, 123, 0.25);
  --radius: 14px;
  --radius-lg: 24px;
  --transition: 0.35s cubic-bezier(0.2, 0.7, 0.2, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  font-family: 'Inter', system-ui, -apple-system, Segoe UI, Roboto, sans-serif;
  color: var(--text);
  background: var(--ivory);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1, h2, h3, h4 {
  font-family: 'Playfair Display', Georgia, serif;
  font-weight: 600;
  color: var(--charcoal);
  line-height: 1.2;
  letter-spacing: -0.01em;
}

h1 { font-size: clamp(2.5rem, 5.5vw, 4.5rem); }
h2 { font-size: clamp(2rem, 4vw, 3rem); margin-bottom: 0.8rem; }
h3 { font-size: 1.4rem; margin-bottom: 0.6rem; }

p { color: var(--text); }

a { color: var(--pink); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--charcoal); }

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

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

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 250, 245, 0.92);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--charcoal);
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo span {
  color: var(--pink);
  font-style: italic;
}

.logo-mark {
  width: 34px; height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 60%, var(--gold) 100%);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.95rem;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  box-shadow: var(--shadow-pink);
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text);
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  padding: 0.3rem 0;
}

.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; bottom: -2px;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width var(--transition);
}

.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }

.nav-cta {
  background: linear-gradient(135deg, var(--pink), var(--coral));
  color: #fff !important;
  padding: 0.65rem 1.3rem !important;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.9rem;
  transition: all var(--transition);
  box-shadow: var(--shadow-pink);
}

.nav-cta:hover {
  background: var(--charcoal);
  color: #fff !important;
  transform: translateY(-2px);
}
.nav-cta::after { display: none; }

.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  flex-direction: column;
  gap: 5px;
}
.nav-toggle span {
  width: 24px; height: 2px;
  background: var(--charcoal);
  border-radius: 2px;
  transition: var(--transition);
}

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.95rem 1.8rem;
  border-radius: 100px;
  font-weight: 600;
  font-size: 0.95rem;
  border: none;
  cursor: pointer;
  transition: all var(--transition);
  text-decoration: none;
}

.btn-primary {
  background: linear-gradient(135deg, var(--pink) 0%, var(--coral) 100%);
  color: #fff;
  box-shadow: var(--shadow-pink);
}
.btn-primary:hover {
  background: linear-gradient(135deg, #c93567 0%, #ff5b6e 100%);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 18px 40px rgba(224, 69, 123, 0.35);
}

.btn-outline {
  background: transparent;
  color: var(--charcoal);
  border: 1.5px solid var(--charcoal);
}
.btn-outline:hover {
  background: var(--charcoal);
  color: #fff;
  transform: translateY(-3px);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 92vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  padding: 4rem 0;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-image: linear-gradient(120deg, rgba(43, 31, 31, 0.72) 0%, rgba(166, 90, 100, 0.55) 55%, rgba(183, 139, 90, 0.45) 100%), url('https://images.unsplash.com/photo-1487412947147-5cebf100ffc2?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  z-index: -1;
}

.hero-content {
  max-width: 720px;
  color: #fff;
  position: relative;
  z-index: 1;
}

.hero .eyebrow {
  display: inline-block;
  background: linear-gradient(135deg, rgba(224,69,123,0.85), rgba(255,122,138,0.7));
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.3);
  padding: 0.5rem 1.1rem;
  border-radius: 100px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
  color: #fff;
  box-shadow: 0 8px 22px rgba(224,69,123,0.4);
}

.hero h1 {
  color: #fff;
  margin-bottom: 1.5rem;
}

.hero h1 em {
  font-style: italic;
  background: linear-gradient(135deg, var(--pink-soft), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero p {
  color: rgba(255, 255, 255, 0.92);
  font-size: 1.15rem;
  margin-bottom: 2.2rem;
  max-width: 560px;
}

.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.hero-actions .btn-outline {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.7);
}
.hero-actions .btn-outline:hover {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}

.hero-meta {
  position: absolute;
  bottom: 2.5rem;
  right: 1.5rem;
  display: flex;
  gap: 2.5rem;
  z-index: 1;
  background: rgba(255, 250, 245, 0.95);
  backdrop-filter: blur(10px);
  padding: 1.3rem 2rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
}

.hero-meta-item .label {
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 0.3rem;
}
.hero-meta-item .value {
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
  color: var(--charcoal);
  font-weight: 600;
}

/* ---------- Sections ---------- */
section {
  padding: 6rem 0;
}

.section-head {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 3.5rem;
}

.section-head .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 1rem;
  position: relative;
  padding: 0 1.4rem;
}
.section-head .eyebrow::before,
.section-head .eyebrow::after {
  content: '';
  position: absolute;
  top: 50%;
  width: 24px;
  height: 1px;
  background: var(--pink);
  opacity: 0.5;
}
.section-head .eyebrow::before { left: -10px; }
.section-head .eyebrow::after { right: -10px; }

.section-head p {
  color: var(--muted);
  font-size: 1.05rem;
  margin-top: 0.5rem;
}

/* ---------- About preview ---------- */
.about-preview {
  background: var(--pink-bg);
  position: relative;
  overflow: hidden;
}

.about-preview::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--pink-light), transparent 70%);
  z-index: 0;
}

.about-preview::after {
  content: '';
  position: absolute;
  bottom: -150px;
  left: -100px;
  width: 320px; height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255,210,194,0.6), transparent 70%);
  z-index: 0;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.about-images {
  position: relative;
  height: 520px;
}

.about-images img {
  position: absolute;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-lg);
  object-fit: cover;
}

.about-images .img-1 {
  width: 70%;
  height: 75%;
  top: 0;
  left: 0;
}

.about-images .img-2 {
  width: 55%;
  height: 55%;
  bottom: 0;
  right: 0;
  border: 8px solid var(--ivory);
}

.about-text .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-text p {
  margin-bottom: 1.2rem;
  color: var(--text);
  font-size: 1.02rem;
}

.about-features {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-top: 2rem;
}

.about-features div {
  padding-left: 1.2rem;
  border-left: 3px solid var(--pink);
}

.about-features h4 {
  font-size: 1.05rem;
  margin-bottom: 0.3rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  color: var(--charcoal);
}

.about-features p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

/* ---------- Services Grid ---------- */
.services {
  background: var(--ivory);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}

.service-card {
  background: #fff;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  transition: all var(--transition);
  border: 1px solid var(--line);
  position: relative;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--pink), var(--coral), var(--gold));
  border-top-left-radius: var(--radius-lg);
  border-top-right-radius: var(--radius-lg);
  opacity: 0;
  transition: opacity var(--transition);
  z-index: 2;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}
.service-card:hover::before { opacity: 1; }

.service-card-image {
  height: 220px;
  overflow: hidden;
  position: relative;
}

.service-card-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(43, 31, 31, 0.3));
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.service-card:hover .service-card-image img {
  transform: scale(1.08);
}

.service-card-body {
  padding: 1.6rem 1.5rem 1.8rem;
}

.service-card h3 {
  font-size: 1.3rem;
  margin-bottom: 0.5rem;
}

.service-card p {
  color: var(--muted);
  font-size: 0.95rem;
  margin-bottom: 1rem;
}

.service-card .price {
  display: inline-block;
  color: var(--pink);
  font-weight: 700;
  font-family: 'Playfair Display', serif;
  font-size: 1.1rem;
}

.service-card .tag {
  display: inline-block;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 0.45rem;
}

.services-cta {
  text-align: center;
  margin-top: 3rem;
}

/* ---------- Why Us ---------- */
.why-us {
  background: linear-gradient(180deg, var(--cream) 0%, var(--ivory) 100%);
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
}

.why-card {
  text-align: center;
  padding: 2rem 1rem;
}

.why-icon {
  width: 74px;
  height: 74px;
  margin: 0 auto 1.2rem;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.9rem;
  box-shadow: var(--shadow);
  color: #fff;
  transition: transform var(--transition);
}
.why-card:hover .why-icon { transform: scale(1.06) rotate(-4deg); }
.why-icon.c1 { background: linear-gradient(135deg, var(--pink), var(--coral)); }
.why-icon.c2 { background: linear-gradient(135deg, #f6a570, var(--gold)); }
.why-icon.c3 { background: linear-gradient(135deg, #7bcfb0, var(--mint)); color: #1f6a4f; }
.why-icon.c4 { background: linear-gradient(135deg, #c293d3, var(--lilac)); color: #5b3168; }

.why-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.why-card p {
  color: var(--muted);
  font-size: 0.95rem;
}

/* ---------- Testimonials ---------- */
.testimonials {
  background: var(--charcoal);
  color: #fff;
  position: relative;
  overflow: hidden;
}

.testimonials::before {
  content: '';
  position: absolute;
  top: -50%;
  left: -10%;
  width: 600px; height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(166, 90, 100, 0.25), transparent 70%);
}

.testimonials .section-head h2 { color: #fff; }
.testimonials .section-head p { color: rgba(255, 255, 255, 0.75); }
.testimonials .section-head .eyebrow { color: var(--gold-light); }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  position: relative;
  z-index: 1;
}

.testimonial {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  backdrop-filter: blur(10px);
}

.testimonial .stars {
  color: var(--gold-light);
  font-size: 1.05rem;
  margin-bottom: 1rem;
  letter-spacing: 0.15em;
  filter: drop-shadow(0 2px 4px rgba(212,161,74,0.4));
}

.testimonial p {
  color: rgba(255, 255, 255, 0.9);
  font-style: italic;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.testimonial-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}

.testimonial-author .name {
  color: #fff;
  font-weight: 600;
  display: block;
  font-size: 0.95rem;
}
.testimonial-author .role {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.82rem;
}

.testimonial .source {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.55);
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  padding: 0.3rem 0.7rem;
  border-radius: 100px;
  margin-bottom: 1rem;
}
.testimonial .source::before {
  content: 'G';
  display: inline-flex;
  width: 16px; height: 16px;
  align-items: center; justify-content: center;
  background: linear-gradient(135deg,#4285F4,#34A853,#FBBC04,#EA4335);
  color:#fff; font-weight:700; font-size:0.62rem; font-family:'Inter',sans-serif;
  border-radius: 50%;
}

.reviews-cta {
  text-align: center;
  margin-top: 3rem;
  position: relative;
  z-index: 1;
}
.reviews-cta .btn-outline {
  border-color: rgba(255,255,255,0.45);
  color: #fff;
}
.reviews-cta .btn-outline:hover {
  background: #fff;
  color: var(--charcoal);
  border-color: #fff;
}

/* ---------- Reviews page ---------- */
.reviews-page {
  background: linear-gradient(180deg, var(--pink-bg) 0%, var(--ivory) 60%);
  padding: 5rem 0 6rem;
}

.reviews-summary {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin: 0 auto 3.5rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  max-width: 720px;
  box-shadow: var(--shadow);
}
.reviews-summary .score {
  font-family: 'Playfair Display', serif;
  font-size: 3rem;
  font-weight: 700;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  line-height: 1;
}
.reviews-summary .stars {
  color: #f5b400;
  font-size: 1.2rem;
  letter-spacing: 0.18em;
}
.reviews-summary .meta {
  font-size: 0.95rem;
  color: var(--muted);
}
.reviews-summary .meta strong { color: var(--charcoal); }

.review-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.review-card {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 1.8rem;
  transition: all var(--transition);
  position: relative;
}
.review-card:hover {
  transform: translateY(-4px);
  border-color: var(--pink-light);
  box-shadow: var(--shadow);
}
.review-card .stars {
  color: #f5b400;
  font-size: 1rem;
  letter-spacing: 0.15em;
  margin-bottom: 0.8rem;
}
.review-card p {
  color: var(--text);
  font-size: 0.95rem;
  line-height: 1.7;
  margin-bottom: 1.3rem;
}
.review-card .testimonial-author {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}
.review-card .testimonial-avatar {
  width: 42px; height: 42px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-weight: 700;
  font-family: 'Playfair Display', serif;
}
.review-card .name {
  display: block;
  color: var(--charcoal);
  font-weight: 600;
  font-size: 0.95rem;
}
.review-card .role {
  color: var(--muted);
  font-size: 0.82rem;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
  background: linear-gradient(120deg, var(--pink) 0%, var(--coral) 55%, var(--gold) 100%);
  color: #fff;
  text-align: center;
  padding: 5rem 0;
  position: relative;
  overflow: hidden;
}
.cta-banner::before, .cta-banner::after {
  content: '';
  position: absolute;
  border-radius: 50%;
  background: rgba(255,255,255,0.13);
}
.cta-banner::before { width: 280px; height: 280px; top: -120px; right: -80px; }
.cta-banner::after  { width: 200px; height: 200px; bottom: -100px; left: -60px; }

.cta-banner h2 { color: #fff; margin-bottom: 1rem; }
.cta-banner p {
  color: rgba(255, 255, 255, 0.92);
  max-width: 600px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
}

.cta-banner > .container { position: relative; z-index: 1; }
.cta-banner .btn-primary {
  background: #fff;
  color: var(--pink);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}
.cta-banner .btn-primary:hover {
  background: var(--charcoal);
  color: #fff;
}

/* ---------- Contact preview ---------- */
.contact-preview {
  background: var(--ivory);
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  align-items: stretch;
}

.contact-info {
  background: var(--cream);
  padding: 3rem;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow);
}

.contact-info h2 { margin-bottom: 1rem; }

.contact-info-list {
  list-style: none;
  margin-top: 2rem;
}

.contact-info-list li {
  display: flex;
  gap: 1rem;
  padding: 1.1rem 0;
  border-bottom: 1px solid var(--line);
  align-items: flex-start;
}

.contact-info-list li:last-child { border-bottom: none; }

.contact-info-list .icon {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--pink-light), #fff);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.05rem;
  color: var(--pink);
  box-shadow: var(--shadow);
  border: 1px solid var(--pink-light);
}

.contact-info-list strong {
  display: block;
  color: var(--charcoal);
  margin-bottom: 0.15rem;
  font-size: 0.95rem;
}
.contact-info-list span {
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.5;
}

.contact-map {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
  min-height: 460px;
}

.contact-map iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
  min-height: 460px;
}

/* ---------- Footer ---------- */
.site-footer {
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.75);
  padding: 4rem 0 1.5rem;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}

.footer-brand .logo {
  color: #fff;
  margin-bottom: 1rem;
}

.footer-brand p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.95rem;
  max-width: 320px;
}

.footer-col h4 {
  color: #fff;
  font-size: 0.95rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
  margin-bottom: 1.2rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.footer-col ul {
  list-style: none;
}

.footer-col li {
  margin-bottom: 0.6rem;
}

.footer-col a, .footer-col p {
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.92rem;
  transition: color var(--transition);
}

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

.footer-bottom {
  padding-top: 1.8rem;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.85rem;
  color: rgba(255, 255, 255, 0.5);
}

.powered-by a {
  color: var(--pink-soft);
  font-weight: 600;
  text-decoration: none;
  transition: color var(--transition);
}
.powered-by a:hover { color: var(--gold-light); }

.socials {
  display: flex;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.socials a {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.95rem;
  transition: all var(--transition);
}

.socials a:hover {
  background: var(--rose-deep);
  border-color: var(--rose-deep);
  color: #fff;
  transform: translateY(-2px);
}

/* ---------- Page Header (sub-pages) ---------- */
.page-header {
  background-image: linear-gradient(135deg, rgba(43, 31, 31, 0.7), rgba(166, 90, 100, 0.55)), url('https://images.unsplash.com/photo-1502823403499-6ccfcf4fb453?auto=format&fit=crop&w=1800&q=80');
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 7rem 0 5rem;
  text-align: center;
}

.page-header h1 {
  color: #fff;
  margin-bottom: 0.8rem;
}

.page-header .eyebrow {
  background: linear-gradient(135deg, var(--pink-soft), var(--gold-light));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-size: 0.85rem;
  font-weight: 700;
  display: inline-block;
  margin-bottom: 1rem;
}

.breadcrumb {
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.8);
}
.breadcrumb a { color: rgba(255, 255, 255, 0.85); }
.breadcrumb a:hover { color: #fff; }

/* ---------- Services page ---------- */
.services-detailed {
  padding: 5rem 0;
}

.service-category {
  margin-bottom: 5rem;
}

.category-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 2rem;
  flex-wrap: wrap;
  margin-bottom: 2.5rem;
  padding-bottom: 1.2rem;
  border-bottom: 2px solid var(--pink-light);
  position: relative;
}
.category-head::after {
  content: '';
  position: absolute;
  bottom: -2px; left: 0;
  width: 80px; height: 2px;
  background: linear-gradient(90deg, var(--pink), var(--coral));
  border-radius: 2px;
}
.category-head .pill {
  display: inline-block;
  background: var(--pink-bg);
  color: var(--pink);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  padding: 0.35rem 0.9rem;
  border-radius: 100px;
  margin-bottom: 0.6rem;
}

.category-head h2 {
  margin: 0;
}

.category-head p {
  color: var(--muted);
  max-width: 380px;
  margin: 0;
}

.service-list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
}

.service-item {
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.6rem 1.8rem;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1.5rem;
  transition: all var(--transition);
}

.service-item:hover {
  border-color: var(--pink);
  transform: translateY(-3px);
  box-shadow: var(--shadow);
}

.service-item h3 {
  font-family: 'Inter', sans-serif;
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 0.3rem;
  color: var(--charcoal);
}

.service-item p {
  font-size: 0.9rem;
  color: var(--muted);
  margin: 0;
}

.service-item .price {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--pink);
  font-size: 1.2rem;
  white-space: nowrap;
  background: var(--pink-bg);
  padding: 0.25rem 0.85rem;
  border-radius: 100px;
}

/* ---------- Gallery ---------- */
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.gallery-item {
  border-radius: var(--radius);
  overflow: hidden;
  position: relative;
  aspect-ratio: 1 / 1;
  cursor: zoom-in;
  box-shadow: var(--shadow);
}

.gallery-item.tall { aspect-ratio: 1 / 1.4; grid-row: span 2; }

.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.gallery-item:hover img { transform: scale(1.07); }

.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(43, 31, 31, 0.5));
  opacity: 0;
  transition: opacity var(--transition);
}

.gallery-item:hover::after { opacity: 1; }

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(43, 31, 31, 0.92);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  padding: 2rem;
}

.lightbox.active { display: flex; }

.lightbox img {
  max-width: 90%;
  max-height: 90vh;
  border-radius: var(--radius);
  box-shadow: var(--shadow-lg);
}

.lightbox-close {
  position: absolute;
  top: 1.5rem;
  right: 2rem;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.3);
  color: #fff;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  font-size: 1.4rem;
  cursor: pointer;
}

/* ---------- About page ---------- */
.about-page {
  padding: 5rem 0;
}

.about-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 4rem;
  align-items: center;
  margin-bottom: 5rem;
}

.about-main-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  aspect-ratio: 4 / 5;
}

.about-main-image img { width: 100%; height: 100%; object-fit: cover; }

.about-main .eyebrow {
  display: inline-block;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  font-weight: 700;
  margin-bottom: 1rem;
}

.about-main p {
  margin-bottom: 1.2rem;
  font-size: 1.02rem;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 2rem;
}

.value-card {
  background: var(--cream);
  padding: 2.2rem 1.8rem;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  text-align: center;
}

.value-card .num {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  background: linear-gradient(135deg, var(--pink), var(--coral));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  display: block;
  margin-bottom: 0.5rem;
  font-style: italic;
}

.value-card h3 {
  font-size: 1.15rem;
  margin-bottom: 0.5rem;
  font-family: 'Inter', sans-serif;
  font-weight: 600;
}

.value-card p {
  color: var(--muted);
  font-size: 0.92rem;
  margin: 0;
}

/* ---------- Contact page ---------- */
.contact-page {
  padding: 5rem 0;
}

.contact-page-grid {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}

.contact-form {
  background: var(--cream);
  padding: 2.8rem;
  border-radius: var(--radius-lg);
}

.contact-form h2 { margin-bottom: 0.8rem; }
.contact-form .intro { color: var(--muted); margin-bottom: 2rem; }

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

.form-group {
  margin-bottom: 1rem;
}

.form-group label {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.4rem;
  color: var(--charcoal);
  letter-spacing: 0.03em;
}

.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.9rem 1rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: #fff;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
  transition: border-color var(--transition);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(224, 69, 123, 0.15);
}

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

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

.form-status.success {
  display: block;
  background: #e8f5e9;
  color: #2e7d32;
  border: 1px solid #c8e6c9;
}

/* Hours table */
.hours-list {
  list-style: none;
}

.hours-list li {
  display: flex;
  justify-content: space-between;
  padding: 0.7rem 0;
  border-bottom: 1px dashed var(--line);
  font-size: 0.95rem;
}

.hours-list li:last-child { border-bottom: none; }

.hours-list .day { color: var(--text); font-weight: 500; }
.hours-list .time { color: var(--pink); font-weight: 700; font-family: 'Playfair Display', serif; }
.hours-list .closed { color: var(--muted); font-style: italic; font-family: 'Inter', sans-serif; }

/* ---------- Reveal animation ---------- */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .about-grid,
  .contact-grid,
  .contact-page-grid,
  .about-main {
    grid-template-columns: 1fr;
    gap: 3rem;
  }

  .about-images { height: 420px; }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
  }

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

  .hero-meta {
    right: 1rem;
    left: 1rem;
    bottom: 1.5rem;
    padding: 1rem 1.4rem;
    justify-content: space-around;
  }
}

@media (max-width: 720px) {
  .container { padding: 0 1.1rem; }

  section { padding: 3.8rem 0; }

  h1 { font-size: clamp(2rem, 8vw, 2.6rem); }
  h2 { font-size: clamp(1.65rem, 5.5vw, 2.1rem); }
  h3 { font-size: 1.2rem; }

  /* Nav */
  .nav { padding: 0.9rem 0; }
  .logo { font-size: 1.3rem; }
  .logo-mark { width: 28px; height: 28px; font-size: 0.85rem; }

  .nav-links {
    position: fixed;
    top: 62px;
    right: 0;
    background: var(--ivory);
    flex-direction: column;
    width: min(82%, 320px);
    height: calc(100vh - 62px);
    padding: 2rem 1.5rem;
    align-items: stretch;
    gap: 0.4rem;
    transform: translateX(100%);
    transition: transform var(--transition);
    box-shadow: var(--shadow-lg);
    overflow-y: auto;
  }

  .nav-links.open { transform: translateX(0); }
  .nav-links li { width: 100%; }
  .nav-links a {
    display: block;
    padding: 0.85rem 0.5rem;
    font-size: 1rem;
    border-bottom: 1px solid var(--line);
  }
  .nav-links a::after { display: none; }
  .nav-links .nav-cta {
    text-align: center;
    margin-top: 0.8rem;
    border-bottom: none;
  }

  .nav-toggle { display: flex; }

  /* Hero */
  .hero {
    min-height: auto;
    padding: 2.5rem 0 3rem;
    flex-direction: column;
    align-items: stretch;
  }
  .hero > .container.hero-content { width: 100%; }
  .hero-content { width: 100%; }
  .hero .eyebrow {
    font-size: 0.75rem;
    padding: 0.4rem 0.95rem;
    margin-bottom: 1.1rem;
  }
  .hero h1 { margin-bottom: 1.1rem; line-height: 1.15; }
  .hero p {
    font-size: 1rem;
    margin-bottom: 1.6rem;
    max-width: 100%;
  }
  .hero-actions { gap: 0.7rem; }
  .hero-actions .btn { width: 100%; justify-content: center; }

  .hero-meta {
    position: static;
    margin: 2rem -0.2rem 0;
    padding: 0.9rem 1.2rem;
    gap: 1rem;
    border-radius: 14px;
    justify-content: space-between;
  }
  .hero-meta-item .label { font-size: 0.65rem; letter-spacing: 0.12em; }
  .hero-meta-item .value { font-size: 0.92rem; }

  /* Buttons full-width on mobile when alone */
  .btn { padding: 0.85rem 1.4rem; font-size: 0.92rem; }

  /* About preview */
  .about-images { height: 360px; }
  .about-images .img-1 { width: 78%; height: 72%; }
  .about-images .img-2 { width: 60%; height: 56%; border-width: 6px; }
  .about-features { grid-template-columns: 1fr; gap: 1.1rem; }

  /* Section heads */
  .section-head { margin-bottom: 2.5rem; }
  .section-head p { font-size: 0.95rem; }

  /* Services */
  .service-grid { gap: 1.2rem; }
  .service-card-image { height: 200px; }
  .service-card-body { padding: 1.3rem 1.3rem 1.5rem; }
  .service-card h3 { font-size: 1.15rem; }

  /* Why us */
  .why-grid { grid-template-columns: 1fr 1fr; gap: 1.2rem; }
  .why-card { padding: 1.4rem 0.5rem; }
  .why-card h3 { font-size: 1rem; }
  .why-card p { font-size: 0.88rem; }
  .why-icon { width: 56px; height: 56px; font-size: 1.4rem; margin-bottom: 0.9rem; }

  /* Testimonials */
  .testimonial { padding: 1.5rem 1.3rem; }
  .testimonial p { font-size: 0.95rem; }

  /* CTA banner */
  .cta-banner { padding: 3.5rem 0; }
  .cta-banner p { font-size: 1rem; }

  /* Contact info */
  .contact-info { padding: 2rem 1.4rem; }
  .contact-info-list li { padding: 0.9rem 0; gap: 0.85rem; }
  .contact-info-list .icon { width: 36px; height: 36px; font-size: 0.95rem; }
  .contact-map iframe { min-height: 320px; }
  .contact-map { min-height: 320px; }

  /* Footer */
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: 0.5rem; }

  /* Forms */
  .form-row { grid-template-columns: 1fr; gap: 0; }
  .contact-form { padding: 1.8rem 1.4rem; }
  .form-group input,
  .form-group select,
  .form-group textarea { font-size: 16px; /* prevent iOS zoom */ }

  /* Gallery */
  .gallery-grid { grid-template-columns: 1fr 1fr; gap: 0.8rem; }
  .gallery-item.tall { grid-row: span 1; aspect-ratio: 1 / 1; }

  /* Services page */
  .page-header { padding: 5rem 0 3.5rem; }
  .services-detailed { padding: 3rem 0; }
  .service-category { margin-bottom: 3.5rem; }
  .category-head {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.6rem;
    margin-bottom: 1.8rem;
  }
  .category-head p { max-width: 100%; font-size: 0.92rem; }
  .service-list { grid-template-columns: 1fr; gap: 0.9rem; }
  .service-item {
    flex-direction: column;
    align-items: flex-start;
    gap: 0.5rem;
    padding: 1.3rem 1.3rem;
  }
  .service-item .price { align-self: flex-start; }

  /* About page */
  .about-main { gap: 2.5rem; }
  .about-main-image { aspect-ratio: 4 / 4; }
  .values-grid { grid-template-columns: 1fr; gap: 1.1rem; }
  .value-card { padding: 1.6rem 1.4rem; }
}

@media (max-width: 380px) {
  h1 { font-size: 1.9rem; }
  .hero-meta { padding: 0.8rem 1rem; gap: 0.7rem; }
  .hero-meta-item .value { font-size: 0.85rem; }
  .why-grid { grid-template-columns: 1fr; }
  .gallery-grid { grid-template-columns: 1fr; }
}
