:root {
    --brand-primary: #002395;
    --brand-primary-dark: #001b73;
    --brand-accent: #ff5800;
    --bg-soft: #f5f5f5;
    --footer-bg: #1a1a1a;
    --footer-text: #cfcfcf;
    --text: #444;
    --heading: #222;
    --rule: #e6e6e6;
    --max-content: 1280px;
    --header-height: 120px;
}

*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Open Sans", Helvetica, Arial, sans-serif;
    font-size: 15px;
    line-height: 1.7;
    color: var(--text);
    background: #fff;
    padding-top: var(--header-height);
}

img { max-width: 100%; height: auto; display: block; }
a { color: var(--brand-primary); text-decoration: none; }
a:hover { color: var(--brand-accent); }

h1, h2, h3, h4, h5, h6 {
    font-family: "Lato", Helvetica, Arial, sans-serif;
    font-weight: 700;
    color: var(--heading);
    line-height: 1.25;
    margin: 0 0 0.6em;
}
h1 { font-size: 36px; }
h2 { font-size: 28px; }
h3 { font-size: 22px; }
h4 { font-size: 18px; }
p { margin: 0 0 1em; }
ul { padding-left: 1.2em; }

.container { max-width: var(--max-content); margin: 0 auto; padding: 0 24px; }
.center { text-align: center; }

/* ==========================================================================
   Header
   ========================================================================== */
#site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: #fff;
    border-bottom: 1px solid var(--rule);
    z-index: 100;
    height: var(--header-height);
}
#site-header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    gap: 24px;
}
#logo img {
    max-height: 96px;
    width: auto;
    display: block;
}

#main-nav ul {
    list-style: none;
    margin: 0; padding: 0;
    display: flex;
    gap: 8px;
    align-items: center;
}
#main-nav a {
    display: inline-block;
    padding: 10px 14px;
    color: #555;
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 17px;
    letter-spacing: 0;
    transition: color 0.2s;
}
#main-nav a:hover { color: var(--brand-accent); }
#main-nav .current-menu-item > a {
    color: var(--brand-accent);
}

#menu-toggle {
    display: none;
    background: none;
    border: 0;
    padding: 8px;
    cursor: pointer;
    color: var(--heading);
}
#menu-toggle .bar {
    display: block;
    width: 26px;
    height: 3px;
    background: currentColor;
    margin: 5px 0;
    transition: transform 0.2s, opacity 0.2s;
}

/* ==========================================================================
   Buttons
   ========================================================================== */
.btn {
    display: inline-block;
    padding: 14px 32px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 999px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1.2;
}
.btn-primary {
    background: var(--brand-primary);
    color: #fff;
}
.btn-primary:hover {
    background: var(--brand-primary-dark);
    color: #fff;
}
.btn-accent {
    background: var(--brand-accent);
    color: #fff;
}
.btn-accent:hover {
    background: #d34800;
    color: #fff;
}
.btn-soft {
    background: var(--bg-soft);
    color: var(--brand-accent);
    border-color: var(--bg-soft);
}
.btn-soft:hover {
    background: var(--brand-accent);
    color: #fff;
    border-color: var(--brand-accent);
}
.btn-light {
    background: #fff;
    color: var(--brand-accent);
    border-color: #fff;
    font-weight: 700;
}
.btn-light:hover {
    background: var(--brand-accent);
    color: #fff;
    border-color: var(--brand-accent);
}
.btn-large { padding: 18px 44px; font-size: 16px; }
.btn-dark {
    background: #2b2b2b;
    color: #fff;
    border-color: #2b2b2b;
}
.btn-dark:hover {
    background: var(--brand-accent);
    color: #fff;
    border-color: var(--brand-accent);
}

/* ==========================================================================
   Sections
   ========================================================================== */
.section {
    padding: 70px 0;
}
.section-soft { background: var(--bg-soft); }
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header h2,
.section-header h3 {
    margin-bottom: 12px;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    font-weight: 700;
}
.section-header p {
    max-width: 700px;
    margin: 0 auto;
}

/* Hero (static slider replacement) */
.hero {
    background: #fff url('/images/emf-running-tours-skyline.jpg') center bottom / cover no-repeat;
    height: 380px;
    margin-bottom: 0;
}
.hero-band {
    background: var(--brand-primary);
    margin-top: -1px;
    padding: 28px 0;
}
.hero-band .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.hero-band-title {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 26px;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Page heading band (for non-home pages) */
.page-heading {
    background: var(--bg-soft);
    padding: 50px 0;
    text-align: center;
    border-bottom: 1px solid var(--rule);
}
.page-heading h1 {
    margin: 0;
    color: var(--brand-primary);
}

/* Book page intro headline */
.book-intro {
    padding: 70px 0 30px;
    text-align: center;
}
.book-headline {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 0.02em;
    color: var(--heading);
    margin: 0;
    line-height: 1.35;
}

/* Book page CTA box (blue inset div, not a full-width banner) */
.book-cta {
    padding: 20px 0 80px;
}
.book-cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
    padding: 60px 140px;
    background: var(--brand-primary);
    border-radius: 0;
}
.book-cta-title {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 22px;
    color: #fff;
    margin: 0;
}

@media (max-width: 768px) {
    .book-intro { padding: 50px 0 20px; }
    .book-headline { font-size: 18px; }
    .book-cta { padding: 10px 0 50px; }
    .book-cta-inner {
        flex-direction: column;
        justify-content: center;
        text-align: center;
        padding: 32px 24px;
    }
}

/* Blue callout band — same layout as hero-band */
.callout {
    background: var(--brand-primary);
    color: #fff;
    padding: 38px 0;
}
.callout .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.callout-title {
    font-family: "Lato", sans-serif;
    font-weight: 400;
    font-size: 26px;
    color: #fff;
    margin: 0;
    letter-spacing: 0.01em;
}

/* Two-column intro */
.two-col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    align-items: center;
}
.video-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%;
    background: #000;
}
.video-wrapper iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* 3-column image grid */
.image-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.image-grid figure {
    margin: 0;
    text-align: center;
}
.image-grid img {
    width: 100%;
    height: auto;
    border-radius: 2px;
}
.image-grid figcaption {
    margin-top: 18px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 14px;
    color: var(--heading);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.image-grid img { border-radius: 0; }

/* Pricing tables */
.pricing-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 30px;
}
.pricing-card {
    background: #fff;
    border: 1px solid var(--rule);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 1px 4px rgba(0,0,0,0.05);
    text-align: center;
}
.pricing-head {
    background: #fff;
    color: var(--heading);
    padding: 26px 20px 22px;
    border-bottom: 1px solid var(--rule);
}
.pricing-name {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 18px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--heading);
}
.pricing-price-band {
    background: var(--brand-accent);
    color: #fff;
    padding: 28px 0;
    font-size: 56px;
    font-weight: 400;
    line-height: 1;
    font-family: "Lato", sans-serif;
}
.pricing-price-band .currency {
    font-size: 36px;
    vertical-align: baseline;
    margin-right: 6px;
}
.pricing-suffix {
    display: block;
    padding: 14px 0;
    font-style: italic;
    color: #888;
    font-size: 14px;
    border-bottom: 1px solid var(--rule);
}
.pricing-cta { padding: 36px 22px; }

.price-includes {
    margin-top: 32px;
}
.price-includes h3 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 0.02em;
    color: var(--heading);
    margin-bottom: 18px;
}

.feature-list {
    list-style: none;
    margin: 0;
    padding: 0;
}
.feature-list li {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    padding: 8px 0;
    font-size: 15px;
    line-height: 1.5;
    color: #666;
}
.feature-list li > .fa-circle-check,
.feature-list li > .fa-solid.fa-circle-check {
    color: var(--brand-accent);
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* Team grid */
.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 50px 40px;
}
.team-grid-2 {
    grid-template-columns: 1fr 1fr;
    max-width: 880px;
    margin: 0 auto;
}
.team-card {
    text-align: center;
}
.team-photo {
    width: 360px;
    max-width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    margin: 0 auto 22px;
    display: block;
    border-radius: 0;
}
.team-card h4 {
    margin: 0 0 18px;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
    color: var(--heading);
}
.team-card p {
    text-align: center;
    font-size: 15px;
    color: #666;
    line-height: 1.7;
}
.team-card p a { color: var(--brand-accent); }
.team-card p a:hover { color: var(--brand-primary-dark); }
.team-blog-cta {
    margin-top: 28px;
    margin-bottom: 0;
}

/* Skyline strip (between callout and partners) */
.skyline-strip {
    height: 360px;
    background: #fff url('/images/emf-running-tours-skyline.jpg') center bottom / cover no-repeat;
}

/* Partners strip */
.partners {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 150px;
    flex-wrap: wrap;
}
.partners img { max-height: 120px; width: auto; }

/* FAQs (rounded pill summary + separate answer box when open) */
.faq {
    margin-bottom: 12px;
}
.faq summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 26px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 13px;
    color: #777;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    line-height: 1.4;
    border: 1px solid #e5e5e5;
    border-radius: 999px;
    background: #fff;
    transition: background 0.2s, border-color 0.2s, color 0.2s;
}
.faq summary::-webkit-details-marker,
.faq summary::marker { display: none; }
.faq summary > i {
    color: var(--brand-accent);
    font-size: 22px;
    flex-shrink: 0;
    transition: color 0.2s;
}
.faq summary:hover {
    background: var(--brand-accent);
    border-color: var(--brand-accent);
    color: #fff;
}
.faq summary:hover > i {
    color: #fff;
}
.faq[open] summary {
    color: var(--brand-accent);
    background: #fff;
    border-color: #e5e5e5;
}
.faq[open] summary:hover {
    background: #fff;
    color: var(--brand-accent);
    border-color: #e5e5e5;
}
.faq[open] summary > i.fa-circle-plus::before {
    content: "\f056";
}
.faq[open] summary > i {
    color: var(--brand-accent);
}
.faq .faq-body {
    margin-top: 12px;
    padding: 30px 40px;
    font-size: 15px;
    color: #444;
    line-height: 1.7;
    border: 1px solid #e5e5e5;
    border-radius: 8px;
    background: #fff;
}
.faq .faq-body p { margin: 0 0 14px; }
.faq .faq-body p:last-child { margin-bottom: 0; }
.faq .faq-body ul { margin: 6px 0 14px 18px; }
.faq .faq-body ul li { padding: 3px 0; }

/* Contact page layout */
.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 50px;
    align-items: start;
}
.contact-sidebar { display: flex; flex-direction: column; gap: 28px; }
.tripadvisor-recommended {
    text-align: center;
}
.tripadvisor-recommended img { max-width: 100%; height: auto; }

/* TripAdvisor "Recommended on" widget (static replica) */
.ta-widget {
    display: block;
    max-width: 240px;
    margin: 0 auto;
    border: 4px solid #34e0a1;
    background: #34e0a1;
    text-decoration: none;
    line-height: 1.2;
    font-family: "Lato", sans-serif;
}
.ta-widget:hover { opacity: 0.9; }
.ta-widget-top {
    text-align: center;
    padding: 16px 14px 14px;
    color: #000;
}
.ta-widget-label {
    font-weight: 900;
    text-transform: uppercase;
    font-size: 17px;
    letter-spacing: 0.04em;
    margin-bottom: 8px;
    color: #000;
}
.ta-widget-logo {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: #000;
    font-weight: 700;
    font-size: 17px;
}
.ta-widget-logo i { font-size: 22px; }
.ta-widget-name {
    background: #fff;
    color: #000;
    text-align: center;
    padding: 12px 10px;
    font-weight: 700;
    font-size: 15px;
    text-decoration: underline;
    line-height: 1.35;
}

.contact-callout-card {
    border: 1px solid var(--rule);
    border-radius: 8px;
    padding: 30px 28px;
    text-align: center;
}
.contact-callout-card h3 {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--heading);
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0.02em;
    margin: 0 0 14px;
}
.contact-callout-card p {
    color: #888;
    font-size: 15px;
    margin: 0;
}

.contact-email-row {
    display: flex;
    align-items: center;
    gap: 18px;
}
.contact-email-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    border: 1px solid var(--rule);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: #50a2de;
    font-size: 22px;
    flex-shrink: 0;
}
.contact-email-row a {
    color: var(--brand-accent);
    font-size: 16px;
    font-weight: 600;
}
.contact-email-row a:hover { color: var(--brand-primary); }

@media (max-width: 980px) {
    .contact-layout { grid-template-columns: 1fr; }
    .contact-sidebar { max-width: 480px; margin: 0 auto; }
}

/* Contact info */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.contact-card {
    background: var(--bg-soft);
    padding: 28px;
    border-radius: 4px;
}
.contact-card h3 {
    color: var(--brand-primary);
    margin-bottom: 12px;
}

/* Long-form pages (terms, privacy, cookies) — full container width */
.longform { max-width: none; margin: 0; }
.longform p, .longform li { font-size: 15px; line-height: 1.75; }
.longform h2, .longform h3, .longform h4 {
    margin-top: 1.8em;
    color: var(--heading);
    font-family: "Lato", sans-serif;
    font-weight: 700;
}
.longform h3 { font-size: 17px; }
.longform ul {
    margin-left: 1.2em;
    margin-bottom: 1.2em;
}
.longform ul li {
    padding: 4px 0;
    color: #555;
}
.longform a {
    color: var(--brand-primary);
    text-decoration: underline;
}
.longform a:hover { color: var(--brand-accent); }

.longform-headline {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    color: var(--heading);
    font-size: 38px;
    letter-spacing: 0.01em;
    margin: 0 0 28px;
    line-height: 1.15;
}
.longform-subhead {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    color: var(--heading);
    font-size: 14px;
    letter-spacing: 0.04em;
    margin: 0 0 14px;
}
.plain-list {
    list-style: disc;
    padding-left: 22px;
    margin: 0 0 50px;
}
.plain-list li {
    color: #555;
    padding: 6px 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .longform-headline { font-size: 26px; }
}

.cookie-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 14px;
    font-size: 15px;
    color: #555;
}
.cookie-table th,
.cookie-table td {
    border: 1px solid #e5e5e5;
    padding: 22px 24px;
    text-align: left;
    vertical-align: top;
    line-height: 1.6;
    font-weight: 400;
    background: #fff;
}
.cookie-table th { color: #444; }
.cookie-table tr.section-row td { font-weight: 400; }
.cookie-table a { color: var(--brand-accent); }
.cookie-table a:hover { color: var(--brand-primary); }

.contact-email-card {
    background: var(--bg-soft);
    border: 1px solid var(--rule);
    border-radius: 4px;
    padding: 26px;
    text-align: center;
    margin-top: 36px;
}
.contact-email-card h3 {
    color: var(--brand-primary);
    text-transform: uppercase;
    letter-spacing: 0.04em;
    margin-bottom: 10px;
}
.contact-email-card a {
    font-size: 18px;
    font-weight: 700;
    color: var(--brand-primary);
}

.run4it-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.7fr) minmax(0, 1fr);
    gap: 60px;
    align-items: start;
}
.run4it-brand-row {
    display: flex;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-bottom: 24px;
}
.run4it-brand-row .run4it-logo { max-width: 220px; }
.run4it-brand-row .run4it-awards { max-width: 240px; }
.run4it-headline {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 22px;
    letter-spacing: 0.02em;
    color: var(--heading);
    margin: 28px 0 18px;
}
.run4it-runlab-title {
    font-family: "Lato", sans-serif;
    font-weight: 900;
    text-transform: uppercase;
    font-size: 28px;
    color: var(--heading);
    margin: 40px 0 6px;
}
.run4it-runlab-sub {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    text-transform: uppercase;
    font-size: 16px;
    letter-spacing: 0.02em;
    color: var(--heading);
    margin: 0 0 18px;
}
.run4it-runlab-image { margin-top: 30px; max-width: 620px; }

.run4it-side-card {
    background: var(--brand-primary);
    color: #fff;
    padding: 22px 24px;
    border-radius: 4px;
    font-size: 15px;
    line-height: 1.55;
}
.run4it-side-card p { margin: 0 0 12px; }
.run4it-side-card p:last-child { margin-bottom: 0; }
.run4it-side-card strong { font-weight: 700; }

.run4it-side-graphic { margin-top: 24px; }
.run4it-side-graphic img { width: 100%; }

.run4it-side-note {
    margin-top: 24px;
    font-size: 16px;
    line-height: 1.55;
    color: var(--text);
}
.run4it-side-note strong { color: var(--heading); }

.run4it-side-photo { margin-top: 24px; }

.run4it-credit {
    margin-top: 50px;
    padding-top: 22px;
    border-top: 1px solid var(--rule);
    font-size: 14px;
    color: var(--text);
}
.run4it-credit a { color: var(--brand-accent); }

@media (max-width: 768px) {
    .run4it-layout { grid-template-columns: 1fr; gap: 40px; }
    .run4it-brand-row {
        flex-direction: column;
        align-items: center;
        justify-content: center;
        text-align: center;
        gap: 24px;
        margin-bottom: 20px;
    }
    .run4it-brand-row .run4it-logo,
    .run4it-brand-row .run4it-awards { max-width: 200px; width: 100%; height: auto; }
    .run4it-main > p { text-align: center; }
    .run4it-headline { font-size: 20px; text-align: center; margin-top: 20px; }
    .run4it-runlab-title { font-size: 24px; text-align: center; margin-top: 32px; }
    .run4it-runlab-sub { font-size: 15px; text-align: center; }
    .run4it-runlab-image { margin: 24px auto 0; max-width: 100%; }
    .run4it-side-card { padding: 18px 20px; font-size: 14.5px; }
    .run4it-side-graphic img { max-width: 420px; margin: 0 auto; }
    .run4it-side-note { text-align: center; }
    .run4it-side-photo img { max-width: 100%; margin: 0 auto; }
    .run4it-credit { text-align: center; margin-top: 36px; }
    .cookie-table { display: block; }
    .cookie-table thead { display: none; }
    .cookie-table tbody { display: block; }
    .cookie-table tr { display: block; border: 1px solid #e5e5e5; margin-bottom: 14px; padding: 16px 18px; background: #fff; }
    .cookie-table td { display: block; border: 0; padding: 6px 0; }
    .cookie-table td:empty { display: none; }
    .cookie-table tr.section-row { background: var(--bg-soft); border-color: var(--rule); }
    .cookie-table tr.section-row td:first-child { font-weight: 700; color: var(--heading); }
    .cookie-table tr:not(.section-row) td:first-child { font-weight: 700; color: var(--heading); font-size: 16px; padding-bottom: 10px; border-bottom: 1px solid #eee; margin-bottom: 8px; }
}

/* ==========================================================================
   Footer
   ========================================================================== */
.footer-cta {
    background: var(--brand-primary);
    color: #fff;
    padding: 60px 0;
    text-align: center;
}
.footer-cta-title {
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 26px;
    margin: 0 0 24px;
    color: #fff;
}

#site-footer {
    background: #2a2a2a;
    color: #b8b8b8;
    padding: 70px 0 0;
}
#site-footer a { color: #b8b8b8; }
#site-footer a:hover { color: var(--brand-accent); }

.footer-cols {
    display: grid;
    grid-template-columns: 1fr 1fr 1.2fr 1.2fr;
    gap: 40px;
    margin-bottom: 48px;
}

.ig-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    margin-bottom: 14px;
}
.ig-grid a {
    display: block;
    aspect-ratio: 1;
    background: #1a1a1a center / cover no-repeat;
    transition: opacity 0.2s;
}
.ig-grid a:hover { opacity: 0.8; }
.ig-handle { font-size: 13px; }
.footer-col h3 {
    color: #fff;
    font-family: "Lato", sans-serif;
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    margin-bottom: 22px;
}
.footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0 0 22px;
}
.footer-col li { padding: 4px 0; font-size: 15px; }
.footer-col .footer-links-spacer { margin-top: 18px; }

.social-icons {
    display: flex;
    gap: 10px;
    margin-bottom: 30px;
}
.social-icons a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    background: #1a1a1a;
    border-radius: 50%;
    color: #999;
    transition: background 0.2s, color 0.2s;
}
.social-icons a:hover {
    background: var(--brand-accent);
    color: #fff;
}

.tripadvisor-badge img { max-width: 130px; height: auto; }

#site-footer form { margin-top: 0; }
#site-footer form .field {
    display: block;
    margin-bottom: 18px;
}
#site-footer form label {
    display: block;
    font-size: 14px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 400;
}
#site-footer form input[type="email"],
#site-footer form input[type="text"] {
    width: 100%;
    padding: 10px 12px;
    border: 1px solid #555;
    background: #fff;
    color: #222;
    border-radius: 0;
    font-size: 15px;
    font-family: inherit;
}
#site-footer form input[type="email"]:focus,
#site-footer form input[type="text"]:focus {
    outline: 2px solid var(--brand-accent);
    outline-offset: -1px;
}
#site-footer form input[type="submit"] {
    background: var(--brand-accent);
    color: #fff;
    border: 0;
    width: 100%;
    padding: 14px 28px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 16px;
    text-transform: none;
    letter-spacing: 0;
    border-radius: 0;
    cursor: pointer;
    margin-top: 10px;
}
#site-footer form input[type="submit"]:hover { background: #d34800; }
.mc-required { color: #fff; }
.mc-note { font-size: 13px; color: #fff; margin-top: 10px; }
.mc-unsub { display: block; font-size: 12px; text-align: center; margin-top: 14px; }
.mc-powered { display: block; font-size: 12px; text-align: center; margin-top: 6px; }

.pay360-block { margin-top: 26px; }
.pay360-block img { opacity: 0.75; }

#footer-base {
    background: #1a1a1a;
    padding: 18px 0;
    text-align: center;
    font-size: 13px;
    color: #999;
    margin-top: 20px;
}

/* ==========================================================================
   Cookie banner
   ========================================================================== */
#cookie-banner {
    position: fixed;
    bottom: 0; left: 0; right: 0;
    background: rgba(0, 35, 149, 0.97);
    color: #fff;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 14px;
    z-index: 200;
}
#cookie-banner a { color: #fff; text-decoration: underline; }
#cookie-banner button {
    background: var(--brand-accent);
    color: #fff;
    border: 0;
    padding: 8px 22px;
    border-radius: 999px;
    font-family: "Lato", sans-serif;
    font-weight: 700;
    font-size: 13px;
    text-transform: uppercase;
    cursor: pointer;
}
#cookie-banner.is-hidden { display: none; }

/* ==========================================================================
   Responsive
   ========================================================================== */
@media (max-width: 980px) {
    .two-col,
    .pricing-row,
    .contact-grid,
    .image-grid,
    .team-grid,
    .footer-cols {
        grid-template-columns: 1fr 1fr;
    }
    .footer-cols { gap: 36px; }
}

@media (max-width: 768px) {
    :root { --header-height: 76px; }
    h1 { font-size: 28px; }
    h2 { font-size: 24px; }
    h3 { font-size: 20px; }
    .section { padding: 50px 0; }

    #main-nav {
        position: fixed;
        top: var(--header-height);
        left: 0; right: 0;
        background: #fff;
        border-top: 1px solid var(--rule);
        max-height: calc(100vh - var(--header-height));
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform 0.25s ease;
        box-shadow: -4px 0 16px rgba(0,0,0,0.08);
    }
    body.menu-open #main-nav { transform: translateX(0); }
    #main-nav ul {
        flex-direction: column;
        align-items: stretch;
        gap: 0;
    }
    #main-nav li { border-bottom: 1px solid var(--rule); }
    #main-nav a {
        display: block;
        padding: 18px 24px;
    }
    #main-nav .current-menu-item > a { border-bottom: none; background: var(--bg-soft); }
    #menu-toggle { display: block; }

    .two-col,
    .pricing-row,
    .contact-grid,
    .image-grid,
    .team-grid,
    .team-grid-2,
    .footer-cols {
        grid-template-columns: 1fr;
    }
    .partners { gap: 30px; flex-direction: column; }
    .partners img { max-height: 70px; }
    .callout .container {
        flex-direction: column;
        justify-content: center;
        text-align: center;
    }
    .hero { height: 240px; }
}

@media (max-width: 480px) {
    h1 { font-size: 24px; }
    .callout-title, .footer-cta-title { font-size: 22px; }
    .btn-large { padding: 14px 28px; font-size: 14px; }
    .pricing-price { font-size: 38px; }
}
