:root {
  --anthracite: #1f1f1f;
  --cream: #f4efe8;
  --tomato: #a63a32;
  --sage: #8fa58e;
  --copper: #b56e4a;
  --text-dark: #242424;
  --muted-dark: rgba(31, 31, 31, 0.72);
  --muted-light: rgba(244, 239, 232, 0.74);
  --line-light: rgba(244, 239, 232, 0.12);
  --line-dark: rgba(31, 31, 31, 0.1);
  --shadow: 0 22px 44px rgba(18, 18, 18, 0.12);
  --radius-xl: 34px;
  --radius-lg: 24px;
  --radius-md: 18px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background: var(--cream);
  color: var(--text-dark);
}

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

a {
  color: inherit;
  text-decoration: none;
}

button,
a,
input,
textarea,
select {
  font: inherit;
}

.page-accent {
  position: fixed;
  z-index: 0;
  pointer-events: none;
  filter: blur(18px);
  opacity: 0.55;
}

.accent-top {
  top: 140px;
  right: -80px;
  width: 260px;
  height: 260px;
  border-radius: 42% 58% 61% 39%;
  background: rgba(181, 110, 74, 0.22);
}

.accent-bottom {
  bottom: 140px;
  left: -60px;
  width: 240px;
  height: 240px;
  border-radius: 50%;
  background: rgba(143, 165, 142, 0.22);
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(244, 239, 232, 0.84);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.06);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.is-solid {
  background: rgba(24, 24, 24, 0.88);
  backdrop-filter: blur(14px);
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.18);
}

.header-inner,
.section-inner {
  width: min(100%, calc(100% - 64px));
  max-width: 1320px;
  margin: 0 auto;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
}

.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  color: var(--anthracite);
}

.brand-mark {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: linear-gradient(145deg, rgba(166, 58, 50, 0.88), rgba(181, 110, 74, 0.88));
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  line-height: 1;
}

.brand-copy {
  display: grid;
  gap: 2px;
}

.brand-copy strong,
.section h2,
.hero h1,
.special-copy h3,
.menu-panel h3,
.reason-card h3,
.booking-layout h2,
.site-footer strong {
  font-family: "Cormorant Garamond", serif;
}

.brand-copy strong,
.site-footer strong {
  font-size: 1.8rem;
  line-height: 1;
}

.brand-copy span,
.site-footer span {
  color: rgba(244, 239, 232, 0.72);
  font-size: 0.92rem;
}

.site-header .brand-copy span {
  color: rgba(31, 31, 31, 0.62);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 8px;
}

.desktop-nav a {
  padding: 10px 14px;
  border-radius: 999px;
  color: rgba(31, 31, 31, 0.82);
  transition: background 0.25s ease, color 0.25s ease;
}

.desktop-nav a:hover {
  background: rgba(31, 31, 31, 0.06);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 12px;
}

.menu-toggle {
  display: none;
  width: 48px;
  height: 48px;
  border-radius: 16px;
  border: 1px solid rgba(31, 31, 31, 0.12);
  background: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 4px;
}

.menu-toggle span {
  width: 20px;
  height: 2px;
  border-radius: 999px;
  background: var(--anthracite);
}

.mobile-nav {
  display: none;
  width: min(100%, calc(100% - 64px));
  max-width: 1320px;
  margin: 0 auto;
  padding-bottom: 18px;
}

.mobile-nav a {
  display: block;
  margin-top: 10px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(31, 31, 31, 0.08);
  background: rgba(255, 255, 255, 0.72);
  color: rgba(31, 31, 31, 0.84);
}

.mobile-book {
  margin-top: 10px;
}

.site-header.is-solid .mobile-nav a {
  border-color: rgba(244, 239, 232, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #f4efe8;
}

.site-header.is-solid .brand {
  color: #fff;
}

.site-header.is-solid .brand-copy span {
  color: rgba(244, 239, 232, 0.72);
}

.site-header.is-solid .desktop-nav a {
  color: rgba(244, 239, 232, 0.82);
}

.site-header.is-solid .desktop-nav a:hover {
  background: rgba(244, 239, 232, 0.12);
}

.site-header.is-solid .menu-toggle {
  border-color: rgba(244, 239, 232, 0.18);
  background: rgba(255, 255, 255, 0.06);
}

.site-header.is-solid .menu-toggle span {
  background: #f4efe8;
}

.section {
  position: relative;
  z-index: 1;
  width: 100%;
  padding: 110px 0;
}

.section-dark {
  background: var(--anthracite);
  color: #f4efe8;
}

.section-light {
  background: var(--cream);
  color: var(--text-dark);
}

.section-accent {
  background: linear-gradient(135deg, rgba(166, 58, 50, 0.95), rgba(181, 110, 74, 0.96));
  color: #fff;
}

.hero {
  position: relative;
  min-height: 96vh;
  overflow: hidden;
  display: grid;
  align-items: end;
}

.hero-media,
.hero-media img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-media img {
  object-fit: cover;
}

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(16, 16, 16, 0.78), rgba(16, 16, 16, 0.36) 48%, rgba(16, 16, 16, 0.28)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.28));
}

.hero-layout {
  position: relative;
  z-index: 1;
  min-height: 96vh;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 24px;
  align-items: end;
  padding-bottom: 54px;
}

.hero-copy {
  max-width: 760px;
}

.eyebrow {
  display: inline-block;
  margin-bottom: 18px;
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted-light);
}

.eyebrow.accent {
  color: rgba(31, 31, 31, 0.6);
}

.hero h1,
.section h2,
.booking-layout h2 {
  margin: 0;
  line-height: 0.92;
  letter-spacing: -0.03em;
}

.hero h1 {
  font-size: clamp(4rem, 8vw, 7rem);
  line-height: 1.04;
}

.section h2,
.booking-layout h2 {
  font-size: clamp(2.8rem, 5vw, 4.8rem);
}

.hero p,
.section p,
.review-card p,
.menu-item p,
.special-copy p,
.reason-card p,
.stat-card span,
.booking-layout p,
.idea-card p {
  line-height: 1.8;
}

.hero p {
  max-width: 620px;
  margin: 28px 0 0;
  color: rgba(244, 239, 232, 0.84);
}

.hero-actions,
.booking-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 0;
  cursor: pointer;
  transition: transform 0.25s ease, background 0.25s ease, box-shadow 0.25s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  background: var(--tomato);
  color: #fff;
  box-shadow: 0 12px 26px rgba(166, 58, 50, 0.28);
}

.btn-primary:hover {
  background: #8d2f29;
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(244, 239, 232, 0.2);
}

.btn-secondary-dark {
  background: rgba(31, 31, 31, 0.06);
  color: var(--anthracite);
  border-color: rgba(31, 31, 31, 0.12);
}

.hero-note {
  align-self: end;
  padding: 24px;
  margin-bottom: 10px;
  border-radius: var(--radius-xl);
  background: rgba(244, 239, 232, 0.1);
  border: 1px solid rgba(244, 239, 232, 0.14);
  backdrop-filter: blur(14px);
}

.hero-note small {
  display: block;
  margin-bottom: 10px;
  color: rgba(244, 239, 232, 0.68);
  text-transform: uppercase;
  letter-spacing: 0.16em;
}

.hero-note strong {
  display: block;
  font-size: 1.35rem;
  line-height: 1.35;
}

.hero-note p {
  margin: 12px 0 0;
  color: rgba(244, 239, 232, 0.76);
}

.about-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  align-items: stretch;
}

.about-media {
  min-height: 640px;
}

.about-media img {
  height: 100%;
  object-fit: cover;
}

.about-copy {
  padding: 72px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.about-copy p,
.section-light p,
.section-light .menu-item p,
.section-light .review-card p,
.section-light .reason-card p,
.section-light .special-copy p {
  color: var(--muted-dark);
}

.idea-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1.15fr);
  gap: 28px;
  align-items: start;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 36px;
}

.idea-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.idea-card,
.special-card,
.menu-panel,
.reason-card,
.review-card,
.stat-card {
  border-radius: var(--radius-xl);
}

.idea-card {
  padding: 28px;
  border: 1px solid var(--line-light);
  background: rgba(255, 255, 255, 0.04);
}

.idea-dot {
  display: inline-block;
  width: 12px;
  height: 12px;
  margin-bottom: 18px;
  border-radius: 999px;
  background: var(--sage);
  box-shadow: 0 0 0 10px rgba(143, 165, 142, 0.08);
  animation: ideaLedPulse 1.8s ease-in-out infinite;
}

.idea-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: 1.05rem;
}

.special-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 18px;
}

.special-card {
  overflow: hidden;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
  transform-origin: center;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
  animation: specialPulse 2.8s ease-in-out infinite;
}

.special-card:nth-child(2) {
  animation-delay: 0.28s;
}

.special-card:nth-child(3) {
  animation-delay: 0.56s;
}

.special-card:nth-child(4) {
  animation-delay: 0.84s;
}

.special-card:hover {
  transform: translateY(-10px) scale(1.05);
  box-shadow: 0 30px 54px rgba(18, 18, 18, 0.18);
  border-color: rgba(166, 58, 50, 0.28);
  animation-play-state: paused;
}

.special-media {
  height: 260px;
  overflow: hidden;
}

.special-media img,
.gallery-shot img {
  height: 100%;
  object-fit: cover;
}

.special-card:hover .special-media img {
  transform: scale(1.08);
}

.special-media img {
  transition: transform 0.45s ease;
}

.special-copy {
  padding: 24px;
}

.special-copy h3,
.menu-panel h3,
.reason-card h3 {
  margin: 0 0 10px;
  font-size: 2rem;
}

.stats-section {
  padding: 78px 0;
}

.stats-grid {
  width: min(100%, calc(100% - 64px));
  max-width: 1320px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.stat-card {
  padding: 28px 24px;
  background: rgba(0, 0, 0, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
}

.stat-card strong {
  display: block;
  margin-bottom: 10px;
  font-size: clamp(2rem, 4vw, 3rem);
  line-height: 0.95;
}

.menu-layout {
  display: grid;
  gap: 18px;
}

.menu-columns {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.menu-panel {
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.menu-item + .menu-item {
  margin-top: 22px;
  padding-top: 22px;
  border-top: 1px solid rgba(31, 31, 31, 0.08);
}

.menu-item {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 14px;
}

.menu-item strong {
  display: block;
  margin-bottom: 6px;
}

.menu-item span {
  color: var(--tomato);
  font-weight: 800;
}

.menu-cta {
  padding-top: 8px;
}

.gallery-editorial {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr 1fr 0.9fr;
  grid-template-rows: repeat(3, 260px);
  grid-template-areas:
    "a a b c"
    "a a d d"
    "e f d d";
  gap: 0;
  width: 100%;
}

.gallery-shot {
  overflow: hidden;
  min-height: 0;
}

.gallery-a {
  grid-area: a;
}

.gallery-b {
  grid-area: b;
}

.gallery-c {
  grid-area: c;
}

.gallery-d {
  grid-area: d;
}

.gallery-e {
  grid-area: e;
}

.gallery-f {
  grid-area: f;
}

.gallery-shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.01);
}

.reasons-grid,
.reviews-track,
.footer-grid {
  display: grid;
  gap: 18px;
}

.reasons-grid {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.reason-card,
.review-card {
  padding: 28px;
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid var(--line-dark);
  box-shadow: var(--shadow);
}

.reason-card {
  transition: transform 0.65s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.45s ease, border-color 0.45s ease;
  transform-origin: center;
  will-change: transform;
}

.reason-card:hover {
  transform: translateY(-18px) rotate(360deg) scale(2);
  box-shadow: 0 42px 72px rgba(18, 18, 18, 0.24);
  border-color: rgba(166, 58, 50, 0.28);
  position: relative;
  z-index: 6;
}

.reviews-track {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.review-card strong {
  display: block;
  margin-top: 18px;
}

.booking-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  align-items: center;
  gap: 36px;
}

.booking-copy {
  max-width: 560px;
}

.booking-layout p,
.section-dark .section-heading p,
.section-dark .idea-card p {
  color: rgba(244, 239, 232, 0.76);
}

.site-footer {
  padding: 34px 0 44px;
  background: #110f0e;
  color: #f4efe8;
  border-top: 1px solid rgba(181, 110, 74, 0.38);
}

.modal {
  position: fixed;
  inset: 0;
  z-index: 70;
  display: none;
  padding: 16px 0;
  overflow-y: auto;
  overscroll-behavior: contain;
}

.modal.is-open {
  display: block;
}

.modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(17, 17, 17, 0.58);
}

.modal-dialog {
  position: relative;
  width: min(760px, calc(100% - 24px));
  margin: 48px auto;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(244, 239, 232, 0.98);
  border: 1px solid rgba(31, 31, 31, 0.1);
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.22);
  max-height: calc(100vh - 32px);
  overflow-y: auto;
}

.modal-dialog-wide {
  width: min(1120px, calc(100% - 24px));
}

.modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  border: 1px solid rgba(31, 31, 31, 0.12);
  background: rgba(255, 255, 255, 0.76);
  color: var(--anthracite);
  cursor: pointer;
  font-size: 1.5rem;
  line-height: 1;
}

.modal-copy {
  max-width: 580px;
  color: var(--muted-dark);
  line-height: 1.8;
}

.modal-menu-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 22px;
}

.modal-menu-panel {
  padding: 24px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.74);
  border: 1px solid rgba(31, 31, 31, 0.08);
  box-shadow: 0 18px 38px rgba(18, 18, 18, 0.08);
}

.modal-menu-panel h3 {
  margin: 0 0 16px;
  font-size: 2rem;
  font-family: "Cormorant Garamond", serif;
}

.menu-modal-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.booking-form {
  margin-top: 18px;
}

.booking-inline-form {
  margin-top: 0;
  padding: 28px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(244, 239, 232, 0.12);
  box-shadow: 0 24px 44px rgba(0, 0, 0, 0.18);
}

.booking-inline-form .form-grid {
  margin-bottom: 12px;
}

.booking-inline-form .btn {
  margin-top: 4px;
}

.booking-inline-form label,
.booking-inline-form input,
.booking-inline-form select,
.booking-inline-form textarea {
  color: #f4efe8;
}

.booking-inline-form input,
.booking-inline-form select,
.booking-inline-form textarea {
  border-color: rgba(244, 239, 232, 0.14);
  background: rgba(255, 255, 255, 0.08);
}

.booking-inline-form select option {
  color: var(--anthracite);
}

.booking-inline-form .consent-check {
  margin: 14px 0 18px;
  color: rgba(244, 239, 232, 0.76);
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-bottom: 14px;
}

.booking-form label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.92rem;
  font-weight: 700;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  width: 100%;
  padding: 14px 15px;
  border-radius: 16px;
  border: 1px solid rgba(31, 31, 31, 0.1);
  background: rgba(255, 255, 255, 0.84);
  color: var(--anthracite);
}

.booking-form textarea {
  min-height: 120px;
  resize: vertical;
}

.consent-check {
  margin: 14px 0 18px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  color: var(--muted-dark);
  line-height: 1.6;
}

.consent-check input {
  width: 18px;
  height: 18px;
  margin-top: 3px;
  accent-color: var(--tomato);
  flex: 0 0 auto;
}

.form-status {
  min-height: 1.4em;
  margin: 14px 0 0;
  color: var(--tomato);
}

.footer-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  align-items: start;
}

.footer-grid > div {
  display: grid;
  gap: 6px;
}

.footer-brand span {
  max-width: 220px;
}

.footer-copy {
  margin-top: 10px;
  color: rgba(244, 239, 232, 0.5);
}

.footer-contact span,
.footer-meta span {
  line-height: 1.6;
}

.footer-meta {
  justify-items: end;
}

.footer-socials {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-top: 4px;
}

.footer-socials a {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  border: 1px solid rgba(244, 239, 232, 0.14);
  background: rgba(255, 255, 255, 0.04);
  transition: transform 0.25s ease, background 0.25s ease, border-color 0.25s ease;
}

.footer-socials a:hover {
  transform: translateY(-2px);
  background: rgba(181, 110, 74, 0.16);
  border-color: rgba(181, 110, 74, 0.34);
}

.footer-socials svg {
  width: 18px;
  height: 18px;
  fill: #f4efe8;
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.16s;
}

.delay-3 {
  transition-delay: 0.24s;
}

@keyframes specialPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 22px 44px rgba(18, 18, 18, 0.12);
  }
  50% {
    transform: scale(1.018);
    box-shadow: 0 28px 48px rgba(18, 18, 18, 0.15);
  }
}

@keyframes ideaLedPulse {
  0%,
  100% {
    opacity: 0.62;
    filter: brightness(0.9);
    box-shadow:
      0 0 0 10px rgba(143, 165, 142, 0.08),
      0 0 0 rgba(143, 165, 142, 0);
  }
  50% {
    opacity: 1;
    filter: brightness(1.2);
    box-shadow:
      0 0 0 10px rgba(143, 165, 142, 0.12),
      0 0 18px rgba(143, 165, 142, 0.62);
  }
}

@media (max-width: 1120px) {
  .desktop-nav {
    display: none;
  }

  .header-book {
    display: inline-flex;
    padding: 12px 18px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .site-header.is-open .mobile-nav {
    display: block;
  }

  .hero-layout,
  .about-grid,
  .idea-layout,
  .booking-layout,
  .form-grid,
  .modal-menu-grid,
  .special-grid,
  .menu-columns,
  .reasons-grid,
  .reviews-track,
  .footer-grid,
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }

  .hero-layout,
  .about-grid,
  .idea-layout,
  .booking-layout {
    display: grid;
  }

  .hero-layout {
    grid-template-columns: 1fr;
  }

  .hero-note {
    max-width: 460px;
  }

  .gallery-editorial {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(4, 240px);
    grid-template-areas:
      "a a"
      "b c"
      "d d"
      "e f";
  }
}

@media (max-width: 720px) {
  .header-inner,
  .section-inner,
  .stats-grid,
  .mobile-nav {
    width: min(100%, calc(100% - 22px));
  }

  .header-inner {
    padding: 14px 0;
  }

  .header-actions {
    gap: 10px;
  }

  .header-book {
    font-size: 0.92rem;
    padding: 12px 16px;
  }

  .brand-mark {
    width: 46px;
    height: 46px;
  }

  .brand-copy strong {
    font-size: 1.5rem;
  }

  .brand-copy span {
    font-size: 0.82rem;
  }

  .section {
    padding: 84px 0;
  }

  .hero,
  .hero-layout {
    min-height: 92vh;
  }

  .hero-layout {
    padding-bottom: 26px;
  }

  .hero h1,
  .section h2,
  .booking-layout h2 {
    font-size: clamp(2.9rem, 13vw, 4.2rem);
  }

  .about-grid,
  .idea-layout,
  .booking-layout,
  .special-grid,
  .stats-grid,
  .menu-columns,
  .reasons-grid,
  .reviews-track,
  .footer-grid,
  .gallery-editorial,
  .form-grid,
  .modal-menu-grid {
    grid-template-columns: 1fr;
  }

  .gallery-editorial {
    grid-template-rows: repeat(6, 220px);
    grid-template-areas:
      "a"
      "b"
      "c"
      "d"
      "e"
      "f";
  }

  .about-copy,
  .special-copy,
  .menu-panel,
  .reason-card,
  .review-card,
  .stat-card {
    padding: 24px;
  }

  .footer-meta {
    justify-items: start;
  }

  .about-media {
    min-height: 340px;
  }

  .special-media {
    height: 220px;
  }

  .modal {
    padding: 10px 0;
  }

  .modal-dialog {
    width: min(100%, calc(100% - 18px));
    margin: 10px auto;
    max-height: calc(100vh - 20px);
    padding: 24px;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.footer-links a {
  color: rgba(244, 239, 232, 0.7);
  transition: color 0.25s ease;
}

.footer-links a:hover {
  color: #fff;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  z-index: 85;
  display: none;
}

.cookie-banner.is-visible {
  display: block;
}

.cookie-banner-inner {
  max-width: 980px;
  margin: 0 auto;
  padding: 18px 20px;
  border-radius: 24px;
  background: rgba(17, 15, 14, 0.96);
  color: #f4efe8;
  box-shadow: 0 28px 52px rgba(0, 0, 0, 0.26);
  border: 1px solid rgba(181, 110, 74, 0.22);
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px 22px;
  align-items: center;
}

.cookie-copy {
  display: grid;
  gap: 8px;
}

.cookie-copy p {
  margin: 0;
  line-height: 1.7;
  color: rgba(244, 239, 232, 0.76);
}

.cookie-copy a {
  color: #f4efe8;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: flex-end;
}

.cookie-actions .btn {
  min-width: 142px;
}

@media (max-width: 720px) {
  .cookie-banner {
    left: 10px;
    right: 10px;
    bottom: 10px;
  }

  .cookie-banner-inner {
    grid-template-columns: 1fr;
    padding: 16px;
  }

  .cookie-actions {
    justify-content: stretch;
  }

  .cookie-actions .btn {
    width: 100%;
  }
}

.whatsapp-float {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 80;
  width: 68px;
  height: 68px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  background: linear-gradient(145deg, #2ee16a, #16bf53);
  box-shadow: 0 18px 34px rgba(22, 191, 83, 0.3);
  animation: whatsappPulse 2.2s ease-in-out infinite;
}

.braciavia-chat-launcher {
  position: fixed;
  right: 20px;
  bottom: 104px;
  z-index: 90;
  width: 64px;
  height: 64px;
  border: 0;
  border-radius: 999px;
  padding: 0;
  background: linear-gradient(145deg, #a63a32, #b56e4a);
  color: #fff;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 0 18px 34px rgba(166, 58, 50, 0.28);
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.braciavia-chat-launcher svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}

.braciavia-chat {
  position: fixed;
  right: 20px;
  bottom: 104px;
  z-index: 90;
  width: min(380px, calc(100vw - 28px));
  height: min(620px, calc(100vh - 140px));
  display: grid;
  grid-template-rows: auto 1fr auto;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.76);
  border-radius: 20px;
  background: rgba(244, 239, 232, 0.94);
  box-shadow: 0 24px 54px rgba(16, 16, 16, 0.22);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.braciavia-chat.is-hidden {
  display: none;
}

.braciavia-chat__header {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 12px;
  padding: 20px;
  background: #161833;
  color: #f4efe8;
}

.braciavia-chat__header-copy {
  display: grid;
  gap: 6px;
  min-width: 0;
  flex: 1 1 auto;
}

.braciavia-chat__header strong {
  font-family: "Cormorant Garamond", serif;
  font-size: 2.4rem;
  line-height: 1;
}

.braciavia-chat__header span {
  font-size: 1rem;
  color: rgba(244, 239, 232, 0.85);
}

.braciavia-chat__close {
  flex: 0 0 auto;
  width: 38px;
  height: 38px;
  min-width: 38px;
  padding: 0;
  border: 1px solid rgba(244, 239, 232, 0.16);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.06);
  color: #f4efe8;
  font-size: 1.7rem;
  line-height: 1;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  appearance: none;
  -webkit-appearance: none;
}

.braciavia-chat__close:hover {
  background: rgba(255, 255, 255, 0.12);
}

.braciavia-chat__messages {
  display: grid;
  align-content: start;
  gap: 12px;
  padding: 18px;
  overflow-y: auto;
}

.braciavia-chat__message {
  max-width: 86%;
  padding: 14px 16px;
  border-radius: 16px;
  line-height: 1.5;
  background: rgba(255, 255, 255, 0.9);
  color: var(--text-dark);
}

.braciavia-chat__message--bot {
  justify-self: start;
}

.braciavia-chat__message--user {
  justify-self: end;
  background: rgba(166, 58, 50, 0.14);
}

.braciavia-chat__composer {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 10px;
  padding: 16px;
  border-top: 1px solid rgba(31, 31, 31, 0.08);
  background: rgba(244, 239, 232, 0.98);
  pointer-events: auto;
}

.braciavia-chat__input {
  position: relative;
  z-index: 3;
  min-width: 0;
  padding: 14px 16px;
  border: 1px solid rgba(31, 31, 31, 0.12);
  border-radius: 14px;
  background: #fff;
  color: var(--text-dark);
  pointer-events: auto;
}

.braciavia-chat__input:focus {
  outline: 2px solid rgba(166, 58, 50, 0.24);
  border-color: rgba(166, 58, 50, 0.4);
}

.braciavia-chat__send {
  position: relative;
  z-index: 3;
  min-width: 82px;
  min-height: 52px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 0;
  border-radius: 14px;
  padding: 0 18px;
  background: linear-gradient(145deg, #a63a32, #b56e4a);
  color: #fff;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
  pointer-events: auto;
}

.braciavia-chat__status {
  padding: 0 16px 14px;
  font-size: 0.92rem;
  color: rgba(31, 31, 31, 0.72);
}

.whatsapp-float svg {
  width: 34px;
  height: 34px;
  fill: #fff;
}

.whatsapp-float:hover {
  transform: translateY(-2px);
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 18px 34px rgba(22, 191, 83, 0.3);
  }
  50% {
    transform: scale(1.06);
    box-shadow: 0 24px 40px rgba(22, 191, 83, 0.4);
  }
}

@media (max-width: 720px) {
  .whatsapp-float {
    right: 14px;
    bottom: 14px;
    width: 62px;
    height: 62px;
  }

  .braciavia-chat-launcher {
    right: 14px;
    bottom: 88px;
  }

  .braciavia-chat {
    right: 14px;
    bottom: 88px;
    width: calc(100vw - 28px);
    height: min(560px, calc(100vh - 120px));
  }
}
