:root {
  --color-bg: #f6f3ef;
  --color-surface: #fffef9;
  --color-ink: #1a1814;
  --color-muted: #5c574d;
  --color-accent: #c45c26;
  --color-accent-hover: #a34a1c;
  --color-teal: #0d3d3a;
  --color-teal-light: #165a54;
  --font-sans: "DM Sans", system-ui, sans-serif;
  --font-display: "Fraunces", Georgia, serif;
  --radius: 12px;
  --shadow: 0 18px 40px rgba(26, 24, 20, 0.08);
  --header-h: 72px;
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1rem;
  line-height: 1.6;
  color: var(--color-ink);
  background: var(--color-bg);
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-teal-light);
  text-decoration-thickness: 1px;
  text-underline-offset: 3px;
}

a:hover {
  color: var(--color-accent);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.container--narrow {
  width: min(720px, 92vw);
}

.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(246, 243, 239, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(26, 24, 20, 0.06);
}

.header__inner {
  width: min(1200px, 94vw);
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: var(--header-h);
  padding: 0.5rem 0;
}

.logo {
  display: flex;
  flex-direction: column;
  text-decoration: none;
  color: inherit;
}

.logo__mark {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--color-teal);
}

.logo__sub {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--color-muted);
}

.nav {
  position: relative;
}

.nav__toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 0.5rem;
  background: transparent;
  border: none;
  cursor: pointer;
}

.nav__toggle-bar {
  width: 22px;
  height: 2px;
  background: var(--color-ink);
  border-radius: 1px;
}

.nav__list {
  display: flex;
  gap: 0.85rem;
  list-style: none;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
  justify-content: center;
}

.nav__list a {
  color: var(--color-ink);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.82rem;
}

.nav__list a:hover {
  color: var(--color-accent);
}

.header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.lang {
  display: flex;
  border-radius: 999px;
  overflow: hidden;
  border: 1px solid rgba(26, 24, 20, 0.12);
}

.lang__btn {
  padding: 0.35rem 0.65rem;
  border: none;
  background: var(--color-surface);
  font-family: inherit;
  font-size: 0.75rem;
  font-weight: 600;
  cursor: pointer;
  color: var(--color-muted);
}

.lang__btn--active {
  background: var(--color-teal);
  color: #fff;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.55rem 1.1rem;
  border-radius: 999px;
  font-family: inherit;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  border: 2px solid transparent;
  cursor: pointer;
  transition: background 0.2s, color 0.2s, border-color 0.2s;
}

.btn--primary {
  background: var(--color-accent);
  color: #fff;
  border-color: var(--color-accent);
}

.btn--primary:hover {
  background: var(--color-accent-hover);
  border-color: var(--color-accent-hover);
  color: #fff;
}

.btn--ghost {
  background: transparent;
  color: var(--color-teal);
  border-color: rgba(13, 61, 58, 0.25);
}

.btn--ghost:hover {
  border-color: var(--color-teal);
  color: var(--color-teal);
}

.btn--outline {
  background: transparent;
  color: var(--color-teal);
  border-color: var(--color-teal);
}

.btn--outline:hover {
  background: var(--color-teal);
  color: #fff;
}

.btn--on-dark {
  color: #fff;
  border-color: rgba(255, 255, 255, 0.6);
}

.btn--on-dark:hover {
  background: #fff;
  color: var(--color-teal);
}

.btn--light {
  background: #fff;
  color: var(--color-teal);
  border-color: #fff;
}

.btn--light:hover {
  background: rgba(255, 255, 255, 0.9);
  color: var(--color-teal);
  border-color: rgba(255, 255, 255, 0.9);
}

.btn--lg {
  padding: 0.75rem 1.35rem;
  font-size: 1rem;
}

.btn--block {
  width: 100%;
}

.hero--cinema {
  position: relative;
  min-height: min(92vh, 900px);
  display: flex;
  align-items: center;
  padding: calc(var(--header-h) + 2.5rem) 0 3.5rem;
  overflow: hidden;
}

.hero__media {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero__photo {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 35%;
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(105deg, rgba(13, 61, 58, 0.92) 0%, rgba(13, 61, 58, 0.55) 42%, rgba(26, 24, 20, 0.35) 100%);
}

.hero__cinema-inner {
  position: relative;
  z-index: 1;
  width: min(1240px, 94vw);
  margin-inline: auto;
}

.hero__cinema-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__title--cinema {
  font-family: var(--font-display);
  font-size: clamp(2.5rem, 5.5vw, 3.85rem);
  font-weight: 700;
  line-height: 1.05;
  margin: 0 0 1rem;
  color: #fff;
}

.hero__lead--cinema {
  font-size: 1.15rem;
  color: rgba(255, 255, 255, 0.88);
  margin: 0 0 1.75rem;
  max-width: 40ch;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: var(--color-accent);
  margin: 0 0 0.75rem;
}

.eyebrow--on-dark {
  color: #ffcba4;
}

.hero__cta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 2rem;
}

.hero__stats--cinema strong {
  color: #fff;
}

.hero__stats--cinema span {
  color: rgba(255, 255, 255, 0.75);
}

.hero__stats {
  display: flex;
  gap: 2rem;
  list-style: none;
  margin: 0;
  padding: 0;
}

.hero__stats li {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
}

.hero__stats strong {
  font-size: 1.25rem;
  color: var(--color-teal);
}

.hero__stats span {
  font-size: 0.85rem;
  color: var(--color-muted);
}

.hero__stack {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  align-items: stretch;
}

.hero__figure {
  margin: 0;
  background: var(--color-surface);
  border-radius: calc(var(--radius) + 4px);
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.hero__figure--lift {
  position: relative;
}

.hero__figure--thumb {
  max-width: 220px;
  align-self: flex-end;
  opacity: 0.95;
}

.hero__img {
  width: 100%;
  aspect-ratio: 4/3;
  object-fit: cover;
}

.hero__img--thumb {
  aspect-ratio: 16/10;
}

.hero__caption {
  display: flex;
  flex-direction: column;
  padding: 1rem 1.25rem 1.25rem;
  border-top: 1px solid rgba(26, 24, 20, 0.06);
}

.hero__caption-name {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--color-teal);
}

.hero__caption-role {
  font-size: 0.9rem;
  color: var(--color-muted);
}

.strip {
  background: var(--color-teal);
  color: #e8f0ef;
  padding: 1.35rem 0;
  border-block: 1px solid rgba(255, 255, 255, 0.08);
}

.strip__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
}

.strip__item {
  display: flex;
  flex-direction: column;
  gap: 0.2rem;
}

.strip__k {
  font-size: 0.7rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.75;
}

.strip__v {
  font-weight: 600;
  font-size: 0.95rem;
}

.cards--services {
  grid-template-columns: repeat(3, 1fr);
}

.card--rich {
  min-height: 100%;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  counter-reset: step;
}

.steps__item {
  background: var(--color-surface);
  border-radius: var(--radius);
  padding: 1.5rem 1.35rem;
  border: 1px solid rgba(26, 24, 20, 0.06);
  position: relative;
  padding-top: 2.75rem;
}

.steps__n {
  position: absolute;
  top: 1rem;
  left: 1.35rem;
  width: 2rem;
  height: 2rem;
  border-radius: 50%;
  background: var(--color-accent);
  color: #fff;
  font-weight: 700;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.steps__item h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--color-teal);
}

.steps__item p {
  margin: 0;
  font-size: 0.92rem;
  color: var(--color-muted);
}

.split--wide {
  grid-template-columns: 1fr 1fr;
  align-items: center;
}

.split__aside--visual {
  position: relative;
}

.split__img {
  width: 100%;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  object-fit: cover;
  aspect-ratio: 4/3;
}

.quote--overlay {
  position: relative;
  margin-top: -3rem;
  margin-inline: 1.5rem;
  box-shadow: 0 20px 50px rgba(26, 24, 20, 0.15);
}

.showcase {
  position: relative;
  min-height: 380px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 4rem 0;
}

.showcase__bg {
  position: absolute;
  inset: 0;
}

.showcase__bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.showcase__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(13, 61, 58, 0.55) 0%, rgba(13, 61, 58, 0.82) 100%);
}

.showcase__content {
  position: relative;
  z-index: 1;
  max-width: 720px;
}

.showcase__eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.72rem;
  font-weight: 600;
  color: #ffcba4;
  margin: 0 0 0.75rem;
}

.showcase__title {
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: #fff;
  margin: 0 0 1.5rem;
  line-height: 1.15;
}

.tour-grid--large {
  grid-template-columns: repeat(3, 1fr);
}

.tour-card--wide {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 0;
  align-items: stretch;
}

.tour-card--wide img {
  aspect-ratio: auto;
  min-height: 220px;
  height: 100%;
}

.tour-card--wide .tour-card__body {
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.fleet-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.fleet-card {
  margin: 0;
  background: var(--color-surface);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 24, 20, 0.06);
}

.fleet-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.fleet-card figcaption {
  padding: 0.85rem 1.1rem;
  font-size: 0.85rem;
  color: var(--color-muted);
  border-top: 1px solid rgba(26, 24, 20, 0.06);
}

.practical-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.practical-card {
  background: var(--color-surface);
  padding: 1.5rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 24, 20, 0.06);
}

.practical-card h3 {
  font-family: var(--font-display);
  font-size: 1.1rem;
  margin: 0 0 0.5rem;
  color: var(--color-teal);
}

.practical-card p {
  margin: 0;
  font-size: 0.95rem;
  color: var(--color-muted);
}

.gallery-masonry {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 200px;
  gap: 0.85rem;
}

.gallery-masonry__item {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery-masonry__item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.gallery-masonry__item--tall {
  grid-row: span 2;
  grid-column: 1 / 2;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.faq__item {
  background: var(--color-surface);
  border-radius: var(--radius);
  border: 1px solid rgba(26, 24, 20, 0.08);
  padding: 0 1rem;
}

.faq__item summary {
  cursor: pointer;
  font-weight: 600;
  padding: 1rem 0;
  list-style: none;
  font-size: 1rem;
}

.faq__item summary::-webkit-details-marker {
  display: none;
}

.faq__item p {
  margin: 0 0 1rem;
  padding-top: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
  line-height: 1.55;
}

.map-wrap--tall iframe {
  height: min(560px, 85vw);
}

.footer__wide {
  width: min(1120px, 92vw);
  margin-inline: auto;
  padding: 2.5rem 0 1.5rem;
}

.footer__cols {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 2rem;
  margin-bottom: 2rem;
}

.footer__blurb {
  margin: 0.75rem 0 0;
  font-size: 0.9rem;
  line-height: 1.55;
  max-width: 32ch;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 0.45rem;
}

.footer__links a {
  color: rgba(255, 255, 255, 0.85);
  text-decoration: none;
  font-size: 0.9rem;
}

.footer__links a:hover {
  color: #ffcba4;
}

.footer__label {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  opacity: 0.55;
  margin-bottom: 0.35rem;
}

.footer__bottom {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.sticky-cta {
  display: none;
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 40;
  padding: 0.65rem 0.85rem calc(0.65rem + env(safe-area-inset-bottom));
  background: rgba(18, 17, 16, 0.92);
  backdrop-filter: blur(8px);
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  gap: 0.5rem;
  justify-content: center;
}

.sticky-cta__btn {
  flex: 1;
  max-width: 200px;
  text-align: center;
  padding: 0.75rem 1rem;
  border-radius: 999px;
  font-weight: 700;
  font-size: 0.9rem;
  text-decoration: none;
}

.sticky-cta__btn--wa {
  background: #25d366;
  color: #fff;
}

.sticky-cta__btn--call {
  background: #fff;
  color: var(--color-teal);
}

.seo-block {
  padding: 3.5rem 0;
  background: linear-gradient(180deg, var(--color-bg) 0%, var(--color-surface) 100%);
  border-block: 1px solid rgba(26, 24, 20, 0.06);
}

.seo-block__title {
  font-family: var(--font-display);
  font-size: clamp(1.35rem, 2.5vw, 1.75rem);
  color: var(--color-teal);
  margin: 0 0 1.25rem;
  max-width: 48rem;
  line-height: 1.25;
}

.seo-block__body {
  max-width: 48rem;
}

.seo-block__body p {
  margin: 0 0 1.1rem;
  font-size: 0.98rem;
  line-height: 1.65;
  color: var(--color-muted);
}

.seo-block__body p:last-child {
  margin-bottom: 0;
}

.seo-block__body strong {
  color: var(--color-ink);
  font-weight: 600;
}

.seo-block__body em {
  font-style: normal;
  color: var(--color-teal-light);
  font-weight: 500;
}

.section {
  padding: 4.5rem 0;
}

.section--muted {
  background: var(--color-surface);
}

.section--dark {
  background: linear-gradient(160deg, var(--color-teal) 0%, #0a2e2c 100%);
  color: #e8f0ef;
}

.section--dark h2,
.section--dark h3 {
  color: #fff;
}

.section--dark p,
.section--dark .section__intro {
  color: rgba(232, 240, 239, 0.88);
}

.section--accent {
  background: linear-gradient(135deg, var(--color-teal-light) 0%, var(--color-teal) 55%, #082422 100%);
  color: #e8f0ef;
}

.section--accent .section__intro {
  color: rgba(232, 240, 239, 0.9);
}

.section__head {
  text-align: center;
  max-width: 760px;
  margin: 0 auto 3rem;
}

.section__head h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.35rem);
  margin: 0 0 0.75rem;
  color: var(--color-teal);
}

.section__head--light h2 {
  color: #fff;
}

.section__intro {
  margin: 0;
  color: var(--color-muted);
  font-size: 1.05rem;
}

.cards {
  display: grid;
  gap: 1.5rem;
}

.cards--3 {
  grid-template-columns: repeat(3, 1fr);
}

.card {
  background: var(--color-bg);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(26, 24, 20, 0.06);
}

.card__icon {
  font-size: 1.25rem;
  color: var(--color-accent);
  margin-bottom: 0.75rem;
}

.card h3 {
  font-family: var(--font-display);
  font-size: 1.2rem;
  margin: 0 0 0.5rem;
  color: var(--color-teal);
}

.card p {
  margin: 0;
  color: var(--color-muted);
  font-size: 0.95rem;
}

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: start;
}

.split__text h2 {
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3vw, 2.25rem);
  color: var(--color-teal);
  margin: 0 0 1rem;
}

.split__text p {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.checklist {
  margin: 1.5rem 0 0;
  padding: 0;
  list-style: none;
}

.checklist li {
  position: relative;
  padding-left: 1.5rem;
  margin-bottom: 0.65rem;
  color: var(--color-ink);
}

.checklist li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.45rem;
  width: 8px;
  height: 8px;
  background: var(--color-accent);
  border-radius: 50%;
}

.quote {
  margin: 0;
  padding: 2rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow);
}

.quote p {
  font-family: var(--font-display);
  font-style: italic;
  font-size: 1.15rem;
  margin: 0 0 1rem;
  color: var(--color-ink);
}

.quote footer {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--color-teal);
}

.tour-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.tour-card {
  background: rgba(255, 255, 255, 0.06);
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.tour-card img {
  width: 100%;
  aspect-ratio: 16/10;
  object-fit: cover;
}

.tour-card__body {
  padding: 1.25rem;
}

.tour-card h3 {
  font-family: var(--font-display);
  font-size: 1.15rem;
  margin: 0 0 0.5rem;
}

.tour-card p {
  margin: 0 0 0.75rem;
  font-size: 0.92rem;
  line-height: 1.55;
}

.tour-card__meta {
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  opacity: 0.75;
}

.tours__foot {
  text-align: center;
  margin: 2.5rem 0 0;
}

.link-light {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.link-light:hover {
  color: #ffcba4;
}

.gallery {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.gallery__large {
  grid-column: 1 / -1;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery__small {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
}

.gallery img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  aspect-ratio: 16/10;
}

.gallery__large img {
  aspect-ratio: 21/9;
  max-height: 420px;
  object-fit: cover;
}

.reviews__actions {
  text-align: center;
  margin-bottom: 1.5rem;
}

.reviews__pick-intro {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 1.75rem;
  font-size: 0.95rem;
  color: var(--color-muted);
  line-height: 1.55;
}

.reviews-picks {
  list-style: none;
  margin: 0 0 2.5rem;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 1.25rem;
}

.reviews-pick {
  margin: 0;
}

.reviews-pick blockquote {
  margin: 0;
  padding: 1.35rem 1.35rem 1.35rem 1.25rem;
  background: var(--color-surface);
  border-radius: var(--radius);
  border-left: 4px solid var(--color-accent);
  box-shadow: var(--shadow);
  min-height: 100%;
}

.reviews-pick blockquote p {
  margin: 0;
  font-size: 0.98rem;
  line-height: 1.55;
  color: var(--color-ink);
}

@media (max-width: 720px) {
  .reviews-picks {
    grid-template-columns: 1fr;
  }
}

.map-wrap {
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(26, 24, 20, 0.08);
}

.map-wrap iframe {
  width: 100%;
  height: min(480px, 70vw);
  border: 0;
  display: block;
}

.reviews__note {
  text-align: center;
  font-size: 0.9rem;
  color: var(--color-muted);
  margin: 1rem 0 0;
}

.contact__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  align-items: start;
}

.contact__card {
  background: rgba(255, 255, 255, 0.08);
  padding: 1.75rem;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.12);
}

.contact__card h3 {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin: 0 0 0.35rem;
  opacity: 0.85;
}

.contact__card p {
  margin: 0 0 1.25rem;
}

.contact__card a {
  color: #fff;
  font-weight: 600;
  font-size: 1.15rem;
  text-decoration: none;
}

.contact__card a:hover {
  text-decoration: underline;
  color: #ffcba4;
}

.contact__buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 0.5rem;
}

.form {
  background: var(--color-surface);
  padding: 1.75rem;
  border-radius: var(--radius);
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: var(--shadow);
}

.form label span {
  display: block;
  font-size: 0.85rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
  color: var(--color-ink);
}

.form input,
.form textarea {
  width: 100%;
  padding: 0.65rem 0.85rem;
  border: 1px solid rgba(26, 24, 20, 0.15);
  border-radius: 8px;
  font-family: inherit;
  font-size: 1rem;
  background: #fff;
}

.form input:focus,
.form textarea:focus {
  outline: 2px solid var(--color-teal-light);
  outline-offset: 1px;
}

.form__hint {
  margin: 0;
  font-size: 0.8rem;
  color: var(--color-muted);
}

.footer {
  background: #121110;
  color: rgba(255, 255, 255, 0.75);
  padding: 0;
}

.footer__brand .logo__mark {
  color: #fff;
}

.footer__tag {
  display: block;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  opacity: 0.7;
}

.footer__copy {
  margin: 0;
  font-size: 0.85rem;
}

.footer__wa {
  color: #ffcba4;
  font-weight: 600;
  text-decoration: none;
}

.footer__wa:hover {
  text-decoration: underline;
}

body.nav-open {
  overflow: hidden;
}

@media (max-width: 1100px) {
  .gallery-masonry {
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-masonry__item--tall {
    grid-column: 1 / -1;
    grid-row: span 1;
    min-height: 240px;
  }
}

@media (max-width: 960px) {
  .hero--cinema {
    min-height: auto;
    padding: calc(var(--header-h) + 1.5rem) 0 2.5rem;
  }

  .hero__cinema-grid {
    grid-template-columns: 1fr;
  }

  .hero__stack {
    max-width: 480px;
    margin-inline: auto;
  }

  .strip__grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .cards--3,
  .cards--services {
    grid-template-columns: 1fr;
  }

  .steps {
    grid-template-columns: 1fr 1fr;
  }

  .split,
  .split--wide {
    grid-template-columns: 1fr;
  }

  .quote--overlay {
    margin-top: 1rem;
    margin-inline: 0;
  }

  .tour-grid,
  .tour-grid--large {
    grid-template-columns: 1fr;
  }

  .tour-card--wide {
    grid-template-columns: 1fr;
  }

  .tour-card--wide img {
    min-height: 200px;
    aspect-ratio: 16/10;
  }

  .fleet-grid,
  .practical-grid {
    grid-template-columns: 1fr;
  }

  .contact__grid {
    grid-template-columns: 1fr;
  }

  .footer__cols {
    grid-template-columns: 1fr;
  }

  .header__phone {
    display: none;
  }
}

@media (max-width: 600px) {
  .steps {
    grid-template-columns: 1fr;
  }

  .strip__grid {
    grid-template-columns: 1fr;
  }

  .sticky-cta {
    display: flex;
  }

  body {
    padding-bottom: 4.5rem;
  }
}

@media (max-width: 768px) {
  .nav__toggle {
    display: flex;
  }

  .nav__list {
    display: none;
    position: absolute;
    right: 0;
    top: calc(100% + 0.5rem);
    flex-direction: column;
    gap: 0;
    background: var(--color-surface);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    min-width: 200px;
    padding: 0.5rem 0;
    border: 1px solid rgba(26, 24, 20, 0.08);
  }

  .nav__list.is-open {
    display: flex;
  }

  .nav__list a {
    display: block;
    padding: 0.65rem 1.25rem;
  }

  .header__inner {
    flex-wrap: wrap;
  }

  .header__actions {
    width: 100%;
    justify-content: space-between;
    order: 3;
  }

  .nav {
    order: 2;
    margin-left: auto;
  }

  .logo {
    order: 1;
  }
}
