:root {
  --wine: #592a43;
  --wine-deep: #452032;
  --clay: #5c3b3c;
  --apricot: #ffac55;
  --apricot-soft: rgba(255, 172, 85, 0.35);
  --cream: #fff8ef;
  --paper: #fffdf9;
  --ink: #2c1f24;
  --muted: #66515a;
  --line: #e5d5c4;
  --ok: #2d6a4f;
  --shadow-soft: 0 14px 35px rgba(69, 32, 50, 0.16);
  --shadow-card: 0 10px 24px rgba(48, 27, 39, 0.12);
  --radius-lg: 26px;
  --radius-md: 16px;
  --radius-sm: 10px;
  --container: 1160px;
  --nav-height: 84px;
}

* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: var(--ink);
  background:
    radial-gradient(circle at 8% 10%, rgba(255, 172, 85, 0.22), transparent 36%),
    radial-gradient(circle at 90% 0%, rgba(89, 42, 67, 0.12), transparent 34%),
    var(--paper);
  line-height: 1.6;
}

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

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

main {
  min-height: calc(100vh - var(--nav-height) - 320px);
}

.container {
  width: min(var(--container), calc(100% - 2.2rem));
  margin: 0 auto;
}

.section {
  padding: clamp(3rem, 5vw, 5.5rem) 0;
}

.section--tight {
  padding: clamp(2rem, 4vw, 3rem) 0;
}

.section-title {
  font-family: "Cormorant Garamond", "Times New Roman", serif;
  font-size: clamp(2rem, 4.2vw, 3.3rem);
  line-height: 1.05;
  letter-spacing: 0.01em;
  margin: 0 0 1rem;
  color: var(--wine-deep);
}

.section-subtitle {
  margin: 0;
  color: var(--muted);
}

.eyebrow {
  margin: 0;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  font-size: 0.73rem;
  font-weight: 700;
  color: var(--wine);
}

.btn {
  border: 0;
  cursor: pointer;
  font: inherit;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.78rem 1.2rem;
  border-radius: 999px;
  transition: transform 0.22s ease, background-color 0.22s ease, color 0.22s ease, box-shadow 0.22s ease;
}

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

.btn-primary {
  background: linear-gradient(130deg, var(--wine), var(--clay));
  color: #fff;
  box-shadow: 0 9px 18px rgba(89, 42, 67, 0.22);
}

.btn-primary:hover {
  background: linear-gradient(130deg, #6a3350, #664546);
}

.btn-outline {
  border: 1px solid rgba(89, 42, 67, 0.35);
  color: var(--wine);
  background: rgba(255, 255, 255, 0.72);
}

.btn-outline:hover {
  border-color: var(--wine);
  background: rgba(255, 255, 255, 0.95);
}

.text-link {
  color: var(--wine);
  font-weight: 700;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid rgba(89, 42, 67, 0.14);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(10px);
  box-shadow: 0 8px 24px rgba(53, 25, 38, 0.08);
}

.header-inner {
  min-height: var(--nav-height);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.9rem;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.62rem;
  flex-shrink: 0;
}

.brand__logo {
  width: 50px;
  height: 50px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(89, 42, 67, 0.18);
}

.brand__name {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.24rem;
  line-height: 1;
  color: var(--wine-deep);
  white-space: nowrap;
}

.brand__tag {
  margin: 0;
  font-size: 0.69rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
  white-space: nowrap;
}

.nav-toggle {
  display: none;
  margin-left: auto;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 1px solid rgba(89, 42, 67, 0.18);
  color: var(--wine);
  background: #fff;
}

.primary-nav {
  justify-self: center;
}

.nav-list {
  display: flex;
  align-items: center;
  gap: 0.18rem;
  list-style: none;
  margin: 0;
  padding: 0.34rem;
  border: 1px solid rgba(89, 42, 67, 0.14);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.95);
  box-shadow: 0 10px 24px rgba(53, 25, 38, 0.08);
}

.nav-item > a {
  display: block;
  font-weight: 700;
  font-size: 0.89rem;
  color: var(--muted);
  padding: 0.56rem 0.84rem;
  border-radius: 999px;
  white-space: nowrap;
  transition: color 0.2s ease, background-color 0.2s ease;
}

.nav-item > a:hover,
.nav-item.active > a {
  color: #fff;
  background: linear-gradient(130deg, var(--wine), var(--clay));
}

.has-dropdown {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 0.1rem;
}

.has-dropdown::after {
  content: "";
  position: absolute;
  top: 100%;
  left: -0.8rem;
  right: -0.8rem;
  height: 0.8rem;
}

.drop-toggle {
  border: 0;
  background: transparent;
  color: var(--muted);
  font-size: 0.78rem;
  padding: 0.54rem 0.42rem 0.54rem 0;
  cursor: pointer;
  border-radius: 999px;
}

.dropdown-menu {
  position: absolute;
  top: calc(100% + 0.8rem);
  left: -0.8rem;
  min-width: 300px;
  list-style: none;
  margin: 0;
  padding: 0.45rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(89, 42, 67, 0.14);
  background: #fff;
  box-shadow: var(--shadow-soft);
  opacity: 0;
  transform: translateY(8px);
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  z-index: 55;
}

.dropdown-menu li a {
  display: block;
  padding: 0.62rem 0.8rem;
  border-radius: var(--radius-sm);
  font-size: 0.92rem;
  color: var(--ink);
}

.dropdown-menu li a:hover {
  background: rgba(255, 172, 85, 0.18);
  color: var(--wine);
}

.has-dropdown:hover .dropdown-menu,
.has-dropdown:focus-within .dropdown-menu,
.has-dropdown.open .dropdown-menu {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}

.header-quick {
  display: inline-flex;
  align-items: center;
  gap: 0.42rem;
}

.header-pill {
  border: 1px solid rgba(89, 42, 67, 0.16);
  border-radius: 999px;
  padding: 0.41rem 0.72rem;
  font-size: 0.76rem;
  font-weight: 700;
  color: var(--wine);
  background: #fff;
  white-space: nowrap;
}

.header-pill--wa {
  background: #e9fdf2;
  color: #126a3b;
  border-color: #97d9b6;
}

.hero-slider {
  position: relative;
  min-height: min(80vh, 720px);
  isolation: isolate;
  overflow: hidden;
  border-bottom: 1px solid rgba(89, 42, 67, 0.12);
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transform: scale(1.06);
  transition: opacity 0.7s ease, transform 1.2s ease;
}

.hero-slide::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(120deg, rgba(45, 16, 32, 0.64), rgba(45, 16, 32, 0.22) 55%, rgba(45, 16, 32, 0.12));
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: min(80vh, 720px);
  display: flex;
  justify-content: center;
  align-items: center;
  padding: clamp(2rem, 5vw, 3rem) 0 clamp(4.8rem, 9vw, 6.2rem);
}

.hero-logo-wrap {
  display: grid;
  justify-items: center;
  gap: 0.8rem;
  text-align: center;
}

.hero-logo {
  width: min(290px, 64vw);
  border-radius: 999px;
  padding: clamp(0.48rem, 1.2vw, 0.75rem);
  background: rgba(255, 255, 255, 0.82);
  border: 1px solid rgba(255, 255, 255, 0.65);
  box-shadow: 0 22px 48px rgba(31, 14, 23, 0.34);
}

.hero-logo-caption {
  margin: 0;
  color: rgba(255, 255, 255, 0.92);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  text-shadow: 0 6px 14px rgba(0, 0, 0, 0.36);
}

.hero-title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 1;
  font-size: clamp(2.2rem, 6.5vw, 4.4rem);
  color: var(--wine-deep);
}

.hero-text {
  margin: 0.85rem 0 0;
  color: var(--muted);
}

.hero-actions {
  margin-top: 0.55rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
}

.hero-controls {
  position: absolute;
  z-index: 3;
  left: 50%;
  transform: translateX(-50%);
  bottom: 1.1rem;
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.hero-control {
  border: 0;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  font-size: 1rem;
  color: #fff;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.hero-dots {
  display: flex;
  gap: 0.35rem;
}

.hero-dot {
  border: 0;
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.45);
  cursor: pointer;
}

.hero-dot.is-active {
  background: #fff;
}

.quote-band {
  background:
    linear-gradient(125deg, rgba(255, 172, 85, 0.5), rgba(255, 172, 85, 0.2)),
    var(--cream);
  border-top: 1px solid rgba(89, 42, 67, 0.08);
  border-bottom: 1px solid rgba(89, 42, 67, 0.08);
}

.quote-band blockquote {
  margin: 0;
  text-align: center;
  color: var(--wine);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.8rem, 4vw, 2.9rem);
  line-height: 1.2;
}

.quote-band p {
  margin: 0.6rem 0 0;
  text-align: center;
  color: var(--muted);
  font-size: 0.96rem;
}

.home-intro {
  padding-top: clamp(1.25rem, 4vw, 2.4rem);
}

.intro-panel {
  max-width: 860px;
  margin: 0 auto;
  text-align: center;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(89, 42, 67, 0.15);
  box-shadow: var(--shadow-soft);
  padding: clamp(1.2rem, 3vw, 2rem);
}

.intro-panel .section-title {
  margin-bottom: 0.62rem;
}

.split {
  display: grid;
  gap: clamp(1.25rem, 3vw, 2.8rem);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  align-items: center;
}

.portrait-wrap {
  position: relative;
}

.portrait-wrap::after {
  content: "";
  position: absolute;
  inset: 10% -7% -10% 14%;
  background: var(--apricot-soft);
  border-radius: 40% 60% 61% 39% / 38% 45% 55% 62%;
  z-index: -1;
}

.portrait {
  width: min(540px, 100%);
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 46% 54% 49% 51% / 42% 39% 61% 58%;
  box-shadow: var(--shadow-soft);
  border: 4px solid #fff;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.feature-list {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.65rem;
  margin: 1.25rem 0;
  padding: 0;
}

.feature-list li {
  border: 1px solid rgba(89, 42, 67, 0.12);
  border-radius: 999px;
  padding: 0.42rem 0.65rem;
  text-align: center;
  font-size: 0.84rem;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.75);
}

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

.service-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(89, 42, 67, 0.13);
  box-shadow: var(--shadow-card);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.service-card__image {
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.service-card__body {
  display: flex;
  flex-direction: column;
  gap: 0.7rem;
  padding: 1rem;
  flex: 1;
}

.service-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.55rem;
  color: var(--wine-deep);
  line-height: 1.15;
}

.service-card p {
  margin: 0;
  color: var(--muted);
  font-size: 0.95rem;
}

.service-card__meta {
  margin-top: auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 0.8rem;
}

.chip {
  border: 1px solid rgba(89, 42, 67, 0.2);
  border-radius: 999px;
  padding: 0.22rem 0.64rem;
  font-size: 0.8rem;
  color: var(--wine);
  background: rgba(255, 255, 255, 0.8);
}

.page-hero {
  position: relative;
  overflow: hidden;
  color: #fff;
  min-height: clamp(250px, 45vw, 360px);
  display: grid;
  align-items: end;
  background-image:
    linear-gradient(125deg, rgba(41, 18, 30, 0.72), rgba(41, 18, 30, 0.35)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.page-hero .container {
  padding: clamp(2.4rem, 5vw, 3.6rem) 0;
}

.page-hero h1 {
  margin: 0.22rem 0 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2.15rem, 6vw, 4rem);
  line-height: 1.05;
}

.page-hero p {
  margin: 0;
}

.two-col {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(0, 0.8fr);
  gap: clamp(1.1rem, 3vw, 2rem);
  align-items: start;
}

.prose p {
  margin: 0 0 1rem;
}

.prose ul {
  margin: 0.3rem 0 1rem;
  padding-left: 1.1rem;
}

.price-card {
  background: #fff;
  border-radius: var(--radius-md);
  border: 1px solid rgba(89, 42, 67, 0.15);
  box-shadow: var(--shadow-card);
  padding: 1.1rem;
  position: sticky;
  top: calc(var(--nav-height) + 1rem);
}

.price-card h2,
.price-card h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  color: var(--wine-deep);
  font-size: 1.7rem;
}

.price-list {
  margin: 0.9rem 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.price-list li {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.65rem 0;
  border-bottom: 1px solid var(--line);
  color: var(--muted);
}

.price-note {
  margin: 0;
  font-size: 0.9rem;
  color: var(--muted);
}

.booking-layout {
  display: grid;
  gap: clamp(1rem, 3vw, 2rem);
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
}

.card {
  background: #fff;
  border: 1px solid rgba(89, 42, 67, 0.14);
  box-shadow: var(--shadow-card);
  border-radius: var(--radius-md);
  padding: clamp(1rem, 2vw, 1.4rem);
}

.opening-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.opening-table th,
.opening-table td {
  padding: 0.48rem 0.2rem;
  border-bottom: 1px solid var(--line);
}

.opening-table th {
  text-align: left;
  color: var(--muted);
  font-weight: 700;
}

.opening-table td:last-child {
  text-align: right;
  font-weight: 700;
  color: var(--wine);
}

.booking-form {
  display: grid;
  gap: 0.75rem;
}

.booking-form label {
  display: grid;
  gap: 0.32rem;
  font-size: 0.9rem;
  color: var(--muted);
}

.booking-form label input[type="checkbox"] {
  margin-right: 0.5rem;
  cursor: pointer;
}

.booking-form label:has(input[type="checkbox"]) {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.booking-form input,
.booking-form select,
.booking-form textarea {
  border: 1px solid rgba(89, 42, 67, 0.18);
  background: #fff;
  border-radius: 11px;
  padding: 0.64rem 0.76rem;
  font: inherit;
  color: var(--ink);
}

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

.form-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
}

.form-hint {
  margin: 0;
  font-size: 0.88rem;
  color: var(--muted);
}

.form-status {
  margin: 0;
  font-size: 0.9rem;
  color: var(--ok);
  min-height: 1.2em;
}

.map-embed {
  position: relative;
  display: grid;
  border: 1px solid rgba(89, 42, 67, 0.13);
  border-radius: var(--radius-md);
  overflow: hidden;
  min-height: 280px;
  box-shadow: var(--shadow-card);
  background: #fff;
}

.map-placeholder {
  display: grid;
  align-content: center;
  justify-items: center;
  gap: 0.85rem;
  min-height: 280px;
  padding: 1.1rem;
  text-align: center;
  background:
    linear-gradient(125deg, rgba(255, 172, 85, 0.22), rgba(89, 42, 67, 0.08)),
    #fff;
}

.map-placeholder p {
  margin: 0;
  color: var(--muted);
  max-width: 37ch;
}

.map-embed--loaded .map-placeholder {
  display: none;
}

.map-embed iframe {
  width: 100%;
  height: 100%;
  border: 0;
  min-height: 280px;
}

.notice-list {
  margin: 0;
  padding-left: 1.1rem;
}

.notice-list li {
  margin-bottom: 0.35rem;
}

.legal-content h2 {
  margin: 2rem 0 0.6rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.95rem;
  color: var(--wine-deep);
}

.legal-content h3 {
  margin: 1.25rem 0 0.45rem;
  font-size: 1.1rem;
  color: var(--wine);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
}

.legal-content ul {
  margin: 0.3rem 0 1rem;
  padding-left: 1.2rem;
}

.callout {
  border-left: 4px solid var(--wine);
  background: rgba(255, 172, 85, 0.2);
  padding: 0.82rem 0.95rem;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.site-footer {
  margin-top: clamp(2rem, 6vw, 4.5rem);
  border-top: 1px solid rgba(89, 42, 67, 0.1);
  background:
    linear-gradient(145deg, rgba(89, 42, 67, 0.95), rgba(62, 34, 44, 0.96));
  color: rgba(255, 255, 255, 0.93);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  padding: 2.2rem 0 1.3rem;
}

.footer-title {
  margin: 0 0 0.5rem;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.6rem;
  color: #fff;
}

.footer-col p,
.footer-col a,
.footer-col li {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.9rem;
}

.footer-col ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer-col li {
  margin-bottom: 0.35rem;
}

.footer-col a:hover {
  color: #fff;
  text-decoration: underline;
}

.social-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.8rem;
}

.social-list a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  transition: all 0.3s ease;
}

.social-list a:hover {
  border-color: rgba(255, 255, 255, 0.6);
  background: rgba(255, 255, 255, 0.1);
  color: #fff;
}

.footer-bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  padding: 0.9rem 0 1.3rem;
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.74);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.footer-bottom a {
  color: rgba(255, 255, 255, 0.74);
  text-decoration: none;
  transition: color 0.3s ease;
}

.footer-bottom a:hover {
  color: rgba(255, 255, 255, 1);
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  clip: rect(0, 0, 0, 0);
  clip-path: inset(50%);
  overflow: hidden;
  white-space: nowrap;
}

.cookie-banner {
  position: fixed;
  left: 1rem;
  right: 1rem;
  bottom: 1rem;
  z-index: 120;
  pointer-events: none;
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease;
}

.cookie-banner.is-visible {
  pointer-events: auto;
  opacity: 1;
  transform: translateY(0);
}

.cookie-banner__inner {
  width: min(960px, 100%);
  margin: 0 auto;
  background:
    linear-gradient(145deg, rgba(255, 248, 239, 0.98), rgba(255, 255, 255, 0.98));
  border: 1px solid rgba(89, 42, 67, 0.16);
  border-radius: var(--radius-md);
  box-shadow: var(--shadow-soft);
  padding: 1rem;
}

.cookie-banner__title {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  color: var(--wine-deep);
  line-height: 1.05;
}

.cookie-banner__text {
  margin: 0.45rem 0 0.7rem;
  color: var(--muted);
  font-size: 0.92rem;
}

.cookie-banner__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin: 0 0 0.6rem;
}

@media (max-width: 1260px) {
  .brand__tag {
    display: none;
  }

  .brand__name {
    font-size: 1.1rem;
  }

  .nav-item > a {
    padding: 0.5rem 0.72rem;
    font-size: 0.84rem;
  }
}

@media (max-width: 1080px) {
  .header-quick {
    display: none;
  }

  .nav-item > a {
    padding: 0.47rem 0.62rem;
    font-size: 0.8rem;
  }

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

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

@media (max-width: 900px) {
  .header-inner {
    display: flex;
    gap: 0.62rem;
  }

  .brand__tag {
    display: none;
  }

  .nav-toggle {
    display: inline-grid;
    place-items: center;
  }

  .primary-nav {
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid rgba(89, 42, 67, 0.1);
    border-bottom: 1px solid rgba(89, 42, 67, 0.1);
    max-height: calc(100vh - var(--nav-height));
    overflow: auto;
    padding: 0 1rem;
    opacity: 0;
    transform: translateY(-8px);
    pointer-events: none;
    transition: opacity 0.22s ease, transform 0.22s ease;
  }

  body.nav-open .primary-nav {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
  }

  .nav-list {
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: transparent;
    padding: 0.45rem 0 0.75rem;
  }

  .nav-item {
    border-bottom: 1px solid rgba(89, 42, 67, 0.08);
  }

  .nav-item > a {
    display: block;
    border: 0;
    padding: 0.75rem 0;
  }

  .has-dropdown {
    flex-wrap: wrap;
  }

  .has-dropdown::after {
    display: none;
  }

  .drop-toggle {
    margin-left: auto;
    padding: 0.75rem 0;
  }

  .dropdown-menu {
    position: static;
    min-width: 100%;
    box-shadow: none;
    border: 0;
    border-top: 1px dashed rgba(89, 42, 67, 0.2);
    border-radius: 0;
    padding: 0.35rem 0 0.6rem;
    opacity: 1;
    transform: none;
    pointer-events: auto;
    display: none;
  }

  .has-dropdown.open .dropdown-menu {
    display: block;
  }

  .split,
  .two-col,
  .booking-layout {
    grid-template-columns: 1fr;
  }

  .price-card {
    position: static;
  }
}

@media (max-width: 640px) {
  .brand__name {
    font-size: 1.17rem;
  }

  .brand__tag {
    font-size: 0.67rem;
  }

  .service-grid,
  .footer-grid,
  .feature-list {
    grid-template-columns: 1fr;
  }

  .hero-control {
    width: 34px;
    height: 34px;
  }

  .container {
    width: min(var(--container), calc(100% - 1.3rem));
  }

  .cookie-banner {
    left: 0.65rem;
    right: 0.65rem;
    bottom: 0.65rem;
  }

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