:root {
  --cream: #F4EAD6;
  --cream-deep: #ECDDC0;
  --maroon: #6B1D16;
  --maroon-deep: #551209;
  --ember: #C1432B;
  --ember-dark: #A5341F;
  --gold: #B8905A;
  --ink: #2B1B12;
  --ink-soft: #5A4A3C;
  --paper: #FBF6EC;
  --footer: #241610;
  --line: rgba(43, 27, 18, 0.14);
  --line-on-maroon: rgba(244, 234, 214, 0.22);

  --font-display: 'Playfair Display', Georgia, serif;   /* címek */
  --font-body: 'Inter', -apple-system, Arial, sans-serif;  /* általános szöveg */
  --font-menu: 'Public Sans', -apple-system, Arial, sans-serif;  /* étel/ital sorok, árak */

  --container: 1120px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  margin: 0;
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--cream);
  -webkit-font-smoothing: antialiased;
}

img { max-width: 100%; display: block; }

.wrap {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 24px;
}

a { color: inherit; }

.eyebrow {
  font-family: var(--font-body);
  font-size: clamp(10.5px, 2.6vw, 12.5px);
  font-weight: 700;
  letter-spacing: clamp(0.04em, 1vw, 0.22em);
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 12px 0;
  white-space: normal;
  overflow-wrap: break-word;
}
.on-maroon .eyebrow { color: #E7B98F; }

h1, h2, h3 {
  font-family: var(--font-display);
  font-weight: 400;
  margin: 0;
  color: inherit;
}

h2 {
  font-size: clamp(26px, 7vw, 40px);
  line-height: 1.15;
  margin-bottom: 14px;
  text-align: center;

}

.section-intro {
  max-width: 620px;
  margin-bottom: 44px;
}
.section-intro p {
  color: var(--ink-soft);
  font-size: 30px;
  line-height: 1.6;
  margin-top: 10px;
}
.on-maroon .section-intro p { color: #E4D2C2; }


.section-intro--center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  margin-left: auto;
  margin-right: auto;
}

.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.01em;
  text-decoration: none;
  padding: 14px 26px;
  border-radius: 3px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.15s ease, border-color 0.15s ease;
}
.btn-primary {
  background: var(--ember);
  color: var(--paper);
}
.btn-primary:hover { background: var(--ember-dark); }


.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--cream);
  border-bottom: 1px solid var(--line);
}
.site-header .wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  padding-bottom: 14px;
  gap: 24px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--ink);
}
.brand-text { line-height: 1.2; }
.brand-text .name {
  font-family: var(--font-display);
  font-size: 18px;
}
.brand-text .tag {
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink-soft);
}
.main-nav {
  display: flex;
  align-items: center;
  gap: 6px;
  flex-wrap: wrap;
}
.main-nav a {
  text-decoration: none;
  font-size: 14.5px;
  color: var(--ink);
  border: 1px solid transparent;
  border-radius: 3px;
  padding: 7px 14px;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}
.main-nav a:hover,
.main-nav a:active,
.main-nav a:focus {
  border-color: var(--ember);
  color: var(--ember);
}
.header-cta { flex-shrink: 0; }
.header-cta-icon { display: none; }
.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--line);
  border-radius: 3px;
  padding: 8px 10px;
  font-size: 18px;
  color: var(--ink);
  transition: background 0.15s ease, color 0.15s ease, border-color 0.15s ease;
}
.nav-toggle.is-active {
  background: var(--maroon);
  color: var(--paper);
  border-color: var(--maroon);
}


.hero {
  position: relative;
  min-height: min(88vh, 760px);
  display: flex;
  align-items: center;
  color: var(--paper);
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to right,
      rgba(85, 18, 9, 0.90) 0%,
      rgba(85, 18, 9, 0.65) 55%,
      rgba(85, 18, 9, 0.30) 100%),
    linear-gradient(to top,
      rgba(36, 22, 16, 0.55),
      transparent 45%);
}
.hero .wrap {
  position: relative;
  z-index: 2;
}
.hero-copy {
  max-width: 620px;
  padding: 96px 0 110px 0;
}
.hero h1 {
  font-size: clamp(34px, 5.2vw, 58px);
  line-height: 1.08;
  margin: 4px 0 18px 0;
  text-shadow: 0 2px 18px rgba(36, 22, 16, 0.35);
}
.hero p.lead {
  font-size: 17px;
  line-height: 1.6;
  color: #EBDCCE;
  max-width: 52ch;
  margin-bottom: 30px;
}

.section { padding: 84px 0; }
.section-cream { background: var(--cream); }
.section-paper { background: var(--paper); }
.section-maroon {
  background: linear-gradient(180deg, var(--maroon) 0%, var(--maroon-deep) 100%);
  color: var(--paper);
}


.menu-row {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 20px;
  padding: 18px 0;
  border-bottom: 1px solid var(--line);
}
.menu-row .name {
  font-family: var(--font-menu);
  font-size: 17px;
  font-weight: 700;
}
.menu-row .count {
  font-family: var(--font-menu);
  font-size: 13px;
  font-weight: 400;
  color: var(--ink-soft);
}
.menu-row .price {
  font-family: var(--font-menu);
  font-weight: 700;
  font-size: 17px;
  white-space: nowrap;
  font-variant-numeric: tabular-nums;
}

details.menu-group { border-bottom: 1px solid var(--line); }
details.menu-group summary {
  list-style: none;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 0;
  font-family: var(--font-menu);
  font-size: 17px;
}
details.menu-group summary::-webkit-details-marker { display: none; }
details.menu-group summary .count {
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 400;
  margin-right: auto;
  margin-left: 12px;
}
details.menu-group summary .plus {
  font-size: 20px;
  color: var(--ember);
  transition: transform 0.3s ease;
}
details.menu-group[open] summary .plus { transform: rotate(45deg); }


.menu-sub-wrapper {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s ease;
}
details.menu-group[open] .menu-sub-wrapper {
  grid-template-rows: 1fr;
}
.menu-sub {
  overflow: hidden;
  padding: 0 0 16px 0;
}
.menu-sub .menu-row { border-bottom: none; padding: 8px 0; }

.menu-columns {
  max-width: 720px;
  margin: 0 auto;
}
.menu-download {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-top: 24px;
  color: var(--ember);
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
}


.tag-fav {
  font-style: normal;
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--maroon);
  background: var(--gold);
  padding: 2px 8px;
  border-radius: 100px;
  margin-left: 8px;
  vertical-align: 1px;
}


.gallery { margin-top: 48px; }

.gallery-intro {
  text-align: center;
  max-width: 560px;
  margin: 0 auto 36px auto;
}
.gallery-intro h3 {
  font-size: clamp(24px, 5.5vw, 36px);
  line-height: 1.15;
  margin-bottom: 10px;
}
.gallery-intro p {
  font-size: 15.5px;
  color: #E4D2C2;
  margin: 0;
}


.eyebrow-rule {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
}
.eyebrow-rule::before,
.eyebrow-rule::after {
  content: "";
  width: 26px;
  height: 1px;
  background: currentColor;
  opacity: 0.7;
}

.gallery-stage {
  position: relative;
  max-width: 720px;
  margin: 0 auto;
}
.gallery-track {
  position: relative;
  aspect-ratio: 4/3;
  overflow: hidden;
  border-radius: 4px;
}
.gal-slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  pointer-events: none;
  transition: opacity 1.1s ease-in-out;
}
.gal-slide.is-active {
  opacity: 1;
  pointer-events: auto;
  z-index: 1;
}
.gal-photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border: 1px dashed var(--line-on-maroon);
  border-radius: 4px;
  background: repeating-linear-gradient(135deg, #7d2a20, #7d2a20 10px, #74241a 10px, #74241a 20px);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(244, 234, 214, 0.6);
  font-size: 12.5px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.gal-slide figcaption {
  position: absolute;
  left: 0; right: 0; bottom: 0;
  padding: 40px 20px 16px 20px;
  background: linear-gradient(to top, rgba(36, 22, 16, 0.85), transparent);
  font-family: var(--font-display);
  font-size: 17px;
  color: var(--paper);
}
.gal-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid var(--line-on-maroon);
  background: var(--cream);
  color: var(--maroon);
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 2px 10px rgba(36, 22, 16, 0.25);
  transition: background 0.15s ease, color 0.15s ease;
}
.gal-arrow:hover { background: var(--ember); color: var(--paper); }
.gal-arrow.prev { left: -20px; }
.gal-arrow.next { right: -20px; }

.gal-dots {
  display: flex;
  justify-content: center;
  gap: 10px;
  margin-top: 20px;
}
.gal-dots .dot {
  width: 9px;
  height: 9px;
  padding: 0;
  border-radius: 50%;
  border: 1px solid var(--line-on-maroon);
  background: transparent;
  cursor: pointer;
  transition: background 0.15s ease;
}
.gal-dots .dot.is-active { background: var(--ember); border-color: var(--ember); }

@media (max-width: 640px) {
  .gal-arrow.prev { left: 6px; }
  .gal-arrow.next { right: 6px; }
}


.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
}
@media (max-width: 800px) {
  .about-grid { grid-template-columns: 1fr; }
}
.about-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-radius: 4px;
}
.stat-row {
  display: flex;
  gap: 40px;
  margin-top: 30px;
  padding-top: 26px;
  border-top: 1px solid var(--line);
}
.stat .num {
  font-family: var(--font-display);
  font-size: 32px;
  color: var(--ember);
}
.stat .label {
  font-size: 12.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-soft);
  margin-top: 2px;
}


.info-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
  align-items: stretch;
}
@media (max-width: 900px) {
  .info-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 540px) {
  .info-grid { grid-template-columns: 1fr; }
}

.info-card {
  display: flex;
  flex-direction: column;
  background: var(--paper);
  border-radius: 3px;
  overflow: hidden;
  box-shadow: 0 1px 3px rgba(43, 27, 18, 0.10);
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}
.info-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 6px 18px rgba(43, 27, 18, 0.14);
}


.info-photo {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
  border-bottom: 1px dashed var(--line);
  background: #BFBFBF;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-soft);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.info-body {
  flex: 1;
  padding: 24px 20px 28px 20px;
  text-align: center;
}
.info-body h3 {
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 12px;
}

.info-body h3::after {
  content: "";
  display: block;
  width: 34px;
  height: 2px;
  background: var(--ember);
  margin: 10px auto 0 auto;
}
.info-body p {
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--ink-soft);
  margin: 0;
}

.contact-layout {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 32px;
  align-items: stretch;
}
@media (max-width: 800px) {
  .contact-layout { grid-template-columns: 1fr; }
}

.map-box {
  border-radius: 10px;
  overflow: hidden;
  border: 1px solid var(--line-on-maroon);
  box-shadow: 0 12px 30px rgba(36, 22, 16, 0.35);
  min-height: 380px;
}
.map-box iframe { width: 100%; height: 100%; min-height: 380px; border: 0; display: block; }


.contact-float-card {
  background: var(--paper);
  border-radius: 8px;
  padding: 8px 28px;
  box-shadow: 0 20px 46px rgba(36, 22, 16, 0.45);
  border-top: 3px solid var(--gold);
  display: flex;
  flex-direction: column;
}

.contact-float-card .contact-item {
  display: flex;
  align-items: center;
  gap: 20px;
  text-align: left;
  padding: 26px 4px;
  border-bottom: 1px solid var(--line);
  flex: 1;
}
.contact-float-card .contact-item:last-child { border-bottom: none; }

.contact-float-card .contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
  text-align: left;
}
.contact-float-card .contact-item:last-child { border-bottom: none; }

.contact-icon {
  flex-shrink: 0;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 17px;
}

.contact-float-card .label {
  font-size: 11.5px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ember);
  margin: 0 0 4px 0;
}
.contact-float-card .value {
  font-family: var(--font-display);
  font-size: 18px;
  color: var(--ink);
  margin: 0;
}
.contact-float-card .value a {
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid transparent;
  transition: border-color 0.15s ease;
}
.contact-float-card .value a:hover { border-color: var(--ember); }
.contact-float-card .note {
  font-size: 12.5px;
  color: var(--ink-soft);
  margin: 6px 0 0 0;
  line-height: 1.5;
}


.site-footer {
  background: var(--footer);
  color: #C9B29E;
  padding: 56px 0 28px 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 36px;
  border-bottom: 1px solid rgba(244, 234, 214, 0.1);
}
@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 28px; }
  .footer-brand-col { grid-column: 1 / -1; }
}
@media (max-width: 540px) {
  .footer-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 18px 14px;
  }
  .footer-brand-col { grid-column: 1 / -1; }
  .footer-logo { height: 34px; }
  .footer-tag { display: none; }
  .footer-grid h4 { font-size: 12.5px; margin-bottom: 8px; }
  .footer-grid li { font-size: 12px; margin-bottom: 6px; word-break: break-word; }
}

.footer-grid h4 {
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 15px;
  margin-bottom: 14px;
  font-weight: 400;
}

.footer-brand-link {
  display: flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  margin-bottom: 14px;
}
.footer-logo {
  height: 44px;
  width: auto;
  flex-shrink: 0;
}
.footer-grid .footer-brand {
  display: block;
  color: var(--paper);
  font-family: var(--font-display);
  font-size: 18px;
}
.footer-brand-sub {
  display: block;
  font-size: 11.5px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #A8927C;
  margin-top: 2px;
}
.footer-grid .footer-tag {
  font-size: 13px;
  color: #A8927C;
  line-height: 1.6;
  max-width: 32ch;
}

.footer-grid ul {
  list-style: none;
  margin: 0; padding: 0;
}
.footer-grid li { margin-bottom: 10px; font-size: 14px; }
.footer-grid a { text-decoration: none; }
.footer-grid a:hover { color: var(--paper); }
.footer-note {
  font-size: 12px;
  color: #A8927C;
  line-height: 1.5;
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 22px;
  font-size: 12.5px;
}
@media (max-width: 540px) {
  .site-footer { padding: 40px 0 22px 0; }
  .footer-bottom { flex-direction: column; gap: 6px; font-size: 11.5px; }
}


.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 200;
  background: var(--footer);
  color: var(--paper);
  padding: 22px 24px;
  box-shadow: 0 -12px 30px rgba(36, 22, 16, 0.35);
  border-top: 1px solid var(--line-on-maroon);

  transform: translateY(100%);
  transition: transform 0.5s ease;
}
.cookie-banner.is-visible {
  transform: translateY(0);
}
.cookie-banner-inner {
  max-width: var(--container);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-wrap: wrap;
  text-align: center;
}
.cookie-banner-text {
  max-width: 640px;
  font-size: 14.5px;
  line-height: 1.6;
  color: #E4D2C2;
  margin: 0;
}
.cookie-banner-text a {
  color: var(--gold);
  text-decoration: underline;
}
.cookie-banner-actions {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
}
.cookie-btn {
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 14.5px;
  padding: 12px 26px;
  border-radius: 4px;
  border: none;
  cursor: pointer;
  transition: background 0.15s ease, opacity 0.15s ease;
}
.cookie-btn-accept {
  background: var(--gold);
  color: var(--maroon-deep);
}
.cookie-btn-accept:hover { background: #c9a06c; }
.cookie-btn-decline {
  background: transparent;
  color: #E4D2C2;
  border: 1px solid var(--line-on-maroon);
}
.cookie-btn-decline:hover { border-color: var(--gold); color: var(--gold); }

@media (max-width: 640px) {
  .cookie-banner-inner { text-align: left; justify-content: flex-start; }
  .cookie-banner-actions { width: 100%; }
  .cookie-btn { flex: 1; }
}


@media (max-width: 880px) {
  .main-nav { display: none; }
  .nav-toggle { display: inline-block; }
  .header-cta {
    font-size: 13px;
    padding: 10px 14px;
    white-space: nowrap;
  }
}
@media (max-width: 420px) {
  .brand-text .tag { display: none; }
  .header-cta { padding: 10px 12px; }
  .header-cta-text { display: none; }
  .header-cta-icon { display: inline; font-size: 17px; }
}
@media (max-width: 640px) {
  .hero { min-height: 78vh; }
  .hero-copy { padding: 72px 0 84px 0; }
  .hero-overlay {
    background: linear-gradient(to top,
      rgba(85, 18, 9, 0.92),
      rgba(85, 18, 9, 0.55));
  }
}

.brand-logo {
  height: 70px;
  width: auto;
}

@media (max-width: 880px) {
  .brand-logo { height: 44px; }
  .brand-text .name { font-size: 15px; }
  .brand-text .tag { font-size: 10px; }
}


.stay-info {
  margin: 0 0 48px 0;
  display: flex;
  justify-content: center;
}
.stay-info-text {
  max-width: 560px;
  width: 100%;
}

.check-list {
  list-style: none;
  margin: 0;
  padding: 0;
}
.check-list li {
  position: relative;
  padding: 10px 0 10px 34px;
  font-size: 16px;
  color: #EBDCCE;
  border-bottom: 1px solid rgba(244, 234, 214, 0.1);

  opacity: 0;
  transform: translateY(14px);
}

.check-list.is-visible li {
  animation: checkFadeIn 0.5s ease forwards;
}
.check-list li:last-child { border-bottom: none; }
.check-list li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 9px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--maroon-deep);
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}


.check-list li:nth-child(1) { animation-delay: 0.6s; }
.check-list li:nth-child(2) { animation-delay: 1.2s; }
.check-list li:nth-child(3) { animation-delay: 1.8s; }
.check-list li:nth-child(4) { animation-delay: 2.4s; }

@keyframes checkFadeIn {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}