/* Pampetrics Borkereskedés — site stylesheet
   Fonts: Cormorant Garamond (display), Karla (body). Loaded via Google Fonts in index.html <head>. */

:root {
  --bg: #FBF7F0;
  --bg-alt: #F3EADC;
  --ink: #2A2320;
  --body: #4A3F38;
  --heading: #3A1017;
  --brand: #6B1F2E;
  --brand-hover: #9A3450;
  --brand-soft: rgba(107, 31, 46, 0.12);
  --gold: #E7C98B;
  --gold-hover: #F0D69B;
  --gold-label: #A98A5B;
  --muted: #8A7C70;
  --dark-grad-top: #3A1017;
  --dark-grad-bottom: #2A0C11;
  --footer-bg: #2A0C11;
  --font-display: 'Cormorant Garamond', Georgia, serif;
  --font-body: 'Karla', system-ui, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  overflow-x: hidden;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--bg);
}
img { max-width: 100%; display: block; }
::selection { background: var(--brand); color: var(--bg); }
a { color: var(--brand); text-decoration: none; }
a:hover { color: var(--brand-hover); }

.container {
  max-width: 1180px;
  margin: 0 auto;
  padding: 0 28px;
}

@keyframes pampFade {
  from { opacity: 0; transform: translateY(14px); }
  to { opacity: 1; transform: none; }
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, backdrop-filter .3s ease;
}
.site-header.is-scrolled {
  background: rgba(251, 247, 240, 0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--brand-soft);
}
.site-header__bar {
  max-width: 1180px;
  margin: 0 auto;
  padding: 18px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}
.site-logo {
  display: flex;
  align-items: baseline;
  gap: 12px;
}
.site-logo__name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 42px;
  letter-spacing: .01em;
  color: #FBF7F0;
  line-height: 1;
  transition: font-size .3s ease, color .3s ease;
}
.site-logo__tag {
  font-size: 11px;
  letter-spacing: .3em;
  text-transform: uppercase;
  color: rgba(251, 247, 240, .85);
  font-weight: 600;
  transition: color .3s ease;
}
.is-scrolled .site-logo__name { font-size: 26px; color: var(--brand); }
.is-scrolled .site-logo__tag { color: var(--gold-label); }

.main-nav {
  display: flex;
  align-items: center;
  gap: 26px;
}
.main-nav__link {
  position: relative;
  color: rgba(251, 247, 240, .92);
  font-weight: 500;
  font-size: 15px;
  padding-bottom: 3px;
  transition: color .2s;
}
.main-nav__link .underline {
  position: absolute;
  left: 0; right: 0; bottom: -2px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.main-nav__link:hover .underline,
.main-nav__link.is-active .underline { transform: scaleX(1); }
.is-scrolled .main-nav__link { color: var(--body); }
.is-scrolled .main-nav__link .underline { background: var(--brand); }
.is-scrolled .main-nav__link.is-active { color: var(--brand); font-weight: 700; }

.nav-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(251, 247, 240, .14);
  border: 1px solid rgba(251, 247, 240, .55);
  color: #FBF7F0;
  padding: 10px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  transition: background .3s ease, border-color .3s ease, color .3s ease;
}
.nav-cta:hover { background: rgba(251, 247, 240, .24); color: #FBF7F0; }
.is-scrolled .nav-cta { background: var(--brand); border-color: transparent; color: #FBF7F0; }
.is-scrolled .nav-cta:hover { background: var(--brand-hover); }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(251, 247, 240, .55);
  color: #FBF7F0;
  border-radius: 10px;
  width: 42px;
  height: 38px;
  font-size: 20px;
  cursor: pointer;
}
.is-scrolled .nav-toggle { border-color: var(--brand-soft); color: var(--brand); }

.mobile-nav {
  display: none;
  flex-direction: column;
  gap: 2px;
  background: var(--bg);
  border-top: 1px solid var(--brand-soft);
  padding: 10px 28px 18px;
}
.mobile-nav.is-open { display: flex; }
.mobile-nav a {
  color: var(--heading);
  font-weight: 600;
  padding: 12px 0;
  border-bottom: 1px solid var(--brand-soft);
}

/* ---------- Hero ---------- */
.hero {
  position: relative;
  min-height: 90vh;
  margin-top: -78px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
}
.hero__media { position: absolute; inset: 0; }
.hero__media img { width: 100%; height: 100%; object-fit: cover; }
.hero__scrim {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(42,20,26,.30) 0%, rgba(42,20,26,.10) 40%, rgba(30,14,18,.86) 100%);
  pointer-events: none;
}
.hero__content {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  padding: 0 28px 80px;
}
.hero__inner { max-width: 780px; animation: pampFade .9s ease both; }
.hero__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--gold);
  font-size: 13px;
  letter-spacing: .22em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 22px;
}
.hero__eyebrow .line { width: 30px; height: 1px; background: var(--gold); display: inline-block; }
.hero h1 {
  font-family: var(--font-display);
  font-weight: 500;
  color: #FBF7F0;
  font-size: clamp(42px, 6vw, 76px);
  line-height: 1.02;
  margin: 0 0 22px;
  text-wrap: balance;
}
.hero h1 em { font-style: italic; color: var(--gold); }
.hero p {
  color: rgba(251, 247, 240, .9);
  font-size: clamp(17px, 2vw, 21px);
  line-height: 1.55;
  max-width: 620px;
  margin: 0 0 34px;
}
.hero__ctas { display: flex; flex-wrap: wrap; gap: 14px; }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 15px 28px;
  border-radius: 999px;
  font-weight: 700;
  font-size: 16px;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.btn-gold { background: var(--gold); color: var(--heading); }
.btn-gold:hover { background: var(--gold-hover); color: var(--heading); }
.btn-outline-light {
  background: rgba(251, 247, 240, .12);
  border: 1px solid rgba(251, 247, 240, .45);
  color: #FBF7F0;
  font-weight: 600;
}
.btn-outline-light:hover { background: rgba(251, 247, 240, .22); color: #FBF7F0; }

/* ---------- Rólunk (about) ---------- */
.section-rolunk { max-width: 1180px; margin: 0 auto; padding: 100px 28px 40px; }
.rolunk__grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 64px; align-items: center; }
.eyebrow {
  color: var(--gold-label);
  font-size: 13px;
  letter-spacing: .24em;
  text-transform: uppercase;
  font-weight: 600;
  margin-bottom: 18px;
}
.section-rolunk h2, .section-uzletek h2, .section-kovess h2, .section-boraszatok h2,
.section-kiegeszitok h2, .section-miert h2, .section-kapcsolat h2 {
  font-family: var(--font-display);
  font-weight: 500;
  line-height: 1.08;
  margin: 0 0 24px;
  color: var(--heading);
}
.section-rolunk h2 { font-size: clamp(32px, 4vw, 50px); }
.section-rolunk p { font-size: 17px; line-height: 1.7; color: var(--body); margin: 0 0 18px; }
.section-rolunk p:last-child { margin-bottom: 0; }

.rolunk__media { position: relative; }
.rolunk__frame {
  position: relative;
  aspect-ratio: 4/5;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 60px -30px rgba(58,16,23,.5);
}
.rolunk__frame img { width: 100%; height: 100%; object-fit: cover; }
.video-play {
  position: absolute;
  inset: 0;
  border: none;
  background: rgba(42,12,17,.18);
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  transition: background .25s ease;
  width: 100%;
}
.video-play:hover { background: rgba(42,12,17,.34); }
.video-play__circle {
  width: 84px; height: 84px;
  border-radius: 50%;
  background: rgba(251,247,240,.92);
  box-shadow: 0 12px 34px -8px rgba(0,0,0,.5);
  display: flex; align-items: center; justify-content: center;
  transition: transform .25s ease;
}
.video-play:hover .video-play__circle { transform: scale(1.08); }
.video-play__triangle {
  display: block; width: 0; height: 0; margin-left: 6px;
  border-style: solid; border-width: 15px 0 15px 26px;
  border-color: transparent transparent transparent var(--brand);
}
.video-play__label {
  color: #FBF7F0; font-weight: 700; font-size: 15px; letter-spacing: .03em;
  text-shadow: 0 2px 10px rgba(0,0,0,.5);
}
.rolunk__badge {
  position: absolute; bottom: -22px; left: -22px;
  background: var(--brand); color: #FBF7F0;
  padding: 20px 26px; border-radius: 14px;
  box-shadow: 0 20px 40px -20px rgba(58,16,23,.7);
}
.rolunk__badge-num { font-family: var(--font-display); font-size: 34px; font-weight: 600; line-height: 1; }
.rolunk__badge-label { font-size: 13px; letter-spacing: .06em; opacity: .85; margin-top: 4px; }

.video-modal {
  position: fixed; inset: 0; z-index: 100;
  background: rgba(20,8,11,.86);
  backdrop-filter: blur(6px);
  display: flex; align-items: center; justify-content: center;
  padding: 28px;
  animation: pampFade .25s ease both;
}
.video-modal[hidden] { display: none; }
.video-modal__inner { position: relative; width: 100%; max-width: 960px; }
.video-modal__close {
  position: absolute; top: -46px; right: 0;
  background: transparent; border: none; color: #FBF7F0;
  font-size: 30px; line-height: 1; cursor: pointer; padding: 4px 8px;
}
.video-modal__frame {
  position: relative; aspect-ratio: 16/9; border-radius: 14px;
  overflow: hidden; box-shadow: 0 30px 80px -20px rgba(0,0,0,.7); background: #000;
}
.video-modal__frame iframe { position: absolute; inset: 0; width: 100%; height: 100%; border: 0; }

.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  margin-top: 80px;
  border: 1px solid var(--brand-soft);
  border-radius: 13px;
  overflow: hidden;
  max-width: 1180px;
  margin-left: auto;
  margin-right: auto;
}
.stats__item {
  padding: 32px 24px;
  text-align: center;
  border-right: 1px solid var(--brand-soft);
}
.stats__item:last-child { border-right: none; }
.stats__value { font-family: var(--font-display); font-size: clamp(38px, 4.5vw, 54px); font-weight: 600; color: var(--brand); line-height: 1; }
.stats__label { font-size: 14px; color: #6B5D52; margin-top: 8px; }

/* ---------- Üzletek (shops) ---------- */
.section-uzletek { background: var(--bg-alt); padding: 100px 0; margin-top: 90px; }
.section-uzletek .intro { text-align: center; max-width: 640px; margin: 0 auto 56px; }
.section-uzletek h2 { font-size: clamp(32px, 4vw, 50px); margin-bottom: 16px; }
.section-uzletek .intro p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 0; }

.shops-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 30px; }
.shop-card {
  background: var(--bg);
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 24px 50px -32px rgba(58,16,23,.4);
  border: 1px solid var(--brand-soft);
  display: flex;
  flex-direction: column;
}
.shop-card__media { position: relative; aspect-ratio: 16/10; }
.shop-card__media img { width: 100%; height: 100%; object-fit: cover; }
.shop-card__badge {
  position: absolute; top: 16px; left: 16px;
  display: inline-flex; align-items: center; gap: 8px;
  padding: 8px 15px; border-radius: 999px;
  font-weight: 700; font-size: 14px;
  box-shadow: 0 6px 16px -6px rgba(0,0,0,.35);
}
.shop-card__badge.is-open { background: #E8F3E9; color: #2E6B3A; }
.shop-card__badge.is-closed { background: #FBEBE8; color: #A8382B; }
.shop-card__dot { width: 9px; height: 9px; border-radius: 50%; }
.is-open .shop-card__dot { background: #3CA84E; box-shadow: 0 0 0 3px rgba(60,168,78,.25); }
.is-closed .shop-card__dot { background: #C0392B; box-shadow: 0 0 0 3px rgba(192,57,43,.2); }

.shop-card__body { padding: 28px 28px 30px; display: flex; flex-direction: column; flex: 1; }
.shop-card__tag { font-size: 12px; letter-spacing: .16em; text-transform: uppercase; color: var(--gold-label); font-weight: 600; margin-bottom: 8px; }
.shop-card__name { font-family: var(--font-display); font-weight: 600; font-size: 30px; line-height: 1.05; margin: 0 0 14px; color: var(--heading); }
.shop-card__address {
  display: flex; align-items: flex-start; gap: 10px; margin-bottom: 4px;
  color: var(--body); font-size: 15.5px; line-height: 1.5;
}
.shop-card__address:hover { color: var(--brand); }
.shop-card__address .pin { color: var(--brand); margin-top: 2px; }
.shop-card__address-note { color: #8A7C70; font-size: 14px; }
.shop-card__directions {
  display: inline-flex; align-items: center; gap: 6px;
  font-weight: 600; font-size: 14.5px; color: var(--brand);
  margin: 6px 0 20px;
}
.shop-card__directions:hover { color: var(--brand-hover); }

.hours-table { border-top: 1px solid var(--brand-soft); border-bottom: 1px solid var(--brand-soft); padding: 6px 0; margin-bottom: 20px; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 9px 4px; border-radius: 8px; }
.hours-row.is-today { background: rgba(231,201,139,.28); }
.hours-row__label { font-size: 15px; color: var(--body); font-weight: 500; }
.hours-row.is-today .hours-row__label { font-weight: 700; color: var(--heading); }
.hours-row__value { font-size: 15px; font-weight: 600; color: var(--body); }
.hours-row.is-today .hours-row__value { color: var(--brand); }
.hours-row__value.is-closed { color: #C0392B; }

.shop-card__actions { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 16px; }
.shop-card__actions button, .shop-card__actions a {
  flex: 1; min-width: 150px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  cursor: pointer; border: 1px solid rgba(107,31,46,.25);
  background: transparent; color: var(--brand);
  padding: 13px 16px; border-radius: 11px; font-family: inherit;
  font-weight: 600; font-size: 15px;
}
.shop-card__actions button:hover, .shop-card__actions a:hover { background: var(--brand); color: #FBF7F0; }
.shop-card__parking { display: flex; align-items: center; gap: 9px; font-size: 14px; color: #4A7C4E; font-weight: 600; }

/* ---------- Kövess minket (social) ---------- */
.section-kovess {
  background: linear-gradient(135deg, var(--brand) 0%, #4A1420 100%);
  color: #FBF7F0;
  position: relative;
  overflow: hidden;
}
.section-kovess::before {
  content: "";
  position: absolute; inset: 0; opacity: .1;
  background: radial-gradient(circle at 15% 20%, var(--gold) 0%, transparent 45%),
              radial-gradient(circle at 85% 80%, var(--gold) 0%, transparent 40%);
  pointer-events: none;
}
.kovess__grid {
  position: relative; max-width: 1180px; margin: 0 auto; padding: 84px 28px;
  display: grid; grid-template-columns: 1fr auto; gap: 48px; align-items: center;
}
.section-kovess .eyebrow { color: var(--gold); }
.section-kovess h2 { color: #FBF7F0; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; margin: 0 0 16px; }
.kovess__grid p { font-size: 18px; line-height: 1.6; color: rgba(251,247,240,.85); max-width: 720px; margin: 0; }
.social-links { display: flex; flex-direction: column; gap: 14px; min-width: 260px; }
.social-links a {
  display: flex; align-items: center; gap: 16px;
  background: rgba(251,247,240,.1); border: 1px solid rgba(251,247,240,.25);
  padding: 18px 22px; border-radius: 14px; color: #FBF7F0;
}
.social-links a:hover { background: rgba(251,247,240,.2); }
.social-links svg { flex-shrink: 0; }
.social-links strong { display: block; font-weight: 700; font-size: 17px; }
.social-links span.handle { font-size: 13.5px; opacity: .8; }
.social-links .arrow { margin-left: auto; font-size: 20px; }

/* ---------- Borászatok (wineries) ---------- */
.section-boraszatok { max-width: 1180px; margin: 0 auto; padding: 100px 28px; }
.section-boraszatok .intro { max-width: 680px; margin-bottom: 40px; }
.section-boraszatok h2 { font-size: clamp(32px, 4vw, 50px); }
.section-boraszatok .intro p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 0; }

.wineries-toolbar { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; margin-bottom: 24px; }
.wineries-search { position: relative; flex: 1; min-width: 240px; }
.wineries-search__icon { position: absolute; left: 16px; top: 50%; transform: translateY(-50%); color: var(--gold-label); font-size: 16px; }
.wineries-search input {
  width: 100%; padding: 14px 16px 14px 42px; border-radius: 12px;
  border: 1px solid rgba(107,31,46,.2); background: var(--bg);
  font-family: inherit; font-size: 15.5px; color: var(--ink); outline: none;
}
.wineries-search input:focus { border-color: var(--brand); }
.wineries-count { font-size: 14px; color: var(--muted); white-space: nowrap; }

.region-pills { display: flex; flex-wrap: wrap; gap: 9px; margin-bottom: 30px; }
.region-pill {
  cursor: pointer; font-family: inherit; font-size: 14px; font-weight: 600;
  padding: 9px 16px; border-radius: 999px; border: 1px solid var(--brand-soft);
  background: transparent; color: var(--brand);
}
.region-pill:hover { border-color: var(--brand); }
.region-pill.is-active { background: var(--brand); color: #FBF7F0; border-color: var(--brand); }

.wineries-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(230px, 1fr)); gap: 14px; }
.winery-card {
  background: var(--bg); border: 1px solid var(--brand-soft); border-radius: 13px; padding: 18px 20px;
}
.winery-card:hover { border-color: rgba(107,31,46,.35); }
.winery-card__name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--heading); line-height: 1.15; margin-bottom: 6px; }
.winery-card__region { display: flex; align-items: center; gap: 7px; color: #6B5D52; font-size: 13.5px; }
.winery-card__region .dot { color: var(--gold-label); }

.wineries-empty { text-align: center; padding: 50px 20px; color: var(--muted); font-size: 16px; }
.wineries-updated { margin-top: 26px; font-size: 13.5px; color: #A0968C; font-style: italic; }

/* ---------- Kiegészítők (accessories) ---------- */
.section-kiegeszitok { background: var(--bg-alt); padding: 100px 0; }
.section-kiegeszitok .intro { max-width: 680px; margin-bottom: 48px; }
.section-kiegeszitok h2 { font-size: clamp(32px, 4vw, 50px); }
.section-kiegeszitok .intro p { font-size: 17px; line-height: 1.65; color: var(--body); margin: 0; }
.scroll-hint { display: flex; align-items: center; gap: 8px; margin-bottom: 18px; color: var(--gold-label); font-size: 13.5px; font-weight: 600; letter-spacing: .04em; }

.accessories-track {
  display: flex; gap: 22px; overflow-x: auto;
  scroll-snap-type: x mandatory; padding: 4px 4px 22px; margin: 0 -4px;
  -webkit-overflow-scrolling: touch;
  scrollbar-color: #C9A66B #E4D7C1;
}
.accessory-card {
  flex: 0 0 calc((100% - 66px) / 4);
  min-width: 240px;
  scroll-snap-align: start;
  background: var(--bg);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--brand-soft);
  box-shadow: 0 18px 36px -26px rgba(58,16,23,.45);
}
.accessory-card__media { aspect-ratio: 3/4; position: relative; }
.accessory-card__media img { width: 100%; height: 100%; object-fit: cover; }
.accessory-card__body { padding: 20px 22px 24px; }
.accessory-card__name { font-family: var(--font-display); font-weight: 600; font-size: 23px; line-height: 1.1; color: var(--heading); }
.accessory-card__note { font-size: 13.5px; color: var(--muted); margin-top: 6px; }

/* ---------- Miért minket válassz ---------- */
.section-miert { max-width: 1180px; margin: 0 auto; padding: 100px 28px; }
.section-miert .intro { text-align: center; max-width: 640px; margin: 0 auto 60px; }
.section-miert h2 { font-size: clamp(32px, 4vw, 50px); margin: 0; }
.reasons-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.reason { text-align: center; padding: 8px 12px; }
.reason__icon {
  width: 68px; height: 68px; margin: 0 auto 22px; border-radius: 50%;
  background: var(--bg-alt); color: var(--brand);
  display: flex; align-items: center; justify-content: center;
  border: 1px solid var(--brand-soft);
}
.reason__title { font-family: var(--font-display); font-weight: 600; font-size: 25px; color: var(--heading); margin: 0 0 12px; }
.reason__body { font-size: 16px; line-height: 1.6; color: var(--body); margin: 0; }

/* ---------- Kapcsolat (contact) ---------- */
.section-kapcsolat { background: linear-gradient(180deg, var(--dark-grad-top) 0%, var(--dark-grad-bottom) 100%); color: #FBF7F0; padding: 100px 0; }
.section-kapcsolat .eyebrow { color: var(--gold); }
.section-kapcsolat h2 { color: #FBF7F0; font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; margin: 0 0 40px; }
.kapcsolat__grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: start; }
.kapcsolat__intro { font-size: 17px; line-height: 1.65; color: rgba(251,247,240,.8); margin: 0 0 32px; max-width: 480px; }

.contact-shop { border-top: 1px solid rgba(231,201,139,.25); padding-top: 18px; margin-bottom: 20px; }
.contact-shop__name { font-family: var(--font-display); font-size: 22px; font-weight: 600; color: var(--gold); margin-bottom: 10px; }
.contact-shop__lines { display: flex; flex-direction: column; gap: 8px; font-size: 15px; color: rgba(251,247,240,.85); }
.contact-shop__lines a { color: rgba(251,247,240,.85); }
.contact-shop__lines a:hover { color: var(--gold); }
.contact-shop__lines .indent { color: var(--gold); font-weight: 600; margin-left: 14px; }
.contact-shop__lines .indent:hover { color: var(--gold-hover); }

.contact-form {
  background: rgba(251,247,240,.05); border: 1px solid rgba(231,201,139,.2);
  border-radius: 20px; padding: 34px;
}
.form-field { display: flex; flex-direction: column; gap: 16px; }
.form-field label { display: block; font-size: 13.5px; font-weight: 600; letter-spacing: .04em; color: var(--gold); margin-bottom: 7px; }
.form-field input, .form-field textarea {
  width: 100%; padding: 13px 15px; border-radius: 10px;
  border: 1px solid rgba(231,201,139,.3); background: rgba(251,247,240,.06);
  color: #FBF7F0; font-family: inherit; font-size: 15px; outline: none;
}
.form-field input:focus, .form-field textarea:focus { border-color: var(--gold); }
.form-field textarea { resize: vertical; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; font-size: 14px; color: rgba(251,247,240,.8); line-height: 1.5; }
.form-consent input { width: auto; margin-top: 3px; }
.form-submit {
  margin-top: 6px; cursor: pointer; background: var(--gold); color: var(--heading);
  border: none; padding: 15px; border-radius: 11px; font-family: inherit; font-weight: 700; font-size: 16px; width: 100%;
}
.form-submit:hover { background: var(--gold-hover); }
.form-submit:disabled { opacity: .6; cursor: default; }
.form-error {
  display: none; margin-top: 14px; padding: 12px 16px; border-radius: 10px;
  background: rgba(192,57,43,.15); border: 1px solid rgba(192,57,43,.4);
  color: #F3C9C4; font-size: 14.5px;
}
.form-sent { display: none; text-align: center; padding: 40px 12px; }
.form-sent__icon { font-size: 44px; margin-bottom: 16px; }
.form-sent h3 { font-family: var(--font-display); font-size: 28px; margin: 0 0 10px; color: var(--gold); }
.form-sent p { color: rgba(251,247,240,.8); font-size: 16px; margin: 0; }

/* ---------- Footer ---------- */
.site-footer { background: var(--footer-bg); color: rgba(251,247,240,.6); border-top: 1px solid rgba(231,201,139,.15); }
.site-footer__main {
  max-width: 1180px; margin: 0 auto; padding: 40px 28px;
  display: flex; flex-wrap: wrap; gap: 20px; justify-content: space-between; align-items: center;
}
.site-footer__brand { display: flex; align-items: baseline; gap: 10px; }
.site-footer__brand strong { font-family: var(--font-display); font-weight: 600; font-size: 22px; color: var(--gold); }
.site-footer__brand span { font-size: 11px; letter-spacing: .24em; text-transform: uppercase; }
.footer-nav { display: flex; flex-wrap: wrap; gap: 24px; font-size: 14px; }
.footer-nav a { color: rgba(251,247,240,.7); }
.footer-nav a:hover { color: var(--gold); }
.site-by {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 16px 28px;
  max-width: 1160px;
  margin: 0 auto;
  display: flex;
  justify-content: flex-end;
}
.site-by a { display: inline-flex; align-items: center; gap: 8px; text-decoration: none; }
.site-by span { font-size: 12px; color: #9aa08d; }
.site-by svg { color: var(--gold); height: 14px; width: fit-content; aspect-ratio: 94/14; }

/* ---------- Responsive ---------- */
@media (max-width: 900px) {
  .rolunk__grid { grid-template-columns: 1fr; gap: 40px; }
  .stats { grid-template-columns: repeat(2, 1fr); }
  .stats__item:nth-child(2) { border-right: none; }
  .stats__item { border-bottom: 1px solid var(--brand-soft); }
  .stats__item:nth-child(3), .stats__item:nth-child(4) { border-bottom: none; }
  .shops-grid { grid-template-columns: 1fr; }
  .kovess__grid { grid-template-columns: 1fr; }
  .social-links { min-width: 0; }
  .reasons-grid { grid-template-columns: 1fr; gap: 44px; }
  .kapcsolat__grid { grid-template-columns: 1fr; gap: 40px; }
  .accessory-card { flex: 0 0 calc((100% - 22px) / 2); }
}

@media (max-width: 720px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-flex; align-items: center; justify-content: center; }
  .hero { min-height: 100vh; }
  .site-footer__main { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 520px) {
  .accessory-card { flex: 0 0 82%; }
  .rolunk__badge { left: 0; bottom: -18px; padding: 16px 20px; }
}
