:root {
  --navy-950: #181b1d;
  --navy-900: #23282b;
  --navy-800: #2e3438;
  --navy-700: #3c4449;
  --gold-600: #515e26;
  --gold-500: #6b7a33;
  --gold-400: #8a9a4a;
  --ink: #20252a;
  --ink-2: #3c4449;
  --muted: #6b7480;
  --paper: #ffffff;
  --paper-2: #f3f3ec;
  --line: #e6e5dd;
  --line-dark: rgba(255,255,255,0.12);
  --shadow-sm: 0 2px 10px rgba(20,22,24,0.06);
  --shadow-md: 0 18px 40px -22px rgba(20,22,24,0.34);
  --radius: 10px;
  --radius-sm: 7px;
  --maxw: 1180px;
}

* { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
h1, h2, h3, h4 { font-family: 'Spectral', Georgia, 'Times New Roman', serif; font-weight: 600; }

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

/* ICONS */
.ic { width: 18px; height: 18px; fill: none; stroke: currentColor; stroke-width: 1.7; stroke-linecap: round; stroke-linejoin: round; flex-shrink: 0; }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(20px); transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1); }
.reveal.in { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .reveal { opacity: 1; transform: none; transition: none; } }

/* LABEL (eyebrow) */
.label {
  display: inline-flex; align-items: center; gap: 12px;
  font-family: 'Inter', sans-serif;
  font-size: 12px; font-weight: 700; letter-spacing: 2.5px; text-transform: uppercase;
  color: var(--gold-600); margin-bottom: 18px;
}
.label-rule { width: 28px; height: 2px; background: var(--gold-500); display: inline-block; }
.label.center { justify-content: center; }

/* UTILITY BAR */
.utility { background: var(--navy-950); color: rgba(255,255,255,0.72); font-size: 13px; }
.utility-inner { display: flex; align-items: center; justify-content: space-between; height: 42px; gap: 16px; }
.utility-left { display: flex; align-items: center; gap: 14px; }
.utility-left .ic { width: 15px; height: 15px; color: var(--gold-400); }
.u-item { display: inline-flex; align-items: center; gap: 7px; white-space: nowrap; }
.u-sep { opacity: 0.35; }
.utility-right { display: flex; align-items: center; gap: 22px; }
.u-link { display: inline-flex; align-items: center; gap: 7px; color: rgba(255,255,255,0.82); transition: color .2s; white-space: nowrap; }
.u-link .ic { width: 15px; height: 15px; color: var(--gold-400); }
.u-link:hover { color: #fff; }

/* HEADER */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(255,255,255,0.96);
  backdrop-filter: saturate(160%) blur(10px);
  -webkit-backdrop-filter: saturate(160%) blur(10px);
  border-bottom: 1px solid var(--line);
  transition: box-shadow .25s, border-color .25s;
}
.site-header.scrolled { box-shadow: 0 6px 24px -16px rgba(16,32,60,0.5); }
.nav { display: flex; align-items: center; gap: 32px; height: 78px; }
.brand { display: flex; align-items: center; gap: 13px; margin-right: auto; }
.brand-mark {
  display: grid; place-items: center; width: 44px; height: 44px;
  border: 1.5px solid var(--gold-500); border-radius: 9px; color: var(--gold-600);
  background: linear-gradient(180deg, #fff, #fbf7ec);
}
.brand-mark svg { width: 26px; height: 26px; fill: currentColor; stroke: none; }
.brand-mark svg path[fill="none"] { fill: none; stroke: currentColor; }
.brand-text { display: flex; flex-direction: column; line-height: 1.08; }
.brand-name { font-family: 'Inter', sans-serif; font-size: 15.5px; font-weight: 800; letter-spacing: 1.4px; color: var(--navy-900); white-space: nowrap; }
.brand-sub { font-family: 'Spectral', serif; font-style: italic; font-size: 13px; color: var(--gold-600); letter-spacing: 0.3px; }
.nav-links { display: flex; gap: 30px; font-size: 15px; font-weight: 500; color: var(--ink-2); }
.nav-links a { position: relative; padding: 4px 0; transition: color .2s; }
.nav-links a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -2px; height: 2px; background: var(--gold-500); transition: right .25s; }
.nav-links a:hover { color: var(--navy-900); }
.nav-links a:hover::after { right: 0; }
.nav-toggle { display: none; background: transparent; border: 0; padding: 8px; cursor: pointer; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--navy-900); margin: 5px 0; border-radius: 2px; }

/* BUTTONS */
.btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  padding: 12px 22px; border-radius: var(--radius-sm); font-weight: 600; font-size: 15px;
  border: 1.5px solid transparent; cursor: pointer; transition: transform .15s, box-shadow .25s, background .2s, color .2s, border-color .2s;
  white-space: nowrap; font-family: 'Inter', sans-serif;
}
.btn-lg { padding: 15px 30px; font-size: 15.5px; }
.btn-block { width: 100%; }
.btn-gold { background: var(--gold-500); color: #fff; box-shadow: var(--shadow-sm); }
.btn-gold:hover { background: var(--gold-600); transform: translateY(-1px); box-shadow: 0 12px 24px -12px rgba(107,122,51,0.8); }
.btn-outline { background: transparent; color: var(--navy-900); border-color: var(--line); }
.btn-outline:hover { border-color: var(--navy-900); background: var(--paper-2); }
.btn-navy { background: var(--navy-900); color: #fff; margin-top: 28px; }
.btn-navy:hover { background: var(--navy-800); transform: translateY(-1px); }

/* HERO */
.hero { position: relative; padding: 92px 0 100px; background: var(--paper); overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -120px; right: -120px; width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(107,122,51,0.10), transparent 65%); pointer-events: none;
}
.hero-grid { display: grid; grid-template-columns: 1.05fr 0.95fr; gap: 64px; align-items: center; }
.hero-copy h1 {
  font-size: clamp(38px, 5vw, 58px); line-height: 1.08; letter-spacing: -0.8px;
  color: var(--navy-900); margin: 0 0 22px;
}
.hero .lead { font-size: 18.5px; color: var(--ink-2); margin: 0 0 34px; max-width: 540px; }
.cta-row { display: flex; flex-wrap: wrap; gap: 14px; margin-bottom: 36px; }
.hero-trust { list-style: none; padding: 28px 0 0; margin: 0; border-top: 1px solid var(--line); display: flex; flex-wrap: wrap; gap: 14px 26px; }
.hero-trust li { display: inline-flex; align-items: center; gap: 9px; font-size: 14.5px; font-weight: 500; color: var(--ink-2); }
.hero-trust .ic { width: 17px; height: 17px; color: var(--gold-600); stroke-width: 2.4; }

/* MEDIA PANELS (photo placeholders) */
.hero-media { position: relative; }
.media-panel {
  position: relative; aspect-ratio: 5 / 4.4; border-radius: var(--radius);
  background:
    radial-gradient(120% 90% at 70% 10%, #39424a 0%, transparent 55%),
    linear-gradient(155deg, var(--navy-800) 0%, var(--navy-950) 100%);
  border: 1px solid rgba(255,255,255,0.06);
  box-shadow: var(--shadow-md);
  display: grid; place-items: center; overflow: hidden;
}
.media-panel.tall { aspect-ratio: 4 / 5; }
.media-panel::before {
  content: ""; position: absolute; inset: 0;
  background-image: linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 40px 40px; mask-image: radial-gradient(ellipse at center, #000, transparent 78%); -webkit-mask-image: radial-gradient(ellipse at center, #000, transparent 78%);
}
.media-panel::after {
  content: ""; position: absolute; top: 16px; left: 16px; width: 46px; height: 46px;
  border-top: 2px solid var(--gold-500); border-left: 2px solid var(--gold-500); border-radius: 4px 0 0 0; opacity: 0.8;
}
.media-mark { width: 96px; height: 96px; fill: none; stroke: rgba(107,122,51,0.5); stroke-width: 1; stroke-linecap: round; stroke-linejoin: round; position: relative; }
.media-badge {
  position: absolute; left: -18px; bottom: 26px; display: flex; align-items: center; gap: 13px;
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 14px 18px;
  box-shadow: var(--shadow-md);
}
.media-badge .ic { width: 28px; height: 28px; color: var(--gold-600); stroke-width: 1.6; }
.media-badge strong { display: block; font-family: 'Inter', sans-serif; font-size: 14px; color: var(--navy-900); }
.media-badge span { font-size: 12.5px; color: var(--muted); }

/* STATS BAND */
.statband { background: var(--navy-900); color: #fff; }
.statband-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat { text-align: center; padding: 36px 16px; border-left: 1px solid rgba(255,255,255,0.08); }
.stat:first-child { border-left: 0; }
.stat strong { display: block; font-family: 'Spectral', serif; font-size: 32px; font-weight: 700; color: var(--gold-400); line-height: 1; }
.stat span { display: block; font-size: 12.5px; letter-spacing: 1.2px; text-transform: uppercase; color: rgba(255,255,255,0.6); margin-top: 9px; }

/* SECTIONS */
.section { padding: 100px 0; }
.section-alt { background: var(--paper-2); }
.section-head { margin-bottom: 56px; }
.section-head.center { text-align: center; max-width: 640px; margin-inline: auto; }
.section-head.split { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 40px; align-items: end; }
.section-title { font-size: clamp(30px, 3.6vw, 42px); line-height: 1.15; letter-spacing: -0.4px; color: var(--navy-900); margin: 0; }
.section-lead { color: var(--muted); font-size: 16.5px; line-height: 1.7; margin: 0; }
.section-lead.left { max-width: 520px; margin-top: 18px; }
.section-head.split .section-lead { padding-bottom: 6px; }

/* SERVICES */
.grid { display: grid; gap: 22px; }
.services { grid-template-columns: repeat(3, 1fr); }
.card {
  background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 34px 30px; transition: transform .22s, box-shadow .28s, border-color .22s;
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: #d9dee6; }
.card-ic {
  display: grid; place-items: center; width: 54px; height: 54px; border-radius: 12px;
  background: var(--navy-900); color: var(--gold-400); margin-bottom: 20px; transition: background .22s;
}
.card-ic svg { width: 26px; height: 26px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; }
.card:hover .card-ic { background: var(--navy-800); }
.card h3 { font-size: 21px; color: var(--navy-900); margin: 0 0 9px; }
.card p { margin: 0; color: var(--muted); font-size: 15px; }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 64px; align-items: center; }
.about-copy .section-title { margin-bottom: 0; }
.check-list { list-style: none; padding: 0; margin: 28px 0 0; display: grid; gap: 14px; }
.check-list li { display: flex; align-items: flex-start; gap: 12px; font-size: 16px; color: var(--ink-2); }
.check-list .ic { width: 20px; height: 20px; color: #fff; background: var(--gold-500); border-radius: 50%; padding: 3px; stroke-width: 3; margin-top: 2px; }

/* PROCESS */
.process { position: relative; display: grid; grid-template-columns: repeat(4, 1fr); gap: 26px; }
.process-line { position: absolute; top: 26px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--line), var(--gold-500), var(--line)); z-index: 0; }
.step { position: relative; z-index: 1; text-align: center; padding: 0 8px; }
.step-num {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 20px;
  display: grid; place-items: center; background: var(--navy-900); color: var(--gold-400);
  font-family: 'Spectral', serif; font-size: 22px; font-weight: 700;
  border: 4px solid var(--paper); box-shadow: 0 0 0 1px var(--line);
}
.section-alt .step-num { border-color: var(--paper-2); }
.step h3 { font-size: 20px; color: var(--navy-900); margin: 0 0 8px; }
.step p { margin: 0; color: var(--muted); font-size: 14.5px; }

/* TESTIMONIALS */
.testimonials { grid-template-columns: repeat(3, 1fr); }
.quote {
  margin: 0; background: #fff; border: 1px solid var(--line); border-radius: var(--radius);
  padding: 32px 30px; display: flex; flex-direction: column; box-shadow: var(--shadow-sm);
  border-top: 3px solid var(--gold-500);
}
.stars { display: flex; gap: 3px; margin-bottom: 18px; }
.stars svg { width: 18px; height: 18px; fill: var(--gold-500); }
.quote blockquote { margin: 0 0 24px; font-size: 16px; line-height: 1.7; color: var(--ink-2); font-family: 'Spectral', serif; flex: 1; }
.quote figcaption { display: flex; align-items: center; gap: 14px; border-top: 1px solid var(--line); padding-top: 20px; }
.mono {
  width: 44px; height: 44px; border-radius: 8px; border: 1.5px solid var(--gold-500);
  display: grid; place-items: center; font-family: 'Inter', sans-serif; font-weight: 700; font-size: 14px;
  color: var(--navy-900); letter-spacing: 0.5px; flex-shrink: 0;
}
.quote-name { display: block; font-family: 'Inter', sans-serif; font-weight: 600; color: var(--navy-900); font-size: 15px; }
.quote-meta { display: block; font-size: 13px; color: var(--muted); }

/* CTA BAND */
.cta-band {
  background:
    radial-gradient(800px 300px at 80% 0%, rgba(107,122,51,0.14), transparent 70%),
    linear-gradient(120deg, var(--navy-900), var(--navy-950));
  color: #fff;
}
.cta-inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; padding: 64px 0; flex-wrap: wrap; }
.cta-inner h2 { font-size: clamp(26px, 3vw, 36px); color: #fff; margin: 0 0 8px; letter-spacing: -0.3px; }
.cta-inner p { margin: 0; color: rgba(255,255,255,0.72); font-size: 16.5px; max-width: 520px; }

/* CONTACT */
.contact-grid { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 60px; align-items: start; }
.contact-copy .section-title { margin-bottom: 0; }
.contact-details { list-style: none; padding: 0; margin: 34px 0 0; display: grid; gap: 22px; }
.contact-details li { display: flex; align-items: center; gap: 16px; }
.cd-ic { display: grid; place-items: center; width: 48px; height: 48px; border-radius: 10px; background: var(--paper-2); border: 1px solid var(--line); color: var(--gold-600); flex-shrink: 0; }
.cd-ic .ic { width: 20px; height: 20px; }
.cd-label { display: block; font-size: 12px; letter-spacing: 1.5px; text-transform: uppercase; color: var(--muted); font-weight: 600; }
.contact-details a, .contact-details div > span:not(.cd-label) { font-size: 16px; color: var(--navy-900); font-weight: 500; }
.contact-details a:hover { color: var(--gold-600); }

.contact-form { background: #fff; border: 1px solid var(--line); border-radius: var(--radius); padding: 36px; box-shadow: var(--shadow-md); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.contact-form label { display: block; margin-bottom: 18px; }
.contact-form span { display: block; font-size: 12px; font-weight: 700; letter-spacing: 1px; color: var(--ink-2); margin-bottom: 8px; text-transform: uppercase; }
.contact-form input, .contact-form textarea {
  width: 100%; padding: 13px 15px; background: var(--paper-2); border: 1.5px solid var(--line);
  border-radius: var(--radius-sm); color: var(--ink); font-size: 15px; font-family: inherit; transition: border-color .2s, background .2s, box-shadow .2s;
}
.contact-form input::placeholder, .contact-form textarea::placeholder { color: #9aa4b1; }
.contact-form input:focus, .contact-form textarea:focus { outline: none; border-color: var(--gold-500); background: #fff; box-shadow: 0 0 0 3px rgba(107,122,51,0.12); }
.contact-form textarea { resize: vertical; min-height: 120px; }
.form-note { text-align: center; color: var(--gold-600); margin: 14px 0 0; font-weight: 600; }

/* FOOTER */
.site-footer { background: var(--navy-950); color: rgba(255,255,255,0.66); }
.footer-top { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1.2fr; gap: 40px; padding: 64px 0 48px; }
.brand.light .brand-name { color: #fff; }
.brand.light .brand-mark { background: rgba(255,255,255,0.04); }
.footer-brand p { margin: 20px 0 0; font-size: 14.5px; line-height: 1.7; max-width: 320px; }
.footer-col h4 { font-family: 'Inter', sans-serif; font-size: 13px; letter-spacing: 1.5px; text-transform: uppercase; color: #fff; margin: 0 0 18px; font-weight: 700; }
.footer-col a, .footer-col span { display: block; font-size: 14.5px; color: rgba(255,255,255,0.66); margin-bottom: 11px; transition: color .2s; }
.footer-col a:hover { color: var(--gold-400); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; border-top: 1px solid rgba(255,255,255,0.08); font-size: 13px; flex-wrap: wrap; }
.footer-tag { color: var(--gold-400); letter-spacing: 1px; }

/* RESPONSIVE */
@media (max-width: 980px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .hero-media { max-width: 460px; }
  .about-grid { grid-template-columns: 1fr; gap: 44px; }
  .about-media { max-width: 420px; }
  .contact-grid { grid-template-columns: 1fr; gap: 44px; }
  .section-head.split { grid-template-columns: 1fr; gap: 18px; align-items: start; }
  .services, .testimonials { grid-template-columns: repeat(2, 1fr); }
  .process { grid-template-columns: repeat(2, 1fr); gap: 36px 24px; }
  .process-line { display: none; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 36px; }
}
@media (max-width: 860px) {
  .utility-left .u-item:nth-child(n+3), .utility-left .u-sep:nth-child(n+3) { display: none; }
  .nav-links {
    position: absolute; top: 78px; left: 0; right: 0; background: #fff;
    flex-direction: column; gap: 0; padding: 8px 0; border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow-md);
    transform: translateY(-8px); opacity: 0; pointer-events: none; transition: opacity .2s, transform .2s;
  }
  .nav-links.open { opacity: 1; transform: none; pointer-events: auto; }
  .nav-links a { padding: 14px 24px; }
  .nav-links a::after { display: none; }
  .nav-cta { display: none; }
  .nav-toggle { display: block; }
}
/* ===== HERO LOGO CARD (interim logotype until real logo image is added) ===== */
.logo-card {
  aspect-ratio: 5 / 4.4; border-radius: var(--radius);
  background: linear-gradient(180deg, #ffffff, #f3f3ec);
  border: 1px solid var(--line); box-shadow: var(--shadow-md);
  display: grid; place-items: center; padding: 30px; text-align: center; overflow: hidden;
}
.logo-card img { width: 100%; height: 100%; object-fit: contain; }
.logo-type .lt-name { font-family: 'Spectral', serif; font-weight: 700; font-size: clamp(30px, 5vw, 46px); line-height: 0.98; letter-spacing: 0.5px; color: var(--navy-900); }
.logo-type .lt-sub { font-size: 12px; letter-spacing: 5px; color: var(--gold-600); margin-top: 12px; font-weight: 600; }
.lt-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px 0 12px; }
.lt-divider svg { width: 30px; height: 30px; fill: none; stroke: var(--ink-2); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.lt-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); flex: none; }
.lt-tag { font-size: 11px; letter-spacing: 3px; color: var(--muted); }

/* ===== LC MONOGRAM + EMBLEM (Lauzon Creations) ===== */
.lc { display: block; }
.lc path { fill: currentColor; }
.lc path[fill="none"] { fill: none; stroke: currentColor; }

.emblem-panel { display: grid; place-items: center; padding: 26px 20px; }
.emblem { text-align: center; max-width: 100%; }
.emblem-ring {
  width: 130px; height: 130px; border-radius: 50%;
  border: 2px solid var(--gold-500);
  display: grid; place-items: center; margin: 0 auto 22px; position: relative;
  box-shadow: inset 0 0 0 7px rgba(107,122,51,0.10);
}
.emblem-ring::before { content: ""; position: absolute; inset: 9px; border-radius: 50%; border: 1px solid rgba(107,122,51,0.30); }
.emblem .lc-lg { width: 64px; height: 64px; color: var(--gold-400); }
.emblem-word { font-family: 'Spectral', serif; font-weight: 700; font-size: clamp(20px, 4.4vw, 26px); letter-spacing: 1px; color: #fff; line-height: 1.1; white-space: nowrap; }
.emblem-sub { font-size: 11px; letter-spacing: 4px; color: var(--gold-300); margin-top: 5px; }
.emblem-divider { display: flex; align-items: center; justify-content: center; gap: 14px; margin: 18px 0 12px; }
.emblem-divider .emblem-ic { width: 26px; height: 26px; fill: none; stroke: var(--gold-400); stroke-width: 1.5; stroke-linecap: round; stroke-linejoin: round; }
.emblem-dot { width: 5px; height: 5px; border-radius: 50%; background: var(--gold-500); flex: none; }
.emblem-tag { font-size: 11px; letter-spacing: 3px; color: rgba(255,255,255,0.72); }

@media (max-width: 600px) {
  .section { padding: 68px 0; }
  .hero { padding: 64px 0 72px; }
  .statband-inner { grid-template-columns: 1fr 1fr; }
  .stat:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.08); }
  .stat:nth-child(odd) { border-left: 0; }
  .services, .testimonials { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; gap: 32px; }
  .utility-right { gap: 14px; }
  .media-badge { left: 50%; transform: translateX(-50%); bottom: -22px; }
  .cta-inner { padding: 48px 0; }
}
