:root {
  --navy: #062f45;
  --navy-2: #0b4058;
  --teal: #18a9aa;
  --teal-deep: #0b8d91;
  --ink: #0d1e27;
  --muted: #637079;
  --paper: #f7f6f2;
  --paper-2: #eeeee9;
  --white: #ffffff;
  --line: rgba(6,47,69,.14);
  --shadow: 0 24px 70px rgba(6,47,69,.12);
  --serif: Georgia, 'Times New Roman', serif;
  --sans: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --radius: 22px;
  --shell: min(1180px, calc(100% - 48px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--sans);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button, input, textarea { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.section { padding: 120px 0; }

.skip-link {
  position: fixed; left: 16px; top: 12px; z-index: 999;
  transform: translateY(-150%); background: var(--navy); color: white;
  padding: 10px 14px; border-radius: 8px;
}
.skip-link:focus { transform: translateY(0); }

.site-header {
  position: fixed; z-index: 100; inset: 0 0 auto 0;
  border-bottom: 1px solid transparent;
  transition: background .3s ease, border-color .3s ease, box-shadow .3s ease;
}
.site-header.scrolled {
  background: rgba(247,246,242,.9);
  border-color: var(--line);
  box-shadow: 0 8px 30px rgba(6,47,69,.06);
  backdrop-filter: blur(18px);
}
.header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 28px; }
.brand { display: inline-flex; align-items: center; width: 146px; }
.brand img { width: 100%; height: auto; }
.primary-nav { display: flex; align-items: center; gap: 30px; font-size: 14px; font-weight: 600; color: #263b46; }
.primary-nav a { position: relative; }
.primary-nav > a:not(.nav-cta)::after {
  content: ''; position: absolute; height: 1px; left: 0; right: 100%; bottom: -7px; background: var(--teal); transition: right .25s ease;
}
.primary-nav > a:hover::after { right: 0; }
.nav-cta { color: white; background: var(--navy); padding: 12px 18px; border-radius: 999px; transition: transform .2s ease, background .2s ease; }
.nav-cta:hover { background: var(--teal-deep); transform: translateY(-1px); }
.menu-toggle { display: none; border: 0; background: transparent; width: 42px; height: 42px; padding: 9px; cursor: pointer; }
.menu-toggle span { display: block; height: 2px; background: var(--navy); margin: 5px 0; }

.hero {
  min-height: 860px;
  position: relative;
  overflow: hidden;
  padding: 170px 0 110px;
  background:
    radial-gradient(circle at 80% 20%, rgba(24,169,170,.12), transparent 26%),
    linear-gradient(180deg, #fbfaf7 0%, var(--paper) 78%);
}
.hero-grid { display: grid; grid-template-columns: 1.08fr .92fr; gap: 70px; align-items: center; min-height: 560px; }
.eyebrow { margin: 0 0 18px; color: var(--teal-deep); font-size: 12px; font-weight: 800; letter-spacing: .18em; text-transform: uppercase; }
.hero h1, .section-heading h2, .about-copy h2, .contact-copy h2 {
  font-family: var(--serif); font-weight: 400; letter-spacing: -.045em; line-height: .98;
}
.hero h1 { font-size: clamp(58px, 6.3vw, 94px); max-width: 760px; margin: 0; color: var(--navy); }
.hero h1 em { font-weight: 400; color: var(--teal-deep); }
.hero-lead { margin: 30px 0 0; max-width: 660px; font-size: 19px; line-height: 1.72; color: #53636b; }
.hero-actions { display: flex; gap: 28px; align-items: center; margin-top: 36px; flex-wrap: wrap; }
.button { display: inline-flex; align-items: center; justify-content: center; min-height: 52px; padding: 0 24px; border-radius: 999px; font-size: 14px; font-weight: 750; transition: transform .22s ease, box-shadow .22s ease, background .22s ease; }
.button-primary { color: white; background: var(--navy); box-shadow: 0 12px 32px rgba(6,47,69,.18); }
.button-primary:hover { background: var(--teal-deep); transform: translateY(-2px); box-shadow: 0 16px 40px rgba(6,47,69,.22); }
.button-text { padding-inline: 0; min-height: 42px; color: var(--navy); border-radius: 0; }
.button-text span { margin-left: 8px; transition: transform .2s ease; }
.button-text:hover span { transform: translate(3px,-3px); }
.hero-proof { display: flex; gap: 12px 24px; flex-wrap: wrap; margin-top: 46px; padding-top: 24px; border-top: 1px solid var(--line); color: #66747c; font-size: 12px; text-transform: uppercase; letter-spacing: .08em; }

.hero-art { position: relative; min-height: 520px; display: grid; place-items: center; }
.hero-card-main {
  position: relative; z-index: 3; width: min(430px, 92%); padding: 32px;
  background: rgba(255,255,255,.86); border: 1px solid rgba(6,47,69,.12);
  border-radius: 28px; box-shadow: var(--shadow); backdrop-filter: blur(12px); transform: rotate(-2.2deg);
}
.mini-label { margin: 0 0 42px; font-size: 10px; font-weight: 800; color: var(--teal-deep); letter-spacing: .2em; }
.hero-card-kicker { font-family: var(--serif); font-size: 30px; color: var(--navy); line-height: 1.05; max-width: 290px; margin: 0 0 34px; }
.hero-card-lines { border-top: 1px solid var(--line); }
.hero-card-lines > div { display: grid; grid-template-columns: 36px 90px 1fr; align-items: baseline; gap: 12px; padding: 17px 0; border-bottom: 1px solid var(--line); }
.hero-card-lines span { color: var(--teal-deep); font-size: 11px; font-weight: 800; }
.hero-card-lines strong { color: var(--navy); font-size: 14px; }
.hero-card-lines small { color: #6b777d; font-size: 12px; }
.orbit { position: absolute; border-radius: 50%; border: 1px solid rgba(24,169,170,.22); }
.orbit-one { width: 510px; height: 510px; transform: rotate(18deg); }
.orbit-two { width: 380px; height: 380px; border-color: rgba(6,47,69,.14); }
.orbit-one::before, .orbit-two::before { content: ''; position: absolute; width: 14px; height: 14px; background: var(--teal); border-radius: 50%; top: 46px; right: 62px; box-shadow: 0 0 0 9px rgba(24,169,170,.08); }
.floating-note { position: absolute; z-index: 5; padding: 10px 14px; background: var(--navy); color: white; font-size: 11px; letter-spacing: .04em; border-radius: 999px; box-shadow: 0 12px 26px rgba(6,47,69,.16); }
.note-one { left: 2%; top: 16%; }
.note-two { right: 0; bottom: 16%; background: var(--teal-deep); }
.hero-wash { position: absolute; border-radius: 50%; filter: blur(2px); opacity: .55; pointer-events: none; }
.hero-wash-one { width: 480px; height: 480px; right: -180px; top: 130px; background: radial-gradient(circle, rgba(24,169,170,.25), rgba(24,169,170,0) 68%); }
.hero-wash-two { width: 420px; height: 420px; left: -180px; bottom: -100px; background: radial-gradient(circle, rgba(6,47,69,.11), rgba(6,47,69,0) 68%); }
.hero-ribbon { position: absolute; height: 100px; inset: auto 0 0; overflow: hidden; }
.hero-ribbon span { display: block; position: absolute; width: 120%; height: 110px; left: -10%; top: 40px; border-top: 1px solid rgba(24,169,170,.32); border-radius: 50% 50% 0 0; transform: rotate(-2deg); }

.section-heading { max-width: 760px; }
.section-heading h2, .about-copy h2, .contact-copy h2 { margin: 0; color: var(--navy); font-size: clamp(44px, 5.2vw, 72px); }
.heading-copy, .section-heading > p:last-child { color: var(--muted); font-size: 17px; max-width: 680px; margin-top: 25px; }
.split-heading { max-width: none; display: grid; grid-template-columns: 1fr .85fr; gap: 80px; align-items: end; margin-bottom: 64px; }
.split-heading > p { margin: 0 0 10px; }

.service-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
.service-card { min-height: 470px; padding: 34px; border: 1px solid var(--line); border-radius: var(--radius); background: rgba(255,255,255,.5); transition: transform .25s ease, box-shadow .25s ease, background .25s ease; }
.service-card:hover { transform: translateY(-5px); background: white; box-shadow: 0 22px 50px rgba(6,47,69,.08); }
.service-number { display: inline-grid; place-items: center; width: 44px; height: 44px; border: 1px solid var(--line); border-radius: 50%; color: var(--teal-deep); font-size: 12px; font-weight: 800; }
.service-card h3 { margin: 72px 0 16px; font-family: var(--serif); font-size: 31px; font-weight: 400; color: var(--navy); }
.service-card p { color: var(--muted); }
.service-card ul { list-style: none; padding: 20px 0 0; margin: 28px 0 0; border-top: 1px solid var(--line); }
.service-card li { padding: 7px 0; font-size: 13px; font-weight: 650; color: #42525a; }
.service-card li::before { content: '—'; color: var(--teal); margin-right: 9px; }

.products { background: var(--navy); color: white; }
.products .eyebrow { color: #65d5d2; }
.products .section-heading h2 { color: white; }
.products .heading-copy { color: rgba(255,255,255,.62); }
.product-stack { margin-top: 70px; border-top: 1px solid rgba(255,255,255,.15); }
.product-row { display: grid; grid-template-columns: 90px 1fr auto; gap: 26px; align-items: center; padding: 34px 0; border-bottom: 1px solid rgba(255,255,255,.15); transition: padding .25s ease, background .25s ease; }
.product-row:hover { padding-left: 12px; padding-right: 12px; background: rgba(255,255,255,.035); }
.product-index { color: #65d5d2; font-family: var(--serif); font-size: 20px; }
.product-type { margin: 0 0 8px; color: #70d6d4; font-size: 10px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.product-copy h3 { margin: 0 0 9px; font-family: var(--serif); font-size: 34px; font-weight: 400; letter-spacing: -.02em; }
.product-copy p:last-child { margin: 0; color: rgba(255,255,255,.62); max-width: 700px; }
.product-link { padding: 11px 0 11px 22px; color: white; font-size: 13px; font-weight: 750; white-space: nowrap; }
.product-link span { margin-left: 7px; color: #65d5d2; }

.statement { padding: 150px 0; background: #f2f1eb; }
.statement-inner { text-align: center; max-width: 930px; }
.statement blockquote { margin: 22px auto 28px; color: var(--navy); font-family: var(--serif); font-size: clamp(48px, 6vw, 80px); letter-spacing: -.045em; line-height: 1.02; }
.statement-inner > p:last-child { color: var(--muted); max-width: 670px; margin: 0 auto; font-size: 17px; }

.approach-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: 100px; align-items: start; }
.sticky-heading { position: sticky; top: 130px; }
.sticky-heading h2 { font-size: clamp(44px, 4.5vw, 66px); }
.steps { border-top: 1px solid var(--line); }
.step { display: grid; grid-template-columns: 72px 1fr; gap: 26px; padding: 36px 0; border-bottom: 1px solid var(--line); }
.step > span { font-family: var(--serif); color: var(--teal-deep); font-size: 20px; }
.step h3 { margin: 0 0 8px; color: var(--navy); font-family: var(--serif); font-size: 32px; font-weight: 400; }
.step p { margin: 0; color: var(--muted); }

.about { background: #ecece6; }
.about-grid { display: grid; grid-template-columns: .9fr 1.1fr; gap: 90px; align-items: center; }
.about-visual { min-height: 540px; position: relative; display: grid; place-items: center; overflow: hidden; border-radius: 30px; background: linear-gradient(145deg, #062f45, #0a4658); box-shadow: var(--shadow); }
.monogram { color: white; font-family: var(--serif); font-size: 240px; line-height: 1; opacity: .95; transform: translateY(-6px); }
.arc { position: absolute; display: block; border-radius: 50%; border: 2px solid rgba(101,213,210,.56); }
.arc-a { width: 470px; height: 230px; top: 65px; left: 80px; border-left-color: transparent; border-bottom-color: transparent; transform: rotate(-9deg); }
.arc-b { width: 330px; height: 160px; bottom: 55px; right: -60px; border-color: rgba(255,255,255,.18); }
.about-copy h2 { max-width: 650px; }
.about-copy > p:not(.eyebrow) { color: var(--muted); font-size: 17px; }
.about-facts { display: grid; grid-template-columns: repeat(3,1fr); gap: 12px; margin-top: 36px; padding-top: 28px; border-top: 1px solid rgba(6,47,69,.13); }
.about-facts strong { display: block; color: var(--navy); font-family: var(--serif); font-size: 36px; font-weight: 400; }
.about-facts span { color: #6f7b80; font-size: 11px; text-transform: uppercase; letter-spacing: .08em; }

.contact { background: var(--paper); }
.contact-card { display: grid; grid-template-columns: 1.25fr .75fr; gap: 80px; align-items: end; padding: 72px; border-radius: 30px; background: linear-gradient(135deg, var(--teal-deep), var(--navy)); color: white; position: relative; overflow: hidden; box-shadow: var(--shadow); }
.contact-card::after { content: ''; position: absolute; width: 520px; height: 520px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; right: -230px; top: -240px; }
.contact-copy .eyebrow { color: #9be4e1; }
.contact-copy h2 { color: white; max-width: 760px; }
.contact-copy > p:last-child { color: rgba(255,255,255,.7); max-width: 630px; font-size: 17px; }
.contact-actions { position: relative; z-index: 2; display: flex; flex-direction: column; align-items: flex-start; gap: 18px; }
.button-light { background: white; color: var(--navy); }
.button-light:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.13); }
.contact-phone { color: rgba(255,255,255,.85); font-size: 14px; font-weight: 700; }

.site-footer { padding: 70px 0 26px; background: #081d29; color: rgba(255,255,255,.7); }
.footer-grid { display: grid; grid-template-columns: 1fr auto; gap: 100px; padding-bottom: 60px; }
.footer-brand img { width: 150px; filter: brightness(0) invert(1); opacity: .95; }
.footer-brand p { max-width: 390px; margin-top: 20px; font-size: 14px; }
.footer-links { display: grid; grid-template-columns: repeat(2, 150px); gap: 50px; }
.footer-links > div { display: flex; flex-direction: column; gap: 10px; }
.footer-label { color: white; font-size: 10px; font-weight: 800; text-transform: uppercase; letter-spacing: .16em; margin: 0 0 7px; }
.footer-links a { font-size: 13px; }
.footer-links a:hover, .footer-bottom a:hover { color: white; }
.footer-bottom { display: flex; justify-content: space-between; gap: 30px; padding-top: 24px; border-top: 1px solid rgba(255,255,255,.12); font-size: 11px; }
.footer-bottom p { margin: 0; }

.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 980px) {
  :root { --shell: min(100% - 34px, 880px); }
  .section { padding: 92px 0; }
  .menu-toggle { display: block; position: relative; z-index: 102; }
  .primary-nav { position: fixed; inset: 0; background: rgba(247,246,242,.98); padding: 130px 28px 40px; display: flex; flex-direction: column; align-items: flex-start; gap: 26px; transform: translateX(100%); transition: transform .3s ease; font-size: 19px; }
  .primary-nav.open { transform: translateX(0); }
  .nav-cta { margin-top: 14px; }
  .hero { padding-top: 140px; min-height: auto; }
  .hero-grid { grid-template-columns: 1fr; gap: 40px; }
  .hero-copy { max-width: 760px; }
  .hero-art { min-height: 470px; }
  .split-heading, .approach-grid, .about-grid, .contact-card { grid-template-columns: 1fr; gap: 48px; }
  .service-grid { grid-template-columns: 1fr; }
  .service-card { min-height: auto; }
  .service-card h3 { margin-top: 40px; }
  .sticky-heading { position: static; }
  .product-row { grid-template-columns: 55px 1fr; }
  .product-link { grid-column: 2; padding-left: 0; }
  .contact-card { padding: 50px; }
  .footer-grid { gap: 50px; }
}

@media (max-width: 640px) {
  :root { --shell: calc(100% - 28px); }
  .section { padding: 74px 0; }
  .header-inner { min-height: 76px; }
  .brand { width: 126px; }
  .hero { padding: 118px 0 78px; }
  .hero h1 { font-size: clamp(46px, 14vw, 66px); }
  .hero-lead { font-size: 17px; }
  .hero-art { min-height: 400px; }
  .hero-card-main { padding: 24px; width: 96%; }
  .hero-card-kicker { font-size: 26px; }
  .hero-card-lines > div { grid-template-columns: 30px 74px 1fr; gap: 8px; }
  .orbit-one { width: 400px; height: 400px; }
  .orbit-two { width: 290px; height: 290px; }
  .note-one { left: -2%; top: 5%; }
  .note-two { right: -3%; bottom: 7%; }
  .split-heading { gap: 26px; margin-bottom: 38px; }
  .section-heading h2, .about-copy h2, .contact-copy h2 { font-size: 44px; }
  .service-card { padding: 28px; }
  .product-row { grid-template-columns: 1fr; gap: 10px; padding: 26px 0; }
  .product-index { margin-bottom: 4px; }
  .product-link { grid-column: 1; }
  .statement { padding: 96px 0; }
  .statement blockquote { font-size: 46px; }
  .step { grid-template-columns: 45px 1fr; gap: 15px; }
  .about-visual { min-height: 400px; }
  .monogram { font-size: 180px; }
  .about-facts { grid-template-columns: 1fr 1fr 1fr; }
  .contact-card { padding: 34px 26px; border-radius: 24px; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-links { grid-template-columns: 1fr 1fr; gap: 24px; }
  .footer-bottom { flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
  .reveal { opacity: 1; transform: none; }
}

/* Privacy and cookie consent */
.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  z-index: 9999;
  background: #ffffff;
  border: 1px solid rgba(0, 36, 55, 0.14);
  border-radius: 16px;
  box-shadow: 0 18px 50px rgba(0, 36, 55, 0.18);
  padding: 22px;
}
.cookie-banner[hidden] { display: none; }
.cookie-banner-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
}
.cookie-banner strong { color: #062f45; font-size: 1.05rem; }
.cookie-banner p { margin: 6px 0 4px; color: #53636c; line-height: 1.5; }
.cookie-banner a { color: #0b7f86; text-decoration: underline; font-size: 13px; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
.cookie-primary, .cookie-secondary {
  padding: 11px 18px;
  border-radius: 8px;
  cursor: pointer;
  font: inherit;
  font-weight: 700;
}
.cookie-primary { border: 1px solid #0b7f86; background: #0b7f86; color: white; }
.cookie-secondary { border: 1px solid #ccd6da; background: white; color: #062f45; }
.footer-cookie-button { background: none; border: 0; padding: 0; color: inherit; font: inherit; cursor: pointer; }
.footer-cookie-button:hover { color: white; }

.legal-hero { padding: 150px 0 70px; background: linear-gradient(145deg, #f7f6f2, #eef4f2); }
.legal-hero h1 { max-width: 900px; margin: 12px 0 20px; color: #062f45; font-family: var(--serif); font-size: clamp(48px, 6vw, 78px); font-weight: 400; letter-spacing: -.04em; line-height: 1.02; }
.legal-hero p { max-width: 760px; color: #5d6a70; font-size: 17px; }
.legal-wrap { padding: 70px 0 110px; background: var(--paper); }
.legal-grid { display: grid; grid-template-columns: 240px minmax(0, 760px); gap: 70px; align-items: start; }
.legal-nav { position: sticky; top: 120px; display: flex; flex-direction: column; gap: 10px; padding: 20px 0; border-top: 1px solid var(--line); }
.legal-nav a { color: #66747b; font-size: 13px; }
.legal-nav a:hover { color: #062f45; }
.legal-copy section { padding: 0 0 42px; margin-bottom: 42px; border-bottom: 1px solid var(--line); }
.legal-copy h2 { margin: 0 0 16px; color: #062f45; font-family: var(--serif); font-size: 34px; font-weight: 400; }
.legal-copy h3 { margin: 26px 0 10px; color: #062f45; font-size: 18px; }
.legal-copy p, .legal-copy li { color: #53636c; line-height: 1.75; }
.legal-copy ul { padding-left: 20px; }
.legal-meta { color: #6c787d; font-size: 13px; }

@media (max-width: 820px) {
  .cookie-banner { left: 12px; right: 12px; bottom: 12px; }
  .cookie-banner-inner { display: block; }
  .cookie-actions { margin-top: 18px; flex-direction: column; }
  .cookie-actions button { width: 100%; }
  .legal-grid { grid-template-columns: 1fr; gap: 30px; }
  .legal-nav { position: static; flex-direction: row; flex-wrap: wrap; }
}
