:root {
  --ink: #16324a;
  --blue: #123d67;
  --blue-deep: #092b4a;
  --coral: #ff6b57;
  --coral-dark: #df4d3b;
  --aqua: #9edbd5;
  --cream: #f5f1e8;
  --paper: #fffdf8;
  --white: #fff;
  --muted: #667684;
  --line: rgba(18, 61, 103, .15);
  --radius: 28px;
  --shadow: 0 24px 70px rgba(9, 43, 74, .13);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Segoe UI", Arial, sans-serif;
  line-height: 1.65;
}
body.menu-open { overflow: hidden; }
img { display: block; width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

.skip-link {
  position: fixed;
  top: 10px;
  left: 10px;
  z-index: 999;
  padding: 10px 16px;
  color: var(--white);
  background: var(--blue);
  border-radius: 10px;
  transform: translateY(-150%);
}
.skip-link:focus { transform: none; }
.container { width: min(1180px, calc(100% - 40px)); margin-inline: auto; }
.eyebrow {
  margin: 0 0 14px;
  color: var(--coral-dark);
  font-size: .76rem;
  font-weight: 800;
  letter-spacing: .18em;
  text-transform: uppercase;
}
.display {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 6vw, 5.8rem);
  font-weight: 400;
  line-height: .98;
  letter-spacing: -.055em;
}
.title {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 4vw, 3.8rem);
  font-weight: 400;
  line-height: 1.08;
  letter-spacing: -.04em;
}
.lead { max-width: 660px; margin: 22px 0 0; color: var(--muted); font-size: 1.08rem; }
.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 999px;
  background: var(--coral);
  color: var(--blue-deep);
  cursor: pointer;
  font-size: .84rem;
  font-weight: 800;
  letter-spacing: .08em;
  text-transform: uppercase;
  transition: transform .2s, background .2s, color .2s, box-shadow .2s;
}
.button:hover { transform: translateY(-3px); background: var(--aqua); box-shadow: 0 12px 30px rgba(9, 43, 74, .18); }
.button--light { border-color: rgba(255,255,255,.35); color: var(--white); background: rgba(255,255,255,.08); }
.button--light:hover { color: var(--blue-deep); background: var(--white); }
.text-link {
  display: inline-flex;
  gap: 10px;
  align-items: center;
  padding-bottom: 4px;
  border-bottom: 2px solid var(--coral);
  font-weight: 750;
}
.text-link::after { content: "↗"; transition: transform .2s; }
.text-link:hover::after { transform: translate(3px, -3px); }

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  color: var(--white);
  border-bottom: 1px solid rgba(255,255,255,.22);
}
.site-header--solid { position: relative; background: var(--blue-deep); }
.nav { display: flex; min-height: 84px; align-items: center; justify-content: space-between; gap: 24px; }
.brand { display: flex; align-items: center; gap: 11px; }
.brand img { width: 54px; height: 36px; flex: 0 0 auto; object-fit: contain; }
.brand__text { font-size: .98rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.nav__links { display: flex; align-items: center; gap: clamp(18px, 2.7vw, 38px); font-size: .84rem; font-weight: 650; }
.nav__links a { position: relative; }
.nav__links a:not(.button)::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transform: scaleX(0);
  transition: transform .2s;
}
.nav__links a:hover::after, .nav__links a[aria-current="page"]::after { transform: scaleX(1); }
.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  border-radius: 50%;
  color: var(--white);
  background: rgba(255,255,255,.12);
  cursor: pointer;
}
.nav-toggle span { display: block; height: 2px; margin: 5px 0; background: currentColor; }

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  align-items: end;
  overflow: hidden;
  color: var(--white);
  background: var(--blue-deep);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(5,31,52,.9) 0%, rgba(5,31,52,.55) 43%, rgba(5,31,52,.08) 76%), url("../images/buda-hotel-hero.webp") center/cover;
}
.hero::after {
  content: "";
  position: absolute;
  right: -120px;
  bottom: -220px;
  width: 520px;
  height: 520px;
  border: 1px solid rgba(158,219,213,.55);
  border-radius: 50%;
}
.hero__content { position: relative; z-index: 1; padding-block: 210px 88px; }
.hero .display { max-width: 800px; }
.hero__lead { max-width: 590px; margin: 28px 0 36px; color: rgba(255,255,255,.84); font-size: 1.12rem; }
.hero__meta { display: flex; flex-wrap: wrap; gap: 10px 28px; margin-top: 70px; font-size: .78rem; font-weight: 700; letter-spacing: .1em; text-transform: uppercase; }
.hero__meta span { display: flex; align-items: center; gap: 10px; }
.hero__meta span::before { content: ""; width: 7px; height: 7px; border-radius: 50%; background: var(--aqua); }

.intro { padding: 120px 0; }
.intro__grid { display: grid; grid-template-columns: .88fr 1.12fr; gap: 90px; align-items: center; }
.intro__mark { position: relative; min-height: 430px; padding: 55px; border-radius: var(--radius); background: var(--aqua); }
.intro__mark::after {
  content: "";
  position: absolute;
  right: -30px;
  bottom: -30px;
  width: 180px;
  height: 180px;
  border: 24px solid var(--coral);
  border-radius: 50%;
}
.intro__number { font-family: Georgia, serif; font-size: clamp(6rem, 14vw, 11rem); line-height: .8; color: var(--blue); }
.intro__caption { max-width: 200px; margin-top: 46px; font-weight: 750; }
.intro__copy .title { max-width: 610px; }

.features { padding: 110px 0; background: var(--cream); }
.section-head { display: flex; align-items: end; justify-content: space-between; gap: 30px; margin-bottom: 56px; }
.section-head .title { max-width: 700px; }
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; }
.feature-card {
  min-height: 290px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(255,255,255,.62);
  transition: transform .25s, background .25s, box-shadow .25s;
}
.feature-card:hover { transform: translateY(-8px); background: var(--white); box-shadow: var(--shadow); }
.feature-card__icon {
  display: grid;
  width: 54px;
  height: 54px;
  margin-bottom: 58px;
  place-items: center;
  border-radius: 18px;
  color: var(--white);
  background: var(--blue);
  font-size: 1.35rem;
}
.feature-card h3 { margin: 0 0 12px; font-family: Georgia, serif; font-size: 1.5rem; font-weight: 400; }
.feature-card p { margin: 0; color: var(--muted); font-size: .94rem; }

.image-story { padding: 120px 0; }
.image-story__grid { display: grid; grid-template-columns: 1.4fr .78fr; gap: 24px; }
.image-panel { position: relative; min-height: 600px; overflow: hidden; border-radius: var(--radius); }
.image-panel img { width: 100%; height: 100%; object-fit: cover; transition: transform .7s; }
.image-panel:hover img { transform: scale(1.035); }
.image-panel__label {
  position: absolute;
  right: 24px;
  bottom: 24px;
  left: 24px;
  padding: 28px;
  border-radius: 20px;
  background: rgba(255,253,248,.92);
  backdrop-filter: blur(14px);
}
.image-panel__label h3 { margin: 0 0 7px; font-family: Georgia, serif; font-size: 1.6rem; font-weight: 400; }
.image-panel__label p { margin: 0; color: var(--muted); }
.story-note {
  display: flex;
  min-height: 600px;
  padding: 42px;
  flex-direction: column;
  justify-content: space-between;
  border-radius: var(--radius);
  color: var(--white);
  background: var(--blue);
}
.story-note__quote { margin: 0; font-family: Georgia, serif; font-size: clamp(2rem, 3vw, 3.2rem); line-height: 1.12; }
.story-note__line { width: 72px; height: 5px; border-radius: 5px; background: var(--coral); }

.rooms-preview { padding: 110px 0; background: var(--blue-deep); color: var(--white); }
.rooms-preview .eyebrow { color: var(--aqua); }
.room-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-top: 54px;
  overflow: hidden;
  border-radius: var(--radius);
  background: var(--paper);
  color: var(--ink);
}
.room-row__image { min-height: 520px; }
.room-row__image img { height: 100%; object-fit: cover; }
.room-row__copy { display: flex; padding: clamp(38px, 6vw, 80px); flex-direction: column; justify-content: center; }
.room-row__copy h3 { margin: 0 0 20px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3.5rem); font-weight: 400; line-height: 1.05; }
.room-tags { display: flex; flex-wrap: wrap; gap: 8px; margin: 24px 0 34px; padding: 0; list-style: none; }
.room-tags li { padding: 8px 13px; border-radius: 999px; color: var(--blue); background: var(--cream); font-size: .78rem; font-weight: 700; }

.voices { padding: 120px 0; }
.voice-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 18px; margin-top: 52px; }
.voice-card { padding: 34px; border: 1px solid var(--line); border-radius: 24px; }
.voice-card:nth-child(2) { background: var(--aqua); border-color: transparent; }
.voice-card blockquote { min-height: 145px; margin: 0; font-family: Georgia, serif; font-size: 1.28rem; line-height: 1.45; }
.voice-card p { margin: 28px 0 0; font-size: .82rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }

.faq { padding: 110px 0; background: var(--cream); }
.faq__grid { display: grid; grid-template-columns: .75fr 1.25fr; gap: 90px; }
.accordion details { border-bottom: 1px solid var(--line); }
.accordion summary { position: relative; padding: 25px 45px 25px 0; cursor: pointer; font-weight: 750; list-style: none; }
.accordion summary::-webkit-details-marker { display: none; }
.accordion summary::after { content: "+"; position: absolute; right: 5px; font-size: 1.5rem; font-weight: 400; }
.accordion details[open] summary::after { content: "−"; }
.accordion details p { max-width: 640px; margin: -5px 0 24px; color: var(--muted); }

.cta-band { padding: 95px 0; color: var(--white); background: var(--coral-dark); }
.cta-band__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; }
.cta-band .title { max-width: 680px; }

.page-hero { padding: 130px 0 90px; color: var(--white); background: var(--blue-deep); }
.page-hero .display { max-width: 850px; }
.page-hero__lead { max-width: 650px; margin: 24px 0 0; color: rgba(255,255,255,.72); font-size: 1.08rem; }
.page-section { padding: 110px 0; }
.page-section--cream { background: var(--cream); }
.room-list { display: grid; gap: 28px; margin-top: 54px; }
.room-card { display: grid; grid-template-columns: 1.05fr .95fr; overflow: hidden; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.room-card:nth-child(even) .room-card__image { order: 2; }
.room-card__image { min-height: 430px; }
.room-card__image img { height: 100%; object-fit: cover; }
.room-card__content { display: flex; padding: clamp(34px, 5vw, 68px); flex-direction: column; justify-content: center; }
.room-card h2 { margin: 0 0 18px; font-family: Georgia, serif; font-size: clamp(2rem, 4vw, 3rem); font-weight: 400; }

.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 80px; }
.contact-list { display: grid; gap: 22px; margin-top: 42px; }
.contact-item { padding-bottom: 22px; border-bottom: 1px solid var(--line); }
.contact-item span { display: block; margin-bottom: 4px; color: var(--coral-dark); font-size: .75rem; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.contact-item a, .contact-item p { margin: 0; font-family: Georgia, serif; font-size: 1.3rem; }
.form-card { padding: clamp(30px, 5vw, 58px); border-radius: var(--radius); background: var(--cream); }
.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 18px; }
.field { display: grid; gap: 8px; }
.field--full { grid-column: 1 / -1; }
.field label { font-size: .78rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.field input, .field textarea, .field select {
  width: 100%;
  min-height: 54px;
  padding: 13px 16px;
  border: 1px solid rgba(18,61,103,.22);
  border-radius: 13px;
  color: var(--ink);
  background: var(--white);
  outline: none;
}
.field textarea { min-height: 130px; resize: vertical; }
.field input:focus, .field textarea:focus, .field select:focus { border-color: var(--blue); box-shadow: 0 0 0 3px rgba(158,219,213,.5); }
.form-note { margin: 16px 0 24px; color: var(--muted); font-size: .82rem; }

.legal { max-width: 800px; }
.legal h2 { margin: 52px 0 14px; font-family: Georgia, serif; font-size: 1.9rem; font-weight: 400; }
.legal h2:first-child { margin-top: 0; }
.legal p, .legal li { color: #526674; }
.legal ul { padding-left: 20px; }
.legal-meta { display: inline-block; margin-bottom: 35px; padding: 8px 13px; border-radius: 999px; background: var(--aqua); font-size: .76rem; font-weight: 800; }

.site-footer { padding: 78px 0 26px; color: rgba(255,255,255,.72); background: #071f35; }
.footer-grid { display: grid; grid-template-columns: 1.35fr .7fr .85fr; gap: 70px; padding-bottom: 58px; }
.footer-brand { max-width: 340px; }
.footer-brand .brand { color: var(--white); margin-bottom: 22px; }
.footer-title { margin: 0 0 20px; color: var(--aqua); font-size: .75rem; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; }
.footer-links { display: grid; gap: 11px; }
.footer-links a:hover { color: var(--white); }
.footer-bottom { display: flex; justify-content: space-between; gap: 20px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: .78rem; }

.cookie-banner {
  position: fixed;
  z-index: 100;
  right: 20px;
  bottom: 20px;
  display: grid;
  width: min(430px, calc(100% - 40px));
  padding: 24px;
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 22px;
  color: var(--white);
  background: rgba(7,31,53,.96);
  box-shadow: 0 25px 80px rgba(0,0,0,.25);
  backdrop-filter: blur(18px);
}
.cookie-banner[hidden] { display: none; }
.cookie-banner h2 { margin: 0 0 7px; font-family: Georgia, serif; font-size: 1.35rem; font-weight: 400; }
.cookie-banner p { margin: 0 0 18px; color: rgba(255,255,255,.72); font-size: .88rem; }
.cookie-actions { display: flex; gap: 10px; }
.cookie-actions .button { min-height: 44px; padding-inline: 18px; font-size: .72rem; }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .nav__links {
    position: fixed;
    inset: 84px 0 0;
    display: flex;
    padding: 42px 30px;
    flex-direction: column;
    align-items: flex-start;
    color: var(--white);
    background: var(--blue-deep);
    font-size: 1.2rem;
    transform: translateX(100%);
    transition: transform .3s;
  }
  .nav__links.is-open { transform: none; }
  .nav__links .button { margin-top: 14px; }
  .intro__grid, .faq__grid, .contact-grid { grid-template-columns: 1fr; gap: 52px; }
  .feature-grid, .voice-grid { grid-template-columns: 1fr 1fr; }
  .image-story__grid { grid-template-columns: 1fr; }
  .image-panel, .story-note { min-height: 500px; }
  .room-row, .room-card { grid-template-columns: 1fr; }
  .room-card:nth-child(even) .room-card__image { order: 0; }
  .room-row__image, .room-card__image { min-height: 400px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-brand { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  .container { width: min(100% - 28px, 1180px); }
  .hero { min-height: 680px; }
  .hero__content { padding-block: 175px 58px; }
  .hero__meta { margin-top: 42px; }
  .intro, .image-story, .voices, .page-section { padding: 80px 0; }
  .features, .rooms-preview, .faq { padding: 78px 0; }
  .intro__mark { min-height: 340px; padding: 35px; }
  .section-head, .cta-band__inner { align-items: flex-start; flex-direction: column; }
  .feature-grid, .voice-grid { grid-template-columns: 1fr; }
  .feature-card { min-height: 245px; }
  .feature-card__icon { margin-bottom: 38px; }
  .image-panel, .story-note { min-height: 430px; }
  .room-row__image, .room-card__image { min-height: 300px; }
  .room-row__copy, .room-card__content { padding: 34px 26px; }
  .page-hero { padding: 105px 0 70px; }
  .form-grid { grid-template-columns: 1fr; }
  .field--full { grid-column: auto; }
  .footer-grid { grid-template-columns: 1fr; gap: 38px; }
  .footer-brand { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .cookie-actions { flex-direction: column; }
  .cookie-actions .button { width: 100%; }
}

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { scroll-behavior: auto !important; transition: none !important; }
}
