/* TSA - White background, professional + creative accents */
:root{
  --bg: #ffffff;
  --text: #0f172a;
  --muted:#475569;
  --line:#e2e8f0;

  --brand:#0b5a78;      /* blue-ish from logo */
  --brand2:#f59e0b;     /* amber/orange from logo */
  --soft:#f8fafc;
  --shadow: 0 10px 30px rgba(2, 6, 23, .10);
  --radius: 18px;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height:1.5;
}

a{color:inherit; text-decoration:none}
img{max-width:100%; display:block}

.container{
  width:min(1120px, 92%);
  margin-inline:auto;
}

.bg-accent{
  position:fixed;
  inset:auto;
  width:520px;
  height:520px;
  filter: blur(60px);
  opacity:.25;
  z-index:-1;
  pointer-events:none;
  border-radius:999px;
}
.bg-accent--a{
  left:-180px; top:-160px;
  background: radial-gradient(circle at 30% 30%, var(--brand2), transparent 55%),
              radial-gradient(circle at 70% 70%, var(--brand), transparent 55%);
}
.bg-accent--b{
  right:-180px; bottom:-220px;
  background: radial-gradient(circle at 35% 35%, var(--brand), transparent 55%),
              radial-gradient(circle at 65% 65%, var(--brand2), transparent 55%);
}

.header{
  position:sticky;
  top:0;
  z-index:20;
  background: rgba(255,255,255,.78);
  backdrop-filter: blur(10px);
  border-bottom:1px solid rgba(226,232,240,.7);
}
.header__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding:14px 0;
  gap:14px;
}

.brand{
  display:flex;
  align-items:center;
  gap:12px;
  min-width: 0;
}
.brand__logo{
  width:48px;
  height:48px;
  border-radius:14px;
  object-fit:cover;
  box-shadow: 0 10px 22px rgba(2,6,23,.14);
  border:1px solid rgba(226,232,240,.9);
  background:#fff;
}
.brand__name{display:flex; flex-direction:column; min-width:0}
.brand__abbr{
  font-weight:800;
  letter-spacing:.18em;
  text-transform:uppercase;
  color:var(--brand);
  line-height:1.1;
}
.brand__full{
  font-size:12px;
  color:var(--muted);
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
  max-width: min(420px, 60vw);
}

.nav{
  display:flex;
  align-items:center;
  gap:18px;
}
.nav a{
  font-weight:600;
  font-size:14px;
  color: #1f2937;
  opacity:.9;
  padding:8px 10px;
  border-radius:12px;
}
.nav a:hover{
  background: rgba(245, 158, 11, .12);
  color:#111827;
}

.nav__toggle{
  display:none;
  width:46px;
  height:42px;
  border-radius:14px;
  border:1px solid rgba(226,232,240,.9);
  background:#fff;
  box-shadow: 0 8px 18px rgba(2,6,23,.08);
}
.nav__toggle span{
  display:block;
  height:2px;
  margin:6px 12px;
  background:#0f172a;
  border-radius:2px;
}
@media (max-width: 860px){
  .nav__toggle{display:block}
  .nav{
    position:fixed;
    left:4%;
    right:4%;
    top:76px;
    background:#fff;
    border:1px solid rgba(226,232,240,.9);
    border-radius:18px;
    box-shadow: var(--shadow);
    padding:14px;
    display:none;
    flex-direction:column;
    align-items:stretch;
    gap:6px;
  }
  .nav a{padding:12px 12px}
  .nav.is-open{display:flex}
}

.hero{
  padding:56px 0 22px;
}
.hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:28px;
  align-items:start;
}
@media (max-width: 980px){
  .hero__grid{grid-template-columns:1fr; gap:22px}
}

.pill{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border:1px solid rgba(226,232,240,.9);
  border-radius:999px;
  background: rgba(248,250,252,.85);
  color: var(--muted);
  font-weight:600;
  font-size:13px;
}
.dot{
  width:10px;height:10px;border-radius:50%;
  background: linear-gradient(135deg, var(--brand2), var(--brand));
  box-shadow: 0 8px 16px rgba(2,6,23,.16);
}

.hero__title{
  margin:16px 0 12px;
  font-size: clamp(34px, 4.3vw, 56px);
  line-height:1.05;
  letter-spacing:-.02em;
}
.hero__lead{
  margin:0;
  font-size: 16px;
  color: var(--muted);
  max-width: 56ch;
}

.hero__actions{
  display:flex;
  gap:12px;
  margin-top:18px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:11px 14px;
  border-radius:14px;
  border:1px solid rgba(226,232,240,.95);
  font-weight:700;
  font-size:14px;
  transition: transform .12s ease, box-shadow .12s ease, background .12s ease;
}
.btn:hover{transform: translateY(-1px)}
.btn--primary{
  background: linear-gradient(135deg, var(--brand), #0a7aa0);
  color:#fff;
  border-color: transparent;
  box-shadow: 0 14px 26px rgba(11,90,120,.22);
}
.btn--ghost{
  background:#fff;
  color:#0f172a;
}

.hero__stats{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:10px;
  margin-top:18px;
}
@media (max-width: 620px){
  .hero__stats{grid-template-columns:1fr; }
}
.stat{
  border:1px solid rgba(226,232,240,.9);
  background:#fff;
  border-radius:16px;
  padding:12px 12px;
  box-shadow: 0 10px 22px rgba(2,6,23,.06);
}
.stat__k{
  font-weight:800;
  color: var(--brand);
}
.stat__v{
  margin-top:4px;
  color: var(--muted);
  font-size: 12px;
}

.hero__visual{
  display:flex;
  flex-direction:column;
  gap:12px;
}
.frame{
  position:relative;
  border-radius: var(--radius);
  overflow:hidden;
  border:1px solid rgba(226,232,240,.9);
  box-shadow: var(--shadow);
}
.frame img{
  width:100%;
  height: 360px;
  object-fit:cover;
}
.frame__badge{
  position:absolute;
  left:14px;
  bottom:14px;
  background: rgba(255,255,255,.9);
  border:1px solid rgba(226,232,240,.9);
  padding:8px 10px;
  border-radius:999px;
  font-weight:800;
  font-size: 12px;
  color:#0f172a;
}

.mini-cards{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}
@media (max-width: 980px){
  .frame img{height: 300px}
}
@media (max-width: 540px){
  .mini-cards{grid-template-columns:1fr}
}
.mini-card{
  border:1px solid rgba(226,232,240,.9);
  border-radius:16px;
  padding:12px;
  background: linear-gradient(180deg, rgba(248,250,252,.9), #fff);
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
}
.mini-card__title{font-weight:900; color:#111827}
.mini-card__text{margin-top:4px; color:var(--muted); font-size:12px}

.section{
  padding:52px 0;
}
.section--soft{
  background: var(--soft);
  border-top:1px solid rgba(226,232,240,.7);
  border-bottom:1px solid rgba(226,232,240,.7);
}
.section__head{
  display:flex;
  align-items:flex-end;
  justify-content:space-between;
  gap:16px;
  margin-bottom:18px;
  flex-wrap:wrap;
}
.section__title{
  margin:0;
  font-size: 26px;
  letter-spacing:-.01em;
}
.section__subtitle{
  margin:0;
  color: var(--muted);
  font-weight:600;
}

.cards{
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap:14px;
}
@media (max-width: 980px){
  .cards{grid-template-columns:1fr}
}
.card{
  border:1px solid rgba(226,232,240,.9);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
}
.card--accent{
  background: linear-gradient(135deg, rgba(245,158,11,.10), rgba(11,90,120,.08));
}
.card__icon{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:16px;
  background: rgba(245,158,11,.14);
  border:1px solid rgba(245,158,11,.22);
  font-size:20px;
}

.card__icon--photo{
  padding:0;
  overflow:hidden;
  background:#fff;
  border:1px solid rgba(226,232,240,.9);
}
.card__icon--photo img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
}
.card__title{margin:12px 0 10px; font-size:18px}
.card__text{margin:0; color:var(--muted); font-weight:600}
.list{margin:0; padding-left: 18px; color: var(--muted); font-weight:600}
.list li{margin:6px 0}

.sector-grid{
  display:grid;
  grid-template-columns: 1.25fr .75fr;
  gap:14px;
  align-items:start;
}
@media (max-width: 980px){
  .sector-grid{grid-template-columns:1fr}
}
.sector{
  border:1px solid rgba(226,232,240,.9);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
}
.sector__title{margin:0 0 10px; font-size:16px}
.chips{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.chip{
  padding:8px 10px;
  border-radius:999px;
  border:1px solid rgba(226,232,240,.9);
  background: rgba(248,250,252,.95);
  font-weight:700;
  font-size: 12px;
  color:#334155;
}

.gallery{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap:14px;
}
@media (max-width: 820px){
  .gallery{grid-template-columns:1fr}
}
.shot{
  margin:0;
  border:1px solid rgba(226,232,240,.9);
  border-radius: var(--radius);
  overflow:hidden;
  background:#fff;
  box-shadow: var(--shadow);
  cursor:pointer;
}
.shot img{
  width:100%;
  height: 320px;
  object-fit:cover;
}
.shot figcaption{
  padding:12px 14px;
  font-weight:900;
  color:#111827;
}
.note{
  margin-top:12px;
  color: var(--muted);
  font-weight:600;
  font-size: 12px;
}

.address{
  border:1px solid rgba(226,232,240,.9);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
}
.address__badge{
  display:inline-flex;
  align-items:center;
  gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(11,90,120,.10);
  border:1px solid rgba(11,90,120,.18);
  font-weight:900;
  color: #0b5a78;
  margin-bottom:10px;
}
.address__line{margin:6px 0; color: #1f2937}
.address__line strong{color:#0f172a}

.contact-card{
  display:flex;
  gap:12px;
  align-items:flex-start;
  border:1px solid rgba(226,232,240,.9);
  border-radius: var(--radius);
  background:#fff;
  padding:18px;
  box-shadow: 0 12px 26px rgba(2,6,23,.06);
}
.contact-card__icon{
  width:44px;height:44px;
  display:grid;place-items:center;
  border-radius:16px;
  background: rgba(11,90,120,.10);
  border:1px solid rgba(11,90,120,.18);
  font-size:20px;
}
.contact-card__title{margin:0; font-weight:900}
.contact-card__text{margin:6px 0 0; color:var(--muted); font-weight:600}

.footer{
  border-top:1px solid rgba(226,232,240,.9);
  padding:22px 0;
  background:#fff;
}
.footer__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  flex-wrap:wrap;
}
.footer__brand{
  display:flex;
  align-items:center;
  gap:12px;
}
.footer__brand img{
  width:44px;height:44px;
  border-radius:14px;
  object-fit:cover;
  border:1px solid rgba(226,232,240,.9);
}
.footer__name{font-weight:900}
.footer__meta{color:var(--muted); font-weight:700; font-size:12px}
.footer__copy{color:var(--muted); font-weight:700; font-size:12px}

/* Lightbox */
.lightbox{
  position:fixed;
  inset:0;
  display:none;
  place-items:center;
  background: rgba(2,6,23,.72);
  padding: 18px;
  z-index:60;
}
.lightbox.is-open{display:grid}
.lightbox__img{
  max-width:min(980px, 96vw);
  max-height: 86vh;
  border-radius: 18px;
  border:1px solid rgba(226,232,240,.35);
  box-shadow: 0 22px 60px rgba(0,0,0,.45);
  background:#fff;
}
.lightbox__close{
  position:fixed;
  top:14px;
  right:14px;
  width:46px;
  height:46px;
  border-radius: 14px;
  border:1px solid rgba(226,232,240,.35);
  background: rgba(255,255,255,.92);
  font-size: 26px;
  line-height: 1;
  cursor:pointer;
}
