/* ============================================================
   Gilice Panzió & Étterem — design rendszer
   ============================================================ */
:root {
  --cream: #faf5ea;
  --cream-2: #f2ead8;
  --ink: #21311f;
  --forest: #2f4a32;
  --forest-deep: #1d3023;
  --sage: #86a378;
  --copper: #c0653f;
  --copper-soft: #d8855f;
  --line: rgba(33, 49, 31, .14);

  --font-display: "Fraunces", Georgia, serif;
  --font-body: "Manrope", system-ui, sans-serif;

  --radius: 22px;
  --container: 1180px;
  --ease-out: cubic-bezier(.22, 1, .36, 1);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
html:focus-within { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  background: var(--cream);
  color: var(--ink);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

::selection { background: var(--copper); color: var(--cream); }

img, svg { display: block; max-width: 100%; }
a { color: inherit; }

.container { max-width: var(--container); margin: 0 auto; padding: 0 clamp(20px, 4vw, 48px); }

/* ============ Betöltő ============ */
.loader {
  position: fixed; inset: 0; z-index: 100;
  background: var(--forest-deep); color: var(--cream);
  display: grid; place-items: center;
  transition: opacity .7s var(--ease-out), visibility .7s;
}
.loader.is-done { opacity: 0; visibility: hidden; }
.loader__mark { display: grid; place-items: center; animation: loaderPulse 1.6s ease-in-out infinite; }
.loader__mark img { width: min(190px, 48vw); height: auto; }
@keyframes loaderPulse { 50% { opacity: .55; transform: scale(.97); } }

/* ============ Navigáció ============ */
.nav {
  position: fixed; top: 14px; left: 50%; translate: -50% 0; z-index: 50;
  width: min(calc(100% - 28px), 1080px);
  display: flex; align-items: center; justify-content: space-between;
  padding: 10px 12px 10px 20px;
  border-radius: 999px;
  background: rgba(250, 245, 234, .72);
  backdrop-filter: blur(14px) saturate(1.4);
  -webkit-backdrop-filter: blur(14px) saturate(1.4);
  border: 1px solid rgba(33, 49, 31, .08);
  box-shadow: 0 8px 30px rgba(29, 48, 35, .08);
  transition: transform .45s var(--ease-out), box-shadow .3s;
}
.nav.is-hidden { transform: translateY(-130%); }

.nav__logo {
  display: flex; align-items: center; gap: 12px;
  text-decoration: none; color: var(--forest);
}
.nav__logo img { height: 40px; width: auto; }
.nav__logo em { font-style: normal; font-family: var(--font-body); font-size: .68rem; font-weight: 600; letter-spacing: .14em; text-transform: uppercase; opacity: .65; display: block; line-height: 1.1; }

.nav__links { display: flex; align-items: center; gap: clamp(8px, 1.6vw, 22px); }
.nav__links a {
  text-decoration: none; font-size: .92rem; font-weight: 600; color: var(--ink);
  position: relative; padding: 6px 2px;
}
.nav__links a:not(.nav__cta)::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--copper); border-radius: 2px;
  transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.nav__links a:not(.nav__cta):hover::after,
.nav__links a.is-active::after { transform: scaleX(1); transform-origin: left; }

.nav__cta {
  background: var(--forest); color: var(--cream) !important;
  padding: 10px 20px !important; border-radius: 999px;
  transition: background .3s, transform .3s var(--ease-out);
}
.nav__cta:hover { background: var(--copper); transform: translateY(-1px); }

.nav__burger { display: none; }

/* ============ Gombok ============ */
.btn {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--font-body); font-weight: 700; font-size: .98rem;
  padding: 16px 30px; border-radius: 999px; text-decoration: none;
  border: none; cursor: pointer;
  transition: transform .35s var(--ease-out), box-shadow .35s, background .3s, color .3s;
}
.btn:active { transform: scale(.97); }
.btn--primary { background: var(--copper); color: #fff; box-shadow: 0 10px 24px rgba(192, 101, 63, .35); }
.btn--primary:hover { background: var(--forest); transform: translateY(-3px); box-shadow: 0 16px 32px rgba(29, 48, 35, .3); }
.btn--ghost { background: transparent; color: var(--forest-deep); border: 2px solid var(--forest-deep); }
.btn--ghost:hover { background: var(--forest-deep); color: var(--cream); transform: translateY(-3px); }
.btn--light { background: var(--cream); color: var(--forest-deep); }
.btn--light:hover { background: var(--copper); color: #fff; transform: translateY(-3px); }
.btn--small { padding: 12px 20px; font-size: .88rem; }

/* ============ HERO ============ */
.hero {
  position: relative; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  overflow: hidden; padding: 120px 20px 140px;
}
.hero__scene { position: absolute; inset: 0; z-index: -1; }
.hero__sky, .hero__layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.hero__layer { will-change: transform; }

.hero__bird {
  position: absolute; width: 46px; height: 23px;
  top: 22%; left: -8%;
  animation: fly 26s linear infinite;
  opacity: .8;
}
.hero__bird--2 { top: 16%; width: 30px; height: 15px; animation-duration: 34s; animation-delay: 7s; }
@keyframes fly {
  0%   { transform: translateX(0) translateY(0); }
  50%  { transform: translateX(60vw) translateY(-30px); }
  100% { transform: translateX(120vw) translateY(10px); }
}

.hero__content { max-width: 820px; }
.hero__eyebrow {
  font-size: .82rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--forest); margin-bottom: 18px;
}
.hero__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(3.4rem, 11vw, 8.2rem);
  line-height: .98; letter-spacing: -.02em; color: var(--forest-deep);
}
.hero__title .line { display: block; overflow: hidden; }
.hero__title .line span { display: inline-block; transform: translateY(110%); animation: riseUp 1s var(--ease-out) forwards; }
.hero__title .line:nth-child(2) span { animation-delay: .12s; }
.hero__title .line:nth-child(3) span { animation-delay: .24s; }
.hero__title .accent { color: var(--copper); font-style: italic; }
@keyframes riseUp { to { transform: translateY(0); } }

.hero__lead {
  font-size: clamp(1.05rem, 2vw, 1.3rem); max-width: 560px;
  margin: 26px auto 0; color: var(--forest-deep); font-weight: 600;
}
.hero__slogan { display: block; font-family: var(--font-display); font-style: italic; font-weight: 500; font-size: 1.15em; color: var(--forest-deep); margin-bottom: 6px; }
.hero__actions { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 36px; }

.hero__scrolldown {
  position: absolute; bottom: 28px; left: 50%; translate: -50% 0;
  display: grid; justify-items: center; gap: 8px;
  font-size: .7rem; letter-spacing: .3em; text-transform: uppercase;
  color: var(--cream); text-decoration: none; opacity: .85;
}
.hero__mouse {
  width: 24px; height: 38px; border: 2px solid var(--cream); border-radius: 14px; position: relative;
}
.hero__mouse::after {
  content: ""; position: absolute; top: 7px; left: 50%; translate: -50% 0;
  width: 4px; height: 8px; border-radius: 4px; background: var(--cream);
  animation: wheel 1.8s ease-in-out infinite;
}
@keyframes wheel { 50% { transform: translateY(9px); opacity: .3; } }

/* ============ Futószöveg ============ */
.marquee {
  background: var(--forest-deep); color: var(--cream);
  overflow: hidden; padding: 18px 0; white-space: nowrap;
}
.marquee__track { display: inline-flex; align-items: center; gap: 38px; animation: marquee 28s linear infinite; }
.marquee__track span {
  font-family: var(--font-display); font-size: 1.25rem; font-weight: 400; letter-spacing: .06em;
}
.marquee__track i { font-style: normal; color: var(--copper-soft); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============ Szekciók ============ */
.section { padding: clamp(86px, 12vw, 150px) 0; }
.section--alt { background: var(--cream-2); }
.section--dark { background: var(--forest-deep); color: var(--cream); }

.section__eyebrow {
  font-size: .8rem; font-weight: 700; letter-spacing: .3em; text-transform: uppercase;
  color: var(--copper); margin-bottom: 16px;
}
.section__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(2rem, 4.6vw, 3.4rem); line-height: 1.12; letter-spacing: -.015em;
  max-width: 760px; margin-bottom: 22px;
}
.section__title em { font-style: italic; color: var(--copper); }
.section--dark .section__title em { color: var(--copper-soft); }
.section__lead { font-size: 1.12rem; max-width: 620px; opacity: .85; margin-bottom: 16px; }

/* ============ Rólunk ============ */
.about__grid {
  display: grid; grid-template-columns: 1.2fr .8fr; gap: clamp(36px, 6vw, 80px);
  margin-top: 34px; align-items: start;
}
.about__text p { font-size: 1.1rem; margin-bottom: 18px; opacity: .88; }

.stats { list-style: none; display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.stats li {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 26px 22px; display: grid; gap: 2px;
  transition: transform .4s var(--ease-out), box-shadow .4s;
}
.stats li:hover { transform: translateY(-5px); box-shadow: 0 18px 36px rgba(29, 48, 35, .1); }
.stats strong {
  font-family: var(--font-display); font-size: clamp(2rem, 3.4vw, 2.8rem);
  font-weight: 600; color: var(--forest); line-height: 1;
}
.stats span { font-size: .88rem; font-weight: 600; opacity: .65; }

/* ============ Fotók a Rólunk szekcióban ============ */
.about__media {
  display: grid; grid-template-columns: 1.25fr .75fr; gap: 20px;
  margin-top: clamp(40px, 6vw, 64px); align-items: stretch;
}
.about__stack { display: grid; gap: 20px; }
.about__media figure {
  border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 24px 48px rgba(29, 48, 35, .14);
}
.about__media img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.about__lead img { min-height: 100%; }
.about__stack img { aspect-ratio: 16 / 10; }
.about__media figure:hover img { transform: scale(1.045); }

/* ============ Szobák ============ */
.rooms__grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 20px; margin-top: 48px;
}
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 30px 26px; position: relative; overflow: hidden;
  transition: transform .45s var(--ease-out), box-shadow .45s;
}
.card::before {
  content: ""; position: absolute; inset: 0 0 auto 0; height: 4px;
  background: linear-gradient(90deg, var(--copper), var(--sage));
  transform: scaleX(0); transform-origin: left; transition: transform .5s var(--ease-out);
}
.card:hover { transform: translateY(-7px); box-shadow: 0 24px 44px rgba(29, 48, 35, .12); }
.card:hover::before { transform: scaleX(1); }
.card__photo {
  margin: -30px -26px 20px; overflow: hidden; aspect-ratio: 16 / 10;
}
.card__photo img {
  width: 100%; height: 100%; object-fit: cover;
  transition: transform .8s var(--ease-out);
}
.card:hover .card__photo img { transform: scale(1.05); }
.card__tag {
  position: absolute; top: 22px; right: 22px;
  font-size: .7rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase;
  background: var(--cream-2); color: var(--forest); padding: 5px 12px; border-radius: 999px;
}
.card h3 { font-family: var(--font-display); font-size: 1.35rem; font-weight: 600; margin-bottom: 10px; }
.card p { font-size: .95rem; opacity: .8; margin-bottom: 16px; }
.card__meta { font-size: .8rem; font-weight: 700; letter-spacing: .05em; color: var(--copper); }
.rooms__cta { margin-top: 44px; text-align: center; }

/* ============ Étterem ============ */
.restaurant__grid {
  display: grid; grid-template-columns: 1.25fr .75fr;
  gap: clamp(36px, 6vw, 80px); align-items: center;
}
.restaurant__text > p { font-size: 1.1rem; opacity: .88; margin-bottom: 22px; }

.ticklist { list-style: none; display: grid; gap: 12px; }
.ticklist li { padding-left: 34px; position: relative; font-weight: 600; font-size: 1rem; }
.ticklist li::before {
  content: "✓"; position: absolute; left: 0; top: 0;
  width: 24px; height: 24px; border-radius: 50%;
  background: var(--sage); color: #fff; font-size: .8rem;
  display: grid; place-items: center;
}

.hours {
  background: var(--forest); color: var(--cream);
  border-radius: var(--radius); padding: 36px 32px;
  box-shadow: 0 28px 56px rgba(29, 48, 35, .28);
  rotate: 1.5deg;
  transition: rotate .5s var(--ease-out);
}
.hours:hover { rotate: 0deg; }
.hours h3 { font-family: var(--font-display); font-size: 1.5rem; font-weight: 500; margin-bottom: 20px; }
.hours dl { display: grid; gap: 12px; margin-bottom: 26px; }
.hours dl div { display: flex; justify-content: space-between; gap: 12px; border-bottom: 1px dashed rgba(250, 245, 234, .25); padding-bottom: 10px; }
.hours dt { font-weight: 600; opacity: .85; }
.hours dd { font-weight: 800; }
.hours .closed { color: var(--copper-soft); }
.hours .btn { width: 100%; justify-content: center; border-color: var(--cream); color: var(--cream); }
.hours .btn:hover { background: var(--cream); color: var(--forest); }

/* ============ Ételsáv az étteremnél ============ */
.dishes {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: clamp(48px, 7vw, 80px);
}
.dish {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 18px 40px rgba(29, 48, 35, .12);
}
.dish img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3;
  transition: transform .8s var(--ease-out);
}
.dish:hover img { transform: scale(1.05); }
.dish figcaption {
  position: absolute; inset: auto 0 0 0; padding: 44px 20px 16px;
  background: linear-gradient(transparent, rgba(29, 48, 35, .82));
  color: var(--cream); font-weight: 700; font-size: .95rem;
}

/* ============ Esküvő ============ */
.wedding__grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: clamp(36px, 6vw, 80px); margin-top: 24px; align-items: start; }
.wedding__lead { font-size: 1.15rem; opacity: .88; }
.wedding__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.wcard {
  border: 1px solid rgba(250, 245, 234, .18); border-radius: var(--radius);
  padding: 26px 24px; display: grid; gap: 6px; background: rgba(250, 245, 234, .05);
  transition: background .35s, transform .4s var(--ease-out);
}
.wcard:hover { background: rgba(250, 245, 234, .12); transform: translateY(-4px); }
.wcard strong { font-family: var(--font-display); font-size: 1.25rem; font-weight: 500; }
.wcard span { font-size: .9rem; opacity: .72; }
.wedding__media {
  display: grid; grid-template-columns: .85fr 1.15fr; gap: 20px;
  margin-top: clamp(44px, 6vw, 64px);
}
.wedding__media figure {
  border-radius: var(--radius); overflow: hidden;
  border: 1px solid rgba(250, 245, 234, .15);
}
.wedding__media img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3;
  transition: transform .8s var(--ease-out);
}
.wedding__media figure:hover img { transform: scale(1.045); }
.wedding__cta { margin-top: 46px; }

/* ============ Környék ============ */
.nature__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); gap: 20px; margin-top: 48px; }
.ncard {
  border-top: 2px solid var(--line); padding-top: 24px;
  transition: border-color .4s, transform .4s var(--ease-out);
}
.ncard:hover { border-color: var(--copper); transform: translateY(-4px); }
.ncard__num { font-family: var(--font-display); font-style: italic; font-size: 1rem; color: var(--copper); }
.ncard h3 { font-family: var(--font-display); font-size: 1.3rem; font-weight: 600; margin: 10px 0; }
.ncard p { font-size: .95rem; opacity: .8; }

/* ============ Galéria ============ */
.moments__grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px;
  margin-top: 48px;
}
.moment {
  position: relative; border-radius: var(--radius); overflow: hidden;
  box-shadow: 0 18px 40px rgba(29, 48, 35, .12);
}
.moment img {
  width: 100%; height: 100%; object-fit: cover; aspect-ratio: 4 / 3;
  transition: transform .8s var(--ease-out);
}
.moment:hover img { transform: scale(1.05); }
.moment figcaption {
  position: absolute; inset: auto 0 0 0; padding: 44px 20px 16px;
  background: linear-gradient(transparent, rgba(29, 48, 35, .82));
  color: var(--cream); font-weight: 700; font-size: .95rem;
}

/* ============ Kapcsolat ============ */
.contact__grid { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(40px, 6vw, 90px); align-items: start; }
.contact__list { list-style: none; display: grid; gap: 18px; margin: 26px 0 0; }
.contact__list li { display: block; }
.contact__label { display: block; margin-bottom: 2px; font-size: .72rem; font-weight: 800; letter-spacing: .2em; text-transform: uppercase; color: var(--copper); }
.contact__list a { font-weight: 700; font-size: 1.05rem; text-decoration: none; }
.contact__list a:hover { color: var(--copper); }

.contact__map {
  margin-top: clamp(40px, 5vw, 64px);
  border-radius: var(--radius); overflow: hidden; border: 1px solid var(--line);
  box-shadow: 0 18px 40px rgba(29,48,35,.12);
}
.contact__map iframe { width: 100%; height: 340px; border: 0; display: block; filter: saturate(.85); }

.form {
  background: #fff; border: 1px solid var(--line); border-radius: calc(var(--radius) + 6px);
  padding: clamp(28px, 4vw, 44px); display: grid; gap: 18px;
  box-shadow: 0 30px 60px rgba(29, 48, 35, .1);
}
.form__row { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }

.field { position: relative; }
.field input, .field textarea, .field select {
  width: 100%; font: inherit; color: var(--ink);
  background: var(--cream); border: 1.5px solid transparent; border-radius: 14px;
  padding: 24px 18px 10px;
  transition: border-color .3s, background .3s, box-shadow .3s;
  appearance: none; resize: vertical;
}
.field label {
  position: absolute; left: 18px; top: 17px;
  font-size: 1rem; font-weight: 600; color: rgba(33, 49, 31, .55);
  pointer-events: none; transition: all .25s var(--ease-out);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none; background: #fff; border-color: var(--copper);
  box-shadow: 0 0 0 4px rgba(192, 101, 63, .12);
}
.field input:focus ~ label, .field input:not(:placeholder-shown) ~ label,
.field textarea:focus ~ label, .field textarea:not(:placeholder-shown) ~ label,
.field select:focus ~ label, .field select:valid ~ label {
  top: 7px; font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; color: var(--copper);
}
.field select { cursor: pointer; }
.field:has(select)::after {
  content: ""; position: absolute; right: 18px; top: 50%; translate: 0 -30%;
  width: 9px; height: 9px; border-right: 2px solid var(--forest); border-bottom: 2px solid var(--forest);
  rotate: 45deg; pointer-events: none;
}
.field input.is-invalid, .field textarea.is-invalid, .field select.is-invalid { border-color: #c0392b; }

.form__submit { justify-content: center; width: 100%; }
.form__submit:disabled { opacity: .6; cursor: wait; transform: none; }
.form__status { font-weight: 700; font-size: .95rem; min-height: 1.4em; text-align: center; }
.form__status.ok { color: var(--forest); }
.form__status.err { color: #c0392b; }

/* ============ Aloldalak (házirend, impresszum) ============ */
.subpage { padding: clamp(150px, 18vw, 200px) 0 clamp(80px, 10vw, 120px); }
.legal { max-width: 780px; }
.legal h2 {
  font-family: var(--font-display); font-weight: 600; font-size: 1.45rem;
  margin: 42px 0 14px; color: var(--forest);
}
.legal p { margin-bottom: 14px; opacity: .88; }
.legal ul { margin: 12px 0 18px; padding-left: 24px; display: grid; gap: 9px; }
.legal li { opacity: .88; }
.legal strong { color: var(--forest); }
.legal-table { display: grid; gap: 0; margin: 16px 0 24px; border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; background: #fff; }
.legal-table div { display: grid; grid-template-columns: 220px 1fr; gap: 16px; padding: 14px 20px; }
.legal-table div + div { border-top: 1px solid var(--line); }
.legal-table dt { font-weight: 800; font-size: .85rem; letter-spacing: .06em; text-transform: uppercase; color: var(--copper); align-self: center; }
.legal-table dd { font-weight: 600; }
.subpage__back { margin-top: 48px; }
@media (max-width: 600px) {
  .legal-table div { grid-template-columns: 1fr; gap: 2px; }
}

/* ============ Lábléc ============ */
.footer { background: var(--forest-deep); color: var(--cream); padding: 70px 0 28px; }
.footer__grid { display: grid; grid-template-columns: 1.1fr .6fr 1fr .6fr; gap: 40px; align-items: start; }
.footer__hours { display: grid; gap: 10px; align-content: start; }
.footer__hours h3 { font-family: var(--font-display); font-weight: 500; font-size: 1.1rem; color: var(--copper-soft); margin-bottom: 4px; }
.footer__hours p { display: flex; justify-content: space-between; gap: 14px; font-size: .92rem; border-bottom: 1px dashed rgba(250, 245, 234, .2); padding-bottom: 8px; }
.footer__hours span { opacity: .75; }
.footer__hours strong { font-weight: 800; }
.footer__hours .closed { color: var(--copper-soft); }
.footer__brand { display: grid; gap: 16px; justify-items: center; text-align: center; justify-self: start; }
.footer__brand img { width: 180px; height: auto; opacity: .95; }
.footer__brand p { font-family: var(--font-display); font-size: 1.2rem; color: var(--cream); line-height: 1.4; }
.footer__brand p span { font-family: var(--font-body); font-size: .85rem; opacity: .6; }
.footer__nav, .footer__legal { display: grid; gap: 10px; }
.footer__nav a, .footer__legal a { color: var(--cream); text-decoration: none; font-size: .95rem; opacity: .8; transition: opacity .25s, color .25s; }
.footer__nav a:hover, .footer__legal a:hover { opacity: 1; color: var(--copper-soft); }
.footer__copy { text-align: center; font-size: .8rem; opacity: .5; margin-top: 54px; padding: 0 20px; }

/* ============ 404 oldal ============ */
.notfound {
  position: relative; min-height: 100svh;
  display: grid; place-items: center; text-align: center;
  overflow: hidden; padding: 160px 20px 120px;
}
.notfound__scene { position: absolute; inset: 0; z-index: -1; }
.notfound__sky, .notfound__layer { position: absolute; inset: 0; width: 100%; height: 100%; }
.notfound__bird {
  position: absolute; width: 46px; height: 23px; top: 20%; left: -8%;
  animation: fly 26s linear infinite; opacity: .8;
}
.notfound__bird--2 { top: 14%; width: 30px; height: 15px; animation-duration: 34s; animation-delay: 7s; }

.notfound__content { max-width: 660px; }
.notfound__code {
  font-family: var(--font-display); font-weight: 600;
  font-size: clamp(5rem, 16vw, 10rem); line-height: .9; letter-spacing: -.03em;
  color: var(--copper);
  animation: riseUp .9s var(--ease-out) both;
}
.notfound__title {
  font-family: var(--font-display); font-weight: 500;
  font-size: clamp(1.8rem, 4.5vw, 3rem); line-height: 1.12; letter-spacing: -.015em;
  color: var(--forest-deep); margin: 8px 0 18px;
  animation: riseUp .9s var(--ease-out) .1s both;
}
.notfound__title em { font-style: italic; color: var(--copper); }
.notfound__lead {
  font-size: clamp(1.02rem, 2vw, 1.2rem); color: var(--forest-deep); font-weight: 600;
  max-width: 480px; margin: 0 auto;
  animation: riseUp .9s var(--ease-out) .2s both;
}
.notfound__actions {
  display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 32px;
  animation: riseUp .9s var(--ease-out) .3s both;
}
.notfound__links {
  display: flex; gap: 8px 24px; justify-content: center; flex-wrap: wrap; margin-top: 40px;
  animation: riseUp .9s var(--ease-out) .4s both;
}
.notfound__links a {
  font-weight: 700; font-size: .92rem; text-decoration: none; color: var(--cream);
  position: relative; padding-bottom: 3px;
  text-shadow: 0 1px 8px rgba(29, 48, 35, .45);
}
.notfound__links a::after {
  content: ""; position: absolute; left: 0; bottom: 0; height: 2px; width: 100%;
  background: var(--copper-soft); transform: scaleX(0); transform-origin: right;
  transition: transform .35s var(--ease-out);
}
.notfound__links a:hover::after { transform: scaleX(1); transform-origin: left; }

@media (prefers-reduced-motion: reduce) {
  .notfound__code, .notfound__title, .notfound__lead,
  .notfound__actions, .notfound__links { animation: none; }
}

/* ============ Süti-sáv ============ */
.cookiebar {
  position: fixed; bottom: 16px; left: 50%; translate: -50% 0; z-index: 90;
  width: min(calc(100% - 28px), 680px);
  display: flex; align-items: center; gap: 20px; flex-wrap: wrap;
  padding: 18px 22px;
  background: var(--forest-deep); color: var(--cream);
  border: 1px solid rgba(250, 245, 234, .15); border-radius: var(--radius);
  box-shadow: 0 24px 60px rgba(29, 48, 35, .4);
  opacity: 0; transform: translateY(24px);
  transition: opacity .5s var(--ease-out), transform .5s var(--ease-out);
}
.cookiebar.is-shown { opacity: 1; transform: none; }
.cookiebar p { flex: 1 1 280px; font-size: .92rem; line-height: 1.5; opacity: .92; }
.cookiebar a { color: var(--copper-soft); font-weight: 700; }
.cookiebar__actions { display: flex; gap: 10px; flex-wrap: wrap; }
.cookiebar .btn--ghost { color: var(--cream); border-color: rgba(250, 245, 234, .5); }
.cookiebar .btn--ghost:hover { background: var(--cream); border-color: var(--cream); color: var(--forest-deep); }

/* ============ Scroll-animációk ============ */
.reveal {
  opacity: 0; transform: translateY(36px);
  transition: opacity .9s var(--ease-out), transform .9s var(--ease-out);
  transition-delay: var(--d, 0s);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* ============ Reszponzív ============ */
@media (max-width: 920px) {
  .about__grid, .restaurant__grid, .wedding__grid, .contact__grid, .footer__grid { grid-template-columns: 1fr; }
  .hours { rotate: 0deg; }
  .dishes, .moments__grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 600px) {
  .about__media, .wedding__media, .dishes, .moments__grid { grid-template-columns: 1fr; }
}

@media (max-width: 760px) {
  .nav { padding: 10px 14px; border-radius: 24px; flex-wrap: wrap; }
  .nav__burger {
    display: grid; gap: 6px; background: none; border: none; cursor: pointer; padding: 10px;
  }
  .nav__burger span { width: 24px; height: 2.5px; background: var(--forest); border-radius: 2px; transition: transform .35s var(--ease-out), opacity .3s; }
  .nav__burger[aria-expanded="true"] span:first-child { transform: translateY(4.2px) rotate(45deg); }
  .nav__burger[aria-expanded="true"] span:last-child { transform: translateY(-4.2px) rotate(-45deg); }

  .nav__links {
    display: none; flex-direction: column; align-items: stretch; width: 100%;
    padding: 14px 6px 8px; gap: 4px;
  }
  .nav__links.is-open { display: flex; }
  .nav__links a { padding: 12px 14px; font-size: 1.05rem; border-radius: 14px; }
  .nav__links a:not(.nav__cta):hover { background: var(--cream-2); }
  .nav__links a::after { display: none; }
  .nav__cta { text-align: center; margin-top: 6px; }

  .form__row { grid-template-columns: 1fr; }
  .wedding__cards { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
}

/* ============ Mozgásérzékenység ============ */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .01ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero__title .line span { transform: none; }
}
