@charset "UTF-8";
/* ==========================================================================
   ALLVORA — Property Services. Simplified.
   Classic photo-forward layout. Playfair Display headings, Lato body.
   Navy #0B1F3A, gold #C9A24A, white, off-white. 1200px container, 24px gutters.
   ========================================================================== */

/* Fonts ------------------------------------------------------------------ */
@font-face { font-family: "Playfair Display"; font-style: normal; font-weight: 400 700; font-display: swap; src: url("../fonts/playfair-display-roman-400-700.woff2") format("woff2"); }
@font-face { font-family: "Playfair Display"; font-style: italic; font-weight: 400 700; font-display: swap; src: url("../fonts/playfair-display-italic-400-700.woff2") format("woff2"); }
@font-face { font-family: "Lato"; font-style: normal; font-weight: 400; font-display: swap; src: url("../fonts/lato-roman-400.woff2") format("woff2"); }
@font-face { font-family: "Lato"; font-style: normal; font-weight: 700; font-display: swap; src: url("../fonts/lato-roman-700.woff2") format("woff2"); }
@font-face { font-family: "Lato"; font-style: italic; font-weight: 400; font-display: swap; src: url("../fonts/lato-italic-400.woff2") format("woff2"); }

/* Tokens ----------------------------------------------------------------- */
:root {
	--navy: #0b1f3a;
	--navy-deep: #071527;
	--navy-text: rgba(255, 255, 255, 0.86);
	--navy-muted: rgba(255, 255, 255, 0.64);
	--navy-line: rgba(255, 255, 255, 0.14);
	--gold: #c9a24a;
	--gold-dark: #a8842f;
	--white: #ffffff;
	--off: #f6f4ef;
	--ink: #1a1f27;
	--body: #4d535d;
	--muted: #7d838d;
	--line: #e4e1da;

	--serif: "Playfair Display", Georgia, "Times New Roman", serif;
	--sans: "Lato", "Helvetica Neue", Arial, sans-serif;

	--s1: 8px; --s2: 16px; --s3: 24px; --s4: 32px; --s5: 48px; --s6: 64px; --s7: 96px;
	--section: var(--s7);
	--container: 1200px;
	--gutter: 24px;
	--header: 88px;
	--radius: 4px;
	--shadow: 0 2px 6px rgba(11, 31, 58, 0.06), 0 12px 32px rgba(11, 31, 58, 0.08);
}
@media (max-width: 1023px) { :root { --section: 72px; } }
@media (max-width: 639px)  { :root { --section: 56px; --header: 68px; } }

/* Base ------------------------------------------------------------------- */
*, *::before, *::after { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; scroll-padding-top: calc(var(--header) + 16px); }
/* Smooth only for in-page clicks; a page that loads with #hash jumps straight there. */
html:focus-within { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--body); font-family: var(--sans); font-size: 17px; line-height: 1.7; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }
h1, h2, h3, h4 { margin: 0; font-family: var(--serif); font-weight: 600; color: var(--ink); line-height: 1.18; }
h1 { font-size: 56px; line-height: 1.1; }
h2 { font-size: 40px; }
h3 { font-size: 22px; }
h4 { font-size: 19px; }
@media (max-width: 1023px) { h1 { font-size: 44px; } h2 { font-size: 34px; } }
@media (max-width: 639px)  { h1 { font-size: 34px; } h2 { font-size: 28px; } h3 { font-size: 20px; } }
p { margin: 0; }
p + p { margin-top: var(--s2); }
a { color: var(--navy); text-decoration: none; }
a:hover { color: var(--gold-dark); }
img, svg { display: block; max-width: 100%; height: auto; }
ul, ol { margin: 0; padding: 0; list-style: none; }
strong { color: var(--ink); font-weight: 700; }
em { font-style: italic; }
::selection { background: var(--gold); color: var(--navy); }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }
.sr-only { position: absolute !important; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0 0 0 0); white-space: nowrap; border: 0; }
.skip-link { position: absolute; top: -100px; left: var(--s2); z-index: 999; padding: var(--s1) var(--s2); background: var(--gold); color: var(--navy); font-weight: 700; }
.skip-link:focus { top: 0; }

/* Layout ----------------------------------------------------------------- */
.container, .wrap { width: 100%; max-width: calc(var(--container) + var(--gutter) * 2); margin: 0 auto; padding: 0 var(--gutter); }
.wrap--narrow { max-width: calc(860px + var(--gutter) * 2); }
.wrap--mid { max-width: calc(1000px + var(--gutter) * 2); }
.section { padding: var(--section) 0; }
.section--off, .section--surface, .section--tint { background: var(--off); }
.section--navy { background: var(--navy); color: var(--navy-text); }
.section--navy h2, .section--navy h3, .section--navy h4 { color: var(--white); }
.section--navy a { color: var(--white); }
.section--navy a:hover { color: var(--gold); }
.section--sm { padding: var(--s6) 0; }
.grid { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: var(--s5); align-items: center; }
.col-5 { grid-column: span 5; } .col-6 { grid-column: span 6; } .col-7 { grid-column: span 7; }
.col-6.start-7 { grid-column: 7 / span 6; } .col-5.start-8 { grid-column: 8 / span 5; } .col-7.start-6 { grid-column: 6 / span 7; }
@media (max-width: 1023px) { .col-5, .col-6, .col-7, .col-6.start-7, .col-5.start-8, .col-7.start-6 { grid-column: span 12; } }

/* Text ------------------------------------------------------------------- */
.label, .eyebrow { display: block; margin-bottom: var(--s2); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold-dark); }
.section--navy .label, .section--navy .eyebrow, .on-photo .label { color: var(--gold); }
.eyebrow__rule { display: none; }
.lead { font-size: 20px; line-height: 1.6; color: var(--ink); }
.section--navy .lead { color: var(--white); }
.small { font-size: 14px; line-height: 1.6; color: var(--muted); }
.measure { max-width: 62ch; }
h1 em, h2 em, h3 em { font-style: italic; font-weight: 400; color: var(--gold); }
.sechead { max-width: 720px; margin-bottom: var(--s5); }
.sechead--center { margin-left: auto; margin-right: auto; text-align: center; }
.sechead h2 { margin-bottom: var(--s2); }
.sechead p { font-size: 18px; line-height: 1.65; }
.sechead__title { font-size: 40px; margin-bottom: var(--s2); }
@media (max-width: 1023px) { .sechead__title { font-size: 34px; } }
@media (max-width: 639px)  { .sechead__title { font-size: 28px; } }
.rule-gold { width: 56px; height: 3px; background: var(--gold); margin: 0 0 var(--s3); }
.sechead--center .rule-gold { margin-left: auto; margin-right: auto; }

/* Buttons ---------------------------------------------------------------- */
.btn { display: inline-flex; align-items: center; justify-content: center; gap: 10px; height: 52px; padding: 0 28px; border: 2px solid transparent; border-radius: var(--radius); font-family: var(--sans); font-size: 15px; font-weight: 700; letter-spacing: 0.02em; white-space: nowrap; cursor: pointer; transition: background 0.15s, color 0.15s, border-color 0.15s; }
.btn svg { flex: none; }
.btn--gold { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.btn--gold:hover { background: var(--gold-dark); border-color: var(--gold-dark); color: var(--white); }
.btn--navy { background: var(--navy); border-color: var(--navy); color: var(--white); }
.btn--navy:hover { background: var(--navy-deep); border-color: var(--navy-deep); color: var(--white); }
.btn--outline, .btn--ghost { background: transparent; color: var(--navy); border-color: var(--navy); }
.btn--outline:hover, .btn--ghost:hover { background: var(--navy); color: var(--white); }
.btn--outline-light, .btn--ghostlight { background: transparent; color: var(--white); border-color: rgba(255, 255, 255, 0.7); }
.btn--outline-light:hover, .btn--ghostlight:hover { background: var(--white); border-color: var(--white); color: var(--navy); }
.btn--sm { height: 44px; padding: 0 20px; font-size: 14px; }
.btn--block, .btn--wide { width: 100%; }
.btn-row { display: flex; flex-wrap: wrap; gap: var(--s2); align-items: center; }
.link { display: inline-flex; align-items: center; gap: 8px; font-weight: 700; font-size: 15px; color: var(--navy); }
.link svg { transition: transform 0.15s; }
.link:hover { color: var(--gold-dark); }
.link:hover svg { transform: translateX(3px); }

/* Header ----------------------------------------------------------------- */
.site-header { position: sticky; top: 0; z-index: 50; background: var(--navy-deep); box-shadow: 0 1px 0 var(--navy-line); }
.site-header__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s4); height: var(--header); }
.brand { display: inline-flex; align-items: center; flex: none; color: var(--white); }
.brand__img { height: 72px; width: auto; filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 1px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.22)); }
.brand__type { display: flex; flex-direction: column; line-height: 1; }
.brand__name { font-family: var(--sans); font-size: 22px; font-weight: 700; letter-spacing: 0.16em; color: var(--white); }
.brand__sub { margin-top: 5px; font-size: 9px; font-weight: 700; letter-spacing: 0.3em; text-transform: uppercase; color: var(--gold); }
.nav ul { display: flex; align-items: center; }
.nav a { display: block; padding: 10px 14px; font-size: 15px; font-weight: 700; color: var(--navy-text); }
.nav a:hover { color: var(--gold); }
.nav .current-menu-item > a, .nav .current_page_item > a { color: var(--gold); }
.header-actions { display: flex; align-items: center; gap: var(--s3); flex: none; }
.header-phone { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 700; font-size: 15px; }
.header-phone svg { color: var(--gold); }
.header-phone:hover { color: var(--gold); }
.navtoggle { display: none; width: 44px; height: 44px; padding: 0; border: 1px solid var(--navy-line); border-radius: var(--radius); background: transparent; color: var(--white); cursor: pointer; align-items: center; justify-content: center; }
@media (max-width: 1100px) { .nav a { padding: 10px 10px; font-size: 14px; } .header-phone { display: none; } }
@media (max-width: 900px) { .nav, .header-actions .btn { display: none; } .navtoggle { display: inline-flex; } .brand__img { height: 54px; } }

.drawer { position: fixed; inset: 0; z-index: 100; display: grid; grid-template-rows: auto 1fr auto; background: var(--navy-deep); color: var(--white); transform: translateX(100%); visibility: hidden; transition: transform 0.25s ease, visibility 0.25s; overflow-y: auto; }
.drawer.is-open { transform: none; visibility: visible; }
.drawer__top { display: flex; align-items: center; justify-content: space-between; height: var(--header); padding: 0 var(--gutter); border-bottom: 1px solid var(--navy-line); }
.drawer__close { width: 44px; height: 44px; border: 1px solid var(--navy-line); border-radius: var(--radius); background: transparent; color: var(--white); cursor: pointer; display: inline-flex; align-items: center; justify-content: center; }
.drawer__nav { padding: var(--s3) var(--gutter); }
.drawer__nav li { border-bottom: 1px solid var(--navy-line); }
.drawer__nav a { display: block; padding: 18px 0; font-family: var(--serif); font-size: 24px; color: var(--white); }
.drawer__nav .current-menu-item > a { color: var(--gold); }
.drawer__foot { padding: var(--s3) var(--gutter) var(--s4); border-top: 1px solid var(--navy-line); display: grid; gap: var(--s2); }
.drawer__meta { display: grid; gap: 10px; font-size: 15px; color: var(--navy-muted); }
.drawer__meta a, .drawer__meta span { display: inline-flex; align-items: center; gap: 10px; color: var(--navy-text); }
.drawer__meta svg { color: var(--gold); }
.drawer-backdrop { position: fixed; inset: 0; z-index: 90; background: rgba(7, 21, 39, 0.5); opacity: 0; visibility: hidden; transition: opacity 0.25s, visibility 0.25s; }
.drawer-backdrop.is-open { opacity: 1; visibility: visible; }
body.nav-open { overflow: hidden; }

/* Hero slider ------------------------------------------------------------ */
.slider { position: relative; height: 640px; background: var(--navy-deep); overflow: hidden; color: var(--white); }
@media (max-width: 1023px) { .slider { height: 560px; } }
@media (max-width: 639px)  { .slider { height: auto; min-height: 520px; } }
.slide { position: absolute; inset: 0; opacity: 0; visibility: hidden; transition: opacity 0.5s ease, visibility 0.5s; }
.slide.is-active { opacity: 1; visibility: visible; z-index: 1; }
.slide__img { position: absolute; inset: 0; }
.slide__img img { width: 100%; height: 100%; object-fit: cover; }
.slide__img::after { content: ""; position: absolute; inset: 0; background: rgba(7, 21, 39, 0.58); }
.slide__inner { position: relative; z-index: 2; height: 100%; display: flex; align-items: center; }
.slide__copy { max-width: 640px; padding: var(--s6) 0; }
.slide__copy .label { color: var(--gold); }
.slide__copy h1, .slide__copy h2 { color: var(--white); margin-bottom: var(--s3); }
.slide__copy h2 { font-size: 56px; line-height: 1.1; }
@media (max-width: 1023px) { .slide__copy h2 { font-size: 44px; } }
@media (max-width: 639px)  { .slide__copy h2 { font-size: 34px; } }
.slide__text { font-size: 19px; line-height: 1.6; color: var(--navy-text); margin-bottom: var(--s4); max-width: 52ch; }
.slider__nav { position: absolute; left: 0; right: 0; bottom: var(--s4); z-index: 3; }
.slider__nav .container { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); }
.slider__dots { display: flex; gap: 10px; }
.slider__dot { width: 40px; height: 4px; padding: 0; border: 0; background: rgba(255, 255, 255, 0.35); cursor: pointer; transition: background 0.2s; }
.slider__dot.is-active, .slider__dot:hover { background: var(--gold); }
.slider__arrows { display: flex; gap: 8px; }
.slider__arrow { width: 44px; height: 44px; display: inline-flex; align-items: center; justify-content: center; border: 1px solid rgba(255, 255, 255, 0.5); background: transparent; color: var(--white); cursor: pointer; transition: background 0.15s, border-color 0.15s, color 0.15s; }
.slider__arrow:hover { background: var(--gold); border-color: var(--gold); color: var(--navy); }
.slider__arrow--prev svg { transform: rotate(180deg); }
@media (max-width: 639px) { .slider__arrows { display: none; } .slide__copy { padding: var(--s6) 0 var(--s7); } }

/* Stats strip ------------------------------------------------------------ */
.stats { background: var(--white); border-bottom: 1px solid var(--line); }
.stats ul { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); }
.stats li { padding: var(--s4) var(--s3); text-align: center; border-left: 1px solid var(--line); }
.stats li:first-child { border-left: 0; }
.stats strong { display: block; font-family: var(--serif); font-size: 34px; font-weight: 600; color: var(--navy); line-height: 1.1; margin-bottom: 6px; }
.stats span { font-size: 14px; color: var(--muted); }
@media (max-width: 767px) { .stats ul { grid-template-columns: repeat(2, minmax(0, 1fr)); } .stats li { border-left: 0; border-top: 1px solid var(--line); padding: var(--s3) var(--s2); } .stats li:nth-child(-n+2) { border-top: 0; } .stats strong { font-size: 26px; } }

/* Photo ------------------------------------------------------------------ */
.photo { margin: 0; }
.photo img { width: 100%; height: auto; border-radius: var(--radius); }
.photo--ratio img { aspect-ratio: 4 / 3; object-fit: cover; }

/* Ticks */
.ticklist { display: grid; gap: 12px; margin-top: var(--s3); }
.ticklist li { position: relative; padding-left: 30px; font-size: 16px; line-height: 1.6; }
.ticklist li::before { content: ""; position: absolute; left: 0; top: 4px; width: 18px; height: 18px; border-radius: 50%; background: var(--gold); -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.6 4.6 4.6 9.4-10'/%3E%3C/svg%3E") center / 70% no-repeat; mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23000' stroke-width='3.2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m5 12.6 4.6 4.6 9.4-10'/%3E%3C/svg%3E") center / 70% no-repeat; }
.ticklist--2col { grid-template-columns: repeat(2, minmax(0, 1fr)); column-gap: var(--s4); }
@media (max-width: 639px) { .ticklist--2col { grid-template-columns: minmax(0, 1fr); } }
.section--navy .ticklist li { color: var(--navy-text); }

/* Photo cards (services) ------------------------------------------------- */
.cards { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s3); }
@media (max-width: 1023px) { .cards { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .cards { grid-template-columns: minmax(0, 1fr); } }
.pcard { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; transition: box-shadow 0.2s, transform 0.2s; }
.pcard:hover { box-shadow: var(--shadow); transform: translateY(-3px); }
.pcard__img { display: block; aspect-ratio: 4 / 3; overflow: hidden; }
.pcard__img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.pcard:hover .pcard__img img { transform: scale(1.04); }
.pcard__body { display: flex; flex-direction: column; flex: 1; padding: var(--s3); }
.pcard h3 { font-size: 21px; margin-bottom: 10px; }
.pcard h3 a { color: var(--ink); }
.pcard h3 a:hover { color: var(--gold-dark); }
.pcard p { font-size: 15px; line-height: 1.6; margin-bottom: var(--s2); }
.pcard .link { margin-top: auto; font-size: 14px; }

/* Wide photo band -------------------------------------------------------- */
.band { position: relative; min-height: 460px; display: flex; align-items: center; color: var(--white); text-align: center; overflow: hidden; }
.band__img { position: absolute; inset: 0; }
.band__img img { width: 100%; height: 100%; object-fit: cover; }
.band__img::after { content: ""; position: absolute; inset: 0; background: rgba(7, 21, 39, 0.62); }
.band__inner { position: relative; z-index: 1; width: 100%; padding: var(--s7) 0; }
.band h2 { color: var(--white); font-size: 44px; margin-bottom: var(--s2); }
.band p { max-width: 60ch; margin: 0 auto var(--s4); font-size: 19px; line-height: 1.6; color: var(--navy-text); }
@media (max-width: 1023px) { .band h2 { font-size: 36px; } }
@media (max-width: 639px)  { .band { min-height: 400px; } .band h2 { font-size: 30px; } }

/* Industry tiles --------------------------------------------------------- */
.tiles { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s3); }
@media (max-width: 1023px) { .tiles { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .tiles { grid-template-columns: minmax(0, 1fr); } }
.tile { position: relative; display: block; aspect-ratio: 3 / 4; border-radius: var(--radius); overflow: hidden; background: var(--navy); color: var(--white); }
.tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.tile:hover img { transform: scale(1.04); }
.tile::after { content: ""; position: absolute; inset: 0; background: linear-gradient(to top, rgba(7, 21, 39, 0.92) 0%, rgba(7, 21, 39, 0.35) 55%, rgba(7, 21, 39, 0.05) 100%); }
.tile__body { position: absolute; left: 0; right: 0; bottom: 0; z-index: 1; padding: var(--s3); }
.tile h3 { color: var(--white); font-size: 22px; margin-bottom: 8px; }
.tile p { font-size: 14px; line-height: 1.55; color: var(--navy-text); margin-bottom: 12px; }
.tile .link { color: var(--gold); font-size: 14px; }
.tile:hover .link { color: var(--white); }

/* Feature list (why) ----------------------------------------------------- */
.features { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s4) var(--s3); }
@media (max-width: 1023px) { .features { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .features { grid-template-columns: minmax(0, 1fr); } }
.feature { padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.feature__icon { display: inline-flex; width: 44px; height: 44px; align-items: center; justify-content: center; margin-bottom: var(--s2); color: var(--gold-dark); border: 1px solid var(--line); border-radius: var(--radius); }
.feature h3 { font-size: 20px; margin-bottom: 8px; }
.feature p { font-size: 15px; line-height: 1.6; }

/* Area cards ------------------------------------------------------------- */
.areacards { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); }
@media (max-width: 767px) { .areacards { grid-template-columns: minmax(0, 1fr); } }
.acard { display: flex; flex-direction: column; background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); overflow: hidden; }
.acard__img { aspect-ratio: 16 / 10; overflow: hidden; }
.acard__img img { width: 100%; height: 100%; object-fit: cover; }
.acard__body { padding: var(--s3); display: flex; flex-direction: column; flex: 1; }
.acard h3 { font-size: 22px; margin-bottom: 8px; }
.acard p { font-size: 15px; line-height: 1.6; margin-bottom: var(--s2); }
.acard .small { margin-bottom: var(--s2); }
.acard .link { margin-top: auto; font-size: 14px; }

/* Steps ------------------------------------------------------------------ */
.steps { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: var(--s3); counter-reset: step; }
@media (max-width: 1023px) { .steps { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .steps { grid-template-columns: minmax(0, 1fr); } }
.step { padding-top: var(--s3); border-top: 3px solid var(--gold); }
.step__no { display: block; font-family: var(--serif); font-size: 30px; color: var(--gold-dark); margin-bottom: 10px; }
.step h3 { font-size: 20px; margin-bottom: 8px; }
.step p { font-size: 15px; line-height: 1.6; }

/* CTA -------------------------------------------------------------------- */
.cta { background: var(--navy); color: var(--navy-text); padding: var(--section) 0; text-align: center; }
.cta h2 { color: var(--white); margin-bottom: var(--s2); }
.cta p { max-width: 58ch; margin: 0 auto var(--s4); font-size: 18px; }
.cta .btn-row { justify-content: center; }
.cta__lines { margin-top: var(--s3); font-size: 15px; color: var(--navy-muted); }
.cta__lines a { color: var(--white); font-weight: 700; }
.cta__lines a:hover { color: var(--gold); }

/* Footer ----------------------------------------------------------------- */
.site-footer { background: var(--navy-deep); color: var(--navy-muted); font-size: 15px; }
.footer__main { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: var(--s5); padding: var(--s7) 0 var(--s6); }
.footer__about { grid-column: span 4; }
.footer__nav { grid-column: span 2; }
.footer__nav + .footer__nav { grid-column: span 3; }
.footer__reach { grid-column: span 3; }
@media (max-width: 1023px) { .footer__about { grid-column: span 12; } .footer__nav, .footer__nav + .footer__nav, .footer__reach { grid-column: span 4; } }
@media (max-width: 639px)  { .footer__nav, .footer__nav + .footer__nav, .footer__reach { grid-column: span 12; } .footer__main { padding: var(--s6) 0; } }
.footer__about .brand { margin-bottom: var(--s3); }
.footer__about .brand__img { height: 110px; }
.footer__blurb { max-width: 38ch; line-height: 1.7; margin-bottom: var(--s2); }
.footer__legalname { font-size: 13px; color: rgba(255, 255, 255, 0.45); }
.footer h3 { margin-bottom: var(--s2); font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--gold); }
.footer__list { display: grid; gap: 10px; }
.footer__list a { color: var(--navy-text); }
.footer__list a:hover { color: var(--gold); }
.footer__contact { display: grid; gap: 10px; margin-bottom: var(--s3); }
.footer__contact a, .footer__contact span { display: flex; gap: 10px; align-items: flex-start; color: var(--navy-text); line-height: 1.5; }
.footer__contact svg { flex: none; margin-top: 3px; color: var(--gold); }
.footer__contact a:hover { color: var(--gold); }
.footer__hours { font-size: 14px; }
.footer__bar { display: flex; flex-wrap: wrap; justify-content: space-between; gap: var(--s2); padding: var(--s3) 0; border-top: 1px solid var(--navy-line); font-size: 13px; color: rgba(255, 255, 255, 0.45); }
.footer__bar p { margin: 0; }
.footer__bar ul { display: flex; flex-wrap: wrap; gap: var(--s3); }
.footer__bar a { color: rgba(255, 255, 255, 0.6); }
.footer__bar a:hover { color: var(--gold); }
.hours { display: grid; }
.hours__row { display: flex; justify-content: space-between; gap: var(--s2); padding: 8px 0; border-bottom: 1px solid var(--line); font-size: 15px; }
.hours__row:last-child { border-bottom: 0; }
.hours__day { font-weight: 700; color: var(--ink); }
.hours__time { color: var(--body); font-variant-numeric: tabular-nums; }
.hours__time.is-closed { color: var(--muted); }
.footer__hours .hours__row, .panel--navy .hours__row { border-color: var(--navy-line); }
.footer__hours .hours__day, .panel--navy .hours__day { color: var(--white); font-weight: 400; }
.footer__hours .hours__time, .panel--navy .hours__time { color: var(--navy-muted); }

/* Inner-page hero -------------------------------------------------------- */
.pagehero { position: relative; min-height: 400px; display: flex; align-items: center; background: var(--navy-deep); color: var(--white); overflow: hidden; }
.pagehero__img { position: absolute; inset: 0; }
.pagehero__img img { width: 100%; height: 100%; object-fit: cover; }
.pagehero__img::after { content: ""; position: absolute; inset: 0; background: rgba(7, 21, 39, 0.66); }
.pagehero__inner { position: relative; z-index: 1; width: 100%; padding: var(--s6) 0; }
.pagehero__copy { max-width: 760px; }
.pagehero__title { color: var(--white); margin: var(--s2) 0 var(--s3); font-size: 48px; }
.pagehero__intro { max-width: 60ch; font-size: 19px; line-height: 1.6; color: var(--navy-text); }
.crumbs { display: flex; gap: 8px; font-size: 13px; color: var(--navy-muted); }
.crumbs a { color: var(--navy-text); }
.crumbs a:hover { color: var(--gold); }
@media (max-width: 1023px) { .pagehero { min-height: 340px; } .pagehero__title { font-size: 38px; } }
@media (max-width: 639px)  { .pagehero { min-height: 300px; } .pagehero__title { font-size: 30px; } }

/* Inner components (kept classes) ---------------------------------------- */
.split { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: var(--s5); align-items: center; }
.split__copy { grid-column: span 6; }
.split__media { grid-column: 8 / span 5; }
.split--media-first .split__media { grid-column: span 5; order: -1; }
.split--media-first .split__copy { grid-column: 7 / span 6; }
.split__media--offset::before { display: none; }
@media (max-width: 1023px) { .split__copy, .split__media, .split--media-first .split__copy, .split--media-first .split__media { grid-column: span 12; order: 0; } }
.framed { margin: 0; }
.framed img { width: 100%; height: auto; border-radius: var(--radius); }

.srow { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: var(--s4); align-items: center; padding: var(--s6) 0; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header) + 24px); }
.srow:first-of-type { border-top: 0; padding-top: 0; }
.srow__copy { grid-column: span 6; }
.srow__media { grid-column: 8 / span 5; }
.srow:nth-child(even) .srow__media { grid-column: span 5; order: -1; }
.srow:nth-child(even) .srow__copy { grid-column: 7 / span 6; }
@media (max-width: 1023px) { .srow__copy, .srow__media, .srow:nth-child(even) .srow__copy, .srow:nth-child(even) .srow__media { grid-column: span 12; order: 0; } .srow { padding: var(--s5) 0; } }
.srow__no { display: block; margin-bottom: var(--s2); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; color: var(--gold-dark); }
.srow__title { display: flex; align-items: flex-start; gap: 12px; margin-bottom: var(--s2); font-size: 30px; }
.srow__title svg { display: none; }
.srow__lead { font-size: 17px; }
.srow__cta { margin-top: var(--s4); }
.jumpbar { padding: var(--s5) 0 0; }
.subhead { margin-bottom: var(--s2); font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.chiprow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s2); }
.chip { display: inline-flex; align-items: center; gap: 6px; padding: 8px 14px; border: 1px solid var(--line); border-radius: 100px; background: var(--white); color: var(--navy); font-size: 14px; font-weight: 700; }
.chip svg { display: none; }
.chip:hover { border-color: var(--gold); color: var(--gold-dark); }
.section--navy .chip { background: transparent; border-color: var(--navy-line); color: var(--navy-text); }
.section--navy .chip:hover { border-color: var(--gold); color: var(--gold); }

.ind { padding: var(--s6) 0; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header) + 24px); }
.ind:first-of-type { border-top: 0; padding-top: 0; }
.ind__head { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: var(--s3); margin-bottom: var(--s5); align-items: start; }
.ind__head > div { grid-column: span 5; }
.ind__pressure { grid-column: 7 / span 6; font-size: 18px; line-height: 1.65; color: var(--ink); padding-left: var(--s3); border-left: 3px solid var(--gold); }
@media (max-width: 1023px) { .ind__head > div, .ind__pressure { grid-column: span 12; } }
.ind__title { display: flex; align-items: center; gap: 12px; font-size: 30px; }
.ind__badge { display: none; }
.ind__cols { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: var(--s4); }
.ind__cols > div:first-child { grid-column: span 5; }
.ind__cols > div:last-child { grid-column: 7 / span 6; }
@media (max-width: 1023px) { .ind__cols > div:first-child, .ind__cols > div:last-child { grid-column: span 12; } }
.crosslist { display: grid; gap: 10px; }
.crosslist li { position: relative; padding-left: 22px; font-size: 16px; line-height: 1.6; }
.crosslist li::before { content: ""; position: absolute; left: 0; top: 0.65em; width: 10px; height: 2px; background: var(--gold); }
.solutions { display: grid; gap: var(--s2); }
.solutions > div { padding: var(--s2) var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.solutions h4 { display: flex; align-items: center; gap: 8px; font-family: var(--sans); font-size: 16px; font-weight: 700; margin-bottom: 4px; }
.solutions h4 svg { display: none; }
.solutions p { font-size: 15px; line-height: 1.6; }

.whygrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); }
@media (max-width: 1023px) { .whygrid { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .whygrid { grid-template-columns: minmax(0, 1fr); } }
.why { padding: var(--s3); border: 1px solid var(--navy-line); border-radius: var(--radius); }
.why__icon { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; margin-bottom: var(--s2); color: var(--gold); }
.why__title { font-size: 20px; margin-bottom: 8px; }
.why__text { font-size: 15px; line-height: 1.6; color: var(--navy-muted); }

.scard { display: flex; flex-direction: column; padding: var(--s3); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.scard__rule { display: none; }
.scard__icon { display: inline-flex; width: 40px; height: 40px; align-items: center; justify-content: center; margin-bottom: var(--s2); color: var(--gold-dark); }
.scard__title { font-size: 20px; margin-bottom: 8px; }
.scard__title a { color: inherit; }
.scard__text { font-size: 15px; line-height: 1.6; }
.scard__more { display: inline-flex; align-items: center; gap: 6px; margin-top: var(--s2); font-size: 14px; font-weight: 700; color: var(--navy); }
.grid--2, .grid--3, .grid--4 { display: grid; gap: var(--s3); }
.grid--2 { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.grid--3 { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.grid--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1023px) { .grid--3, .grid--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px)  { .grid--2, .grid--3, .grid--4 { grid-template-columns: minmax(0, 1fr); } }

.area { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: var(--s4); align-items: center; padding: var(--s6) 0; border-top: 1px solid var(--line); scroll-margin-top: calc(var(--header) + 24px); }
.area:first-of-type { border-top: 0; padding-top: 0; }
.area__copy { grid-column: span 6; }
.area__media { grid-column: 8 / span 5; }
.area:nth-child(even) .area__media { grid-column: span 5; order: -1; }
.area:nth-child(even) .area__copy { grid-column: 7 / span 6; }
@media (max-width: 1023px) { .area__copy, .area__media, .area:nth-child(even) .area__copy, .area:nth-child(even) .area__media { grid-column: span 12; order: 0; } }
.area__title { font-size: 34px; margin-bottom: var(--s2); }
.pillrow { display: flex; flex-wrap: wrap; gap: 8px; margin-top: var(--s2); }
.pillrow li { padding: 6px 12px; border: 1px solid var(--line); border-radius: 100px; font-size: 13px; color: var(--body); }

.formcard { padding: var(--s5); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.formcard__top { display: flex; align-items: center; gap: var(--s2); padding-bottom: var(--s3); margin-bottom: var(--s4); border-bottom: 1px solid var(--line); }
.formcard__badge { display: none; }
.formcard__title { font-size: 26px; }
.formcard__sub { margin-top: 4px; font-size: 14px; color: var(--muted); }
.fgrid { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: var(--s3); }
@media (max-width: 639px) { .fgrid { grid-template-columns: minmax(0, 1fr); } .formcard { padding: var(--s3); } }
.field--full { grid-column: 1 / -1; }
.field { display: flex; flex-direction: column; gap: 8px; min-width: 0; }
.field label { font-size: 13px; font-weight: 700; color: var(--ink); }
.field .req { color: var(--gold-dark); }
.field .hint { font-weight: 400; color: var(--muted); }
.field input:not([type="checkbox"]), .field select, .field textarea { width: 100%; height: 52px; padding: 0 14px; border: 1px solid #cdc9c0; border-radius: var(--radius); background: var(--white); color: var(--ink); font-family: inherit; font-size: 16px; -webkit-appearance: none; appearance: none; }
.field textarea { height: auto; min-height: 150px; padding: 14px; resize: vertical; line-height: 1.5; }
.field select { background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%234d535d' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 40px; cursor: pointer; }
.field input:focus, .field select:focus, .field textarea:focus { outline: 0; border-color: var(--navy); box-shadow: 0 0 0 1px var(--navy); }
.field input::placeholder, .field textarea::placeholder { color: #a9aeb5; }
.field.has-error input, .field.has-error select, .field.has-error textarea { border-color: #b3261e; }
.field__error { font-size: 13px; color: #b3261e; }
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 14px; line-height: 1.5; color: var(--body); }
.consent input[type="checkbox"] { width: 18px; height: 18px; margin-top: 3px; flex: none; accent-color: var(--navy); }
.formfoot { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: var(--s2); margin-top: var(--s4); padding-top: var(--s3); border-top: 1px solid var(--line); }
.formfoot__note { display: flex; align-items: center; gap: 8px; font-size: 13px; color: var(--muted); }
.formfoot__note svg { display: none; }
.hp-field { position: absolute !important; left: -9999px; width: 1px; height: 1px; overflow: hidden; }
.notice { display: flex; gap: 12px; padding: var(--s2) var(--s3); margin-bottom: var(--s3); border: 1px solid; border-radius: var(--radius); font-size: 15px; line-height: 1.55; }
.notice svg { flex: none; margin-top: 3px; }
.notice--ok { border-color: #1f7a4d; color: #145233; background: #eef7f1; }
.notice--err { border-color: #b3261e; color: #7f1d17; background: #fbeeed; }
.notice strong { display: block; color: inherit; margin-bottom: 2px; }
.quotelayout { display: grid; grid-template-columns: repeat(12, minmax(0, 1fr)); column-gap: var(--gutter); row-gap: var(--s5); align-items: start; }
.quotelayout > :first-child { grid-column: span 7; }
.quotelayout > :last-child { grid-column: 9 / span 4; }
@media (max-width: 1023px) { .quotelayout > :first-child, .quotelayout > :last-child { grid-column: span 12; } }
.aside { display: grid; gap: var(--s3); }
.panel { padding: var(--s4); border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.panel--navy { background: var(--navy); border-color: var(--navy); color: var(--navy-text); }
.panel--navy h3, .panel--navy h4 { color: var(--white); }
.panel__title { display: flex; align-items: center; gap: 8px; font-size: 20px; margin-bottom: var(--s3); }
.panel__title svg { display: none; }
.stepslim { display: grid; gap: var(--s2); counter-reset: slim; }
.stepslim li { position: relative; padding-left: 36px; font-size: 15px; line-height: 1.55; counter-increment: slim; }
.stepslim li::before { content: counter(slim) "."; position: absolute; left: 0; top: 0; font-family: var(--serif); font-size: 18px; color: var(--gold); }
.contactlines { display: grid; gap: var(--s2); }
.contactlines a, .contactlines span.cl { display: flex; gap: 10px; align-items: flex-start; color: inherit; font-size: 15px; line-height: 1.5; }
.contactlines svg { display: none; }
.contactlines .cl__label { display: block; font-size: 12px; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); margin-bottom: 2px; }
.panel--navy .contactlines .cl__label { color: var(--navy-muted); }
.notecards { display: grid; gap: var(--s2); margin-top: var(--s3); }
.notecard { display: flex; gap: 10px; padding: var(--s2); border: 1px solid var(--line); border-radius: var(--radius); }
.notecard svg { display: none; }
.panel--navy .notecard { border-color: var(--navy-line); }
.notecard strong { display: block; font-size: 15px; margin-bottom: 2px; }
.panel--navy .notecard strong { color: var(--white); }
.notecard p { font-size: 14px; line-height: 1.5; }
.faq { display: grid; gap: 12px; }
.faq__item { border: 1px solid var(--line); border-radius: var(--radius); background: var(--white); }
.faq__q { display: flex; align-items: center; justify-content: space-between; gap: var(--s2); padding: var(--s2) var(--s3); cursor: pointer; list-style: none; font-family: var(--serif); font-size: 20px; color: var(--ink); }
.faq__q::-webkit-details-marker { display: none; }
.faq__q .icon { flex: none; color: var(--gold-dark); transition: transform 0.2s; }
.faq__item[open] .faq__q .icon { transform: rotate(180deg); }
.faq__a { padding: 0 var(--s3) var(--s3); max-width: 66ch; font-size: 16px; line-height: 1.65; }
.contactgrid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); }
@media (max-width: 767px) { .contactgrid { grid-template-columns: minmax(0, 1fr); } }
.ccard { padding: var(--s4); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); text-align: center; }
.ccard__icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; margin: 0 auto var(--s2); color: var(--gold-dark); border: 1px solid var(--line); border-radius: 50%; }
.ccard__label { display: block; margin-bottom: 8px; font-size: 13px; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.ccard__value { display: block; margin-bottom: 8px; font-family: var(--serif); font-size: 24px; color: var(--ink); }
.ccard__value:hover { color: var(--gold-dark); }
.ccard__note { font-size: 15px; line-height: 1.55; color: var(--body); }
.prose { max-width: 70ch; }
.prose h2 { font-size: 28px; margin: var(--s5) 0 var(--s2); }
.prose h2:first-child { margin-top: 0; }
.prose h3 { font-size: 22px; margin: var(--s4) 0 var(--s2); }
.prose p { margin-bottom: var(--s2); }
.prose ul { list-style: disc; padding-left: 22px; margin-bottom: var(--s2); }
.prose li { margin-bottom: 6px; }
.prose a { text-decoration: underline; text-underline-offset: 3px; }
.prose table { width: 100%; border-collapse: collapse; margin: var(--s3) 0; font-size: 15px; }
.prose th, .prose td { padding: 10px 12px; border: 1px solid var(--line); text-align: left; vertical-align: top; }
.prose th { background: var(--off); font-weight: 700; color: var(--ink); }
.tablewrap { overflow-x: auto; }
.notfound { padding: var(--s7) 0; text-align: center; }
.notfound__code { font-family: var(--serif); font-size: 120px; line-height: 1; color: var(--gold); margin-bottom: var(--s2); }
.statstrip { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: var(--s3); margin-top: var(--s5); }
.statstrip > div { padding: var(--s3); background: var(--off); border-radius: var(--radius); }
.statstrip dt { font-family: var(--serif); font-size: 32px; color: var(--navy); }
.statstrip dd { margin: 6px 0 0; font-size: 14px; color: var(--muted); }
.diamond { display: none; }
.mt-1 { margin-top: var(--s2); } .mt-2 { margin-top: var(--s3); } .mt-3 { margin-top: var(--s4); }
.reveal { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) { .slide { transition: none; } .pcard, .tile img, .pcard__img img { transition: none; } html { scroll-behavior: auto; } }
@media print { .site-header, .drawer, .drawer-backdrop, .cta, .slider__nav { display: none !important; } }

/* Polish ----------------------------------------------------------------- */
.site-header { transition: box-shadow 0.25s ease; }
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--navy-line), 0 10px 30px rgba(7, 21, 39, 0.35); }
.nav a { position: relative; }
.nav a::after { content: ""; position: absolute; left: 14px; right: 14px; bottom: 6px; height: 2px; background: var(--gold); transform: scaleX(0); transform-origin: left; transition: transform 0.25s ease; }
.nav a:hover::after, .nav .is-current > a::after, .nav .current-menu-item > a::after { transform: scaleX(1); }
.nav .is-current > a { color: var(--gold); }
.slide__img img { transform: scale(1); transition: transform 5s linear; }
.slide.is-active .slide__img img { transform: scale(1.06); }
.slide__copy > * { opacity: 0; transform: translateY(14px); transition: opacity 0.4s ease, transform 0.4s ease; }
.slide.is-active .slide__copy > * { opacity: 1; transform: none; }
.slide.is-active .slide__copy > :nth-child(2) { transition-delay: 0.06s; }
.slide.is-active .slide__copy > :nth-child(3) { transition-delay: 0.12s; }
.slide.is-active .slide__copy > :nth-child(4) { transition-delay: 0.18s; }
.slider__dot { position: relative; overflow: hidden; }
.slider__dot::after { content: ""; position: absolute; inset: 0; background: var(--gold); transform: scaleX(0); transform-origin: left; }
.slider__dot.is-active { background: rgba(255, 255, 255, 0.3); }
.slider__dot.is-active::after { animation: dotfill 4500ms linear forwards; }
@keyframes dotfill { from { transform: scaleX(0); } to { transform: scaleX(1); } }
.btn { transition: background 0.15s, color 0.15s, border-color 0.15s, transform 0.15s, box-shadow 0.15s; }
.btn:hover { transform: translateY(-1px); }
.btn--gold:hover { box-shadow: 0 8px 20px rgba(201, 162, 74, 0.35); }
.pcard:hover { transform: translateY(-3px); }
.pcard { transition: transform 0.2s ease, box-shadow 0.2s ease; }
.totop { position: fixed; right: 24px; bottom: 24px; z-index: 40; width: 46px; height: 46px; display: inline-flex; align-items: center; justify-content: center; border: 0; border-radius: 50%; background: var(--navy); color: var(--white); cursor: pointer; opacity: 0; visibility: hidden; transform: translateY(10px); transition: opacity 0.25s, transform 0.25s, visibility 0.25s, background 0.15s; box-shadow: 0 6px 18px rgba(7, 21, 39, 0.3); }
.totop.is-visible { opacity: 1; visibility: visible; transform: none; }
.totop:hover { background: var(--gold); color: var(--navy); }
.totop svg { transform: rotate(-90deg); }
.contact { background: var(--off); }
.contact .quotelayout { margin-top: var(--s2); }
.section--off .formcard { box-shadow: var(--shadow); }
@media (prefers-reduced-motion: reduce) {
	.slide__img img, .slide__copy > * { transition: none; transform: none; opacity: 1; }
	.slider__dot.is-active::after { animation: none; transform: scaleX(1); }
}

/* Balanced headings: no single-word last lines. */
.sechead h2, .sechead h1, .slide h1, .band h2, .cta h2, .contact h2, .pagehero__title { text-wrap: balance; }

/* Brand slide: the client's "One Key" creative on the right, copy on the left. */
.slide--brand .slide__img { background: var(--navy-deep); }
.slide--brand .slide__img img { position: absolute; right: 0; bottom: 0; width: 56%; height: auto; max-width: 720px; object-fit: contain; object-position: right bottom; transform: scale(1.22); transform-origin: 50% 100%; -webkit-mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 32%, #000 100%); mask-image: linear-gradient(90deg, rgba(0, 0, 0, 0) 0%, #000 32%, #000 100%); }
.slide--brand.is-active .slide__img img { transform: scale(1.22); }
.slide--brand .slide__img::after { background: linear-gradient(90deg, var(--navy-deep) 34%, rgba(7, 21, 39, 0.55) 56%, rgba(7, 21, 39, 0) 100%); }
@media (max-width: 1023px) { .slide--brand .slide__img img { width: 64%; } }
@media (max-width: 639px) { .slide--brand .slide__img img { width: 100%; height: 100%; max-width: none; object-fit: cover; object-position: 50% 100%; transform: scale(1.4); transform-origin: 50% 100%; opacity: 0.32; -webkit-mask-image: none; mask-image: none; } .slide--brand.is-active .slide__img img { transform: scale(1.4); } .slide--brand .slide__img::after { background: linear-gradient(180deg, rgba(7, 21, 39, 0.55) 0%, rgba(7, 21, 39, 0.9) 100%); } }

/* Preview placeholder pages */
.preview-note { max-width: 720px; margin: 0 auto; text-align: center; }
.btn-row--center { justify-content: center; }

/* Hero: email under the phone button (client request). */
.slide__reach { margin: var(--s3) 0 0; font-size: 15px; color: var(--navy-text); }
.slide__reach a { color: var(--white); font-weight: 700; text-decoration: underline; text-decoration-color: var(--gold); text-decoration-thickness: 1px; text-underline-offset: 4px; }
.slide__reach a:hover { color: var(--gold); }
.slide.is-active .slide__copy > :nth-child(5) { transition-delay: 0.4s; }

/* Aliases for tokens referenced by the inner templates. */
:root { --fs-h2: 40px; --fs-lead: 19px; --navy-900: var(--navy-deep); --font-display: var(--serif); --sp-section-sm: calc(var(--section) * 0.6); }
@media (max-width: 1023px) { :root { --fs-h2: 34px; } }
@media (max-width: 639px) { :root { --fs-h2: 28px; --fs-lead: 17px; } }

/* Inner pages (rebuild to match the approved home page) ------------------ */
.pagehero__label { margin-top: var(--s3); color: var(--gold); }
.pagehero__reach { display: flex; flex-wrap: wrap; gap: 8px 28px; margin: var(--s4) 0 0; font-size: 15px; }
.pagehero__reach a { display: inline-flex; align-items: center; gap: 8px; color: var(--white); font-weight: 700; }
.pagehero__reach a svg { color: var(--gold); }
.pagehero__reach a:hover { color: var(--gold); }
.copy h2 { margin-bottom: var(--s3); }
.pullquote { margin: var(--s4) 0 0; padding-left: var(--s3); border-left: 3px solid var(--gold); font-family: var(--serif); font-size: 22px; line-height: 1.45; color: var(--navy); }
.features--4 { grid-template-columns: repeat(4, minmax(0, 1fr)); }
@media (max-width: 1023px) { .features--4 { grid-template-columns: repeat(2, minmax(0, 1fr)); } }
@media (max-width: 599px) { .features--4 { grid-template-columns: minmax(0, 1fr); } }
.section--navy .sechead p { color: var(--navy-text); }
.section--navy .feature { background: rgba(255, 255, 255, 0.04); border-color: var(--navy-line); }
.section--navy .feature p { color: var(--navy-text); }
.section--jump { padding: var(--s5) 0 0; }
.section--jump .subhead { margin-bottom: 10px; }
.section--tight { padding-top: 0; }
.container--mid { max-width: calc(1000px + var(--gutter) * 2); }
.panels--mid { max-width: 1000px; margin: 0 auto; }
.chiprow--center { justify-content: center; }
.section--navy .chip { background: rgba(255, 255, 255, 0.05); }
.subhead--gap { margin-top: var(--s4); }
.ind__photo { margin: 0 0 var(--s4); aspect-ratio: 16 / 6; overflow: hidden; border-radius: var(--radius); background: var(--navy); }
.ind__photo img { width: 100%; height: 100%; object-fit: cover; }
@media (max-width: 639px) { .ind__photo { aspect-ratio: 4 / 3; } }
.askpanel { display: grid; grid-template-columns: auto 1fr auto; gap: var(--s3); align-items: center; padding: var(--s4); background: var(--white); border: 1px solid var(--line); border-radius: var(--radius); }
.askpanel h3 { font-size: 20px; margin-bottom: 6px; }
.askpanel p { margin: 0; font-size: 15px; line-height: 1.6; }
.askpanel__icon { display: inline-flex; width: 48px; height: 48px; align-items: center; justify-content: center; border-radius: 50%; background: var(--off); color: var(--gold-dark); }
@media (max-width: 767px) { .askpanel { grid-template-columns: minmax(0, 1fr); } }
.srow__media.photo, .area__media.photo { margin: 0; }

.cards__more { margin-top: var(--s5); }

.feature__link { display: inline-flex; margin-top: var(--s2); font-size: 14px; }
.feature { display: flex; flex-direction: column; }
.feature p { flex: 1 1 auto; }

/* Header shrinks a little once the page is scrolled. */
.site-header__inner { transition: height 0.25s ease; }
.brand__img { transition: height 0.25s ease; }
.site-header.is-scrolled .site-header__inner { height: 76px; }
.site-header.is-scrolled .brand__img { height: 60px; }
@media (max-width: 900px) { .site-header.is-scrolled .site-header__inner { height: var(--header); } .site-header.is-scrolled .brand__img { height: 54px; } }

/* White header (client, 7 Sep 2026: "make the logo bigger, background white"). ------ */
:root { --header: 90px; }
@media (max-width: 639px) { :root { --header: 70px; } }
.site-header { background: var(--white); box-shadow: 0 1px 0 var(--line); }
.site-header.is-scrolled { box-shadow: 0 1px 0 var(--line), 0 10px 30px rgba(7, 21, 39, 0.12); }
.site-header .brand { color: var(--navy); }
.site-header .brand__img { height: 74px; filter: none; }
.site-header .nav a { color: var(--navy); }
.site-header .nav a:hover, .site-header .nav .current-menu-item > a, .site-header .nav .current_page_item > a, .site-header .nav .is-current > a { color: var(--gold-dark); }
.site-header .header-phone { color: var(--navy); }
.site-header .header-phone svg { color: var(--gold-dark); }
.site-header .header-phone:hover { color: var(--gold-dark); }
.site-header .navtoggle { border-color: var(--line); color: var(--navy); }
.site-header.is-scrolled .site-header__inner { height: 76px; }
.site-header.is-scrolled .brand__img { height: 60px; }
@media (max-width: 900px) { .site-header .brand__img, .site-header.is-scrolled .brand__img { height: 56px; } }
/* Footer and mobile drawer stay navy, so the logo keeps a thin white outline there. */
.footer__about .brand__img, .drawer .brand__img { filter: drop-shadow(0 0 1px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 1px rgba(255, 255, 255, 0.95)) drop-shadow(0 0 8px rgba(255, 255, 255, 0.22)); }
.drawer .brand__img { height: 54px; }

/* Horizontal lockup in the header (client's wide logo, 7 Sep 2026). */
:root { --header: 86px; }
@media (max-width: 639px) { :root { --header: 66px; } }
.site-header .brand__img--wide { height: 58px; width: auto; }
.site-header.is-scrolled .site-header__inner { height: 74px; }
.site-header.is-scrolled .brand__img--wide { height: 48px; }
@media (max-width: 900px) { .site-header .brand__img--wide, .site-header.is-scrolled .brand__img--wide { height: 40px; } }
@media (max-width: 380px) { .site-header .brand__img--wide, .site-header.is-scrolled .brand__img--wide { height: 34px; } }

/* Top bar (phone · email · region) above the white header. Only the white header is sticky. */
.topbar { background: var(--navy-deep); color: var(--navy-text); font-size: 13px; }
.topbar__inner { display: flex; align-items: center; justify-content: space-between; gap: var(--s3); min-height: 38px; }
.topbar__area, .topbar__links a { display: inline-flex; align-items: center; gap: 7px; }
.topbar__area svg, .topbar__links svg { color: var(--gold); }
.topbar__links { display: flex; align-items: center; gap: var(--s4); }
.topbar__links a { color: var(--white); font-weight: 700; }
.topbar__links a:hover { color: var(--gold); }
@media (max-width: 639px) { .topbar { font-size: 12px; } .topbar__area { display: none; } .topbar__inner { justify-content: center; } .topbar__links { gap: var(--s3); } }
:root { --header: 80px; }
@media (max-width: 639px) { :root { --header: 64px; } }
.site-header .brand__img--wide { height: 52px; }
.site-header.is-scrolled .site-header__inner { height: 70px; }
.site-header.is-scrolled .brand__img--wide { height: 44px; }
.nav a { white-space: nowrap; padding: 10px 11px; }
@media (max-width: 1100px) { .nav a { padding: 10px 8px; font-size: 14px; } .site-header .brand__img--wide { height: 44px; } }
@media (max-width: 900px) { .site-header .brand__img--wide, .site-header.is-scrolled .brand__img--wide { height: 38px; } }

/* Client (7 Sep): white ground behind the logo in the mobile menu and the footer. */
.drawer__top { background: var(--white); border-bottom: 1px solid var(--line); }
.drawer__close { border-color: var(--line); color: var(--navy); }
.drawer .brand__img--wide { height: 38px; filter: none; }
.footer__about .brand { display: inline-flex; padding: 10px 14px; background: var(--white); border-radius: 10px; }
.footer__about .brand__img--wide { height: 44px; filter: none; }


.topbar__social svg, .footer__contact .icon-instagram { color: var(--gold); }


/* Navigation: Barlow Condensed caps — the same voice as the logo lockup. */
@font-face { font-family: "Barlow Condensed"; font-style: normal; font-weight: 600; font-display: swap; src: url("../fonts/barlow-condensed-600.woff2") format("woff2"); }
:root { --nav: "Barlow Condensed", "Arial Narrow", var(--sans); }
.nav a { font-family: var(--nav); font-weight: 600; font-size: 18px; letter-spacing: 0.05em; text-transform: uppercase; padding: 10px 13px; }
@media (max-width: 1200px) { .nav a { font-size: 17px; padding: 10px 10px; } }
@media (max-width: 1100px) { .site-header .header-actions .btn { display: none; } .nav a { font-size: 17px; padding: 10px 12px; } }

/* Phones: let the slider grow to the tallest slide instead of clipping it.
   Absolutely-positioned slides collapse the container, so a long headline
   overflowed upward and slid under the sticky header. Stacking them in one
   grid cell keeps the crossfade and gives the container a real height. */
@media (max-width: 639px) {
	.slider { display: grid; height: auto; min-height: 0; }
	.slide { position: relative; inset: auto; grid-area: 1 / 1; }
	.slide__inner { height: auto; align-items: center; }
	.slide__copy { padding: var(--s5) 0 var(--s7); }
}
