/* PBS Global Services LLC - refined mockup styling */
:root{
  --ink: #0b1220;
  --paper: #ffffff;
  --muted: rgba(11,18,32,.72);
  --muted2: rgba(11,18,32,.58);
  --line: rgba(11,18,32,.12);

  --navy0: #071326;
  --navy1: #0b1a33;
  --navy2: #0e2144;

  --gold0: #d7b25a;
  --gold1: #c8a24b;
  --gold2: #a97c2a;

  --sand0: #f7f2e8;
  --sand1: #f2ecdf;

  --radius: 18px;
  --shadow: 0 18px 45px rgba(11,18,32,.12);
  --shadow2: 0 10px 24px rgba(11,18,32,.10);
}

*{ box-sizing:border-box; }
html{ scroll-behavior:smooth; }
body{
  margin:0;
  font-family: Inter, system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);

  /* refined layered background (closer to mockup) */
  background:
    radial-gradient(1200px 600px at 20% 8%, rgba(215,178,90,.20), transparent 60%),
    radial-gradient(900px 500px at 80% 12%, rgba(255,255,255,.10), transparent 55%),
    linear-gradient(180deg, var(--navy0) 0%, var(--navy2) 32%, var(--sand0) 32.1%, var(--paper) 100%);
}

/* Layout */
.container{
  width: min(1120px, calc(100% - 40px));
  margin: 0 auto;
}

/* Top bar */
.topbar{
  position: sticky;
  top:0;
  z-index: 50;

  background: linear-gradient(180deg, rgba(7,19,38,.86) 0%, rgba(14,33,68,.72) 100%);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(255,255,255,.10);
}
.topbar::after{
  content:"";
  display:block;
  height: 2px;
  background: linear-gradient(90deg, transparent 0%, rgba(215,178,90,.9) 20%, rgba(255,255,255,.25) 50%, rgba(215,178,90,.85) 80%, transparent 100%);
  opacity: .6;
}
.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  padding: 14px 0;
  gap: 18px;
}

.brand{
  display:flex;
  gap: 12px;
  align-items:center;
  text-decoration:none;
  color:#fff;
  min-width: 240px;
}
.brand__mark{
  width:38px;height:38px;
  display:grid;place-items:center;
  border-radius: 12px;
  background: rgba(200,162,75,.16);
  border: 1px solid rgba(215,178,90,.40);
  box-shadow: 0 10px 18px rgba(0,0,0,.18) inset;
}
.brand__name{
  font-weight: 800;
  letter-spacing: .2px;
}
.brand__tag{
  display:block;
  font-size: 12px;
  opacity: .84;
}

.topbar__actions{
  display:flex;
  gap: 12px;
  align-items:center;
}

.nav{ display:flex; gap: 10px; align-items:center; }
.nav__link{
  color: rgba(255,255,255,.90);
  text-decoration:none;
  font-weight: 700;
  font-size: 14px;
  padding: 10px 12px;
  border-radius: 12px;
}
.nav__link:hover{ background: rgba(255,255,255,.08); }
.nav__cta{
  background: rgba(215,178,90,.16);
  border: 1px solid rgba(215,178,90,.32);
}
.nav__cta:hover{ background: rgba(215,178,90,.24); }

/* Language toggle */
.lang-toggle{
  appearance:none;
  border: 1px solid rgba(255,255,255,.16);
  background: rgba(255,255,255,.08);
  color: rgba(255,255,255,.92);
  border-radius: 999px;
  padding: 8px 10px;
  cursor:pointer;
  display:inline-flex;
  align-items:center;
  gap: 10px;
  font-weight: 800;
}
.lang-toggle:hover{ background: rgba(255,255,255,.12); }
.lang-toggle__pill{
  background: rgba(215,178,90,.22);
  border: 1px solid rgba(215,178,90,.40);
  color: #fff;
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
}
.lang-toggle__label{
  font-size: 13px;
  opacity: .92;
}

/* Hero */
.hero{
  padding: 52px 0 26px;
  position: relative;
}
.hero::before{
  content:"";
  position:absolute;
  inset: 0;
  background:
    radial-gradient(700px 400px at 30% 15%, rgba(215,178,90,.18), transparent 60%),
    radial-gradient(650px 420px at 70% 20%, rgba(255,255,255,.10), transparent 55%);
  pointer-events:none;
  opacity: .85;
}
.hero .container{ position:relative; }

.hero__grid{
  display:grid;
  grid-template-columns: 1.0fr 1.2fr;
  gap: 34px;
  align-items:center;
}
.hero__grid--image-left{
  grid-template-columns: .95fr 1.25fr;
}

.hero__media{
  display:grid;
  gap: 14px;
  justify-items: start;
}

.pill{
  display:inline-flex;
  gap: 10px;
  align-items:center;
  background: rgba(255,255,255,.10);
  color: rgba(255,255,255,.92);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 13px;
  box-shadow: 0 10px 18px rgba(0,0,0,.16);
}

.hero__title{
  font-family: "Playfair Display", serif;
  color: #fff;
  margin: 16px 0 10px;
  font-size: clamp(34px, 4.2vw, 48px);
  line-height: 1.02;
  letter-spacing: .2px;
  text-shadow: 0 10px 30px rgba(0,0,0,.22);
}

.hero__subtitle{
  margin: 0 0 18px;
  color: rgba(255,255,255,.82);
  line-height: 1.6;
  max-width: 62ch;
  font-weight: 600;
}

/* CTA buttons */
.hero__actions{
  display:flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 16px;
}
.btn{
  display:inline-flex;
  justify-content:center;
  align-items:center;
  gap: 10px;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 900;
  text-decoration:none;
  border: 1px solid transparent;
  cursor:pointer;
  user-select:none;
}
.btn--primary{
  background: linear-gradient(180deg, var(--gold0) 0%, var(--gold1) 45%, var(--gold2) 100%);
  color: #0b1220;
  box-shadow: 0 18px 40px rgba(215,178,90,.18);
}
.btn--ghost{
  background: rgba(255,255,255,.10);
  color: #fff;
  border-color: rgba(255,255,255,.18);
}
.btn--full{ width:100%; }

/* contact chips */
.hero__contacts{
  display:flex;
  gap: 10px;
  flex-wrap: wrap;
}
.contact-chip{
  display:inline-flex;
  align-items:center;
  gap: 10px;
  padding: 10px 12px;
  border-radius: 999px;
  background: rgba(255,255,255,.10);
  border: 1px solid rgba(255,255,255,.14);
  color: rgba(255,255,255,.92);
  text-decoration:none;
  font-weight: 700;
  font-size: 13px;
}
.contact-chip--btn{
  appearance:none;
}
.contact-chip:hover{ background: rgba(255,255,255,.14); }

.toast{
  margin-top: 12px;
  color: rgba(255,255,255,.92);
  font-weight: 800;
  font-size: 13px;
  opacity: .95;
}

.portrait{
  width: min(390px, 100%);
  aspect-ratio: 4/5;
  border-radius: 26px;
  overflow: hidden;
  box-shadow: var(--shadow);
  border: 1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.08);

  /* new: give image a little breathing room */
  padding-top: 0px;
}

.portrait img{
  width: 100%;
  height: calc(100% + 10px);
  object-fit: cover;

  /* new: shift upward so top of head is visible */
  object-position: 50% 6%;

  display:block;
  transform: scale(1.01);
}

.hero__card{
  width: min(390px, 100%);
  background: linear-gradient(180deg, rgba(247,242,232,.96) 0%, rgba(242,236,223,.92) 100%);
  border: 1px solid rgba(215,178,90,.34);
  border-radius: 22px;
  box-shadow: var(--shadow2);
  padding: 16px 18px;
}
.hero__card-title{
  margin:0;
  font-family: "Playfair Display", serif;
  font-size: 22px;
}
.hero__card-sub{
  margin: 4px 0 0;
  font-weight: 900;
  color: rgba(11,18,32,.75);
}
.hero__card-meta{
  margin: 8px 0 0;
  color: rgba(11,18,32,.62);
  font-weight: 700;
}

/* Sections */
.section{
  padding: 60px 0;
  background: transparent;
}
.section--alt{
  background: linear-gradient(180deg, var(--paper) 0%, #fbf9f3 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.section__header{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap: 18px;
  flex-wrap:wrap;
  margin-bottom: 20px;
}
.section__title{
  margin:0;
  font-family: "Playfair Display", serif;
  font-size: 34px;
  letter-spacing: .2px;
}
.section__subtitle{
  margin:0;
  color: var(--muted);
  line-height: 1.55;
  max-width: 74ch;
  font-weight: 700;
}

/* Service cards: force 4 in row on desktop */
.cards{
  display:grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.cards--4{
  grid-template-columns: repeat(4, 1fr);
}
.card{
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 100%);
  border: 1px solid rgba(11,18,32,.10);
  border-radius: var(--radius);
  padding: 18px 16px;
  box-shadow: 0 12px 26px rgba(11,18,32,.07);
  position: relative;
}
.card::after{
  content:"";
  position:absolute;
  inset: 0;
  border-radius: var(--radius);
  pointer-events:none;
  box-shadow: 0 1px 0 rgba(255,255,255,.7) inset;
}
.card__icon{
  width: 46px;height:46px;
  border-radius: 14px;
  display:grid;place-items:center;
  background: rgba(215,178,90,.16);
  border: 1px solid rgba(215,178,90,.26);
  font-size: 22px;
}
.card__title{
  margin: 12px 0 10px;
  font-size: 17px;
  font-weight: 900;
}
.card__list{
  margin:0;
  padding-left: 18px;
  color: var(--muted);
  line-height: 1.55;
  font-weight: 650;
}
.card__list li{ margin: 6px 0; }

/* About */
.about{
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
  align-items:start;
}
.about__text{
  color: var(--muted);
  font-weight: 650;
  line-height: 1.7;
  margin-top: 10px;
}
.about__highlights{
  margin-top: 18px;
  display:grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}
.highlight{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 14px;
  box-shadow: 0 10px 18px rgba(11,18,32,.05);
}
.highlight__kicker{ font-size: 18px; }
.highlight__title{ font-weight: 900; margin-top: 6px; }
.highlight__desc{ color: var(--muted); font-weight: 650; margin-top: 6px; line-height: 1.55; }

.about__box{
  background: linear-gradient(180deg, rgba(255,255,255,1) 0%, rgba(255,255,255,.96) 100%);
  border: 1px solid rgba(215,178,90,.26);
  border-radius: 22px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(11,18,32,.06);
}
.about__box-title{
  margin:0 0 10px;
  font-size: 16px;
  font-weight: 950;
}
.about__steps{
  margin: 0 0 14px;
  padding-left: 18px;
  color: var(--muted);
  font-weight: 650;
  line-height: 1.55;
}
.about__steps li{ margin: 8px 0; }

/* Contact */
.contact{
  display:grid;
  grid-template-columns: .9fr 1.1fr;
  gap: 14px;
}
.contact__info{
  background:#fff;
  border:1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 24px rgba(11,18,32,.06);
}
.contact__row{
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}
.contact__row:last-child{ border-bottom:none; }
.contact__label{
  font-weight: 950;
  color: rgba(11,18,32,.85);
  margin-bottom: 6px;
}
.contact__value{
  color: rgba(11,18,32,.78);
  font-weight: 750;
  text-decoration:none;
}
.contact__value:hover{ text-decoration: underline; }

.contact__form{
  background:#fff;
  border: 1px solid rgba(215,178,90,.26);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: 0 12px 24px rgba(11,18,32,.06);
}
.field{
  display:grid;
  gap: 8px;
  margin-bottom: 12px;
}
.field span{
  font-weight: 950;
  color: rgba(11,18,32,.85);
}
input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border: 1px solid rgba(11,18,32,.16);
  outline: none;
  font: inherit;
}
input:focus, textarea:focus{
  border-color: rgba(215,178,90,.75);
  box-shadow: 0 0 0 4px rgba(215,178,90,.16);
}
.contact__note{
  margin: 10px 0 0;
  color: var(--muted2);
  font-weight: 650;
  font-size: 13px;
  line-height: 1.5;
}

/* Footer */
.footer{
  background: #0b1220;
  color: rgba(255,255,255,.86);
  border-top: 1px solid rgba(255,255,255,.10);
  padding: 26px 0;
}
.footer__inner{
  display:flex;
  justify-content:space-between;
  gap: 16px;
  flex-wrap: wrap;
  align-items:flex-start;
}
.footer__brand{
  font-weight: 950;
  font-size: 14px;
}
.footer__meta{
  opacity:.82;
  margin-top: 6px;
  font-weight: 650;
  font-size: 13px;
}
.footer__disclaimer{
  margin:0;
  max-width: 82ch;
  line-height: 1.6;
  font-weight: 650;
  font-size: 13px;
  opacity:.85;
}

/* Responsive */
@media (max-width: 980px){
  .hero__grid{ grid-template-columns: 1fr; }
  .hero__media{ justify-items: center; }
  .cards{ grid-template-columns: repeat(2, 1fr); }
  .about{ grid-template-columns: 1fr; }
  .about__highlights{ grid-template-columns: 1fr; }
  .contact{ grid-template-columns: 1fr; }
  .nav{ gap: 6px; flex-wrap: wrap; justify-content:flex-end; }
  .nav__link{ padding: 8px 10px; }
  .topbar__actions{ flex-wrap: wrap; justify-content: flex-end; }
}
@media (max-width: 520px){
  .cards{ grid-template-columns: 1fr; }
  .topbar__inner{ padding: 12px 0; }
  .brand__tag{ display:none; }
  .lang-toggle__label{ display:none; }
}
