@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@400;500;600;700&family=Playfair+Display:wght@600;700&display=swap');

:root{
  --navy:#0b1f33;
  --navy2:#102b46;
  --gold:#d6a018;
  --gold2:#f0bd31;
  --cream:#fbfaf6;
  --ink:#102033;
  --muted:#697586;
  --line:#e7e2d7;
  --white:#ffffff;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:"DM Sans",Arial,sans-serif;
  color:var(--ink);
  background:var(--cream);
  line-height:1.6;
}
img{max-width:100%;display:block}
a{text-decoration:none;color:inherit}

.site-header{
  width:min(1200px,calc(100% - 40px));
  margin:auto;
  height:88px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  position:relative;
  z-index:20;
}
.brand{display:flex;align-items:center;gap:12px}
.brand-mark{
  width:38px;height:34px;position:relative;display:flex;flex-direction:column;
  gap:3px;justify-content:center
}
.brand-mark span{
  display:block;height:7px;background:linear-gradient(90deg,#8f6b12,var(--gold2));
  border-radius:2px
}
.brand-mark span:nth-child(1){width:23px;margin-left:9px}
.brand-mark span:nth-child(2){width:34px}
.brand-mark span:nth-child(3){width:23px;margin-left:9px}
.brand-name{
  font-family:"Playfair Display",serif;
  font-size:28px;
  letter-spacing:.5px;
  line-height:1;
}
.brand-sub{
  margin-top:4px;
  color:var(--gold);
  font-size:10px;
  font-weight:700;
  letter-spacing:2px;
}
.nav{display:flex;align-items:center;gap:28px;font-size:13px;font-weight:700;text-transform:uppercase}
.nav a:not(.nav-cta){position:relative}
.nav a:not(.nav-cta)::after{
  content:"";position:absolute;left:0;right:100%;bottom:-8px;height:2px;background:var(--gold);
  transition:.25s
}
.nav a:not(.nav-cta):hover::after{right:0}
.nav-cta{
  background:var(--gold);
  color:#101820;
  padding:13px 18px;
  border-radius:3px
}
.menu-toggle{display:none;background:none;border:0;font-size:25px}

.hero{
  width:min(1200px,calc(100% - 40px));
  margin:20px auto 70px;
  min-height:620px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:60px;
  align-items:center;
}
.eyebrow{
  color:var(--gold);
  font-size:12px;
  letter-spacing:2.4px;
  font-weight:700;
  text-transform:uppercase;
  margin-bottom:18px
}
.hero h1{
  font-family:"Playfair Display",serif;
  font-size:clamp(46px,6vw,78px);
  line-height:1.02;
  margin:0 0 26px;
  letter-spacing:-1.6px
}
.hero h1 span{color:var(--gold)}
.hero p{font-size:18px;color:#536173;max-width:590px}
.hero-actions{display:flex;gap:14px;margin:34px 0 40px}
.btn{
  display:inline-flex;align-items:center;justify-content:center;
  min-height:48px;padding:0 22px;border-radius:3px;
  font-weight:700;text-transform:uppercase;font-size:12px;letter-spacing:.7px
}
.btn-primary{background:var(--gold);color:#0d1723}
.btn-primary:hover{background:var(--gold2)}
.btn-secondary{border:1px solid #aeb7c0;background:#fff}
.mini-points{display:flex;gap:34px}
.mini-points div{display:flex;flex-direction:column}
.mini-points b{font-size:13px}
.mini-points span{font-size:12px;color:#7b8591}

.hero-visual{
  position:relative;
  min-height:610px;
  display:flex;
  align-items:center;
  justify-content:center
}
.hero-visual::before{
  content:"";position:absolute;inset:30px 30px 10px 40px;
  border:1px solid rgba(214,160,24,.25);border-radius:80px 8px 80px 8px;
  transform:rotate(-2deg)
}
.hero-visual img{
  width:86%;height:540px;object-fit:cover;object-position:center;
  border-radius:80px 8px 80px 8px;
  box-shadow:0 30px 65px rgba(13,32,51,.18);
  position:relative;z-index:2
}
.data-card{
  position:absolute;z-index:4;background:rgba(255,255,255,.96);
  border:1px solid #eee7d8;box-shadow:0 18px 40px rgba(5,20,35,.18);
  padding:18px 20px;border-radius:14px;min-width:210px
}
.data-card small{display:block;color:#7e8792;font-size:10px;letter-spacing:1.5px;font-weight:700}
.data-card strong{display:block;font-family:"Playfair Display",serif;font-size:18px;margin:3px 0}
.data-card span{font-size:11px;color:var(--gold);font-weight:700}
.card-one{left:0;bottom:70px}
.card-two{right:0;top:80px}

.service-band{
  background:var(--navy);
  color:white;
  padding:85px max(30px,calc((100% - 1200px)/2));
}
.section-heading{max-width:780px;margin-bottom:40px}
.section-heading.centered{text-align:center;margin:0 auto 45px}
.section-heading h2{
  font-family:"Playfair Display",serif;
  font-size:clamp(34px,4vw,50px);
  line-height:1.1;margin:0 0 16px
}
.section-heading p{color:#aebccc}
.light p{color:#b9c5d1}
.services-grid{
  display:grid;grid-template-columns:repeat(3,1fr);gap:18px
}
.service-card{
  border:1px solid rgba(255,255,255,.12);
  padding:28px;
  background:linear-gradient(180deg,rgba(255,255,255,.035),rgba(255,255,255,.01));
  min-height:245px;transition:.25s
}
.service-card:hover{transform:translateY(-4px);border-color:rgba(214,160,24,.55)}
.service-card .icon{
  width:44px;height:44px;border:1px solid var(--gold);
  display:grid;place-items:center;color:var(--gold);font-size:20px;margin-bottom:25px
}
.service-card h3{font-size:18px;margin:0 0 12px}
.service-card p{font-size:14px;color:#b9c5d1;margin:0}

.about{
  width:min(1200px,calc(100% - 40px));
  margin:100px auto;
  display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:center
}
.about-image{position:relative}
.about-image img{
  width:100%;height:470px;object-fit:cover;border-radius:4px;
  box-shadow:0 22px 55px rgba(15,35,55,.16)
}
.gold-frame{
  position:absolute;inset:22px -22px -22px 22px;
  border:2px solid rgba(214,160,24,.45);z-index:-1
}
.about-copy h2{
  font-family:"Playfair Display",serif;
  font-size:clamp(34px,4vw,52px);
  line-height:1.1;margin:0 0 24px
}
.about-copy p{color:#5d6978}
.text-link{display:inline-block;margin-top:10px;color:var(--gold);font-weight:700}

.work{
  background:white;
  padding:90px max(30px,calc((100% - 1200px)/2))
}
.workflow{display:grid;grid-template-columns:repeat(4,1fr);gap:20px}
.step{border-top:3px solid var(--gold);padding:24px 18px 10px}
.step span{font-size:12px;color:var(--gold);font-weight:700;letter-spacing:1.5px}
.step h3{font-family:"Playfair Display",serif;font-size:24px;margin:8px 0}
.step p{color:#6c7785;font-size:14px}

.contact{
  width:min(1200px,calc(100% - 40px));
  margin:90px auto;
  background:var(--navy);
  color:white;
  display:grid;grid-template-columns:1.4fr .8fr;
  gap:60px;padding:64px;
  align-items:center
}
.contact h2{
  font-family:"Playfair Display",serif;
  font-size:clamp(34px,4vw,52px);line-height:1.1;margin:0 0 20px
}
.contact p{color:#c4ced8}
.contact-card{
  background:white;color:var(--ink);padding:28px;
  display:grid;gap:20px
}
.contact-card small{display:block;color:#89939f;font-size:10px;letter-spacing:1.6px;font-weight:700}
.contact-card a:not(.btn){font-size:18px;font-weight:700}
.wide{width:100%}

footer{
  width:min(1200px,calc(100% - 40px));
  margin:0 auto;padding:34px 0 45px;
  display:grid;grid-template-columns:1fr 1fr auto;gap:30px;align-items:center;
  border-top:1px solid var(--line);font-size:13px;color:#6e7883
}
.footer-brand .brand-name{font-size:21px}
.footer-brand .brand-sub{font-size:8px}
.copyright{text-align:right}

@media (max-width: 900px){
  .menu-toggle{display:block}
  .nav{
    display:none;position:absolute;top:80px;left:0;right:0;
    background:white;flex-direction:column;align-items:stretch;padding:20px;
    box-shadow:0 18px 40px rgba(0,0,0,.12)
  }
  .nav.open{display:flex}
  .hero{grid-template-columns:1fr;margin-top:30px}
  .hero-visual{min-height:520px}
  .services-grid{grid-template-columns:1fr 1fr}
  .about{grid-template-columns:1fr}
  .workflow{grid-template-columns:1fr 1fr}
  .contact{grid-template-columns:1fr;padding:40px}
  footer{grid-template-columns:1fr;text-align:left}
  .copyright{text-align:left}
}

@media (max-width: 600px){
  .site-header,.hero,.about,.contact,footer{width:min(100% - 28px,1200px)}
  .hero h1{font-size:48px}
  .hero{gap:20px}
  .hero-visual img{width:100%;height:470px;border-radius:45px 6px 45px 6px}
  .card-two{right:-2px;top:45px}
  .card-one{left:-2px;bottom:45px}
  .mini-points{gap:18px;flex-wrap:wrap}
  .services-grid,.workflow{grid-template-columns:1fr}
  .about{gap:45px}
  .about-image img{height:360px}
  .contact{padding:32px 22px}
}

.logo-img{height:54px;width:auto;object-fit:contain;display:block}
.footer-logo{height:46px}
@media (max-width:600px){.logo-img{height:42px}}

/* V2.1 small-detail polish only */
.logo-img{
  height:62px;
  width:auto;
  max-width:270px;
  object-fit:contain;
  display:block;
}
.footer-logo{
  height:50px;
  max-width:220px;
}
.site-header{min-height:94px}
.service-card{border-color:rgba(255,255,255,.14)}
.service-card:hover{transform:translateY(-2px)}
.contact-card{box-shadow:0 16px 36px rgba(4,18,32,.12)}
@media (max-width:600px){
  .logo-img{height:50px;max-width:220px}
  .footer-logo{height:44px;max-width:190px}
}
