/* =========================================================
   THEME TOKENS
   ========================================================= */
:root{
  --primary:#2D6B7A;
  --dark:#36444A;
  --muted:#7A8C9A;

  --bg-dark:#0b0f12;
  --bg-dark-2:#0f151a;
  --bg:#ffffff;
  --bg-soft:#f6f8f9;

  --text:#1f2933;
  --text-muted:#5f6f7a;
  --text-light:#e6eaed;

  --border: rgba(122,140,154,.25);
  --shadow: 0 18px 45px rgba(0,0,0,.12);
  --shadow-soft: 0 10px 26px rgba(0,0,0,.08);

  --radius-xl: 32px;
  --radius-lg: 22px;
  --radius-md: 14px;
  --pill: 999px;

  --font: "Gotham","Montserrat",system-ui,-apple-system,Segoe UI,Roboto,Helvetica,Arial,sans-serif;
}

/* =========================================================
   BASE / RESET
   ========================================================= */
*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family:var(--font);
  color:var(--text-light);
  background:var(--bg-dark);
  line-height:1.6;
}
a{ color:inherit; }
img{ max-width:100%; height:auto; display:block; }

.container{ max-width:1180px; margin:0 auto; padding:0 24px; }
.small{ font-size:12px; opacity:.9; }

/* Accessibility */
.skip-link{
  position:absolute; left:-999px; top:auto;
  width:1px; height:1px; overflow:hidden;
}
.skip-link:focus{
  left:16px; top:16px;
  width:auto; height:auto;
  padding:10px 12px;
  border-radius:12px;
  background:var(--bg);
  color:var(--text);
  z-index:9999;
  border:1px solid rgba(0,0,0,.12);
}

/* =========================================================
   HEADER (TWO-TIER)
   Notes:
   - Your file had 3-4 competing header solutions layered.
   - This keeps the FINAL intended behavior: topbar w/ logo + contact,
     and a menubar/nav aligned cleanly.
   ========================================================= */
.site-header{
  position:sticky;
  top:0;
  z-index:100;
  background:var(--bg-dark);
  backdrop-filter: blur(12px);
  border-bottom:1px solid var(--border);
  padding:0; /* previously overridden later */
}

/* Top bar */
.topbar{
  background:var(--bg-dark);
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.topbar-inner{
  display:grid;
  grid-template-columns: 260px 1fr;
  align-items:flex-start; /* allow taller logo + right stack */
  padding:10px 0;
  min-height:92px; /* keeps room for 80px logo */
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  text-decoration:none;
  justify-self:start;
  min-width:200px;
}
.brand-logo{
  height:80px;
  width:auto;
}

.topbar-right{
  justify-self:end;
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:10px;
}

/* Contact block */
.header-contact{
  display:flex;
  flex-direction:column;
  align-items:flex-end;
  gap:4px;
  font-size:13px;
  line-height:1.25;
  color:var(--text-light);
  text-align:right;
}
.header-address{
  line-height:1.2;
  color:var(--muted);
  font-weight:600;
  font-size:14px;
}
.header-phones{
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:800;
  white-space:nowrap;
}
.header-contact a,
.header-phones a{
  color:var(--text-light);
  text-decoration:none;
  font-weight:800;
}
.header-contact a:hover,
.header-phones a:hover{
  color:var(--primary);
}

/* Menu bar (kept in DOM; visually tucked into topbar like your final rules) */
.menubar{
  background: transparent;
  border:0;
}
.menubar-inner{
  display:grid;
  grid-template-columns: 260px 1fr;
  align-items:center;
  padding:0;
  min-height:0;
  margin-top:-58px; /* tuck amount */
}

/* Nav */
.site-nav{
  grid-column:2;
  width:auto;
  justify-self:end;
}
.nav-list{
  list-style:none;
  margin:0;
  padding:0;
  display:flex;
  align-items:center;
  gap:22px;
  justify-content:flex-end;
  white-space:nowrap;
  flex-wrap:nowrap;
  width:100%;
}

.nav-link{
  text-decoration:none;
  color:var(--muted);
  font-weight:500;
  letter-spacing:-0.02em;
  padding:10px 8px;
  border-radius:12px;
  display:inline-flex;
  align-items:center;
  gap:8px;
}
.nav-link.is-active{ color:var(--primary); }

/* “anchored” hover (your override) */
.nav-link:hover{
  color:var(--primary);
  background:transparent;
  text-decoration:none;
}

.has-dropdown{ position:relative; }
.nav-btn{ background:none; border:0; cursor:pointer; font:inherit; }
.chev{
  width:9px; height:9px;
  border-right:2px solid currentColor;
  border-bottom:2px solid currentColor;
  transform: rotate(45deg);
  opacity:.65;
  margin-top:-2px;
}

/* Dropdown panel (desktop) */
.dropdown{
  position:absolute;
  top:48px;
  left:0;
  min-width:320px;
  background:var(--bg);
  color:var(--text);
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  box-shadow: var(--shadow-soft);
  padding:12px;
  display:none;
}
.has-dropdown:hover .dropdown{ display:block; }
.dropdown a{
  display:block;
  padding:10px 10px;
  border-radius:12px;
  text-decoration:none;
  color:var(--text-muted);
  font-weight:600;
  font-size:14px;
}
.dropdown a:hover{ background:var(--bg-soft); color:var(--primary); }
.dd-cols{ display:grid; grid-template-columns:repeat(3,1fr); gap:10px; }
.dd-title{
  font-size:12px;
  font-weight:800;
  color:var(--dark);
  letter-spacing:.08em;
  text-transform:uppercase;
  padding:8px 10px 6px;
}

/* Nav CTA item */
.nav-cta{ margin-left:20px; }
.btn-cta{
  border-radius:999px; /* you allowed a curved CTA */
  padding:10px 16px;
  font-weight:800;
  box-shadow:none;
}

/* Mobile nav toggle (if you use it) */
.nav-toggle{
  display:none;
  width:44px;
  height:44px;
  border-radius:14px;
  background:transparent;
  border:1px solid rgba(255,255,255,.14);
  cursor:pointer;
}
.nav-toggle span{
  display:block;
  width:18px;
  height:2px;
  background:var(--primary);
  border-radius:2px;
  margin:4px auto;
  transition:.2s;
}

/* =========================================================
   MAIN / SECTIONS
   ========================================================= */
main{
  background:var(--bg);
  color:var(--text);
  padding-top:0;
}

.section{ padding:72px 0; }
.section.alt{ background:var(--bg-soft); }

/* Hero */
.hero{
  padding:26px 0 0; /* final intended breathing room under header */
  background:linear-gradient(180deg, var(--bg-soft), #fff);
}
.hero-card{
  border-radius: var(--radius-xl);
  overflow:hidden;
  border:1px solid rgba(0,0,0,.08);
  box-shadow: var(--shadow);
  background:
    radial-gradient(900px 380px at 20% 25%, rgba(45,107,122,.14), transparent 60%),
    linear-gradient(135deg, var(--dark), #0c1a1f);
  color:#fff;
}
.hero-inner{
  padding:42px 38px;
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:26px;
  align-items:center;
}
.hero h1{
  margin:0;
  font-size:52px;
  line-height:1.03;
  letter-spacing:-0.02em;
}
.hero h1 .accent{ color:#9fe3df; }
.hero p{
  margin:16px 0 22px;
  max-width:560px;
  color:rgba(255,255,255,.86);
  font-weight:500;
  font-size:18px;
}
.hero-actions{ display:flex; gap:12px; flex-wrap:wrap; }

/* Media placeholder */
.media{
  width:100%;
  min-height:290px;
  border-radius: var(--radius-lg);
  background: linear-gradient(180deg, rgba(45,107,122,.35), rgba(45,107,122,.10));
  border:1px solid rgba(255,255,255,.14);
}
.media::after{
  display:grid;
  place-items:center;
  height:100%;
  color:rgba(255,255,255,.75);
  font-weight:700;
}

/* Cards / Welcome */
.card{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-xl);
  box-shadow: var(--shadow-soft);
  overflow:hidden;
}
.welcome{ margin-top:-72px; }
.welcome-grid{
  display:grid;
  grid-template-columns: 420px 1fr;
  gap:0;
}
/* Image layer */
.welcome-body {
  position: relative;
  height: 100%;
  padding: 3rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.welcome-body--image {
  min-height: 320px; /* safe fallback */
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;

  background-image:
    linear-gradient(rgba(0,0,0,.75), rgba(0,0,0,.75)),
    url("../assets/reception.png");

}




.kicker{
  color:var(--primary);
  font-weight:800;
  letter-spacing:0.28em;
  text-transform:uppercase;
  font-size:12px;
  margin:0 0 10px;
}
.h2{
  margin:0 0 10px;
  font-size:38px;
  letter-spacing:-0.02em;
  color:var(--dark);
  line-height:1.1;
}
.lead{
  margin:0 0 18px;
  color:var(--text-muted);
  font-size:16px;
  font-weight:500;
  max-width:760px;
}

.grid-3{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
}
.tile{
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  background:#fff;
  padding:18px;
}
.tile h3{ margin:0 0 8px; color:var(--dark); letter-spacing:-0.02em; }
.tile p{ margin:0; color:var(--text-muted); font-weight:500; }

.badge{
  display:inline-flex;
  align-items:center;
  gap:8px;
  padding:8px 12px;
  border-radius:999px;
  border:1px solid rgba(45,107,122,.22);
  background: rgba(45,107,122,.08);
  color: var(--primary);
  font-weight:800;
  font-size:12px;
  letter-spacing:.08em;
  text-transform:uppercase;
}

.stack{ display:flex; flex-direction:column; gap:14px; }
.list{
  margin:10px 0 0;
  padding-left:18px;
  color:var(--text-muted);
  font-weight:500;
}
.list li{ margin:6px 0; }

.hr{ height:1px; background:rgba(0,0,0,.08); border:0; margin:24px 0; }

.callout{
  border-radius: var(--radius-xl);
  padding:22px;
  background: radial-gradient(1000px 360px at 20% 30%, rgba(45,107,122,.14), transparent 60%), var(--bg-soft);
  border:1px solid rgba(0,0,0,.08);
}
.callout h3{ margin:0 0 8px; color:var(--dark); }
.callout p{ margin:0; color:var(--text-muted); font-weight:500; }
.actions-row{ display:flex; gap:12px; flex-wrap:wrap; margin-top:14px; }

/* =========================================================
   BUTTONS / PILLS
   ========================================================= */
.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 14px;
  border-radius:var(--pill);
  background:rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
}
.pill-dot{ width:10px; height:10px; border-radius:999px; background:var(--primary); }
.pill-link{ text-decoration:none; color:var(--text-light); font-weight:700; }

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:var(--pill);
  font-weight:700;
  text-decoration:none;
  border:1px solid transparent;
}
.btn-primary{
  background:var(--primary);
  color:#fff;
  box-shadow: 0 12px 24px rgba(45,107,122,.25);
}
.btn-primary:hover{ filter:brightness(.96); }
.btn-secondary{
  background:#fff;
  color:var(--dark);
  border-color: rgba(0,0,0,.10);
}
.btn-secondary:hover{ background:var(--bg-soft); }

/* =========================================================
   CONDITIONS / ACCORDION
   ========================================================= */
.accordion{
  border:1px solid rgba(0,0,0,.08);
  border-radius: var(--radius-lg);
  overflow:hidden;
  background:#fff;
}
.acc-item + .acc-item{ border-top:1px solid rgba(0,0,0,.08); }
.acc-btn{
  width:100%;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:16px 18px;
  background:#fff;
  border:0;
  cursor:pointer;
  font-weight:800;
  color:var(--dark);
  letter-spacing:-0.02em;
  font-size:16px;
}
.acc-btn:hover{ background:var(--bg-soft); }
.acc-panel{
  padding:0 18px 16px;
  display:none;
}
.acc-panel.open{ display:block; }

.pills{ display:flex; flex-wrap:wrap; gap:10px; margin-top:10px; }
.pill-item{
  border:1px solid rgba(0,0,0,.10);
  border-radius:999px;
  padding:8px 12px;
  font-size:13px;
  font-weight:600;
  color:var(--text-muted);
  background:#fff;
}

/* =========================================================
   FOOTER
   ========================================================= */
.site-footer{
  background:var(--bg-dark);
  color:var(--muted);
  border-top:1px solid var(--border);
}
.footer-grid{
  padding:42px 0;
  display:grid;
  grid-template-columns: 1.2fr .9fr .9fr 1.2fr;
  gap:18px;
}
.footer-brand{
  font-weight:800;
  color:var(--text-light);
  letter-spacing:-0.02em;
  margin-bottom:6px;
}
.footer-title{
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
  color:var(--text-light);
  opacity:.9;
  margin-bottom:8px;
}
.footer-text{ font-weight:600; }
.footer-link{ color:var(--muted); text-decoration:none; }
.footer-link:hover{ color:var(--primary); }

.map-box{
  border-radius:18px;
  border:1px solid rgba(255,255,255,.10);
  background:rgba(255,255,255,.04);
  overflow:hidden;
}
.map-placeholder{
  padding:22px;
  text-align:center;
  color:rgba(230,234,237,.75);
  font-weight:800;
}
.footer-bottom{
  padding:16px 0 26px;
  display:flex;
  justify-content:space-between;
  align-items:center;
  border-top:1px solid rgba(255,255,255,.08);
  font-weight:700;
}

/* =========================================================
   RESPONSIVE
   ========================================================= */
@media (max-width: 1100px){
  /* Previously: header-inner rules existed, but two-tier layout is used now.
     Keep behavior: hide big right CTA area if you had it; contact remains. */
  .footer-grid{ grid-template-columns:1fr 1fr; }
}

@media (max-width: 980px){
  .nav-toggle{
    display:inline-flex;
    align-items:center;
    justify-content:center;
  }

  /* Mobile layout for two-tier header */
  .topbar-inner,
  .menubar-inner{
    grid-template-columns: 1fr auto; /* logo + toggle if used */
    align-items:center;
    min-height:auto;
    margin-top:0;
  }

  /* Optional: hide address/phones on small screens (you had this option) */
  .topbar-right .header-contact{ display:none; }

  /* Slide-down nav */
  .site-nav{
    position:fixed;
    inset:78px 0 auto 0;
    background:rgba(11,15,18,.98);
    border-top:1px solid rgba(255,255,255,.10);
    display:none;
    width:auto;
  }
  .site-nav.open{ display:block; }

  .nav-list{
    flex-direction:column;
    align-items:stretch;
    gap:0;
    padding:10px;
    white-space:normal;
  }
  .nav-link{ padding:14px 14px; border-radius:14px; }

  /* Dropdown on mobile becomes inline */
  .dropdown{
    position:static;
    display:block;
    background:transparent;
    color:inherit;
    border:0;
    box-shadow:none;
    padding:0;
    margin:0 0 12px;
  }
  .dd-cols{ grid-template-columns:1fr; }
  .dropdown a{ color:var(--muted); }
  .dropdown a:hover{ background:rgba(255,255,255,.06); }

  .hero-inner{ grid-template-columns:1fr; }
  .welcome{ margin-top:16px; }
  .welcome-grid{ grid-template-columns:1fr; }
  .welcome-media{ min-height:260px; }
  .grid-3{ grid-template-columns:1fr; }
  .footer-grid{ grid-template-columns:1fr 1fr; }

  /* CTA in menu */
  .nav-cta{ margin-left:0; }
  .btn-cta{ width:100%; justify-content:center; }
}

@media (max-width: 640px){
  .container{ padding:0 18px; }
  .hero-inner{ padding:28px 22px; }
  .hero h1{ font-size:40px; }
  .h2{ font-size:32px; }
  .footer-grid{ grid-template-columns:1fr; }
}


/* Mobile: ensure any nav UL has no bullets */
@media (max-width: 980px){
  .site-nav ul{
    list-style:none;
    margin:0;
    padding:0;
  }
  .site-nav li{
    list-style:none;
  }
}
@media (max-width: 980px){
  header.open .site-nav{ display:block; }
}
@media (max-width: 980px){
  .has-dropdown:focus-within .dropdown{ display:block; }
}


@media (max-width: 980px){
  .site-nav ul{ list-style:none; margin:0; padding:0; }
  .site-nav li{ list-style:none; }

  /* optional, improves tap behavior */
  .has-dropdown:focus-within .dropdown{ display:block; }

  /* optional, only if your JS toggles open on header instead of .site-nav */
  /* header.open .site-nav{ display:block; } */
}


/* Ensure the JS toggle (#siteNav.open) actually shows the nav on mobile */
@media (max-width: 980px){
  #siteNav{ display:none; }
  #siteNav.open{ display:block; }

  /* Remove bullets in the mobile nav regardless of ul class */
  #siteNav ul{ list-style:none; margin:0; padding:10px; }
  #siteNav li{ list-style:none; }

  /* Make links tappable */
  #siteNav a, #siteNav button{
    display:flex;
    width:100%;
    padding:14px 14px;
    border-radius:14px;
  }
}
@media (max-width: 980px){
  .nav-toggle{
    display:inline-flex !important;
    align-items:center;
    justify-content:center;
    width:44px;
    height:44px;
    border-radius:14px;
    background:transparent;
    border:1px solid rgba(255,255,255,.14);
    cursor:pointer;
  }
  .nav-toggle span{
    display:block !important;
    width:18px;
    height:2px;
    background:var(--primary);
    border-radius:2px;
    margin:4px auto;
  }
}




.media{
  position:relative;
  border-radius:var(--radius-lg);
  overflow:hidden;
  background:#0f1b20;
  min-height:320px;
  border:1px solid rgba(255,255,255,.14);
}

.media img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}

/* Download button inside hero media */

.welcome-media{ overflow:hidden; }
.welcome-media img{ width:100%; height:100%; object-fit:cover; display:block; }

.media-download{
  position:absolute;
  left:14px;
  bottom:14px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 12px;
  border-radius:999px;
  background:rgba(11,15,18,.78);
  border:1px solid rgba(255,255,255,.18);
  color:rgba(255,255,255,.92);
  font-weight:800;
  font-size:12px;
  letter-spacing:.06em;
  text-transform:uppercase;
  text-decoration:none;
  backdrop-filter: blur(10px);
}

.media-download:hover{
  background:rgba(11,15,18,.9);
}
/* Footer full-width Google Map */
.footer-map {
  width: 100%;
  background: #eee;
}

.footer-map-inner {
  position: relative;
  width: 100%;
  padding-top: 42%; /* Aspect ratio: adjust (40–50%) if desired */
  overflow: hidden;
}

.footer-map-inner iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}





.news-panel{
  height: 100%;
  padding: 24px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  background: #f6f8f9;
}

.news-head{
  display:flex;
  align-items: baseline;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 14px;
}
.news-head .kicker{
  color: var(--primary);
  font-weight: 700;
  letter-spacing: .08em;
}


.news-link{
  color: var(--primary);
  background: rgba(0,0,0,0.04);
  padding: 6px 10px;
  border-radius: 999px;
  font-size: .9rem;
}
.news-link:hover{ opacity: 1; }

.news-items{
  display:flex;
  flex-direction: column;
  gap: 12px;
  margin-bottom: 18px;
}

.news-item{
  display:grid;
  grid-template-columns: 62px 1fr;
  gap: 12px;
  padding: 12px 12px;
  background: #ffffff;
  border: 1px solid rgba(0,0,0,.08);
  box-shadow: 0 4px 14px rgba(0,0,0,.04);
  border-radius: 14px;
}

.news-date{
  font-weight: 700;
  letter-spacing: .02em;
  opacity: .85;
}

.news-title{
  color: #1f2933; /* dark slate */
  font-weight: 700;
}

.news-meta{
  opacity: .75;
  font-size: .95rem;
  line-height: 1.25rem;
  color: #4b5563; /* readable gray */

}

.news-actions{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}

.news-actions .btn-secondary{
  background: #ffffff;
  border-color: rgba(0,0,0,.12);
  color: #1f2933;
}

.news-actions .btn-primary{
  background: var(--primary);
  color: #fff;
}
.news-date{
  background: rgba(16,110,120,.12); /* brand teal tint */
  color: var(--primary);
  border-radius: 10px;
  padding: 8px 10px;
  text-align: center;
  font-weight: 700;
}
.news-item{
  transition: transform .15s ease, box-shadow .15s ease;
}
.news-item:hover{
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}












.footer-social{
  display:flex;
  gap:12px;
  flex-wrap:wrap;
  align-items:center;
}
.social-link{
  display:inline-flex;
  width:34px;
  height:34px;
  align-items:center;
  justify-content:center;
  border-radius:10px;
  background: rgba(0,0,0,.06);
  transition: transform .12s ease, background .12s ease;
}
.social-link:hover{ background: rgba(0,0,0,.10); transform: translateY(-1px); }
.social-link svg{
  width:18px;
  height:18px;
  fill: currentColor;
}