/* ===== San Siro Flats — Global Stylesheet ===== */

/* --- Custom Properties --- */
:root {
  /* Brand */
  --color-brand: #1e3a5f;
  --color-brand-light: #2a4f7f;
  --color-brand-dark: #152a45;

  /* Blue Flat */
  --color-blue: #2196F3;
  --color-blue-light: #64B5F6;
  --color-blue-dark: #1565C0;
  --color-blue-bg: #e8f4fd;

  /* Red Flat */
  --color-red: #8B2500;
  --color-red-light: #C0392B;
  --color-red-dark: #6B1C00;
  --color-red-bg: #fdf0ec;

  /* Neutrals */
  --color-white: #ffffff;
  --color-offwhite: #f8f9fa;
  --color-light: #eef1f5;
  --color-gray: #6c757d;
  --color-gray-light: #adb5bd;
  --color-dark: #212529;
  --color-text: #333333;
  --color-text-light: #555555;

  /* Accent */
  --color-gold: #d4a853;

  /* Layout */
  --max-width: 1200px;
  --header-height: 72px;
  --radius: 8px;
  --radius-lg: 16px;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 12px rgba(0,0,0,.1);
  --shadow-lg: 0 8px 30px rgba(0,0,0,.15);

  /* Typography */
  --font-heading: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-mono: 'SF Mono', 'Fira Code', monospace;

  /* Transitions */
  --transition: 0.3s ease;
}

/* --- Reset & Base --- */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
  font-size: 16px;
}

body {
  font-family: var(--font-body);
  color: var(--color-text);
  background: var(--color-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--color-brand); text-decoration: none; transition: color var(--transition); }
a:hover { color: var(--color-blue); }
ul, ol { list-style: none; }
h1, h2, h3, h4, h5, h6 { font-family: var(--font-heading); font-weight: 700; line-height: 1.25; color: var(--color-dark); }
h1 { font-size: clamp(2rem, 5vw, 3rem); }
h2 { font-size: clamp(1.5rem, 3.5vw, 2.25rem); }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.5rem); }
p { margin-bottom: 1rem; }

/* --- Utilities --- */
.container { width: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem; }
.section { padding: 5rem 0; }
.section--gray { background: var(--color-offwhite); }
.section--blue { background: var(--color-blue-bg); }
.section--red { background: var(--color-red-bg); }
.text-center { text-align: center; }
.text-brand { color: var(--color-brand); }
.text-blue { color: var(--color-blue); }
.text-red { color: var(--color-red); }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); border: 0; }
.section-subtitle { color: var(--color-gray); font-size: 1.1rem; max-width: 600px; margin: 0.75rem auto 2.5rem; }

/* --- Buttons --- */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.85rem 2rem;
  border: none; border-radius: var(--radius);
  font-size: 1rem; font-weight: 600;
  cursor: pointer; transition: all var(--transition);
  text-decoration: none; line-height: 1.4;
}
.btn--primary { background: var(--color-brand); color: var(--color-white); }
.btn--primary:hover { background: var(--color-brand-light); color: var(--color-white); transform: translateY(-1px); box-shadow: var(--shadow-md); }
.btn--blue { background: var(--color-blue); color: var(--color-white); }
.btn--blue:hover { background: var(--color-blue-dark); color: var(--color-white); transform: translateY(-1px); }
.btn--red { background: var(--color-red); color: var(--color-white); }
.btn--red:hover { background: var(--color-red-dark); color: var(--color-white); transform: translateY(-1px); }
.btn--outline { background: transparent; border: 2px solid var(--color-brand); color: var(--color-brand); }
.btn--outline:hover { background: var(--color-brand); color: var(--color-white); }
.btn--white { background: var(--color-white); color: var(--color-brand); }
.btn--white:hover { background: var(--color-offwhite); color: var(--color-brand); transform: translateY(-1px); }
.btn--sm { padding: 0.6rem 1.4rem; font-size: 0.9rem; }
.btn--lg { padding: 1rem 2.5rem; font-size: 1.1rem; }
.btn-group { display: flex; gap: 1rem; flex-wrap: wrap; }

/* --- Header --- */
.header {
  position: fixed; top: 0; left: 0; right: 0; z-index: 10000;
  background: #ffffff;
  border-bottom: 1px solid var(--color-light);
  height: var(--header-height);
  transition: box-shadow var(--transition);
  overflow: visible;
}
.header.scrolled { box-shadow: var(--shadow-sm); }

/* Offset body for fixed header */
body { padding-top: var(--header-height); }
.header__inner {
  display: flex; align-items: center; justify-content: space-between;
  height: 100%; max-width: var(--max-width); margin: 0 auto; padding: 0 1.5rem;
  position: relative; z-index: 10001;
}
.header__logo { display: flex; align-items: center; gap: 0.6rem; font-weight: 700; font-size: 1.2rem; color: var(--color-brand); }
.header__logo svg { height: 56px; width: auto; }
.header__logo span { white-space: nowrap; }

.nav__list { display: flex; gap: 0.3rem; align-items: center; }
.nav__link {
  padding: 0.5rem 0.9rem; border-radius: var(--radius);
  font-size: 0.92rem; font-weight: 500; color: var(--color-text);
  transition: all var(--transition); white-space: nowrap;
}
.nav__link:hover, .nav__link--active { color: var(--color-brand); background: var(--color-light); }
.nav__cta { margin-left: 0.5rem; }

/* Language Switcher */
.lang-switch { position: relative; margin-left: 0.75rem; }
.lang-switch__btn {
  display: flex; align-items: center; gap: 0.3rem;
  padding: 0.4rem 0.7rem; border-radius: var(--radius);
  font-size: 0.85rem; font-weight: 600; color: var(--color-gray);
  background: var(--color-light); border: none; cursor: pointer;
  transition: all var(--transition);
}
.lang-switch__btn:hover { color: var(--color-brand); }
.lang-switch__dropdown {
  display: none; position: absolute; top: calc(100% + 4px); right: 0;
  background: var(--color-white); border-radius: var(--radius); box-shadow: var(--shadow-lg);
  min-width: 140px; padding: 0.5rem 0; z-index: 1001;
}
.lang-switch__dropdown.open { display: block; }
.lang-switch__dropdown a {
  display: block; padding: 0.5rem 1rem; font-size: 0.9rem; color: var(--color-text);
  transition: background var(--transition);
}
.lang-switch__dropdown a:hover { background: var(--color-light); color: var(--color-brand); }

/* Mobile Nav */
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer; padding: 0.5rem; z-index: 10002; position: relative;
}
.nav-toggle span {
  display: block; width: 24px; height: 2px; background: var(--color-dark);
  transition: all var(--transition); margin: 5px 0;
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 900px) {
  .nav-toggle { display: block; }
  .header__logo svg { height: 40px; }
  .nav { position: fixed; top: var(--header-height); left: 0; right: 0; bottom: 0; background: #ffffff; backdrop-filter: none; transform: translateX(100%); transition: transform var(--transition); z-index: 9999; overflow-y: auto; padding-top: 0; }
  .nav.open { transform: translateX(0); }
  .nav__list { flex-direction: column; padding: 2rem 1.5rem; gap: 0; list-style: none; }
  .nav__list li { display: block; width: 100%; }
  .nav__link { font-size: 1.2rem; padding: 1rem; display: block; color: #212529 !important; border-bottom: 1px solid #eee; background: #fff !important; }
  .nav__link:hover, .nav__link--active { color: #1e3a5f !important; background: #f0f4f8 !important; }
  .lang-switch { display: block; width: 100%; padding: 1rem; }
  .lang-switch__btn { color: #212529 !important; font-size: 1.1rem; }
  .nav__cta { margin-left: 0; margin-top: 1rem; }
  .lang-switch { margin-left: 0; margin-top: 0.5rem; }
}

/* --- Hero --- */
.hero {
  position: relative; min-height: 85vh;
  display: flex; align-items: center; justify-content: center;
  overflow: hidden; color: var(--color-white);
}
.hero__bg {
  position: absolute; inset: 0; z-index: 0;
}
.hero__bg img {
  width: 100%; height: 100%; object-fit: cover;
}
.hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(180deg, rgba(30,58,95,.6) 0%, rgba(30,58,95,.8) 100%);
  z-index: 1;
}
.hero__content {
  position: relative; z-index: 2; text-align: center;
  max-width: 800px; padding: 2rem 1.5rem;
}
.hero__content h1 { color: var(--color-white); margin-bottom: 1rem; font-size: clamp(2.2rem, 5.5vw, 3.5rem); }
.hero__content p { font-size: 1.2rem; opacity: .9; margin-bottom: 2rem; line-height: 1.6; }
.hero__badge {
  display: inline-block; padding: 0.4rem 1rem; border-radius: 2rem;
  background: rgba(255,255,255,.15); backdrop-filter: blur(5px);
  font-size: 0.85rem; font-weight: 500; margin-bottom: 1.5rem;
  border: 1px solid rgba(255,255,255,.2);
}

/* --- Cards --- */
.card-grid { display: grid; gap: 2rem; }
.card-grid--2 { grid-template-columns: repeat(2, 1fr); }
.card-grid--3 { grid-template-columns: repeat(3, 1fr); }

@media (max-width: 768px) {
  .card-grid--2, .card-grid--3 { grid-template-columns: 1fr; }
}

.card {
  background: var(--color-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
  transition: all var(--transition);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.card__image { position: relative; overflow: hidden; aspect-ratio: 16/10; }
.card__image img { width: 100%; height: 100%; object-fit: cover; transition: transform .5s ease; }
.card:hover .card__image img { transform: scale(1.05); }
.card__badge {
  position: absolute; top: 1rem; left: 1rem;
  padding: 0.3rem 0.8rem; border-radius: 2rem;
  font-size: 0.8rem; font-weight: 600; color: var(--color-white);
}
.card__badge--blue { background: var(--color-blue); }
.card__badge--red { background: var(--color-red); }
.card__body { padding: 1.5rem; }
.card__body h3 { margin-bottom: 0.5rem; }
.card__body p { color: var(--color-text-light); font-size: 0.95rem; }
.card__meta { display: flex; gap: 1rem; flex-wrap: wrap; margin: 1rem 0; font-size: 0.9rem; color: var(--color-gray); }
.card__meta span { display: flex; align-items: center; gap: 0.3rem; }
.card__footer { padding: 0 1.5rem 1.5rem; }

/* --- Property Page --- */
.property-hero {
  position: relative; min-height: 50vh;
  display: flex; align-items: flex-end;
  overflow: hidden;
}
.property-hero__bg {
  position: absolute; inset: 0;
}
.property-hero__bg img { width: 100%; height: 100%; object-fit: cover; }
.property-hero__overlay {
  position: absolute; inset: 0;
  background: linear-gradient(0deg, rgba(0,0,0,.65) 0%, transparent 60%);
}
.property-hero__content {
  position: relative; z-index: 2; padding: 3rem 0 2.5rem;
  color: var(--color-white); width: 100%;
}
.property-hero__content h1 { color: var(--color-white); margin-bottom: 0.5rem; }

/* Amenity Grid */
.amenity-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem; margin: 1.5rem 0;
}
.amenity-item {
  display: flex; align-items: center; gap: 0.75rem;
  padding: 0.75rem 1rem; background: var(--color-offwhite);
  border-radius: var(--radius); font-size: 0.95rem;
}
.amenity-item svg { flex-shrink: 0; width: 20px; height: 20px; color: var(--color-brand); }

/* Photo Gallery */
.gallery { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0.5rem; margin: 2rem 0; }
.gallery__item { position: relative; cursor: pointer; overflow: hidden; border-radius: var(--radius); aspect-ratio: 4/3; }
.gallery__item img { width: 100%; height: 100%; object-fit: cover; transition: transform .4s ease; }
.gallery__item:hover img { transform: scale(1.05); }
.gallery__item:first-child { grid-column: span 2; grid-row: span 2; }

@media (max-width: 600px) {
  .gallery { grid-template-columns: repeat(2, 1fr); }
  .gallery__item:first-child { grid-column: span 2; }
}

/* Lightbox */
.lightbox {
  display: none; position: fixed; inset: 0; z-index: 2000;
  background: rgba(0,0,0,.92); align-items: center; justify-content: center;
  backdrop-filter: blur(4px);
}
.lightbox.active { display: flex; }
.lightbox__img { max-width: 90vw; max-height: 85vh; border-radius: var(--radius); object-fit: contain; }
.lightbox__close, .lightbox__prev, .lightbox__next {
  position: absolute; background: rgba(255,255,255,.15); border: none;
  color: white; font-size: 1.5rem; cursor: pointer; border-radius: 50%;
  width: 48px; height: 48px; display: flex; align-items: center; justify-content: center;
  transition: background var(--transition);
}
.lightbox__close:hover, .lightbox__prev:hover, .lightbox__next:hover { background: rgba(255,255,255,.3); }
.lightbox__close { top: 1.5rem; right: 1.5rem; }
.lightbox__prev { left: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__next { right: 1.5rem; top: 50%; transform: translateY(-50%); }
.lightbox__counter { position: absolute; bottom: 1.5rem; left: 50%; transform: translateX(-50%); color: rgba(255,255,255,.7); font-size: 0.9rem; }

/* --- Booking Box --- */
.booking-box {
  background: var(--color-white); border-radius: var(--radius-lg);
  box-shadow: var(--shadow-md); padding: 2rem; position: sticky; top: calc(var(--header-height) + 1.5rem);
}
.booking-box h3 { margin-bottom: 1rem; }
.booking-box .btn { width: 100%; justify-content: center; margin-bottom: 0.75rem; }
.booking-box .btn:last-child { margin-bottom: 0; }

/* --- Property Layout --- */
.property-layout { display: grid; grid-template-columns: 1fr 350px; gap: 3rem; align-items: start; }
@media (max-width: 900px) {
  .property-layout { grid-template-columns: 1fr; }
  .booking-box { position: static; }
}

/* --- Highlights / Features --- */
.highlights { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; margin: 3rem 0; }
.highlight-item { text-align: center; padding: 2rem 1rem; }
.highlight-item__icon { font-size: 2.5rem; margin-bottom: 0.75rem; }
.highlight-item h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.highlight-item p { font-size: 0.9rem; color: var(--color-gray); }

@media (max-width: 768px) {
  .highlights { grid-template-columns: repeat(2, 1fr); }
}

/* --- Breadcrumbs --- */
.breadcrumbs {
  padding: 1rem 0; font-size: 0.85rem; color: var(--color-gray);
}
.breadcrumbs a { color: var(--color-gray); }
.breadcrumbs a:hover { color: var(--color-brand); }
.breadcrumbs span { margin: 0 0.4rem; }

/* --- FAQ --- */
.faq-list { max-width: 800px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--color-light); }
.faq-item__question {
  display: flex; justify-content: space-between; align-items: center;
  padding: 1.25rem 0; cursor: pointer; font-weight: 600;
  font-size: 1.05rem; color: var(--color-dark);
  background: none; border: none; width: 100%; text-align: left;
  font-family: var(--font-body);
}
.faq-item__question:hover { color: var(--color-brand); }
.faq-item__icon { font-size: 1.2rem; transition: transform var(--transition); flex-shrink: 0; margin-left: 1rem; }
.faq-item.active .faq-item__icon { transform: rotate(45deg); }
.faq-item__answer { max-height: 0; overflow: hidden; transition: max-height .4s ease; }
.faq-item__answer-inner { padding: 0 0 1.25rem; color: var(--color-text-light); line-height: 1.7; }

/* --- Contact Form --- */
.contact-form { max-width: 600px; margin: 0 auto; }
.form-group { margin-bottom: 1.25rem; }
.form-group label { display: block; font-weight: 600; margin-bottom: 0.4rem; font-size: 0.95rem; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.85rem 1rem; border: 1px solid var(--color-light);
  border-radius: var(--radius); font-size: 1rem; font-family: var(--font-body);
  transition: border-color var(--transition);
}
.form-group input:focus, .form-group textarea:focus { border-color: var(--color-brand); outline: none; }
.form-group textarea { resize: vertical; min-height: 140px; }

/* --- Location Map --- */
.map-container {
  border-radius: var(--radius-lg); overflow: hidden;
  box-shadow: var(--shadow-sm); margin: 2rem 0;
}
.map-container iframe { width: 100%; height: 450px; border: 0; }

/* Transport List */
.transport-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 1.5rem; }
.transport-item {
  padding: 1.5rem; background: var(--color-white);
  border-radius: var(--radius-lg); box-shadow: var(--shadow-sm);
  border-left: 4px solid var(--color-brand);
}
.transport-item h3 { font-size: 1.05rem; margin-bottom: 0.5rem; }
.transport-item p { color: var(--color-text-light); font-size: 0.95rem; margin-bottom: 0; }

/* --- Comparison Table --- */
.comparison-table {
  width: 100%; border-collapse: collapse; margin: 2rem 0;
  background: var(--color-white); border-radius: var(--radius-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.comparison-table th, .comparison-table td { padding: 1rem 1.25rem; text-align: left; }
.comparison-table thead th {
  background: var(--color-brand); color: var(--color-white);
  font-weight: 600; font-size: 0.95rem;
}
.comparison-table tbody tr { border-bottom: 1px solid var(--color-light); }
.comparison-table tbody tr:hover { background: var(--color-offwhite); }
.comparison-table tbody td { font-size: 0.95rem; }
.comparison-table .feature-name { font-weight: 600; color: var(--color-dark); }

/* --- Footer --- */
.footer {
  background: var(--color-dark); color: rgba(255,255,255,.7);
  padding: 4rem 0 2rem;
}
.footer a { color: rgba(255,255,255,.7); }
.footer a:hover { color: var(--color-white); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 3rem; margin-bottom: 3rem; }
.footer__brand p { margin-top: 1rem; font-size: 0.9rem; line-height: 1.6; max-width: 300px; }
.footer h4 { color: var(--color-white); font-size: 0.95rem; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.footer__links li { margin-bottom: 0.5rem; }
.footer__links a { font-size: 0.9rem; }
.footer__bottom {
  border-top: 1px solid rgba(255,255,255,.1);
  padding-top: 2rem; display: flex; justify-content: space-between;
  align-items: center; flex-wrap: wrap; gap: 1rem;
  font-size: 0.85rem;
}

@media (max-width: 768px) {
  .footer__grid { grid-template-columns: 1fr 1fr; }
  .footer__bottom { flex-direction: column; text-align: center; }
}
@media (max-width: 480px) {
  .footer__grid { grid-template-columns: 1fr; }
}

/* --- About Page --- */
.about-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
@media (max-width: 768px) { .about-grid { grid-template-columns: 1fr; } }

/* --- Page Header --- */
.page-header {
  background: var(--color-brand); color: var(--color-white);
  padding: 4rem 0 3rem; text-align: center;
}
.page-header h1 { color: var(--color-white); margin-bottom: 0.5rem; }
.page-header p { opacity: .85; font-size: 1.1rem; max-width: 600px; margin: 0 auto; }

/* --- Scroll to top --- */
.scroll-top {
  position: fixed; bottom: 2rem; right: 2rem; z-index: 999;
  width: 44px; height: 44px; border-radius: 50%;
  background: var(--color-brand); color: var(--color-white);
  border: none; cursor: pointer; font-size: 1.2rem;
  display: flex; align-items: center; justify-content: center;
  opacity: 0; transform: translateY(10px);
  transition: all var(--transition); box-shadow: var(--shadow-md);
}
.scroll-top.visible { opacity: 1; transform: translateY(0); }
.scroll-top:hover { background: var(--color-brand-light); }

/* --- Events list --- */
.events-list { display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr)); gap: 1rem; }
.event-item {
  display: flex; gap: 1rem; padding: 1rem 1.25rem;
  background: var(--color-white); border-radius: var(--radius);
  box-shadow: var(--shadow-sm); align-items: flex-start;
}
.event-item__date { font-weight: 700; color: var(--color-brand); white-space: nowrap; min-width: 80px; font-size: 0.9rem; }
.event-item__info h4 { font-size: 0.95rem; margin-bottom: 0.2rem; }
.event-item__info p { font-size: 0.85rem; color: var(--color-gray); margin-bottom: 0; }

/* Inline icon helper */
.icon-inline { display: inline-flex; width: 1em; height: 1em; vertical-align: -0.125em; }

/* Flex helpers */
.flex-center { display: flex; align-items: center; justify-content: center; }
.gap-1 { gap: 0.5rem; }
.gap-2 { gap: 1rem; }
.gap-3 { gap: 1.5rem; }
.mt-1 { margin-top: 0.5rem; }
.mt-2 { margin-top: 1rem; }
.mt-3 { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2 { margin-bottom: 1rem; }
.mb-3 { margin-bottom: 2rem; }

/* --- Hero Split (Matrix-style) --- */
.hero-split {
  display: flex;
  min-height: 80vh;
  position: relative;
}
.hero-split__side {
  flex: 1;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  transition: flex 0.5s ease;
  cursor: pointer;
  text-decoration: none;
  color: var(--color-white);
}
.hero-split__side:hover {
  flex: 1.2;
  color: var(--color-white);
}
.hero-split__bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  transition: transform 0.5s ease;
}
.hero-split__side:hover .hero-split__bg {
  transform: scale(1.05);
}
.hero-split__side--blue .hero-split__overlay {
  background: rgba(30, 58, 95, 0.65);
}
.hero-split__side--red .hero-split__overlay {
  background: rgba(139, 37, 0, 0.65);
}
.hero-split__overlay {
  position: absolute;
  inset: 0;
}
.hero-split__content {
  position: relative;
  z-index: 2;
  text-align: center;
  color: white;
  padding: 2rem;
}
.hero-split__content h2 {
  color: white;
  font-size: clamp(1.8rem, 4vw, 2.5rem);
  margin: 0.75rem 0;
}
.hero-split__content p {
  opacity: 0.9;
  font-size: 1.05rem;
}
.hero-split__center {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  z-index: 10;
  text-align: center;
  color: white;
  text-shadow: 0 2px 20px rgba(0,0,0,0.5);
  pointer-events: none;
}
/* Mobile-only hero banner */
.hero-mobile-banner {
  display: none;
}
@media (max-width: 768px) {
  .hero-mobile-banner {
    display: block;
    background: var(--color-brand);
    color: white;
    text-align: center;
    padding: 1.5rem 1rem;
  }
  .hero-mobile-banner__loc {
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin: 0 0 0.3rem;
    opacity: 0.9;
  }
  .hero-mobile-banner__title {
    font-size: 1.6rem;
    font-weight: 800;
    margin: 0;
    color: white;
  }
  .hero-mobile-banner__sub {
    font-size: 0.85rem;
    margin: 0.3rem 0 0;
    opacity: 0.85;
  }
  .hero-split__center {
    display: none !important;
  }
}
@media (max-width: 768px) {
  .hero-split {
    flex-direction: column;
    min-height: auto;
  }
  .hero-split__side {
    min-height: 50vh;
    flex: none;
  }
  .hero-split__side:hover { flex: none; }
  .hero-split__content { padding: 2rem 1.5rem; }
  .hero-split__content h2 { font-size: 1.5rem !important; margin: 0.5rem 0 !important; }
  .hero-split__content p { font-size: 0.9rem; margin: 0.25rem 0; }
  .hero-split__content .btn { margin-top: 0.75rem; display: inline-block; }
}
