/* Marija Brkić — Nageldesign & Nagel-Akademie : glossy feminine-luxe, light theme */
:root {
  --bg: #faf4ef;            /* warm off-white */
  --bg-2: #f4e7e0;          /* blush surface */
  --surface: #ffffff;
  --ink: #3a2630;           /* deep plum/espresso text */
  --ink-soft: #6a4b56;      /* muted plum */
  --muted: #9a7e88;
  --line: #ead8d2;
  --blush: #e9b9c4;         /* soft blush */
  --rose: #c98a9c;          /* rose */
  --gold: #b88a5e;          /* warm rose-gold metallic */
  --gold-2: #d8b48b;        /* light gold highlight */
  --chrome-a: #cf9fae;
  --chrome-b: #e7c9b6;
  --maxw: 1140px;
  --radius: 18px;
  --shadow-sm: 0 4px 18px rgba(96, 54, 68, 0.08);
  --shadow-md: 0 18px 50px rgba(96, 54, 68, 0.16);
  --ease: cubic-bezier(.22,.61,.36,1);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: 'Jost', system-ui, -apple-system, 'Segoe UI', sans-serif;
  font-weight: 400;
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }

h1, h2, h3, .brand-mark {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: .2px;
}
h2 { font-size: clamp(1.9rem, 4.6vw, 3rem); margin: 0 0 .4em; }
h3 { font-size: 1.35rem; margin: 0 0 .35em; }

.container { width: 100%; max-width: var(--maxw); margin: 0 auto; padding: 0 22px; }
.section { padding: clamp(64px, 10vw, 120px) 0; position: relative; }

/* metallic accent text */
.metal {
  background: linear-gradient(100deg, var(--gold) 0%, var(--gold-2) 38%, #f2dcc4 50%, var(--gold-2) 62%, var(--gold) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

/* ---------- eyebrow ---------- */
.eyebrow {
  font-size: .76rem;
  letter-spacing: .32em;
  text-transform: uppercase;
  color: var(--rose);
  font-weight: 500;
  margin: 0 0 .9rem;
}
.eyebrow-line { display: inline-flex; align-items: center; gap: .7rem; }
.eyebrow-line::before { content: ""; width: 30px; height: 1px; background: var(--gold); }

/* ---------- buttons ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5rem;
  padding: .85rem 1.6rem;
  border-radius: 999px;
  font-family: 'Jost', sans-serif;
  font-weight: 500;
  font-size: .96rem;
  letter-spacing: .02em;
  cursor: pointer;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background .25s;
  border: 1px solid transparent;
}
.btn-gold {
  background: linear-gradient(115deg, var(--rose), var(--gold));
  color: #fff;
  box-shadow: 0 10px 26px rgba(201, 138, 156, 0.4);
}
.btn-gold:hover { transform: translateY(-2px); box-shadow: 0 16px 34px rgba(201, 138, 156, 0.5); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--gold);
}
.btn-ghost:hover { background: rgba(184, 138, 94, 0.1); transform: translateY(-2px); }

/* ---------- header ---------- */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(250, 244, 239, 0.72);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid transparent;
  transition: background .3s, box-shadow .3s, border-color .3s;
}
.site-header.scrolled {
  background: rgba(250, 244, 239, 0.92);
  border-bottom-color: var(--line);
  box-shadow: var(--shadow-sm);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; height: 74px; }
.brand { display: flex; flex-direction: column; line-height: 1; }
.brand-mark { font-size: 1.34rem; letter-spacing: .04em; color: var(--ink); }
.brand-sub {
  font-family: 'Jost', sans-serif;
  font-size: .62rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--rose); margin-top: 4px;
}
.nav { display: flex; align-items: center; gap: 1.7rem; }
.nav a {
  font-size: .92rem; color: var(--ink-soft); font-weight: 400;
  position: relative; transition: color .2s;
}
.nav a:not(.nav-cta)::after {
  content: ""; position: absolute; left: 0; bottom: -6px; width: 0; height: 1.5px;
  background: var(--gold); transition: width .25s var(--ease);
}
.nav a:not(.nav-cta):hover { color: var(--ink); }
.nav a:not(.nav-cta):hover::after { width: 100%; }
.nav-cta {
  padding: .55rem 1.25rem; border-radius: 999px;
  background: linear-gradient(115deg, var(--rose), var(--gold));
  color: #fff !important; font-weight: 500;
  box-shadow: 0 8px 20px rgba(201, 138, 156, 0.35);
  transition: transform .2s;
}
.nav-cta:hover { transform: translateY(-1px); }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px;
  width: 44px; height: 44px; align-items: center; justify-content: center;
  background: transparent; border: 1px solid var(--line); border-radius: 12px; cursor: pointer;
}
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: .3s; }

/* ---------- hero ---------- */
.hero { position: relative; padding: clamp(48px, 8vw, 92px) 0 clamp(56px, 8vw, 96px); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; inset: 0;
  background:
    radial-gradient(60% 50% at 82% 18%, rgba(233, 185, 196, 0.55), transparent 70%),
    radial-gradient(50% 50% at 12% 88%, rgba(216, 180, 139, 0.35), transparent 70%);
  pointer-events: none;
}
.hero-grid {
  position: relative; display: grid; grid-template-columns: 1.15fr .85fr;
  gap: clamp(30px, 5vw, 64px); align-items: center;
}
.hero-copy .eyebrow { color: var(--rose); }
.hero h1 { font-size: clamp(2.6rem, 7.4vw, 4.8rem); margin: 0 0 1.1rem; }
.hero-lede { font-size: 1.12rem; color: var(--ink-soft); max-width: 33ch; margin: 0 0 1.9rem; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .9rem; margin-bottom: 1.6rem; }
.hero-meta { font-size: .85rem; letter-spacing: .04em; color: var(--muted); }

.hero-figure { margin: 0; position: relative; justify-self: center; max-width: 340px; }
.frame {
  position: relative; border-radius: var(--radius); overflow: hidden;
  background: var(--surface);
  padding: 12px; box-shadow: var(--shadow-md);
  border: 1px solid var(--line);
}
.frame::after {
  content: ""; position: absolute; inset: 0; border-radius: var(--radius);
  box-shadow: inset 0 0 0 1px rgba(184, 138, 94, 0.25);
  pointer-events: none;
}
.frame img { border-radius: 10px; width: 100%; height: auto; }
.hero-figure figcaption {
  display: flex; align-items: center; gap: .5rem; justify-content: center;
  margin-top: .9rem; font-size: .82rem; letter-spacing: .04em; color: var(--ink-soft);
}
.hero-figure .dot { width: 7px; height: 7px; border-radius: 50%; background: var(--rose); }

/* badge marquee homage to followers/education (no fabricated facts; just brand words) */
.ticker { position: relative; margin-top: clamp(34px, 5vw, 56px); overflow: hidden; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); padding: 14px 0; }
.ticker-track { display: inline-flex; white-space: nowrap; gap: 0; animation: slide 28s linear infinite; will-change: transform; }
.ticker-track span { font-family: 'Cormorant Garamond', serif; font-size: 1.25rem; color: var(--ink-soft); padding: 0 1.1rem; }
.ticker-track .sep { color: var(--gold); }
@keyframes slide { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- about ---------- */
.about-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(30px, 5vw, 64px); align-items: center; }
.about-portrait { justify-self: center; max-width: 320px; }
.about-portrait .frame { border-radius: 50% / 50%; }
.about-portrait .frame img { border-radius: 50%; aspect-ratio: 1/1; object-fit: cover; }
.about-body .lead { font-size: 1.18rem; color: var(--ink); margin-top: 0; }
.about-body p { color: var(--ink-soft); }

.pillars { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; margin-top: clamp(40px, 5vw, 60px); }
.pillar {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.pillar:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.pillar-num {
  font-family: 'Cormorant Garamond', serif; font-size: 2rem; display: block; margin-bottom: .3rem;
}
.pillar h3 { font-size: 1.18rem; }
.pillar p { font-size: .95rem; color: var(--ink-soft); margin: 0; }

/* ---------- gallery ---------- */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}
.section-head { margin-bottom: clamp(34px, 4vw, 52px); max-width: 640px; }
.section-sub { color: var(--ink-soft); font-size: 1.02rem; }
.card {
  margin: 0; position: relative; cursor: pointer;
  background: var(--surface); border: 1px solid var(--line); border-radius: 16px;
  padding: 10px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
  outline: none;
}
.card:hover, .card:focus-visible { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card:focus-visible { box-shadow: 0 0 0 2px var(--gold), var(--shadow-md); }
.card-media {
  border-radius: 10px; overflow: hidden; background: var(--bg-2);
  aspect-ratio: 4 / 5; display: flex; align-items: center; justify-content: center;
}
.card-media img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s var(--ease); }
.card:hover .card-media img { transform: scale(1.05); }
.card figcaption {
  display: block; padding: 10px 6px 4px; font-size: .82rem; letter-spacing: .03em; color: var(--ink-soft);
  text-align: center;
}
.gallery-foot { text-align: center; margin-top: clamp(30px, 4vw, 44px); color: var(--ink-soft); }
.gallery-foot a { color: var(--rose); font-weight: 500; border-bottom: 1px solid var(--blush); }
.gallery-foot a:hover { color: var(--gold); }

/* ---------- schulung / academy ---------- */
.academy { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.svc-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.svc {
  background: var(--surface); border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; box-shadow: var(--shadow-sm);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.svc:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.svc .svc-ico { font-size: 1.4rem; margin-bottom: .5rem; display: block; }
.svc h3 { font-size: 1.2rem; }
.svc p { color: var(--ink-soft); font-size: .96rem; margin: 0; }
.academy-note { margin-top: clamp(34px, 4vw, 46px); text-align: center; }

/* ---------- contact ---------- */
.contact { text-align: center; }
.contact .section-head { margin-left: auto; margin-right: auto; text-align: center; }
.contact .eyebrow-line { justify-content: center; }
.contact-lede { max-width: 52ch; margin: 0 auto 1.9rem; color: var(--ink-soft); font-size: 1.1rem; }
.contact-actions { display: flex; flex-wrap: wrap; gap: .9rem; justify-content: center; }
.contact-meta { margin-top: 1.6rem; color: var(--muted); font-size: .9rem; letter-spacing: .04em; }

/* ---------- footer ---------- */
.site-footer { background: var(--ink); color: #f3e6df; padding: clamp(46px, 6vw, 70px) 0 32px; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 30px; align-items: start; }
.footer-brand .brand-mark { color: #fff; font-size: 1.5rem; }
.footer-brand .brand-sub { color: var(--gold-2); }
.footer-col .vd-label { font-size: .7rem; letter-spacing: .26em; text-transform: uppercase; color: var(--gold-2); display: block; margin-bottom: .5rem; }
.footer-col p { margin: 0; color: #e2cfc6; font-size: .95rem; }
.footer-col a { color: #f3e6df; border-bottom: 1px solid rgba(216,180,139,.5); }
.footer-col a:hover { color: var(--gold-2); }
.footer-base {
  display: flex; flex-wrap: wrap; gap: 10px; justify-content: space-between;
  margin-top: clamp(34px, 4vw, 50px); padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12);
  font-size: .8rem; color: #c3aaa0; letter-spacing: .03em;
}

/* ---------- sticky mobile CTA ---------- */
.mobile-cta {
  position: fixed; left: 0; right: 0; bottom: 0; z-index: 60;
  display: none; padding: 10px 16px calc(10px + env(safe-area-inset-bottom));
  background: rgba(250, 244, 239, 0.94);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-top: 1px solid var(--line);
}
.mobile-cta .btn { width: 100%; }

/* ---------- reveal ---------- */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- lightbox ---------- */
.lightbox {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(40, 24, 32, 0.82);
  backdrop-filter: blur(6px); -webkit-backdrop-filter: blur(6px);
  display: none; align-items: center; justify-content: center; padding: 24px;
}
.lightbox.open { display: flex; }
.lb-inner { margin: 0; max-width: 560px; width: 100%; text-align: center; }
.lb-inner img {
  max-width: 100%; max-height: 74vh; margin: 0 auto; border-radius: 14px;
  background: #fff; padding: 8px; box-shadow: var(--shadow-md);
}
.lb-cap { display: block; margin-top: 14px; color: #f6ebe5; }
.lb-cap .lb-title { font-family: 'Cormorant Garamond', serif; font-size: 1.3rem; display: block; }
.lb-cap .lb-note { display: block; font-size: .9rem; color: #e2cabf; margin-top: 4px; }
.lb-close, .lb-nav {
  position: fixed; background: rgba(255,255,255,.12); color: #fff; border: 1px solid rgba(255,255,255,.25);
  width: 48px; height: 48px; border-radius: 50%; cursor: pointer; font-size: 1.5rem; line-height: 1;
  display: flex; align-items: center; justify-content: center; transition: background .2s, transform .2s;
}
.lb-close:hover, .lb-nav:hover { background: rgba(255,255,255,.24); }
.lb-close { top: 22px; right: 22px; }
.lb-nav { top: 50%; transform: translateY(-50%); font-size: 2rem; }
.lb-prev { left: 18px; }
.lb-next { right: 18px; }

/* ---------- responsive ---------- */
@media (max-width: 880px) {
  .nav {
    position: fixed; top: 74px; right: 0; left: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(250, 244, 239, 0.98);
    backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line);
    padding: 8px 22px 20px;
    transform: translateY(-12px); opacity: 0; pointer-events: none;
    transition: opacity .25s, transform .25s;
    box-shadow: var(--shadow-md);
  }
  .nav.open { transform: none; opacity: 1; pointer-events: auto; }
  .nav a { padding: 14px 4px; border-bottom: 1px solid var(--line); }
  .nav a:not(.nav-cta)::after { display: none; }
  .nav-cta { margin-top: 12px; text-align: center; }
  .nav-toggle { display: flex; }

  .hero-grid { grid-template-columns: 1fr; text-align: center; }
  .hero-copy .eyebrow, .hero-actions { justify-content: center; }
  .hero-copy .eyebrow { display: block; }
  .hero-lede { max-width: none; margin-left: auto; margin-right: auto; }
  .hero-figure { order: -1; max-width: 260px; }

  .about-grid { grid-template-columns: 1fr; text-align: center; }
  .about-portrait { order: -1; max-width: 240px; }
  .pillars { grid-template-columns: 1fr; }
  .svc-grid { grid-template-columns: 1fr 1fr; }
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr; gap: 24px; }
  .mobile-cta { display: block; }
  body { padding-bottom: 76px; }
}
@media (max-width: 480px) {
  .svc-grid { grid-template-columns: 1fr; }
  .gallery { gap: 12px; }
  .hero h1 { font-size: clamp(2.3rem, 12vw, 3.2rem); }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: .001ms !important; animation-iteration-count: 1 !important; transition-duration: .001ms !important; scroll-behavior: auto !important; }
  .reveal { opacity: 1; transform: none; }
}
