:root {
  /* Sunrise in the forest — natural earthy base with a golden, radiant glow */
  --cream: #fbf5eb;
  --cream-deep: #f4e8d6;
  --sand: #efe2cd;

  --green: #6f8060;
  --green-soft: #93a181;
  --green-pale: #e4ead9;
  --green-dark: #36442f;
  --green-deepest: #232d1d;

  --gold: #c49a4a;
  --gold-light: #e3c57e;
  --gold-pale: #f5e9cd;

  --peach: #e8946a;
  --peach-soft: #f6cba6;
  --rose: #e1a89c;
  --rose-soft: #f3d8d0;

  --plum: #6e2f4e;

  --text: #45392f;
  --text-soft: #837567;
  --white: #ffffff;

  --shadow: 0 16px 48px rgba(54, 68, 47, 0.13);
  --shadow-soft: 0 8px 28px rgba(110, 47, 78, 0.1);
  --radius: 22px;

  --font-display: "Cormorant Garamond", Georgia, serif;
  --font-heading: "Quicksand", sans-serif;
  --font-body: "Nunito", sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--cream);
  line-height: 1.75;
  font-size: 1.05rem;
}

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

a {
  color: var(--plum);
  text-decoration: none;
  transition: color 0.2s;
}

a:hover {
  color: var(--peach);
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

/* Header */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(251, 245, 235, 0.9);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(196, 154, 74, 0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.85rem 0;
  gap: 1rem;
}

.logo {
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 1.15rem;
  color: var(--green-dark);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.logo-icon {
  font-size: 1.4rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.35rem 1.1rem;
  list-style: none;
}

.nav-links a {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--text);
  padding: 0.35rem 0;
  position: relative;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 0;
  height: 2px;
  background: var(--gold);
  transition: width 0.25s;
}

.nav-links a:hover {
  color: var(--green-dark);
}

.nav-links a:hover::after {
  width: 100%;
}

.nav-toggle {
  display: none;
  background: none;
  border: none;
  font-size: 1.5rem;
  cursor: pointer;
  color: var(--green-dark);
}

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.98rem;
  padding: 0.85rem 1.7rem;
  border-radius: 999px;
  border: 2px solid transparent;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s, background 0.2s, color 0.2s;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--peach), var(--gold));
  color: var(--white);
  box-shadow: 0 10px 26px rgba(232, 148, 106, 0.4);
}

.btn-primary:hover {
  color: var(--white);
  box-shadow: 0 14px 32px rgba(196, 154, 74, 0.5);
}

.btn-secondary {
  background: transparent;
  color: var(--green-dark);
  border-color: var(--green-soft);
}

.btn-secondary:hover {
  background: var(--green-pale);
  color: var(--green-dark);
}

.btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.5);
}

.btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: var(--white);
}

.btn-gold {
  background: linear-gradient(135deg, var(--gold-light), var(--gold));
  color: var(--green-deepest);
  box-shadow: 0 10px 26px rgba(196, 154, 74, 0.4);
}

.btn-gold:hover {
  color: var(--green-deepest);
}

/* Hero */
.hero {
  padding: 8rem 0 5rem;
  background:
    radial-gradient(circle at 82% 22%, rgba(227, 197, 126, 0.5), transparent 42%),
    radial-gradient(circle at 70% 60%, rgba(232, 148, 106, 0.28), transparent 45%),
    radial-gradient(circle at 8% 85%, rgba(111, 128, 96, 0.18), transparent 42%),
    var(--cream);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 3rem;
  align-items: center;
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--white);
  color: var(--green-dark);
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  padding: 0.5rem 1.1rem;
  border-radius: 999px;
  margin-bottom: 1.3rem;
  box-shadow: var(--shadow-soft);
}

.hero h1 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2.6rem, 6vw, 4.2rem);
  line-height: 1.05;
  color: var(--green-dark);
  margin-bottom: 1.1rem;
}

.hero h1 span {
  background: linear-gradient(120deg, var(--peach), var(--gold));
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: var(--peach);
}

.hero-lead {
  font-size: 1.12rem;
  color: var(--text-soft);
  margin-bottom: 1.6rem;
  max-width: 35rem;
}

.hero-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.pill {
  background: var(--white);
  border: 1px solid rgba(196, 154, 74, 0.3);
  color: var(--green-dark);
  padding: 0.5rem 1.1rem;
  border-radius: 14px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  box-shadow: var(--shadow-soft);
}

.pill span {
  color: var(--gold);
  margin-right: 0.35rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.hero-photo-wrap {
  position: relative;
  display: flex;
  justify-content: center;
}

.hero-photo {
  width: min(400px, 90%);
  aspect-ratio: 1;
  object-fit: cover;
  object-position: top center;
  border-radius: 50%;
  background: var(--white);
  border: 6px solid var(--white);
  box-shadow: var(--shadow);
}

.hero-photo-glow {
  position: absolute;
  inset: -10%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(227, 197, 126, 0.55), rgba(232, 148, 106, 0.2) 55%, transparent 70%);
  z-index: -1;
  animation: pulse 6s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { transform: scale(1); opacity: 0.85; }
  50% { transform: scale(1.05); opacity: 1; }
}

.hero-float {
  position: absolute;
  background: var(--white);
  border-radius: 16px;
  padding: 0.7rem 1rem;
  box-shadow: var(--shadow);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  color: var(--green-dark);
}

.hero-float-1 { bottom: 6%; left: -2%; }
.hero-float-2 { top: 8%; right: 0; background: linear-gradient(135deg, var(--gold-light), var(--gold)); color: var(--green-deepest); }

/* Sections */
section {
  padding: 5rem 0;
}

.section-alt {
  background: var(--cream-deep);
}

.section-glow {
  background:
    radial-gradient(circle at 90% 10%, rgba(227, 197, 126, 0.35), transparent 40%),
    radial-gradient(circle at 10% 90%, rgba(225, 168, 156, 0.25), transparent 42%),
    var(--cream);
}

.section-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 3rem;
}

.section-label {
  display: inline-block;
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.7rem;
}

.section-header h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(2rem, 4.5vw, 3rem);
  line-height: 1.1;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.section-header p {
  color: var(--text-soft);
}

.lead-quote {
  font-family: var(--font-display);
  font-size: clamp(1.4rem, 3vw, 1.9rem);
  font-style: italic;
  line-height: 1.4;
  color: var(--plum);
  text-align: center;
  max-width: 800px;
  margin: 0 auto 2.5rem;
}

/* Kivel dolgozom */
.audience-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.audience-intro p {
  margin-bottom: 1rem;
}

.audience-intro .closing {
  font-weight: 700;
  color: var(--green-dark);
}

.check-list {
  list-style: none;
  display: grid;
  gap: 0.85rem;
}

.check-list li {
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  background: var(--white);
  padding: 0.9rem 1.15rem;
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
  font-weight: 600;
  color: var(--green-dark);
}

.check-list li::before {
  content: "🌿";
  flex-shrink: 0;
}

/* About / Rólam */
.about-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 3rem;
  align-items: center;
}

.about-photo {
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  width: 100%;
  object-fit: cover;
}

.about-text p + p {
  margin-top: 1rem;
}

.keyword-strip {
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--gold);
  letter-spacing: 0.03em;
  margin-top: 1.25rem;
  font-size: 1.05rem;
}

/* Consultation / Konzultáció */
.consult-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: start;
}

.consult-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2rem;
  box-shadow: var(--shadow);
  border-top: 5px solid var(--gold);
}

.consult-card h3 {
  font-family: var(--font-heading);
  font-size: 1.25rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.consult-card .sessions {
  display: inline-block;
  background: var(--gold-pale);
  color: var(--gold);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  padding: 0.3rem 0.85rem;
  border-radius: 999px;
  margin-bottom: 0.85rem;
}

.goal-list {
  margin: 1rem 0 0;
  padding-left: 0;
  list-style: none;
  display: grid;
  gap: 0.7rem;
}

.goal-list li {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.goal-list li::before {
  content: "✦";
  color: var(--gold);
  font-size: 1.1rem;
  line-height: 1.4;
  flex-shrink: 0;
}

/* Testimonials */
.testimonial {
  background: linear-gradient(150deg, var(--rose-soft), var(--gold-pale));
  border-radius: var(--radius);
  padding: 2rem 2.25rem;
  box-shadow: var(--shadow-soft);
  position: relative;
}

.testimonial::before {
  content: "\201C";
  font-family: var(--font-display);
  font-size: 4.5rem;
  line-height: 1;
  color: var(--gold);
  position: absolute;
  top: 0.5rem;
  left: 1.25rem;
  opacity: 0.5;
}

.testimonial p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.2rem;
  line-height: 1.5;
  color: var(--plum);
  position: relative;
  margin-bottom: 0.85rem;
}

.testimonial cite {
  font-style: normal;
  font-family: var(--font-heading);
  font-weight: 700;
  color: var(--peach);
  font-size: 0.95rem;
}

.testimonial-inline {
  margin: 2rem 0;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 1.5rem;
}

/* Repeating CTA band */
.cta-band {
  background:
    radial-gradient(circle at 85% 20%, rgba(196, 154, 74, 0.4), transparent 45%),
    linear-gradient(135deg, var(--green-dark), var(--green-deepest));
  color: var(--white);
  border-radius: var(--radius);
  padding: 3rem 2.5rem;
  text-align: center;
  box-shadow: var(--shadow);
}

.cta-band .keywords {
  font-family: var(--font-heading);
  font-weight: 700;
  letter-spacing: 0.04em;
  color: var(--gold-light);
  margin-bottom: 0.85rem;
}

.cta-band h3 {
  font-family: var(--font-display);
  font-size: clamp(1.6rem, 3.5vw, 2.4rem);
  margin-bottom: 0.75rem;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.82);
  max-width: 46rem;
  margin: 0 auto 1.75rem;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  justify-content: center;
}

.cta-section {
  padding: 3rem 0;
}

/* Workshop / Előadás info cards */
.info-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
}

.info-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.25rem;
  box-shadow: var(--shadow);
  border-left: 5px solid var(--green-soft);
}

.info-card .info-icon {
  font-size: 2.2rem;
  margin-bottom: 0.85rem;
}

.info-card h3 {
  font-family: var(--font-heading);
  font-size: 1.4rem;
  color: var(--green-dark);
  margin-bottom: 0.75rem;
}

.info-card p + p {
  margin-top: 0.85rem;
}

.fb-note {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin-top: 1.25rem;
  background: var(--green-pale);
  color: var(--green-dark);
  font-weight: 700;
  font-family: var(--font-heading);
  font-size: 0.9rem;
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
}

.contact-info {
  display: grid;
  gap: 1.1rem;
  align-content: start;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.15rem;
  background: var(--white);
  border-radius: 14px;
  box-shadow: var(--shadow-soft);
}

.contact-item-icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--gold-pale);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  flex-shrink: 0;
}

.contact-item strong {
  display: block;
  font-family: var(--font-heading);
  color: var(--green-dark);
  margin-bottom: 0.15rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 0.4rem;
}

.social-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  background: var(--green-dark);
  color: var(--white) !important;
  padding: 0.5rem 1rem;
  border-radius: 999px;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.85rem;
  transition: background 0.2s, transform 0.2s;
}

.social-link:hover {
  background: var(--peach);
  transform: translateY(-2px);
}

/* Form */
.form-wrapper {
  background: var(--white);
  border-radius: var(--radius);
  padding: 2.5rem;
  box-shadow: var(--shadow);
}

.form-wrapper h3 {
  font-family: var(--font-display);
  font-size: 1.8rem;
  color: var(--plum);
  margin-bottom: 0.4rem;
}

.form-wrapper .form-sub {
  color: var(--text-soft);
  margin-bottom: 1.5rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.form-group.full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--green-dark);
}

.form-group label .required {
  color: var(--peach);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 1rem;
  padding: 0.75rem 1rem;
  border: 2px solid rgba(196, 154, 74, 0.22);
  border-radius: 12px;
  background: var(--cream);
  color: var(--text);
  transition: border-color 0.2s, box-shadow 0.2s;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(196, 154, 74, 0.16);
}

.form-group textarea {
  min-height: 110px;
  resize: vertical;
}

.checkbox-group {
  display: flex;
  gap: 0.65rem;
  align-items: flex-start;
}

.checkbox-group input {
  margin-top: 0.3rem;
  width: 18px;
  height: 18px;
  accent-color: var(--green);
  flex-shrink: 0;
}

.checkbox-group label {
  font-weight: 400;
  font-size: 0.92rem;
  color: var(--text-soft);
}

.form-actions {
  margin-top: 1.5rem;
  text-align: center;
}

.form-note {
  margin-top: 1rem;
  text-align: center;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.form-status {
  margin-top: 1rem;
  text-align: center;
  font-family: var(--font-heading);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 0.85rem 1.1rem;
  border-radius: 12px;
}

.form-status.is-success {
  background: var(--green-pale);
  color: var(--green-dark);
  border: 1px solid var(--green-soft);
}

.form-status.is-error {
  background: var(--rose-soft);
  color: var(--plum);
  border: 1px solid var(--rose);
}

.btn:disabled {
  opacity: 0.65;
  cursor: not-allowed;
  transform: none;
}

/* Closing band */
.closing {
  background:
    radial-gradient(circle at 50% 0%, rgba(227, 197, 126, 0.45), transparent 55%),
    linear-gradient(135deg, var(--peach-soft), var(--rose-soft));
  text-align: center;
}

.closing-inner {
  max-width: 760px;
  margin: 0 auto;
}

.closing .closing-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
}

.closing p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: clamp(1.4rem, 3.2vw, 2rem);
  line-height: 1.4;
  color: var(--plum);
}

/* Footer */
.site-footer {
  background: var(--green-deepest);
  color: rgba(255, 255, 255, 0.82);
  padding: 2.5rem 0;
  text-align: center;
}

.site-footer p {
  font-size: 0.92rem;
}

.site-footer a {
  color: var(--gold-light);
}

.site-footer a:hover {
  color: var(--white);
}

/* Responsive */
@media (max-width: 900px) {
  .hero-grid,
  .audience-grid,
  .about-grid,
  .consult-grid,
  .info-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }

  .hero-photo-wrap,
  .about-photo-wrap {
    order: -1;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 720px) {
  .nav-toggle {
    display: block;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 1rem 4vw 1.25rem;
    border-bottom: 1px solid rgba(196, 154, 74, 0.2);
    box-shadow: var(--shadow);
  }

  .nav-links.open {
    display: flex;
  }

  .hero {
    padding-top: 7rem;
  }

  .hero-float {
    display: none;
  }

  section {
    padding: 3.5rem 0;
  }

  .cta-band,
  .form-wrapper {
    padding: 1.75rem;
  }
}
