/* SEAVANTA — simple static site (no build tools)
   Edit content in index.html. */

:root{
  --ink: rgba(255,255,255,0.92);
  --muted: rgba(255,255,255,0.75);
  --muted2: rgba(255,255,255,0.62);

  --glass: rgba(20, 28, 40, 0.46);
  --glass2: rgba(20, 28, 40, 0.60);
  --stroke: rgba(255,255,255,0.14);

  --shadow: 0 20px 50px rgba(0,0,0,0.35);
  --radius: 18px;
  --max: 1200px;

  --header-bg: #f8f8f8; /* matches logo background */
  --header-ink: rgba(11, 28, 42, 0.92);
  --header-muted: rgba(11, 28, 42, 0.68);
  --accent: rgba(18, 163, 189, 1);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial, "Apple Color Emoji","Segoe UI Emoji";
  color:var(--ink);
  background:#06111f;
  overflow-x:hidden; /* prevent iOS auto-zoom caused by horizontal overflow */
}

/* Accessibility helper */
.sr-only{
  position:absolute !important;
  width:1px; height:1px;
  padding:0; margin:-1px;
  overflow:hidden; clip:rect(0,0,0,0);
  white-space:nowrap; border:0;
}

.muted{ color: var(--muted2); }
.small{ font-size:13px; }

/* Make tel/mail links readable everywhere (body) */
a{
  color: rgba(235,245,255,0.96);
  text-decoration-color: rgba(235,245,255,0.35);
}
a:hover{
  text-decoration-color: rgba(235,245,255,0.8);
}

/* Background */
.bg{
  position:fixed;
  inset:0;
  background:
    linear-gradient(180deg, rgba(5,10,20,0.55) 0%, rgba(5,10,20,0.20) 38%, rgba(5,10,20,0.55) 100%),
    url("background.jpg") center / cover no-repeat;
  transform:translateZ(0);
  z-index:-2;
}

/* Topbar */
.topbar{
  position:fixed;
  top:0; left:0; right:0;
  padding:12px 18px;
  display:flex;
  align-items:center;
  gap:14px;
  flex-wrap:wrap;

  background:var(--header-bg);
  color:var(--header-ink);

  border-bottom:1px solid rgba(11, 28, 42, 0.10);
  z-index:20;
}

.topbar a{ color: var(--header-ink); text-decoration:none; }

/* Brand */
.brand{
  display:flex;
  align-items:flex-start;   /* so we can position Shipping relative to top */
  gap:10px;
}

.brand-logo{
  height:40px;
  width:auto;
  max-width:min(360px, 46vw);
  object-fit:contain;
  display:block;
  filter:none;
}
.brand-tag{
  font-weight: 800;
  font-size: 33px;          /* bigger */
  line-height: 1;
  color: rgba(11, 28, 42, 0.92);
  margin-top: 6px;          /* raise/lower: smaller = higher */
  transform: none;     /* IMPORTANT: no lifting */
  margin-top: 9px;    /* increase to move DOWN */
  white-space: nowrap;
}
@media (max-width: 700px){
  .brand-tag{ display:none; }
}
/* Actions group (Email/WhatsApp + hamburger) */
.actions{
  margin-left:auto;
  display:flex;
  align-items:center;
  gap:10px;
  flex-wrap:wrap;
  justify-content:flex-end;
}

/* Header buttons (override dark-site defaults) */
.topbar .btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  height:40px;
  padding:0 14px;
  border-radius:999px;
  font-weight:800;
  font-size:14px;
  text-decoration:none;

  color: var(--header-ink);
  border: 1px solid rgba(11, 28, 42, 0.18);
  background: rgba(255,255,255,0.78);
  white-space:nowrap;
}

.topbar .btn-ghost{
  background: rgba(18, 163, 189, 0.12);
  border-color: rgba(18, 163, 189, 0.30);
}

.topbar .btn-solid{
  background: rgba(37, 211, 102, 0.18); /* WhatsApp tint */
  border-color: rgba(37, 211, 102, 0.35);
}

.topbar .btn:hover{
  border-color: rgba(11, 28, 42, 0.30);
}

.topbar .btn-solid:hover{
  background: rgba(37, 211, 102, 0.26);
}

/* Hamburger button */
.menu-btn{
  display:none; /* desktop hidden */
  width:44px;
  height:40px;
  border-radius:12px;
  border:1px solid rgba(11, 28, 42, 0.18);
  background: rgba(255,255,255,0.85);
  color: var(--header-ink);
  align-items:center;
  justify-content:center;
  cursor:pointer;
}
.menu-btn:hover{ border-color: rgba(11, 28, 42, 0.30); }
.menu-btn svg{ width:22px; height:22px; }

/* Navigation */
.nav{
  display:flex;
  justify-content:center;
  gap:10px;
  flex:1;
}

.nav a{
  color: var(--header-muted);
  text-decoration:none;
  font-weight:800;
  font-size:15px;
  padding:10px 12px;
  border-radius:999px;
  transition: background .15s ease, color .15s ease, border-color .15s ease;
  border:1px solid transparent;
}

.nav a:hover{
  color: var(--header-ink);
  background: rgba(18, 163, 189, 0.12);
  border-color: rgba(18, 163, 189, 0.22);
}

.nav a:focus-visible{
  outline:2px solid rgba(18, 163, 189, 0.65);
  outline-offset:2px;
}

/* Glass surface */
.glass{
  background:var(--glass);
  border:1px solid var(--stroke);
  border-radius:var(--radius);
  box-shadow:var(--shadow);
  backdrop-filter: blur(14px);
}

/* Hero */
.hero{
  min-height:100vh;
  padding:96px 22px 22px;
}

.hero-grid{
  max-width:min(1600px, 96vw);
  margin:0 auto;
  display:grid;
  grid-template-rows:auto 1fr auto;
  gap:18px;
  min-height:calc(100vh - 118px);
}
@supports (height: 100svh){
  .hero-grid{ min-height:calc(100svh - 118px); }
}

.hero-banner{
  padding:22px 22px 18px;
  width:100%;
}

.kicker{
  font-size:12px;
  letter-spacing:0.22em;
  font-weight:700;
  color:rgba(255,255,255,0.75);
  margin-bottom:10px;
}

.hero-banner h1{
  margin:0;
  font-weight:300;
  font-size:clamp(26px, 3.2vw, 44px);
  line-height:1.12;
  letter-spacing:-0.02em;
}

.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
  margin-top:14px;
}

.chip{
  display:inline-flex;
  align-items:center;
  height:28px;
  padding:0 10px;
  border-radius:999px;
  background:rgba(255,255,255,0.07);
  border:1px solid rgba(255,255,255,0.12);
  color:rgba(255,255,255,0.82);
  font-size:12px;
  font-weight:800;
}

/* Sea row: two blocks */
.sea-row{
  align-self:end;
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:18px;
  align-items:stretch;
}
.sea-note,
.sea-side{
  padding:16px 18px;
}
.sea-note p,
.sea-side p{
  margin:0;
  line-height:1.45;
  color:rgba(255,255,255,0.84);
}

/* Bottom bar */
.footer-bar{
  background:var(--glass2);
  border:1px solid rgba(255,255,255,0.12);
  border-radius:var(--radius);
  padding:16px 18px;
  display:grid;
  grid-template-columns: 1.2fr 0.9fr 1.3fr;
  gap:16px;
}

.foot-title{
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  color:rgba(255,255,255,0.72);
  margin:0 0 8px 0;
  font-weight:800;
}

.foot-strong{
  font-weight:600;
  color:rgba(255,255,255,0.92);
  margin-bottom:6px;
}

.foot-lines{
  color:rgba(255,255,255,0.84);
  font-size:13px;
  line-height:1.45;
}

.footer-bar a{
  color:rgba(235,245,255,0.96);
  text-decoration:none;
}
.footer-bar a:hover{ text-decoration:underline; }

.social{
  display:flex;
  flex-direction:column;
  gap:10px;
}
.social-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  text-decoration:none;
  color:rgba(235,245,255,0.96);
}
.social-icon{
  width:16px;
  height:16px;
  flex:0 0 auto;
  color:rgba(255,255,255,0.92);
}
.social-icon svg{
  width:16px;
  height:16px;
  fill:currentColor;
  display:block;
}

/* Map link in footer */
.map-link{
  display:inline-flex;
  align-items:center;
  gap:12px;
  margin-top:10px;
  padding:10px 12px;
  border-radius:14px;
  background:rgba(255,255,255,0.06);
  border:1px solid rgba(255,255,255,0.12);
  width:fit-content;
  max-width:100%;
}

.map-thumb{
  width:76px;
  height:52px;
  border-radius:10px;
  object-fit:cover;
  border:1px solid rgba(255,255,255,0.14);
}

.map-open{
  color:rgba(255,255,255,0.90);
  font-weight:900;
  font-size:13px;
}

.map-link-logo{
  width:38px;
  height:38px;
  border-radius:999px;
  object-fit:contain;
  background:rgba(255,255,255,0.95);
  padding:5px;
}

/* Scroll hint */
.scroll-hint{
  margin-top:14px;
  display:flex;
  justify-content:center;
  align-items:center;
  gap:8px;
  color:rgba(255,255,255,0.70);
  font-weight:700;
  letter-spacing:0.10em;
  text-transform:uppercase;
}
.scroll-hint .chev{ font-size:18px; opacity:0.85; }

/* Sections */
.section{
  padding:70px 22px;
}
.container{
  max-width:var(--max);
  margin:0 auto;
}
.section h2{
  margin:0 0 12px;
  font-size:28px;
  letter-spacing:-0.02em;
}

.lead{ color:var(--muted); margin:0 0 24px; line-height:1.55; }

.cards{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

.cards.cards-2{
  grid-template-columns:repeat(2, minmax(0,1fr));
}

.card{
  padding:16px 16px 14px;
  border-radius:var(--radius);
  border:1px solid rgba(255,255,255,0.12);
  background:rgba(255,255,255,0.05);
}
.card h3{ margin:0 0 8px; font-size:16px; }
.card p{ margin:0; color:rgba(255,255,255,0.78); line-height:1.5; font-size:14px; }
.card p + p{ margin-top:10px; }

/* Leadership structure box */
.structure-box{
  margin-top:14px;
  padding:16px 18px;
}
.structure-title{
  font-size:12px;
  letter-spacing:0.18em;
  text-transform:uppercase;
  font-weight:900;
  color:rgba(255,255,255,0.72);
  margin-bottom:8px;
}
.structure-box ul{
  margin:0 0 0 18px;
  padding:0;
  color:rgba(255,255,255,0.80);
}
.structure-box li{
  margin:8px 0;
  line-height:1.45;
}

/* Contact grid */
.contact-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:14px;
}

/* Map CTA (Contact section) */
.map-cta{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:10px;
  margin-top:12px;
  text-decoration:none;
}
.map-cta img{
  width:100%;
  max-width:420px;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
}
.map-cta span{
  font-weight:900;
  font-size:13px;
  color:rgba(235,245,255,0.96);
}

/* WTC image */
.wtc-img{
  width:100%;
  height:auto;
  display:block;
  border-radius:14px;
  border:1px solid rgba(255,255,255,0.12);
  margin-top:12px;
}

/* Footer */
.site-footer{
  padding:22px;
  color:rgba(255,255,255,0.62);
  font-size:13px;
}
.footer-inner{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  text-align:center;
}
.footer-mark{
  width:46px;
  height:46px;
  object-fit:contain;
  border-radius:12px;
  background:rgba(255,255,255,0.95);
  padding:6px;
}
.footer-copy{ max-width: 900px; }

/* Responsive */
@media (max-width: 960px){
  .topbar{ padding:10px 12px; }
  .brand-logo{ height:34px; max-width:min(260px, 60vw); }

  /* Hamburger visible, nav becomes dropdown */
  .menu-btn{ display:inline-flex; }
  .nav{
    display:none;
    width:100%;
    flex:0 0 100%;
    justify-content:flex-start;
    align-items:stretch;
    flex-direction:column;
    gap:8px;
    padding:10px 0 2px;
  }
  .nav.is-open{ display:flex; }
  .nav a{
    font-size:16px;
    padding:12px 14px;
    border-radius:14px;
    border:1px solid rgba(11, 28, 42, 0.10);
    background: rgba(11, 28, 42, 0.04);
  }

  .topbar .btn{ height:36px; padding:0 12px; font-size:13px; }

  .hero{ padding:104px 14px 16px; }
  .hero-grid{ max-width:100%; min-height:auto; }
  .hero-banner{ padding:18px 16px 14px; }

  .sea-row{ grid-template-columns:1fr; }

  .footer-bar{ grid-template-columns:1fr; }
  .cards{ grid-template-columns:1fr; }
  .cards.cards-2{ grid-template-columns:1fr; }
  .contact-grid{ grid-template-columns:1fr; }

  .section{ padding:54px 14px; }
}

@media (max-width: 520px){

  /* Keep everything on ONE line */
  .topbar{
    height: 56px;              /* smaller than before */
    padding: 6px 10px;
    gap: 10px;
    flex-wrap: nowrap;         /* IMPORTANT */
    align-items: center;
  }

  /* Brand takes available space, but can shrink */
  .brand{
    flex: 1 1 auto;
    min-width: 0;              /* IMPORTANT: allows shrinking */
    height: 100%;
    display: flex;
    align-items: center;
  }

  /* Logo: tall, but not overflowing */
  .brand-logo{
    height: 44px;              /* try 40–46 */
    width: auto;
    max-width: 58vw;           /* prevents pushing buttons out */
    object-fit: contain;
    display: block;
  }

  /* Hide brand text on mobile if you’re using image logo */
  .brand-name{ display: none; }

  /* Keep CTA inside header */
  .cta{
    flex: 0 0 auto;
    display: flex;
    gap: 8px;
    flex-wrap: nowrap;         /* IMPORTANT */
    align-items: center;
  }

  /* Make buttons more compact on mobile */
  .topbar .btn{
    height: 34px;
    padding: 0 10px;
    font-size: 13px;
    white-space: nowrap;
  }

  /* If you still show the nav on mobile, it will force wrapping.
     Hide it (or replace with hamburger). */
  .nav{ display: none; }
}
