:root {
  --bg: #fbf8f3;
  --surface: #ffffff;
  --surface-soft: #fffdf9;
  --ink: #1e2528;
  --muted: #5f686d;
  --line: #e8ded2;
  --gold: #c59b63;
  --gold-dark: #9d7040;
  --shadow: 0 24px 60px rgba(56, 42, 28, 0.14);
  --soft-shadow: 0 16px 36px rgba(56, 42, 28, 0.09);
  --max: 1170px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family:
    "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, -apple-system,
    BlinkMacSystemFont, sans-serif;
  line-height: 1.5;
}

body::selection {
  background: rgba(197, 155, 99, 0.25);
}

img,
svg {
  display: block;
}

img {
  max-width: 100%;
}

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

button,
input,
select {
  font: inherit;
}

h1,
h2,
h3,
p,
figure {
  margin: 0;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 500;
  letter-spacing: 0;
}

.section-inner,
.site-header,
.hero-inner {
  width: min(var(--max), calc(100% - 80px));
  margin-inline: auto;
}

.site-header {
  position: relative;
  height: 112px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: transparent;
  z-index: 3;
}

.site-header::before {
  content: "";
  position: absolute;
  top: 0;
  left: 50%;
  z-index: -1;
  width: 100vw;
  height: 100%;
  background: var(--surface);
  transform: translateX(-50%);
}

.brand {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 3px;
}

.brand img {
  width: 214px;
  height: auto;
}

.brand-subtitle {
  font-size: 0.68rem;
  font-style: normal;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.03em;
}

.header-cta,
.submit-button,
.secondary-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 999px;
  background: linear-gradient(135deg, #d0a873, var(--gold));
  color: #fff;
  box-shadow: 0 12px 28px rgba(153, 103, 54, 0.22);
  font-weight: 800;
  letter-spacing: 0;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

.header-cta {
  min-width: 178px;
  min-height: 54px;
  padding-inline: 30px;
}

.header-cta:hover,
.submit-button:hover,
.secondary-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 16px 34px rgba(153, 103, 54, 0.27);
}

.hero {
  position: relative;
  min-height: 836px;
  overflow: hidden;
  isolation: isolate;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: -2;
  background: url("assets/hero.jpg") center center / cover no-repeat;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(251, 248, 243, 0.98) 0%, rgba(251, 248, 243, 0.87) 33%, rgba(251, 248, 243, 0.18) 56%, rgba(251, 248, 243, 0.82) 100%),
    linear-gradient(180deg, rgba(251, 248, 243, 0.3) 0%, rgba(251, 248, 243, 0.08) 68%, var(--bg) 100%);
}

.hero::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -2px;
  height: 112px;
  z-index: -1;
  background:
    radial-gradient(120% 92px at 50% 118%, var(--bg) 0 70%, transparent 71%),
    linear-gradient(180deg, transparent 0%, var(--bg) 92%);
  opacity: 0.98;
}

.hero-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 520px;
  gap: clamp(28px, 4vw, 64px);
  align-items: start;
  padding: 70px 0 94px;
}

.hero-copy {
  max-width: 590px;
  padding-top: 128px;
}

.hero-tagline {
  margin-bottom: 14px;
  color: var(--gold-dark);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 590px;
  font-size: clamp(3.05rem, 4.6vw, 4.35rem);
  line-height: 1.14;
}

.hero-copy p {
  max-width: 505px;
  margin-top: 26px;
  color: #354247;
  font-size: 1.03rem;
  line-height: 1.75;
}

.hero-points {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  max-width: 488px;
  margin-top: 44px;
  background: rgba(255, 255, 255, 0.34);
  backdrop-filter: blur(10px);
}

.hero-points span {
  min-height: 92px;
  display: grid;
  place-items: center;
  padding: 12px 14px;
  border-right: 1px solid rgba(154, 111, 69, 0.24);
  color: #38454a;
  font-size: 0.78rem;
  line-height: 1.28;
  text-align: center;
}

.hero-points span:last-child {
  border-right: 0;
}

.hero-points svg,
.benefit-icon svg,
.input-shell svg,
.form-note svg,
.secondary-button svg {
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-points svg {
  width: 30px;
  height: 30px;
  margin-bottom: 9px;
  color: var(--gold);
  stroke-width: 1.75;
}

.hero-points strong {
  display: block;
  color: var(--ink);
  font-weight: 800;
}

.request-card {
  border: 1px solid rgba(197, 155, 99, 0.18);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.92);
  box-shadow: var(--shadow);
  backdrop-filter: blur(18px);
  padding: 22px 36px 18px;
}

.request-card h2 {
  margin-bottom: 16px;
  color: var(--gold-dark);
  font-size: 2.1rem;
  line-height: 1;
  text-align: center;
}

.request-form {
  display: grid;
  gap: 8px;
}

.field {
  display: grid;
  gap: 4px;
}

.field > span:first-child,
.choice-group legend {
  color: #2d383d;
  font-size: 0.78rem;
  font-weight: 800;
}

.date-grid,
.role-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

.input-shell {
  min-height: 38px;
  display: grid;
  grid-template-columns: 22px minmax(0, 1fr);
  align-items: center;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.9);
  padding: 0 12px;
  transition:
    border-color 160ms ease,
    box-shadow 160ms ease;
}

.input-shell:focus-within {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(197, 155, 99, 0.13);
}

.input-shell svg {
  width: 17px;
  height: 17px;
  color: var(--gold);
  stroke-width: 1.85;
}

.input-shell input,
.input-shell select {
  min-width: 0;
  width: 100%;
  border: 0;
  outline: 0;
  background: transparent;
  color: #30393d;
  padding-left: 8px;
  font-size: 0.86rem;
}

.input-shell input::placeholder {
  color: #9d9993;
}

.input-shell--phone {
  grid-template-columns: 22px auto minmax(0, 1fr);
}

.phone-prefix {
  padding: 0 6px 0 8px;
  color: #38454a;
  font-size: 0.86rem;
  font-weight: 600;
  border-right: 1px solid var(--line);
  white-space: nowrap;
  line-height: 1;
  align-self: center;
}

.select-shell select {
  appearance: none;
  padding-right: 20px;
}

.select-shell {
  position: relative;
}

.select-shell::after {
  content: "";
  position: absolute;
  right: 15px;
  top: 50%;
  width: 7px;
  height: 7px;
  border-right: 1.5px solid #b5a99d;
  border-bottom: 1.5px solid #b5a99d;
  transform: translateY(-62%) rotate(45deg);
  pointer-events: none;
}

.choice-group {
  display: grid;
  gap: 8px;
  min-width: 0;
  margin: 2px 0 0;
  padding: 0;
  border: 0;
}

.choice-card {
  min-height: 40px;
  display: grid;
  grid-template-columns: 18px minmax(0, 1fr);
  align-items: center;
  gap: 9px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  padding: 10px 11px;
  cursor: pointer;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.choice-card:has(input:checked) {
  border-color: var(--gold);
  background: #fff9f1;
  box-shadow: 0 0 0 4px rgba(197, 155, 99, 0.12);
}

.choice-card input,
.checkbox-row input {
  width: 17px;
  height: 17px;
  margin: 0;
  accent-color: var(--gold);
}

.choice-card span {
  color: #445056;
  font-size: 0.79rem;
  font-weight: 750;
  line-height: 1.25;
}

.checkbox-row {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 11px;
  align-items: start;
  color: #566267;
  font-size: 0.78rem;
  line-height: 1.48;
}

.checkbox-row a {
  color: var(--gold-dark);
  font-weight: 800;
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.submit-button {
  width: 100%;
  min-height: 44px;
  margin-top: 2px;
  padding: 0 20px;
  font-size: 0.91rem;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.7;
  transform: none;
}

.form-note {
  display: grid;
  grid-template-columns: 17px minmax(0, 1fr);
  gap: 9px;
  align-items: start;
  color: #687278;
  font-size: 0.75rem;
  line-height: 1.44;
}

.form-note svg {
  width: 16px;
  height: 16px;
  color: var(--gold);
  stroke-width: 1.8;
}

.form-status {
  min-height: 18px;
  color: #566267;
  font-size: 0.78rem;
  font-weight: 800;
}

/* Ensure hidden attribute always wins even when display is set */
[hidden] {
  display: none !important;
}

/* Booking type toggle (Magánszemélyként / Cégként) */
.booking-type-toggle {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-top: 4px;
}

.booking-type-card {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 7px;
  min-height: 78px;
  padding: 14px 10px;
  border: 1.5px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.78);
  cursor: pointer;
  text-align: center;
  transition:
    border-color 160ms ease,
    background 160ms ease,
    box-shadow 160ms ease;
}

.booking-type-card:has(input:checked) {
  border-color: var(--gold);
  background: #fff9f1;
  box-shadow: 0 0 0 4px rgba(197, 155, 99, 0.12);
}

.booking-type-card input {
  position: absolute;
  opacity: 0;
  width: 0;
  height: 0;
  pointer-events: none;
}

.booking-type-card > svg {
  width: 22px;
  height: 22px;
  flex-shrink: 0;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.85;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.booking-type-card > span {
  color: #445056;
  font-size: 0.82rem;
  font-weight: 750;
  line-height: 1.2;
}

/* Conditional field groups */
.conditional-fields {
  display: grid;
  gap: 8px;
  padding: 14px 16px 16px;
  border: 1px dashed rgba(197, 155, 99, 0.4);
  border-radius: 8px;
  background: rgba(255, 252, 246, 0.7);
}

/* Flatpickr overrides */
.flatpickr-calendar {
  font-family: "Avenir Next", "Segoe UI", ui-sans-serif, system-ui, sans-serif;
  border-radius: 10px;
  box-shadow: 0 20px 48px rgba(56, 42, 28, 0.18);
  border: 1px solid rgba(197, 155, 99, 0.22);
}

.flatpickr-day.selected,
.flatpickr-day.selected:hover,
.flatpickr-day.startRange,
.flatpickr-day.endRange {
  background: var(--gold);
  border-color: var(--gold);
}

.flatpickr-day:hover {
  background: rgba(197, 155, 99, 0.14);
  border-color: transparent;
}

.flatpickr-day.today {
  border-color: var(--gold);
}

.flatpickr-day.today:hover {
  background: rgba(197, 155, 99, 0.14);
  color: var(--ink);
}

.flatpickr-months .flatpickr-prev-month:hover svg,
.flatpickr-months .flatpickr-next-month:hover svg {
  fill: var(--gold);
}

.flatpickr-current-month .numInputWrapper span.arrowUp:after {
  border-bottom-color: var(--gold);
}

.flatpickr-current-month .numInputWrapper span.arrowDown:after {
  border-top-color: var(--gold);
}

/* altInput (display input) inherits the shell style */
.flatpickr-input.flatpickr-input ~ .flatpickr-input[readonly] {
  cursor: pointer;
}

.input-shell input[readonly].flatpickr-input {
  cursor: pointer;
}

.form-status.success {
  color: #347247;
}

.form-status.error {
  color: #9e3f31;
}

.benefits {
  position: relative;
  padding: 64px 0 70px;
  background: var(--bg);
}

.benefits::before,
.footer-wave {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 6px;
  height: 86px;
  pointer-events: none;
  opacity: 0.32;
  background:
    repeating-radial-gradient(ellipse at 50% 100%, transparent 0 16px, rgba(197, 155, 99, 0.24) 17px 18px, transparent 19px 32px);
  mask-image: linear-gradient(90deg, transparent, #000 15%, #000 85%, transparent);
}

.benefits-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 28px;
}

/* Piramis: 3 kártya felül, 2 középen alul */
.benefits-grid .benefit-card:nth-child(-n + 3) {
  grid-column: span 2;
}

.benefits-grid .benefit-card:nth-child(4) {
  grid-column: 2 / span 2;
}

.benefits-grid .benefit-card:nth-child(5) {
  grid-column: 4 / span 2;
}

.benefit-card {
  min-height: 270px;
  display: grid;
  justify-items: center;
  align-content: start;
  align-items: start;
  border: 1px solid rgba(48, 57, 61, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.86);
  padding: 38px 36px 34px;
  text-align: center;
  box-shadow: var(--soft-shadow);
}

.benefit-icon {
  width: 80px;
  height: 80px;
  display: grid;
  place-items: center;
  margin-bottom: 28px;
  border-radius: 50%;
  background: linear-gradient(135deg, #d2ae79, #b98d56);
  color: #fff;
}

.benefit-icon svg {
  width: 43px;
  height: 43px;
  stroke-width: 1.55;
}

.benefit-card h2 {
  margin-bottom: 17px;
  font-size: 1.45rem;
  line-height: 1.18;
  min-height: calc(1.45rem * 1.18 * 2);
  display: flex;
  align-items: flex-start;
}

.benefit-card p {
  color: #535f64;
  font-size: 0.96rem;
  line-height: 1.62;
}

.gallery-section {
  padding: 0 0 66px;
  background: var(--bg);
}

.gallery-section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 32px;
  font-size: 2.25rem;
  line-height: 1;
}

.gallery-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 88px;
  height: 2px;
  background: var(--gold);
}

.gallery-wrap {
  position: relative;
  border-radius: 8px;
  overflow: hidden;
  background: #ede6dc;
  box-shadow: var(--soft-shadow);
}

.gallery-slides {
  display: block;
  width: 100%;
}

.gallery-slide {
  display: none;
  cursor: zoom-in;
  margin: 0;
}

.gallery-slide.active {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ede6dc;
}

.gallery-slide img {
  width: 100%;
  height: 500px;
  object-fit: contain;
  display: block;
  transition: opacity 200ms ease;
}

.gallery-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.88);
  backdrop-filter: blur(8px);
  box-shadow: 0 4px 18px rgba(56, 42, 28, 0.18);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink);
  transition: background 160ms ease, transform 160ms ease;
  z-index: 2;
}

.gallery-btn:hover {
  background: rgba(255, 255, 255, 0.98);
  transform: translateY(-50%) scale(1.07);
}

.gallery-prev {
  left: 14px;
}

.gallery-next {
  right: 14px;
}

.gallery-btn svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.gallery-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}

.gallery-dot {
  width: 10px;
  height: 10px;
  border: 0;
  border-radius: 50%;
  background: #ded7cf;
  cursor: pointer;
  padding: 0;
  transition: background 160ms ease, transform 160ms ease;
}

.gallery-dot.active {
  background: var(--gold);
  transform: scale(1.25);
}

.gallery-dot:hover:not(.active) {
  background: var(--gold-dark);
}

/* Árlista standalone bar */
.arlista-bar {
  background: var(--bg);
  padding: 0 0 28px;
}

/* Árlista CTA button */
.btn-arlista {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: auto;
  padding: 9px 18px;
  border: 1.5px solid var(--gold);
  border-radius: 999px;
  background: transparent;
  color: var(--gold-dark);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  cursor: pointer;
  transition: background 160ms ease, color 160ms ease, box-shadow 160ms ease;
}

.btn-arlista:hover {
  background: var(--gold);
  color: #fff;
  box-shadow: 0 8px 22px rgba(153, 103, 54, 0.22);
}

.btn-arlista svg {
  width: 15px;
  height: 15px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.btn-arlista--standalone {
  padding: 12px 28px;
  font-size: 0.9rem;
  gap: 10px;
  box-shadow: 0 4px 16px rgba(153, 103, 54, 0.12);
}

.btn-arlista--standalone svg {
  width: 18px;
  height: 18px;
}

.gallery-counter {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-top: 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

/* Lightbox */
.lightbox {
  position: fixed;
  inset: 0;
  z-index: 1000;
  display: none;
  align-items: center;
  justify-content: center;
}

.lightbox.open {
  display: flex;
}

.lightbox-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(18, 12, 6, 0.9);
  backdrop-filter: blur(5px);
}

.lightbox-content {
  position: relative;
  z-index: 1;
  max-width: min(88vw, 1200px);
  max-height: 88vh;
  display: flex;
  align-items: center;
  justify-content: center;
}

.lightbox-content img {
  max-width: 100%;
  max-height: 88vh;
  border-radius: 6px;
  box-shadow: 0 32px 80px rgba(0, 0, 0, 0.55);
  object-fit: contain;
  display: block;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  z-index: 2;
  width: 44px;
  height: 44px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease;
}

.lightbox-close:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-close svg,
.lightbox-nav svg {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.lightbox-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 2;
  width: 52px;
  height: 52px;
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 160ms ease;
}

.lightbox-nav:hover {
  background: rgba(255, 255, 255, 0.18);
}

.lightbox-prev {
  left: 20px;
}

.lightbox-next {
  right: 20px;
}

.lightbox--single .lightbox-nav {
  display: none;
}

.lightbox--single .lightbox-content {
  max-width: min(90vw, 820px);
  max-height: 85vh;
}

.lightbox--single .lightbox-content img {
  display: block;
  width: 100%;
  height: auto;
  max-height: 80vh;
  object-fit: contain;
  border-radius: 8px;
  image-rendering: high-quality;
}

/* Download bar — only shown in single (árlista) mode */
.lightbox-download-bar {
  display: none;
  position: absolute;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
}

.lightbox--single .lightbox-download-bar {
  display: flex;
}

.lightbox-download-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 10px 20px;
  border: 1px solid rgba(197, 155, 99, 0.55);
  border-radius: 999px;
  background: rgba(20, 14, 8, 0.72);
  backdrop-filter: blur(10px);
  color: #e8c98a;
  font-size: 0.85rem;
  font-weight: 700;
  text-decoration: none;
  white-space: nowrap;
  transition: background 140ms ease, color 140ms ease;
}

.lightbox-download-btn:hover {
  background: var(--gold);
  color: #fff;
}

.lightbox-download-btn svg {
  width: 16px;
  height: 16px;
  fill: none;
  stroke: currentColor;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
  flex-shrink: 0;
}

.location-section {
  padding: 0 0 76px;
  background: var(--bg);
}

.location-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  overflow: hidden;
  border: 1px solid rgba(197, 155, 99, 0.25);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
  box-shadow: var(--soft-shadow);
}

.location-copy {
  padding: clamp(40px, 6vw, 70px) clamp(36px, 5vw, 62px);
}

.location-copy h2 {
  max-width: 460px;
  margin-bottom: 26px;
  font-size: clamp(2.25rem, 3.1vw, 3.25rem);
  line-height: 1.16;
}

.location-copy p {
  max-width: 465px;
  color: #505d62;
  font-size: 0.99rem;
  line-height: 1.72;
}

.check-list {
  display: grid;
  gap: 12px;
  margin: 26px 0 30px;
  padding: 0;
  list-style: none;
  color: #39464c;
  font-size: 0.94rem;
  line-height: 1.48;
}

.check-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.check-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' fill='none' stroke='%23c59b63' stroke-width='1.5'/%3E%3Cpath d='M6 10.2l2.8 2.8 5.2-5.8' fill='none' stroke='%23c59b63' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.secondary-button {
  min-height: 54px;
  gap: 16px;
  padding: 0 12px 0 28px;
}

.secondary-button svg {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: #fff;
  color: var(--gold-dark);
  padding: 10px;
  stroke-width: 2;
}

.map-frame {
  min-height: 390px;
  background: #dcecf4;
  overflow: hidden;
}

.map-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.map-frame iframe {
  width: 100%;
  height: 100%;
  min-height: 390px;
  border: 0;
  display: block;
}

/* ── Rólunk szekció ── */
.about-section {
  padding: 0 0 80px;
  background: var(--bg);
}

.about-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(36px, 5vw, 72px);
  align-items: start;
}

.about-section > .section-inner > h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
}

.about-section > .section-inner > h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 88px;
  height: 2px;
  background: var(--gold);
}

.about-copy p {
  margin-bottom: 18px;
  color: #505d62;
  font-size: 0.97rem;
  line-height: 1.78;
}

.about-copy p:last-child {
  margin-bottom: 0;
}

.about-video {
  position: sticky;
  top: 24px;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: var(--soft-shadow);
  background: #111;
  max-width: 500px;
  justify-self: center;
}

.about-video video {
  display: block;
  width: 100%;
  max-height: 660px;
  object-fit: cover;
}

/* ── GY.I.K. szekció ── */
.faq-section {
  padding: 0 0 84px;
  background: var(--bg);
}

.faq-section h2 {
  position: relative;
  display: inline-block;
  margin-bottom: 36px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 2.25rem;
  font-weight: 500;
  line-height: 1;
}

.faq-section h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -11px;
  width: 88px;
  height: 2px;
  background: var(--gold);
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: grid;
  gap: 10px;
}

.faq-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: #39464c;
  font-size: 0.94rem;
  line-height: 1.55;
}

.faq-list li::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-top: 1px;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 20 20' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='10' cy='10' r='9' fill='none' stroke='%23c59b63' stroke-width='1.5'/%3E%3Cpath d='M6 10.2l2.8 2.8 5.2-5.8' fill='none' stroke='%23c59b63' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-size: contain;
}

.faq-block {
  margin-bottom: 40px;
}

.faq-block h3,
.faq-service-card h3 {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-bottom: 16px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.18rem;
  font-weight: 500;
  color: var(--ink);
}

.faq-block h3 svg,
.faq-service-card h3 svg {
  width: 20px;
  height: 20px;
  flex-shrink: 0;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.faq-services {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.faq-service-card {
  border: 1px solid rgba(197, 155, 99, 0.22);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.82);
  padding: 28px 26px 24px;
  box-shadow: var(--soft-shadow);
}

.faq-service-card ul {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 9px;
}

.faq-service-card ul li {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  color: #505d62;
  font-size: 0.9rem;
  line-height: 1.55;
}

.faq-service-card ul li::before {
  content: "–";
  flex-shrink: 0;
  color: var(--gold);
  font-weight: 700;
  margin-top: 1px;
}

@media (max-width: 820px) {
  .about-inner {
    grid-template-columns: 1fr;
  }

  .about-video {
    position: static;
    max-width: 100%;
  }

  .faq-services {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .faq-services {
    grid-template-columns: 1fr;
  }
}

.site-footer {
  position: relative;
  overflow: hidden;
  border-top: 1px solid rgba(62, 47, 31, 0.1);
  background: rgba(255, 255, 255, 0.5);
}

.footer-wave {
  top: 0;
  opacity: 0.2;
}

.footer-main {
  display: grid;
  grid-template-columns: 1.1fr 1fr 0.82fr;
  gap: 72px;
  padding: 66px 0 44px;
}

.footer-brand img {
  width: 186px;
  margin-bottom: 20px;
}

.footer-brand p {
  max-width: 280px;
  color: #59646a;
  font-size: 0.92rem;
  line-height: 1.65;
}

.footer-legal-note {
  margin-top: 10px;
  max-width: 280px;
  color: #8c9da4;
  font-size: 0.75rem;
  line-height: 1.5;
}

.footer-contact,
.footer-social {
  border-left: 1px solid rgba(62, 47, 31, 0.12);
  padding-left: 44px;
}

.footer-contact h2,
.footer-social h2 {
  margin-bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.22rem;
}

.footer-contact a {
  display: block;
  margin-bottom: 12px;
  color: #4e5a60;
  font-size: 0.92rem;
}

.social-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.social-link {
  display: flex;
  align-items: center;
  gap: 12px;
  color: #4e5a60;
  font-size: 0.93rem;
  font-weight: 600;
  transition: color 160ms ease;
}

.social-link:hover {
  color: var(--gold-dark);
}

.social-icon {
  flex-shrink: 0;
  width: 36px;
  height: 36px;
  padding: 7px;
  border-radius: 10px;
  border: 1.5px solid rgba(197, 155, 99, 0.45);
  background: #fff;
  color: var(--gold);
  fill: none;
  stroke: currentColor;
  stroke-width: 1.6;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: background 160ms ease, border-color 160ms ease, color 160ms ease;
}

.social-link:hover .social-icon {
  background: linear-gradient(135deg, #d0a873, var(--gold));
  border-color: var(--gold);
  color: #fff;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid rgba(62, 47, 31, 0.12);
  padding: 22px 0;
  color: #667177;
  font-size: 0.86rem;
}

.footer-bottom nav {
  display: flex;
  align-items: center;
  gap: 22px;
}

.footer-bottom span {
  width: 1px;
  height: 18px;
  background: rgba(62, 47, 31, 0.22);
}

@media (max-width: 1120px) {
  .section-inner,
  .site-header,
  .hero-inner {
    width: min(var(--max), calc(100% - 48px));
  }

  .site-header {
    height: 96px;
  }

  .brand img {
    width: 184px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    grid-template-columns: minmax(0, 1fr) 460px;
    gap: 24px;
    padding-top: 52px;
  }

  .hero-copy {
    padding-top: 96px;
  }

  .hero-copy h1 {
    font-size: clamp(2.65rem, 5.1vw, 3.6rem);
  }

  .hero-points {
    max-width: 440px;
  }

  .request-card {
    padding: 28px 30px 24px;
  }

  .request-card h2 {
    font-size: 2.2rem;
  }

  .date-grid,
  .role-grid {
    grid-template-columns: 1fr;
  }

  .benefits-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
  }

  .benefits-grid .benefit-card:nth-child(-n + 5) {
    grid-column: auto;
  }

  .benefits-grid .benefit-card:nth-child(5) {
    grid-column: 1 / -1;
    justify-self: center;
    width: min(100%, calc(50% - 9px));
  }

  .benefit-card {
    padding: 34px 22px 30px;
  }

  .gallery-slide img {
    height: 400px;
  }
}

@media (max-width: 820px) {
  .section-inner,
  .site-header,
  .hero-inner {
    width: min(100% - 30px, var(--max));
  }

  .site-header {
    height: 86px;
  }

  .brand img {
    width: 148px;
  }

  .header-cta {
    min-width: auto;
    min-height: 42px;
    padding-inline: 18px;
    font-size: 0.86rem;
  }

  .hero::before {
    background:
      linear-gradient(180deg, rgba(251, 248, 243, 0.95) 0%, rgba(251, 248, 243, 0.72) 40%, rgba(251, 248, 243, 0.96) 100%),
      linear-gradient(90deg, rgba(251, 248, 243, 0.72), rgba(251, 248, 243, 0.3));
  }

  .hero-inner,
  .location-card,
  .footer-main {
    grid-template-columns: 1fr;
  }

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

  .benefits-grid .benefit-card:nth-child(-n + 5) {
    grid-column: auto;
    justify-self: stretch;
    width: auto;
  }

  .hero-inner {
    gap: 32px;
    padding: 42px 0 64px;
  }

  .hero-copy {
    padding-top: 24px;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.8rem);
    line-height: 1.1;
  }

  .hero-copy p {
    margin-top: 22px;
    font-size: 0.97rem;
  }

  .hero-points {
    grid-template-columns: 1fr;
    margin-top: 30px;
  }

  .hero-points span {
    min-height: 78px;
    border-right: 0;
    border-bottom: 1px solid rgba(154, 111, 69, 0.24);
  }

  .hero-points span:last-child {
    border-bottom: 0;
  }

  .request-card {
    padding: 28px 18px 24px;
  }

  .request-card h2 {
    font-size: 2.05rem;
  }

  .benefits {
    padding-top: 48px;
  }

  .benefit-card {
    min-height: 0;
    text-align: left;
    justify-items: start;
  }

  .benefit-icon {
    width: 68px;
    height: 68px;
  }

  .gallery-slide img {
    height: 280px;
  }

  .gallery-btn {
    width: 40px;
    height: 40px;
  }

  .location-copy {
    padding: 34px 24px;
  }

  .location-copy h2 {
    font-size: clamp(2rem, 10vw, 2.7rem);
  }

  .map-frame {
    min-height: 310px;
  }

  .footer-main {
    gap: 30px;
    padding-top: 48px;
  }

  .footer-contact,
  .footer-social {
    border-left: 0;
    padding-left: 0;
  }

  .footer-bottom {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (max-width: 420px) {
  .hero-copy h1 {
    font-size: 2.42rem;
  }

  .input-shell {
    grid-template-columns: 20px minmax(0, 1fr);
    padding-inline: 10px;
  }

  .role-grid {
    gap: 8px;
  }

  .secondary-button {
    width: 100%;
    padding-left: 22px;
  }

  .footer-bottom nav {
    flex-wrap: wrap;
    gap: 14px;
  }
}
