:root {
  --bg: #0d1220;
  --surface: #141b2c;
  --surface-alt: #1b2338;
  --text: #eef1f8;
  --text-muted: #a4adc2;
  --border: rgba(238, 241, 248, 0.13);
  --accent: #c8a253;
  --accent-2: #3f5a8a;
  --secondary: #080c16;
  --on-accent: #0d1220;
  --deep: #060911;
  --radius: 4px;
  --max-width: 1100px;
  --section-pad: 96px;
  --font-heading: 'Trebuchet MS', 'Segoe UI', sans-serif;
  --font-body: Cambria, Georgia, serif;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
}

body {
  margin: 0;
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.7;
  color: var(--text);
  background: var(--bg);
  overflow-x: hidden;
}

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

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-heading);
  font-weight: 600;
  letter-spacing: -0.4px;
  line-height: 1.2;
  margin-top: 0;
}

h1 {
  font-size: clamp(37px, 5.8vw, 62px);
  line-height: 1.1;
}

h2 {
  font-size: clamp(25px, 3.8vw, 38px);
}

p {
  margin: 0 0 1em;
}

p:last-child {
  margin-bottom: 0;
}

.kicker {
  font-family: var(--font-heading);
  font-size: 12px;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}

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

.section {
  padding: var(--section-pad) 0;
}

.section--alt {
  background: var(--surface-alt);
}

.section--surface {
  background: var(--surface);
}

.btn {
  display: inline-block;
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 14px 28px;
  border: none;
  border-radius: 0;
  cursor: pointer;
  text-decoration: none;
  transition: background 0.2s, color 0.2s;
}

.btn--primary {
  background: var(--accent);
  color: var(--on-accent);
}

.btn--primary:hover {
  background: #d4b06a;
  text-decoration: none;
}

.btn--secondary {
  background: transparent;
  color: var(--text);
  border: 1px solid var(--border);
}

.btn--secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
  text-decoration: none;
}

.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.utility-strip {
  background: var(--deep);
  padding: 6px 24px;
  font-family: var(--font-heading);
  font-size: 11px;
  text-align: right;
}

.utility-strip a {
  color: var(--text-muted);
  text-decoration: none;
}

.utility-strip a:hover {
  color: var(--accent);
}

.site-header {
  background: var(--secondary);
  border-bottom: 1px solid var(--border);
  position: sticky;
  top: 0;
  z-index: 100;
  transition: box-shadow 0.2s;
}

.site-header.is-scrolled {
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.35);
}

.nav-inner {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  min-height: 64px;
  gap: 16px;
}

.nav-left {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-start;
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 24px;
  justify-content: flex-end;
}

.nav-center {
  display: flex;
  justify-content: center;
}

.nav-brand img {
  display: block;
}

.nav-link {
  font-family: var(--font-heading);
  font-size: 15px;
  color: var(--text);
  text-decoration: none;
  position: relative;
  padding: 4px 0;
}

.nav-link:hover {
  color: var(--accent);
  text-decoration: none;
}

.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.25s ease;
}

.nav-link:hover::after,
.nav-link[aria-current="page"]::after {
  width: 100%;
}

.nav-link[aria-current="page"] {
  color: var(--accent);
}

.nav-cta-group {
  display: flex;
  align-items: center;
  gap: 10px;
}

.nav-cta-pill {
  font-family: var(--font-heading);
  font-size: 12px;
  font-weight: 600;
  padding: 6px 14px;
  background: var(--accent);
  color: var(--on-accent);
  border-radius: 999px;
  text-decoration: none;
  white-space: nowrap;
}

.nav-cta-pill:hover {
  background: #d4b06a;
  text-decoration: none;
}

.nav-cta-email {
  font-family: var(--font-heading);
  font-size: 10px;
  color: var(--text-muted);
  text-decoration: none;
}

.nav-cta-email:hover {
  color: var(--accent);
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  padding: 8px 10px;
  cursor: pointer;
  border-radius: var(--radius);
  font-family: var(--font-heading);
  font-size: 13px;
}

.nav-drawer {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(6, 9, 17, 0.92);
  z-index: 200;
  padding: 80px 24px 24px;
  overflow-y: auto;
}

.nav-drawer.is-open {
  display: block;
}

.nav-drawer-inner {
  max-width: 360px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.nav-drawer .nav-link {
  font-size: 18px;
  padding: 8px 0;
}

.independence-notice {
  background: var(--surface);
  border-bottom: 1px solid var(--border);
  padding: 10px 24px;
  font-size: 13px;
  color: var(--text-muted);
  text-align: center;
  line-height: 1.5;
}

.responsible-line {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 16px;
}

.hero-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
  padding: var(--section-pad) 0;
}

.hero-split__content {
  padding-right: 16px;
}

.hero-split__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 420px;
  border-radius: var(--radius);
}

.hero-intro {
  font-size: 19px;
  color: var(--text-muted);
  margin: 1.5rem 0 2rem;
  max-width: 48ch;
}

.venue-list {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.venue-row {
  display: grid;
  grid-template-columns: 40% 1fr;
  gap: 32px;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s;
}

.venue-row:hover {
  border-color: var(--accent);
  text-decoration: none;
}

.venue-row__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 220px;
}

.venue-row__body {
  padding: 28px 28px 28px 0;
}

.venue-row__meta {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.venue-row__rating {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 14px;
  margin-bottom: 12px;
}

.venue-row h2 {
  font-size: clamp(22px, 3vw, 30px);
  margin-bottom: 12px;
  color: var(--text);
}

.venue-row__link {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--accent);
  margin-top: 16px;
  display: inline-block;
}

.faq-list {
  list-style: none;
  padding: 0;
  margin: 0;
  max-width: 720px;
}

.faq-list li {
  margin-bottom: 28px;
  padding-bottom: 28px;
  border-bottom: 1px solid var(--border);
}

.faq-list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.faq-list strong {
  font-family: var(--font-heading);
  display: block;
  margin-bottom: 8px;
  font-size: 17px;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 48px;
  align-items: start;
}

.about-grid h2 {
  margin-bottom: 0;
}

.independence-panel {
  border: 1px solid var(--border);
  padding: 32px;
  background: var(--surface);
  border-radius: var(--radius);
  max-width: 720px;
}

.independence-panel p {
  margin-bottom: 12px;
  font-size: 15px;
  color: var(--text-muted);
}

.independence-panel p:last-child {
  margin-bottom: 0;
}

.site-footer {
  padding: 64px 0 32px;
  margin-top: var(--section-pad);
}

.footer-top {
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  margin-bottom: 16px;
}

.footer-brand:hover {
  text-decoration: none;
  color: var(--accent);
}

.footer-brand-name {
  font-family: var(--font-heading);
  font-size: 20px;
  font-weight: 600;
}

.footer-blurb {
  font-size: 15px;
  color: var(--text-muted);
  max-width: 42ch;
}

.footer-booking {
  text-align: right;
}

.footer-booking h3 {
  font-size: 18px;
  margin-bottom: 12px;
}

.footer-booking-note {
  font-size: 12px;
  color: var(--text-muted);
  margin-top: 12px;
  line-height: 1.5;
}

.footer-links-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
  margin-bottom: 48px;
}

.footer-group h4 {
  font-family: var(--font-heading);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--accent);
  margin: 0 0 14px;
}

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

.footer-group li {
  margin-bottom: 8px;
}

.footer-group a {
  font-size: 14px;
  color: var(--text-muted);
  text-decoration: none;
}

.footer-group a:hover {
  color: var(--accent);
}

.footer-bottom {
  text-align: center;
}

.footer-bottom-notice {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 16px;
  line-height: 1.5;
}

.footer-legal-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 8px 16px;
  margin-bottom: 16px;
}

.footer-legal-links a {
  font-size: 12px;
  color: var(--text-muted);
}

.footer-copyright {
  font-size: 12px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.footer-requisites {
  font-size: 11px;
  color: var(--text-muted);
  opacity: 0.75;
}

.cookie-settings-link {
  background: none;
  border: none;
  font-size: 12px;
  color: var(--text-muted);
  cursor: pointer;
  font-family: var(--font-body);
  padding: 0;
  text-decoration: underline;
}

.cookie-settings-link:hover {
  color: var(--accent);
}

.page-header {
  padding: 48px 0 32px;
}

.page-header__meta {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.page-header__rating {
  color: var(--accent);
  font-family: var(--font-heading);
  font-size: 15px;
  margin-top: 12px;
}

.lead-image {
  width: 100%;
  margin-bottom: 48px;
}

.lead-image img {
  width: 100%;
  max-height: 520px;
  object-fit: cover;
  border-radius: var(--radius);
}

.byline {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
  padding-bottom: 24px;
  border-bottom: 1px solid var(--border);
}

.monogram {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--accent-2);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 14px;
  font-weight: 600;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.byline-text {
  font-size: 15px;
  color: var(--text-muted);
}

.byline-text a {
  color: var(--text);
  font-weight: 600;
}

.review-layout {
  display: grid;
  grid-template-columns: 1fr 280px;
  gap: 48px;
  align-items: start;
}

.review-article h2 {
  font-size: clamp(22px, 3vw, 28px);
  margin: 2rem 0 1rem;
}

.review-article h2:first-child {
  margin-top: 0;
}

.facts-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  position: sticky;
  top: 100px;
}

.facts-panel h3 {
  font-family: var(--font-heading);
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin: 0 0 16px;
}

.facts-panel dl {
  margin: 0;
}

.facts-panel dt {
  font-family: var(--font-heading);
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--text-muted);
  margin-top: 14px;
}

.facts-panel dt:first-child {
  margin-top: 0;
}

.facts-panel dd {
  margin: 4px 0 0;
  font-size: 15px;
}

.aboard-section {
  padding: var(--section-pad) 0;
  background: var(--surface-alt);
}

.aboard-section h2 {
  margin-bottom: 1.5rem;
}

.aboard-section h3 {
  font-family: var(--font-heading);
  font-size: 20px;
  margin: 2rem 0 0.75rem;
}

.reviews-section {
  padding: var(--section-pad) 0;
}

.reviews-section h2 {
  margin-bottom: 32px;
}

.review-cards {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 24px;
}

.review-card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-height: 200px;
}

.review-card__rating {
  font-family: var(--font-heading);
  font-size: 14px;
  color: var(--accent);
}

.review-card__quote {
  font-size: 15px;
  line-height: 1.65;
  white-space: pre-line;
}

.review-card__photos {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.review-card__photos img {
  max-width: 140px;
  max-height: 100px;
  object-fit: cover;
  border-radius: var(--radius);
}

.guest-photo-btn {
  background: none;
  border: none;
  padding: 0;
  cursor: zoom-in;
  border-radius: var(--radius);
  overflow: hidden;
}

.guest-photo-btn img {
  display: block;
}

.review-card__caption {
  font-size: 11px;
  color: var(--text-muted);
  width: 100%;
}

.review-card__source {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
  margin-top: auto;
}

.cta-section {
  padding: var(--section-pad) 0;
  background: var(--surface-alt);
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-address {
  font-size: 16px;
  margin-bottom: 24px;
  color: var(--text-muted);
}

.map-placeholder {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 32px;
  text-align: center;
  margin-bottom: 24px;
}

.map-placeholder p {
  margin-bottom: 16px;
  color: var(--text-muted);
}

.map-embed {
  width: 100%;
  height: 340px;
  border: none;
  border-radius: var(--radius);
  margin-bottom: 24px;
}

.cta-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: rgba(6, 9, 17, 0.94);
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  padding: 24px;
}

.lightbox.is-open {
  display: flex;
}

.lightbox img {
  max-width: 92vw;
  max-height: 88vh;
  width: auto;
  height: auto;
  object-fit: contain;
}

.lightbox-caption {
  color: var(--text-muted);
  font-size: 14px;
  margin-top: 12px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 24px;
  background: none;
  border: 1px solid var(--border);
  color: var(--text);
  font-family: var(--font-heading);
  font-size: 14px;
  padding: 8px 16px;
  cursor: pointer;
  border-radius: var(--radius);
}

.editorial-page {
  padding: var(--section-pad) 0;
}

.editorial-narrow {
  max-width: 70ch;
  margin: 0 auto;
}

.editorial-section {
  margin-bottom: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.editorial-section:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.editorial-section h2 {
  margin-bottom: 1.25rem;
}

.numbered-block {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  margin-bottom: 56px;
  max-width: 65ch;
}

.numbered-block__num {
  font-family: var(--font-heading);
  font-size: 48px;
  font-weight: 600;
  color: var(--accent);
  line-height: 1;
  opacity: 0.6;
}

.authors-list {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.author-entry {
  display: grid;
  grid-template-columns: 64px 1fr;
  gap: 24px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border);
}

.author-entry:last-child {
  border-bottom: none;
}

.author-entry .monogram {
  width: 56px;
  height: 56px;
  font-size: 16px;
}

.enquiry-intro {
  background: var(--surface-alt);
  padding: 48px 0;
}

.enquiry-form-wrap {
  background: var(--surface);
  padding: 48px 0 var(--section-pad);
}

.enquiry-form {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.form-group--full {
  grid-column: 1 / -1;
}

.form-group label {
  font-family: var(--font-heading);
  font-size: 13px;
  color: var(--text-muted);
}

.form-group input,
.form-group select,
.form-group textarea {
  font-family: var(--font-body);
  font-size: 16px;
  padding: 12px 14px;
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  color: var(--text);
}

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

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 1px;
}

.form-agree {
  grid-column: 1 / -1;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.form-agree input {
  margin-top: 4px;
  flex-shrink: 0;
}

.form-agree label {
  font-size: 14px;
  color: var(--text-muted);
}

.form-error {
  color: #e07070;
  font-size: 13px;
  margin-top: 4px;
}

.form-submit {
  grid-column: 1 / -1;
}

.confirmation-panel {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 40px;
  max-width: 600px;
}

.confirmation-panel h2 {
  margin-bottom: 16px;
}

.legal-content {
  padding: var(--section-pad) 0;
  max-width: 70ch;
}

.legal-content h1 {
  margin-bottom: 8px;
}

.legal-content h2 {
  margin: 2rem 0 1rem;
  font-size: clamp(20px, 3vw, 26px);
}

.legal-content h3 {
  font-family: var(--font-heading);
  font-size: 18px;
  margin: 1.5rem 0 0.75rem;
}

.sitemap-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 12px 32px;
}

.sitemap-grid a {
  font-family: var(--font-heading);
  color: var(--text);
}

.sitemap-grid span {
  color: var(--text-muted);
  font-size: 15px;
}

.fade-in {
  opacity: 0;
  transform: translateY(12px);
  transition: opacity 0.5s ease, transform 0.5s ease;
}

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

@media (prefers-reduced-motion: reduce) {
  .fade-in {
    opacity: 1;
    transform: none;
    transition: none;
  }

  .nav-link::after {
    transition: none;
  }
}

.consent-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 400;
  background: var(--text);
  color: var(--on-accent);
  padding: 20px 24px;
  transform: translateY(100%);
  transition: transform 0.3s ease;
}

.consent-banner.is-visible {
  transform: translateY(0);
}

.consent-banner-inner {
  max-width: var(--max-width);
  margin: 0 auto;
}

.consent-body p {
  font-size: 15px;
  margin-bottom: 16px;
  line-height: 1.5;
}

.consent-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px 20px;
}

.consent-btn-primary {
  background: var(--on-accent);
  color: var(--text);
  border: none;
  padding: 10px 20px;
  font-family: var(--font-heading);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  border-radius: 0;
}

.consent-link {
  background: none;
  border: none;
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  text-decoration: underline;
  cursor: pointer;
  padding: 0;
}

.consent-policy-link {
  color: var(--on-accent);
  font-size: 13px;
  opacity: 0.8;
}

.consent-manage {
  margin-top: 16px;
}

.consent-categories {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin: 16px 0;
}

.consent-category {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(13, 18, 32, 0.15);
}

.consent-category label {
  font-family: var(--font-heading);
  font-size: 14px;
}

.consent-category input:disabled {
  opacity: 0.5;
}

.consent-back {
  background: none;
  border: none;
  color: var(--on-accent);
  font-family: var(--font-heading);
  font-size: 13px;
  cursor: pointer;
  padding: 0;
  margin-bottom: 12px;
  text-decoration: underline;
}

@media (min-width: 900px) {
  .consent-banner {
    bottom: 24px;
    left: auto;
    right: 24px;
    width: 420px;
    border-radius: var(--radius);
    transform: translateY(calc(100% + 24px));
  }

  .consent-banner.is-visible {
    transform: translateY(0);
  }
}

@media (max-width: 940px) {
  .nav-inner {
    grid-template-columns: auto 1fr auto;
  }

  .nav-left,
  .nav-right {
    display: none;
  }

  .nav-center {
    justify-content: flex-start;
  }

  .nav-toggle {
    display: block;
    justify-self: end;
  }
}

@media (max-width: 860px) {
  .hero-split {
    grid-template-columns: 1fr;
  }

  .hero-split__media {
    order: 2;
  }

  .hero-split__content {
    order: 1;
    padding-right: 0;
  }

  .venue-row {
    grid-template-columns: 1fr;
  }

  .venue-row__body {
    padding: 24px;
  }
}

@media (max-width: 768px) {
  :root {
    --section-pad: 64px;
  }

  .about-grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .footer-top {
    grid-template-columns: 1fr;
    gap: 32px;
  }

  .footer-booking {
    text-align: left;
  }

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

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

  .facts-panel {
    position: static;
  }

  .enquiry-form {
    grid-template-columns: 1fr;
  }

  .sitemap-grid {
    grid-template-columns: 1fr;
  }

  .numbered-block {
    grid-template-columns: 48px 1fr;
  }

  .numbered-block__num {
    font-size: 36px;
  }
}

@media (max-width: 480px) {
  .footer-links-row {
    grid-template-columns: 1fr;
  }

  .review-cards {
    grid-template-columns: 1fr;
  }

  .cta-actions {
    flex-direction: column;
  }

  .cta-actions .btn {
    width: 100%;
    text-align: center;
  }
}
