:root {
  --color-primary: #0b2340;
  --color-primary-deep: #07182c;
  --color-surface: #fff8f2;
  --color-surface-tint: #f1e9df;
  --color-white: #ffffff;
  --color-text: #111a20;
  --color-muted: #4d5a63;
  --color-accent: #c69a4d;
  --color-accent-dark: #8b6425;
  --color-border: #c8bfae;
  --font-family-body: Inter, system-ui, -apple-system, "Segoe UI", Arial, sans-serif;
  --font-family-heading: Georgia, "Times New Roman", serif;
  --font-size-base: 0.95rem;
  --font-size-2xl: clamp(1.45rem, 1.3rem + 0.7vw, 1.75rem);
  --font-size-3xl: clamp(1.75rem, 1.55rem + 0.9vw, 2.2rem);
  --font-size-4xl: clamp(2.15rem, 1.7rem + 1.3vw, 3rem);
  --radius-sm: 0.35rem;
  --radius-md: 0.75rem;
  --radius-lg: 1.25rem;
  --shadow-sm: 0 10px 30px rgba(11,35,64,.10);
  --shadow-lg: 0 28px 70px rgba(7,24,44,.20);
  --container: 72rem;
  --header-height: 5.25rem;
}
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; background: var(--color-surface); }
body { margin: 0; color: var(--color-text); background: var(--color-surface); font-family: var(--font-family-body); font-size: var(--font-size-base); line-height: 1.65; overflow-x: hidden; }
body, button, input, select, textarea { font-family: var(--font-family-body); }
img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button, input, select, textarea { font-size: 1rem; }
button { cursor: pointer; }
h1, h2, h3, p { margin-top: 0; }
h1, h2, h3 { font-family: var(--font-family-heading); line-height: 1.18; }
p { margin-bottom: 1rem; }
section { scroll-margin-top: calc(var(--header-height) + 1rem); }
[hidden] { display: none !important; }
.container { width: min(100% - 2.5rem, var(--container)); margin-left: auto; margin-right: auto; }
.skip-link { position: fixed; top: -5rem; left: 1rem; z-index: 5000; padding: .75rem 1rem; color: var(--color-white); background: var(--color-primary); border-radius: 0 0 var(--radius-sm) var(--radius-sm); }
.skip-link:focus { top: 0; }
:focus-visible { outline: 3px solid var(--color-accent); outline-offset: 3px; }
.hero-title { margin-bottom: 1.25rem; font-size: var(--font-size-4xl); font-weight: 600; letter-spacing: -.02em; }
.section-title { margin-bottom: 1.25rem; font-size: var(--font-size-3xl); font-weight: 600; letter-spacing: -.015em; }
.eyebrow { margin-bottom: .75rem; color: var(--color-accent-dark); font-size: .78rem; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
.section--navy .eyebrow, .cta-section .eyebrow, .page-hero .eyebrow, .hero .eyebrow, .legal-hero .eyebrow { color: #e2ba70; }
.site-header { position: sticky; top: 0; z-index: 2000; width: 100%; color: var(--color-text); background: rgba(255,248,242,.96); border-bottom: 1px solid rgba(11,35,64,.12); backdrop-filter: blur(15px); }
.site-header__inner { min-height: var(--header-height); display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 1.2rem; }
.brand { display: inline-flex; align-items: center; gap: .65rem; font-family: var(--font-family-heading); font-size: 1.15rem; font-weight: 700; white-space: nowrap; }
.brand span span { color: var(--color-accent-dark); }
.brand__mark { width: 2rem; height: 2rem; fill: none; stroke: currentColor; stroke-width: 2; stroke-linecap: round; stroke-linejoin: round; }
.desktop-nav { display: flex; justify-content: center; align-items: center; gap: clamp(.8rem, 1.6vw, 1.5rem); }
.desktop-nav a { position: relative; font-size: .74rem; font-weight: 800; letter-spacing: .07em; text-transform: uppercase; white-space: nowrap; }
.desktop-nav a::after { content: ""; position: absolute; right: 0; bottom: -.35rem; left: 0; height: 2px; transform: scaleX(0); background: var(--color-accent); transition: transform .2s ease; }
.desktop-nav a:hover::after, .desktop-nav a:focus-visible::after { transform: scaleX(1); }
.menu-toggle { display: none; width: 2.75rem; height: 2.75rem; border: 0; padding: .65rem; background: transparent; }
.menu-toggle span { display: block; width: 100%; height: 2px; margin: 5px 0; background: currentColor; transition: transform .2s ease, opacity .2s ease; }
.menu-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.menu-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.menu-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-menu { position: fixed; top: var(--header-height); right: 0;  left: 0; z-index: 1999; overflow-y: auto; color: var(--color-white); background: rgba(7,24,44,.98); }
.mobile-menu__inner { width: min(100% - 2.5rem, 34rem); margin-left: auto; margin-right: auto; padding: 2rem 0 4rem; display: flex; flex-direction: column; gap: .5rem; }
.mobile-menu a:not(.btn) { padding: 1rem; font-family: var(--font-family-heading); font-size: 1.45rem; border-bottom: 1px solid rgba(255,255,255,.13); }
.mobile-menu .btn { margin-top: 1rem; }
.btn { min-height: 2.9rem; display: inline-flex; align-items: center; justify-content: center; padding: .7rem 1.25rem; border: 1px solid transparent; border-radius: var(--radius-sm); font-weight: 800; line-height: 1.2; transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease; }
.btn:hover { transform: translateY(-2px); }
.btn--gold { color: #151008; background: #d8ad60; border-color: #d8ad60; }
.btn--gold:hover { background: #ebc77f; border-color: #ebc77f; }
.btn--navy { color: var(--color-white); background: var(--color-primary); border-color: var(--color-primary); }
.btn--navy:hover { background: var(--color-primary-deep); }
.btn--ghost { color: var(--color-white); background: rgba(7,24,44,.35); border-color: rgba(255,255,255,.75); }
.btn--ghost:hover, .btn--outline-light:hover { color: var(--color-primary-deep); background: var(--color-white); }
.btn--outline-light { color: var(--color-white); background: transparent; border-color: rgba(255,255,255,.75); }
.hero, .page-hero { position: relative; min-height: calc(100svh - var(--header-height)); display: grid; align-items: end; color: var(--color-white); background: var(--color-primary); overflow: hidden; }
.page-hero { min-height: 68svh; }
.page-hero--compact { min-height: 56svh; }
.hero__media, .page-hero__media, .hero__overlay { position: absolute; inset: 0; }
.hero__media img, .page-hero__media img { width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero__overlay { background: linear-gradient(90deg, rgba(7,24,44,.88), rgba(7,24,44,.48) 60%, rgba(7,24,44,.24)); }
.hero__content, .page-hero__content { position: relative; z-index: 2; width: min(100% - 2.5rem, var(--container)); padding: clamp(5rem, 12vh, 8rem) 0; margin-left: auto; margin-right: auto; }
.hero__content .hero-title, .page-hero__content .hero-title { max-width: 46rem; }
.hero__content > p:not(.eyebrow), .page-hero__content > p:not(.eyebrow), .legal-hero__inner > p:not(.eyebrow) { max-width: 43rem; font-size: 1.1rem; color: rgba(255,255,255,.88); }
.button-row { display: flex; flex-wrap: wrap; gap: 1rem; margin-top: 1.75rem; }
.section { padding: clamp(4rem, 8vw, 7rem) 0; }
.section--tint { background: var(--color-surface-tint); }
.section--navy { color: var(--color-white); background: var(--color-primary); }
.split { display: grid; grid-template-columns: minmax(0, 1fr) minmax(0, 1fr); align-items: center; gap: clamp(2rem, 6vw, 5rem); }
.split--reverse > img { order: -1; }
.split > img { width: 100%; height: min(36rem, 62vw); object-fit: cover; border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.card-grid { display: grid; gap: 1.5rem; margin-top: 2.25rem; }
.card-grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.feature-card { min-width: 0; overflow: hidden; background: var(--color-white); border: 1px solid rgba(11,35,64,.12); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.feature-card > img { width: 100%; aspect-ratio: 4 / 3; object-fit: cover; }
.feature-card > div { padding: 1.4rem; }
.feature-card h3 { margin-bottom: .7rem; font-size: var(--font-size-2xl); }
.text-link { color: #67470f; font-weight: 800; border-bottom: 1px solid currentColor; }
.text-link:hover { color: var(--color-primary); }
.text-link--light { color: #f2c97e; }
.icon-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2.25rem; }
.icon-grid article { min-width: 0; padding: 1.4rem; border: 1px solid rgba(255,255,255,.18); border-radius: var(--radius-md); background: rgba(255,255,255,.06); }
.icon-grid article > span { display: inline-grid; place-items: center; min-width: 2.5rem; height: 2.5rem; margin-bottom: 1rem; padding: 0 .5rem; color: #151008; background: #d8ad60; border-radius: 999px; font-weight: 900; }
.icon-grid h3 { margin-bottom: .6rem; }
.icon-grid--light article { color: var(--color-text); background: var(--color-white); border-color: rgba(11,35,64,.14); box-shadow: var(--shadow-sm); }
.check-list, .mini-list { padding-left: 1.2rem; }
.check-list li, .mini-list li { margin-bottom: .65rem; }
.check-list--light { color: rgba(255,255,255,.88); }
.section-heading { display: flex; align-items: end; justify-content: space-between; gap: 1.5rem; }
.carousel { overflow: hidden; }
.carousel__track { display: flex; gap: 1.25rem; overflow-x: auto; scroll-snap-type: x mandatory; scrollbar-width: none; padding: .5rem 0 1.25rem; }
.carousel__track::-webkit-scrollbar { display: none; }
.carousel__slide { flex: 0 0 calc((100% - 2.5rem) / 3); scroll-snap-align: start; }
.quote-card { min-width: 0; margin: 0; padding: 1.5rem; border-radius: var(--radius-md); background: var(--color-white); box-shadow: var(--shadow-sm); border: 1px solid rgba(11,35,64,.12); }
.quote-card p { font-family: var(--font-family-heading); font-size: 1.2rem; }
.quote-card cite { color: var(--color-muted); font-style: normal; }
.carousel-controls { display: flex; gap: .75rem; margin-bottom: 1.25rem; }
.carousel-button { width: 3rem; height: 3rem; border: 1px solid var(--color-primary); color: var(--color-primary); background: transparent; border-radius: 999px; font-size: 1.2rem; }
.carousel-button:hover { color: var(--color-white); background: var(--color-primary); }
.cta-section { padding: clamp(4rem, 8vw, 7rem) 0; color: var(--color-white); text-align: center; background: linear-gradient(135deg, var(--color-primary-deep), var(--color-primary)); }
.cta-section .container { max-width: 50rem; }
.info-panel { display: flex; align-items: center; justify-content: space-between; gap: 2rem; padding-top: 2rem; padding-bottom: 2rem; border-top: 1px solid var(--color-border); border-bottom: 1px solid var(--color-border); }
.contact-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; margin-top: 2rem; }
.contact-grid article { padding: 1.5rem; background: var(--color-white); border: 1px solid rgba(11,35,64,.14); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); overflow-wrap: anywhere; }
.map-placeholder { min-height: 25rem; display: grid; place-content: center; text-align: center; color: var(--color-white); background: radial-gradient(circle at 30% 30%, rgba(198,154,77,.5), transparent 22%), linear-gradient(145deg, #213b58, #07182c); border-radius: var(--radius-lg); box-shadow: var(--shadow-lg); }
.map-placeholder span { font-family: var(--font-family-heading); font-size: 1.7rem; }
.map-placeholder small { color: rgba(255,255,255,.75); }
.form-layout { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(2rem, 5vw, 4rem); align-items: start; }
.contact-form { padding: 1.5rem; background: var(--color-white); border: 1px solid rgba(11,35,64,.14); border-radius: var(--radius-md); box-shadow: var(--shadow-sm); }
.form-grid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1rem; }
.contact-form label { display: grid; gap: .4rem; margin-bottom: 1rem; font-weight: 700; }
.contact-form input, .contact-form select, .contact-form textarea { width: 100%; padding: .8rem .9rem; color: var(--color-text); background: #fffdfb; border: 1px solid #87939b; border-radius: var(--radius-sm); }
.contact-form textarea { resize: vertical; }
.checkbox-row { grid-template-columns: auto 1fr !important; align-items: start; }
.checkbox-row input { width: 1.2rem; height: 1.2rem; margin-top: .2rem; }
.form-status { margin: .9rem 0 0; font-weight: 700; }
.faq { display: grid; gap: .75rem; max-width: 52rem; margin-top: 2rem; }
.faq details { padding: 1rem 1.2rem; background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.2); border-radius: var(--radius-sm); }
.faq summary { cursor: pointer; font-weight: 800; }
.faq details p { margin: .9rem 0 0; color: rgba(255,255,255,.82); }
.legal-hero { color: var(--color-white); background: linear-gradient(135deg, var(--color-primary-deep), var(--color-primary)); }
.legal-hero__inner { padding-top: clamp(4rem, 8vw, 7rem); padding-bottom: clamp(4rem, 8vw, 7rem); }
.legal-section { padding: clamp(3rem, 6vw, 5rem) 0; }
.legal-content { max-width: 58rem; }
.legal-content h2 { margin-top: 2.5rem; margin-bottom: .8rem; font-size: var(--font-size-2xl); }
.legal-content .section-title { font-size: var(--font-size-3xl); }
.legal-content a, .legal-content a:visited { color: #67470f; text-decoration: none; font-weight: 800; }
.legal-content a:hover, .legal-content a:focus, .legal-content a:active { color: var(--color-primary); text-decoration: none; }
.legal-company { margin-bottom: 3rem; padding: 1.5rem; color: var(--color-white); background: var(--color-primary); border-radius: var(--radius-md); }
.legal-company h2 { margin-top: 0; color: #e2ba70; }
.legal-company dl { margin-bottom: 0; }
.legal-company dl > div { display: grid; grid-template-columns: 13rem 1fr; gap: 1rem; padding: .65rem 0; border-top: 1px solid rgba(255,255,255,.14); }
.legal-company dt { font-weight: 800; }
.legal-company dd { margin: 0; overflow-wrap: anywhere; }
.not-found { min-height: 65vh; display: grid; place-items: center; text-align: center; color: var(--color-white); background: linear-gradient(135deg, var(--color-primary-deep), var(--color-primary)); }
.not-found .container { max-width: 42rem; padding-top: 4rem; padding-bottom: 4rem; }
.site-footer { width: 100%; color: var(--color-white); background: var(--color-primary-deep); }
.footer-grid { display: grid; grid-template-columns: 1.25fr .7fr 1.1fr 1fr; gap: 2rem; padding-top: 4rem; padding-bottom: 3rem; }
.site-footer .brand { color: var(--color-white); }
.footer-brand p { color: rgba(255,255,255,.72); max-width: 24rem; }
.site-footer h2 { color: #e2ba70; font-size: 1rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-links, .company-details { display: flex; flex-direction: column; gap: .55rem; }
.footer-links a, .legal-links a { color: rgba(255,255,255,.82); }
.footer-links a:hover, .legal-links a:hover { color: #f0c878; }
.company-details { color: rgba(255,255,255,.76); font-style: normal; overflow-wrap: anywhere; }
.age-notice { padding: 1.2rem; background: rgba(255,255,255,.06); border: 1px solid rgba(216,173,96,.32); border-radius: var(--radius-sm); }
.age-notice strong { color: #f0c878; }
.age-notice p { margin: .5rem 0 0; color: rgba(255,255,255,.76); }
.footer-bottom { display: flex; justify-content: space-between; gap: 1.5rem; padding-top: 1.5rem; padding-bottom: 1.5rem; border-top: 1px solid rgba(255,255,255,.13); color: rgba(255,255,255,.66); font-size: .86rem; }
.legal-links { display: flex; flex-wrap: wrap; gap: 1rem; }
.cookie-banner { position: fixed; right: 1rem; bottom: 1rem; left: 1rem; z-index: 4000; max-width: 58rem; margin-left: auto; margin-right: auto; padding: 1rem; color: var(--color-white); background: #07182c; border: 1px solid rgba(216,173,96,.55); border-radius: var(--radius-md); box-shadow: var(--shadow-lg); }
.cookie-banner p { margin: 0; }
.cookie-banner a { color: #f0c878; font-weight: 800; }
.cookie-banner > div { display: flex; flex-wrap: wrap; gap: .75rem; margin-top: .9rem; }
@media (max-width: 1100px) {
  .desktop-nav, .header-cta { display: none; }
  .site-header__inner { grid-template-columns: 1fr auto; }
  .menu-toggle { display: block; }
  .footer-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 767px) {
  :root { --header-height: 4.35rem; }
  .container { width: min(100% - 2rem, var(--container)); }
  .hero-section, .hero-title, .section-title { overflow-wrap: anywhere; word-break: break-word; white-space: normal; }
  .brand { font-size: 1rem; }
  .brand__mark { width: 1.75rem; height: 1.75rem; }
  .hero, .page-hero, .page-hero--compact { min-height: 62svh; }
  .hero__content, .page-hero__content { width: min(100% - 2rem, var(--container)); padding: 4rem 0; }
  .section { padding: 3.5rem 0; }
  .split, .form-layout { grid-template-columns: 1fr; }
  .split--reverse > img { order: 0; }
  .split > img { height: auto; aspect-ratio: 4 / 3; }
  .card-grid--3, .contact-grid { grid-template-columns: 1fr; }
  .icon-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .carousel__slide { flex-basis: 86%; }
  .section-heading { align-items: start; flex-direction: column; }
  .info-panel { align-items: stretch; flex-direction: column; }
  .form-grid { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; padding-top: 3rem; }
  .footer-bottom { align-items: flex-start; flex-direction: column; }
  .legal-company dl > div { grid-template-columns: 1fr; gap: .25rem; }
  .cookie-banner { right: .75rem; bottom: .75rem; left: .75rem; }
}
@media (max-width: 480px) {
  .icon-grid { grid-template-columns: 1fr; }
  .button-row, .button-row .btn, .cta-section .btn { width: 100%; }
  .mobile-menu__inner { width: calc(100% - 2rem); }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}
