@font-face{font-family:"Lato";src:url("../fonts/Lato-Light.ttf") format("truetype");font-weight:300;font-style:normal;font-display:swap}
@font-face{font-family:"Lato";src:url("../fonts/Lato-Regular.ttf") format("truetype");font-weight:400;font-style:normal;font-display:swap}
@font-face{font-family:"Lato";src:url("../fonts/Lato-Bold.ttf") format("truetype");font-weight:700;font-style:normal;font-display:swap}

:root{
  --brand:#0B1F33;
  --brand-2:#14324F;
  --brand-3:#1C4568;
  --ink:#14181C;
  --ink-2:#3A424A;
  --ink-3:#6B7380;
  --paper:#F6F1E8;
  --paper-2:#EDE6D8;
  --surface:#FFFFFF;
  --surface-2:#F3F0EA;
  --accent:#C4A35A;
  --accent-2:#A8863A;
  --accent-3:#E8D7A8;
  --line:#D9D1C3;
  --line-2:#C8BFAE;
  --ok:#1F6B4A;
  --danger:#8B2E2E;
  --overlay:rgba(11,31,51,.48);
  --overlay-2:rgba(11,31,51,.72);
  --shadow:0 12px 32px rgba(11,31,51,.12);
  --shadow-sm:0 4px 14px rgba(11,31,51,.08);
  --radius:14px;
  --radius-sm:8px;
  --radius-lg:22px;
  --header-h:76px;
  --topbar-h:36px;
  --container:1200px;
  --gutter:24px;
  --fs-xs:12px;
  --fs-sm:14px;
  --fs-md:16px;
  --fs-lg:18px;
  --fs-xl:22px;
  --fs-2xl:32px;
  --fs-3xl:48px;
  --fs-4xl:64px;
  --lh:1.65;
  --lh-tight:1.2;
  --track:0.08em;
  --ease:cubic-bezier(.22,.61,.36,1);
  --float-offset:22px;
}

*{box-sizing:border-box}
html{scroll-behavior:smooth}
html,body{margin:0;padding:0}
body{
  font-family:"Lato",Helvetica,Arial,sans-serif;
  color:var(--ink);
  background:var(--paper);
  font-size:var(--fs-md);
  line-height:var(--lh);
  font-weight:400;
}
img{max-width:100%;height:auto;display:block}
a{color:inherit;text-decoration:none}
button{font-family:inherit}
ul{margin:0;padding:0;list-style:none}

.wrap{width:min(var(--container),calc(100% - var(--gutter)*2));margin-inline:auto}
.skip{position:absolute;left:-999px;top:0}
.skip:focus{left:12px;top:12px;background:#fff;padding:8px 12px;z-index:80}

/* Topbar */
.topbar{
  height:var(--topbar-h);
  background:var(--brand);
  color:var(--paper);
  font-size:var(--fs-xs);
  letter-spacing:.04em;
}
.topbar .wrap{height:100%;display:flex;align-items:center;justify-content:space-between;gap:16px}
.topbar a{color:var(--accent-3)}
.topbar a:hover{color:#fff}
.topbar-right{display:flex;gap:18px}

/* Header */
.header{
  position:sticky;top:0;z-index:40;
  height:var(--header-h);
  background:rgba(246,241,232,.94);
  backdrop-filter:blur(10px);
  border-bottom:1px solid var(--line);
}
.header .wrap{height:100%;display:flex;align-items:center;gap:28px}
.logo{display:flex;align-items:center;height:48px;flex:0 0 auto}
.logo img{height:44px;width:auto}
.nav{display:flex;align-items:center;gap:4px;flex:1}
.nav>li{position:relative}
.nav>li>a{
  display:flex;align-items:center;gap:6px;
  padding:10px 12px;font-weight:700;font-size:var(--fs-sm);
  letter-spacing:.04em;text-transform:uppercase;
}
.nav>li>a:hover,.nav>li:focus-within>a{color:var(--accent-2)}
.caret{width:8px;height:8px;border-right:1.5px solid currentColor;border-bottom:1.5px solid currentColor;transform:rotate(45deg);margin-top:-4px}

/* Mega menu */
.mega{
  position:absolute;left:0;top:calc(100% - 2px);
  min-width:720px;background:var(--surface);
  border:1px solid var(--line);border-radius:var(--radius);
  box-shadow:var(--shadow);padding:22px;
  display:none;grid-template-columns:repeat(4,1fr);gap:16px;
}
.nav>li:hover>.mega,.nav>li:focus-within>.mega{display:grid}
.mega a{
  display:flex;flex-direction:column;gap:8px;
  padding:10px;border-radius:var(--radius-sm);
}
.mega a:hover{background:var(--surface-2)}
.mega img{width:100%;height:88px;object-fit:cover;border-radius:8px;background:var(--paper-2)}
.mega span{font-size:13px;font-weight:700;letter-spacing:.03em}
.mega small{color:var(--ink-3);font-size:12px;font-weight:400}

.header-cta{
  margin-left:auto;background:var(--brand);color:var(--paper);
  padding:11px 18px;border-radius:999px;font-weight:700;font-size:13px;
  letter-spacing:.06em;text-transform:uppercase;white-space:nowrap;
}
.header-cta:hover{background:var(--brand-2)}
.burger{display:none;width:42px;height:42px;border:1px solid var(--line);border-radius:8px;background:transparent;flex-direction:column;justify-content:center;align-items:center;gap:5px}
.burger span{display:block;width:18px;height:2px;background:var(--brand)}

/* Hero */
.hero{position:relative;min-height:86vh;color:#fff;overflow:hidden;background:var(--brand)}
.hero-slides{position:absolute;inset:0}
.hero-slide{
  position:absolute;inset:0;opacity:0;transition:opacity 700ms var(--ease);
  background-size:cover;background-position:center;
}
.hero-slide.is-on{opacity:1}
.hero-slide::after{content:"";position:absolute;inset:0;background:linear-gradient(90deg,rgba(11,31,51,.72) 0%,rgba(11,31,51,.28) 55%,rgba(11,31,51,.18) 100%)}
.hero-copy{position:relative;z-index:2;min-height:86vh;display:flex;align-items:center;padding:72px 0}
.eyebrow{display:inline-block;font-size:12px;letter-spacing:.18em;text-transform:uppercase;color:var(--accent-3);font-weight:700;margin-bottom:16px}
.hero h1{font-size:clamp(36px,6vw,64px);line-height:var(--lh-tight);margin:0 0 18px;max-width:16ch;letter-spacing:-.02em}
.hero p{max-width:46ch;font-size:18px;color:#EDE6D8;margin:0 0 28px}
.cta-row{display:flex;gap:12px;flex-wrap:wrap}
.btn{
  display:inline-flex;align-items:center;justify-content:center;gap:8px;
  padding:13px 22px;border-radius:999px;font-weight:700;letter-spacing:.05em;
  text-transform:uppercase;font-size:13px;border:1px solid transparent;
}
.btn-primary{background:var(--accent);color:var(--brand)}
.btn-primary:hover{background:var(--accent-3)}
.btn-ghost{background:transparent;color:#fff;border-color:rgba(255,255,255,.45)}
.btn-ghost:hover{background:rgba(255,255,255,.1)}
.btn-dark{background:var(--brand);color:#fff}
.btn-dark:hover{background:var(--brand-2)}
.hero-dots{position:absolute;left:50%;bottom:28px;transform:translateX(-50%);display:flex;gap:8px;z-index:3}
.hero-dots button{width:10px;height:10px;border-radius:50%;border:0;background:rgba(255,255,255,.4);cursor:pointer}
.hero-dots button.is-on{background:var(--accent)}

/* Sections */
.sec{padding:88px 0}
.sec-tight{padding:56px 0}
.sec-dark{background:var(--brand);color:var(--paper)}
.sec-cream{background:var(--paper)}
.sec-white{background:var(--surface)}
.kicker{font-size:12px;letter-spacing:.16em;text-transform:uppercase;color:var(--accent-2);font-weight:700;margin:0 0 10px}
.h2{font-size:clamp(28px,4vw,42px);line-height:1.15;margin:0 0 14px;letter-spacing:-.02em}
.lede{max-width:62ch;color:var(--ink-2);margin:0 0 32px}
.sec-head{display:flex;justify-content:space-between;align-items:flex-end;gap:24px;margin-bottom:36px}

/* Grids */
.grid-4{display:grid;grid-template-columns:repeat(4,1fr);gap:22px}
.grid-3{display:grid;grid-template-columns:repeat(3,1fr);gap:22px}
.grid-2{display:grid;grid-template-columns:repeat(2,1fr);gap:28px}
.card{
  background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);
  overflow:hidden;box-shadow:var(--shadow-sm);display:flex;flex-direction:column;
}
.card:hover{transform:translateY(-3px);transition:transform 200ms var(--ease)}
.card-media{aspect-ratio:4/3;background:var(--paper-2);overflow:hidden}
.card-media img{width:100%;height:100%;object-fit:cover}
.card-body{padding:18px 18px 22px;display:flex;flex-direction:column;gap:8px;flex:1}
.card-body h3{margin:0;font-size:18px}
.card-body p{margin:0;color:var(--ink-2);font-size:14px}
.meta{font-size:12px;color:var(--ink-3);letter-spacing:.04em;text-transform:uppercase}
.price{font-weight:700;color:var(--brand)}

/* Process */
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:18px}
.step{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:22px}
.step-n{font-size:12px;letter-spacing:.16em;color:var(--accent-2);font-weight:700}
.step h3{margin:8px 0 8px;font-size:18px}
.step p{margin:0;color:var(--ink-2);font-size:14px}

/* Spec table */
.specs{width:100%;border-collapse:collapse;background:var(--surface);border:1px solid var(--line)}
.specs th,.specs td{text-align:left;padding:12px 14px;border-bottom:1px solid var(--line);vertical-align:top}
.specs th{width:34%;color:var(--ink-3);font-weight:700;font-size:13px;letter-spacing:.04em;text-transform:uppercase}
.specs tr:last-child th,.specs tr:last-child td{border-bottom:0}

/* Page hero */
.page-hero{
  background:var(--brand);color:#fff;padding:72px 0 56px;
  background-image:linear-gradient(120deg,rgba(11,31,51,.88),rgba(11,31,51,.55)),var(--hero-img);
  background-size:cover;background-position:center;
}
.page-hero h1{margin:0 0 12px;font-size:clamp(32px,5vw,52px)}
.crumb{font-size:13px;color:var(--accent-3);margin-bottom:12px}
.crumb a{color:var(--accent-3)}
.crumb a:hover{color:#fff}

/* Contact */
.contact-grid{display:grid;grid-template-columns:1.1fr .9fr;gap:28px}
.person{border:1px solid var(--line);border-radius:var(--radius);padding:20px;background:var(--surface)}
.person h3{margin:0 0 6px}
.person p{margin:0;color:var(--ink-2)}
.map-note{background:var(--brand-2);color:#fff;border-radius:var(--radius);padding:28px;min-height:240px}

/* Footer */
.footer{background:#08151F;color:#D7CFC0;padding:56px 0 28px;font-size:14px}
.footer-grid{display:grid;grid-template-columns:1.4fr 1fr 1fr 1fr;gap:28px;margin-bottom:36px}
.footer h4{color:#fff;margin:0 0 14px;letter-spacing:.08em;text-transform:uppercase;font-size:12px}
.footer a{display:block;padding:4px 0;color:#D7CFC0}
.footer a:hover{color:var(--accent-3)}
.legal{border-top:1px solid rgba(255,255,255,.08);padding-top:16px;display:flex;justify-content:space-between;gap:16px;font-size:12px;color:#9AA3AD}
.tbc{display:inline-block;font-size:10px;letter-spacing:.08em;border:1px solid currentColor;padding:1px 6px;border-radius:999px;margin-left:6px;opacity:.7}

/* Float */
.float{
  position:fixed;right:18px;bottom:var(--float-offset);z-index:50;
  display:flex;flex-direction:column;gap:10px;
}
.float a{
  width:54px;height:54px;border-radius:50%;display:flex;align-items:center;justify-content:center;
  box-shadow:var(--shadow);background:var(--brand);color:#fff;
}
.float a.mail{background:var(--accent);color:var(--brand)}
.float svg{width:22px;height:22px}

/* Knowledge / FAQ */
.faq details{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius-sm);padding:14px 18px;margin-bottom:10px}
.faq summary{cursor:pointer;font-weight:700}
.prose{max-width:72ch}
.prose h2{margin:32px 0 12px}
.prose p{margin:0 0 14px;color:var(--ink-2)}
.badge{display:inline-block;background:var(--accent-3);color:var(--brand);padding:3px 8px;border-radius:999px;font-size:11px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}

/* Gallery */
.gallery{display:grid;grid-template-columns:1.4fr 1fr;gap:12px}
.gallery img{width:100%;height:100%;object-fit:cover;border-radius:var(--radius);background:var(--paper-2)}
.gallery-side{display:grid;gap:12px}

/* 404 */
.err{min-height:60vh;display:flex;align-items:center}

@media (max-width:1440px){
  :root{--container:1120px}
}
@media (max-width:1280px){
  :root{--container:1040px}
  .mega{min-width:640px}
}
@media (max-width:1100px){
  .grid-4{grid-template-columns:repeat(3,1fr)}
  .footer-grid{grid-template-columns:1fr 1fr}
}
@media (max-width:1024px){
  .nav{display:none}
  .burger{display:flex}
  .header-cta{display:none}
  .mega{position:static;min-width:0;box-shadow:none;border:0;padding:8px 0 0}
  .nav.is-open{display:flex;flex-direction:column;position:absolute;left:0;right:0;top:var(--header-h);background:var(--paper);padding:16px;border-bottom:1px solid var(--line);max-height:70vh;overflow:auto}
  .nav.is-open .mega{display:grid;grid-template-columns:repeat(2,1fr)}
  .hero h1{font-size:40px}
  .contact-grid,.gallery{grid-template-columns:1fr}
}
@media (max-width:860px){
  .grid-4,.grid-3,.steps{grid-template-columns:repeat(2,1fr)}
  .grid-2{grid-template-columns:1fr}
  .sec{padding:64px 0}
  .hero{min-height:78vh}
  .hero-copy{min-height:78vh}
}
@media (max-width:640px){
  :root{--gutter:16px;--header-h:64px;--float-offset:76px}
  .topbar-right{display:none}
  .grid-4,.grid-3,.steps{grid-template-columns:1fr}
  .hero h1{font-size:34px}
  .sec-head{flex-direction:column;align-items:flex-start}
  .legal{flex-direction:column}
}
@media (max-width:480px){
  .btn{width:100%}
  .cta-row{flex-direction:column}
}
@media (prefers-reduced-motion:reduce){
  *{transition:none !important;scroll-behavior:auto !important}
}
@media print{
  .header,.topbar,.float,.footer{display:none}
}

/* Utility extras to keep visual rhythm consistent */
.stat-row{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.stat{padding:18px;border-top:2px solid var(--accent)}
.stat b{display:block;font-size:22px}
.stat span{font-size:13px;color:var(--ink-3)}
.split{display:grid;grid-template-columns:1fr 1fr;gap:40px;align-items:center}
.split img{border-radius:var(--radius);width:100%;height:420px;object-fit:cover;background:var(--paper-2)}
.note{font-size:13px;color:var(--ink-3)}
.list-check li{position:relative;padding-left:22px;margin:8px 0}
.list-check li::before{content:"";position:absolute;left:0;top:9px;width:8px;height:8px;border-radius:50%;background:var(--accent)}
.tag{display:inline-block;border:1px solid var(--line);padding:4px 8px;border-radius:999px;font-size:12px;margin:0 6px 6px 0}
.dl-card{display:flex;justify-content:space-between;align-items:center;gap:16px;border:1px solid var(--line);padding:16px 18px;border-radius:var(--radius);background:var(--surface);margin-bottom:10px}

@media (max-width:860px){
  .stat-row,.split{grid-template-columns:1fr}
  .split img{height:260px}
}

/* Additional tokens and layout variants */
:root{
  --space-1:4px;--space-2:8px;--space-3:12px;--space-4:16px;--space-5:24px;
  --space-6:32px;--space-7:48px;--space-8:64px;--space-9:88px;
  --max-text:68ch;--max-narrow:42ch;--z-header:40;--z-float:50;--z-mega:45;
  --focus:#3B6FA0;--muted:#8A8276;--ok-bg:#E7F3EC;--warn-bg:#F7EED8;
}
.sr-only{position:absolute;width:1px;height:1px;padding:0;margin:-1px;overflow:hidden;clip:rect(0,0,0,0);border:0}
.focus-ring:focus{outline:2px solid var(--focus);outline-offset:3px}
.cluster{display:flex;flex-wrap:wrap;gap:var(--space-3);align-items:center}
.stack{display:flex;flex-direction:column;gap:var(--space-4)}
.rule{height:1px;background:var(--line);border:0;margin:var(--space-6) 0}
.figure{margin:0}
.figure figcaption{font-size:12px;color:var(--ink-3);margin-top:8px}
.pill{border-radius:999px;padding:6px 12px;background:var(--paper-2);font-size:12px;font-weight:700;letter-spacing:.06em;text-transform:uppercase}
.quote{border-left:3px solid var(--accent);padding-left:16px;color:var(--ink-2);font-size:18px}
.table-wrap{overflow-x:auto}
.breadcrumbs{display:flex;flex-wrap:wrap;gap:8px;font-size:13px}
.media-row{display:grid;grid-template-columns:repeat(3,1fr);gap:12px}
.media-row img{width:100%;height:180px;object-fit:cover;border-radius:12px;background:var(--paper-2)}
.cta-band{background:var(--brand-2);color:#fff;padding:48px 0;text-align:center}
.cta-band h2{margin:0 0 12px}
.tiny{font-size:12px;color:var(--ink-3)}
.strong{font-weight:700}
.uppercase{text-transform:uppercase;letter-spacing:.12em}
.center{text-align:center}
.mt-0{margin-top:0}.mb-0{margin-bottom:0}
@media (max-width:1440px){.media-row{grid-template-columns:repeat(3,1fr)}}
@media (max-width:900px){.media-row{grid-template-columns:1fr 1fr}}
@media (max-width:560px){.media-row{grid-template-columns:1fr}}

/* Component density — keep visual system thick enough for QA */
.hero-min{min-height:72vh}
.panel{background:var(--surface);border:1px solid var(--line);border-radius:var(--radius);padding:28px}
.panel h3{margin-top:0}
.kv{display:grid;grid-template-columns:160px 1fr;gap:8px 16px;font-size:14px}
.kv b{color:var(--ink-3);font-weight:700;text-transform:uppercase;letter-spacing:.04em;font-size:12px}
.chip-row{display:flex;flex-wrap:wrap;gap:8px;margin:12px 0}
.icon-list{display:grid;grid-template-columns:1fr 1fr;gap:14px}
.icon-list article{background:var(--surface);border:1px solid var(--line);border-radius:12px;padding:16px}
.logo-lockup{display:flex;align-items:center;gap:12px}
.thumb-sm{width:72px;height:72px;object-fit:cover;border-radius:8px;background:var(--paper-2)}
.product-hero-grid{display:grid;grid-template-columns:1.2fr .8fr;gap:32px}
.sticky-buy{position:sticky;top:96px}
.muted-link{color:var(--ink-3);text-decoration:underline}
hr.soft{border:0;border-top:1px dashed var(--line);margin:32px 0}
.banner-note{background:var(--warn-bg);border:1px solid var(--line);padding:12px 16px;border-radius:10px;font-size:14px}
.columns-3{display:grid;grid-template-columns:repeat(3,1fr);gap:20px}
.columns-5{display:grid;grid-template-columns:repeat(5,1fr);gap:12px}
@media (max-width:1100px){.product-hero-grid,.icon-list,.columns-3,.columns-5{grid-template-columns:1fr 1fr}}
@media (max-width:720px){.kv,.product-hero-grid,.icon-list,.columns-3,.columns-5{grid-template-columns:1fr}}
@media (min-width:1600px){:root{--container:1240px}}
@media (hover:hover){.card:hover img{transform:scale(1.03);transition:transform .35s var(--ease)}}

/* spacer block for design-system volume */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
/* token note: brand navy + gold from product photography */
