:root { --navy: #0b2d3c; --navy-soft: #123d4f; --teal: #62d8d6; --teal-dark: #1f9da8; --gold: #f7b32b; --gold-dark: #de9718; --text: #183946; --muted: #5d7681; --bg: #f5fbfc; --white: #ffffff; --border: rgba(11, 45, 60, 0.1); --shadow: 0 20px 48px rgba(11, 45, 60, 0.1); --container: 1180px; --header-offset: 104px; } * { box-sizing: border-box; } html { scroll-behavior: smooth; } body { margin: 0; font-family: 'Poppins', sans-serif; color: var(--text); background: linear-gradient(180deg, #eefafb 0%, #f8fcfd 100%); } a { color: inherit; } img, video { display: block; max-width: 100%; } main { display: block; } section[id] { scroll-margin-top: var(--header-offset); } .container { width: min(calc(100% - 32px), var(--container)); margin: 0 auto; } .skip-link { position: absolute; left: -9999px; top: 0; } .skip-link:focus { left: 16px; top: 16px; z-index: 100; padding: 12px 16px; background: var(--navy); color: var(--white); border-radius: 12px; } .site-header { position: sticky; top: 0; z-index: 80; background: rgba(255, 255, 255, 0.92); backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px); border-bottom: 1px solid rgba(11, 45, 60, 0.08); box-shadow: 0 8px 24px rgba(11, 45, 60, 0.04); } .header-inner { min-height: 88px; display: flex; align-items: center; justify-content: space-between; gap: 24px; padding: 0 24px; } .brand, .footer-brand { text-decoration: none; } .brand img { height: 140px; width: auto; } .footer-brand img { height: 180px; width: auto; } /* NAVIGATION */ .site-nav { display: flex; align-items: center; gap: 34px; } .site-nav > a, .site-nav > .dropdown { flex-shrink: 0; } .site-nav a { position: relative; display: inline-flex; align-items: center; text-decoration: none; font-weight: 600; color: var(--navy); font-size: 1.08rem; letter-spacing: 0.01em; transition: color 0.25s ease, transform 0.25s ease; } .site-nav a::after { content: ''; position: absolute; left: 0; bottom: -8px; width: 100%; height: 3px; border-radius: 999px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); transform: scaleX(0); transform-origin: center; transition: transform 0.25s ease; } .site-nav a:hover, .site-nav a:focus-visible { color: var(--navy-soft); transform: translateY(-1px); } .site-nav a:hover::after, .site-nav a:focus-visible::after { transform: scaleX(1); } /* DROPDOWNS */ .dropdown { position: relative; } .dropbtn { cursor: pointer; } .dropdown::after { content: ''; position: absolute; left: 0; top: 100%; width: 100%; height: 14px; } .dropdown-content { display: none; position: absolute; top: 100%; left: 0; min-width: 230px; padding: 10px 0; margin-top: 8px; background: rgba(255, 255, 255, 0.98); border: 1px solid var(--border); border-radius: 14px; box-shadow: 0 14px 32px rgba(11, 45, 60, 0.12); overflow: hidden; z-index: 999; } .dropdown-content a { display: block; padding: 12px 18px; color: var(--navy); text-decoration: none; font-size: 0.98rem; font-weight: 600; transition: background 0.2s ease, color 0.2s ease; } .dropdown-content a::after { display: none; } .dropdown-content a:hover, .dropdown-content a:focus-visible { background: #f5f9fa; color: var(--navy-soft); transform: none; } .dropdown:hover .dropdown-content, .dropdown:focus-within .dropdown-content { display: block; } /* BUTTONS */ .nav-cta, .btn { display: inline-flex; align-items: center; justify-content: center; text-decoration: none; border-radius: 999px; font-weight: 800; } .nav-cta { min-height: 48px; padding: 0 20px; margin-left: 8px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #08222d; box-shadow: 0 12px 24px rgba(247, 179, 43, 0.22); transition: transform 0.25s ease, box-shadow 0.25s ease, filter 0.25s ease; } .nav-cta:hover, .nav-cta:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(247, 179, 43, 0.28); filter: brightness(1.02); } .nav-toggle { display: none; width: 48px; height: 48px; padding: 0; border: 0; background: transparent; cursor: pointer; } .nav-toggle span { display: block; width: 24px; height: 2px; margin: 5px auto; background: var(--navy); transition: transform 0.25s ease, opacity 0.25s ease; } .hero, .subhero { position: relative; } .hero { min-height: 84vh; display: flex; align-items: center; overflow: hidden; } .hero-video, .hero-overlay { position: absolute; inset: 0; } .hero-video { width: 100%; height: 100%; object-fit: cover; } .hero-overlay { background: linear-gradient(90deg, rgba(11, 45, 60, 0.84) 0%, rgba(11, 45, 60, 0.66) 42%, rgba(11, 45, 60, 0.4) 100%); } .hero-content { position: relative; z-index: 2; padding: 120px 0 96px; } .hero-copy { max-width: 740px; color: var(--white); } .eyebrow { display: inline-flex; align-items: center; min-height: 42px; padding: 10px 16px; border-radius: 999px; background: rgba(255, 255, 255, 0.14); color: #ddfbfb; font-size: 0.82rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; } .eyebrow-dark { background: rgba(98, 216, 214, 0.14); color: var(--teal-dark); } h1, h2, h3 { margin: 0; line-height: 1.04; letter-spacing: -0.03em; } h1 { margin-top: 18px; font-size: clamp(2.7rem, 6vw, 5.2rem); } h2 { font-size: clamp(1.8rem, 4vw, 3rem); } h3 { font-size: 1.28rem; } p, li { line-height: 1.8; } .hero-lead, .page-lead { font-size: clamp(1rem, 1.8vw, 1.14rem); margin: 22px 0 0; } .hero-lead { max-width: 60ch; color: rgba(255, 255, 255, 0.92); } .page-lead { max-width: 72ch; color: var(--muted); } .hero-actions { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; } .btn { min-height: 56px; padding: 0 24px; transition: transform 0.2s ease, box-shadow 0.2s ease; } .btn:hover, .btn:focus-visible { transform: translateY(-1px); } .btn-primary { background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #08222d; box-shadow: 0 14px 28px rgba(247, 179, 43, 0.24); } .btn-secondary { background: rgba(255, 255, 255, 0.12); color: var(--white); border: 1px solid rgba(255, 255, 255, 0.18); } .btn-block { width: 100%; } .section { padding: 88px 0; } .section-tight { padding: 68px 0; } .section-alt { background: rgba(255, 255, 255, 0.62); border-top: 1px solid rgba(11, 45, 60, 0.05); border-bottom: 1px solid rgba(11, 45, 60, 0.05); } .section-head { max-width: 760px; margin: 0 auto 34px; text-align: center; } .section-head.align-left { margin-left: 0; text-align: left; } .section-head p { color: var(--muted); margin: 14px 0 0; } .intro-grid, .city-grid { display: grid; gap: 24px; } .intro-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .city-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); } .info-card, .city-card, .content-panel, .sticky-box { background: rgba(255, 255, 255, 0.9); border: 1px solid var(--border); border-radius: 24px; box-shadow: var(--shadow); } .info-card, .city-card { padding: 28px; } .city-card-link h3 a { text-decoration: none; } .city-card p, .info-card p, .sticky-box p { margin: 14px 0 0; color: var(--muted); } .split-layout { display: grid; grid-template-columns: 0.95fr 1.05fr; gap: 42px; align-items: start; } .steps { display: grid; gap: 18px; } .step { display: grid; grid-template-columns: 68px 1fr; gap: 18px; align-items: start; padding: 24px; background: rgba(255, 255, 255, 0.88); border: 1px solid var(--border); border-radius: 22px; } .step span { display: inline-flex; align-items: center; justify-content: center; width: 52px; height: 52px; border-radius: 50%; background: rgba(98, 216, 214, 0.18); color: var(--teal-dark); font-weight: 800; } .faq-list { display: grid; gap: 16px; } .faq-item { background: rgba(255, 255, 255, 0.92); border: 1px solid var(--border); border-radius: 20px; padding: 0 22px; } .faq-item summary { cursor: pointer; list-style: none; padding: 20px 0; font-weight: 800; } .faq-item summary::-webkit-details-marker { display: none; } .faq-item p { margin: 0 0 20px; color: var(--muted); } .subhero { padding: 110px 0 62px; background: linear-gradient(180deg, rgba(255, 255, 255, 0.72) 0%, rgba(238, 250, 251, 0.96) 100%); } .subhero-city, .subhero-nyc { border-bottom: 1px solid rgba(11, 45, 60, 0.06); } .breadcrumbs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; color: var(--muted); font-size: 0.95rem; } .breadcrumbs a { text-decoration: none; } .city-layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr); gap: 28px; align-items: start; } .content-panel { padding: 34px; } .content-panel h2 + p, .content-panel ul + h2, .content-panel p + h2 { margin-top: 18px; } .check-list { padding-left: 20px; } .sidebar-panel { position: relative; } .sticky-box { position: sticky; top: calc(var(--header-offset) + 18px); padding: 28px; } .small-note { font-size: 0.92rem; } .site-footer { padding: 72px 0 24px; background: var(--navy); color: rgba(255, 255, 255, 0.9); } .footer-grid { display: grid; grid-template-columns: 1.4fr 0.8fr 0.8fr; gap: 28px; } .footer-grid h2 { font-size: 1.2rem; margin-bottom: 14px; } .footer-links { margin: 0; padding: 0; list-style: none; } .footer-links li + li { margin-top: 10px; } .footer-links a { text-decoration: none; } .footer-bottom { margin-top: 30px; padding-top: 18px; border-top: 1px solid rgba(255, 255, 255, 0.14); } .footer-bottom p { margin: 8px 0 0; } .footer-disclaimer { color: rgba(255, 255, 255, 0.75); font-size: 0.95rem; } @media (max-width: 980px) { :root { --header-offset: 92px; } .nav-toggle { display: inline-block; } .site-nav { position: absolute; top: calc(100% + 12px); right: 16px; left: 16px; display: none; flex-direction: column; align-items: stretch; gap: 14px; padding: 22px; background: rgba(255, 255, 255, 0.98); border: 1px solid var(--border); border-radius: 22px; box-shadow: 0 20px 48px rgba(11, 45, 60, 0.14); } .site-nav.is-open { display: flex; } .site-nav > a, .site-nav > .dropdown > .dropbtn, .nav-cta { font-size: 1.05rem; padding: 10px 0; } .site-nav a::after { bottom: -2px; } .dropdown { width: 100%; } .dropbtn { width: 100%; display: flex; align-items: center; justify-content: space-between; } .dropbtn::before { content: ''; display: none; } .dropbtn::after { content: '+'; position: static; width: auto; height: auto; background: none; transform: none; font-size: 1.2rem; line-height: 1; border-radius: 0; } .dropdown.is-open > .dropbtn::after { content: '−'; } .dropdown-content { display: none; position: static; min-width: 100%; margin-top: 6px; padding: 6px 0 0; border: 0; box-shadow: none; background: transparent; border-radius: 0; } .dropdown.is-open .dropdown-content { display: block; } .dropdown-content a { display: block; padding: 10px 0 10px 14px; font-size: 0.98rem; } .dropdown-content a:hover, .dropdown-content a:focus-visible { background: transparent; } .intro-grid, .city-grid, .split-layout, .city-layout, .footer-grid { grid-template-columns: 1fr; } .hero { min-height: 72vh; } } @media (max-width: 640px) { .header-inner { min-height: 78px; padding: 0 16px; } .brand img { height: 150px; width: auto; } .footer-brand img { height: 140px; width: auto; } .hero-content, .subhero { padding-top: 96px; } .hero-actions { flex-direction: column; align-items: stretch; } .btn { width: 100%; } .step { grid-template-columns: 1fr; } .info-card, .city-card, .content-panel, .sticky-box { padding: 22px; } } /* ── Header search ─────────────────────────────────────────── */ .header-search-wrap { position: relative; display: flex; align-items: center; } .nav-search-btn { background: none; border: none; cursor: pointer; padding: 6px 10px; color: inherit; display: flex; align-items: center; gap: 5px; font-size: 0.9rem; font-weight: 600; border-radius: 6px; transition: background .15s; white-space: nowrap; } .nav-search-btn:hover { background: rgba(0,0,0,.06); } .nav-search-btn svg { width: 17px; height: 17px; flex-shrink: 0; } .header-search-panel { display: none; position: absolute; top: calc(100% + 10px); right: 0; width: 340px; background: #fff; border: 1.5px solid #bbf7d0; border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.12); padding: 14px; z-index: 9999; } .header-search-panel.open { display: block; } .header-search-panel input { width: 100%; padding: 10px 14px; font-size: 0.95rem; border: 2px solid #bbf7d0; border-radius: 7px; outline: none; box-sizing: border-box; } .header-search-panel input:focus { border-color: #16a34a; } .hsearch-results { margin-top: 8px; max-height: 280px; overflow-y: auto; } .hsearch-results a { display: flex; justify-content: space-between; align-items: center; padding: 8px 10px; border-radius: 6px; text-decoration: none; color: #166534; font-size: 0.88rem; font-weight: 600; transition: background .12s; } .hsearch-results a:hover { background: #f0fdf4; } .hsearch-results a span { font-weight: 400; color: #6b7280; font-size: 0.8rem; } .hsearch-results .hs-empty { padding: 8px 10px; color: #6b7280; font-size: 0.85rem; } .hsearch-results .hs-more { display: block; padding: 6px 10px; color: #16a34a; font-size: 0.8rem; text-decoration: none; } .hsearch-results .hs-more:hover { background: #f0fdf4; border-radius: 6px; } .hsearch-footer { margin-top: 10px; padding-top: 10px; border-top: 1px solid #e5e7eb; text-align: center; } .hsearch-footer a { font-size: 0.82rem; color: #16a34a; text-decoration: none; font-weight: 600; } .hsearch-footer a:hover { text-decoration: underline; } @media (max-width: 768px) { .header-search-panel { width: calc(100vw - 32px); right: auto; left: 50%; transform: translateX(-50%); } } /* ── Nav search widget ─────────────────────────────────── */ .nav-search-wrap { position: relative; display: flex; align-items: center; } .nav-search-toggle { display: inline-flex; align-items: center; justify-content: center; gap: 6px; min-height: 48px; padding: 0 20px; margin-left: 8px; background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%); color: #08222d; border: none; border-radius: 999px; font-size: 0.95rem; font-weight: 800; font-family: inherit; cursor: pointer; box-shadow: 0 12px 24px rgba(247,179,43,.22); transition: transform .25s ease, box-shadow .25s ease, filter .25s ease; } .nav-search-toggle:hover, .nav-search-toggle:focus-visible { transform: translateY(-2px); box-shadow: 0 18px 30px rgba(247,179,43,.28); filter: brightness(1.02); } .nav-search-toggle svg { width: 16px; height: 16px; } .nav-search-box { display: none; position: absolute; top: calc(100% + 10px); right: 0; width: 320px; background: #fff; border: 1.5px solid #e2e8f0; border-radius: 10px; box-shadow: 0 8px 24px rgba(0,0,0,.12); z-index: 999; overflow: hidden; } .nav-search-box.is-open { display: block; } .nav-search-box input { width: 100%; padding: 12px 16px; border: none; border-bottom: 1px solid #e2e8f0; font-size: 0.95rem; font-family: inherit; outline: none; box-sizing: border-box; } .nav-search-results { max-height: 320px; overflow-y: auto; } .nav-search-results a { display: block; padding: 10px 16px; text-decoration: none; color: #1a1a1a; font-size: 0.9rem; border-bottom: 1px solid #f1f5f9; } .nav-search-results a:last-child { border-bottom: none; } .nav-search-results a:hover, .nav-search-results a.active { background: #f0fdf4; color: #166534; } .nav-search-results .no-result { padding: 12px 16px; color: #888; font-size: 0.9rem; } @media(max-width:980px){ .nav-search-box { right: auto; left: 0; width: 280px; } }