:root {
  --ink: #173244;
  --muted: #607685;
  --navy: #0c4262;
  --blue: #116b8e;
  --sky: #e8f5f5;
  --cream: #fffaf1;
  --orange: #f3a33b;
  --orange-dark: #c77316;
  --line: #d7e5e6;
  --white: #fff;
  --shadow: 0 18px 50px rgba(12, 66, 98, .12);
  --radius: 22px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; color: var(--ink); background: var(--cream); font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif; font-size: 1rem; line-height: 1.65; }
img, video { max-width: 100%; display: block; }
a { color: var(--blue); text-underline-offset: .18em; }
a:hover { color: var(--orange-dark); }
.container { width: min(1160px, calc(100% - 3rem)); margin-inline: auto; }
.visually-hidden { position: absolute; width: 1px; height: 1px; padding: 0; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.skip-link { position: fixed; z-index: 20; left: 1rem; top: -4rem; background: var(--orange); color: var(--ink); padding: .75rem 1rem; border-radius: 8px; font-weight: 700; }
.skip-link:focus { top: 1rem; }
.site-header { position: sticky; z-index: 10; top: 0; background: rgba(255,250,241,.96); border-bottom: 1px solid rgba(215,229,230,.9); backdrop-filter: blur(12px); }
.header-inner { min-height: 86px; display: flex; align-items: center; justify-content: space-between; gap: 2rem; }
.brand { display: inline-flex; align-items: center; }
.brand img { width: 164px; height: auto; object-fit: contain; }
.site-nav { display: flex; align-items: center; gap: .2rem; }
.site-nav a { color: var(--ink); text-decoration: none; font-weight: 700; padding: .7rem .9rem; border-radius: 10px; }
.site-nav a:hover, .site-nav a.is-active { color: var(--navy); background: var(--sky); }
.menu-toggle { display: none; border: 0; background: transparent; padding: .65rem; color: var(--navy); }
.menu-icon { display: grid; gap: 4px; }
.menu-icon i { display: block; width: 25px; height: 2px; background: currentColor; border-radius: 4px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: .45rem; min-height: 48px; padding: .7rem 1.1rem; border: 2px solid var(--orange); border-radius: 999px; background: var(--orange); color: var(--ink); font-weight: 800; line-height: 1.2; text-decoration: none; cursor: pointer; box-shadow: 0 8px 20px rgba(243,163,59,.2); }
.button:hover { background: #ffc46d; color: var(--ink); transform: translateY(-1px); }
.button-secondary { background: transparent; border-color: var(--white); color: var(--white); box-shadow: none; }
.button-secondary:hover { background: var(--white); color: var(--navy); }
.button-small { min-height: 40px; padding: .5rem .9rem; font-size: .9rem; }
.button-quiet { background: transparent; border-color: rgba(255,255,255,.6); color: var(--white); box-shadow: none; }
.button-quiet:hover { background: rgba(255,255,255,.14); color: var(--white); }
.eyebrow { margin: 0 0 .6rem; color: var(--orange-dark); font-size: .82rem; font-weight: 900; letter-spacing: .12em; text-transform: uppercase; }
h1, h2, h3 { margin: 0 0 1rem; color: var(--navy); font-family: Georgia, "Times New Roman", serif; font-weight: 500; letter-spacing: -.025em; line-height: 1.08; }
h1 { font-size: clamp(2.6rem, 6vw, 5.4rem); }
h2 { font-size: clamp(2rem, 4vw, 3.4rem); }
h3 { font-size: clamp(1.35rem, 2vw, 1.7rem); }
p { margin: 0 0 1rem; }
.lead { max-width: 700px; font-size: clamp(1.1rem, 1.5vw, 1.3rem); color: var(--muted); }
.hero { position: relative; min-height: min(760px, calc(100vh - 86px)); display: grid; align-items: center; overflow: hidden; background: var(--navy); color: var(--white); }
.hero video, .hero-fallback { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; }
.hero video { opacity: .9; }
.hero-fallback { background: linear-gradient(100deg, rgba(12,66,98,.96) 0%, rgba(12,66,98,.7) 49%, rgba(12,66,98,.23) 100%), url('hero-poster.jpg') center/cover; }
.hero::after { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(4,27,39,.84), rgba(12,66,98,.3) 62%, rgba(12,66,98,.05)); }
.hero-content { position: relative; z-index: 1; padding-block: 7rem 6rem; }
.hero h1, .hero p { color: var(--white); }
.hero h1 { max-width: 770px; }
.hero .lead { color: rgba(255,255,255,.9); max-width: 630px; }
.hero-actions { display: flex; flex-wrap: wrap; gap: .8rem; margin-top: 1.7rem; }
.hero-note { display: flex; align-items: center; gap: .7rem; margin-top: 2rem; color: rgba(255,255,255,.86); font-size: .95rem; }
.hero-note::before { content: ""; width: 10px; height: 10px; flex: 0 0 auto; border-radius: 50%; background: var(--orange); box-shadow: 0 0 0 6px rgba(243,163,59,.2); }
.section { padding: 6.5rem 0; }
.section-tight { padding: 4.2rem 0; }
.section-blue { background: var(--sky); }
.section-navy { background: var(--navy); color: var(--white); }
.section-navy h2, .section-navy h3, .section-navy p { color: var(--white); }
.split { display: grid; grid-template-columns: minmax(0, 1.05fr) minmax(0, .95fr); gap: clamp(2.5rem, 7vw, 6rem); align-items: center; }
.split.reverse > :first-child { order: 2; }
.image-card { position: relative; overflow: hidden; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.image-card img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.image-card.story-image { width: min(100%, 430px); justify-self: center; padding: 1.5rem; background: var(--white); }
.image-card.story-image::after { display: none; }
.image-card.story-image img { width: auto; max-width: 100%; height: auto; max-height: 430px; margin-inline: auto; aspect-ratio: auto; object-fit: contain; }
.image-card.logo-image img { aspect-ratio: 1 / 1; object-fit: contain; padding: 2rem; }
.image-card::after { content: ""; position: absolute; left: 1.3rem; bottom: 1.3rem; width: 60px; height: 6px; border-radius: 5px; background: var(--orange); }
.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2rem; }
.card { padding: 1.7rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); box-shadow: 0 10px 30px rgba(12,66,98,.06); }
.card p:last-child { margin-bottom: 0; }
.card-icon { display: grid; place-items: center; width: 52px; height: 52px; margin-bottom: 1rem; border-radius: 16px; background: var(--orange); color: var(--navy); font-size: 1.35rem; font-weight: 900; }
.card-icon svg { width: 27px; height: 27px; }
.section-heading { max-width: 720px; }
.quote { padding: 2rem; border-left: 5px solid var(--orange); background: rgba(255,255,255,.72); font-family: Georgia, serif; font-size: clamp(1.35rem, 2.3vw, 2rem); line-height: 1.25; }
.quote cite { display: block; margin-top: 1rem; color: var(--muted); font-family: system-ui, sans-serif; font-size: .85rem; font-style: normal; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.page-hero { padding: 5.2rem 0 4.4rem; background: var(--sky); }
.page-hero .lead { max-width: 720px; }
.resource-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; margin-top: 2.3rem; }
.resource-card { display: flex; flex-direction: column; min-height: 280px; padding: 1.8rem; border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.resource-card .resource-link { margin-top: auto; padding-top: 1.2rem; }
.resource-link a { font-weight: 800; }
.product-list { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.4rem; margin-top: 2rem; }
.product-card { padding: 2rem; border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.product-image { display: grid; place-items: center; min-height: 250px; margin: -2rem -2rem 1.7rem; padding: 1rem; border-radius: var(--radius) var(--radius) 0 0; background: #f4f8f7; }
.product-image img { width: 100%; height: 270px; object-fit: contain; border-radius: 12px; }
.product-card .card-icon { background: var(--sky); }
.notice { padding: 1rem 1.2rem; border-left: 4px solid var(--orange); background: #fff4df; color: var(--ink); }
.contact-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: 2rem; align-items: start; }
.contact-panel, .form-panel { padding: clamp(1.5rem, 4vw, 2.4rem); border-radius: var(--radius); background: var(--white); box-shadow: var(--shadow); }
.contact-panel { background: var(--navy); color: var(--white); }
.contact-panel h2, .contact-panel h3, .contact-panel p { color: var(--white); }
.contact-panel a { color: var(--orange); }
label { display: block; margin-bottom: .4rem; color: var(--ink); font-weight: 800; }
input, textarea { width: 100%; padding: .85rem 1rem; border: 1px solid #b7cccf; border-radius: 12px; background: #fff; color: var(--ink); font: inherit; }
input:focus, textarea:focus, button:focus-visible, a:focus-visible { outline: 3px solid #6ac6d5; outline-offset: 3px; }
.field { margin-bottom: 1.1rem; }
textarea { min-height: 150px; resize: vertical; }
.form-note { color: var(--muted); font-size: .9rem; }
.form-status { margin-bottom: 1rem; padding: 1rem; border-radius: 12px; background: var(--sky); }
.site-footer { padding: 4rem 0 1.5rem; background: #072f48; color: rgba(255,255,255,.82); }
.footer-grid { display: grid; grid-template-columns: 1.4fr 1fr 1fr; gap: 2rem; padding-bottom: 3rem; }
.site-footer a { display: block; width: fit-content; margin: .3rem 0; color: rgba(255,255,255,.84); text-decoration: none; }
.site-footer a:hover { color: var(--orange); }
.footer-brand { color: var(--orange) !important; font-family: Georgia, serif; font-size: 2.3rem; line-height: 1; }
.footer-title { margin-bottom: .8rem; color: var(--orange); font-weight: 900; letter-spacing: .08em; text-transform: uppercase; font-size: .8rem; }
.footer-bottom { display: flex; flex-wrap: wrap; justify-content: space-between; gap: .7rem 1.5rem; padding-top: 1.2rem; border-top: 1px solid rgba(255,255,255,.15); font-size: .82rem; }
.footer-bottom span:last-child { margin-left: auto; }
.footer-gw-link { display: inline-flex !important; vertical-align: middle; margin: 0 !important; }
.footer-gw-link img { width: 120px; height: 26px; object-fit: contain; }
.instagram-embed-wrap { min-width: 0; width: 100%; min-height: 220px; }
.instagram-embed-wrap .elfsight-app-fbbdab07-acf1-42e9-80b7-b880dda8cf3a { min-height: 220px; }
.cookie-banner { position: fixed; z-index: 30; right: 1rem; bottom: 1rem; display: flex; align-items: center; gap: 1.4rem; max-width: 680px; padding: 1rem 1.2rem; border: 1px solid rgba(255,255,255,.2); border-radius: 16px; background: rgba(7,47,72,.97); color: var(--white); box-shadow: var(--shadow); }
.cookie-banner[hidden] { display: none; }
.cookie-banner p { margin: 0; font-size: .9rem; }
.cookie-actions { display: flex; flex: 0 0 auto; gap: .5rem; }
@media (max-width: 840px) {
  .container { width: min(100% - 2rem, 680px); }
  .menu-toggle { display: block; }
  .site-nav { position: absolute; top: 100%; left: 0; right: 0; display: none; flex-direction: column; align-items: stretch; padding: .7rem 1rem 1rem; background: var(--cream); border-bottom: 1px solid var(--line); box-shadow: 0 14px 22px rgba(12,66,98,.08); }
  .site-nav.is-open { display: flex; }
  .site-nav a { padding: .85rem 1rem; }
  .split, .contact-layout { grid-template-columns: 1fr; }
  .split.reverse > :first-child { order: initial; }
  .cards, .resource-grid { grid-template-columns: 1fr; }
  .product-list { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}
@media (max-width: 560px) {
  .header-inner { min-height: 75px; }
  .brand img { width: 136px; }
  .hero { min-height: 650px; }
  .hero-content { padding-block: 5rem 4rem; }
  .hero-actions, .hero-actions .button { width: 100%; }
  .section { padding: 4.6rem 0; }
  .footer-grid { grid-template-columns: 1fr; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { display: block; }
  .footer-bottom span { display: block; margin-top: .5rem; }
  .footer-bottom span:last-child { margin-left: 0; }
  .cookie-banner { right: .6rem; bottom: .6rem; left: .6rem; display: block; }
  .cookie-actions { margin-top: .8rem; }
}
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { animation-duration: .01ms !important; transition-duration: .01ms !important; } .hero video { display: none; } }
