
:root{
  --bg-dark: #0a0a0a;
  --text: #e9e9e9;
  --muted: #bdbdbd;
  --accent: #25D366;
  --overlay: rgba(0,0,0,0.35);
  --overlay-strong: rgba(0,0,0,0.55);
	--maxw: 120rem;
  --zone-h: 84px;
  --gap: 12px;
  --radius: 12px;
}

* { box-sizing: border-box; }
html, body { height: 100%; }
body {
  margin: 0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Helvetica Neue", sans-serif;
  color: var(--text);
  background: var(--bg-dark);
  line-height: 1.6;
  scroll-behavior: smooth;
}

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

/* Fixed WhatsApp button */
.whatsapp-fixed{
  position: fixed;
  top: 60px;
  right: 16px;
  z-index: 1000;
  background: var(--accent);
  color: #071b0c;
  padding: 10px 14px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  box-shadow: 0 6px 20px rgba(37,211,102,0.35);
}
.whatsapp-fixed:hover { filter: brightness(0.95); text-decoration: none; }

/* Hero */
.hero { position: relative; height: 100vh; width: 100%; overflow: clip; isolation: isolate; }
.hero-video{ position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; filter: saturate(1.05) contrast(1.05) brightness(0.9); }
.hero::after{ content:""; position: absolute; inset: 0; background: linear-gradient(to bottom, var(--overlay) 10%, var(--overlay-strong) 120%); z-index: 0; }
.hero-overlay{ position: relative; z-index: 1; height: 100%; display: grid; grid-template-rows: auto 1fr auto; padding: 16px clamp(16px, 4vw, 40px); }

.grid { display: grid; gap: 12px; }
.topbar{ grid-template-columns: 1fr; align-items: center; }
.main-nav{  display: inline-grid;
  grid-auto-flow: column;
  gap: clamp(10px, 3vw, 24px);
  font-weight: 600;
	justify-self: auto; }
.main-nav a{ color: var(--text); opacity: 0.9; padding: 6px 10px; border-radius: 8px; }
.main-nav a.active, .main-nav a:hover{ background: rgba(255,255,255,0.08); text-decoration: none; }

.center-title{ place-self: center; text-align: center; }
.center-title h1{ margin: 0; font-size: clamp(34px, 6vw, 88px); letter-spacing: 0.06em; }

.contact{ grid-template-columns: 1fr 1fr; justify-items: center; align-items: center; gap: 8px; padding-top: 8px; }
.contact a{ 	letter-spacing: 0.8rem;
	font-style: italic;
	font-size: 1.5rem;
	color: var(--muted);
	background: rgba(0, 0, 0, 0.25);
	padding: 8px 12px;
	border-radius: 8px; }
.contact a:hover{ color: #fff; text-decoration: none; }

/* Sections and layout */
.route-section{ animation: fadeIn 260ms ease-out; }
@keyframes fadeIn{ from{ opacity: 0; transform: translateY(6px); } to{ opacity: 1; transform: translateY(0); } }

.content-grid{
  display: grid;
  grid-template-columns: 2fr 1fr; /* Left 2/3 gallery, right 1/3 text */
	gap: clamp(16px, 3vw, 3rem);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(16px, 4vw, 40px);
  min-height: 100vh;
  align-items: center;
}
.text h2{ margin-top: 0; font-size: 3rem;  }
.text p{ margin-bottom: 0; color: #d6d6d6; }
.multivideo {
	grid-template-columns: 1fr 1fr;
}
.multivideo .media video {
	width: 50rem;
}
.media video {
	width:70rem;
	border-radius: var(--radius);
}
/* Mini gallery supporting 4–9 items */
.media{ width: 100%; }
.mini-gallery{
	/* default; script sets 2 for ≤4 items, 3 for 5–9 */
	--cols: 2;               
	--rows: 2;
	position: relative;
	width: 100%;
	display: grid;
	grid-template-columns: repeat(var(--cols), 1fr);
	grid-template-rows: repeat(var(--rows), auto); 
	gap: var(--gap);
	background: #000;
	border-radius: var(--radius);
	overflow: hidden;
	box-shadow: 0 8px 30px rgba(0,0,0,0.35);
	user-select: none;
	touch-action: manipulation;
}
.g-item{
	position: relative;
	aspect-ratio: 16 / 9;     /* enforce 16:9 per item */
	overflow: hidden;
	border-radius: var(--radius);
	will-change: transform, filter;
	transform: translate(0,0) scale(1);
	transform-origin: center center;
	transition: transform .45s cubic-bezier(.2,.6,.2,1), filter .25s ease, z-index .1s linear;
	z-index: 1;
}
.g-item img, .g-item video{width: 100%;
	height: 100%;
	object-fit: cover;        
	display: block; }

/* Dim non-selected items slightly during hover/lock */
.mini-gallery.hovering .g-item:not(.is-hovered):not(.is-locked),
.mini-gallery.locked .g-item:not(.is-locked){ filter: brightness(0.85) saturate(0.95); }

/* Footer */
.site-footer{
  border-top: 1px solid rgba(255,255,255,0.08);
  background: #0d0d0d;
  height: 15rem; /* requested fixed footer height */
  display: flex;
  align-items: center;
}
.footer-inner{
  max-width: var(--maxw);
  margin: 0 auto;
  display: flex;
  gap: 1rem;
  align-items: center;
  justify-content: space-between;
  color: var(--muted);
}
.footer-inner a{ color: var(--text); opacity: 0.9; }
.footer-inner a:hover{ opacity: 1; text-decoration: underline; }

/* Bottom hover zone for auto-scroll */
.bottom-scroll-zone{
  position: fixed; left: 0; right: 0; bottom: 0; height: var(--zone-h);
  z-index: 900; pointer-events: auto;
  background: linear-gradient(to top, rgba(255,255,255,0.04), rgba(255,255,255,0));
  opacity: 0; transition: opacity .2s ease;
}
.bottom-scroll-zone:hover{ opacity: 1; }

/* Responsive */
@media(max-width:1920px){
	:root{
		--maxw:80rem;
	}
	.text h2{ font-size: 2rem;  }
	.media video {
		width:40rem;
	}
	.multivideo .media video {
		width:30rem;
	}
	.monovideo {
		grid-template-columns: 1fr 1fr;
	}
}
@media (max-width:1024px) {
	html {
		font-size: 14px;
	}
}
@media (max-width: 900px){
  .content-grid{ grid-template-columns: 1fr; align-items: start; }
  .main-nav{ gap: 12px; justify-self: start; }
  .contact{ grid-template-columns: 1fr; }
}
@media(max-width:820px){
	.media, .multivideo .media {
		text-align:center;
	}
	.media video, .multivideo .media video {
		width: 50rem;
	}
}
@media (max-width: 520px){
	.footer-inner {
    width:100%;
		justify-content: center;
}
	a span {
		display:none;
	}
	.hero-video {
    opacity: 0.3;
	}
	.main-nav a {
    font-size: 0.8rem;
	}
	.topbar {
    width: 70%;
}
.main-nav {
	grid-auto-flow: row;
	gap: 0.1rem;
}
	.whatsapp-fixed{
position: fixed;
bottom: 16px;
right: 16px;
z-index: 1000;
width: 56px;
height: 56px;
border-radius: 50%;
background: var(--accent); /* WhatsApp green */
color: #ffffff;
display: grid;
place-items: center;
box-shadow: 0 8px 24px rgba(37,211,102,0.35);
transition: transform .15s ease, box-shadow .2s ease, filter .2s ease;
}
.whatsapp-fixed:hover{
transform: translateY(-2px);
filter: brightness(0.95);
box-shadow: 0 12px 28px rgba(37,211,102,0.45);
}
.whatsapp-fixed:focus-visible{
outline: 2px solid #fff;
outline-offset: 2px;
}
.whatsapp-fixed svg{
width: 24px;
height: 24px;
}
  .center-title h1{ letter-spacing: 0.03em; }
	.media video, .multivideo .media video {
    width: 27rem;
}
.contact a {
	letter-spacing: 0.2rem;
	font-size: 1rem;
}
.text h2 {
	text-align: center;
}
}
@media(max-width:390px){
	.media video, .multivideo .media video {
		width: 22rem;
}
.site-footer {
	font-size: 0.8rem;
}
}
@media (max-width:320px){
	.media video, .multivideo .media video {
		width: 20rem;
}
.text h2 {
	font-size: 1.8rem;
}
}
/* Reduced motion */
@media (prefers-reduced-motion: reduce){
  html, body { scroll-behavior: auto; }
  .route-section{ animation: none; }
  .bottom-scroll-zone{ background: none; }
}

