/* ==========================================================================
   Áron Riport — arculati változók (ld. márkakézikönyv v1.0)
   ========================================================================== */
:root {
  --navy: #22303F;
  --navy-dark: #1B2735;
  --teal: #1FA8A0;
  --teal-light: #35C3BA;
  --gold: #C9A227;
  --gold-poster: #D9A343;
  --offwhite: #F2F4F6;
  --gray-mid: #8D97A2;
  --gray-line: #3A4959;

  --font-display: 'Chakra Petch', 'Segoe UI', sans-serif;
  --font-body: Calibri, Carlito, 'Segoe UI', Roboto, Arial, sans-serif;

  --container: 1120px;
  --radius: 10px;
  --shadow: 0 20px 50px -20px rgba(15, 22, 30, 0.35);
}

* { box-sizing: border-box; }

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

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--navy-dark);
  background: var(--offwhite);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

a { color: inherit; text-decoration: none; }

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

.eyebrow {
  display: inline-block;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--teal);
}

h1, h2, h3, .brand-title {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.12;
  margin: 0.4em 0 0.5em;
  color: var(--navy-dark);
}

.skew {
  display: inline-block;
  transform: skewX(-10deg);
}

h2 {
  font-size: clamp(1.6rem, 1.2rem + 1.6vw, 2.4rem);
}

h2 .skew, h1 .skew { transform-origin: left center; }

p { margin: 0 0 1em; }

.lede {
  font-size: 1.1rem;
  color: #4A5A6B;
  max-width: 62ch;
}

.section {
  padding: clamp(56px, 8vw, 96px) 0;
}

.section-head {
  max-width: 720px;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.bg-navy {
  background: var(--navy);
  color: var(--offwhite);
}
.bg-navy h1, .bg-navy h2, .bg-navy h3 { color: #fff; }
.bg-navy .lede { color: #C7D0D9; }

.bg-navy-dark { background: var(--navy-dark); color: var(--offwhite); }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5em;
  padding: 0.85em 1.6em;
  border-radius: 999px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: 0.02em;
  border: 2px solid transparent;
  cursor: pointer;
  min-height: 48px;
  transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease, color 0.15s ease;
}
.btn:active { transform: translateY(1px); }

.btn-primary {
  background: var(--teal);
  color: #06201d;
}
.btn-primary:hover { background: var(--teal-light); box-shadow: 0 10px 24px -8px rgba(31,168,160,0.55); }

.btn-outline {
  background: transparent;
  border-color: rgba(255,255,255,0.35);
  color: inherit;
}
.btn-outline:hover { border-color: var(--teal-light); color: var(--teal-light); }

.btn-outline.on-light {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-outline.on-light:hover { border-color: var(--teal); color: var(--teal); }

.btn-block { width: 100%; }

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(34, 48, 63, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,0.08);
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #fff;
}

.brand-mark { width: 34px; height: 24px; flex-shrink: 0; }

.brand-title {
  font-size: 1.05rem;
  letter-spacing: 0.01em;
  margin: 0;
  line-height: 1.05;
}
.brand-title .accent { color: var(--teal-light); display: block; font-size: 0.95em; }

.main-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.main-nav a:not(.btn) {
  color: #DCE3EA;
  font-size: 0.94rem;
  padding: 10px 14px;
  border-radius: 8px;
  transition: color 0.15s ease, background 0.15s ease;
}
.main-nav a:not(.btn):hover { color: #fff; background: rgba(255,255,255,0.06); }

.nav-cta { margin-left: 8px; }

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 8px;
  background: transparent;
  border: 1px solid rgba(255,255,255,0.25);
  color: #fff;
  align-items: center;
  justify-content: center;
  cursor: pointer;
}
.nav-toggle svg { width: 22px; height: 22px; }

/* ---------- Hero ---------- */
.hero {
  position: relative;
  overflow: hidden;
  padding: clamp(64px, 10vw, 120px) 0 clamp(56px, 8vw, 96px);
}

.hero::before {
  content: "";
  position: absolute;
  inset: -20% -10% auto auto;
  width: 620px;
  height: 620px;
  background: radial-gradient(circle, rgba(31,168,160,0.28), transparent 65%);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0,1fr) minmax(0,0.8fr);
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2.1rem, 1.4rem + 3.2vw, 3.6rem);
  margin-top: 0.3em;
}

.hero .lede { font-size: 1.15rem; margin-bottom: 1.6em; }

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

.hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 2.2em;
}
.hero-badges span {
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255,255,255,0.22);
  color: #C7D0D9;
}

.hero-visual {
  position: relative;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-visual svg { width: 100%; height: 100%; }

/* ---------- Positioning strip (Mi ez / Mi nem ez) ---------- */
.positioning {
  background: var(--offwhite);
  border-bottom: 1px solid #E1E6EA;
}
.pos-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}
.pos-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 28px 30px;
  box-shadow: var(--shadow);
}
.pos-card h3 {
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  margin: 0 0 0.9em;
}
.pos-card.is-yes h3 { color: var(--teal); }
.pos-card.is-no h3 { color: #A8484A; }
.pos-card ul { margin: 0; padding: 0; list-style: none; }
.pos-card li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 0.7em;
  color: #3E4C5B;
  font-size: 0.98rem;
}
.pos-card li::before {
  position: absolute;
  left: 0;
  top: 0.05em;
  font-family: var(--font-display);
  font-weight: 700;
}
.pos-card.is-yes li::before { content: "✓"; color: var(--teal); }
.pos-card.is-no li::before { content: "✕"; color: #A8484A; }

/* ---------- Services ---------- */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: #fff;
  border: 1px solid #E1E6EA;
  border-radius: var(--radius);
  padding: 28px 26px;
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}
.service-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow);
  border-color: transparent;
}
.service-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: rgba(31,168,160,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.service-icon svg { width: 24px; height: 24px; color: var(--teal); }
.service-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5em;
}
.service-card p { color: #52606E; font-size: 0.96rem; margin: 0; }

/* ---------- About ---------- */
.about-grid {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 56px;
  align-items: start;
}
.avatar-wrap {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: var(--radius);
  background: linear-gradient(160deg, var(--navy), var(--navy-dark));
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
.avatar-monogram {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(3.4rem, 3rem + 2vw, 5rem);
  color: var(--offwhite);
  transform: skewX(-10deg);
  letter-spacing: 0.02em;
}
.avatar-wrap .stripes {
  position: absolute;
  inset: auto -10% -18% auto;
  width: 60%;
  opacity: 0.9;
}
.avatar-tag {
  position: absolute;
  left: 18px;
  bottom: 18px;
  background: rgba(242,244,246,0.1);
  border: 1px solid rgba(242,244,246,0.25);
  color: #EDF1F4;
  font-size: 0.72rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 6px 12px;
  border-radius: 999px;
  backdrop-filter: blur(4px);
}

.about-body h3 { font-size: 1rem; letter-spacing: 0.04em; color: var(--teal); text-transform: uppercase; font-size: 0.8rem; }
.about-body p { color: #3E4C5B; }

.chip-row { display: flex; flex-wrap: wrap; gap: 10px; margin: 1.4em 0 1.8em; }
.chip {
  font-size: 0.82rem;
  padding: 7px 14px;
  border-radius: 999px;
  background: var(--offwhite);
  border: 1px solid #DCE3E9;
  color: var(--navy-dark);
}

.meta-line { display: flex; flex-wrap: wrap; gap: 22px; margin-top: 1.6em; font-size: 0.92rem; color: #52606E; }
.meta-line span { display: inline-flex; align-items: center; gap: 8px; }
.meta-line svg { width: 18px; height: 18px; color: var(--teal); }

/* ---------- Principles ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.principle {
  padding: 26px 24px;
  border-radius: var(--radius);
  background: rgba(242,244,246,0.06);
  border: 1px solid rgba(242,244,246,0.14);
}
.principle .num {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--teal-light);
  font-size: 0.85rem;
  letter-spacing: 0.1em;
}
.principle h3 { color: #fff; font-size: 1.05rem; margin: 0.5em 0 0.4em; }
.principle p { color: #C7D0D9; font-size: 0.93rem; margin: 0; }

/* ---------- Insights (LinkedIn) ---------- */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}
.insight-card {
  background: #fff;
  border: 1px solid #E1E6EA;
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.insight-tag {
  font-size: 0.7rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--teal);
  font-family: var(--font-display);
  font-weight: 600;
}
.insight-card p { color: #3E4C5B; font-size: 0.94rem; margin: 0; flex-grow: 1; }
.insight-card a { font-size: 0.85rem; font-weight: 600; color: var(--navy-dark); display: inline-flex; align-items: center; gap: 6px; }
.insight-card a svg { width: 14px; height: 14px; }

/* ---------- References ---------- */
.ref-note {
  background: #fff;
  border: 1px dashed #C6CFD6;
  border-radius: var(--radius);
  padding: 14px 18px;
  font-size: 0.88rem;
  color: #6B7885;
  margin-bottom: 28px;
}
.ref-note strong { color: var(--navy-dark); }

.refs-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.ref-card {
  border: 1.5px dashed #C6CFD6;
  border-radius: var(--radius);
  padding: 26px 24px;
  background: #FBFCFD;
}
.ref-quote-mark {
  font-family: var(--font-display);
  font-size: 2.4rem;
  color: var(--teal);
  opacity: 0.5;
  line-height: 1;
  margin-bottom: 4px;
}
.ref-card p.q {
  font-style: italic;
  color: #6B7885;
  min-height: 4.6em;
}
.ref-person {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #E1E6EA;
}
.ref-avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--offwhite);
  border: 1px solid #DCE3E9;
  flex-shrink: 0;
}
.ref-person .name { font-weight: 600; font-size: 0.9rem; color: var(--navy-dark); }
.ref-person .role { font-size: 0.8rem; color: #8A96A2; }

/* ---------- Contact ---------- */
.contact-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 48px;
}
.contact-card {
  background: rgba(242,244,246,0.06);
  border: 1px solid rgba(242,244,246,0.15);
  border-radius: var(--radius);
  padding: 32px;
}
.contact-list { list-style: none; margin: 22px 0 26px; padding: 0; display: grid; gap: 16px; }
.contact-list li { display: flex; align-items: flex-start; gap: 14px; }
.contact-list .ic {
  width: 40px; height: 40px; border-radius: 10px;
  background: rgba(31,168,160,0.16);
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0;
}
.contact-list .ic svg { width: 20px; height: 20px; color: var(--teal-light); }
.contact-list a:hover { color: var(--teal-light); }
.contact-list .label { font-size: 0.78rem; text-transform: uppercase; letter-spacing: 0.08em; color: #93A0AC; margin-bottom: 2px; }
.contact-list .value { font-size: 1rem; color: #EDF1F4; }

.booking-card {
  background: linear-gradient(160deg, var(--teal), #158b84);
  border-radius: var(--radius);
  padding: 32px;
  color: #06201d;
}
.booking-card h3 { color: #06201d; }
.booking-card p { color: #0d332f; }
.booking-card .btn-outline { border-color: rgba(6,32,29,0.4); color: #06201d; }
.booking-card .btn-outline:hover { border-color: #06201d; background: rgba(6,32,29,0.08); }

.booking-steps { margin: 18px 0 24px; padding: 0; list-style: none; display: grid; gap: 10px; }
.booking-steps li { display: flex; gap: 10px; font-size: 0.92rem; color: #0d332f; }
.booking-steps li b { font-family: var(--font-display); }

/* ---------- Footer ---------- */
.site-footer {
  padding: 40px 0 28px;
}
.footer-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 20px;
  padding-bottom: 24px;
  border-bottom: 1px solid rgba(242,244,246,0.14);
  margin-bottom: 22px;
}
.footer-nav { display: flex; flex-wrap: wrap; gap: 4px; }
.footer-nav a { padding: 8px 12px; font-size: 0.9rem; color: #C7D0D9; border-radius: 8px; }
.footer-nav a:hover { color: #fff; background: rgba(255,255,255,0.06); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.82rem;
  color: #8A96A2;
}
.footer-bottom a { color: #C7D0D9; }
.footer-bottom a:hover { color: var(--teal-light); }

/* ---------- Utility / reveal ---------- */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.is-visible { opacity: 1; transform: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { max-width: 360px; margin: 0 auto; order: -1; }
  .about-grid { grid-template-columns: 1fr; }
  .avatar-wrap { max-width: 320px; margin: 0 auto; }
  .contact-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .principles { grid-template-columns: 1fr; }
  .insights-grid { grid-template-columns: 1fr; }
  .refs-grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .main-nav { position: fixed; inset: 76px 0 auto 0; background: var(--navy); flex-direction: column; align-items: stretch; padding: 10px 20px 20px; gap: 2px; border-bottom: 1px solid rgba(255,255,255,0.1); transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity 0.2s ease, transform 0.2s ease; max-height: calc(100vh - 76px); overflow-y: auto; }
  .main-nav.is-open { transform: translateY(0); opacity: 1; pointer-events: auto; }
  .main-nav a:not(.btn) { padding: 14px 10px; border-bottom: 1px solid rgba(255,255,255,0.06); border-radius: 0; }
  .nav-cta { margin: 10px 0 0; }
  .nav-toggle { display: flex; }
  .pos-grid { grid-template-columns: 1fr; }
  .services-grid { grid-template-columns: 1fr; }
}

@media (max-width: 520px) {
  .hero-cta { flex-direction: column; align-items: stretch; }
  .hero-cta .btn { width: 100%; }
  .footer-top { flex-direction: column; align-items: flex-start; }
}
