/* ═══════════════════════════════════════════════════════════════
   BLER TRAVEL BRAZIL — Luxury Editorial Design
   Eco-Elegant Palette (cream + forest green)
═══════════════════════════════════════════════════════════════

   Cream:       #F5F0E6   warm off-white
   Cream dim:   #EBE4D6   slightly darker
   Green deep:  #2E5440   rich forest green
   Green mid:   #4A7A5C   medium green
   Green light: #A8CAAF   soft sage
   Green pale:  #D8EAD8   near-white green tint
   White:       #FFFFFF
   Ink:         #1A2B1E   near-black with green tint
   Ink mid:     #4A5E4F   medium text
   Ink dim:     rgba(26,43,30,.44)

   Type
   ────
   Display:  Cormorant Garamond 300 / italic
   Body:     Inter 300 / 400
═══════════════════════════════════════════════════════════════ */

/* ── Tokens ─────────────────────────────────────────────────── */
:root {
  --cream:        #F5F0E6;
  --cream-dim:    #EBE4D6;
  --green-deep:   #2E5440;
  --green-mid:    #4A7A5C;
  --green-light:  #A8CAAF;
  --green-pale:   #D8EAD8;
  --green-line:   rgba(46,84,64,.18);
  --white:        #FFFFFF;
  --ink:          #111111;
  --ink-mid:      #222222;
  --ink-dim:      rgba(0,0,0,.80);
  --ink-muted:    rgba(0,0,0,.65);
  --text-inv:     rgba(245,240,230,.98);
  --text-inv-dim: rgba(245,240,230,.90);
  --ease:         cubic-bezier(.22,.68,0,1.2);
  --ease-out:     cubic-bezier(.16,1,.3,1);
  --t:            .4s;
}

/* ── Reset ──────────────────────────────────────────────────── */
*,*::before,*::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: 'Avenir Next', 'Avenir', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-weight: 400;
  background: var(--cream);
  color: var(--ink);
  overflow-x: hidden;
  line-height: 1.7;
}
img { display: block; max-width: 100%; object-fit: cover; }
a   { color: inherit; text-decoration: none; }
button { font-family: inherit; cursor: pointer; background: none; border: none; }

/* ── Cursor glow ────────────────────────────────────────────── */
.cursor-glow {
  position: fixed;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46,84,64,.07) 0%, transparent 70%);
  transform: translate(-50%,-50%);
  pointer-events: none;
  z-index: 0;
  transition: opacity .3s;
  will-change: transform;
}
@media (hover: none) { .cursor-glow { display: none; } }

/* ── Typography ─────────────────────────────────────────────── */
h1,h2,h3 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 300;
  line-height: 1.08;
  letter-spacing: -.01em;
}
h1 { font-size: clamp(2.4rem, 5vw, 4.8rem); }
h2 { font-size: clamp(1.7rem, 3vw, 3rem); }
h3 { font-size: clamp(1.1rem, 2vw, 1.6rem); }
em { font-style: italic; }

.overline {
  font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 1rem;
  display: none;
}

.pull-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.1rem, 2vw, 1.6rem);
  font-weight: 300;
  font-style: italic;
  line-height: 1.3;
  color: var(--ink);
  margin-bottom: 1.6rem;
}
.pull-quote-inv { color: var(--text-inv); }

.green-rule {
  width: 48px; height: 1.5px;
  background: var(--green-mid);
  margin: 1.6rem 0;
  flex-shrink: 0;
}
/* legacy alias used in index.html */
.gold-rule { width: 48px; height: 1.5px; background: var(--green-mid); margin: 1.6rem 0; flex-shrink: 0; }

/* ── Scroll reveal ──────────────────────────────────────────── */
.reveal-up {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .85s var(--ease-out), transform .85s var(--ease-out);
}
.reveal-up.is-visible { opacity: 1; transform: translateY(0); }

.reveal-fade {
  opacity: 0;
  transition: opacity 1s ease;
}
.reveal-fade.is-visible { opacity: 1; }

[data-delay="1"] { transition-delay: .12s; }
[data-delay="2"] { transition-delay: .24s; }
[data-delay="3"] { transition-delay: .36s; }
[data-delay="4"] { transition-delay: .48s; }

/* ══════════════════════════════════════════════════════════════
   NAVIGATION — always white
══════════════════════════════════════════════════════════════ */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 900;
  background: var(--white);
  border-bottom: 1px solid var(--cream-dim);
  transition: box-shadow var(--t);
}
.nav.scrolled {
  box-shadow: 0 4px 32px rgba(26,43,30,.08);
}
.nav-container {
  max-width: 1320px; margin: 0 auto;
  padding: 0 2.5rem;
  height: 90px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem;
}

/* Logo — left, always dark */
.nav-logo {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.nav-logo img {
  height: 50px;
  width: auto;
  object-fit: contain;
  display: block;
}
.nav-logo-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--green-mid);
  flex-shrink: 0;
}

/* Nav links */
.nav-links {
  display: flex; align-items: center; gap: 2.2rem;
}
.nav-links a {
  font-size: .7rem; font-weight: 500;
  letter-spacing: .11em; text-transform: uppercase;
  color: var(--ink-mid);
  position: relative;
  transition: color var(--t);
  white-space: nowrap;
}
.nav-links a::after {
  content: '';
  position: absolute; bottom: -3px; left: 0;
  height: 1.5px; width: 0;
  background: var(--green-mid);
  transition: width var(--t);
}
.nav-links a:hover { color: var(--green-deep); }
.nav-links a:hover::after,
.nav-links a.active::after { width: 100%; }
.nav-links a.active { color: var(--green-deep); }

.nav-end {
  display: flex; align-items: center; gap: 1.4rem;
  flex-shrink: 0;
}
.lang-switcher {
  display: flex; align-items: center; gap: .5rem;
  font-size: .65rem; letter-spacing: .08em;
  color: var(--ink-muted);
}
.lang-btn {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .1em; text-transform: uppercase;
  color: var(--ink-muted);
  padding: 0; line-height: 1;
  transition: color var(--t);
}
.lang-btn:hover,
.lang-btn.active { color: var(--green-deep); }

.nav-hamburger {
  display: none;
  flex-direction: column; gap: 5px;
  width: 22px; padding: 2px 0;
}
.nav-hamburger span {
  display: block; height: 1.5px;
  background: var(--ink);
  transition: transform var(--t), opacity var(--t), width var(--t);
}
.nav-hamburger span:last-child { width: 60%; margin-left: auto; }
.nav-hamburger.open span:first-child { transform: translateY(6.5px) rotate(45deg); }
.nav-hamburger.open span:last-child  { transform: translateY(-6.5px) rotate(-45deg); width: 100%; margin-left: 0; }

/* Mobile drawer */
.nav-drawer {
  position: fixed; inset: 0; z-index: 850;
  background: var(--white);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  gap: 2.4rem;
  opacity: 0; pointer-events: none;
  transition: opacity var(--t);
}
.nav-drawer.open { opacity: 1; pointer-events: all; }
.drawer-links {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.8rem;
}
.drawer-links a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2rem, 6vw, 2.8rem);
  font-weight: 300;
  color: var(--ink);
  letter-spacing: .04em;
  transition: color var(--t);
}
.drawer-links a:hover { color: var(--green-mid); }
.drawer-lang {
  display: flex; align-items: center; gap: .7rem;
  font-size: .75rem; letter-spacing: .1em;
  color: var(--ink-muted);
  margin-top: .5rem;
}

/* ══════════════════════════════════════════════════════════════
   HERO — strict 50/50 split: text left, photos right
══════════════════════════════════════════════════════════════ */
.hero {
  background: var(--white);
  padding-top: 90px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: start;
  position: relative;
  overflow: hidden;
}

/* Decorative circle on left panel background */
.hero-deco-circle {
  position: absolute;
  width: 400px; height: 400px;
  border-radius: 50%;
  background: var(--green-pale);
  opacity: .35;
  left: -140px; bottom: -60px;
  z-index: 0;
  pointer-events: none;
}
.hero-deco-circle::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1.5px solid var(--green-light);
  opacity: .45;
  top: -180px; left: 160px;
}

/* Left: text panel */
.hero-body {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 3rem clamp(2rem, 4vw, 4rem) 3rem clamp(2rem, 5vw, 5rem);
  position: relative;
  z-index: 1;
}

/* Description text */
.hero-desc {
  font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
  font-size: clamp(.85rem, 1.1vw, 1rem);
  font-weight: 400;
  color: var(--ink);
  line-height: 1.85;
  max-width: 480px;
}

/* Right: photo collage panel */
.hero-photos {
  background: var(--cream);
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: auto auto;
  gap: .75rem;
  padding: 3rem 1.5rem 3rem 1rem;
  align-content: start;
  position: relative;
  overflow: hidden;
}

/* Background circles on photo panel */
.hero-photos::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--green-pale);
  opacity: .6;
  right: -80px; top: 10%;
  z-index: 0;
  pointer-events: none;
}
.hero-photos::after {
  content: '';
  position: absolute;
  width: 170px; height: 170px;
  border-radius: 50%;
  border: 1.5px solid var(--green-light);
  opacity: .5;
  left: 6%; bottom: 10%;
  z-index: 0;
  pointer-events: none;
}

/* Individual photos — grid cells, no overlap */
.hero-photo {
  position: relative;
  overflow: hidden;
  box-shadow: 0 6px 20px rgba(26,43,30,.14);
  z-index: 1;
  height: 150px;
}
.hero-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform 1.2s var(--ease-out);
  display: block;
}
.hero-photo:hover img { transform: scale(1.04); }

/* Right column offset — shift hp-2 and hp-4 down for stagger effect */
.hp-1 { }
.hp-2 { transform: translateY(1.2rem); }
.hp-3 { }
.hp-4 { transform: translateY(1.2rem); }

/* ── Buttons ────────────────────────────────────────────────── */
.btn-primary {
  display: inline-flex; align-items: center;
  padding: .9rem 2.4rem;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--white);
  background: var(--green-deep);
  border: 1.5px solid var(--green-deep);
  transition: background var(--t), color var(--t), border-color var(--t), transform .25s;
}
.btn-primary:hover {
  background: transparent;
  color: var(--green-deep);
  transform: translateY(-2px);
}
.btn-ghost {
  display: inline-flex; align-items: center;
  padding: .9rem 2.4rem;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .15em; text-transform: uppercase;
  color: var(--ink);
  background: transparent;
  border: 1.5px solid var(--cream-dim);
  transition: border-color var(--t), color var(--t), transform .25s;
}
.btn-ghost:hover {
  border-color: var(--green-deep);
  color: var(--green-deep);
  transform: translateY(-2px);
}
.btn-whatsapp {
  display: inline-flex; align-items: center; gap: .6rem;
  padding: .9rem 2rem;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  color: var(--white);
  background: #25D366;
  border: 1.5px solid #25D366;
  transition: background var(--t), color var(--t), transform .25s;
  margin-top: 2.2rem;
}
.btn-whatsapp:hover {
  background: transparent; color: #25D366;
  transform: translateY(-2px);
}

/* ══════════════════════════════════════════════════════════════
   DECORATIVE CIRCLES — reusable floating elements
══════════════════════════════════════════════════════════════ */
.deco-circle {
  position: absolute;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
}
.deco-circle-fill  { background: rgba(255,255,255,.08); }
.deco-circle-stroke { border: 1.5px solid rgba(168,202,175,.30); background: transparent; }
.deco-circle-pale  { background: var(--green-pale); opacity: .5; }
.deco-circle-cream { background: var(--cream-dim); opacity: .6; }

/* ══════════════════════════════════════════════════════════════
   DECORATIVE SECTION CIRCLES
══════════════════════════════════════════════════════════════ */
.corporate { position: relative; overflow: hidden; }
.corporate.dark-section { background: #7AAF91; }
.corporate::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.06);
  right: -150px; bottom: -100px;
  z-index: 0; pointer-events: none;
}
.corporate::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  border-radius: 50%;
  border: 1.5px solid rgba(168,202,175,.35);
  left: 5%; top: 10%;
  z-index: 0; pointer-events: none;
}

.leisure { position: relative; overflow: hidden; }
.leisure::before {
  content: '';
  position: absolute;
  width: 440px; height: 440px;
  border-radius: 50%;
  background: var(--green-pale);
  opacity: .6;
  right: -120px; top: 6%;
  z-index: 0; pointer-events: none;
}
.leisure::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1.5px solid var(--green-light);
  opacity: .5;
  left: -60px; bottom: 18%;
  z-index: 0; pointer-events: none;
}

.backoffice { position: relative; overflow: hidden; }
.backoffice::before {
  content: '';
  position: absolute;
  width: 300px; height: 300px;
  border-radius: 50%;
  background: var(--cream-dim);
  opacity: .8;
  right: -80px; top: 25%;
  z-index: 0; pointer-events: none;
}
.backoffice::after {
  content: '';
  position: absolute;
  width: 140px; height: 140px;
  border-radius: 50%;
  border: 1.5px solid var(--green-light);
  opacity: .4;
  left: 8%; bottom: 15%;
  z-index: 0; pointer-events: none;
}

.contact { position: relative; overflow: hidden; }
.contact::before {
  content: '';
  position: absolute;
  width: 360px; height: 360px;
  border-radius: 50%;
  background: var(--green-pale);
  opacity: .55;
  left: -100px; bottom: -80px;
  z-index: 0; pointer-events: none;
}
.contact::after {
  content: '';
  position: absolute;
  width: 200px; height: 200px;
  border-radius: 50%;
  border: 1.5px solid var(--green-light);
  opacity: .5;
  right: 10%; top: 8%;
  z-index: 0; pointer-events: none;
}

/* ══════════════════════════════════════════════════════════════
   ABOUT
══════════════════════════════════════════════════════════════ */
.about {
  background: var(--cream);
  padding: clamp(5rem, 10vh, 9rem) 0;
}
.about-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: center;
}
.about-image { position: relative; }
.about-image img {
  width: 100%; height: clamp(380px, 52vh, 580px);
  box-shadow: 24px 24px 0 var(--cream-dim), 0 0 0 1px var(--green-line);
}
.about-text h2 { color: var(--ink); margin-bottom: .5rem; }
.about-text p   { color: var(--ink-mid); font-size: .85rem; }
.about-stats {
  display: flex; align-items: center; gap: 2rem;
  margin-top: 2.4rem; padding-top: 2.4rem;
  border-top: 1px solid var(--cream-dim);
}
.about-stat { display: flex; flex-direction: column; }
.stat-n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem; font-weight: 300;
  line-height: 1; color: var(--green-mid);
}
.stat-n sup { font-size: 1.4rem; }
.stat-l {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .14em; text-transform: uppercase;
  color: var(--ink-mid); margin-top: .3rem;
}
.stat-sep { width: 1px; height: 40px; background: var(--cream-dim); flex-shrink: 0; }

/* ══════════════════════════════════════════════════════════════
   SECTION SHARED LAYOUT
══════════════════════════════════════════════════════════════ */
.dark-section  { background: var(--green-deep); color: var(--text-inv); }
.light-section { background: var(--white); color: var(--ink); }
.cream-section { background: var(--cream); color: var(--ink); }

.dark-section .overline { color: var(--green-light); }

.section-content {
  max-width: 1320px; margin: 0 auto;
  padding: clamp(5rem, 10vh, 9rem) clamp(1.5rem, 5vw, 5rem);
}
.section-header {
  max-width: 640px;
  margin-bottom: clamp(3rem, 6vh, 5rem);
}
.section-title {
  font-family: 'Avenir Next', 'Avenir', 'Century Gothic', 'Trebuchet MS', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  line-height: 1.1;
  letter-spacing: .04em;
  text-transform: uppercase;
}
.dark-section  .section-title { color: var(--text-inv); }
.light-section .section-title,
.cream-section .section-title { color: var(--ink); }
.dark-section  .section-header h2 { color: var(--text-inv); }
.light-section .section-header h2,
.cream-section .section-header h2 { color: var(--ink); }

/* Two column */
.two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(2.5rem, 5vw, 6rem);
  align-items: start;
}
.body-text p {
  font-size: clamp(.82rem, 1vw, .9rem);
  font-weight: 400;
  line-height: 1.85;
  margin-bottom: 1.2rem;
}
.dark-section  .body-text p { color: var(--text-inv-dim); }
.light-section .body-text p,
.cream-section .body-text p { color: var(--ink); }
.dark-section  .pull-quote  { color: var(--text-inv); }

/* Services list */
.services-label {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1.4rem;
  padding-bottom: .7rem;
  border-bottom: 1px solid rgba(168,202,175,.25);
}
.dark-section .services-label { color: var(--green-light); }
.light-section .services-label,
.cream-section .services-label { color: var(--green-mid); border-color: var(--green-line); }

.services-list ul { list-style: none; display: flex; flex-direction: column; }
.services-list li {
  font-size: .9rem; font-weight: 500;
  padding: .7rem 0;
  border-bottom: 1px solid rgba(168,202,175,.12);
  display: flex; align-items: baseline; gap: .9rem;
  transition: color var(--t);
}
.services-list li::before {
  content: '—'; color: var(--green-light);
  font-size: .7rem; flex-shrink: 0;
}
.dark-section  .services-list li { color: var(--text-inv); font-weight: 500; }
.services-list li:hover { color: var(--green-light); }

.services-list-dark li { border-color: var(--green-line) !important; color: var(--ink) !important; font-weight: 500 !important; }
.services-list-dark li::before { color: var(--green-mid) !important; }
.services-list-dark li:hover { color: var(--green-deep) !important; }

/* Full-width section image */
.section-image-full {
  width: 100%;
  height: clamp(260px, 38vh, 460px);
  position: relative; overflow: hidden;
}
.section-image-full img { width: 100%; height: 100%; }
.image-caption {
  display: none;
}

/* Side image */
.section-image-side {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(4rem, 8vh, 7rem);
}
.section-image-side img { width: 100%; height: clamp(240px, 36vh, 420px); object-position: center 30%; }

/* ══════════════════════════════════════════════════════════════
   LEISURE — Photo mosaic
══════════════════════════════════════════════════════════════ */
.photo-mosaic {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(5rem, 8vh, 7rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.mosaic-item { position: relative; overflow: hidden; }
.mosaic-item img { width: 100%; height: 100%; transition: transform .9s var(--ease-out); }
.mosaic-item:hover img { transform: scale(1.04); }
.mosaic-tall { grid-row: span 2; }
.mosaic-tall img { height: 100%; min-height: 500px; }
.mosaic-right { display: flex; flex-direction: column; gap: 1rem; }
.mosaic-right .mosaic-item img { height: 235px; }
.mosaic-caption {
  display: none;
}

/* ══════════════════════════════════════════════════════════════
   CONTACT
══════════════════════════════════════════════════════════════ */
.contact {
  padding: clamp(5rem, 10vh, 9rem) 0;
  background: var(--cream);
}
.contact-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 7rem);
  align-items: start;
}
.contact-info h2 { color: var(--ink); }
.contact-info .section-title { margin-bottom: 1.8rem; }
.contact-info > p { color: var(--ink-mid); font-size: .85rem; line-height: 1.85; }

.offices { margin-top: 2.8rem; }
.office { padding: 1.8rem 0; }
.office:first-child { padding-top: 0; }
.office-name {
  font-size: .62rem; font-weight: 700;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-mid); margin-bottom: .8rem;
}
.office p { font-size: .78rem; font-weight: 300; color: var(--ink-mid); line-height: 1.75; margin-bottom: .45rem; }
.office a { color: var(--green-mid); transition: color var(--t); border-bottom: 1px solid transparent; }
.office a:hover { color: var(--green-deep); border-bottom-color: var(--green-line); }
.office-divider { height: 1px; background: var(--cream-dim); }

/* Contact form */
.contact-form-wrap {
  padding: clamp(2rem, 4vw, 3.5rem);
  border: 1px solid var(--cream-dim);
  background: var(--white);
}
.form-field { margin-bottom: 1.6rem; }
label {
  display: block;
  font-size: .62rem; font-weight: 500;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--ink-mid); margin-bottom: .5rem;
}
input, textarea {
  width: 100%;
  background: transparent;
  border: none;
  border-bottom: 1px solid var(--cream-dim);
  padding: .6rem 0;
  font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
  font-size: .93rem; font-weight: 300;
  color: var(--ink);
  outline: none;
  transition: border-color var(--t);
  -webkit-appearance: none; border-radius: 0;
}
input:focus, textarea:focus { border-color: var(--green-mid); }
input::placeholder, textarea::placeholder { color: rgba(26,43,30,.2); }
textarea { resize: none; line-height: 1.7; padding-top: .4rem; }

.btn-submit {
  display: flex; align-items: center; gap: 1.2rem;
  padding: 1rem 0;
  font-size: .7rem; font-weight: 500;
  letter-spacing: .2em; text-transform: uppercase;
  color: var(--green-deep);
  border-bottom: 1px solid var(--green-mid);
  transition: color var(--t), gap var(--t);
  width: 100%; justify-content: space-between;
  background: none; border-top: none; border-left: none; border-right: none;
}
.btn-submit:hover { color: var(--green-mid); gap: 1.8rem; }
.btn-submit-arrow { font-size: 1.1rem; transition: transform var(--t); }
.btn-submit:hover .btn-submit-arrow { transform: translateX(4px); }

.form-ok { margin-top: 1rem; font-size: .85rem; color: var(--green-mid); letter-spacing: .04em; }
.hidden { display: none !important; }

/* ══════════════════════════════════════════════════════════════
   VOICE AGENT SECTION
══════════════════════════════════════════════════════════════ */
.voice-agent-section {
  background: var(--green-deep);
  padding: clamp(4rem, 8vh, 7rem) 0;
  position: relative;
  overflow: hidden;
}
.voice-agent-section::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  border-radius: 50%;
  background: rgba(255,255,255,.04);
  right: -150px; top: -100px;
  pointer-events: none;
}
.voice-agent-section::after {
  content: '';
  position: absolute;
  width: 240px; height: 240px;
  border-radius: 50%;
  border: 1.5px solid rgba(168,202,175,.2);
  left: 5%; bottom: -60px;
  pointer-events: none;
}
.voice-agent-inner {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(3rem, 6vw, 6rem);
  align-items: center;
}
.voice-agent-label {
  font-size: .65rem; font-weight: 500;
  letter-spacing: .22em; text-transform: uppercase;
  color: var(--green-light);
  margin-bottom: 1rem;
}
.voice-agent-title {
  font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
  font-size: clamp(1.6rem, 3.5vw, 2.8rem);
  font-weight: 400;
  letter-spacing: .04em;
  text-transform: uppercase;
  color: var(--white);
  line-height: 1.1;
  margin-bottom: 1.4rem;
}
.voice-agent-desc {
  font-size: clamp(.82rem, 1vw, .92rem);
  font-weight: 400;
  line-height: 1.85;
  color: rgba(245,240,230,.80);
}
.voice-agent-cta {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.4rem;
  text-align: center;
}
/* ── How it works steps ─────────────────────────────────────── */
.voice-agent-steps {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  font-size: .68rem;
  font-weight: 400;
  letter-spacing: .03em;
  color: rgba(245,240,230,.75);
}
.step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.1rem; height: 1.1rem;
  margin-right: .4rem;
  border-radius: 50%;
  background: rgba(245,240,230,.18);
  color: var(--white);
  font-size: .62rem;
  font-weight: 600;
}
.step-arrow { color: rgba(245,240,230,.4); }

/* ── Contact fields ──────────────────────────────────────────── */
.voice-agent-fields {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
  justify-content: center;
  width: 100%;
}
.voice-field {
  display: flex;
  flex-direction: column;
  gap: .35rem;
  text-align: left;
  flex: 1 1 180px;
  max-width: 220px;
}
.voice-field label {
  font-size: .6rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,230,.6);
}
.voice-field input {
  padding: .6rem .9rem;
  font-family: inherit;
  font-size: .8rem;
  color: var(--white);
  background: rgba(0,0,0,.18);
  border: 1px solid rgba(245,240,230,.22);
  border-radius: 8px;
  outline: none;
  transition: border-color .25s, background .25s;
}
.voice-field input::placeholder { color: rgba(245,240,230,.4); }
.voice-field input:focus {
  border-color: rgba(168,202,175,.7);
  background: rgba(0,0,0,.28);
}
.voice-field input.field-error {
  border-color: #e08888;
}
.voice-agent-fields-hint {
  font-size: .68rem;
  color: rgba(245,240,230,.5);
  max-width: 320px;
  line-height: 1.5;
  margin-top: -.4rem;
}

/* ── Agent toggle ───────────────────────────────────────────── */
.agent-toggle {
  display: flex;
  gap: .35rem;
  background: rgba(0,0,0,.18);
  border-radius: 60px;
  padding: .25rem;
}
.agent-tab {
  display: flex;
  align-items: center;
  gap: .45rem;
  padding: .42rem 1.1rem;
  font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
  font-size: .62rem;
  font-weight: 500;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: rgba(245,240,230,.6);
  background: transparent;
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: background .25s, color .25s;
}
.agent-tab:hover {
  color: rgba(245,240,230,.9);
}
.agent-tab.active {
  background: rgba(245,240,230,.15);
  color: rgba(245,240,230,.98);
}
.agent-badge {
  font-size: .52rem;
  font-weight: 600;
  letter-spacing: .1em;
  padding: .15rem .42rem;
  border-radius: 20px;
  background: rgba(168,202,175,.25);
  color: var(--green-light);
}
.agent-tab.active .agent-badge {
  background: rgba(168,202,175,.4);
  color: #c8e6cc;
}

.voice-btn {
  display: flex;
  align-items: center;
  gap: .7rem;
  padding: .75rem 1.8rem;
  font-family: 'Avenir Next', 'Avenir', 'Century Gothic', sans-serif;
  font-size: .68rem;
  font-weight: 500;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--green-deep);
  background: var(--white);
  border: none;
  border-radius: 60px;
  cursor: pointer;
  transition: background .3s, color .3s, transform .25s, box-shadow .3s;
  box-shadow: 0 8px 32px rgba(0,0,0,.18);
}
.voice-btn:hover {
  background: var(--green-light);
  transform: translateY(-3px);
  box-shadow: 0 14px 40px rgba(0,0,0,.22);
}
.voice-btn.connecting {
  background: var(--green-light);
  color: var(--green-deep);
  animation: pulse 1.2s ease-in-out infinite;
}
.voice-btn.active {
  background: #e05555;
  color: var(--white);
}
.voice-btn.active:hover {
  background: #c94444;
}
.voice-btn-icon {
  display: flex;
  align-items: center;
}
.voice-agent-hint {
  font-size: .72rem;
  font-weight: 400;
  letter-spacing: .06em;
  color: rgba(245,240,230,.55);
  max-width: 280px;
  line-height: 1.6;
}
@keyframes pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(168,202,175,.5); }
  50%       { box-shadow: 0 0 0 14px rgba(168,202,175,0); }
}
@media (max-width: 768px) {
  .voice-agent-inner { grid-template-columns: 1fr; text-align: center; }
  .voice-agent-label, .voice-agent-desc { text-align: center; }
}

/* ══════════════════════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════════════════════ */
.footer {
  background: var(--white);
  border-top: 1px solid var(--cream-dim);
  padding: 3rem 0 2rem;
}
.footer-top {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem) 2rem;
  border-bottom: 1px solid var(--cream-dim);
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1.5rem;
}
.footer-logo {
  display: flex; align-items: center;
}
.footer-logo img {
  height: 44px;
  width: auto;
  object-fit: contain;
  display: block;
}
.footer-nav { display: flex; align-items: center; gap: 2rem; flex-wrap: wrap; }
.footer-nav a {
  font-size: .65rem; letter-spacing: .12em; text-transform: uppercase;
  color: var(--ink-mid);
  transition: color var(--t);
}
.footer-nav a:hover { color: var(--green-deep); }
.footer-bottom {
  max-width: 1320px; margin: 0 auto;
  padding: 1.5rem clamp(1.5rem, 5vw, 5rem) 0;
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 1rem;
}
.footer-bottom p { font-size: .62rem; letter-spacing: .1em; color: var(--ink-muted); }
.footer-lang { display: flex; align-items: center; gap: .55rem; font-size: .62rem; color: var(--ink-muted); }

/* ══════════════════════════════════════════════════════════════
   LEISURE — 6-photo mosaic (3×2 grid)
══════════════════════════════════════════════════════════════ */
.photo-mosaic-6 {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(5rem, 8vh, 7rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  grid-template-rows: repeat(2, 270px);
  gap: 1rem;
}
.photo-mosaic-6 .mosaic-item { overflow: hidden; }
.photo-mosaic-6 .mosaic-item img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.photo-mosaic-6 .mosaic-item:hover img { transform: scale(1.04); }

/* ══════════════════════════════════════════════════════════════
   PHOTO STRIP — between Back Office and Contact
══════════════════════════════════════════════════════════════ */
.bo-photos-wrap {
  background: var(--cream);
  padding-top: clamp(2rem, 4vh, 3rem);
}

/* ══════════════════════════════════════════════════════════════
   BACK OFFICE — 3-photo horizontal strip
══════════════════════════════════════════════════════════════ */
.bo-photos {
  max-width: 1320px; margin: 0 auto;
  padding: 0 clamp(1.5rem, 5vw, 5rem) clamp(3rem, 5vh, 4rem);
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
.bo-photos .mosaic-item { overflow: hidden; }
.bo-photos .mosaic-item img {
  width: 100%; height: 250px;
  object-fit: cover;
  transition: transform .9s var(--ease-out);
}
.bo-photos .mosaic-item:hover img { transform: scale(1.04); }

/* ══════════════════════════════════════════════════════════════
   CONTACT — office rows with city photos
══════════════════════════════════════════════════════════════ */
.office-row {
  display: grid;
  grid-template-columns: 175px 1fr;
  gap: 1.6rem;
  align-items: start;
  padding: 1.8rem 0;
}
.office-row:first-child { padding-top: 0; }
.office-img { overflow: hidden; flex-shrink: 0; }
.office-img img {
  width: 100%; height: 155px;
  object-fit: cover;
}

/* ══════════════════════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════════════════════ */
/* ══════════════════════════════════════════════════════════════
   PRIVACY & COOKIES BANNER
══════════════════════════════════════════════════════════════ */
.cookie-banner {
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 9999;
  background: var(--white);
  border-top: 2px solid var(--green-pale);
  box-shadow: 0 -8px 40px rgba(26,43,30,.12);
  padding: 1.4rem 2rem;
  transform: translateY(100%);
  transition: transform .55s var(--ease-out);
}
.cookie-banner.visible { transform: translateY(0); }
.cookie-banner-inner {
  max-width: 1320px; margin: 0 auto;
  display: flex; align-items: center; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap;
}
.cookie-title {
  font-size: .65rem; font-weight: 600;
  letter-spacing: .18em; text-transform: uppercase;
  color: var(--green-deep); margin-bottom: .45rem;
}
.cookie-desc {
  font-size: .78rem; color: var(--ink-mid);
  line-height: 1.65; max-width: 740px;
}
.cookie-actions {
  display: flex; gap: .8rem; flex-shrink: 0; align-items: center;
}
.cookie-btn {
  padding: .65rem 1.8rem;
  font-family: inherit;
  font-size: .65rem; font-weight: 500;
  letter-spacing: .12em; text-transform: uppercase;
  cursor: pointer;
  border: 1.5px solid var(--green-deep);
  transition: background var(--t), color var(--t), border-color var(--t);
}
.cookie-accept {
  background: var(--green-deep); color: var(--white);
}
.cookie-accept:hover { background: var(--green-mid); border-color: var(--green-mid); }
.cookie-decline {
  background: transparent; color: var(--green-deep);
}
.cookie-decline:hover { background: var(--cream); }

@media (max-width: 768px) {
  .cookie-banner { padding: 1.2rem 1.4rem; }
  .cookie-banner-inner { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .cookie-actions { width: 100%; }
  .cookie-btn { flex: 1; text-align: center; }
}

@media (max-width: 1024px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
  }
  .hero-photos {
    min-height: 90vw;
    position: relative;
  }
  .hero-body { padding: 3rem 2rem 2rem; }
  .hero-desc { max-width: 100%; }
  .about-inner  { grid-template-columns: 1fr; }
  .about-image  { order: -1; }
  .about-image img { height: 380px; box-shadow: none; }
  .two-col      { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .photo-mosaic { grid-template-columns: 1fr; }
  .mosaic-tall  { grid-row: auto; }
  .mosaic-tall img { min-height: 280px; height: 280px; }
  .mosaic-right { flex-direction: row; gap: 1rem; }
  .mosaic-right .mosaic-item img { height: 200px; }
  .photo-mosaic-6 { grid-template-columns: repeat(2, 1fr); grid-template-rows: auto; }
  .photo-mosaic-6 .mosaic-item img { height: 220px; }
  .bo-photos { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-hamburger { display: flex; }
  .hero-photos { grid-template-columns: 1fr 1fr; min-height: 280px; }
  .hero-actions { flex-direction: column; align-items: flex-start; gap: 1rem; }
  .about-stats { flex-wrap: wrap; gap: 1.4rem; }
  .footer-top { flex-direction: column; gap: 1.5rem; }
  .footer-nav { gap: 1.2rem; }
  .footer-bottom { flex-direction: column; text-align: center; gap: .6rem; }
  .mosaic-right { flex-direction: column; }
  .mosaic-right .mosaic-item img { height: 200px; }
  .photo-mosaic-6 { grid-template-columns: 1fr 1fr; }
  .photo-mosaic-6 .mosaic-item img { height: 180px; }
  .bo-photos { grid-template-columns: 1fr; }
  .bo-photos .mosaic-item img { height: 200px; }
  .office-row { grid-template-columns: 1fr; }
  .office-img img { height: 200px; }
}

@media (max-width: 500px) {
  .nav-container { padding: 0 1.4rem; }
  .hero-body { padding: 2.5rem 1.4rem 2rem; }
  .section-content { padding-left: 1.4rem; padding-right: 1.4rem; }
  .section-image-side, .photo-mosaic { padding-left: 1.4rem; padding-right: 1.4rem; }
  .about-inner  { padding: 0 1.4rem; }
  .contact-inner { padding: 0 1.4rem; }
  .contact-form-wrap { padding: 1.8rem 1.4rem; }
  .footer-top, .footer-bottom { padding-left: 1.4rem; padding-right: 1.4rem; }
  .hero-photos { grid-template-columns: 1fr 1fr; min-height: 220px; }
}
