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

:root {
  --rose:    #b5717a;
  --rose-lt: #d4a0a8;
  --rose-dk: #8a4f58;
  --sand:    #f5f0eb;
  --sand-dk: #ede6de;
  --charcoal:#2e2b28;
  --mid:     #6b6560;
  --light:   #a09890;
  --white:   #ffffff;
  --border:  rgba(46,43,40,0.1);
}

html { scroll-behavior: smooth; }

body {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: var(--charcoal);
  background: var(--white);
  overflow-x: hidden;
}

/* ── NAV ── */
nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 0 6%;
  height: 68px;
  background: rgba(255,255,255,0.96);
  border-bottom: 1px solid var(--border);
  backdrop-filter: blur(12px);
  transition: box-shadow 0.3s;
}
nav.scrolled { box-shadow: 0 1px 20px rgba(46,43,40,0.08); }

.logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.3rem;
  font-weight: 600;
  color: var(--charcoal);
  letter-spacing: 0.06em;
}
.logo span { color: var(--rose); }

/* Logo kép a navbarban */
.logo-link {
  display: flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
}
.logo-img {
  height: 36px;
  width: auto;
  display: block;
  transition: opacity 0.2s;
}
.logo-link:hover .logo-img { opacity: 0.75; }

.nav-links { display: flex; gap: 2.2rem; list-style: none; }
.nav-links a {
  font-family: 'DM Sans', sans-serif;
  text-decoration: none;
  color: var(--mid);
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: var(--charcoal); }

.nav-cta {
  background: var(--charcoal) !important;
  color: var(--white) !important;
  padding: 0.5rem 1.3rem;
  border-radius: 2px;
}
.nav-cta:hover { background: var(--rose-dk) !important; }

.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; background: none; border: none; }
.hamburger span { display: block; width: 22px; height: 1.5px; background: var(--charcoal); transition: 0.3s; }

/* ── HERO ── */
#hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  padding-top: 68px;
  background: var(--charcoal);
  position: relative;
  overflow: hidden;
}

/* Hero háttérkép */
.hero-bg-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.25;
  pointer-events: none;
  z-index: 0;
}

/* Rose gradiens overlay bal oldalon */
#hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    rgba(44, 36, 34, 0.97) 0%,
    rgba(44, 36, 34, 0.92) 40%,
    rgba(44, 36, 34, 0.55) 65%,
    transparent 100%
  );
  pointer-events: none;
  z-index: 1;
}

.hero-text {
  padding: 80px 6% 80px 8%;
  position: relative;
  z-index: 2;
}

.hero-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--rose);
  margin-bottom: 1.6rem;
  display: flex; align-items: center; gap: 0.8rem;
  position: relative;
  z-index: 2;
}
.hero-eyebrow::before {
  content: '';
  display: inline-block;
  width: 28px; height: 1px;
  background: var(--rose);
}

h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2.8rem, 4.5vw, 4.4rem);
  font-weight: 400;
  color: var(--white);
  line-height: 1.12;
  margin-bottom: 1.8rem;
  letter-spacing: -0.01em;
}
h1 em { font-style: italic; color: var(--rose); }

.hero-sub {
  font-family: 'DM Sans', sans-serif;
  font-size: 1rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.8;
  max-width: 420px;
  margin-bottom: 2.8rem;
  font-weight: 300;
  position: relative;
  z-index: 2;
}

.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; position: relative; z-index: 2; }

.btn-primary {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--rose);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-weight: 400;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: background 0.25s;
}
.btn-primary:hover { background: var(--rose-dk); }

.btn-outline {
  display: inline-flex; align-items: center; gap: 0.5rem;
  border: 1px solid rgba(255,255,255,0.5);
  color: var(--white);
  padding: 0.85rem 2rem;
  border-radius: 2px;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.88rem;
  letter-spacing: 0.06em;
  text-decoration: none;
  transition: border-color 0.25s, color 0.25s;
}
.btn-outline:hover { border-color: var(--rose); color: var(--rose); }

.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
  padding: 60px 6% 80px;
  position: relative;
  z-index: 2;
  height: 100%;
  min-height: 100vh;
}

.hero-stats {
  display: flex;
  gap: 2rem;
  background: rgba(44,36,34,0.75);
  backdrop-filter: blur(8px);
  border: 1px solid rgba(181,113,122,0.3);
  border-radius: 10px;
  padding: 1.5rem 2rem;
}
.stat { text-align: center; }
.stat-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.4rem; font-weight: 600;
  color: var(--white); line-height: 1; display: block;
}
.stat-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; color: rgba(255,255,255,0.65);
  text-transform: uppercase; letter-spacing: 0.1em;
  margin-top: 0.3rem; display: block;
}

/* ── SECTION COMMON ── */
section { padding: 90px 8%; }

.section-eyebrow {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; font-weight: 500;
  letter-spacing: 0.2em; text-transform: uppercase;
  color: var(--rose); margin-bottom: 0.9rem;
  display: flex; align-items: center; gap: 0.8rem;
}
.section-eyebrow::before {
  content: ''; display: inline-block;
  width: 22px; height: 1px; background: var(--rose);
}

.section-title {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(2rem, 3.5vw, 3rem);
  font-weight: 400;
  color: var(--charcoal); line-height: 1.18;
  margin-bottom: 1rem; letter-spacing: -0.01em;
}

.section-desc {
  font-family: 'DM Sans', sans-serif;
  color: var(--mid); font-size: 0.95rem; font-weight: 300;
  line-height: 1.8; max-width: 520px; margin-bottom: 3.5rem;
}

/* ── BEMUTATKOZÁS ── */
#bemutatkozas {
  background: var(--white);
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 6rem; align-items: center;
}

.about-img {
  background: var(--sand);
  border-radius: 4px;
  height: 440px;
  display: flex; align-items: center; justify-content: center;
  position: relative; overflow: hidden;
}
.about-img-emoji { font-size: 8rem; opacity: 0.6; }
.about-img-tag {
  position: absolute; bottom: 24px; left: 24px;
  background: var(--white);
  border: 1px solid var(--border);
  padding: 0.8rem 1.2rem;
  border-radius: 2px;
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.9rem; color: var(--charcoal);
}
.about-img-tag strong { color: var(--rose); display: block; font-size: 0.75rem; font-family: 'DM Sans', sans-serif; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.2rem; }

.about-body p {
  font-family: 'DM Sans', sans-serif;
  color: var(--mid); font-size: 0.97rem; line-height: 1.85;
  font-weight: 300; margin-bottom: 1.1rem;
}

/* ── SERVICES MOZAIK ── */
#szolgaltatasok { background: var(--sand); }

.services-mosaic {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  grid-template-rows: auto auto;
  gap: 1.2rem;
  margin-top: 3.5rem;
}

/* Bal oldal: nagy kártya felül + széles kártya alul */
.tile-large { grid-column: 1; grid-row: 1; }
.tile-wide  { grid-column: 1; grid-row: 2; }

/* Jobb oldal: 3 kis kártya egymás alatt */
.tile-small { grid-column: 2; }

.service-tile {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 4px;
  padding: 2rem;
  transition: border-color 0.25s, box-shadow 0.25s, transform 0.25s;
  position: relative;
  overflow: hidden;
}

.service-tile::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--rose);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s;
}

.service-tile:hover {
  border-color: var(--rose-lt);
  box-shadow: 0 6px 24px rgba(181,113,122,0.1);
  transform: translateY(-3px);
}

.service-tile:hover::before { transform: scaleX(1); }

/* Akcentus kártya (03) */
.tile-accent {
  background: var(--rose-dk);
  border-color: var(--rose-dk);
}
.tile-accent .service-num { color: var(--rose-lt); }
.tile-accent h3 { color: var(--white) !important; }
.tile-accent p  { color: rgba(255,255,255,0.85) !important; }
.tile-accent .service-tile-icon { color: var(--white); }
.tile-accent:hover { background: var(--rose); border-color: var(--rose); }

/* SVG ikon */
.service-tile-icon {
  width: 40px;
  height: 40px;
  color: var(--rose);
  margin-bottom: 1.2rem;
  opacity: 0.85;
}

.service-tile-icon svg {
  width: 100%;
  height: 100%;
}

/* Nagy kártyán nagyobb ikon */
.tile-large .service-tile-icon { width: 48px; height: 48px; }

.service-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 0.8rem;
  color: var(--rose);
  margin-bottom: 0.5rem;
  display: block;
  font-style: italic;
}

.service-tile h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem;
  font-weight: 600;
  color: var(--charcoal);
  margin-bottom: 0.6rem;
  letter-spacing: 0.01em;
}

.tile-large h3 { font-size: 1.35rem; }

.service-tile p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.75;
  font-weight: 300;
}

/* ── RESZPONZÍV ── */
@media (max-width: 768px) {
  .services-mosaic {
    grid-template-columns: 1fr;
  }
  .tile-large,
  .tile-wide,
  .tile-small { grid-column: 1; grid-row: auto; }
}

/* ── ÁRAK ── */
#arak { background: var(--charcoal); }
#arak .section-eyebrow { color: var(--rose-lt); }
#arak .section-eyebrow::before { background: var(--rose-lt); }
#arak .section-title { color: var(--white); }
#arak .section-desc { color: rgba(255,255,255,0.45); }

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(175px, 1fr));
  gap: 1px;
  background: rgba(255,255,255,0.1);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 4px;
  overflow: hidden;
  margin-top: 3.5rem;
}

.price-card {
  background: var(--charcoal);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: background 0.25s;
}
.price-card:hover { background: #3a3733; }
.price-card.featured { background: var(--rose-dk); }
.price-card.featured:hover { background: var(--rose); }

.price-title {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; font-weight: 500;
  text-transform: uppercase; letter-spacing: 0.12em;
  color: rgba(255,255,255,0.45);
  margin-bottom: 1.2rem;
}
.price-from { font-family: 'DM Sans', sans-serif; font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-bottom: 0.2rem; }
.price-amount {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 2.1rem; font-weight: 600;
  color: var(--white); line-height: 1;
}
.price-unit {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.72rem; color: rgba(255,255,255,0.35); margin-top: 0.4rem;
}

/* ── MIÉRT MI ── */
#miert-mi { background: var(--white); }
.strengths-wrapper {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 2rem; margin-top: 3.5rem;
}

.strength-item {
  padding: 2rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  transition: border-color 0.25s, background 0.25s;
}
.strength-item:hover { border-color: var(--rose-lt); background: var(--sand); }

.strength-num {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-style: italic; font-size: 1.5rem;
  color: var(--rose); display: block; margin-bottom: 0.8rem;
}
.strength-item h4 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 600;
  color: var(--charcoal); margin-bottom: 0.5rem;
}
.strength-item p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.87rem; color: var(--mid); line-height: 1.75; font-weight: 300;
}

/* ── CÉLCSOPORT ── */
#celcsoport { background: var(--sand); }

.target-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 1.2rem; margin-top: 3.5rem;
}

.target-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 2px;
  padding: 1.8rem;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.target-card:hover { border-color: var(--rose-lt); box-shadow: 0 4px 20px rgba(181,113,122,0.08); }

.target-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.1rem; font-weight: 600; color: var(--charcoal);
  margin-bottom: 0.5rem;
}
.target-card p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.84rem; color: var(--mid); line-height: 1.7; font-weight: 300;
}
.target-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--rose-lt); margin-bottom: 1rem; display: block;
}

/* ── KAPCSOLAT ── */
#kapcsolat { background: var(--white); }

.contact-wrapper {
  display: grid; grid-template-columns: 1fr 1.4fr;
  gap: 5rem; align-items: start; margin-top: 3.5rem;
}

.contact-info { display: flex; flex-direction: column; gap: 0.8rem; }

.contact-item {
  display: flex; gap: 1rem; align-items: center;
  padding: 1.2rem 1.5rem;
  border: 1px solid var(--border);
  border-radius: 2px;
  text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  background: var(--white);
}
.contact-item:hover { border-color: var(--rose-lt); background: var(--sand); }

.contact-icon {
  font-size: 1rem; width: 36px; height: 36px;
  background: var(--sand);
  border-radius: 2px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-item-label {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.7rem; color: var(--light);
  text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.15rem;
}
.contact-item-val {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.95rem; color: var(--charcoal); font-weight: 400;
}

.gdpr-box {
  padding: 1.2rem 1.5rem;
  background: var(--sand);
  border-left: 2px solid var(--rose-lt);
  border-radius: 0 2px 2px 0;
  font-family: 'DM Sans', sans-serif;
  font-size: 0.8rem; color: var(--mid); line-height: 1.7;
}
.gdpr-box a { color: var(--rose); }

.map-container {
  border-radius: 2px; overflow: hidden;
  border: 1px solid var(--border); height: 320px;
}
.map-container iframe { width: 100%; height: 100%; border: none; display: block; }
.map-note {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.75rem; color: var(--light); margin-top: 0.6rem;
}

/* ── FOOTER ── */
footer {
  background: var(--sand);
  border-top: 1px solid var(--border);
  padding: 2.5rem 8%;
  display: flex; justify-content: space-between; align-items: center;
  flex-wrap: wrap; gap: 1rem;
}
.footer-logo {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 1.15rem; font-weight: 600; color: var(--charcoal);
  letter-spacing: 0.05em;
}
.footer-logo span { color: var(--rose); }
footer p {
  font-family: 'DM Sans', sans-serif;
  font-size: 0.78rem; color: var(--light);
}
.footer-links { display: flex; gap: 1.5rem; }
.footer-links a {
  font-family: 'DM Sans', sans-serif;
  color: var(--light); font-size: 0.78rem; text-decoration: none;
  transition: color 0.2s;
}
.footer-links a:hover { color: var(--rose); }

/* ── ANIMATIONS ── */
@keyframes fadeUp { from { opacity: 0; transform: translateY(28px); } to { opacity: 1; transform: none; } }
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s ease, transform 0.7s ease; }
.reveal.visible { opacity: 1; transform: none; }

/* ── RESPONSIVE ── */
@media (max-width: 960px) {
  #hero { grid-template-columns: 1fr; }
  .hero-visual { min-height: 280px; }
  #bemutatkozas { grid-template-columns: 1fr; }
  .about-img { display: none; }
  .contact-wrapper { grid-template-columns: 1fr; }
  .strengths-wrapper { grid-template-columns: 1fr; }
}
@media (max-width: 680px) {
  .nav-links { display: none; }
  .nav-links.open {
    display: flex; flex-direction: column;
    position: fixed; top: 68px; left: 0; right: 0;
    background: var(--white); border-bottom: 1px solid var(--border);
    padding: 1.5rem 6%; gap: 1.2rem;
  }
  .hamburger { display: flex; }
  section { padding: 70px 5%; }
}

/* Páratlan utolsó kártya — mindig középre */
.services-mosaic .service-tile:last-child:nth-child(odd) {
  grid-column: 1 / -1;
  max-width: 480px;
  margin: 0 auto;
  width: 100%;
}
