/* ================================================================
   DOMELLA BEAUTY SALON — Global Stylesheet
   ================================================================ */

@import url('./fonts.local.css');

/* ---------------------------------------------------------------
   CUSTOM PROPERTIES
--------------------------------------------------------------- */
:root {
  --black:      #1a1a1a;
  --cream:      #f8f4f0;
  --pink:       #c9539e;
  --rose:       #8b2a6b;
  --blush:      #e8ddd5;
  --white:      #ffffff;
  --mid:        #6b6b6b;
  --light:      #d4c8be;

  --f-heading:  'Cormorant Garamond', Georgia, serif;
  --f-body:     'Montserrat', sans-serif;

  --header-h:   80px;
  --ease:       cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out:   cubic-bezier(0.16, 1, 0.3, 1);
  --t:          0.4s var(--ease);
  --max-w:      1200px;
  --pad:        120px;
}

/* ---------------------------------------------------------------
   RESET & BASE
--------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: var(--f-body);
  background: var(--cream);
  color: var(--black);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

/* Grain overlay */
body::after {
  content: '';
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.035'/%3E%3C/svg%3E");
  pointer-events: none;
  z-index: 9998;
}

/* ---------------------------------------------------------------
   LAYOUT UTILITIES
--------------------------------------------------------------- */
.wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}

/* ---------------------------------------------------------------
   TYPOGRAPHY
--------------------------------------------------------------- */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--f-heading);
  font-weight: 600;
  line-height: 1.05;
  letter-spacing: -0.01em;
}

/* ---------------------------------------------------------------
   BUTTONS
--------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 36px;
  font-family: var(--f-body);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background var(--t), color var(--t), border-color var(--t), transform 0.2s ease;
  white-space: nowrap;
}

.btn:hover { transform: translateY(-1px); }
.btn:active { transform: translateY(0); }

.btn-primary {
  background: var(--pink);
  color: var(--white);
  border-color: var(--pink);
}
.btn-primary:hover {
  background: var(--rose);
  border-color: var(--rose);
}

.btn-outline {
  background: transparent;
  color: var(--black);
  border-color: var(--black);
}
.btn-outline:hover {
  background: var(--black);
  color: var(--white);
}

.btn-ghost-light {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.45);
}
.btn-ghost-light:hover {
  background: rgba(255,255,255,0.12);
  border-color: var(--white);
}

/* ---------------------------------------------------------------
   SECTION LABEL
--------------------------------------------------------------- */
.label {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--pink);
  margin-bottom: 20px;
}
.label::before {
  content: '';
  display: block;
  width: 36px;
  height: 1px;
  background: currentColor;
  flex-shrink: 0;
}

/* ---------------------------------------------------------------
   SCROLL REVEAL
--------------------------------------------------------------- */
.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.visible { opacity: 1; transform: none; }
.delay-1 { transition-delay: 0.1s; }
.delay-2 { transition-delay: 0.22s; }
.delay-3 { transition-delay: 0.34s; }
.delay-4 { transition-delay: 0.46s; }


/* ================================================================
   HEADER
   ================================================================ */
.site-header {
  position: fixed;
  inset: 0 0 auto;
  height: var(--header-h);
  z-index: 1000;
  transition: background 0.5s ease, box-shadow 0.5s ease, border-color 0.5s ease;
  border-bottom: 1px solid transparent;
}

.site-header.scrolled {
  background: rgba(248, 244, 240, 0.88);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  box-shadow: 0 1px 0 rgba(26,26,26,0.07);
  border-bottom-color: rgba(201,83,158,0.14);
}

.header-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.header-logo { flex-shrink: 0; }
.header-logo img {
  height: 50px;
  width: auto;
  transition: opacity 0.3s ease;
}
.header-logo:hover img { opacity: 0.75; }

.header-nav { flex: 1; display: flex; justify-content: center; }
.header-nav ul { display: flex; align-items: center; gap: 44px; }
.header-nav a {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--black);
  padding-bottom: 3px;
  position: relative;
  transition: color 0.3s ease;
}
.header-nav a::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 1px;
  background: var(--pink);
  transition: width 0.35s var(--ease-out);
}
.header-nav a:hover,
.header-nav a.active { color: var(--pink); }
.header-nav a:hover::after,
.header-nav a.active::after { width: 100%; }

.header-cta { flex-shrink: 0; }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 6px;
  z-index: 1001;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 1.5px;
  background: var(--black);
  transition: var(--t);
  transform-origin: center;
}
.hamburger.open span:nth-child(1) { transform: translateY(6.5px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-6.5px) rotate(-45deg); }

/* Mobile overlay */
.nav-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: var(--cream);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
}
.nav-overlay.open { display: flex; }
.nav-overlay ul { display: flex; flex-direction: column; align-items: center; gap: 28px; margin-bottom: 48px; }
.nav-overlay a {
  font-family: var(--f-heading);
  font-size: 2.8rem;
  font-weight: 500;
  color: var(--black);
  letter-spacing: -0.01em;
  transition: color 0.3s ease;
}
.nav-overlay a:hover { color: var(--pink); }


/* ================================================================
   FOOTER
   ================================================================ */
.site-footer {
  background: var(--cream);
  border-top: 3px solid var(--pink);
}

/* Pink accent top bar already done via border-top */

.footer-top {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 48px 64px;
  display: grid;
  grid-template-columns: 1.8fr 1fr 1fr 1.4fr;
  gap: 56px;
}

.footer-logo img {
  height: 74px;
  width: auto;
  margin-bottom: 18px;
}
.footer-tagline {
  font-family: var(--f-heading);
  font-size: 1.05rem;
  font-style: italic;
  color: var(--mid);
  margin-bottom: 28px;
  line-height: 1.55;
}
.footer-social { display: flex; gap: 10px; }
.footer-social a {
  width: 36px; height: 36px;
  border: 1px solid var(--blush);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  color: var(--mid);
  transition: var(--t);
}
.footer-social a:hover {
  border-color: var(--pink);
  color: var(--pink);
  background: rgba(201,83,158,0.06);
}
.footer-social svg { width: 14px; height: 14px; fill: currentColor; }

.footer-col h4 {
  font-family: var(--f-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 24px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--blush);
}

.footer-links ul { display: flex; flex-direction: column; gap: 12px; }
.footer-links a {
  font-size: 0.85rem;
  color: var(--mid);
  transition: color 0.25s ease, transform 0.25s ease;
  display: inline-block;
}
.footer-links a:hover {
  color: var(--pink);
  transform: translateX(5px);
}

.site-footer .footer-contact-list {
  list-style: none;
  margin: 0 0 28px;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.site-footer .footer-contact-row {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--mid);
  font-size: 0.84rem;
  line-height: 1.55;
}
.site-footer .footer-contact-row svg {
  width: 14px;
  height: 14px;
  flex: 0 0 14px;
  margin-top: 2px;
  color: var(--pink);
  opacity: 0.7;
}
.site-footer .footer-contact-link {
  color: var(--mid);
  font-size: 0.84rem;
  line-height: 1.55;
  transition: color 0.25s ease;
  overflow-wrap: anywhere;
}
.site-footer .footer-contact-link:hover { color: var(--pink); }
.footer-contact h5 {
  font-family: var(--f-body);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 12px;
}
.site-footer .footer-hours-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.site-footer .footer-hours-list li {
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.95;
}

/* Divider */
.footer-rule {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  height: 1px;
  background: var(--blush);
}

/* Bottom bar */
.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.footer-bottom p {
  font-size: 0.72rem;
  color: var(--light);
  letter-spacing: 0.05em;
}
.footer-legal {
  display: flex;
  align-items: center;
  gap: 24px;
}
.footer-legal a {
  font-size: 0.72rem;
  color: var(--light);
  letter-spacing: 0.04em;
  transition: color 0.25s ease;
}
.footer-legal a:hover { color: var(--pink); }
.footer-legal span {
  width: 1px; height: 12px;
  background: var(--blush);
  display: block;
}


/* ================================================================
   TICKER STRIP
   ================================================================ */
.ticker-strip {
  background: var(--white);
  border-top: 1px solid var(--blush);
  border-bottom: 1px solid var(--blush);
  padding: 14px 0;
  overflow: hidden;
}
.ticker-track {
  display: flex;
  gap: 0;
  animation: ticker 28s linear infinite;
  width: max-content;
}
.ticker-track:hover { animation-play-state: paused; }
.ticker-item {
  display: flex;
  align-items: center;
  gap: 28px;
  padding: 0 28px;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  white-space: nowrap;
}
.ticker-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
}
@keyframes ticker {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}


/* ================================================================
   HERO
   ================================================================ */
.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 52% 48%;
  padding-top: var(--header-h);
  overflow: hidden;
}

.hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 80px 72px 80px max(40px, calc((100vw - var(--max-w)) / 2 + 48px));
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 0.67rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 32px;
}
.hero-eyebrow::before {
  content: '';
  display: block;
  width: 40px;
  height: 1px;
  background: var(--pink);
}

.hero-title {
  font-family: var(--f-heading);
  font-size: clamp(3.8rem, 7vw, 6.4rem);
  font-weight: 600;
  line-height: 1.0;
  letter-spacing: -0.025em;
  color: var(--black);
  margin-bottom: 30px;
}
.hero-title em {
  font-style: italic;
  color: var(--pink);
}

.hero-sub {
  font-size: 0.95rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  max-width: 400px;
  margin-bottom: 52px;
}

.hero-actions { display: flex; gap: 14px; flex-wrap: wrap; }

.hero-scroll {
  position: absolute;
  bottom: 48px;
  left: max(40px, calc((100vw - var(--max-w)) / 2 + 48px));
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(26,26,26,0.35);
}
.hero-scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--pink), transparent);
  animation: scrollPulse 2s ease-in-out infinite;
}
@keyframes scrollPulse {
  0%,100% { opacity: 1; transform: scaleY(1); }
  50%      { opacity: 0.4; transform: scaleY(0.6); }
}

/* ---- Hero visual / CSS art ---- */
.hero-visual {
  position: relative;
  overflow: hidden;
  background: linear-gradient(155deg, #f5eaf2 0%, #fde8f3 45%, #ffe4f8 100%);
}

.hero-art { position: absolute; inset: 0; overflow: hidden; }

.orb {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
}
.orb-1 {
  width: 520px; height: 520px;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  background: radial-gradient(circle at 38% 38%, rgba(201,83,158,0.32) 0%, rgba(139,42,107,0.12) 50%, transparent 70%);
  animation: f1 9s ease-in-out infinite;
}
.orb-2 {
  width: 320px; height: 320px;
  top: 8%; right: -40px;
  background: radial-gradient(circle, rgba(232,221,213,0.9) 0%, transparent 70%);
  animation: f2 12s ease-in-out infinite;
}
.orb-3 {
  width: 180px; height: 180px;
  bottom: 12%; left: 8%;
  background: radial-gradient(circle, rgba(201,83,158,0.18) 0%, transparent 70%);
  animation: f3 7s ease-in-out infinite;
}

.ring {
  position: absolute;
  border-radius: 50%;
  border: 1px solid rgba(201,83,158,0.18);
  top: 50%; left: 50%;
  pointer-events: none;
}
.ring-1 { width: 420px; height: 420px; margin: -210px 0 0 -210px; animation: spin 24s linear infinite; }
.ring-2 { width: 290px; height: 290px; margin: -145px 0 0 -145px; border-style: dashed; border-color: rgba(201,83,158,0.1); animation: spin 36s linear infinite reverse; }
.ring-3 { width: 620px; height: 620px; margin: -310px 0 0 -310px; border-color: rgba(139,42,107,0.07); animation: spin 50s linear infinite; }

.art-line {
  position: absolute;
  background: rgba(201,83,158,0.14);
  pointer-events: none;
}
.art-line-v { width: 1px; height: 160px; top: 8%; left: 22%; animation: f2 10s ease-in-out infinite; }
.art-line-h { width: 80px; height: 1px; bottom: 22%; right: 14%; animation: f1 8s ease-in-out infinite; }

.art-dot {
  position: absolute;
  border-radius: 50%;
  background: var(--pink);
  pointer-events: none;
}
.art-dot-1 { width: 6px; height: 6px; top: 22%; left: 32%; opacity: 0.45; animation: f3 5s ease-in-out infinite; }
.art-dot-2 { width: 4px; height: 4px; bottom: 32%; right: 28%; opacity: 0.35; animation: f1 7s ease-in-out infinite; }
.art-dot-3 { width: 8px; height: 8px; top: 62%; left: 14%; opacity: 0.25; animation: f2 9s ease-in-out infinite; }

.art-glyph {
  position: absolute;
  bottom: 32px; right: 40px;
  font-family: var(--f-heading);
  font-size: 11rem;
  font-weight: 700;
  color: rgba(201,83,158,0.05);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

@keyframes f1 { 0%,100% { transform: translate(-50%,-50%) translateY(0); } 50% { transform: translate(-50%,-50%) translateY(-22px); } }
@keyframes f2 { 0%,100% { transform: translateY(-12px); } 50% { transform: translateY(16px); } }
@keyframes f3 { 0%,100% { transform: translateY(10px) translateX(0); } 50% { transform: translateY(-10px) translateX(10px); } }
@keyframes spin { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }


/* ================================================================
   SERVICES SECTION
   ================================================================ */
.services {
  padding: var(--pad) 0;
  background: var(--cream);
}

.services-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 80px;
}
.services-head h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--black);
}
.services-head h2 em { font-style: italic; color: var(--pink); }
.services-all-link {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pink);
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding-bottom: 2px;
  border-bottom: 1px solid rgba(201,83,158,0.3);
  transition: gap 0.3s ease, border-color 0.3s ease;
  white-space: nowrap;
}
.services-all-link:hover { gap: 16px; border-color: var(--pink); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3px;
}

.svc-card {
  background: var(--white);
  padding: 56px 44px;
  position: relative;
  overflow: hidden;
  cursor: pointer;
  transition: transform var(--t), box-shadow var(--t);
}
.svc-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 3px;
  background: linear-gradient(90deg, var(--pink), var(--rose));
  transition: width 0.55s var(--ease-out);
}
.svc-card:hover { transform: translateY(-5px); box-shadow: 0 28px 60px rgba(0,0,0,0.09); }
.svc-card:hover::after { width: 100%; }

.svc-num {
  position: absolute;
  top: 20px; right: 26px;
  font-family: var(--f-heading);
  font-size: 3.8rem;
  font-weight: 700;
  color: rgba(201,83,158,0.05);
  line-height: 1;
  transition: color 0.3s ease;
  user-select: none;
}
.svc-card:hover .svc-num { color: rgba(201,83,158,0.09); }

.svc-icon {
  width: 52px; height: 52px;
  margin-bottom: 30px;
  color: var(--pink);
}
.svc-icon svg { width: 100%; height: 100%; }

.svc-card h3 {
  font-size: 1.7rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 14px;
}
.svc-card p {
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  margin-bottom: 36px;
}
.svc-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pink);
  transition: gap 0.3s ease;
}
.svc-link::after { content: '→'; }
.svc-card:hover .svc-link { gap: 16px; }


/* ================================================================
   PACKAGES SECTION
   ================================================================ */
.packages {
  padding: var(--pad) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.packages::before {
  content: '';
  position: absolute;
  top: -220px; right: -220px;
  width: 640px; height: 640px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,83,158,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.packages::after {
  content: '';
  position: absolute;
  bottom: -160px; left: -120px;
  width: 480px; height: 480px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(139,42,107,0.09) 0%, transparent 70%);
  pointer-events: none;
}

.packages-z { position: relative; z-index: 1; }

.pkg-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 72px;
  gap: 40px;
}
.pkg-head h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  color: var(--white);
}
.pkg-head h2 em { font-style: italic; color: var(--pink); }
.pkg-head-sub {
  max-width: 280px;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.7;
  text-align: right;
}

.pkg-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.pkg-card {
  border: 1px solid rgba(255,255,255,0.07);
  padding: 48px 40px;
  position: relative;
  background: rgba(255,255,255,0.02);
  transition: background var(--t), transform var(--t), border-color var(--t);
}
.pkg-card:hover {
  background: rgba(255,255,255,0.04);
  transform: translateY(-6px);
  border-color: rgba(201,83,158,0.28);
}
.pkg-card.featured {
  border-color: rgba(201,83,158,0.38);
  background: linear-gradient(140deg, rgba(201,83,158,0.07) 0%, rgba(139,42,107,0.04) 100%);
}

.pkg-badge {
  display: inline-block;
  padding: 4px 14px;
  background: var(--pink);
  color: var(--white);
  font-size: 0.62rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin-bottom: 32px;
}

.pkg-card h3 {
  font-family: var(--f-heading);
  font-size: 1.6rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 12px;
}
.pkg-desc {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.42);
  line-height: 1.65;
  margin-bottom: 40px;
  min-height: 60px;
}

.pkg-price {
  display: flex;
  align-items: baseline;
  gap: 3px;
  margin-bottom: 32px;
}
.pkg-currency {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  color: rgba(255,255,255,0.45);
}
.pkg-amount {
  font-family: var(--f-heading);
  font-size: 4.2rem;
  font-weight: 600;
  line-height: 1;
  color: var(--white);
}
.pkg-card.featured .pkg-amount { color: var(--pink); }

.pkg-rule {
  width: 40px; height: 1px;
  background: rgba(255,255,255,0.1);
  margin-bottom: 32px;
}
.pkg-card.featured .pkg-rule { background: rgba(201,83,158,0.35); }

.pkg-card .btn { width: 100%; justify-content: center; }


/* ================================================================
   ABOUT TEASER
   ================================================================ */
.about {
  padding: var(--pad) 0;
  background: var(--cream);
  overflow: hidden;
}
.about-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 100px;
  align-items: center;
}

.about-content h2 {
  font-size: clamp(2.6rem, 5vw, 4.2rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 28px;
}
.about-content h2 em { font-style: italic; color: var(--pink); }
.about-content p {
  font-size: 0.93rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 18px;
}
.about-content p:last-of-type { margin-bottom: 44px; }

.about-stats {
  display: flex;
  gap: 48px;
  padding: 36px 0;
  border-top: 1px solid var(--blush);
  border-bottom: 1px solid var(--blush);
  margin-bottom: 48px;
  flex-wrap: wrap;
}
.stat-num {
  display: block;
  font-family: var(--f-heading);
  font-size: 3.2rem;
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.11em;
  text-transform: uppercase;
  color: var(--mid);
}

/* CSS art composition */
.about-art {
  position: relative;
  height: 520px;
  user-select: none;
}

.art-r {
  position: absolute;
}
.art-r-1 {
  width: 290px; height: 400px;
  top: 50px; left: 70px;
  background: linear-gradient(160deg, var(--blush) 0%, rgba(232,221,213,0.45) 100%);
}
.art-r-2 {
  width: 210px; height: 270px;
  top: 0; left: 0;
  background: rgba(201,83,158,0.08);
  border: 1px solid rgba(201,83,158,0.18);
}
.art-r-3 {
  width: 150px; height: 190px;
  bottom: 36px; right: 48px;
  background: var(--black);
}

.art-c {
  position: absolute;
  width: 130px; height: 130px;
  border-radius: 50%;
  right: 90px; top: 64px;
  border: 2px solid var(--pink);
  background: rgba(201,83,158,0.04);
}
.art-c::after {
  content: '';
  position: absolute;
  width: 88px; height: 88px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(201,83,158,0.12);
}

.art-line-vert {
  position: absolute;
  width: 1px; height: 130px;
  right: 155px; bottom: 30px;
  background: linear-gradient(to bottom, transparent, var(--pink), transparent);
}

.art-dots {
  position: absolute;
  right: 22px; bottom: 130px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 7px;
}
.art-dots span {
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(201,83,158,0.28);
}


/* ================================================================
   CTA BANNER
   ================================================================ */
.cta-banner {
  padding: 110px 48px;
  background: linear-gradient(135deg, var(--pink) 0%, var(--rose) 100%);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -120px; left: -120px;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: rgba(255,255,255,0.07);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -100px; right: -100px;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: rgba(255,255,255,0.05);
  pointer-events: none;
}
.cta-inner { position: relative; z-index: 1; }
.cta-banner .label { color: rgba(255,255,255,0.65); justify-content: center; margin-bottom: 20px; }
.cta-banner h2 {
  font-size: clamp(2rem, 5vw, 3.6rem);
  color: var(--white);
  font-weight: 600;
  margin-bottom: 16px;
}
.cta-banner p {
  font-size: 1rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 44px;
  font-weight: 300;
}


/* ================================================================
   RESPONSIVE
   ================================================================ */
@media (max-width: 1060px) {
  :root { --pad: 80px; }

  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-content {
    order: 2;
    padding: 80px 48px;
  }
  .hero-visual {
    order: 1;
    height: 48vw;
    min-height: 280px;
  }
  .hero-scroll { display: none; }

  .pkg-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
  .pkg-head { flex-direction: column; align-items: flex-start; }
  .pkg-head-sub { text-align: left; }

  .about-inner { grid-template-columns: 1fr; gap: 64px; }
  .about-art { height: 320px; }

  .footer-top { grid-template-columns: 1.4fr 0.6fr; gap: 40px; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 768px) {
  :root { --header-h: 64px; --pad: 64px; }

  .wrap,
  .header-inner,
  .footer-top,
  .footer-bottom,
  .footer-rule-wrap { padding-left: 24px; padding-right: 24px; }

  .header-nav,
  .header-cta { display: none; }
  .hamburger { display: flex; }

  .services-head,
  .services-grid,
  .pkg-head,
  .pkg-grid,
  .about-inner { padding: 0; }

  .services-grid { grid-template-columns: 1fr; }
  .services-head { flex-direction: column; align-items: flex-start; gap: 20px; }

  .footer-top { grid-template-columns: 1.4fr 0.6fr; gap: 36px; padding: 48px 24px; }
  .footer-brand { grid-column: 1 / -1; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 12px; padding: 18px 24px; }
  .footer-rule { padding: 0 24px; }
  .footer-legal { flex-wrap: wrap; gap: 16px; }

  .hero-content { padding: 64px 24px; }
  .about-inner { padding: 0 24px; }
  .packages-z { padding: 0 24px; }
  .services-head { padding: 0 24px; }
  .services-grid { padding: 0 24px; }

  .about-stats { gap: 28px; }
}


/* ================================================================
   PAGE HERO (inner pages)
   ================================================================ */
.page-hero {
  padding: calc(var(--header-h) + 72px) 0 80px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
}
.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 1px;
  background: var(--blush);
}
.page-hero-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 40px;
}
.page-hero h1 {
  font-size: clamp(3rem, 7vw, 5.5rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.0;
  max-width: 640px;
}
.page-hero h1 em { font-style: italic; color: var(--pink); }
.page-hero-sub {
  max-width: 320px;
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
  text-align: right;
  flex-shrink: 0;
}
/* Decorative bg glyph */
.page-hero-bg {
  position: absolute;
  right: calc((100vw - var(--max-w)) / 2);
  bottom: -20px;
  font-family: var(--f-heading);
  font-size: 18rem;
  font-weight: 700;
  color: rgba(201,83,158,0.04);
  line-height: 1;
  user-select: none;
  pointer-events: none;
}

/* ================================================================
   SERVICES NAV (sticky sidebar)
   ================================================================ */
.usluge-layout {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 80px 48px;
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 80px;
  align-items: start;
}

.usluge-nav {
  position: sticky;
  top: calc(var(--header-h) + 28px);
}
.usluge-nav h3 {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--black);
  margin-bottom: 20px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--blush);
}
.usluge-nav ul { display: flex; flex-direction: column; gap: 2px; }
.usluge-nav a {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 10px 14px;
  font-size: 0.83rem;
  font-weight: 400;
  color: var(--mid);
  border-left: 2px solid transparent;
  transition: color 0.25s ease, border-color 0.25s ease, background 0.25s ease;
}
.usluge-nav a:hover,
.usluge-nav a.active {
  color: var(--pink);
  border-left-color: var(--pink);
  background: rgba(201,83,158,0.04);
}
.usluge-nav a span {
  font-family: var(--f-heading);
  font-size: 0.75rem;
  color: var(--light);
  min-width: 20px;
}
.usluge-nav a:hover span,
.usluge-nav a.active span { color: var(--pink); }

/* ================================================================
   SERVICE SECTIONS
   ================================================================ */
.usluge-sections { display: flex; flex-direction: column; gap: 0; }

.svc-section {
  padding: 80px 0;
  border-bottom: 1px solid var(--blush);
}
.svc-section:last-child { border-bottom: none; }

.svc-section-inner {
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 64px;
  align-items: center;
}
.svc-section:nth-child(even) .svc-section-img { order: 2; }
.svc-section:nth-child(even) .svc-section-content { order: 1; }

.svc-section-img {
  position: relative;
  overflow: hidden;
}
.svc-section-img img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  display: block;
  transition: transform 0.8s var(--ease-out);
}
.svc-section-img:hover img { transform: scale(1.04); }

/* Pink accent corner */
.svc-section-img::before {
  content: '';
  position: absolute;
  bottom: -2px; left: -2px;
  width: 80px; height: 80px;
  border-left: 3px solid var(--pink);
  border-bottom: 3px solid var(--pink);
  z-index: 1;
  pointer-events: none;
}

.svc-section-content {}

.svc-section-content .label { margin-bottom: 12px; }

.svc-section-content h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 20px;
  line-height: 1.1;
}
.svc-section-content > p {
  font-size: 0.9rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  margin-bottom: 32px;
}

/* Sub-treatment list */
.svc-treatments {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 36px;
}
.svc-treatment {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--blush);
}
.svc-treatment:first-child { border-top: 1px solid var(--blush); }
.svc-treatment-info h4 {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 4px;
}
.svc-treatment-info p {
  font-size: 0.8rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
  max-width: 340px;
}
.svc-treatment-price {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--pink);
  white-space: nowrap;
  flex-shrink: 0;
}

/* Bullet list variant */
.svc-bullets {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 36px;
}
.svc-bullets li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.875rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.6;
}
.svc-bullets li::before {
  content: '';
  display: block;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--pink);
  flex-shrink: 0;
  margin-top: 7px;
}

/* IPL note box */
.svc-note {
  background: rgba(201,83,158,0.05);
  border-left: 3px solid var(--pink);
  padding: 16px 20px;
  margin-bottom: 32px;
}
.svc-note p {
  font-size: 0.82rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 0 !important;
}
.svc-note strong { color: var(--black); font-weight: 500; }

/* Responsive usluge */
@media (max-width: 1060px) {
  .usluge-layout {
    grid-template-columns: 1fr;
    gap: 48px;
    padding: 56px 48px;
  }
  .usluge-nav { position: static; }
  .usluge-nav ul {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 8px;
  }
  .usluge-nav a {
    border-left: none;
    border-bottom: 2px solid transparent;
    padding: 8px 12px;
  }
  .usluge-nav a:hover,
  .usluge-nav a.active {
    border-left-color: transparent;
    border-bottom-color: var(--pink);
  }
}
@media (max-width: 768px) {
  .usluge-layout { padding: 40px 24px; }
  .page-hero-inner { flex-direction: column; align-items: flex-start; }
  .page-hero-sub { text-align: left; max-width: 100%; }
  .page-hero-inner { padding: 0 24px; }
  .svc-section-inner {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .svc-section:nth-child(even) .svc-section-img,
  .svc-section:nth-child(even) .svc-section-content { order: unset; }
  .svc-section-img img { height: 280px; }
  .svc-treatment { flex-direction: column; gap: 6px; }
}


/* ================================================================
   CJENIK PAGE
   ================================================================ */

/* Featured packages strip */
.cjenik-packages {
  background: var(--black);
  padding: 56px 0;
  position: relative;
  overflow: hidden;
}
.cjenik-packages::before {
  content: '';
  position: absolute;
  top: -160px; right: -160px;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,83,158,0.09) 0%, transparent 70%);
  pointer-events: none;
}
.cjenik-packages-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.cjenik-pkg {
  display: flex;
  align-items: center;
  gap: 24px;
  padding: 28px 32px;
  border: 1px solid rgba(255,255,255,0.08);
  background: rgba(255,255,255,0.02);
  transition: background var(--t), border-color var(--t);
}
.cjenik-pkg:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,83,158,0.3);
}
.cjenik-pkg-price {
  font-family: var(--f-heading);
  font-size: 2.8rem;
  font-weight: 600;
  color: var(--pink);
  line-height: 1;
  flex-shrink: 0;
}
.cjenik-pkg-price sup {
  font-size: 1.2rem;
  vertical-align: super;
  line-height: 0;
}
.cjenik-pkg-info h4 {
  font-family: var(--f-heading);
  font-size: 1.2rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 4px;
}
.cjenik-pkg-info p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  font-weight: 300;
  line-height: 1.5;
}
.cjenik-pkg-badge {
  font-size: 0.6rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--pink);
  display: block;
  margin-bottom: 6px;
}

/* Tab navigation */
.cjenik-tabs-wrap {
  background: var(--white);
  border-bottom: 1px solid var(--blush);
  position: sticky;
  top: var(--header-h);
  z-index: 100;
}
.cjenik-tabs {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
}
.cjenik-tabs::-webkit-scrollbar { display: none; }
.cjenik-tab {
  flex-shrink: 0;
  padding: 18px 22px;
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--mid);
  background: none;
  border: none;
  border-bottom: 2px solid transparent;
  cursor: pointer;
  transition: color 0.25s ease, border-color 0.25s ease;
  margin-bottom: -1px;
}
.cjenik-tab:hover { color: var(--black); }
.cjenik-tab.active {
  color: var(--pink);
  border-bottom-color: var(--pink);
}

/* Main price area */
.cjenik-body {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 48px;
}

/* Panel show/hide */
.cjenik-panel { display: none; }
.cjenik-panel.active { display: block; }

/* All view — multi-column grid of categories */
.cjenik-all-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}
@media (max-width: 768px) {
  .cjenik-all-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Category block */
.price-cat { }
.price-cat-title {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 8px;
}
.price-cat-title em { font-style: italic; color: var(--pink); }
.price-cat-rule {
  width: 40px; height: 2px;
  background: var(--pink);
  margin-bottom: 28px;
}

/* Sub-heading within a category */
.price-subhead {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 12px 0 8px;
  margin-top: 8px;
  border-top: 1px solid var(--blush);
}
.price-subhead:first-of-type { margin-top: 0; border-top: none; }

/* Price row */
.price-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid var(--blush);
  position: relative;
}
.price-row:last-child { border-bottom: none; }

.price-name {
  font-size: 0.88rem;
  color: var(--black);
  font-weight: 400;
  flex: 1;
  min-width: 0;
}
.price-note {
  font-size: 0.75rem;
  color: var(--mid);
  font-weight: 300;
  display: block;
  margin-top: 2px;
}
.price-val {
  font-family: var(--f-heading);
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--pink);
  flex-shrink: 0;
  white-space: nowrap;
}
.price-row.highlight .price-name { font-weight: 500; }
.price-row.highlight .price-val { font-size: 1.3rem; }

/* Two-method table (depilacija) */
.price-table-2col {
  width: 100%;
  border-collapse: collapse;
  margin-bottom: 0;
}
.price-table-2col thead th {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--mid);
  padding: 0 8px 10px;
  border-bottom: 1px solid var(--blush);
  text-align: right;
}
.price-table-2col thead th:first-child { text-align: left; padding-left: 0; }
.price-table-2col tbody tr {
  border-bottom: 1px solid var(--blush);
}
.price-table-2col tbody tr:last-child { border-bottom: none; }
.price-table-2col td {
  padding: 11px 8px;
  font-size: 0.88rem;
  color: var(--black);
  text-align: right;
}
.price-table-2col td:first-child {
  text-align: left;
  padding-left: 0;
  font-weight: 400;
}
.price-table-2col td.p-price {
  font-family: var(--f-heading);
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--pink);
}
.price-table-2col td.p-price-alt {
  font-family: var(--f-heading);
  font-size: 1.05rem;
  font-weight: 500;
  color: var(--rose);
}

/* Single panel layout (non-all) */
.cjenik-panel-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 64px 80px;
}
@media (max-width: 900px) {
  .cjenik-panel-grid { grid-template-columns: 1fr; gap: 48px; }
}

/* Responsive */
@media (max-width: 768px) {
  .cjenik-body { padding: 48px 24px; }
  .cjenik-tabs { padding: 0 16px; }
  .cjenik-packages-inner { grid-template-columns: 1fr; gap: 16px; padding: 0 24px; }
  .cjenik-pkg { padding: 20px 24px; }
  .cjenik-panel-grid { grid-template-columns: 1fr; }
}


/* ================================================================
   O NAMA PAGE
   ================================================================ */

/* Opening statement — full-width dark editorial block */
.onama-statement {
  background: var(--black);
  padding: 100px 48px;
  position: relative;
  overflow: hidden;
}
.onama-statement::before {
  content: '"';
  position: absolute;
  top: -40px; left: 48px;
  font-family: var(--f-heading);
  font-size: 24rem;
  font-weight: 700;
  color: rgba(201,83,158,0.06);
  line-height: 1;
  pointer-events: none;
  user-select: none;
}
.onama-statement-inner {
  max-width: 860px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.onama-statement blockquote {
  font-family: var(--f-heading);
  font-size: clamp(1.8rem, 4vw, 3rem);
  font-weight: 400;
  font-style: italic;
  color: var(--white);
  line-height: 1.4;
  letter-spacing: -0.01em;
  margin-bottom: 32px;
}
.onama-statement blockquote em { color: var(--pink); font-style: normal; }
.onama-statement cite {
  display: flex;
  align-items: center;
  gap: 16px;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  font-style: normal;
}
.onama-statement cite::before {
  content: '';
  display: block;
  width: 40px; height: 1px;
  background: var(--pink);
}

/* Story section */
.onama-story {
  padding: var(--pad) 0;
  background: var(--cream);
}
.onama-story-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  display: grid;
  grid-template-columns: 1.4fr 0.6fr;
  gap: 100px;
  align-items: center;
}
.onama-story-content h2 {
  font-size: clamp(2.4rem, 4.5vw, 3.6rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 28px;
  line-height: 1.05;
}
.onama-story-content h2 em { font-style: italic; color: var(--pink); }
.onama-story-content p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.85;
  margin-bottom: 20px;
}
.onama-story-content p:last-of-type { margin-bottom: 44px; }

/* CSS art for story — layered composition */
.onama-art {
  position: relative;
  height: 520px;
  user-select: none;
}
.onama-art-bg {
  position: absolute;
  top: 40px; right: 0;
  width: 320px; height: 420px;
  background: linear-gradient(150deg, var(--blush) 0%, rgba(232,221,213,0.4) 100%);
}
.onama-art-accent {
  position: absolute;
  top: 0; right: 60px;
  width: 220px; height: 290px;
  background: rgba(201,83,158,0.07);
  border: 1px solid rgba(201,83,158,0.2);
}
.onama-art-dark {
  position: absolute;
  bottom: 0; left: 40px;
  width: 200px; height: 250px;
  background: var(--black);
}
.onama-art-circle {
  position: absolute;
  width: 150px; height: 150px;
  border-radius: 50%;
  left: 20px; top: 60px;
  border: 2px solid var(--pink);
  background: transparent;
}
.onama-art-circle::after {
  content: '';
  position: absolute;
  width: 100px; height: 100px;
  border-radius: 50%;
  top: 50%; left: 50%;
  transform: translate(-50%,-50%);
  background: rgba(201,83,158,0.1);
}
.onama-art-line {
  position: absolute;
  background: linear-gradient(to bottom, transparent, var(--pink), transparent);
  width: 1px; height: 140px;
  right: 30px; bottom: 60px;
}
.onama-art-text {
  position: absolute;
  bottom: 20px; left: 52px;
  font-family: var(--f-heading);
  font-size: 0.75rem;
  font-style: italic;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
  writing-mode: vertical-rl;
  text-orientation: mixed;
}
.onama-art-dots {
  position: absolute;
  top: 20px; left: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
}
.onama-art-dots span {
  display: block;
  width: 4px; height: 4px;
  border-radius: 50%;
  background: rgba(201,83,158,0.3);
}

/* Values pillars */
.onama-values {
  padding: var(--pad) 0;
  background: var(--white);
  border-top: 1px solid var(--blush);
  border-bottom: 1px solid var(--blush);
}
.onama-values-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
}
.onama-values-head {
  text-align: center;
  margin-bottom: 72px;
}
.onama-values-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  font-weight: 600;
  color: var(--black);
}
.onama-values-head h2 em { font-style: italic; color: var(--pink); }
.onama-values-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
}
.onama-value {
  padding: 48px 36px;
  background: var(--cream);
  position: relative;
  overflow: hidden;
  transition: background var(--t);
}
.onama-value::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--pink);
  transition: width 0.5s var(--ease-out);
}
.onama-value:hover { background: var(--blush); }
.onama-value:hover::after { width: 100%; }
.onama-value-icon {
  width: 48px; height: 48px;
  color: var(--pink);
  margin-bottom: 28px;
}
.onama-value-icon svg { width: 100%; height: 100%; }
.onama-value h3 {
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 12px;
}
.onama-value p {
  font-size: 0.84rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.75;
}

/* Promise / large quote */
.onama-promise {
  padding: var(--pad) 0;
  background: var(--cream);
  text-align: center;
}
.onama-promise-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 48px;
}
.onama-promise blockquote {
  font-family: var(--f-heading);
  font-size: clamp(1.6rem, 3.5vw, 2.6rem);
  font-weight: 400;
  font-style: italic;
  color: var(--black);
  line-height: 1.45;
  margin-bottom: 40px;
}
.onama-promise blockquote em { color: var(--pink); }
.onama-promise cite {
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--light);
  font-style: normal;
}

/* Specialties strip */
.onama-specialties {
  padding: var(--pad) 0;
  background: var(--black);
  position: relative;
  overflow: hidden;
}
.onama-specialties::after {
  content: '';
  position: absolute;
  bottom: -180px; right: -180px;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,83,158,0.08) 0%, transparent 70%);
  pointer-events: none;
}
.onama-specialties-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px;
  position: relative;
  z-index: 1;
}
.onama-specialties-head {
  margin-bottom: 64px;
}
.onama-specialties-head h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
  color: var(--white);
  font-weight: 600;
}
.onama-specialties-head h2 em { font-style: italic; color: var(--pink); }
.onama-specialties-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 2px;
}
.onama-specialty {
  padding: 40px 44px;
  border: 1px solid rgba(255,255,255,0.06);
  background: rgba(255,255,255,0.02);
  display: flex;
  gap: 28px;
  align-items: flex-start;
  transition: background var(--t), border-color var(--t);
}
.onama-specialty:hover {
  background: rgba(255,255,255,0.04);
  border-color: rgba(201,83,158,0.25);
}
.onama-specialty-num {
  font-family: var(--f-heading);
  font-size: 3rem;
  font-weight: 700;
  color: rgba(201,83,158,0.18);
  line-height: 1;
  flex-shrink: 0;
  transition: color 0.3s ease;
}
.onama-specialty:hover .onama-specialty-num {
  color: rgba(201,83,158,0.35);
}
.onama-specialty h3 {
  font-family: var(--f-heading);
  font-size: 1.4rem;
  font-weight: 500;
  color: var(--white);
  margin-bottom: 10px;
}
.onama-specialty p {
  font-size: 0.84rem;
  font-weight: 300;
  color: rgba(255,255,255,0.45);
  line-height: 1.75;
}

/* Responsive */
@media (max-width: 1060px) {
  .onama-story-inner { grid-template-columns: 1fr; gap: 60px; }
  .onama-art { height: 320px; }
  .onama-values-grid { grid-template-columns: repeat(2, 1fr); }
  .onama-specialties-grid { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .onama-statement { padding: 72px 24px; }
  .onama-statement::before { font-size: 14rem; }
  .onama-story-inner,
  .onama-values-inner,
  .onama-specialties-inner,
  .onama-promise-inner { padding: 0 24px; }
  .onama-values-grid { grid-template-columns: 1fr; gap: 2px; }
  .onama-specialty { padding: 28px 24px; }
}


/* ================================================================
   KONTAKT PAGE
   ================================================================ */

/* Hero — split layout, text left / photo right */
.kontakt-hero {
  padding-top: var(--header-h);
  background: linear-gradient(120deg, #f8f4f0 0%, #f7f2ed 64%, #f1e8e2 100%);
  border-bottom: 1px solid var(--blush);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
  min-height: clamp(560px, 78vh, 720px);
  align-items: center;
}
.kontakt-hero-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 84px 72px 84px max(40px, calc((100vw - var(--max-w)) / 2 + 48px));
}
.kontakt-hero-content h1 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
  font-weight: 600;
  color: var(--black);
  line-height: 1.0;
  margin-bottom: 24px;
}
.kontakt-hero-content h1 em { font-style: italic; color: var(--pink); }
.kontakt-hero-content p {
  font-size: 0.92rem;
  font-weight: 300;
  color: var(--mid);
  line-height: 1.8;
  max-width: 440px;
  margin-bottom: 34px;
}
.kontakt-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 14px;
}
.kontakt-hero-actions .btn {
  align-self: flex-start;
}
.kontakt-hero-img-wrap {
  position: relative;
  overflow: hidden;
  align-self: center;
  margin: 40px 48px 40px 0;
  height: clamp(320px, 56vh, 520px);
  border: 1px solid var(--blush);
}
.kontakt-hero-img-wrap::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(26,26,26,0.14) 0%, rgba(26,26,26,0) 45%);
  z-index: 1;
  pointer-events: none;
}
.kontakt-hero-img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
  display: block;
}

/* Main contact layout */
.kontakt-main,
.kontakt-map {
  --kontakt-side-col: clamp(300px, 31vw, 380px);
  --kontakt-grid-gap: clamp(48px, 6vw, 88px);
}
.kontakt-main {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 96px 48px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--kontakt-side-col);
  gap: var(--kontakt-grid-gap);
  align-items: start;
}

/* Left — contact cards */
.kontakt-cards { display: flex; flex-direction: column; gap: 4px; }

.kontakt-card {
  display: flex;
  align-items: flex-start;
  gap: 28px;
  padding: 36px 40px;
  background: var(--white);
  border: 1px solid var(--blush);
  transition: border-color var(--t), transform var(--t);
}
.kontakt-card:hover {
  border-color: var(--pink);
  transform: translateX(6px);
}
.kontakt-card-icon {
  width: 44px; height: 44px;
  background: rgba(201,83,158,0.08);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
  color: var(--pink);
}
.kontakt-card-icon svg { width: 20px; height: 20px; fill: currentColor; }
.kontakt-card-label {
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--light);
  display: block;
  margin-bottom: 8px;
}
.kontakt-card-value {
  font-family: var(--f-heading);
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--black);
  display: block;
  margin-bottom: 4px;
  line-height: 1.3;
}
.kontakt-card-value a {
  color: inherit;
  transition: color 0.25s ease;
}
.kontakt-card-value a:hover { color: var(--pink); }
.kontakt-card-sub {
  font-size: 0.8rem;
  color: var(--mid);
  font-weight: 300;
}
.kontakt-card-sub a {
  color: inherit;
  transition: color 0.25s ease;
}
.kontakt-card-sub a:hover { color: var(--pink); }
.kontakt-socials {
  display: flex;
  align-items: center;
  gap: 18px;
  margin-top: 4px;
  font-size: 1rem;
}
.kontakt-social-link {
  color: var(--mid);
  transition: color 0.25s ease;
}
.kontakt-social-link:hover { color: var(--pink); }

/* Right — hours + info */
.kontakt-info {}
.kontakt-info h2 {
  font-size: clamp(2rem, 3.5vw, 2.8rem);
  font-weight: 600;
  color: var(--black);
  margin-bottom: 32px;
  line-height: 1.1;
}
.kontakt-info h2 em { font-style: italic; color: var(--pink); }

.hours-grid {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 48px;
}
.hours-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  border-bottom: 1px solid var(--blush);
}
.hours-row:first-child { border-top: 1px solid var(--blush); }
.hours-day {
  font-size: 0.85rem;
  font-weight: 400;
  color: var(--black);
}
.hours-time {
  font-family: var(--f-heading);
  font-size: 1rem;
  font-weight: 500;
  color: var(--pink);
}
.hours-row.closed .hours-time { color: var(--light); }

.kontakt-note {
  background: rgba(201,83,158,0.05);
  border-left: 3px solid var(--pink);
  padding: 18px 22px;
}
.kontakt-note p {
  font-size: 0.83rem;
  color: var(--mid);
  line-height: 1.7;
}
.kontakt-note strong { color: var(--black); font-weight: 500; }

/* Map section */
.kontakt-map {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 48px 96px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) var(--kontakt-side-col);
  gap: var(--kontakt-grid-gap);
  align-items: start;
}
.kontakt-map-img-wrap {
  position: relative;
  border: 1px solid var(--blush);
  overflow: hidden;
}
.kontakt-map-img-wrap img {
  width: 100%;
  height: auto;
  display: block;
  filter: sepia(10%) contrast(1.05);
}
.kontakt-map-card {
  background: var(--white);
  border: 1px solid var(--blush);
  border-top: 3px solid var(--pink);
  padding: 40px 44px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.kontakt-map-card h3 {
  font-family: var(--f-heading);
  font-size: 1.8rem;
  font-weight: 600;
  color: var(--black);
  margin-bottom: 0;
}
.kontakt-map-card h3 em { font-style: italic; color: var(--pink); }
.kontakt-map-detail {
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.kontakt-map-detail svg {
  width: 16px; height: 16px;
  fill: var(--pink);
  flex-shrink: 0;
  margin-top: 2px;
}
.kontakt-map-detail p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}
.kontakt-map-detail p strong { color: var(--black); font-weight: 500; }
.kontakt-map-link {
  color: inherit;
  transition: color 0.25s ease;
}
.kontakt-map-link:hover { color: var(--pink); }
.kontakt-map-gmaps {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
  color: var(--pink);
  border-bottom: 1px solid rgba(201,83,158,0.3);
  padding-bottom: 2px;
  transition: gap 0.25s ease, border-color 0.25s ease;
  align-self: flex-start;
}
.kontakt-map-gmaps:hover { gap: 16px; border-color: var(--pink); }

/* Responsive */
@media (max-width: 900px) {
  .kontakt-main {
    grid-template-columns: 1fr;
    gap: 60px;
    padding: 64px 48px;
  }
  .kontakt-map {
    grid-template-columns: 1fr;
    padding: 0 48px 72px;
    gap: 44px;
  }
  .kontakt-map-card { align-self: start; }
}
@media (max-width: 768px) {
  .kontakt-hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .kontakt-hero-img-wrap {
    margin: 0 24px 28px;
    height: 300px;
  }
  .kontakt-hero-content { padding: 56px 24px 44px; }
  .kontakt-main { padding: 56px 24px; }
  .kontakt-map { padding: 0 24px 64px; }
  .kontakt-map-card { padding: 28px 24px; }
}
