* {
  box-sizing: border-box;
}

:root {
  --blue-dark: #314650;
  --blue: #425a65;
  --blue-soft: #60737b;

  --brown: #d3a84f;
  --brown-dark: #bd9138;

  --gold: #d8b567;
  --gold-dark: #bb8b34;
  --gold-light: #efd398;

  --beige: #efd3ad;
  --beige-light: #f8efe4;
  --cream: #fbf7f1;

  --section: #ffffff;

  --border: #e5d3bf;

  --text: #263943;
  --muted: #697680;

  --shadow:
    0 20px 48px
    rgba(49, 70, 80, 0.11);
}


/* =========================
   ALAP
========================= */

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;

  min-width: 320px;

  background:
    radial-gradient(
      circle at top left,
      rgba(211, 168, 79, 0.17),
      transparent 34%
    ),
    radial-gradient(
      circle at 90% 15%,
      rgba(66, 90, 101, 0.09),
      transparent 28%
    ),
    linear-gradient(
      180deg,
      #ffffff 0%,
      #f8f2eb 46%,
      #f2e6d8 100%
    );

  color: var(--text);

  font-family:
    Arial,
    Helvetica,
    sans-serif;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;

  max-width: 100%;
}


/* =========================
   FEJLÉC
========================= */

.site-header {
  position: relative;
  z-index: 100;

  width: 100%;

  background:
    rgba(255, 255, 255, 0.96);

  border-bottom:
    1px solid
    rgba(211, 168, 79, 0.24);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 30px;

  width:
    min(
      1500px,
      calc(100% - 64px)
    );

  margin: 0 auto;

  padding: 16px 0;
}


/* =========================
   LOGÓ
========================= */

.logo {
  display: flex;
  align-items: center;

  gap: 15px;
}

.logo-icon {
  display: grid;
  place-items: center;

  width: 62px;
  height: 62px;

  flex-shrink: 0;

  overflow: hidden;

  border-radius: 15px;

  background: #ffffff;

  box-shadow:
    0 10px 28px
    rgba(49, 70, 80, 0.11);
}

.logo-image {
  width: 100%;
  height: 100%;

  object-fit: contain;

  padding: 3px;
}

.logo-text {
  display: flex;
  flex-direction: column;
}

.logo-text strong {
  color: var(--blue-dark);

  font-size: 23px;
  line-height: 1.1;
}

.logo-text span {
  margin-top: 5px;

  color: #7c6d60;

  font-size: 12px;
}


/* =========================
   FEJLÉC TELEFON
========================= */

.header-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 46px;

  padding: 0 20px;

  border:
    1px solid
    rgba(211, 168, 79, 0.48);

  border-radius: 14px;

  background: #fffaf0;

  color: var(--brown-dark);

  font-size: 15px;
  font-weight: 800;

  white-space: nowrap;

  box-shadow:
    0 7px 20px
    rgba(49, 70, 80, 0.06);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    box-shadow 0.2s ease,
    color 0.2s ease;
}

.header-phone:hover {
  transform: translateY(-2px);

  background: #ffffff;

  color: var(--brown-dark);

  border-color: var(--brown);

  box-shadow:
    0 12px 28px
    rgba(49, 70, 80, 0.11);
}


/* =========================
   HERO
========================= */

.hero {
  position: relative;

  overflow: hidden;

  padding:
    clamp(65px, 7vw, 110px)
    0
    clamp(70px, 8vw, 115px);
}

.hero::before {
  content: "";

  position: absolute;

  top: 0;
  right: 0;

  width: 46%;
  height: 100%;

  background:
    linear-gradient(
      145deg,
      rgba(66, 90, 101, 0.07),
      rgba(211, 168, 79, 0.15)
    );

  clip-path:
    polygon(
      30% 0,
      100% 0,
      100% 100%,
      0 100%
    );

  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 2;

  display: grid;

  grid-template-columns:
    minmax(0, 1.35fr)
    minmax(320px, 0.65fr);

  align-items: center;

  gap:
    clamp(45px, 6vw, 90px);

  width:
    min(
      1500px,
      calc(100% - 64px)
    );

  margin: 0 auto;
}

.hero-content {
  max-width: 850px;
}


/* =========================
   KIS CÍMEK
========================= */

.eyebrow {
  margin:
    0
    0
    14px;

  color: var(--brown-dark);

  font-size: 12px;
  font-weight: 800;

  letter-spacing: 0.16em;

  text-transform: uppercase;
}


/* =========================
   FŐCÍM
========================= */

.hero h1 {
  max-width: 850px;

  margin: 0;

  color: var(--blue-dark);

  font-size:
    clamp(
      44px,
      5.2vw,
      78px
    );

  line-height: 1.02;

  letter-spacing: -0.045em;
}

.hero h1 span {
  display: block;

  color: var(--brown);
}

.hero-description {
  max-width: 760px;

  margin:
    28px
    0
    0;

  color: var(--muted);

  font-size:
    clamp(
      17px,
      1.5vw,
      20px
    );

  line-height: 1.75;
}


/* =========================
   FŐ GOMBOK
========================= */

.hero-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;

  gap: 14px;

  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  gap: 10px;

  min-height: 52px;

  padding: 0 22px;

  border-radius: 14px;

  font-size: 15px;
  font-weight: 800;

  white-space: nowrap;

  transition:
    transform 0.2s ease,
    box-shadow 0.2s ease,
    background 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease;
}

.button:hover {
  transform: translateY(-2px);
}


/* =========================
   TELEFON GOMB
========================= */

.button-primary {
  min-width: 225px;

  background: #d3a84f;

  color: #ffffff;

  border:
    1px solid
    #c39439;

  box-shadow:
    0 12px 26px
    rgba(169, 119, 34, 0.20);
}

.button-primary:hover {
  background: #c89a42;

  color: #ffffff;

  border-color: #b98931;

  box-shadow:
    0 15px 30px
    rgba(169, 119, 34, 0.25);
}


/* =========================
   E-MAIL GOMB
========================= */

.button-secondary {
  background: #ffffff;

  color: var(--blue-dark);

  border:
    1px solid
    rgba(66, 90, 101, 0.30);

  box-shadow:
    0 8px 20px
    rgba(49, 70, 80, 0.06);
}

.button-secondary:hover {
  background: #f9faf9;

  color: var(--blue-dark);

  border-color: var(--blue);

  box-shadow:
    0 12px 26px
    rgba(49, 70, 80, 0.10);
}


/* =========================
   TELEFON IKON
========================= */

.phone-handset-icon {
  display: block;

  width: 18px !important;
  height: 18px !important;

  min-width: 18px;
  max-width: 18px;

  flex: 0 0 18px;

  overflow: visible;
}

.phone-handset-icon path {
  fill: currentColor;
  stroke: none;
}

.button-primary .phone-handset-icon {
  color: #ffffff;
}


/* =========================
   E-MAIL IKON
========================= */

.email-icon {
  display: block;

  width: 18px;
  height: 18px;

  min-width: 18px;
  max-width: 18px;

  flex: 0 0 18px;

  overflow: visible;
}

.email-icon path {
  fill: none;

  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button-secondary .email-icon {
  color: var(--blue-dark);
}

.contact-icon .email-icon,
.info-icon .email-icon {
  width: 17px;
  height: 17px;

  min-width: 17px;
  max-width: 17px;

  flex: 0 0 17px;

  color: var(--blue-dark);
}


/* =========================
   HERO MEGJEGYZÉS
========================= */

.hero-note {
  max-width: 620px;

  margin-top: 26px;
}

.hero-note p {
  margin: 0;

  color: #776d66;

  font-size: 13px;
  line-height: 1.65;
}


/* =========================
   OLDALSÓ ÜZLET KÁRTYA
========================= */

.hero-side-card {
  position: relative;

  padding:
    clamp(26px, 3vw, 36px);

  border:
    1px solid
    rgba(211, 168, 79, 0.30);

  border-radius: 25px;

  background: #fffdf9;

  box-shadow: var(--shadow);

  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}

.side-card-label {
  display: inline-block;

  margin-bottom: 10px;

  color: var(--brown-dark);

  font-size: 11px;
  font-weight: 800;

  letter-spacing: 0.15em;

  text-transform: uppercase;
}

.side-card-top h2 {
  margin: 0;

  color: var(--blue-dark);

  font-size:
    clamp(
      25px,
      2.3vw,
      31px
    );

  line-height: 1.15;
}

.side-card-top p {
  margin:
    14px
    0
    0;

  color: var(--muted);

  font-size: 15px;
  line-height: 1.6;
}

.side-card-divider {
  width: 100%;
  height: 1px;

  margin: 24px 0 14px;

  background:
    rgba(211, 168, 79, 0.35);
}


/* =========================
   KAPCSOLATI SOROK
========================= */

.contact-row {
  display: flex;
  align-items: center;

  gap: 13px;

  padding: 9px 0;
}

.contact-icon {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  border:
    1px solid
    rgba(66, 90, 101, 0.09);

  border-radius: 11px;

  background:
    rgba(211, 168, 79, 0.11);

  color: var(--blue-dark);
}

.contact-icon .phone-handset-icon {
  width: 17px !important;
  height: 17px !important;

  min-width: 17px;
  max-width: 17px;

  flex: 0 0 17px;
}

.contact-row div:last-child {
  min-width: 0;
}

.contact-row span {
  display: block;

  margin-bottom: 3px;

  color: var(--muted);

  font-size: 10px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.08em;
}

.contact-row a,
.contact-row p {
  margin: 0;

  color: var(--blue-dark);

  font-size: 14px;
  font-weight: 700;

  line-height: 1.45;

  overflow-wrap: anywhere;
}

.contact-row a[href^="tel:"] {
  color: var(--brown-dark);
}

.contact-row a[href^="tel:"]:hover {
  color: #8f671b;
}

.contact-row a:not([href^="tel:"]) {
  transition:
    color 0.2s ease;
}

.contact-row a:not([href^="tel:"]):hover {
  color: var(--brown-dark);
}


/* =========================
   HELYSZÍN IKON
========================= */

.location-pin-icon {
  display: block;

  width: 19px;
  height: 19px;

  overflow: visible;
}

.location-pin-icon path {
  fill: var(--blue-dark);

  stroke: var(--blue-dark);
  stroke-width: 0.7;
}

.location-pin-icon circle {
  fill: var(--beige-light);

  stroke: none;
}


/* =========================
   HATSZÖGES HÁTTÉR
========================= */

.hero-decoration {
  position: absolute;

  clip-path:
    polygon(
      25% 6.7%,
      75% 6.7%,
      100% 50%,
      75% 93.3%,
      25% 93.3%,
      0 50%
    );

  pointer-events: none;
}

.hero-decoration-one {
  top: 70px;
  right: 3%;

  width: 180px;
  height: 180px;

  background:
    rgba(211, 168, 79, 0.11);
}

.hero-decoration-two {
  bottom: 4%;
  left: -70px;

  width: 200px;
  height: 200px;

  background:
    rgba(66, 90, 101, 0.065);
}

.hero-decoration-three {
  top: 12%;
  left: 48%;

  width: 70px;
  height: 70px;

  background:
    rgba(216, 181, 103, 0.10);
}


/* =========================
   ÜZLET SZEKCIÓ
========================= */

.location-section {
  padding:
    clamp(65px, 7vw, 100px)
    0;

  border-top:
    1px solid
    rgba(211, 168, 79, 0.24);

  background:
    rgba(248, 239, 228, 0.72);
}

.section-inner {
  width:
    min(
      1500px,
      calc(100% - 64px)
    );

  margin: 0 auto;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;

  gap: 50px;

  margin-bottom: 38px;
}

.section-heading h2 {
  margin: 0;

  color: var(--blue-dark);

  font-size:
    clamp(
      34px,
      4vw,
      52px
    );

  letter-spacing: -0.035em;
}

.section-description {
  max-width: 520px;

  margin: 0;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.75;
}


/* =========================
   TÉRKÉP
========================= */

.location-grid {
  display: grid;
  grid-template-columns: 1fr;
}


/* =========================
   TÉRKÉP KÁRTYA
========================= */

.map-card {
  min-height: 500px;

  overflow: hidden;

  border:
    1px solid
    rgba(211, 168, 79, 0.34);

  border-radius: 24px;

  background: #ffffff;

  box-shadow:
    0 16px 38px
    rgba(49, 70, 80, 0.10);
}

.map-card iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 500px;

  border: 0;

  filter:
    saturate(0.83)
    contrast(0.98);
}


/* =========================
   ELÉRHETŐSÉGEK KÁRTYA
========================= */

.location-card {
  display: flex;
  flex-direction: column;

  padding:
    clamp(26px, 3vw, 36px);

  border:
    1px solid
    rgba(211, 168, 79, 0.30);

  border-radius: 24px;

  background: #fffdf9;

  box-shadow:
    0 16px 38px
    rgba(49, 70, 80, 0.08);
}

.location-card h3 {
  margin:
    0
    0
    20px;

  color: var(--blue-dark);

  font-size: 28px;
}


/* =========================
   ELÉRHETŐSÉGI LISTA
========================= */

.info-list {
  display: flex;
  flex-direction: column;

  gap: 5px;
}

.info-item {
  display: flex;
  align-items: center;

  gap: 13px;

  padding: 10px 8px;

  border-radius: 14px;

  transition:
    background 0.2s ease,
    transform 0.2s ease;
}

a.info-item:hover {
  transform: translateX(3px);

  background:
    rgba(255, 255, 255, 0.75);
}

.info-icon {
  display: grid;
  place-items: center;

  width: 38px;
  height: 38px;

  flex: 0 0 38px;

  border:
    1px solid
    rgba(66, 90, 101, 0.08);

  border-radius: 11px;

  background:
    rgba(211, 168, 79, 0.11);

  color: var(--blue-dark);

  box-shadow:
    0 5px 12px
    rgba(49, 70, 80, 0.04);
}

.info-icon .phone-handset-icon {
  width: 17px !important;
  height: 17px !important;

  min-width: 17px;
  max-width: 17px;

  flex: 0 0 17px;
}

.info-item span {
  display: block;

  margin-bottom: 3px;

  color: var(--muted);

  font-size: 10px;
  font-weight: 700;

  letter-spacing: 0.07em;

  text-transform: uppercase;
}

.info-item strong {
  display: block;

  color: var(--blue-dark);

  font-size: 14px;

  line-height: 1.4;

  overflow-wrap: anywhere;
}

.info-item[href^="tel:"] strong {
  color: var(--brown-dark);
}

.info-item[href^="tel:"]:hover strong {
  color: #8f671b;
}


/* =========================
   ÚTVONALTERVEZÉS
========================= */

.map-button {
  display: flex;
  align-items: center;
  justify-content: space-between;

  gap: 20px;

  margin-top: 16px;

  padding:
    16px
    4px
    0;

  border-top:
    1px solid
    rgba(211, 168, 79, 0.40);

  color: var(--brown-dark);

  font-size: 13px;
  font-weight: 800;

  transition:
    color 0.2s ease;
}

.map-button:hover {
  color: var(--blue);
}

.map-button span {
  color: var(--blue);

  font-size: 20px;

  transition:
    transform 0.2s ease;
}

.map-button:hover span {
  transform: translateX(4px);
}


/* =========================
   ADATVÉDELMI TÉRKÉPBETÖLTÉS
========================= */

.map-consent-card {
  display: grid;
  place-items: center;

  padding: 34px;
}

.map-consent-content {
  width:
    min(
      100%,
      540px
    );

  text-align: center;
}

.map-consent-icon {
  display: grid;
  place-items: center;

  width: 54px;
  height: 54px;

  margin:
    0
    auto
    18px;

  border:
    1px solid
    rgba(211, 168, 79, 0.28);

  border-radius: 16px;

  background:
    rgba(211, 168, 79, 0.10);
}

.map-consent-icon .location-pin-icon {
  width: 22px;
  height: 22px;
}

.map-consent-content .eyebrow {
  margin-bottom: 10px;
}

.map-consent-content h3 {
  margin: 0;

  color: var(--blue-dark);

  font-size:
    clamp(
      27px,
      3vw,
      36px
    );

  letter-spacing: -0.025em;
}

.map-consent-text {
  max-width: 500px;

  margin:
    18px
    auto
    0;

  color: var(--muted);

  font-size: 14px;

  line-height: 1.75;
}

.map-load-button,
.map-unload-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;

  min-height: 48px;

  margin-top: 24px;

  padding: 0 22px;

  border:
    1px solid
    #c39439;

  border-radius: 13px;

  background: var(--brown);

  color: #ffffff;

  font: inherit;

  font-size: 14px;
  font-weight: 800;

  cursor: pointer;

  box-shadow:
    0 10px 24px
    rgba(169, 119, 34, 0.18);

  transition:
    transform 0.2s ease,
    background 0.2s ease,
    box-shadow 0.2s ease;
}

.map-load-button:hover,
.map-unload-button:hover {
  transform: translateY(-2px);

  background: #c89a42;

  box-shadow:
    0 14px 28px
    rgba(169, 119, 34, 0.24);
}

.map-load-button:focus-visible,
.map-unload-button:focus-visible,
.map-privacy-link:focus-visible,
.legal-back-link:focus-visible {
  outline:
    3px solid
    rgba(211, 168, 79, 0.36);

  outline-offset: 3px;
}

.map-privacy-link {
  display: block;

  width: fit-content;

  margin:
    14px
    auto
    0;

  color: var(--blue-soft);

  font-size: 12px;
  font-weight: 700;

  text-decoration: underline;

  text-decoration-color:
    rgba(66, 90, 101, 0.28);

  text-underline-offset: 3px;
}

.map-live-wrapper {
  position: relative;

  width: 100%;
  height: 100%;

  min-height: 500px;
}

.map-live-wrapper iframe {
  display: block;

  width: 100%;
  height: 100%;

  min-height: 500px;

  border: 0;

  filter:
    saturate(0.83)
    contrast(0.98);
}

.map-unload-button {
  position: absolute;

  right: 16px;
  bottom: 16px;

  z-index: 2;

  min-height: 42px;

  margin: 0;

  padding: 0 16px;

  border-color:
    rgba(255, 255, 255, 0.35);

  background:
    rgba(49, 70, 80, 0.92);

  box-shadow:
    0 8px 20px
    rgba(49, 70, 80, 0.18);

  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.map-unload-button:hover {
  background:
    rgba(49, 70, 80, 1);
}


/* =========================
   FOOTER
========================= */

.site-footer {
  position: relative;

  background: #314650;

  color:
    rgba(255, 255, 255, 0.72);

  border-top:
    4px solid
    var(--brown);
}

.footer-inner {
  display: grid;

  grid-template-columns:
    minmax(180px, 1fr)
    auto
    minmax(180px, 1fr);

  align-items: center;

  column-gap: 48px;
  row-gap: 24px;

  width:
    min(
      1500px,
      calc(100% - 64px)
    );

  margin: 0 auto;

  padding:
    30px
    0
    20px;
}


/* =========================
   FOOTER CÉGADAT
========================= */

.footer-company {
  grid-column: 1;
  grid-row: 1;

  display: flex;
  flex-direction: column;

  gap: 5px;

  justify-self: start;
}

.footer-company strong {
  color: #ffffff;

  font-size: 18px;
  font-weight: 800;

  line-height: 1.2;
}

.footer-company span {
  color:
    rgba(255, 255, 255, 0.58);

  font-size: 11px;

  letter-spacing: 0.01em;
}


/* =========================
   FOOTER JOGI LINKEK
========================= */

.footer-legal-links {
  grid-column: 2;
  grid-row: 1;

  display: flex;
  align-items: center;
  justify-content: center;

  justify-self: center;

  white-space: nowrap;
}

.footer-legal-links a {
  position: relative;

  padding: 8px 15px;

  color:
    rgba(255, 255, 255, 0.72);

  font-size: 12px;
  font-weight: 600;

  line-height: 1;

  transition:
    color 0.2s ease;
}

.footer-legal-links a:hover {
  color: var(--gold-light);
}

.footer-legal-links a + a::before {
  content: "";

  position: absolute;

  left: 0;
  top: 50%;

  width: 3px;
  height: 3px;

  border-radius: 50%;

  background:
    rgba(255, 255, 255, 0.30);

  transform:
    translate(
      -1.5px,
      -50%
    );
}

.footer-legal-links a:focus-visible {
  outline:
    2px solid
    var(--gold-light);

  outline-offset: 4px;

  border-radius: 5px;
}


/* =========================
   FOOTER STÁTUSZ
========================= */

.footer-status {
  grid-column: 3;
  grid-row: 1;

  justify-self: end;

  margin: 0;

  color: var(--gold-light);

  font-size: 12px;
  font-weight: 600;

  white-space: nowrap;
}


/* =========================
   FOOTER COPYRIGHT
========================= */

.footer-inner > p:nth-child(2) {
  grid-column: 1 / -1;
  grid-row: 2;

  width: 100%;

  margin: 0;

  padding-top: 18px;

  border-top:
    1px solid
    rgba(255, 255, 255, 0.10);

  color:
    rgba(255, 255, 255, 0.46);

  font-size: 10px;

  letter-spacing: 0.02em;

  text-align: center;
}


/* =========================
   JOGI OLDALAK
========================= */

.legal-main {
  min-height: 70vh;
}

.legal-section {
  padding:
    clamp(55px, 7vw, 95px)
    0
    clamp(70px, 8vw, 110px);
}

.legal-inner {
  width:
    min(
      980px,
      calc(100% - 64px)
    );

  margin: 0 auto;
}

.legal-back-link {
  display: inline-flex;
  align-items: center;

  gap: 8px;

  margin-bottom: 24px;

  color: var(--brown-dark);

  font-size: 13px;
  font-weight: 800;
}

.legal-card {
  padding:
    clamp(
      28px,
      5vw,
      54px
    );

  border:
    1px solid
    rgba(211, 168, 79, 0.28);

  border-radius: 26px;

  background:
    rgba(255, 253, 249, 0.96);

  box-shadow: var(--shadow);
}

.legal-card > .eyebrow {
  margin-bottom: 12px;
}

.legal-card h1 {
  margin: 0;

  color: var(--blue-dark);

  font-size:
    clamp(
      36px,
      5vw,
      56px
    );

  line-height: 1.05;

  letter-spacing: -0.04em;
}

.legal-updated {
  margin:
    16px
    0
    0;

  color: var(--muted);

  font-size: 12px;
}

.legal-intro {
  margin:
    30px
    0
    0;

  color: var(--muted);

  font-size: 16px;

  line-height: 1.8;
}

.legal-block {
  margin-top: 30px;

  padding-top: 30px;

  border-top:
    1px solid
    rgba(211, 168, 79, 0.26);
}

.legal-block h2 {
  margin:
    0
    0
    16px;

  color: var(--blue-dark);

  font-size:
    clamp(
      22px,
      3vw,
      29px
    );

  line-height: 1.2;
}

.legal-block h3 {
  margin:
    24px
    0
    10px;

  color: var(--blue-dark);

  font-size: 18px;
}

.legal-block p,
.legal-block li {
  color: var(--muted);

  font-size: 14px;

  line-height: 1.8;
}

.legal-block p {
  margin:
    0
    0
    12px;
}

.legal-block ul {
  margin:
    10px
    0
    0;

  padding-left: 22px;
}

.legal-data-grid {
  display: grid;

  grid-template-columns:
    minmax(150px, 0.35fr)
    minmax(0, 1fr);

  gap:
    12px
    24px;
}

.legal-data-grid dt {
  color: var(--muted);

  font-size: 12px;
  font-weight: 700;

  text-transform: uppercase;

  letter-spacing: 0.06em;
}

.legal-data-grid dd {
  margin: 0;

  color: var(--blue-dark);

  font-size: 14px;
  font-weight: 700;

  line-height: 1.6;

  overflow-wrap: anywhere;
}

.legal-note {
  padding: 16px 18px;

  border:
    1px solid
    rgba(211, 168, 79, 0.24);

  border-radius: 14px;

  background:
    rgba(211, 168, 79, 0.07);
}

.legal-table-wrap {
  overflow-x: auto;

  margin-top: 16px;
}

.legal-table {
  width: 100%;

  min-width: 680px;

  border-collapse: collapse;
}

.legal-table th,
.legal-table td {
  padding:
    13px
    14px;

  border-bottom:
    1px solid
    rgba(66, 90, 101, 0.12);

  text-align: left;
  vertical-align: top;

  font-size: 13px;

  line-height: 1.6;
}

.legal-table th {
  color: var(--blue-dark);

  background:
    rgba(66, 90, 101, 0.05);

  font-weight: 800;
}

.legal-table td {
  color: var(--muted);
}

.legal-card a:not(.legal-back-link) {
  color: var(--brown-dark);

  text-decoration: underline;

  text-decoration-color:
    rgba(211, 168, 79, 0.36);

  text-underline-offset: 3px;
}


/* =========================
   TABLET
========================= */

@media (max-width: 1050px) {

  .hero-inner {
    grid-template-columns: 1fr;

    gap: 45px;
  }

  .hero-content {
    max-width: 900px;
  }

  .hero-side-card {
    width:
      min(
        100%,
        620px
      );

    max-width: 620px;

    justify-self: start;
  }

  .location-grid {
    grid-template-columns: 1fr;
  }

  .location-card {
    width:
      min(
        100%,
        620px
      );

    min-height: auto;
  }

  .section-heading {
    align-items: start;
    flex-direction: column;

    gap: 18px;
  }


  /* FOOTER TABLET */

  .footer-inner {
    grid-template-columns:
      1fr
      auto;

    column-gap: 30px;
    row-gap: 20px;
  }

  .footer-company {
    grid-column: 1;
    grid-row: 1;
  }

  .footer-status {
    grid-column: 2;
    grid-row: 1;

    justify-self: end;
  }

  .footer-legal-links {
    grid-column: 1 / -1;
    grid-row: 2;

    justify-self: start;
  }

  .footer-inner > p:nth-child(2) {
    grid-column: 1 / -1;
    grid-row: 3;

    text-align: center;
  }
}


/* =========================
   MOBIL
========================= */

@media (max-width: 700px) {

  .header-inner,
  .hero-inner,
  .section-inner,
  .footer-inner {
    width:
      calc(100% - 32px);
  }

  .header-inner {
    padding: 14px 0;
  }

  .logo-icon {
    width: 52px;
    height: 52px;

    border-radius: 12px;
  }

  .logo-text strong {
    font-size: 18px;
  }

  .logo-text span {
    font-size: 10px;
  }

  .header-phone {
    display: none;
  }


  /* HERO */

  .hero {
    padding:
      55px
      0
      65px;
  }

  .hero::before {
    width: 75%;

    opacity: 0.7;
  }

  .hero h1 {
    font-size:
      clamp(
        41px,
        12vw,
        58px
      );
  }

  .hero-description {
    font-size: 16px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;

    max-width: 360px;
  }

  .button {
    width: 100%;

    min-height: 52px;
  }

  .button-primary {
    min-width: 0;
  }

  .hero-note {
    margin-top: 24px;
  }

  .hero-side-card {
    width: 100%;
    max-width: 100%;

    padding: 25px 21px;

    border-radius: 21px;
  }


  /* ÜZLET */

  .location-section {
    padding:
      60px
      0;
  }

  .location-grid {
    gap: 20px;
  }

  .map-card,
  .map-card iframe {
    min-height: 390px;
  }

  .map-card,
  .location-card {
    border-radius: 21px;
  }

  .location-card {
    width: 100%;

    min-height: auto;

    padding: 25px 20px;
  }


  /* ADATVÉDELMI TÉRKÉP */

  .map-consent-card {
    padding: 26px 20px;
  }

  .map-live-wrapper,
  .map-live-wrapper iframe {
    min-height: 390px;
  }

  .map-unload-button {
    right: 12px;
    bottom: 12px;
  }


  /* FOOTER */

  .footer-inner {
    display: flex;
    flex-direction: column;
    align-items: flex-start;

    gap: 20px;

    padding:
      28px
      0
      20px;
  }

  .footer-company {
    order: 1;

    width: 100%;
  }

  .footer-status {
    order: 2;

    white-space: normal;
  }

  .footer-legal-links {
    order: 3;

    display: flex;
    flex-wrap: wrap;
    justify-content: flex-start;

    gap:
      10px
      18px;

    white-space: normal;
  }

  .footer-legal-links a {
    padding: 0;

    font-size: 12px;
  }

  .footer-legal-links a + a::before {
    display: none;
  }

  .footer-inner > p:nth-child(2) {
    order: 4;

    width: 100%;

    margin-top: 2px;

    padding-top: 18px;

    text-align: left;
  }


  /* JOGI OLDALAK */

  .legal-inner {
    width:
      calc(100% - 32px);
  }

  .legal-card {
    padding:
      28px
      21px;

    border-radius: 21px;
  }

  .legal-data-grid {
    grid-template-columns: 1fr;

    gap: 5px;
  }

  .legal-data-grid dd {
    margin-bottom: 12px;
  }
}


/* =========================
   EXTRA KIS KIJELZŐ
========================= */

@media (max-width: 420px) {

  .hero h1 {
    font-size: 39px;
  }

  .hero-description {
    line-height: 1.65;
  }

  .contact-row {
    align-items: center;
  }

  .info-item {
    align-items: center;

    padding:
      10px
      4px;
  }

  .location-pin-icon {
    width: 18px;
    height: 18px;
  }

  .phone-handset-icon,
  .button-primary .phone-handset-icon {
    width: 17px !important;
    height: 17px !important;

    min-width: 17px;
    max-width: 17px;

    flex:
      0 0 17px;
  }

  .email-icon {
    width: 17px;
    height: 17px;

    min-width: 17px;
    max-width: 17px;

    flex:
      0 0 17px;
  }
}