:root {
  color-scheme: dark;
  --black: #050507;
  --ink: #101116;
  --panel: #171920;
  --panel-2: #22252d;
  --white: #f7f8fa;
  --muted: #a6adb7;
  --line: rgba(255, 255, 255, 0.12);
  --red: #e20f17;
  --red-dark: #8c080d;
  --silver: #d6d9dd;
  --smoke: #eef0f2;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
}

* {
  box-sizing: border-box;
}

html {
  overflow-x: hidden;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  overflow-x: hidden;
  font-family:
    Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI",
    sans-serif;
  color: var(--white);
  background: var(--black);
  line-height: 1.5;
}

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

.top-contact {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 9px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: #030304;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.9rem;
  font-weight: 800;
}

.top-contact a {
  white-space: nowrap;
}

.top-contact a:hover {
  color: white;
}

.address-short {
  display: none;
}

.language-toggle {
  min-height: 34px;
  padding: 6px 12px;
  border: 1px solid rgba(226, 15, 23, 0.55);
  border-radius: 8px;
  background: rgba(226, 15, 23, 0.12);
  color: white;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.language-toggle:hover,
.language-toggle:focus-visible {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  outline: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
  padding: 12px clamp(16px, 4vw, 54px);
  border-bottom: 1px solid var(--line);
  background: rgba(5, 5, 7, 0.88);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-mark {
  display: grid;
  width: 86px;
  height: 44px;
  place-items: center;
  overflow: hidden;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.brand strong,
.brand small {
  display: block;
}

.brand strong {
  color: white;
  line-height: 1;
}

.brand small {
  margin-top: 3px;
  color: var(--muted);
  font-size: 0.78rem;
}

.nav-links {
  display: flex;
  gap: 8px;
  padding: 6px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
}

.nav-links a {
  padding: 8px 12px;
  border-radius: 6px;
}

.nav-links a:hover {
  background: rgba(255, 255, 255, 0.08);
  color: white;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 8px;
}

.mobile-menu-toggle,
.mobile-navigation {
  display: none;
}

.mobile-menu-toggle {
  width: 44px;
  height: 44px;
  place-items: center;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
  color: white;
  font: inherit;
  font-size: 1.5rem;
  cursor: pointer;
}

.mobile-menu-toggle:hover,
.mobile-menu-toggle:focus-visible,
.mobile-menu-toggle[aria-expanded="true"] {
  border-color: rgba(226, 15, 23, 0.62);
  background: rgba(226, 15, 23, 0.16);
  outline: none;
}

.mobile-navigation[hidden] {
  display: none;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 11px 15px;
  border-radius: 8px;
  font-weight: 850;
  white-space: nowrap;
}

.header-action.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 12px 28px rgba(226, 15, 23, 0.28);
}

.header-action.secondary {
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.82);
}

.header-action.secondary:hover {
  border-color: rgba(226, 15, 23, 0.52);
  color: white;
}

.hero {
  position: relative;
  display: grid;
  min-height: clamp(720px, 90vh, 860px);
  align-items: center;
  overflow: hidden;
  padding: clamp(28px, 5vw, 64px);
  isolation: isolate;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto -12vw 0 auto;
  z-index: 1;
  width: min(56vw, 760px);
  height: 9px;
  transform: skewX(-24deg);
  background: linear-gradient(90deg, transparent, var(--red), transparent);
  opacity: 0.9;
}

.hero-image,
.hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  inset: 0 0 0 auto;
  z-index: -2;
  width: min(56vw, 840px);
  height: 100%;
  object-fit: contain;
  object-position: right center;
  background: #030304;
  filter: contrast(1.04);
}

.hero-overlay {
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(5, 5, 7, 0.98), rgba(5, 5, 7, 0.9) 43%, rgba(5, 5, 7, 0.08) 72%),
    linear-gradient(180deg, rgba(226, 15, 23, 0.08), rgba(5, 5, 7, 0.38));
}

.hero-content {
  width: min(620px, 40vw);
  padding-top: 32px;
}

.mobile-hero-logo {
  display: none;
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--silver);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 10ch;
  margin-bottom: 18px;
  font-size: clamp(3.3rem, 7vw, 6.5rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(2.1rem, 4.7vw, 4.4rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 8px;
  font-size: 1.12rem;
}

.hero-copy {
  max-width: 58ch;
  margin-bottom: 30px;
  color: rgba(255, 255, 255, 0.83);
  font-size: clamp(1rem, 2vw, 1.22rem);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 13px 20px;
  border: 0;
  border-radius: 8px;
  font: inherit;
  font-weight: 900;
  cursor: pointer;
}

.button.primary {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  box-shadow: 0 16px 34px rgba(226, 15, 23, 0.3);
}

.button.secondary {
  border: 1px solid rgba(255, 255, 255, 0.3);
  background: rgba(255, 255, 255, 0.06);
  color: white;
}

.hero-review {
  width: min(620px, 100%);
  margin: 34px 0 0;
  padding: 20px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: rgba(7, 8, 11, 0.72);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.2);
}

.stars {
  margin-bottom: 10px;
  color: var(--red);
  font-size: 1.05rem;
  letter-spacing: 0;
}

.hero-review blockquote {
  margin: 0;
  color: rgba(255, 255, 255, 0.9);
  font-size: clamp(1rem, 1.6vw, 1.16rem);
  font-weight: 750;
}

.hero-review figcaption {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 800;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  border-block: 1px solid var(--line);
  background: var(--line);
}

.trust-strip div {
  position: relative;
  padding: 28px clamp(18px, 4vw, 56px);
  background: #0b0c10;
}

.trust-strip div::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 4px;
  background: var(--red);
}

.trust-strip strong,
.trust-strip span {
  display: block;
}

.trust-strip span {
  margin-top: 5px;
  color: var(--muted);
}

.section {
  scroll-margin-top: 92px;
  padding: clamp(64px, 8vw, 112px) clamp(18px, 4vw, 56px);
}

.split {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(320px, 1.2fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  background:
    linear-gradient(135deg, rgba(226, 15, 23, 0.12), transparent 38%),
    #111216;
}

.section-copy {
  position: sticky;
  top: 104px;
}

.section-copy p,
.about-story p,
.booking-intro p,
.contact-section p {
  max-width: 58ch;
  color: var(--muted);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(320px, 1.28fr);
  gap: clamp(34px, 6vw, 80px);
  align-items: start;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(120deg, rgba(226, 15, 23, 0.1), transparent 34%),
    linear-gradient(180deg, #0b0c10, #111216);
}

.about-heading {
  position: sticky;
  top: 104px;
}

.about-story {
  display: grid;
  gap: 18px;
  padding: clamp(22px, 4vw, 34px);
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

.about-story p {
  margin: 0;
}

.about-closing {
  color: rgba(255, 255, 255, 0.92);
  font-weight: 850;
}

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

.service-card {
  position: relative;
  min-height: 184px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 20px;
  padding: 22px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(180deg, #1b1d24, #101116);
  box-shadow: 0 16px 36px rgba(0, 0, 0, 0.2);
}

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

.package-tier {
  display: inline-flex;
  width: fit-content;
  margin-bottom: 12px;
  padding: 6px 9px;
  border: 1px solid rgba(226, 15, 23, 0.42);
  border-radius: 6px;
  color: var(--silver);
  background: rgba(226, 15, 23, 0.08);
  font-size: 0.75rem;
  font-weight: 900;
  text-transform: uppercase;
}

.service-card h4 {
  margin: 0 0 8px;
  color: var(--silver);
  font-size: 0.86rem;
  text-transform: uppercase;
}

.service-card ul {
  display: grid;
  gap: 7px;
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  color: var(--muted);
}

.service-card li {
  position: relative;
  padding-left: 17px;
}

.service-card li::before {
  content: "";
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 7px;
  height: 2px;
  background: var(--red);
}

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

.service-card-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-top: auto;
}

.service-card-footer strong {
  color: var(--red);
  font-size: 0.92rem;
  text-transform: uppercase;
}

.package-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 8px;
}

.package-action {
  position: relative;
  z-index: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  padding: 10px 14px;
  border: 1px solid rgba(226, 15, 23, 0.48);
  border-radius: 8px;
  background: rgba(226, 15, 23, 0.12);
  color: white;
  font-weight: 900;
}

.package-action:hover,
.package-action:focus-visible {
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  outline: none;
}

.pricing-note {
  grid-column: 1 / -1;
  margin: 2px 0 0;
  padding: 14px 16px;
  border-left: 4px solid var(--red);
  background: rgba(255, 255, 255, 0.04);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 750;
}

.addons-panel {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(280px, 1fr);
  gap: clamp(20px, 4vw, 44px);
  margin-top: 22px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.addons-panel h3 {
  margin-bottom: 0;
}

.addons-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 0;
  background: var(--line);
}

.addons-list div {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 12px;
  background: #101116;
}

.addons-list dt,
.addons-list dd {
  margin: 0;
}

.addons-list dd {
  color: var(--red);
  font-weight: 900;
}

.gallery-section {
  background:
    linear-gradient(180deg, #050507, #101116),
    radial-gradient(circle at 15% 10%, rgba(226, 15, 23, 0.14), transparent 38%);
}

.gallery-heading {
  max-width: 780px;
  margin-bottom: clamp(28px, 5vw, 52px);
}

.gallery-shell {
  display: grid;
  grid-template-columns: 52px minmax(0, 1fr) 52px;
  gap: 12px;
  align-items: center;
}

.gallery-carousel {
  display: grid;
  grid-auto-columns: minmax(280px, 42vw);
  grid-auto-flow: column;
  grid-auto-rows: clamp(320px, 42vw, 520px);
  gap: 14px;
  overflow-x: auto;
  overscroll-behavior-inline: contain;
  scroll-behavior: smooth;
  scroll-snap-type: inline mandatory;
  scrollbar-width: thin;
  padding-bottom: 8px;
}

.gallery-control {
  display: grid;
  width: 52px;
  height: 52px;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: linear-gradient(135deg, var(--red), var(--red-dark));
  color: white;
  font: inherit;
  font-size: 2.1rem;
  font-weight: 900;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 14px 30px rgba(226, 15, 23, 0.22);
}

.gallery-item {
  position: relative;
  height: 100%;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #08090c;
  scroll-snap-align: start;
}

.gallery-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 62%, rgba(5, 5, 7, 0.28));
  pointer-events: none;
}

.gallery-item img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 220ms ease, filter 220ms ease;
}

.gallery-image-button {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: zoom-in;
}

.gallery-image-button:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: -4px;
}

.gallery-item:hover img {
  transform: scale(1.035);
  filter: contrast(1.04) saturate(1.04);
}

.photo-viewer {
  width: 100vw;
  max-width: none;
  height: 100vh;
  max-height: none;
  margin: 0;
  padding: 0;
  border: 0;
  background: rgba(2, 2, 3, 0.96);
  color: white;
}

.photo-viewer::backdrop {
  background: rgba(2, 2, 3, 0.92);
}

.photo-viewer-content {
  position: relative;
  display: grid;
  width: 100%;
  height: 100%;
  place-items: center;
  padding: 56px 76px 44px;
}

.photo-viewer img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  touch-action: pan-y;
  user-select: none;
  -webkit-user-drag: none;
}

.photo-viewer-close,
.photo-viewer-control {
  position: absolute;
  z-index: 2;
  display: grid;
  place-items: center;
  width: 48px;
  height: 48px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  background: rgba(17, 18, 22, 0.82);
  color: white;
  font: inherit;
  font-size: 2rem;
  line-height: 1;
  cursor: pointer;
}

.photo-viewer-close:hover,
.photo-viewer-control:hover,
.photo-viewer-close:focus-visible,
.photo-viewer-control:focus-visible {
  border-color: var(--red);
  background: var(--red-dark);
  outline: none;
}

.photo-viewer-close {
  top: 18px;
  right: 18px;
}

.photo-viewer-control {
  top: 50%;
  transform: translateY(-50%);
}

.photo-viewer-control.previous {
  left: 18px;
}

.photo-viewer-control.next {
  right: 18px;
}

.photo-viewer-count {
  position: absolute;
  bottom: 12px;
  left: 50%;
  margin: 0;
  transform: translateX(-50%);
  color: rgba(255, 255, 255, 0.76);
  font-weight: 800;
}

body.photo-viewer-open {
  overflow: hidden;
}

.booking-band {
  display: grid;
  grid-template-columns: minmax(270px, 0.75fr) minmax(320px, 1.25fr);
  gap: clamp(30px, 6vw, 76px);
  align-items: start;
  background:
    linear-gradient(120deg, rgba(5, 5, 7, 0.94), rgba(17, 18, 22, 0.86)),
    linear-gradient(180deg, #111216, #050507);
}

.payment-note {
  display: grid;
  gap: 6px;
  max-width: 460px;
  margin-top: 28px;
  padding: 18px;
  border: 1px solid var(--line);
  border-left: 5px solid var(--red);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
}

.payment-note span {
  color: var(--muted);
}

.booking-form {
  display: grid;
  gap: 18px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-top: 5px solid var(--red);
  border-radius: 8px;
  background: var(--smoke);
  color: #111216;
  box-shadow: var(--shadow);
}

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

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

label,
fieldset {
  display: grid;
  gap: 8px;
  min-width: 0;
  color: #21242a;
  font-weight: 800;
}

fieldset {
  margin: 0;
  padding: 0;
  border: 0;
}

legend {
  padding: 0 0 8px;
  font-weight: 800;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #c7cbd1;
  border-radius: 8px;
  color: #111216;
  background: white;
  font: inherit;
}

textarea {
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(226, 15, 23, 0.18);
  border-color: var(--red);
}

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

.choice-grid label,
.addons-choice-grid label,
.checkbox-line {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border: 1px solid #d8dde2;
  border-radius: 8px;
  color: #111216;
  font-weight: 750;
}

.choice-grid input,
.addons-choice-grid input,
.checkbox-line input {
  width: 18px;
  height: 18px;
  min-height: 18px;
  accent-color: var(--red);
}

.addons-choice-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
}

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

.choice-grid label:has(input:checked) {
  border-color: var(--red);
  background: rgba(226, 15, 23, 0.08);
}

.privacy-note {
  margin: -4px 0 0;
  color: #555b65;
  font-size: 0.88rem;
}

.submit-button {
  width: 100%;
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.68;
}

.form-status {
  min-height: 24px;
  margin: 0;
  color: #176b45;
  font-weight: 800;
}

.form-status.success {
  color: #176b45;
}

.form-status.error {
  color: #8c080d;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(260px, 1fr) minmax(220px, 0.55fr) minmax(260px, 0.8fr);
  gap: clamp(30px, 6vw, 70px);
  align-items: center;
  border-top: 1px solid var(--line);
  background:
    linear-gradient(90deg, #050507, #111216 58%, #1a0a0c);
}

.contact-logo {
  width: min(320px, 100%);
  justify-self: center;
  filter: drop-shadow(0 18px 34px rgba(0, 0, 0, 0.45));
}

.contact-details {
  display: grid;
  gap: 12px;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.04);
  font-style: normal;
  font-weight: 850;
}

.contact-details a {
  color: white;
  font-size: 1.2rem;
}

.contact-details span {
  color: var(--muted);
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 24px clamp(18px, 4vw, 56px);
  border-top: 1px solid var(--line);
  background: #030304;
  color: white;
}

footer span:last-child {
  color: rgba(255, 255, 255, 0.62);
}

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

  .site-header {
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    gap: 10px;
  }

  .header-actions {
    justify-content: flex-end;
  }

  .header-action.secondary {
    display: none;
  }

  .header-action.primary {
    padding-inline: 14px;
    text-align: center;
  }

  .mobile-menu-toggle {
    display: grid;
  }

  .mobile-navigation {
    grid-column: 1 / -1;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 8px;
    width: 100%;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(10, 11, 14, 0.98);
    box-shadow: 0 18px 38px rgba(0, 0, 0, 0.32);
  }

  .mobile-navigation:not([hidden]) {
    display: grid;
  }

  .mobile-navigation > a,
  .mobile-navigation-quick-links a {
    display: flex;
    min-height: 44px;
    align-items: center;
    justify-content: center;
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.04);
    color: white;
    font-weight: 850;
    text-align: center;
  }

  .mobile-navigation > a:hover,
  .mobile-navigation > a:focus-visible,
  .mobile-navigation-quick-links a:hover,
  .mobile-navigation-quick-links a:focus-visible {
    border-color: rgba(226, 15, 23, 0.62);
    outline: none;
  }

  .mobile-navigation-quick-links {
    display: grid;
    grid-column: 1 / -1;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  .mobile-navigation-quick-links a {
    border-color: rgba(226, 15, 23, 0.42);
    background: rgba(226, 15, 23, 0.1);
  }

  .hero {
    display: block;
    min-height: 0;
    padding: 0;
    background: #050507;
  }

  .hero-overlay {
    display: none;
  }

  .hero-image {
    display: none;
  }

  .mobile-hero-logo {
    display: grid;
    width: 100%;
    height: min(76vw, 460px);
    place-items: center;
    overflow: hidden;
    background: #030304;
  }

  .mobile-hero-logo img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: contain;
  }

  .hero-content {
    width: 100%;
    padding: 38px clamp(18px, 5vw, 46px) 52px;
    border-top: 1px solid rgba(226, 15, 23, 0.42);
    background:
      linear-gradient(135deg, rgba(226, 15, 23, 0.1), transparent 42%),
      #08090c;
  }

  .trust-strip,
  .about-section,
  .split,
  .booking-band,
  .contact-section,
  .gallery-heading,
  .addons-panel,
  .form-row,
  .service-list {
    grid-template-columns: 1fr;
  }

  .gallery-shell {
    grid-template-columns: 44px minmax(0, 1fr) 44px;
  }

  .gallery-control {
    width: 44px;
    height: 44px;
    font-size: 1.8rem;
  }

  .gallery-carousel {
    grid-auto-columns: minmax(260px, 76vw);
    grid-auto-rows: min(94vw, 520px);
  }

  .addons-list,
  .addons-choice-grid,
  .service-columns,
  .contact-method-grid {
    grid-template-columns: 1fr;
  }

  .section-copy {
    position: static;
  }

  .about-heading {
    position: static;
  }
}

@media (max-width: 560px) {
  .site-header {
    gap: 12px;
    padding-inline: 14px;
  }

  .brand-mark {
    width: 62px;
    height: 34px;
  }

  .brand > span:last-child {
    display: none;
  }

  .header-actions {
    gap: 6px;
  }

  .header-action {
    min-height: 42px;
    padding-inline: 11px;
    font-size: 0.82rem;
    text-align: center;
    line-height: 1.15;
    white-space: normal;
  }

  .top-contact-secondary {
    display: none;
  }

  .top-contact-primary {
    display: none;
  }

  .address-full {
    display: none;
  }

  .address-short {
    display: inline;
  }

  .mobile-navigation {
    grid-template-columns: 1fr;
  }

  .mobile-navigation-quick-links {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: 0;
    padding: 0;
  }

  .hero-image {
    display: none;
  }

  .mobile-hero-logo {
    height: min(100vw, 420px);
  }

  h1 {
    font-size: 2.75rem;
  }

  h2 {
    font-size: 2.1rem;
  }

  .hero-actions,
  .button {
    width: 100%;
  }

  .gallery-item {
    min-height: 0;
    aspect-ratio: auto;
  }

  .gallery-shell {
    grid-template-columns: 40px minmax(0, 1fr) 40px;
    gap: 8px;
  }

  .gallery-control {
    width: 40px;
    height: 48px;
  }

  .gallery-carousel {
    grid-auto-columns: 100%;
    grid-auto-rows: min(112vw, 500px);
    gap: 10px;
    padding-bottom: 4px;
  }

  .gallery-image-button {
    position: absolute;
    inset: 0;
    touch-action: manipulation;
  }

  .gallery-item img {
    object-fit: contain;
  }

  .gallery-item:hover img {
    transform: none;
    filter: none;
  }

  .gallery-item::after {
    display: none;
  }

  .photo-viewer-content {
    padding: 62px 12px 76px;
  }

  .photo-viewer-control {
    top: auto;
    bottom: 16px;
    transform: none;
  }

  .photo-viewer-control.previous {
    left: 16px;
  }

  .photo-viewer-control.next {
    right: 16px;
  }

  .photo-viewer-count {
    bottom: 28px;
  }

  .top-contact {
    justify-content: flex-end;
    font-size: 0.82rem;
  }

  .service-card {
    min-height: 160px;
  }

  .service-card-footer {
    align-items: flex-start;
    flex-direction: column;
  }

  .package-actions {
    width: 100%;
    justify-content: stretch;
  }

  .package-actions .package-action {
    flex: 1 1 140px;
  }
}
