/* ============================================================
   Issime Beauty — Main Stylesheet
   Design tokens extracted from issimebeauty.com
   ============================================================ */

/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Jost:wght@300;400;500;600;700&display=swap');

/* ── Tokens ───────────────────────────────────────────────── */
:root {
  --color-bg:           #FAF9F5;
  --color-bg-dark:      #30302E;
  --color-text:         #141413;
  --color-text-light:   #FAF9F5;
  --color-text-muted:   #6B6B68;
  --color-wa:           #61CE70;
  --color-gold:         #CAA958;
  --color-accent:       #CC3366;
  --color-border:       rgba(20, 20, 19, 0.12);

  --font-body:    Arial, sans-serif;
  --font-heading: 'Jost', sans-serif;

  --radius:   6px;
  --radius-lg: 12px;

  --max-w:  1200px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);
}

/* ── Reset ────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }

/* ── Typography ───────────────────────────────────────────── */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 700;
  line-height: 1.15;
  color: var(--color-text);
}

h1 { font-size: clamp(2.2rem, 5vw, 4.25rem); }
h2 { font-size: clamp(1.6rem, 3vw, 2.25rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.4rem); font-weight: 600; }
h4 { font-size: 1rem; font-weight: 600; }

p { max-width: 68ch; }

/* ── Layout ───────────────────────────────────────────────── */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section { padding: clamp(3rem, 6vw, 5rem) 0; }

.section-dark {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
}
.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4,
.section-dark p { color: var(--color-text-light); }

/* ── Buttons ──────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  cursor: pointer;
  border: none;
  transition: opacity 0.18s, transform 0.18s;
  text-align: center;
  white-space: nowrap;
}
.btn:hover { opacity: 0.88; transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-wa {
  background: var(--color-wa);
  color: #fff;
}
.btn-gold {
  background: var(--color-gold);
  color: #fff;
}
.btn-outline {
  background: transparent;
  color: var(--color-text-light);
  border: 2px solid var(--color-text-light);
}

/* ── Nav ──────────────────────────────────────────────────── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--color-bg);
  border-bottom: 1px solid var(--color-border);
  padding: 0.9rem 0;
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}

.nav-logo {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--color-text);
  white-space: nowrap;
}
.nav-logo span { color: var(--color-accent); }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  font-family: var(--font-heading);
  font-size: 0.9rem;
  font-weight: 500;
  color: var(--color-text);
  padding: 0.4rem 0.75rem;
  border-radius: var(--radius);
  transition: background 0.15s;
}
.nav-links a:hover,
.nav-links a.active { background: rgba(20,20,19,0.07); }

.nav-cta { margin-left: 0.75rem; }

/* Mobile nav toggle */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.4rem;
  color: var(--color-text);
}
.nav-toggle svg { display: block; }

@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; align-items: flex-start; }
  .nav-links.open {
    display: flex;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--color-bg);
    border-bottom: 1px solid var(--color-border);
    padding: 1rem var(--gutter) 1.5rem;
    gap: 0.25rem;
  }
  .nav-links a { width: 100%; padding: 0.6rem 0.75rem; font-size: 1rem; }
  .nav-toggle { display: block; }
  .nav-cta { display: none; }
  .nav-cta-mobile {
    display: block !important;
    margin-top: 0.75rem;
    width: 100%;
    text-align: center;
  }
}
.nav-cta-mobile { display: none; }

/* ── Hero ─────────────────────────────────────────────────── */
.hero {
  padding: clamp(3.5rem, 8vw, 6rem) 0 clamp(2.5rem, 6vw, 5rem);
}
.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}
.hero-text h1 { margin-bottom: 1.25rem; }
.hero-text p { font-size: 1.1rem; color: var(--color-text-muted); margin-bottom: 2rem; max-width: 52ch; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }

.hero-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-border);
}
.hero-image img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 768px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-image { order: -1; }
}

/* ── USP Cards ────────────────────────────────────────────── */
.usp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 768px) { .usp-grid { grid-template-columns: 1fr; } }

.usp-card {
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  padding: 2rem 1.75rem;
}
.usp-card h3 { margin-bottom: 0.75rem; font-size: 1.1rem; }
.usp-card p { color: var(--color-text-muted); font-size: 0.95rem; max-width: unset; }

/* ── Stats ────────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  text-align: center;
}
@media (max-width: 600px) { .stats-grid { grid-template-columns: 1fr; } }

.stat-item .stat-number {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  color: var(--color-accent);
  display: block;
  line-height: 1;
  margin-bottom: 0.4rem;
}
.stat-item .stat-label {
  font-size: 0.9rem;
  color: var(--color-text-light);
  opacity: 0.8;
}

/* ── Service Cards ────────────────────────────────────────── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .services-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .services-grid { grid-template-columns: 1fr; } }

.service-card {
  border: 1px solid var(--color-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: #fff;
  transition: box-shadow 0.2s;
}
.service-card:hover { box-shadow: 0 4px 20px rgba(0,0,0,0.08); }

.service-card-image {
  aspect-ratio: 16/9;
  background: var(--color-border);
  overflow: hidden;
}
.service-card-image img { width: 100%; height: 100%; object-fit: cover; }

.service-card-body { padding: 1.5rem; }
.service-card-body h3 { margin-bottom: 0.6rem; }
.service-card-body p { color: var(--color-text-muted); font-size: 0.9rem; margin-bottom: 1.25rem; max-width: unset; }

/* ── Service List ─────────────────────────────────────────── */
.service-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0.75rem;
}
@media (max-width: 560px) { .service-list { grid-template-columns: 1fr; } }

.service-list-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-weight: 500;
  font-size: 0.95rem;
}
.service-list-item::before {
  content: '';
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-accent);
  flex-shrink: 0;
}

/* ── Process Steps ────────────────────────────────────────── */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}
@media (max-width: 900px) { .process-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .process-grid { grid-template-columns: 1fr; } }

.process-step { position: relative; }
.process-step .step-num {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 700;
  color: var(--color-accent);
  opacity: 0.25;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.process-step h3 { font-size: 1rem; margin-bottom: 0.4rem; }
.process-step p { font-size: 0.9rem; color: var(--color-text-muted); max-width: unset; }

/* ── CTA Band ─────────────────────────────────────────────── */
.cta-band {
  text-align: center;
  padding: 0;
}
.cta-band h2 { margin-bottom: 1rem; }
.cta-band p { color: var(--color-text-muted); margin: 0 auto 2rem; }

.section-dark .cta-band p { color: rgba(250,249,245,0.75); }

/* ── Contact Block ────────────────────────────────────────── */
.contact-block {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: start;
}
@media (max-width: 768px) { .contact-block { grid-template-columns: 1fr; } }

.contact-info h2 { margin-bottom: 1.25rem; }
.contact-details { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.75rem; }
.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
}
.contact-detail .icon { font-size: 1.1rem; flex-shrink: 0; margin-top: 0.1rem; }
.contact-detail strong { display: block; font-family: var(--font-heading); font-weight: 600; margin-bottom: 0.1rem; }

.map-embed {
  border-radius: var(--radius-lg);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: var(--color-border);
}
.map-embed iframe { width: 100%; height: 100%; border: none; display: block; }

/* ── FAQ ──────────────────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 0.75rem; max-width: 780px; }

.faq-item {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  background: #fff;
}
.section-dark .faq-item {
  background: rgba(255,255,255,0.05);
  border-color: rgba(255,255,255,0.12);
}

.faq-question {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.25rem;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  color: var(--color-text);
}
.section-dark .faq-question { color: var(--color-text-light); }

.faq-icon {
  font-size: 1.25rem;
  color: var(--color-accent);
  flex-shrink: 0;
  transition: transform 0.2s;
  line-height: 1;
}
.faq-item.open .faq-icon { transform: rotate(45deg); }

.faq-answer {
  display: none;
  padding: 0 1.25rem 1.1rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.65;
}
.section-dark .faq-answer { color: rgba(250,249,245,0.7); }
.faq-item.open .faq-answer { display: block; }

/* ── Medical disclaimer ───────────────────────────────────── */
.disclaimer {
  background: rgba(204,51,102,0.07);
  border-left: 3px solid var(--color-accent);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.1rem 1.25rem;
  font-size: 0.9rem;
  color: var(--color-text-muted);
  max-width: 680px;
}
.disclaimer strong { color: var(--color-accent); font-family: var(--font-heading); display: block; margin-bottom: 0.35rem; }

/* ── What to bring list ───────────────────────────────────── */
.bring-list { display: flex; flex-direction: column; gap: 0.6rem; max-width: 560px; }
.bring-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.95rem;
  padding: 0.75rem 1rem;
  background: #fff;
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
}
.bring-list li::before {
  content: '✓';
  color: var(--color-wa);
  font-weight: 700;
  flex-shrink: 0;
}

/* ── Section heading util ─────────────────────────────────── */
.section-heading { margin-bottom: clamp(1.75rem, 4vw, 3rem); }
.section-heading h2 { margin-bottom: 0.6rem; }
.section-heading p { color: var(--color-text-muted); font-size: 1.05rem; }
.section-dark .section-heading p { color: rgba(250,249,245,0.7); }

/* ── Footer ───────────────────────────────────────────────── */
.site-footer {
  background: var(--color-bg-dark);
  color: var(--color-text-light);
  padding: clamp(3rem, 6vw, 5rem) 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1.2fr;
  gap: 2.5rem;
  padding-bottom: 3rem;
}
@media (max-width: 900px) { .footer-grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 560px) { .footer-grid { grid-template-columns: 1fr; } }

.footer-brand .footer-logo {
  font-family: var(--font-heading);
  font-size: 1.2rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: var(--color-text-light);
}
.footer-brand .footer-logo span { color: var(--color-accent); }
.footer-brand p { font-size: 0.9rem; opacity: 0.7; max-width: 26ch; margin-bottom: 0.5rem; }
.footer-brand .hours {
  font-size: 0.85rem;
  opacity: 0.6;
  margin-bottom: 1.25rem;
}
.footer-brand .hours::before { content: '🟢 '; }

.footer-col h4 {
  font-family: var(--font-heading);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0.5;
  margin-bottom: 1rem;
  color: var(--color-text-light);
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col ul li a {
  font-size: 0.9rem;
  opacity: 0.75;
  transition: opacity 0.15s;
}
.footer-col ul li a:hover { opacity: 1; }

.footer-contact { display: flex; flex-direction: column; gap: 0.6rem; }
.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.875rem;
  opacity: 0.75;
  line-height: 1.5;
}
.footer-contact-item .icon { flex-shrink: 0; margin-top: 0.1rem; }

.footer-bar {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 1.25rem 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
  font-size: 0.8rem;
  opacity: 0.5;
}

/* ── Reviews section ──────────────────────────────────────── */
.reviews-section { overflow: hidden; }
.trustindex-wrapper { max-width: var(--max-w); margin: 0 auto; padding: 0 var(--gutter); }

/* ── Utility ──────────────────────────────────────────────── */
.text-center { text-align: center; }
.text-center p { margin-left: auto; margin-right: auto; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 1.5rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 1.5rem; }

/* ── Hero fullwidth (homepage — matches live site) ───────── */
.hero-fullwidth {
  position: relative;
  min-height: 580px;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
  display: flex;
  align-items: center;
}

.hero-overlay {
  background: rgba(250, 249, 245, 0.88);
  max-width: 520px;
  padding: clamp(2.5rem, 5vw, 4rem) clamp(2rem, 4vw, 3.5rem);
  margin-left: clamp(1.25rem, 5vw, 6rem);
}

.hero-overlay h1 {
  font-size: clamp(1.8rem, 3.5vw, 3rem);
  margin-bottom: 1.1rem;
  line-height: 1.15;
}

.hero-overlay p {
  font-size: 1rem;
  color: var(--color-text-muted);
  margin-bottom: 1.75rem;
  max-width: unset;
}

@media (max-width: 768px) {
  .hero-fullwidth { min-height: 420px; background-position: right center; }
  .hero-overlay { margin: 0; max-width: 100%; background: rgba(250,249,245,0.93); }
}

/* ── USP Split (homepage — left text / right image) ──────── */
.usp-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}

@media (max-width: 768px) {
  .usp-split { grid-template-columns: 1fr; gap: 2rem; }
  .usp-split-image { order: -1; }
}

.usp-title {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.2rem);
  color: var(--color-gold);
  margin-bottom: 1.75rem;
  line-height: 1.2;
}

.usp-item { margin-bottom: 1.25rem; }
.usp-item h3 {
  font-family: var(--font-heading);
  font-size: 1rem;
  font-weight: 600;
  color: var(--color-gold);
  margin-bottom: 0.35rem;
}
.usp-item p { color: var(--color-text-muted); font-size: 0.95rem; max-width: unset; }

.usp-split-image {
  border-radius: var(--radius-lg);
  overflow: hidden;
}
.usp-split-image img { width: 100%; height: auto; display: block; }

/* ── Stats bar (homepage — white bg, horizontal dividers) ── */
.stats-section { padding: 2rem 0; }

.stats-bar {
  display: flex;
  align-items: center;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
  padding: 1.5rem 0;
}

.stat-bar-item {
  flex: 1;
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  padding: 0 1.5rem;
}

.stat-bar-num {
  font-family: var(--font-heading);
  font-size: clamp(1.6rem, 3vw, 2.5rem);
  font-weight: 700;
  color: var(--color-gold);
  white-space: nowrap;
}

.stat-bar-label {
  font-size: 0.9rem;
  color: var(--color-text-muted);
  line-height: 1.4;
}

.stat-bar-divider {
  width: 1px;
  height: 3rem;
  background: var(--color-border);
  flex-shrink: 0;
}

@media (max-width: 600px) {
  .stats-bar { flex-direction: column; gap: 1.25rem; }
  .stat-bar-divider { width: 100%; height: 1px; }
  .stat-bar-item { padding: 0; justify-content: center; }
}

/* ── Page hero (inner pages) ──────────────────────────────── */
.page-hero {
  padding: clamp(2.5rem, 5vw, 4rem) 0 clamp(2rem, 4vw, 3rem);
  border-bottom: 1px solid var(--color-border);
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.page-hero h1 { margin-bottom: 1rem; }
.page-hero p { font-size: 1.1rem; color: var(--color-text-muted); max-width: 60ch; margin-bottom: 1.75rem; }
