/* ================= ROOT ================= */
:root {
  --bg: #f7f3ee;
  --surface: rgba(255, 255, 255, 0.76);
  --surface-strong: #ffffff;
  --text: #3e352f;
  --muted: #73655c;
  --line: rgba(108, 84, 69, 0.12);
  --primary: #98a594;
  --primary-dark: #6f7f73;
  --accent: #e3d9cf;
  --shadow: 0 18px 40px rgba(74, 54, 43, 0.1);

  --radius-xl: 30px;
  --radius-lg: 24px;
  --radius-md: 18px;

  --container: 1200px;
}

/* ================= RESET ================= */
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: "Poppins", system-ui, Arial, sans-serif;
  color: var(--text);
  line-height: 1.7;

  background: linear-gradient(
    180deg,
    #F7F3EE 0%,
    #F1EAE2 40%,
    #EAE2D8 100%
  );
}

img {
  max-width: 100%;
  display: block;
}

a {
  text-decoration: none;
  color: inherit;
}

/* ================= GLOBAL LAYOUT ================= */
.container {
  width: min(calc(100% - 32px), var(--container));
  margin: 0 auto;
  min-width: 0; /* FIX: grid overflow ellen */
}

.section {
  padding: 60px 0;
}

/* ================= TYPOGRAPHY ================= */
.section-title,
.title {
  font-family: "Playfair Display", serif;
  font-size: clamp(2rem, 4vw, 3.2rem);
  line-height: 1.1;
  margin-bottom: 22px;
  color: #3a2f2a;
  letter-spacing: -0.015em;
  text-wrap: balance;
  text-align: center;
}

.section-subtitle,
.subtitle {
  max-width: 720px;
  margin: 0 auto;

  font-family: "Poppins", sans-serif;
  font-size: clamp(1rem, 1.2vw, 1.1rem);
  line-height: 1.7;
  letter-spacing: 0.01em;

  color: #7a6b62;
  text-align: center;
}

/* Ritmus finomhangolás */
.section-title + .section-subtitle,
.title + .subtitle {
  margin-top: -6px;
}

.hero-copy p {
  max-width: 560px;
  font-size: 1rem;
  line-height: 1.6;
}

/* Desktop: balra */
@media (min-width: 1024px) {
  .booking-layout .section-title {
    text-align: left;
  }
}

/* ================= EYEBROW ================= */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 20px;
  opacity: 0.9;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  opacity: 0.7;
}

/* ================= BUTTONS ================= */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 26px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff;
  box-shadow: 0 14px 30px rgba(111, 127, 115, 0.24);
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 18px 36px rgba(111, 127, 115, 0.28);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.62);
  border-color: rgba(111, 127, 115, 0.14);
  color: var(--text);
  backdrop-filter: blur(14px);
}

.btn-secondary:hover {
  transform: translateY(-2px);
  background: #fff;
}

.btn-light {
  background: #fff;
  color: #5a4f47;
}

.btn-light:hover {
  transform: translateY(-2px);
}

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.28);
}

/* ================= HEADER ================= */
.site-header,
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  width: 100%;
  padding: 18px 0;

  background: rgba(152, 165, 148, 0.18); /* zsálya, nagyon finoman */
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-bottom: 1px solid var(--line);

  transition: all 0.3s ease;
}

.site-header.scrolled {
  background: rgba(152, 165, 148, 0.28); /* picit erősebb scrollnál */
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);

  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
  padding: 12px 0;
}

.nav-wrap,
.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  position: relative;
}

/* ================= BRAND ================= */
.brand {
  display: flex;
  flex-direction: column;
  gap: 2px;
  flex-shrink: 0;
}

.brand strong {
  font-family: "Playfair Display", serif;
  font-size: 1.35rem;
  color: #2f231d;
  letter-spacing: 0.02em;
}

.brand span {
  font-size: 0.78rem;
  color: var(--primary);
  letter-spacing: 0.14em;
  text-transform: uppercase;
  opacity: 0.85;
}

/* ================= NAVIGATION ================= */
.nav-menu,
.menu {
  display: flex;
  align-items: center;
  gap: 28px;
  list-style: none;
}

.nav-menu a,
.menu a {
  position: relative;
  font-size: 0.95rem;
  font-weight: 500;
  color: #493c35;
  transition: color 0.25s ease;
}

/* Hover text finom kiemelés */
.nav-menu a:hover,
.menu a:hover {
  color: var(--primary);
}

/* Prémium underline animáció */
.nav-menu a::after,
.menu a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -6px;
  width: 100%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.3s ease;
}

.nav-menu a:hover::after,
.nav-menu a.active::after,
.menu a:hover::after,
.menu a.active::after {
  transform: scaleX(1);
}

/* ================= NAV CTA ================= */
.nav-menu .nav-cta,
.menu .nav-cta {
  background: var(--primary);
  color: #fff !important;
  padding: 10px 18px;
  border-radius: 999px;
  margin-left: 10px;
  transition: all 0.3s ease;
}

.nav-menu .nav-cta:hover,
.menu .nav-cta:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 0 8px 20px rgba(111, 127, 115, 0.22);
}

/* ================= HAMBURGER FIX ================= */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  border: 1px solid rgba(111, 127, 115, 0.14);
  background: rgba(255, 255, 255, 0.8);

  align-items: center;
  justify-content: center;

  cursor: pointer;
}

/* a középső csík */
.nav-toggle span {
  position: relative;
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
}

/* felső + alsó csík */
.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: 0.25s ease;
}

.nav-toggle span::before {
  top: -6px;
}

.nav-toggle span::after {
  top: 6px;
}

/* ================= HERO ================= */
.hero {
  position: relative;
  padding: 40px 0 40px;
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 44px;
  align-items: center;
}

/* HERO TEXT */
.hero-copy h1 {
  font-family: "Playfair Display", serif;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin-bottom: 20px;
  color: #4a3a33;
}

.hero-copy p {
  font-size: 1.05rem;
  color: var(--muted);
  margin-bottom: 28px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

/* HERO VISUAL */
.hero-visual {
  position: relative;
  padding: 26px;
  border-radius: var(--radius-xl);
  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.9),
    rgba(255, 255, 255, 0.64)
  );
  box-shadow: 0 30px 80px rgba(76, 55, 43, 0.14);

  max-width: 520px;
  margin-left: auto;
}

.hero-image {
  aspect-ratio: 4/5;
  border-radius: var(--radius-lg);
  overflow: hidden;
  min-height: 480px;
  background:
    linear-gradient(180deg, rgba(62, 53, 47, 0.06), rgba(62, 53, 47, 0.14)),
    url('../img/hero.webp') center/cover;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin-top: 20px;
}

.hero-point {
  padding: 18px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.64);
  border: 1px solid var(--line);
  backdrop-filter: blur(12px);
  box-shadow: var(--shadow);
}

.hero-point strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Playfair Display", serif;
}

.hero-point span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* ================= HERO TAGS – PREMIUM ================= */

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 22px;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  padding: 10px 16px;

  font-size: 0.8rem;
  font-weight: 500;
  color: #667468;

  border-radius: 999px;

  background: linear-gradient(
    180deg,
    rgba(255, 255, 255, 0.72),
    rgba(255, 255, 255, 0.46)
  );

  border: 1px solid rgba(152, 165, 148, 0.18);

  backdrop-filter: blur(8px);

  box-shadow:
    0 6px 16px rgba(0, 0, 0, 0.04),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  transition: all 0.25s ease;
}

.hero-tag:hover {
  transform: translateY(-2px);
  box-shadow:
    0 10px 22px rgba(0, 0, 0, 0.06),
    inset 0 1px 0 rgba(255, 255, 255, 0.6);

  background: linear-gradient(
    180deg,
    rgba(152, 165, 148, 0.14),
    rgba(152, 165, 148, 0.08)
  );

  color: var(--primary-dark);
}

/* ================= INTRO CARDS ================= */
.intro-cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 24px;
  margin-top: 40px;
}

.intro-cards > * {
  width: 100%;
}

/* CARD */
.glass-card {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 28px;
  box-shadow: var(--shadow);
  transition: 0.3s ease;
}

.glass-card:hover {
  transform: translateY(-6px);
}

.glass-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.glass-card p {
  color: var(--muted);
}

/* ================= SERVICES ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 26px;
  margin-top: 44px;
}

/* CARD */
.service-card {
  border-radius: var(--radius-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  overflow: hidden;
  transition: 0.3s ease;
}

.service-card:hover {
  transform: translateY(-6px);
}

/* IMAGE */
.service-media {
  height: 220px;
  position: relative;

  background-repeat: no-repeat;
  background-position: center;
  background-size: 115%;

  transition: 0.4s ease;
}

.service-card:hover .service-media {
  background-size: 125%;
}

.service-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.09);
  transition: 0.4s ease;
}

.service-card:hover .service-media::after {
  background: rgba(0, 0, 0, 0.04);
}

/* IMAGES */
.service-card:nth-child(1) .service-media {
  background-image: url('../img/egyeni.webp');
  background-position: center 30%;
}

.service-card:nth-child(2) .service-media {
  background-image: url('../img/par.webp');
  background-position: center 25%;
}

.service-card:nth-child(3) .service-media {
  background-image: url('../img/csaladi.webp');
  background-position: center 35%;
}

/* CONTENT */
.service-body {
  padding: 26px;
}

.service-body h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 10px;
}

.service-body p {
  color: var(--muted);
  margin-bottom: 16px;
}

/* LIST */
.service-list {
  list-style: none;
  display: grid;
  gap: 8px;
}

.service-list li {
  position: relative;
  padding-left: 16px;
  font-size: 0.95rem;
}

.service-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

/* ================= ABOUT / STORY ================= */
.about-grid,
.story-grid {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 36px;
  align-items: center;
}

.story-grid {
  align-items: start;
}

.about-photo {
  border-radius: var(--radius-xl);
  overflow: hidden;
  position: relative;
  box-shadow: var(--shadow);
}

/* KÉP */
.about-photo img {
  width: 100%;
  height: 520px; /* EZ KELL desktopra */
  object-fit: cover;
  object-position: center top;
  display: block;
}

/* MOBIL */
@media (max-width: 768px) {
  .about-photo img {
    height: 420px;
    object-position: center 10%;
  }
}

/* OVERLAY (finom sötétítés) */
.about-photo::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(46, 34, 28, 0.08),
    rgba(46, 34, 28, 0.2)
  );
  pointer-events: none;
}

.story-photo {
  min-height: 520px;
  border-radius: var(--radius-lg);
  overflow: hidden;

  background:
    linear-gradient(180deg, rgba(46, 34, 28, 0.08), rgba(46, 34, 28, 0.2)),
    url('../img/tortenet.webp') center 30% / cover no-repeat;

  margin-bottom: 24px;
  box-shadow: var(--shadow);
}

/* ================= CONTENT PANELS ================= */

.about-panel,
.story-card,
.timeline-card,
.philosophy-card,
.links-card,
.contact-cta {
  background: var(--surface);
  border: 1px solid var(--line);
  backdrop-filter: blur(16px);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
}

.about-panel p,
.story-card p,
.timeline-card p,
.philosophy-card p,
.links-card p {
  color: var(--muted);
  margin-bottom: 16px;
}

.story-card h2,
.timeline-card h2,
.philosophy-card h2,
.links-card h2,
.contact-cta h2 {
  font-family: "Playfair Display", serif;
  font-size: 2rem;
  margin-bottom: 16px;
}

/* ================= QUOTES ================= */

.quote-box,
.highlight-quote {
  margin-top: 22px;
  padding: 24px;
  border-left: 4px solid var(--primary);
  border-radius: var(--radius-md);

  background: linear-gradient(
    135deg,
    rgba(227, 217, 207, 0.34),
    rgba(255, 255, 255, 0.68)
  );

  font-family: "Playfair Display", serif;
  line-height: 1.5;
}

.quote-box {
  font-size: 1.3rem;
}

.highlight-quote {
  font-size: 1.25rem;
}

/* ================= TIMELINE ================= */

.timeline {
  display: grid;
  gap: 18px;
  margin-top: 22px;
}

.timeline-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 16px;
  align-items: start;
}

.timeline-dot {
  width: 56px;
  height: 56px;
  border-radius: 18px;

  background: linear-gradient(
    135deg,
    rgba(227, 217, 207, 0.28),
    rgba(152, 165, 148, 0.12)
  );

  border: 1px solid rgba(111, 127, 115, 0.12);

  display: grid;
  place-items: center;

  font-family: "Playfair Display", serif;
  font-size: 1.1rem;
  color: #5b685d;

  box-shadow: var(--shadow);
}

.timeline-content strong {
  display: block;
  margin-bottom: 6px;
  color: #2f241e;
  font-size: 1.02rem;
}

.timeline-content span {
  color: var(--muted);
  font-size: 0.96rem;
}

/* ================= PILLARS ================= */

.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-top: 38px;
}

.pillar-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

.pillar-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
}

.pillar-card p {
  color: var(--muted);
}

/* ================= DUAL GRID ================= */

.dual-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
  margin-top: 24px;
}

/* ================= SOFT LIST ================= */

.soft-list {
  list-style: none;
  display: grid;
  gap: 12px;
  margin-top: 18px;
}

.soft-list li {
  position: relative;
  padding-left: 18px;
  font-size: 0.95rem;
  color: #665850;
}

.soft-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent), var(--primary));
}

/* ================= CONTACT SECTION ================= */

/* ❗ alap */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.7fr;
  gap: 40px;
  margin-top: 46px;
  align-items: start;
}

.contact-copy {
  max-width: 420px;
}

.contact-card,
.contact-form {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

/* ================= CONTACT LIST ================= */

.contact-list {
  list-style: none;
  display: grid;
  gap: 16px;
  margin: 20px 0 26px;
}

.contact-list li strong {
  display: block;
  margin-bottom: 4px;
  color: #2f241e;
}

.contact-list li span,
.contact-list li a {
  color: var(--muted);
}

/* ================= CONTACT ACTIONS ================= */

.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

/* ================= FORM ================= */

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field.full {
  grid-column: 1 / -1;
}

label {
  font-size: 0.92rem;
  color: #4f473f;
  font-weight: 500;
}

input,
textarea,
select {
  width: 100%;
  border: 1px solid rgba(111, 127, 115, 0.12);
  background: #fff;
  border-radius: 16px;
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
  transition: 0.25s ease;
}

input:focus,
textarea:focus,
select:focus {
  border-color: rgba(111, 127, 115, 0.34);
  box-shadow: 0 0 0 4px rgba(152, 165, 148, 0.1);
}

textarea {
  min-height: 160px;
  resize: vertical;
}

/* ================= CTA ================= */
.cta {
  padding: 100px 0;
}

.cta-box {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-xl);
  padding: 56px;
  background: linear-gradient(135deg, #8fa094, #6f7f73);
  color: #fff;
  box-shadow: 0 28px 80px rgba(111, 127, 115, 0.28);
  text-align: center;
}

.cta-box::before,
.cta-box::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
}

.cta-box::before {
  width: 260px;
  height: 260px;
  top: -90px;
  right: -40px;
}

.cta-box::after {
  width: 160px;
  height: 160px;
  bottom: -60px;
  left: 30px;
}

/* ================= FOOTER ================= */
.site-footer,
.footer,
footer {
  padding: 40px 0;
  
  background: rgba(152, 165, 148, 0.20);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);

  border-top: 1px solid var(--line);

  color: var(--muted);
  font-size: 0.95rem;

  box-shadow: 0 -10px 30px rgba(0,0,0,0.04);
}

/* GRID */
.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 40px;
  padding: 40px 0;
}

/* BRAND */
.footer-brand strong {
  display: block;
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-bottom: 8px;
  color: #2e241f;
}

.footer-brand span {
  font-size: 0.9rem;
  color: var(--muted);
}

/* HEADINGS */
.footer-col h4 {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  margin-bottom: 14px;
  color: var(--primary);
}

/* LIST */
.footer-col ul {
  list-style: none;
  display: grid;
  gap: 10px;
}

.footer-col a {
  text-decoration: none;
  color: var(--text);
  transition: 0.25s ease;
}

.footer-col a:hover {
  color: var(--primary);
  transform: translateX(3px);
}

/* BOTTOM */
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 20px;

  border-top: 1px solid var(--line);
  padding-top: 20px;
  margin-top: 10px;
}

.footer-bottom p {
  margin: 0;
  font-size: 0.85rem;
  color: var(--muted);
}

/* LEGAL */
.footer-legal {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--muted);
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1080px) {
  .hero-grid,
  .about-grid,
  .story-grid,
  .intro-cards,
  .services-grid,
  .pillars-grid,
  .dual-grid,
  .contact-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .nav-menu {
    position: absolute;
    left: 16px;
    right: 16px;
    top: calc(100% + 10px);
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    padding: 22px;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(18px);
    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }
}

/* ================= TESTIMONIALS ================= */

.testimonials {
  padding: 100px 0;
  background: #f7f3ee;
}

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 50px;
}

.testimonial-card {
  background: #ffffff;
  padding: 28px;
  border-radius: var(--radius-lg);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.045);
  position: relative;
  transition: 0.3s;
}

.testimonial-card:hover {
  transform: translateY(-5px);
}

.testimonial-text {
  font-size: 0.95rem;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  position: relative;
}

.testimonial-text::before {
  content: "“";
  font-size: 2rem;
  position: absolute;
  top: -10px;
  left: -10px;
  color: var(--primary);
  opacity: 0.2;
}

.testimonial-author strong {
  display: block;
  font-size: 0.95rem;
  color: #2e241f;
}

.testimonial-author span {
  font-size: 0.8rem;
  color: var(--muted);
}

/* ================= RESPONSIVE ================= */

@media (max-width: 1024px) {
  .testimonials-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* ================= SECTION BASE ================= */

.section {
  padding: 100px 0;
}

.section-head.center {
  text-align: center;
  max-width: 700px;
  margin: 0 auto 50px;
}

/* ================= SERVICES ================= */

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(320px, 1fr));
  gap: 28px;
}

.service-card {
  background: var(--surface);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow);
  transition: all 0.3s ease;
  position: relative;
  overflow: hidden;

  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 30px 60px rgba(0, 0, 0, 0.06);
}

.service-card h3 {
  font-family: "Playfair Display", serif;
  font-size: 1.4rem;
  margin-bottom: 10px;
  min-height: 56px;
}

.service-card p {
  color: var(--muted);
  margin-bottom: 18px;
}

.service-card ul {
  padding-left: 18px;
}

.service-card li {
  margin-bottom: 8px;
  color: var(--text);
  position: relative;
}

/* CTA FIX */
.card-body {
  display: flex;
  flex-direction: column;
  height: 100%;
  flex: 1;
}

.card-body .btn {
  margin-top: auto;
  align-self: center;
}

/* ================= PROCESS ================= */

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.process-step {
  text-align: center;
  padding: 30px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.process-step:hover {
  transform: translateY(-6px);
}

.step-number {
  font-size: 2rem;
  font-weight: 600;
  color: var(--primary);
  margin-bottom: 10px;
}

.process-step h4 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.process-step p {
  color: var(--muted);
}

/* ================= PRICING ================= */

.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 40px;
}

.pricing-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 40px 30px;
  text-align: center;
  box-shadow: var(--shadow);
  transition: 0.3s;
}

.pricing-card:hover {
  transform: translateY(-6px);
}

.pricing-card h3 {
  font-family: "Playfair Display", serif;
  margin-bottom: 10px;
}

.amount {
  font-size: 1.3rem;
  font-weight: 500;
  color: var(--primary);
}

/* ================= FAQ ================= */

.faq {
  max-width: 700px;
  margin: 0 auto;
  margin-top: 40px;
}

.faq-item {
  padding: 20px;
  border-bottom: 1px solid var(--line);
}

.faq-item strong {
  display: block;
  margin-bottom: 6px;
}

.faq-item span {
  color: var(--muted);
}

/* CTA ACTIONS */
.cta-actions {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-top: 26px;
  flex-wrap: wrap;
}

.cta-box p {
  max-width: 520px;
  margin: 0 auto;
  margin-top: 12px;
  opacity: 0.9;
}

/* ================= CALENDAR MODAL ================= */

.calendar-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: opacity 0.35s ease, visibility 0.35s ease;
}

/* ACTIVE */
.calendar-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

/* MODAL ANIMATION */
.calendar-modal.active .calendar-modal-content {
  transform: scale(1) translateY(0);
  opacity: 1;
}

/* CLOSE BUTTON */
.calendar-close {
  position: absolute;
  top: 14px;
  right: 14px;

  width: 42px;
  height: 42px;
  border-radius: 50%;

  border: none;
  cursor: pointer;

  background: rgba(0, 0, 0, 0.05);
  backdrop-filter: blur(10px);

  font-size: 18px;

  transition: all 0.25s ease;
}

.calendar-close:hover {
  background: rgba(0, 0, 0, 0.1);
  transform: rotate(90deg) scale(1.05);
}

/* ================= CONTACT FIX ================= */

.contact-calendar {
  display: flex;
  justify-content: center;
}

/* ================= ASZF PAGE ================= */

.section-hero .container {
  text-align: center;
  max-width: 760px;
  margin: 0 auto;
}

.section-hero {
  padding: 80px 0 60px;
}

/* ================= CONTENT WRAPPER ================= */

.aszf-content {
  max-width: 800px;
  margin: 0 auto;
}

/* ================= HEADINGS ================= */

.aszf-content h2 {
  font-family: "Playfair Display", serif;
  font-size: 1.6rem;
  margin-top: 40px;
  margin-bottom: 14px;
  color: #2e241f;
}

.aszf-content h2:first-child {
  margin-top: 0;
}

/* ================= PARAGRAPHS ================= */

.aszf-content p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 0.98rem;
  margin-bottom: 18px;
}

/* ================= CARD ================= */

.aszf-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 36px;
  box-shadow: var(--shadow);
}

/* ================= LIST ================= */

.aszf-content ul {
  padding-left: 18px;
  margin-bottom: 18px;
}

.aszf-content li {
  margin-bottom: 8px;
  color: var(--muted);
}

/* ================= CTA ================= */

.cta-box h2 {
  max-width: 600px;
  margin: 0 auto 16px;
}

.cta-box p {
  opacity: 0.9;
  margin-bottom: 20px;
}

/* ================= COOKIE ================= */

.cookie-banner {
  position: fixed;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%) translateY(120%);
  width: calc(100% - 40px);
  max-width: 900px;
  z-index: 9999;

  background: rgba(255, 255, 255, 0.9);
  backdrop-filter: blur(16px);

  border-radius: 20px;
  border: 1px solid var(--line);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);

  padding: 24px;

  transition: 0.5s ease;
}

.cookie-banner.show {
  transform: translateX(-50%) translateY(0);
}

.cookie-content {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  align-items: center;
}

.cookie-text p {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

/* ================= COOKIE MODAL ================= */

.cookie-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  pointer-events: none;
  transition: 0.3s;
}

.cookie-modal.active {
  opacity: 1;
  pointer-events: all;
}

.cookie-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.4);
}

.cookie-modal-content {
  position: relative;
  background: white;
  border-radius: 20px;
  padding: 30px;
  width: 100%;
  max-width: 500px;
  z-index: 2;
}

.cookie-option {
  display: flex;
  justify-content: space-between;
  margin: 16px 0;
}

.cookie-modal-actions {
  margin-top: 20px;
  text-align: right;
}

/* ================= FOOTER LEGAL ================= */

.footer-legal {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
  justify-content: center;
  font-size: 0.8rem;
}

.footer-legal a {
  color: var(--muted);
  text-decoration: none;
}

.footer-legal a:hover {
  color: var(--primary);
}

/* ================= CTA EYEBROW FIX ================= */

.cta .eyebrow {
  color: #ffffff;
  opacity: 0.8;
}

.cta .eyebrow::before {
  background: linear-gradient(90deg, transparent, #ffffff, transparent);
  opacity: 0.5;
}

/* ================= LOCATION SELECT ================= */

.location-select {
  display: flex;
  gap: 14px;
  justify-content: center;
  margin-top: 20px;
}

.location-title {
  margin-top: 16px;
  margin-bottom: 12px;
  font-size: 0.9rem;
  color: var(--muted);
  text-align: center;
}

/* ================= BOOKING ================= */

.booking-card {
  text-align: center;
}
/* ================= CALENDAR ================= */

.calendar-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;

  display: flex;
  align-items: center;
  justify-content: center;

  opacity: 0;
  visibility: hidden;
  pointer-events: none;

  transition: 0.35s ease;
}

.calendar-modal.active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.calendar-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.5);
  backdrop-filter: blur(8px);
}

.calendar-modal-content {
  position: relative;
  width: min(1000px, 92%);
  height: 80vh;
  border-radius: 20px;
  overflow: hidden;
  background: #fff;
}

.calendar-modal-content iframe {
  width: 100%;
  height: 100%;
  border: none;
  position: relative;
  z-index: 2;
}

.calendar-close {
  position: absolute;
  top: 12px;
  right: 12px;
  z-index: 3;
  background: rgba(0,0,0,0.05);
  border: none;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
}

/* LOADER */
.calendar-loader {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;

  font-size: 0.9rem;
  color: var(--muted);

  background: #fff;
  z-index: 1;
}
/* ================= MOBILE MASTER ================= */
@media (max-width: 768px) {

  /* ================= GLOBAL ================= */
  .section,
  .cta {
    padding: 70px 0;
  }

  .container {
    width: calc(100% - 24px);
  }

  /* ================= TYPO ================= */
  .section-title {
    font-size: clamp(1.8rem, 7vw, 2.4rem);
    line-height: 1.2;
  }

  .section-subtitle {
    font-size: 0.95rem;
  }

  /* ================= HEADER ================= */
  .nav-toggle {
    display: inline-grid;
  }

  .nav-menu {
    position: absolute;
    left: 12px;
    right: 12px;
    top: calc(100% + 10px);

    flex-direction: column;
    align-items: flex-start;
    gap: 18px;

    padding: 20px;

    background: rgba(255,255,255,0.96);
    backdrop-filter: blur(18px);

    border-radius: var(--radius-lg);
    border: 1px solid var(--line);
    box-shadow: var(--shadow);

    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: 0.25s ease;
  }

  .nav-menu.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
  }

  /* ================= GRID RESET ================= */
  .hero-grid,
  .about-grid,
  .story-grid,
  .intro-cards,
  .services-grid,
  .pillars-grid,
  .dual-grid,
  .contact-grid {
    grid-template-columns: 1fr !important;
    gap: 24px;
  }

  /* ================= HERO ================= */
  .hero {
    padding: 50px 0;
  }

  .hero-copy h1 {
    font-size: clamp(2rem, 8vw, 2.6rem);
    margin-top: 16px;
  }

  .hero-visual {
    margin: 0 auto;
    max-width: 100%;
  }

  .hero-image {
    min-height: 320px;
  }

  .hero-points {
    grid-template-columns: 1fr;
  }
  .hero-center {
  max-width: 700px;
  margin: 0 auto;
}

  /* ================= CARDS ================= */
  .glass-card,
  .service-card,
  .pricing-card,
  .testimonial-card,
  .process-step,
  .about-panel,
  .contact-card,
  .contact-form,
  .booking-card {
    padding: 22px;
  }

  /* ================= SERVICES ================= */
  .service-media {
    height: 180px;
  }

  /* ================= CONTACT ================= */
  .contact-copy {
    max-width: 100%;
  }

  .location-select {
    flex-direction: column;
    gap: 10px;
  }

  .booking-card {
    max-width: 100%;
  }

  /* ================= FORM ================= */
  .form-grid {
    grid-template-columns: 1fr;
  }

  input,
  textarea {
    font-size: 16px; /* iOS zoom fix */
  }

  /* ================= CTA ================= */
  .cta-box {
    padding: 32px 22px;
  }

  .cta-actions {
    flex-direction: column;
    gap: 10px;
  }

  .cta-actions .btn {
    width: 100%;
  }

  /* ================= TESTIMONIALS ================= */
  .testimonials-grid {
    grid-template-columns: 1fr;
  }

  /* ================= PROCESS ================= */
  .process-grid {
    grid-template-columns: 1fr;
  }

  /* ================= PRICING ================= */
  .pricing-grid {
    grid-template-columns: 1fr;
  }

  /* ================= FOOTER ================= */
  .footer-grid {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 28px;
  }

  .footer-bottom {
    flex-direction: column;
    text-align: center;
    gap: 8px;
  }

  /* ================= COOKIE ================= */
  .cookie-content {
    flex-direction: column;
    align-items: flex-start;
  }

  .cookie-actions {
    width: 100%;
    flex-direction: column;
  }

  /* ================= MODAL ================= */
  .calendar-modal-content {
    width: 94%;
    height: 75vh;
    border-radius: 16px;
  }

  .calendar-close {
    width: 38px;
    height: 38px;
  }

  /* ================= HEADER FIX ================= */
.site-header {
  padding: 14px 0;
}

/* LOGO ne csússzon szét */
.brand {
  max-width: 70%;
}

.brand strong {
  font-size: 1.1rem;
}

.brand span {
  font-size: 0.65rem;
  letter-spacing: 0.12em;
}

/* HAMBURGER GOMB */
.nav-toggle {
  width: 44px;
  height: 44px;
  flex-shrink: 0;
}

/* 👉 EZ A LEGFONTOSABB */
.nav-wrap {
  align-items: center;
}

/* menü ne lógjon rá */
.nav-menu {
  z-index: 999;
}

/* ================= HERO MOBILE – FINAL ================= */

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

/* ================= KÉP (FENT, HERO) ================= */
.hero-visual {
  order: -1;
  margin-bottom: -40px; /* ráfolyás */
  z-index: 2;

  padding: 0;
  background: none;
  box-shadow: none;
  margin-left: -8px;
  margin-right: -8px;
}

.hero-image {
  min-height: 260px;
  border-radius: 22px;
  overflow: hidden;
  transform: scale(1.02);
  box-shadow: 0 25px 60px rgba(0,0,0,0.12);
}

/* ================= SZÖVEG BLOKK ================= */
.hero-copy {
  position: relative;
  z-index: 1;

  background: transparent;
  padding: 0;
}

/* EYEBROW */
.hero-copy .eyebrow {
  margin-top: 30px;
  font-size: 0.7rem;
  letter-spacing: 0.18em;
}

/* FŐCÍM */
.hero-copy h1 {
  font-size: clamp(1.9rem, 7vw, 2.3rem);
  line-height: 1.2;
  letter-spacing: -0.01em;
  margin-top: 12px;
}

/* SZÖVEG */
.hero-copy p {
  font-size: 0.95rem;
  line-height: 1.6;
  margin-bottom: 14px;
}

/* ================= CTA ================= */
.hero-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 12px;
}

.hero-actions .btn {
  width: 100%;
}

/* ================= TAG-ek ================= */
.hero-tags {
  gap: 8px;
}

.hero-tag {
  font-size: 0.7rem;
  padding: 8px 12px;
}

/* ================= HERO POINTS ================= */
.hero-points {
  grid-template-columns: 1fr;
  gap: 10px;
}

.hero-point {
  padding: 14px;
}

}

/* ================= HEADER CLICK FIX ================= */
.site-header {
  position: sticky;
  z-index: 9999; /* 🔥 ez a lényeg */
}

/* hamburger mindig fölötte legyen */
.nav-toggle {
  position: relative;
  z-index: 10000;
}

/* DEFAULT (fallback) */
.hero-image {
  background: url('../img/hero-default.webp') center/cover no-repeat;
}

/* FŐOLDAL */
body.home .hero-image {
  background: url('../img/hero.webp') center 30% / cover no-repeat;
}

/* SZOLGÁLTATÁSOK */
body.services .hero-image {
  background: url('../img/eva1.webp') center 30% / cover no-repeat;
}

/* KAPCSOLAT */
body.contact .hero-image {
  background: url('../img/eva2.webp') center 30% / cover no-repeat;
}

/* RÓLAM */
body.about .hero-image {
  background: url('../img/eva2.webp') center 30% / cover no-repeat;
}

/* ================= THANK YOU PAGE ================= */

.hero-thanks {
  min-height: 80vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.thanks-wrap {
  display: flex;
  justify-content: center;
  align-items: center;
}

.thanks-card {
  background: var(--surface-strong);
  padding: 60px 50px;
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow);
  text-align: center;
  max-width: 600px;
}

.thanks-card .title {
  margin-bottom: 16px;
}

.thanks-card .subtitle {
  margin-bottom: 32px;
}

.thanks-actions {
  display: flex;
  gap: 14px;
  justify-content: center;
  flex-wrap: wrap;
}

@media (max-width: 768px) {

.contact-section .section-title {
  text-align: center;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 10px;
}

.contact-item a {
  color: inherit;
  text-decoration: none;
  transition: 0.2s;
}

.contact-item a:hover {
  color: #c6a15b; /* arany hover, illik a designodhoz */
}



  .contact-section .container {
    max-width: 400px;
    margin: 0 auto;
    text-align: center;
  }

  .contact-item {
    justify-content: center;
  }

}
@media (min-width: 769px) {

  .booking-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
  }

}
@media (min-width: 769px) {

  .form-container .section-title {
    text-align: center;
  }

}
