/* ============================================================
   Stile d'Oro — Prémium szépségszalon
   Fekete + arany, elegáns one-pager
   ============================================================ */

:root {
  /* Színek */
  --black:        #0c0c0c;
  --black-2:      #111110;
  --charcoal:     #17160f;
  --panel:        #1a1813;
  --line:         rgba(212, 175, 55, 0.22);
  --line-soft:    rgba(212, 175, 55, 0.12);

  --gold:         #d4af37;
  --gold-light:   #f5d98b;
  --gold-deep:    #b8860b;
  --gold-grad:    linear-gradient(135deg, #b8860b 0%, #f5d98b 45%, #d4af37 75%, #a9791d 100%);

  --cream:        #f6f1e6;
  --text:         #e9e3d5;
  --text-dim:     #b3aa96;
  --text-faint:   #7d7563;

  --font-serif:   'Cormorant Garamond', 'Times New Roman', serif;
  --font-sans:    'Jost', 'Helvetica Neue', Arial, sans-serif;

  --maxw:         1180px;
  --ease:         cubic-bezier(0.22, 1, 0.36, 1);
}

* { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; scroll-padding-top: 84px; }

body {
  background: var(--black);
  color: var(--text);
  font-family: var(--font-sans);
  font-weight: 300;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; display: block; }

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

h1, h2, h3, h4 { font-family: var(--font-serif); font-weight: 500; line-height: 1.15; color: var(--cream); }

a { color: inherit; text-decoration: none; transition: color .3s var(--ease); }

/* ---------- Gomb ---------- */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: .5em;
  font-family: var(--font-sans); font-weight: 500; font-size: .8rem;
  letter-spacing: .18em; text-transform: uppercase;
  padding: 14px 30px; border-radius: 2px; cursor: pointer;
  border: 1px solid transparent; transition: all .35s var(--ease); white-space: nowrap;
}
.btn-lg { padding: 17px 40px; font-size: .82rem; }

.btn-gold {
  background: var(--gold-grad); color: #1a1305;
  box-shadow: 0 6px 26px rgba(212,175,55,.18);
}
.btn-gold:hover {
  color: #1a1305; transform: translateY(-2px);
  box-shadow: 0 10px 34px rgba(212,175,55,.34);
  filter: brightness(1.06);
}

.btn-ghost {
  background: transparent; color: var(--gold-light);
  border-color: var(--line);
}
.btn-ghost:hover { border-color: var(--gold); color: var(--cream); background: rgba(212,175,55,.06); }

/* ---------- Header ---------- */
.site-header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 18px 0;
  background: rgba(12,12,12,0);
  transition: background .4s var(--ease), padding .4s var(--ease), border-color .4s var(--ease);
  border-bottom: 1px solid transparent;
}
.site-header.scrolled {
  background: rgba(10,10,9,.92);
  backdrop-filter: blur(12px);
  padding: 10px 0;
  border-bottom: 1px solid var(--line-soft);
}
.header-inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.brand { display: flex; align-items: center; }
.brand-logo { height: 46px; width: auto; transition: height .4s var(--ease); }
.site-header.scrolled .brand-logo { height: 38px; }
.brand-fallback { flex-direction: column; line-height: 1; }
.brand-name { font-family: var(--font-serif); font-size: 1.35rem; letter-spacing: .22em; color: var(--gold-light); }
.brand-sub  { font-size: .55rem; letter-spacing: .42em; color: var(--text-faint); margin-top: 3px; }

.nav { display: flex; align-items: center; gap: 30px; }
.nav > a:not(.btn) {
  font-size: .78rem; letter-spacing: .14em; text-transform: uppercase;
  color: var(--text-dim); position: relative; padding: 4px 0;
}
.nav > a:not(.btn)::after {
  content: ''; position: absolute; left: 0; bottom: -2px; width: 0; height: 1px;
  background: var(--gold-grad); transition: width .3s var(--ease);
}
.nav > a:not(.btn):hover { color: var(--cream); }
.nav > a:not(.btn):hover::after { width: 100%; }
.nav-cta { padding: 11px 22px; }

.nav-toggle {
  display: none; flex-direction: column; gap: 5px; background: none; border: none;
  cursor: pointer; padding: 6px; z-index: 120;
}
.nav-toggle span { width: 26px; height: 2px; background: var(--gold-light); transition: all .3s var(--ease); }
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---------- Hero ---------- */
.hero {
  position: relative; min-height: 100vh; display: flex; align-items: center;
  text-align: center; overflow: hidden;
  background:
    radial-gradient(ellipse 80% 60% at 50% 0%, rgba(212,175,55,.10), transparent 60%),
    radial-gradient(ellipse 60% 50% at 50% 110%, rgba(184,134,11,.10), transparent 60%),
    var(--black);
}
.hero-overlay {
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,.05) 1px, transparent 1px);
  background-size: 64px 64px; opacity: .25; mask-image: radial-gradient(ellipse 70% 70% at 50% 40%, #000, transparent 75%);
}
.hero-inner { position: relative; z-index: 2; padding: 120px 24px 90px; }
.hero-logo { max-width: 420px; width: 78%; margin: 0 auto 10px; filter: drop-shadow(0 12px 40px rgba(212,175,55,.18)); }

.hero-logo-fallback { margin-bottom: 20px; }
.diamond-mark { font-size: 2.2rem; color: var(--gold); margin-bottom: 12px; }
.hero-wordmark { font-size: clamp(2.6rem, 8vw, 5rem); letter-spacing: .16em; color: transparent; background: var(--gold-grad); -webkit-background-clip: text; background-clip: text; }
.hero-wordmark-sub { letter-spacing: .5em; font-size: .8rem; color: var(--text-faint); margin-top: 6px; }

.hero-tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: clamp(1.4rem, 3.4vw, 2.1rem); color: var(--gold-light);
  margin-top: 6px; letter-spacing: .02em;
}
.hero-lead {
  max-width: 620px; margin: 22px auto 0; color: var(--text-dim);
  font-size: 1.02rem; font-weight: 300;
}
.hero-actions { margin-top: 38px; display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

.scroll-hint { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); z-index: 2; }
.scroll-hint span {
  display: block; width: 22px; height: 36px; border: 1px solid var(--line); border-radius: 12px; position: relative;
}
.scroll-hint span::after {
  content: ''; position: absolute; top: 7px; left: 50%; transform: translateX(-50%);
  width: 3px; height: 7px; background: var(--gold); border-radius: 2px; animation: scrolldot 1.8s var(--ease) infinite;
}
@keyframes scrolldot { 0% { opacity: 0; transform: translate(-50%, 0); } 40% { opacity: 1; } 80% { opacity: 0; transform: translate(-50%, 12px); } 100% { opacity: 0; } }

/* ---------- Section alap ---------- */
.section { padding: 100px 0; position: relative; }
.section-dark { background: linear-gradient(180deg, var(--black-2), var(--charcoal)); border-top: 1px solid var(--line-soft); border-bottom: 1px solid var(--line-soft); }

.section-head { text-align: center; max-width: 680px; margin: 0 auto 60px; }
.eyebrow { display: inline-block; font-size: .72rem; letter-spacing: .38em; text-transform: uppercase; color: var(--gold); margin-bottom: 16px; }
.section-head h2 { font-size: clamp(2rem, 5vw, 3rem); }
.section-intro { color: var(--text-dim); margin-top: 18px; font-size: 1.02rem; }

.divider { display: flex; align-items: center; justify-content: center; gap: 16px; margin: 20px 0 4px; }
.divider::before, .divider::after { content: ''; height: 1px; width: 70px; background: linear-gradient(90deg, transparent, var(--gold)); }
.divider::after { background: linear-gradient(90deg, var(--gold), transparent); }
.divider span { color: var(--gold); font-size: .8rem; }

/* ---------- Kártyák ---------- */
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; }
.card {
  position: relative; background: linear-gradient(180deg, rgba(26,24,19,.9), rgba(17,17,16,.9));
  border: 1px solid var(--line-soft); border-radius: 6px; padding: 40px 32px;
  transition: transform .4s var(--ease), border-color .4s var(--ease), box-shadow .4s var(--ease);
}
.card::before {
  content: ''; position: absolute; inset: 0; border-radius: 6px; padding: 1px;
  background: var(--gold-grad); -webkit-mask: linear-gradient(#000 0 0) content-box, linear-gradient(#000 0 0);
  -webkit-mask-composite: xor; mask-composite: exclude; opacity: 0; transition: opacity .4s var(--ease); pointer-events: none;
}
.card:hover { transform: translateY(-6px); box-shadow: 0 24px 50px rgba(0,0,0,.5); }
.card:hover::before { opacity: 1; }
.card-icon { font-size: 1.4rem; color: var(--gold); margin-bottom: 18px; }
.card h3 { font-size: 1.5rem; margin-bottom: 14px; }
.card-text { color: var(--text-dim); font-size: .96rem; }
.card-list { list-style: none; margin: 18px 0 22px; display: grid; gap: 9px; }
.card-list li { position: relative; padding-left: 20px; font-size: .9rem; color: var(--text); }
.card-list li::before { content: '◆'; position: absolute; left: 0; color: var(--gold); font-size: .6rem; top: 5px; }
.card-list strong { color: var(--cream); font-weight: 500; }
.card-link { display: inline-block; font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); }
.card-link:hover { color: var(--cream); letter-spacing: .14em; }

.badge {
  position: absolute; top: 22px; right: 22px; font-size: .62rem; letter-spacing: .16em; text-transform: uppercase;
  color: var(--gold-light); border: 1px solid var(--line); border-radius: 40px; padding: 5px 12px; background: rgba(212,175,55,.06);
}
.card-soon { opacity: .96; }

/* ---------- Árlista ---------- */
.pricelist { max-width: 780px; margin: 0 auto; display: grid; gap: 40px; }
.price-group-title { font-size: 1.5rem; color: var(--gold-light); margin-bottom: 18px; padding-bottom: 10px; border-bottom: 1px solid var(--line-soft); }
.price-row { display: flex; align-items: baseline; gap: 10px; padding: 11px 0; }
.price-name { color: var(--text); font-size: 1.02rem; }
.price-name em { color: var(--text-faint); font-style: normal; font-size: .84rem; }
.price-dots { flex: 1; border-bottom: 1px dotted rgba(212,175,55,.3); transform: translateY(-4px); }
.price-value { font-family: var(--font-serif); font-size: 1.3rem; color: var(--gold-light); white-space: nowrap; }
.price-soon { font-family: var(--font-sans); font-size: .82rem; letter-spacing: .14em; text-transform: uppercase; color: var(--text-faint); }
.arak-cta { text-align: center; margin-top: 54px; }

/* ---------- Rólam ---------- */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 60px; align-items: center; }
.about-photo-inner {
  aspect-ratio: 4/5; border-radius: 6px; border: 1px solid var(--line);
  background: radial-gradient(circle at 50% 35%, rgba(212,175,55,.10), rgba(17,17,16,.9));
  display: flex; align-items: center; justify-content: center; position: relative; overflow: hidden;
}
.about-photo-inner::after { content: '✦'; position: absolute; font-size: 6rem; color: rgba(212,175,55,.08); }
.about-photo-placeholder { color: var(--text-faint); text-align: center; font-size: .95rem; letter-spacing: .1em; z-index: 1; }
.about-text .eyebrow { margin-bottom: 8px; }
.script-heading { font-style: italic; font-size: clamp(2.4rem, 5vw, 3.4rem); color: var(--gold-light); margin-bottom: 20px; }
.about-text p { color: var(--text-dim); margin-bottom: 16px; }
.about-values { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin: 26px 0; }
.about-values li { display: flex; align-items: center; gap: 10px; color: var(--text); font-size: .95rem; }
.about-values li span { color: var(--gold); font-size: .8rem; }
.signature { font-family: var(--font-serif); font-style: italic; font-size: 2rem; color: var(--gold-light); margin-top: 10px; }

/* ---------- Galéria ---------- */
.gallery { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.gallery-item {
  aspect-ratio: 1; border-radius: 4px; border: 1px solid var(--line-soft);
  background: linear-gradient(135deg, rgba(26,24,19,.9), rgba(17,17,16,.9));
  display: flex; align-items: center; justify-content: center; color: var(--text-faint);
  font-size: .85rem; letter-spacing: .1em; transition: all .4s var(--ease); position: relative; overflow: hidden;
}
.gallery-item:hover { border-color: var(--gold); color: var(--gold-light); transform: scale(1.02); }

/* ---------- Kapcsolat ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1.1fr; gap: 50px; align-items: stretch; }
.contact-info { display: grid; gap: 28px; align-content: start; }
.contact-item { display: flex; gap: 18px; align-items: flex-start; }
.contact-ico {
  flex-shrink: 0; width: 46px; height: 46px; border-radius: 50%; border: 1px solid var(--line);
  display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 1.1rem;
  background: rgba(212,175,55,.05);
}
.contact-item h4 { font-size: 1.1rem; color: var(--cream); margin-bottom: 4px; }
.contact-item p { color: var(--text-dim); font-size: .96rem; }
.contact-item a:hover { color: var(--gold-light); }
.contact-item .btn { margin-top: 12px; }
.contact-map { border-radius: 6px; overflow: hidden; border: 1px solid var(--line); min-height: 380px; }
.contact-map iframe { width: 100%; height: 100%; min-height: 380px; border: 0; filter: grayscale(.4) contrast(1.05); }

/* ---------- Footer ---------- */
.site-footer { background: var(--black-2); border-top: 1px solid var(--line-soft); padding-top: 64px; }
.footer-inner { display: grid; grid-template-columns: 1.4fr 1fr 1.3fr; gap: 40px; padding-bottom: 48px; }
.footer-logo { height: 60px; margin-bottom: 14px; }
.footer-fallback { font-family: var(--font-serif); font-size: 1.6rem; letter-spacing: .2em; color: var(--gold-light); }
.footer-tagline { font-family: var(--font-serif); font-style: italic; color: var(--text-dim); font-size: 1.05rem; }
.footer-links, .footer-contact { display: grid; gap: 9px; align-content: start; }
.footer-links h4, .footer-contact h4 { font-size: .8rem; letter-spacing: .2em; text-transform: uppercase; color: var(--gold); margin-bottom: 8px; }
.footer-links a { color: var(--text-dim); font-size: .92rem; }
.footer-links a:hover { color: var(--gold-light); }
.footer-contact p { color: var(--text-dim); font-size: .92rem; }
.footer-contact a:hover { color: var(--gold-light); }
.footer-social { display: flex; gap: 18px; margin-top: 10px; }
.footer-social a { font-size: .8rem; letter-spacing: .1em; text-transform: uppercase; color: var(--gold-light); border-bottom: 1px solid var(--line); padding-bottom: 2px; }
.footer-social a:hover { color: var(--cream); border-color: var(--gold); }
.footer-bottom { border-top: 1px solid var(--line-soft); padding: 22px 0; }
.footer-bottom .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 8px; }
.footer-bottom span { font-size: .8rem; color: var(--text-faint); letter-spacing: .05em; }

/* ---------- Reveal animáció ---------- */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity .8s var(--ease), transform .8s var(--ease); }
.reveal.in { opacity: 1; transform: none; }

/* ---------- Reszponzív ---------- */
@media (max-width: 940px) {
  .cards { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
  .about-grid { grid-template-columns: 1fr; gap: 36px; }
  .about-photo { max-width: 340px; margin: 0 auto; width: 100%; }
  .contact-grid { grid-template-columns: 1fr; gap: 32px; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 720px) {
  .nav {
    position: fixed; inset: 0 0 0 auto; width: min(80%, 320px); height: 100vh;
    flex-direction: column; justify-content: center; gap: 26px;
    background: rgba(10,10,9,.98); backdrop-filter: blur(14px);
    border-left: 1px solid var(--line); transform: translateX(100%);
    transition: transform .45s var(--ease); padding: 40px;
  }
  .nav.open { transform: translateX(0); }
  .nav > a:not(.btn) { font-size: 1rem; }
  .nav-toggle { display: flex; }
  .section { padding: 74px 0; }
  .gallery { grid-template-columns: 1fr 1fr; }
  .about-values { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; max-width: 300px; }
}

@media (prefers-reduced-motion: reduce) {
  * { animation: none !important; scroll-behavior: auto; }
  .reveal { opacity: 1; transform: none; transition: none; }
}
