/* ==========================================================================
   Soleil Airbrush Tanning - static design system
   Ported from Jackson's WP theme (Desktop/soleil). Rose pink + charcoal,
   "Cinematic Luxury". Section rhythm: label + heading + italic sub + divider.
   ========================================================================== */

:root {
  /* brand */
  --rose:          #D4789B;
  --rose-light:    #E8A0B4;
  --rose-dark:     #B85578;
  --magenta:       #8B3A50;
  --magenta-light: #A64D6B;
  --charcoal:      #1A1A1A;
  --charcoal-2:    #2D2D2D;
  --black:         #0D0D0D;
  --cream:         #FFF5F7;
  --blush:         #FDE8EE;
  --peach:         #F8D0DA;
  --champagne:     #F5C6D6;
  --rose-glow:     rgba(212, 120, 155, 0.25);
  /* grays */
  --g100: #F9F9F9; --g200: #E8E8E8; --g300: #D1D1D1;
  --g400: #A0A0A0; --g500: #717171; --g600: #4A4A4A;
  /* type */
  --font-display: 'Outfit', sans-serif;
  --font-sub: 'DM Sans', sans-serif;
  --font-body: 'Montserrat', sans-serif;
  /* shape + motion */
  --radius: 12px;
  --radius-lg: 20px;
  --shadow: 0 12px 40px rgba(13, 13, 13, 0.10);
  --shadow-glow: 0 10px 34px var(--rose-glow);
  --ease: cubic-bezier(0.16, 1, 0.3, 1);
  --container: 1180px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.7;
  color: var(--charcoal);
  background: #fff;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; display: block; }
a { color: var(--rose-dark); }

.container { max-width: var(--container); margin: 0 auto; padding: 0 24px; }

/* ---------- announcement bar ---------- */
.announce {
  background: var(--charcoal);
  color: var(--champagne);
  text-align: center;
  font-family: var(--font-sub);
  font-size: 13px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 9px 16px;
}
.announce a { color: var(--rose-light); text-decoration: none; font-weight: 600; }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 60;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--g200);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 72px; }
.brand { font-family: var(--font-display); font-weight: 600; font-size: 24px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--charcoal); text-decoration: none; }
.brand span { color: var(--rose); }
.nav-links { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.nav-links a { font-family: var(--font-sub); font-size: 14px; font-weight: 500; letter-spacing: 0.04em; color: var(--charcoal); text-decoration: none; transition: color 0.2s; }
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--rose-dark); }
.nav-toggle { display: none; background: none; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--charcoal); margin: 5px 0; transition: 0.25s var(--ease); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-sub); font-weight: 600; font-size: 15px;
  padding: 14px 30px; border-radius: 999px; text-decoration: none;
  transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.2s;
  border: 2px solid transparent; cursor: pointer; line-height: 1.2;
}
.btn-primary { background: var(--rose); color: #fff; box-shadow: var(--shadow-glow); }
.btn-primary:hover { background: var(--rose-dark); transform: translateY(-2px); }
.btn-dark { background: var(--charcoal); color: #fff; }
.btn-dark:hover { background: var(--black); transform: translateY(-2px); }
.btn-outline { border-color: var(--charcoal); color: var(--charcoal); background: transparent; }
.btn-outline:hover { background: var(--charcoal); color: #fff; }
.btn-outline-white { border-color: #fff; color: #fff; background: transparent; }
.btn-outline-white:hover { background: #fff; color: var(--charcoal); }
.btn .arrow { transition: transform 0.25s var(--ease); }
.btn:hover .arrow { transform: translateX(4px); }

/* ---------- hero ---------- */
.hero {
  position: relative; display: flex; align-items: center;
  min-height: 86vh; color: #fff; overflow: hidden;
}
.hero.hero-sub { min-height: 46vh; }
.hero-media { position: absolute; inset: 0; }
.hero-media img { width: 100%; height: 100%; object-fit: cover; }
.hero-scrim { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(13,13,13,0.82) 0%, rgba(139,58,80,0.55) 60%, rgba(212,120,155,0.35) 100%); }
.hero .container { position: relative; z-index: 2; }
.hero-label { font-family: var(--font-sub); font-size: 13px; letter-spacing: 0.28em; text-transform: uppercase; color: var(--rose-light); margin: 0 0 18px; }
.hero h1 { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 6.5vw, 72px); line-height: 1.05; margin: 0 0 18px; }
.hero-sub-text { font-family: var(--font-sub); font-style: italic; font-size: clamp(17px, 2.2vw, 21px); color: rgba(255,255,255,0.92); max-width: 560px; margin: 0 0 32px; }
.hero-actions { display: flex; gap: 16px; flex-wrap: wrap; }
.hero-proof { display: flex; gap: 28px; flex-wrap: wrap; margin-top: 40px; font-family: var(--font-sub); font-size: 14px; color: rgba(255,255,255,0.9); }
.hero-proof strong { display: block; font-family: var(--font-display); font-size: 26px; font-weight: 600; color: #fff; }

/* ---------- section pattern ---------- */
section.block { padding: 88px 0; }
section.block.cream { background: var(--cream); }
section.block.blush { background: var(--blush); }
section.block.dark { background: var(--charcoal); color: #fff; }
.sec-head { max-width: 680px; margin: 0 auto 52px; text-align: center; }
.sec-head.left { margin-left: 0; text-align: left; }
.sec-label { font-family: var(--font-sub); font-size: 13px; font-weight: 600; letter-spacing: 0.26em; text-transform: uppercase; color: var(--rose-dark); margin: 0 0 12px; }
.dark .sec-label { color: var(--rose-light); }
.sec-head h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); line-height: 1.15; margin: 0 0 12px; }
.sec-sub { font-family: var(--font-sub); font-style: italic; font-size: 18px; color: var(--g500); margin: 0; }
.dark .sec-sub { color: var(--g300); }
.divider { width: 64px; height: 3px; background: linear-gradient(90deg, var(--rose), var(--champagne)); border-radius: 2px; margin: 22px auto 0; }
.sec-head.left .divider { margin-left: 0; }

/* ---------- cards / grids ---------- */
.grid { display: grid; gap: 28px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.card {
  background: #fff; border: 1px solid var(--g200); border-radius: var(--radius-lg);
  padding: 34px 28px; transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.card:hover { transform: translateY(-6px); box-shadow: var(--shadow); }
.dark .card { background: var(--charcoal-2); border-color: #3a3a3a; color: #fff; }
.card h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 0 0 10px; }
.card p { font-size: 15px; color: var(--g600); margin: 0; }
.dark .card p { color: var(--g300); }
.card .icon { width: 46px; height: 46px; border-radius: 50%; background: var(--blush); color: var(--rose-dark); display: flex; align-items: center; justify-content: center; font-size: 20px; margin-bottom: 18px; }

/* service cards */
.svc-card { position: relative; overflow: hidden; display: flex; flex-direction: column; align-items: flex-start; }
.svc-badge { order: -1; align-self: flex-start; background: var(--rose); color: #fff; font-family: var(--font-sub); font-size: 11px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 5px 12px; border-radius: 999px; margin-bottom: 14px; }
.svc-price { font-family: var(--font-display); font-weight: 600; font-size: 34px; color: var(--rose-dark); margin: 14px 0 4px; }
.svc-price small { font-size: 15px; color: var(--g500); font-weight: 400; }
.svc-meta { font-family: var(--font-sub); font-size: 13px; color: var(--g500); letter-spacing: 0.06em; text-transform: uppercase; }
.svc-card .card-link { margin-top: auto; padding-top: 18px; display: inline-block; font-family: var(--font-sub); font-weight: 600; font-size: 14px; color: var(--rose-dark); text-decoration: none; }
.svc-card p:last-of-type { margin-bottom: 0; }
.svc-card .card-link:hover { text-decoration: underline; }

/* ---------- pricing table ---------- */
.price-table { width: 100%; border-collapse: collapse; background: var(--charcoal); color: #fff; border-radius: var(--radius-lg); overflow: hidden; }
.price-table th, .price-table td { padding: 18px 22px; text-align: left; }
.price-table thead th { font-family: var(--font-sub); font-size: 12px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--rose-light); border-bottom: 1px solid #3a3a3a; }
.price-table tbody tr { border-bottom: 1px solid #2f2f2f; }
.price-table tbody tr:last-child { border-bottom: 0; }
.price-table td.price { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--rose-light); white-space: nowrap; }
.price-table .svc-name { font-family: var(--font-display); font-weight: 600; font-size: 17px; }
.price-table .svc-note { font-size: 13px; color: var(--g400); }

/* ---------- steps / timeline ---------- */
.steps { counter-reset: step; }
.step { display: flex; gap: 22px; padding: 22px 0; border-bottom: 1px solid var(--g200); }
.step:last-child { border-bottom: 0; }
.step-num { font-family: var(--font-display); font-weight: 600; font-size: 15px; color: var(--rose-dark); background: var(--blush); width: 44px; height: 44px; border-radius: 50%; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.step h3 { font-family: var(--font-display); font-size: 18px; font-weight: 600; margin: 8px 0 6px; }
.step p { font-size: 15px; color: var(--g600); margin: 0; }

/* ---------- FAQ accordion ---------- */
.faq-item { border: 1px solid var(--g200); border-radius: var(--radius); margin-bottom: 14px; background: #fff; }
.faq-item summary { list-style: none; cursor: pointer; padding: 20px 24px; font-family: var(--font-display); font-weight: 600; font-size: 17px; display: flex; justify-content: space-between; align-items: center; gap: 16px; }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: "+"; font-size: 22px; color: var(--rose-dark); transition: transform 0.25s var(--ease); }
.faq-item[open] summary::after { transform: rotate(45deg); }
.faq-a { padding: 0 24px 20px; font-size: 15px; color: var(--g600); }

/* ---------- gallery ---------- */
.gal-filters { display: flex; gap: 10px; flex-wrap: wrap; justify-content: center; margin-bottom: 36px; }
.gal-filters button { font-family: var(--font-sub); font-weight: 600; font-size: 13px; letter-spacing: 0.06em; padding: 9px 20px; border-radius: 999px; border: 1.5px solid var(--g300); background: #fff; color: var(--g600); cursor: pointer; transition: all 0.2s; }
.gal-filters button:hover, .gal-filters button.active { background: var(--rose); border-color: var(--rose); color: #fff; }
.gal-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 14px; }
.gal-item { position: relative; border-radius: var(--radius); overflow: hidden; aspect-ratio: 3 / 4; }
.gal-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s var(--ease); }
.gal-item:hover img { transform: scale(1.05); }
.gal-cap { position: absolute; inset: auto 0 0 0; padding: 24px 14px 12px; background: linear-gradient(transparent, rgba(13,13,13,0.75)); color: #fff; font-family: var(--font-sub); font-size: 13px; letter-spacing: 0.04em; }

/* ---------- reviews / proof ---------- */
.proof-band { display: flex; align-items: center; justify-content: center; gap: 14px; flex-wrap: wrap; font-family: var(--font-sub); font-size: 15px; }
.stars { color: var(--rose); letter-spacing: 2px; font-size: 18px; }

/* ---------- CTA band ---------- */
.cta-band { background: linear-gradient(135deg, var(--magenta), var(--rose)); color: #fff; text-align: center; padding: 84px 24px; }
.cta-band h2 { font-family: var(--font-display); font-weight: 600; font-size: clamp(30px, 4vw, 44px); margin: 0 0 14px; }
.cta-band p { font-family: var(--font-sub); font-style: italic; font-size: 18px; margin: 0 0 30px; color: rgba(255,255,255,0.92); }

/* ---------- forms ---------- */
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.form-grid .full { grid-column: 1 / -1; }
label { font-family: var(--font-sub); font-weight: 600; font-size: 13px; letter-spacing: 0.05em; display: block; margin-bottom: 6px; }
input, select, textarea {
  width: 100%; font-family: var(--font-body); font-size: 15px; color: var(--charcoal);
  padding: 13px 16px; border: 1.5px solid var(--g300); border-radius: var(--radius); background: #fff;
}
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--rose); box-shadow: 0 0 0 3px var(--rose-glow); }
.hp { position: absolute; left: -9999px; opacity: 0; }
.form-status { font-family: var(--font-sub); font-size: 14px; margin-top: 12px; min-height: 20px; }
.form-status.ok { color: #2e7d32; }
.form-status.err { color: #b3261e; }

/* ---------- footer ---------- */
.site-footer { background: var(--charcoal); color: var(--g300); padding: 64px 0 0; font-size: 14px; }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr 1.2fr; gap: 40px; padding-bottom: 44px; }
.site-footer h4 { font-family: var(--font-display); font-weight: 600; font-size: 15px; letter-spacing: 0.14em; text-transform: uppercase; color: #fff; margin: 0 0 16px; }
.site-footer ul { list-style: none; margin: 0; padding: 0; }
.site-footer li { margin-bottom: 9px; }
.site-footer a { color: var(--g300); text-decoration: none; }
.site-footer a:hover { color: var(--rose-light); }
.footer-brand { font-family: var(--font-display); font-size: 22px; letter-spacing: 0.16em; text-transform: uppercase; color: #fff; }
.footer-brand span { color: var(--rose); }
.footer-tag { font-family: var(--font-sub); font-style: italic; margin: 12px 0 0; }
.footer-legal { border-top: 1px solid #2f2f2f; padding: 20px 0; display: flex; justify-content: space-between; gap: 16px; flex-wrap: wrap; font-size: 13px; color: var(--g400); }
.footer-legal a { color: var(--g400); }

/* ---------- sticky mobile book bar ---------- */
.book-bar { position: fixed; left: 0; right: 0; bottom: 0; z-index: 70; display: none; background: var(--charcoal); padding: 10px 16px; align-items: center; justify-content: space-between; gap: 12px; }
.book-bar span { color: #fff; font-family: var(--font-sub); font-size: 13px; }
.book-bar .btn { padding: 10px 22px; font-size: 14px; }

/* ---------- back to top ---------- */
#backtotop { position: fixed; right: 22px; bottom: 22px; z-index: 65; width: 46px; height: 46px; border-radius: 50%; border: 0; background: var(--rose); color: #fff; font-size: 20px; cursor: pointer; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; box-shadow: var(--shadow-glow); }
#backtotop.show { opacity: 1; pointer-events: auto; }
#backtotop:hover { background: var(--rose-dark); transform: translateY(-3px); }

/* ---------- breadcrumbs ---------- */
.crumbs { font-family: var(--font-sub); font-size: 13px; color: var(--g500); padding: 18px 0 0; }
.crumbs a { color: var(--g500); text-decoration: none; }
.crumbs a:hover { color: var(--rose-dark); }

/* ---------- article/prose ---------- */
.prose { max-width: 760px; margin: 0 auto; }
.prose h2 { font-family: var(--font-display); font-weight: 600; font-size: 28px; margin: 44px 0 14px; }
.prose h3 { font-family: var(--font-display); font-weight: 600; font-size: 21px; margin: 32px 0 10px; }
.prose p, .prose li { font-size: 16px; color: var(--g600); }
.prose .lead { font-family: var(--font-sub); font-style: italic; font-size: 19px; color: var(--charcoal); }

/* ---------- responsive ---------- */
@media (max-width: 980px) {
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .gal-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 720px) {
  section.block { padding: 64px 0; }
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
  .gal-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .nav-links {
    display: none; position: absolute; top: 72px; left: 0; right: 0;
    background: #fff; flex-direction: column; align-items: flex-start;
    padding: 18px 24px 24px; gap: 16px; border-bottom: 1px solid var(--g200); box-shadow: var(--shadow);
  }
  .nav-links.open { display: flex; }
  .nav-toggle { display: block; }
  .book-bar { display: flex; }
  body { padding-bottom: 62px; }
  #backtotop { bottom: 78px; }
}
