/* ===================================================================
   STAR LOOKS UNISEX SALON — style.css
   Warm Gradient Luxury design system
=================================================================== */

:root {
  /* Base palette */
  --ivory: #FBF8F3;
  --cream: #F4EDE4;
  --beige: #E9DED3;
  --champagne: #CDB28E;
  --champagne-light: #E7D1A8;
  --champagne-dark: #B99768;
  --blush: #E8D5C5;
  --peach: #E9CDBD;
  --peach-dark: #D7B29F;
  --cocoa: #2B2521;
  --cocoa-mid: #211C19;
  --cocoa-dark: #171412;
  --charcoal: #24211F;
  --muted: #756D66;
  --white: #FFFFFF;

  /* Gradients */
  --gradient-main: linear-gradient(135deg, #FBF8F3 0%, #F4EDE4 45%, #E9DED3 100%);
  --gradient-soft: linear-gradient(135deg, #F7F0E8 0%, #E8D5C5 50%, #D7BDAA 100%);
  --gradient-peach: linear-gradient(135deg, #F6E9DF 0%, #E9CDBD 50%, #D7B29F 100%);
  --gradient-accent: linear-gradient(135deg, #CDB28E 0%, #E7D1A8 50%, #B99768 100%);
  --gradient-dark: linear-gradient(135deg, #2B2521 0%, #211C19 50%, #171412 100%);
  --gradient-text: linear-gradient(90deg, #8D6A4C, #C5A06D, #8A6548);

  /* Type */
  --font-display: "Playfair Display", "Georgia", serif;
  --font-body: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;

  /* Layout */
  --max-width: 1280px;
  --pad-inline: 20px;
  --radius-card: 16px;
  --radius-pill: 999px;

  /* Motion */
  --ease-premium: cubic-bezier(0.22, 1, 0.36, 1);
  --dur-base: 700ms;

  /* Brand accent (from logo) */
  --brand-pink: #EA0B8C;
  --brand-pink-soft: rgba(234, 11, 140, 0.12);

  /* Matte black (flatter than --gradient-dark, used for premium accent bands) */
  --gradient-matte: linear-gradient(160deg, #1C1A19 0%, #141210 60%, #0F0D0C 100%);
}

@media (min-width: 768px) {
  :root { --pad-inline: 40px; }
}
@media (min-width: 1280px) {
  :root { --pad-inline: 48px; }
}

/* ===================== RESET ===================== */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--charcoal);
  background: var(--ivory);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
#main { overflow-x: hidden; }
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; margin: 0; padding: 0; }
h1, h2, h3, p { margin: 0; }
button { font-family: inherit; cursor: pointer; }

.container {
  width: 100%;
  max-width: var(--max-width);
  margin-inline: auto;
  padding-inline: var(--pad-inline);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  background: var(--cocoa);
  color: var(--ivory);
  padding: 12px 20px;
  z-index: 999;
  border-radius: 0 0 8px 0;
}
.skip-link:focus {
  left: 0;
}

:focus-visible {
  outline: 2px solid var(--champagne-dark);
  outline-offset: 3px;
}

/* ===================== TYPE HELPERS ===================== */
.eyebrow {
  font-family: var(--font-body);
  font-size: 0.8rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  font-weight: 600;
  margin-bottom: 14px;
}
.eyebrow--light { color: var(--champagne-light); }

.section-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.9rem, 4.5vw, 2.8rem);
  line-height: 1.15;
  color: var(--cocoa);
}
.section-heading em {
  font-style: italic;
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.body-copy {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 46ch;
}

.section-head { margin-bottom: 48px; }

/* ===================== BUTTONS ===================== */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 14px 30px;
  border-radius: var(--radius-pill);
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  border: 1px solid transparent;
  transition: transform 240ms var(--ease-premium), box-shadow 240ms var(--ease-premium), background-position 400ms ease;
  white-space: nowrap;
}
.btn-primary {
  background: var(--gradient-accent);
  background-size: 160% 160%;
  background-position: 0% 50%;
  color: var(--cocoa-dark);
  box-shadow: 0 8px 20px -10px rgba(185, 151, 104, 0.55);
}
.btn-primary:hover {
  transform: translateY(-2px);
  background-position: 100% 50%;
  box-shadow: 0 12px 26px -10px rgba(185, 151, 104, 0.65);
}
.btn-primary:active { transform: translateY(0) scale(0.98); }

.btn-secondary {
  background: transparent;
  border-color: rgba(205, 178, 142, 0.55);
  color: var(--cocoa);
}
.btn-secondary:hover {
  background: var(--gradient-soft);
  transform: translateY(-2px);
}
.btn-secondary--dark {
  color: var(--ivory);
  border-color: rgba(231, 209, 168, 0.4);
}
.btn-secondary--dark:hover {
  background: rgba(231, 209, 168, 0.12);
}

/* ===================== TOP OFFER STRIP ===================== */
.offer-strip {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  text-align: center;
  padding: 12px 20px;
  background: var(--gradient-matte);
  color: var(--ivory);
  font-size: 0.85rem;
  font-weight: 600;
  transition: background 220ms ease;
  position: relative;
  z-index: 101;
}
.offer-strip:hover { background: linear-gradient(160deg, #232120, #17150F); }
.offer-strip-badge {
  background: var(--gradient-accent);
  color: var(--cocoa-dark);
  padding: 4px 12px;
  border-radius: var(--radius-pill);
  font-size: 0.7rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  white-space: nowrap;
}
.offer-strip-text strong { color: var(--champagne-light); }
.offer-strip-cta {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--brand-pink);
  border-bottom: 1px solid var(--brand-pink);
  white-space: nowrap;
  transition: color 220ms ease, border-color 220ms ease;
}
.offer-strip:hover .offer-strip-cta { color: var(--champagne-light); border-color: var(--champagne-light); }

@media (max-width: 560px) {
  .offer-strip-cta { display: none; }
}

/* ===================== HEADER ===================== */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(251, 248, 243, 0.4);
  transition: background 320ms ease, box-shadow 320ms ease, padding 320ms ease, border-color 320ms ease;
  border-bottom: 1px solid transparent;
}
@supports (backdrop-filter: blur(1px)) {
  .site-header { backdrop-filter: blur(10px); }
}
.site-header.is-scrolled {
  background: rgba(251, 248, 243, 0.86);
  border-color: rgba(205, 178, 142, 0.35);
  box-shadow: 0 8px 24px -18px rgba(43, 37, 33, 0.35);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding-block: 22px;
  transition: padding 320ms ease;
}
.site-header.is-scrolled .header-inner { padding-block: 14px; }
.site-header.is-scrolled .brand-logo { height: 50px; }

.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-logo {
  height: 64px;
  width: auto;
  display: block;
  transition: height 320ms ease;
}
.brand-logo--mobile { height: 56px; }

.nav-desktop { display: none; }
.nav-desktop ul { display: flex; gap: 32px; align-items: center; }
.nav-link {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--charcoal);
  position: relative;
  padding-bottom: 4px;
  transition: color 320ms var(--ease-premium), letter-spacing 320ms var(--ease-premium);
}
.nav-link::after {
  content: "";
  position: absolute;
  left: 50%; right: 50%;
  bottom: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--champagne-dark), var(--brand-pink));
  transition: left 380ms var(--ease-premium), right 380ms var(--ease-premium);
}
.nav-link:hover,
.nav-link.is-active {
  color: var(--brand-pink);
  letter-spacing: 0.07em;
}
.nav-link:hover::after,
.nav-link.is-active::after { left: 0; right: 0; }

.nav-cta {
  display: inline-flex;
  padding: 9px 18px;
  font-size: 0.82rem;
}

.menu-toggle {
  background: none;
  border: none;
  padding: 8px;
  display: inline-flex;
}
.menu-toggle-icon { display: flex; flex-direction: column; gap: 5px; width: 22px; }
.menu-toggle-icon span {
  display: block;
  height: 1.5px;
  background: var(--cocoa);
  border-radius: 2px;
  transition: transform 260ms ease, opacity 200ms ease;
}

@media (min-width: 900px) {
  .nav-desktop { display: block; }
  .nav-cta { padding: 14px 30px; font-size: 0.9rem; }
  .menu-toggle { display: none; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 999;
  isolation: isolate;
  background-color: #FBF8F3;
  background-image: var(--gradient-main);
  padding: 24px var(--pad-inline) 40px;
  display: flex;
  flex-direction: column;
  visibility: hidden;
  transform: translateY(-12px);
  transition: transform 320ms var(--ease-premium), visibility 0s linear 320ms;
  pointer-events: none;
}
.mobile-menu[data-open="true"] {
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
  transition: transform 320ms var(--ease-premium), visibility 0s linear 0s;
}
.mobile-menu[hidden] { display: flex; }

.mobile-menu-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.menu-close {
  background: none;
  border: none;
  font-size: 2rem;
  line-height: 1;
  color: var(--cocoa);
}
.mobile-nav-list { display: flex; flex-direction: column; gap: 26px; margin-bottom: 40px; }
.mobile-nav-link {
  font-family: var(--font-display);
  font-size: 1.9rem;
  font-weight: 600;
  color: var(--cocoa);
  transition: color 220ms ease;
}
.mobile-nav-link.is-active { color: var(--brand-pink); }
.mobile-menu-cta { align-self: flex-start; }
.no-scroll { overflow: hidden; height: 100%; }

/* ===================== HERO ===================== */
.hero {
  position: relative;
  padding-top: 56px;
  padding-bottom: 72px;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 15% 20%, rgba(231, 209, 168, 0.35), transparent 35%),
    radial-gradient(circle at 85% 70%, rgba(233, 205, 189, 0.4), transparent 35%),
    var(--gradient-main);
  background-size: 140% 140%, 140% 140%, 100% 100%;
  animation: heroDrift 22s ease-in-out infinite alternate;
}
@keyframes heroDrift {
  from { background-position: 0% 0%, 100% 100%, 0 0; }
  to { background-position: 10% 15%, 85% 80%, 0 0; }
}

.hero-inner {
  display: flex;
  flex-direction: column-reverse;
  gap: 36px;
}
.hero-text { max-width: 560px; }
.hero-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 9vw, 4.6rem);
  line-height: 1.05;
  letter-spacing: -0.01em;
  color: var(--cocoa);
  margin-bottom: 20px;
}
.hero-heading em {
  font-style: italic;
  font-weight: 500;
}
.hero-scramble-line--em .hero-word {
  background: var(--gradient-text);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-sub {
  font-size: 1.05rem;
  line-height: 1.6;
  color: var(--muted);
  max-width: 40ch;
  margin-bottom: 28px;
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 14px; }

/* Below 900px, hero and about are stacked into a single column
   (image full-width, text full-width beneath) - center both to match
   every other section at this width. At 900px+ they switch back to a
   side-by-side layout, so this only applies while stacked. */
@media (max-width: 899px) {
  .hero-text { text-align: center; margin-inline: auto; }
  .hero-sub { margin-inline: auto; }
  .hero-actions { justify-content: center; }
  .about-text { text-align: center; margin-inline: auto; }
  .about-text .body-copy { margin-inline: auto; }
}

.hero-media { position: relative; }
.hero-image {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  object-position: top center;
  border-radius: 16px;
  border: 1px solid rgba(205, 178, 142, 0.35);
  box-shadow: 0 30px 60px -30px rgba(43, 37, 33, 0.45);
  background: var(--gradient-soft);
}

@media (min-width: 900px) {
  .hero { padding-top: 40px; padding-bottom: 64px; }
  .hero-inner {
    flex-direction: row;
    align-items: center;
    gap: 48px;
  }
  .hero-text { flex: 1 1 auto; max-width: 520px; }
  .hero-media { flex: 0 0 42%; }
}
@media (min-width: 1200px) {
  .hero-media { flex: 0 0 40%; }
  .hero-image { max-height: 620px; }
}

/* Reveal system */
.reveal, .reveal-left, .reveal-right, .reveal-scale {
  opacity: 0;
  transition: opacity var(--dur-base) var(--ease-premium), transform var(--dur-base) var(--ease-premium);
  transition-delay: var(--reveal-delay, 0ms);
}
.reveal { transform: translateY(20px); }
.reveal-left { transform: translateX(-24px); }
.reveal-right { transform: translateX(24px); }
.reveal-scale { transform: scale(0.96) translateY(14px); }
.reveal.is-visible,
.reveal-left.is-visible,
.reveal-right.is-visible,
.reveal-scale.is-visible {
  opacity: 1;
  transform: none;
}

/* ===================== HERO ENTRANCE (pure CSS, plays on load) ===================== */
@keyframes heroFadeUp {
  from { opacity: 0; transform: translateY(20px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes heroFadeScale {
  from { opacity: 0; transform: scale(0.96) translateY(14px); }
  to   { opacity: 1; transform: scale(1) translateY(0); }
}
.hero-fade {
  opacity: 0;
  animation: heroFadeUp var(--dur-base) var(--ease-premium) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}
.hero-fade-scale {
  opacity: 0;
  animation: heroFadeScale var(--dur-base) var(--ease-premium) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

/* Supporting line: starts at ~60% opacity, settles to 100% over ~2.4s - subtle, not a hard pop-in */
@keyframes heroSubSettle {
  from { opacity: 0.6; transform: translateY(6px); }
  to   { opacity: 1; transform: translateY(0); }
}
.hero-fade-in {
  opacity: 0.6;
  animation: heroSubSettle 2.4s var(--ease-premium) forwards;
  animation-delay: var(--reveal-delay, 0ms);
}

/* Heading word-scramble: each word starts jumbled/displaced to the left
   and settles into place - smooth, one-time, plays on load */
.hero-scramble { overflow: visible; }
.hero-scramble-line { display: inline-block; }
.hero-word {
  display: inline-block;
  opacity: 0;
  filter: blur(2px);
  transform: translateX(-38px) rotate(-3deg);
  animation: heroWordSettle 900ms var(--ease-premium) forwards;
}
@keyframes heroWordSettle {
  0%   { opacity: 0; filter: blur(3px); transform: translateX(-42px) rotate(-4deg); }
  60%  { opacity: 1; filter: blur(0.5px); }
  100% { opacity: 1; filter: blur(0); transform: translateX(0) rotate(0deg); }
}
.hero-scramble-line .hero-word:nth-child(1) { animation-delay: 60ms; }
.hero-scramble-line .hero-word:nth-child(2) { animation-delay: 190ms; }
.hero-scramble-line--em .hero-word:nth-child(1) { animation-delay: 320ms; }
.hero-scramble-line--em .hero-word:nth-child(2) { animation-delay: 430ms; }

/* ===================== ABOUT ===================== */
.about {
  background: var(--gradient-soft);
  padding-block: 72px;
}
.about-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}
.about-media { position: relative; }
.about-media-decor {
  position: absolute;
  inset: -18px auto auto -18px;
  width: 70%;
  height: 70%;
  background: var(--gradient-accent);
  border-radius: 16px;
  opacity: 0.35;
  z-index: 0;
  filter: blur(2px);
}
.about-media img {
  display: block;
  position: relative;
  z-index: 1;
  width: 100%;
  height: auto;
  aspect-ratio: 4/5;
  object-fit: cover;
  border-radius: 16px;
  border: 1px solid rgba(205, 178, 142, 0.35);
  box-shadow: 0 24px 48px -28px rgba(43, 37, 33, 0.4);
}
.about-text .body-copy {
  margin-top: 18px;
  font-size: 1.05rem;
  max-width: 50ch;
}

@media (min-width: 900px) {
  .about { padding-block: 100px; }
  .about-inner { flex-direction: row; align-items: center; gap: 64px; }
  .about-media { flex: 0 0 auto; }
  .about-media img {
    width: auto;
    max-width: 100%;
    height: min(66vh, 560px);
  }
  .about-text { flex: 1 1 auto; max-width: 620px; }
  .about-text .section-heading { font-size: clamp(2rem, 3.4vw, 3.1rem); }
}

/* ===================== SCISSOR-CUT ACCENT (hero + about images) =====================
   Scissor travels the edge once, a thin cut line runs directly through
   its center, then both STAY visible at the finished position (no fade-out).
   Re-triggered by JS each time the image re-enters view (scroll away and
   back, or return to the section). Hero: bottom -> top, gold. About:
   top -> bottom, ivory (for contrast against the darker photo). */
.cut-trace {
  position: absolute;
  top: 16px;
  bottom: 16px;
  width: 1.5px;
  z-index: 2;
  opacity: 0;
  pointer-events: none;
  background-image: repeating-linear-gradient(to bottom, currentColor 0 5px, transparent 5px 12px);
}
/* Anchored on the same axis as the scissor's visual center (left/right
   8px + half the 26px icon box = 21px) so the line runs through the
   middle of the blades, not beside them. */
.cut-trace--left  { left: 21px;  color: var(--champagne-light); transform-origin: bottom; }
.cut-trace--right { right: 21px; color: rgba(251, 248, 243, 0.85); transform-origin: top; }

.cut-scissor {
  position: absolute;
  width: 26px;
  height: 26px;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 3;
  color: var(--champagne-light);
  opacity: 0;
  filter: drop-shadow(0 2px 5px rgba(0, 0, 0, 0.5));
}
.cut-scissor--up   { left: 8px; top: calc(100% - 34px); transform: rotate(90deg); }
.cut-scissor--down { left: auto; right: 8px; top: -8px; transform: rotate(-90deg); color: rgba(251, 248, 243, 0.9); }

@keyframes cutTraceGrow {
  0%   { opacity: 0; transform: scaleY(0); }
  15%  { opacity: 0.85; }
  100% { opacity: 0.85; transform: scaleY(1); }
}
@keyframes cutScissorTravelUp {
  0%   { opacity: 0; top: calc(100% - 34px); }
  12%  { opacity: 1; }
  100% { opacity: 1; top: 10px; }
}
@keyframes cutScissorTravelDown {
  0%   { opacity: 0; top: -8px; }
  12%  { opacity: 1; }
  100% { opacity: 1; top: calc(100% - 34px); }
}

.hero-media.is-cutting .cut-trace--left,
.about-media.is-cutting .cut-trace--right {
  animation: cutTraceGrow 1.6s var(--ease-premium) forwards;
}
.hero-media.is-cutting .cut-scissor--up {
  animation: cutScissorTravelUp 1.6s var(--ease-premium) forwards;
}
.about-media.is-cutting .cut-scissor--down {
  animation: cutScissorTravelDown 1.6s var(--ease-premium) forwards;
}

@media (max-width: 480px) {
  .cut-scissor, .cut-trace { display: none; } /* keep small screens uncluttered */
}

/* ===================== SCROLL-LINKED SLIDE (About text) =====================
   Reverses as you scroll back up, plays only while scrolling - not a
   one-time reveal. Falls back to the existing IntersectionObserver
   reveal system (added via JS) in browsers without scroll-timeline. */
@supports (animation-timeline: view()) {
  .scroll-slide {
    opacity: 0;
    transform: translateX(36px);
    animation: scrollSlideIn linear both;
    animation-timeline: view();
    animation-range: entry 5% cover 35%;
  }
  @keyframes scrollSlideIn {
    from { opacity: 0; transform: translateX(36px); }
    to   { opacity: 1; transform: translateX(0); }
  }
}
@media (prefers-reduced-motion: reduce) {
  .scroll-slide { opacity: 1 !important; transform: none !important; animation: none !important; }
}

/* ===================== SERVICES ===================== */
.services { padding-block: 72px; background: var(--gradient-main); }
.services .section-head { text-align: center; }

.scissor-divider {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 40px;
}
.scissor-line {
  flex: 1;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185,151,104,0.5), transparent);
  transform: scaleX(0);
  transition: transform 900ms var(--ease-premium);
}
/* Left segment: cuts in left -> right (grows toward center) */
.scissor-divider .scissor-line:first-child { transform-origin: left; }
/* Right segment: fills in shortly after, so the cut appears to travel
   left to right and settle, meeting the icon at the center */
.scissor-divider .scissor-line:last-child { transform-origin: left; transition-delay: 500ms; }
.scissor-divider.is-active .scissor-line { transform: scaleX(1); }

.scissor-icon {
  color: var(--champagne-dark);
  display: inline-flex;
  transform: translateX(-160px);
  opacity: 0;
  transition: transform 900ms var(--ease-premium), opacity 500ms ease;
}
.scissor-icon.is-active { transform: translateX(0); opacity: 1; }

.service-categories { display: flex; flex-direction: column; }

.service-category {
  border-bottom: 1px solid rgba(117, 109, 102, 0.18);
}
.service-category:first-child { border-top: 1px solid rgba(117, 109, 102, 0.18); }

.service-category summary {
  display: flex;
  align-items: center;
  gap: 16px;
  padding-block: 22px;
  cursor: pointer;
  list-style: none;
  transition: background 260ms ease;
}
.service-category summary::-webkit-details-marker { display: none; }
.service-category summary:hover { background: rgba(231, 209, 168, 0.12); }

.service-category-name {
  font-family: var(--font-display);
  font-size: clamp(1.15rem, 3.4vw, 1.5rem);
  font-weight: 600;
  color: var(--cocoa);
  flex: 1;
}
.service-category-count {
  font-size: 0.78rem;
  color: var(--muted);
  white-space: nowrap;
}
.service-category-icon {
  flex: 0 0 auto;
  font-size: 1.1rem;
  color: var(--champagne-dark);
  transition: transform 260ms var(--ease-premium);
  width: 24px;
  text-align: center;
}
.service-category[open] .service-category-icon { transform: rotate(45deg); }

.service-category-items {
  display: grid;
  grid-template-columns: 1fr;
  gap: 10px 24px;
  padding: 4px 0 28px;
  list-style: none;
}
.service-category-items li {
  font-size: 0.92rem;
  color: var(--muted);
  padding-left: 18px;
  position: relative;
}
.service-category-items li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.55em;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gradient-accent);
}

@media (min-width: 640px) {
  .service-category-items { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .service-category-items { grid-template-columns: repeat(3, 1fr); }
}

/* ===================== EDITORIAL STATEMENT ===================== */
.statement {
  padding-block: 90px;
  background: var(--gradient-matte);
  text-align: center;
}
.statement-heading {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: clamp(1.7rem, 5.2vw, 3.4rem);
  line-height: 1.15;
  color: var(--champagne-light);
  display: inline-flex;
  align-items: center;
  gap: 0.25em;
  flex-wrap: wrap;
  justify-content: center;
  animation: statementPulse 3.2s ease-in-out infinite;
}
.statement-line { white-space: nowrap; }
@media (max-width: 560px) {
  .statement-line { white-space: normal; }
}
.statement-accent {
  font-style: italic;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.crown-icon { color: var(--champagne-dark); flex: 0 0 auto; }

@keyframes statementPulse {
  0%, 100% { opacity: 1; text-shadow: 0 0 0 rgba(231, 209, 168, 0); }
  50% { opacity: 0.88; text-shadow: 0 0 22px rgba(231, 209, 168, 0.45); }
}
@media (prefers-reduced-motion: reduce) {
  .statement-heading { animation: none !important; }
}

/* ===================== OFFERS ===================== */
.offers { padding-block: 72px; background: var(--gradient-peach); }
.offers .section-head { text-align: center; }

.anniversary-banner {
  background: var(--gradient-dark);
  border-radius: var(--radius-card);
  padding: 40px 28px;
  text-align: center;
  margin-bottom: 48px;
  border: 1px solid rgba(231, 209, 168, 0.3);
  position: relative;
  overflow: hidden;
}
.anniversary-kicker {
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
  color: var(--champagne-light);
  margin-bottom: 12px;
}
.anniversary-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 8vw, 3.4rem);
  color: var(--ivory);
  line-height: 1.05;
  display: inline-block;
  animation: anniversaryAttention 3.6s ease-in-out infinite;
}
.anniversary-heading sup {
  font-size: 0.4em;
  top: -0.6em;
}
.anniversary-sub {
  margin-top: 14px;
  font-size: 0.9rem;
  color: rgba(251, 248, 243, 0.75);
  letter-spacing: 0.02em;
}
.anniversary-discount {
  margin-top: 20px;
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 5vw, 2.2rem);
  font-weight: 600;
  color: var(--ivory);
}
.anniversary-discount span {
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  font-weight: 700;
  display: inline-block;
  animation: anniversaryAttention 3.6s ease-in-out 0.4s infinite;
}
.anniversary-note {
  margin-top: 10px;
  font-size: 0.75rem;
  color: rgba(251, 248, 243, 0.5);
  font-style: italic;
}

@keyframes anniversaryAttention {
  0%, 80%, 100% { transform: scale(1); }
  88% { transform: scale(1.045); }
}
@media (prefers-reduced-motion: reduce) {
  .anniversary-heading, .anniversary-discount span { animation: none !important; }
}

.offer-tabs, .service-tabs {
  display: flex;
  justify-content: center;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.offer-tab, .service-tab {
  background: transparent;
  border: 1px solid rgba(43, 37, 33, 0.25);
  color: var(--cocoa);
  padding: 10px 24px;
  border-radius: var(--radius-pill);
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  transition: background 220ms ease, border-color 220ms ease, color 220ms ease;
}
.offer-tab:hover, .service-tab:hover {
  border-color: var(--champagne-dark);
}
.offer-tab.is-active, .service-tab.is-active {
  background: var(--gradient-accent);
  border-color: transparent;
  color: var(--cocoa-dark);
}

.offers-nearbuy-note {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  text-align: center;
  margin-top: 40px;
  font-size: 1.05rem;
  color: var(--cocoa);
  font-weight: 500;
  flex-wrap: wrap;
}
.offers-nearbuy-note a {
  color: var(--champagne-dark);
  font-weight: 700;
  border-bottom: 2px solid var(--champagne-dark);
  padding-bottom: 1px;
}
.offers-nearbuy-note a:hover { color: var(--cocoa); border-color: var(--cocoa); }
.nearbuy-cut-line {
  flex: 1 1 60px;
  max-width: 90px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(185, 151, 104, 0.6), transparent);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 24px;
}
.offer-card {
  background: var(--gradient-soft);
  border: 1px solid rgba(205, 178, 142, 0.4);
  border-radius: var(--radius-card);
  padding: 28px;
  transition: transform 260ms var(--ease-premium), border-color 260ms ease, box-shadow 260ms ease;
}
.offer-card:hover {
  transform: translateY(-4px);
  border-color: var(--champagne-dark);
  box-shadow: 0 20px 40px -26px rgba(43, 37, 33, 0.4);
}
.offer-label {
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--champagne-dark);
  font-weight: 700;
  margin-bottom: 14px;
}
.offer-name {
  font-family: var(--font-display);
  font-size: 1.6rem;
  font-weight: 600;
  color: var(--cocoa);
  margin-bottom: 10px;
}
.offer-desc {
  font-size: 0.9rem;
  color: var(--muted);
  margin-bottom: 20px;
  min-height: 2.6em;
}
.offer-prices {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin-bottom: 22px;
}
.offer-price-original {
  text-decoration: line-through;
  color: var(--muted);
  font-size: 0.95rem;
}
.offer-price-current {
  font-family: var(--font-body);
  font-variant-numeric: tabular-nums;
  font-size: 1.55rem;
  font-weight: 700;
  letter-spacing: -0.01em;
  color: var(--cocoa);
}
.offer-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--cocoa);
}
.offer-cta-arrow { transition: transform 260ms var(--ease-premium); }
.offer-card:hover .offer-cta-arrow { transform: translateX(6px); }

@media (min-width: 640px) {
  .offer-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .offers { padding-block: 120px; }
  .offer-grid { grid-template-columns: repeat(3, 1fr); }
}

/* ===================== WHY ===================== */
.why { padding-block: 72px; background: var(--gradient-main); }
.why .section-head { text-align: center; }
.why-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 32px;
}
.why-item {
  border-top: 1px solid rgba(117, 109, 102, 0.25);
  padding-top: 18px;
}
.why-number {
  font-family: var(--font-display);
  font-size: 0.95rem;
  color: var(--champagne-dark);
  display: block;
  margin-bottom: 10px;
}
.why-item h3 {
  font-family: var(--font-display);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--cocoa);
}

@media (min-width: 700px) {
  .why-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (min-width: 1024px) {
  .why-grid { grid-template-columns: repeat(4, 1fr); }
}

/* ===================== CONTACT / CTA DARK ===================== */
.cta-dark {
  background: var(--gradient-dark);
  padding-block: 90px;
  text-align: center;
}
.cta-dark-inner { display: flex; flex-direction: column; align-items: center; }
.cta-heading {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.2rem, 7vw, 3.4rem);
  color: var(--ivory);
  margin-bottom: 32px;
}
.cta-actions { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }

/* ===================== FOOTER ===================== */
.site-footer { background: var(--gradient-dark); color: var(--ivory); }
.footer-inner {
  display: grid;
  grid-template-columns: 1fr;
  gap: 40px;
  padding-block: 64px;
  align-items: start;
}
.footer-brand .brand-logo { display: block; height: 72px; }
.footer-logo-chip {
  display: inline-flex;
  background: var(--ivory);
  border-radius: 12px;
  padding: 10px 16px;
  margin-top: 2px;
}

.footer-tagline {
  margin-top: 16px;
  color: rgba(251, 248, 243, 0.65);
  font-size: 0.9rem;
  max-width: 32ch;
}
.footer-social { display: flex; gap: 14px; margin-top: 24px; }
.social-link {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: rgba(251, 248, 243, 0.08);
  border: 1px solid rgba(251, 248, 243, 0.2);
  color: var(--ivory);
  transition: background 220ms ease, border-color 220ms ease, transform 220ms ease, color 220ms ease;
}
.social-link:hover { transform: translateY(-3px); }
/* Official brand colors on hover, subtle - background tint + matching border, icon stays ivory for contrast */
.social-link--whatsapp:hover  { background: #25D366; border-color: #25D366; }
.social-link--instagram:hover {
  background: radial-gradient(circle at 30% 110%, #FDF497 0%, #FD5949 45%, #D6249F 60%, #285AEB 90%);
  border-color: transparent;
}
.social-link--nearbuy:hover   { background: #FF6600; border-color: #FF6600; }

.social-link::before,
.social-link::after {
  position: absolute;
  left: 50%;
  transform: translateX(-50%) translateY(4px);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease, transform 180ms ease;
}
.social-link::after {
  content: attr(data-tooltip);
  bottom: calc(100% + 10px);
  background: var(--cocoa-dark);
  color: var(--ivory);
  font-size: 0.72rem;
  font-weight: 600;
  padding: 6px 11px;
  border-radius: 6px;
  white-space: nowrap;
}
.social-link::before {
  content: "";
  bottom: calc(100% + 5px);
  border: 5px solid transparent;
  border-top-color: var(--cocoa-dark);
}
.social-link:hover::after,
.social-link:hover::before {
  opacity: 1;
  transform: translateX(-50%) translateY(0);
}

.footer-col-title {
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--champagne-light);
  margin-bottom: 14px;
}
.footer-col-title--spaced { margin-top: 26px; }
.footer-text {
  color: rgba(251, 248, 243, 0.75);
  font-size: 0.9rem;
  margin-bottom: 10px;
  line-height: 1.6;
}
.footer-link {
  display: inline-block;
  color: var(--ivory);
  font-size: 0.9rem;
  border-bottom: 1px solid rgba(231, 209, 168, 0.4);
  padding-bottom: 2px;
  margin-bottom: 10px;
  transition: color 220ms ease, border-color 220ms ease;
}
.footer-link:hover { color: var(--champagne-light); border-color: var(--champagne-light); }

.footer-col--map { min-width: 0; align-self: center; }
.footer-map-frame {
  position: relative;
  width: 100%;
  aspect-ratio: 16 / 11;
  max-height: 260px;
  border-radius: 12px;
  overflow: hidden;
  border: 1px solid rgba(251, 248, 243, 0.2);
  background: rgba(251, 248, 243, 0.06);
}
.footer-map-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
  filter: grayscale(0.2) contrast(1.05);
}

@media (max-width: 899px) {
  .footer-col--map { align-self: stretch; margin-top: 8px; }
  .footer-map-frame { aspect-ratio: 16 / 9; max-height: 220px; }
}

.footer-bottom {
  border-top: 1px solid rgba(251, 248, 243, 0.12);
  padding-block: 22px;
  font-size: 0.78rem;
  color: rgba(251, 248, 243, 0.55);
}

@media (min-width: 900px) {
  .footer-inner { grid-template-columns: 1fr 1fr 1.15fr; }
}

/* ===================== WHATSAPP FLOAT (icon only) ===================== */
.whatsapp-float {
  position: fixed;
  right: max(22px, calc(env(safe-area-inset-right) + 14px));
  bottom: max(22px, calc(env(safe-area-inset-bottom) + 16px));
  z-index: 300;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gradient-accent);
  color: var(--cocoa-dark);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  border: 2.5px solid var(--ivory);
  box-shadow: 0 4px 10px -2px rgba(43, 37, 33, 0.35), 0 14px 30px -14px rgba(43, 37, 33, 0.55);
  transition: transform 240ms var(--ease-premium), box-shadow 240ms ease;
}
.whatsapp-float:hover {
  transform: translateY(-3px);
  box-shadow: 0 16px 34px -12px rgba(37, 211, 102, 0.55);
  background: #25D366;
  color: #fff;
}

/* ===================== DECORATIVE BACKGROUND SHAPES ===================== */
.about-media-decor,
.hero-bg {
  opacity: 0.2;
}
@media (min-width: 900px) {
  .about-media-decor,
  .hero-bg { opacity: 0.35; }
}

/* ===================== REDUCED MOTION ===================== */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .reveal, .reveal-left, .reveal-right, .reveal-scale {
    opacity: 1 !important;
    transform: none !important;
  }
  .scissor-icon, .scissor-line { opacity: 1 !important; transform: none !important; }
  .hero-bg { animation: none !important; }

  .hero-fade, .hero-fade-scale, .hero-fade-in, .hero-word {
    opacity: 1 !important;
    filter: none !important;
    transform: none !important;
    animation: none !important;
  }
  .cut-trace, .cut-scissor {
    transition: none !important;
    opacity: 0 !important; /* keep the decorative cut effect off entirely, not stuck mid-animation */
  }
}