
:root{
  --teal:#0d4b52;
  --teal-deep:#083b41;
  --ink:#102f34;
  --cream:#f7f2ea;
  --gold:#d8a34a;
  --orange:#fb970d;
  --magenta:#cc1558;
  --cyan:#55adae;
  --line:#dcd7ce;
  --shadow:0 10px 28px rgba(12,54,59,.10);
}
*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;background:#fff;color:var(--ink);
  font-family:Tahoma,Arial,sans-serif;line-height:1.7;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
button{font:inherit}
.container{width:min(1180px,calc(100% - 40px));margin-inline:auto}
.skip{position:absolute;top:-100px;right:20px;background:#fff;padding:10px;z-index:1000}
.skip:focus{top:10px}

header{
  height:102px;background:#fff;display:flex;align-items:center;
  position:sticky;top:0;z-index:100;border-bottom:1px solid #eee;
}
nav{height:100%;display:flex;align-items:center;justify-content:space-between;gap:30px}
.logo-header{width:225px;height:auto;flex:0 0 auto}
.nav-links{display:flex;align-items:center;gap:46px;font-weight:700}
.nav-links a{padding:35px 0 24px;position:relative}
.nav-links a.active::after,.nav-links a:hover::after{
  content:"";position:absolute;right:0;left:0;bottom:18px;height:2px;background:var(--teal)
}
.header-cta{
  background:var(--teal);color:#fff;font-weight:800;padding:13px 22px;border-radius:12px;
  box-shadow:0 7px 18px rgba(13,75,82,.18)
}
.menu{display:none;border:1px solid var(--line);background:#fff;border-radius:10px;padding:8px 11px}

.hero{height:447px;display:grid;grid-template-columns:53.5% 46.5%;overflow:hidden}
.hero-photo{
  background:url("hero-boardroom-approved.jpg") center/cover no-repeat;
  min-width:0;
}
.hero-copy{
  background:
    linear-gradient(90deg,rgba(5,26,29,.93),rgba(4,24,27,.99)),
    radial-gradient(circle at 100% 0%,rgba(38,92,98,.35),transparent 60%);
  color:#fff;display:flex;align-items:center
}
.hero-inner{padding:44px 58px 40px;max-width:600px;margin-right:auto;text-align:right}
.hero h1{font-size:clamp(2.2rem,3.7vw,3.35rem);line-height:1.32;margin:0 0 16px;font-weight:900}
.hero p{margin:0 0 26px;color:rgba(255,255,255,.92);font-size:1.04rem;line-height:1.9}
.hero-actions{display:flex;gap:18px;justify-content:flex-start}
.btn{
  display:inline-flex;align-items:center;justify-content:center;min-height:53px;
  padding:0 31px;border-radius:12px;font-weight:900;border:2px solid transparent;
  transition:.2s ease
}
.btn-primary{background:var(--teal);color:#fff;border-color:#dbe7e8}
.btn-outline{border-color:#fff;color:#fff;background:transparent}
.btn-gold{background:#f0c77f;color:#173a3f}
.btn:hover{transform:translateY(-1px)}

section{padding:55px 0}
.section-title{text-align:center;margin:0 0 38px}
.section-title h2{font-size:2.35rem;margin:0;color:var(--teal);line-height:1.2}
.title-mark{width:100px;height:22px;margin:10px auto 0;position:relative}
.title-mark::before{content:"";position:absolute;top:10px;left:0;right:0;height:1px;background:var(--gold)}
.title-mark::after{content:"";position:absolute;width:12px;height:12px;background:var(--gold);transform:rotate(45deg);left:44px;top:4px}

.services{background:#fff}
.service-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.service-card{
  min-height:315px;border:1px solid #e1ded8;border-radius:10px;background:#fff;
  box-shadow:var(--shadow);padding:26px 20px 21px;text-align:center;position:relative;overflow:hidden
}
.service-card::after{content:"";position:absolute;right:0;left:0;bottom:0;height:5px;background:var(--accent)}
.service-icon{
  width:77px;height:77px;border-radius:50%;background:#f5f0e8;margin:0 auto 25px;
  display:grid;place-items:center
}
.service-icon svg,.value-icon svg{width:47px;height:47px;fill:none;stroke:var(--teal);stroke-width:3;stroke-linecap:round;stroke-linejoin:round}
.service-card h3{font-size:1.1rem;line-height:1.5;margin:0 0 18px;color:var(--teal-deep)}
.service-card p{margin:0;font-size:.96rem;line-height:1.9;color:#303c3d}
.s1{--accent:#ff7a00}.s2{--accent:var(--magenta)}.s3{--accent:var(--cyan)}.s4{--accent:var(--orange)}

.values{background:linear-gradient(120deg,#fbf8f3,#f3ece2);padding:35px 0 29px}
.values h2{text-align:center;font-size:1.65rem;margin:0 0 3px;color:var(--teal)}
.values> .container > p{text-align:center;margin:0 0 32px;color:#344b4e}
.value-grid{display:grid;grid-template-columns:repeat(4,1fr)}
.value{text-align:center;padding:0 30px;border-inline-start:1px solid #d2ccc2}
.value:first-child{border-inline-start:0}
.value-icon{height:63px;display:grid;place-items:center}
.value h3{font-size:1.05rem;font-weight:500;margin:5px 0 0;color:#2b3d40}

.cta-band{background:linear-gradient(100deg,var(--teal),var(--teal-deep));color:#fff;padding:28px 0}
.cta-row{display:flex;align-items:center;justify-content:space-between;gap:30px}
.cta-copy{text-align:right}
.cta-copy h2{font-size:2rem;line-height:1.25;margin:0 0 1px}
.cta-copy p{margin:0;color:rgba(255,255,255,.82);font-size:1rem}

footer{background:linear-gradient(110deg,#0b5058,#073d43);color:#fff}
.footer-main{padding:28px 0 22px;border-top:1px solid rgba(255,255,255,.4)}
.footer-grid{display:grid;grid-template-columns:1.08fr .82fr 1.08fr 1.25fr;gap:36px;align-items:start}
.footer-col{padding-inline-start:24px;border-inline-start:1px solid rgba(255,255,255,.55)}
.footer-col:last-child{border-inline-start:0;padding-inline-start:0}
.footer-col h3{font-size:1.05rem;margin:0 0 15px;color:#fff}
.footer-col p{margin:0;color:#fff;line-height:1.95;font-size:.92rem}
.footer-links{display:grid;gap:8px}
.footer-links a{color:#fff}
.contact-list{display:grid;gap:7px}
.contact-row{display:grid;grid-template-columns:27px 1fr;gap:9px;align-items:center}
.contact-row svg{width:22px;height:22px;stroke:#fff;fill:none;stroke-width:2.5}
.ltr{direction:ltr;unicode-bidi:isolate;display:inline-block;white-space:nowrap}
.footer-logo-wrap{
  display:flex;
  justify-content:center;
  align-items:center;
  min-height:165px;
  padding:18px 26px;
  background:#ffffff;
  border:0;
  border-radius:0;
  box-shadow:none;
  overflow:hidden;
}
.footer-logo{
  width:250px;
  height:auto;
  display:block;
  border:0;
  border-radius:0;
  box-shadow:none;
  filter:none;
  background:#ffffff;
  image-rendering:auto;
}
.footer-bottom{
  position:relative;text-align:center;border-top:1px solid rgba(218,163,74,.75);
  padding:25px 0 14px;margin-top:25px;font-size:.88rem
}
.rosette{
  position:absolute;top:-18px;left:50%;transform:translateX(-50%);
  width:39px;height:39px;border:2px solid var(--gold);border-radius:50%;
  background:var(--teal-deep);display:grid;place-items:center;color:var(--gold);font-size:19px
}

.mobile-nav{display:none}

@media(max-width:980px){
  header{height:84px}.logo-header{width:190px}
  .nav-links{display:none}
  .menu{display:block}
  .header-cta{margin-right:auto}
  .mobile-nav.open{
    display:flex;position:fixed;top:84px;right:16px;left:16px;z-index:99;
    background:#fff;border:1px solid var(--line);box-shadow:var(--shadow);border-radius:14px;
    flex-direction:column;padding:15px
  }
  .mobile-nav a{padding:11px 12px;font-weight:800}
  .hero{height:auto;grid-template-columns:1fr}
  .hero-photo{height:330px}
  .hero-copy{min-height:420px}
  .hero-inner{margin:auto;text-align:center;padding:45px 25px}
  .hero-actions{justify-content:center;flex-wrap:wrap}
  .service-grid{grid-template-columns:repeat(2,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
  .footer-logo-wrap{justify-content:center}
  .footer-col{border:0;padding:0}
}
@media(max-width:620px){
  .container{width:min(100% - 24px,1180px)}
  .header-cta{display:none}.logo-header{width:170px}
  .hero-photo{height:260px}
  .hero h1{font-size:2rem}.hero p{font-size:.93rem}
  .hero-copy{min-height:400px}
  .btn{width:100%}
  section{padding:42px 0}
  .service-grid,.value-grid,.footer-grid{grid-template-columns:1fr}
  .service-card{min-height:auto}
  .value{border:0;border-top:1px solid #d2ccc2;padding:19px 10px}
  .value:first-child{border-top:0}
  .cta-row{flex-direction:column;text-align:center}
  .cta-copy{text-align:center}
  .footer-logo{width:220px}
}
