/* =============================================================
   INBOUND SPAIN — site.css
   Single shared stylesheet. All pages link this file.
   Never write inline styles for brand decisions.
   ============================================================= */

/* -------------------------------------------------------------
   FONTS
   ------------------------------------------------------------- */

@import url('https://fonts.googleapis.com/css2?family=Abril+Fatface&family=Lato:wght@300;400;700&display=swap');

/* -------------------------------------------------------------
   CUSTOM PROPERTIES
   ------------------------------------------------------------- */

:root {
    --navy:      #274472;
    --coral:     #E56B5A;
    --sand:      #EDE6D6;
    --warm-gray: #7A7062;
    --white:     #FFFFFF;
}

/* -------------------------------------------------------------
   RESET AND BASE
   ------------------------------------------------------------- */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    font-size: 17px;
}

body {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 300;
    color: var(--warm-gray);
    background-color: var(--white);
    line-height: 1.7;
    letter-spacing: 0.01em;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

ul {
    list-style: none;
}

a {
    color: var(--navy);
    text-decoration: none;
    transition: color 0.2s;
}

a:hover {
    color: var(--coral);
}

/* -------------------------------------------------------------
   TYPOGRAPHY
   ------------------------------------------------------------- */

h1, h2, h3, h4 {
    font-family: 'Abril Fatface', Georgia, serif;
    font-weight: normal;
    color: var(--navy);
}

h5, h6 {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    color: var(--warm-gray);
}

h1 {
    font-size: 48px;
    line-height: 1.2;
    letter-spacing: -0.01em;
    margin-bottom: 0.5em;
}

h2 {
    font-size: 36px;
    line-height: 1.25;
    letter-spacing: -0.01em;
    margin-bottom: 0.5em;
}

h3 {
    font-size: 28px;
    line-height: 1.3;
    margin-bottom: 0.4em;
}

h4 {
    font-size: 22px;
    line-height: 1.35;
    margin-bottom: 0.4em;
}

h5 {
    font-size: 16px;
    line-height: 1.4;
    letter-spacing: 0.05em;
    margin-bottom: 0.4em;
}

h6 {
    font-size: 14px;
    line-height: 1.4;
    letter-spacing: 0.08em;
    margin-bottom: 0.3em;
}

p {
    margin-bottom: 1.5em;
}

p:last-child {
    margin-bottom: 0;
}

/* -------------------------------------------------------------
   LAYOUT
   ------------------------------------------------------------- */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
}

section {
    padding: 80px 0;
}

/* -------------------------------------------------------------
   SECTION LABELS
   ------------------------------------------------------------- */

.section-label {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--warm-gray);
    margin-bottom: 24px;
}

.section-label::before,
.section-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background-color: currentColor;
    opacity: 0.4;
}

/* -------------------------------------------------------------
   SECTION INTRO
   ------------------------------------------------------------- */

.section-intro {
    max-width: 640px;
    margin-bottom: 48px;
}

/* -------------------------------------------------------------
   BUTTONS
   ------------------------------------------------------------- */

.btn {
    display: inline-block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 0;
    border: 2px solid transparent;
    cursor: pointer;
    text-decoration: none;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

/* Hero buttons — coral on navy background */
.btn-hero {
    background-color: var(--coral);
    color: var(--sand);
    border-color: var(--coral);
}

.btn-hero:hover {
    background-color: var(--white);
    color: var(--coral);
    border-color: var(--white);
}

/* Pre-footer button — navy on coral background */
.btn-prefooter {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

.btn-prefooter:hover {
    background-color: var(--white);
    color: var(--navy);
    border-color: var(--white);
}

/* Standard CTA — audience pages, forms */
.btn-standard {
    background-color: var(--coral);
    color: var(--white);
    border-color: var(--coral);
}

.btn-standard:hover {
    background-color: var(--navy);
    color: var(--white);
    border-color: var(--navy);
}

/* -------------------------------------------------------------
   HEADER AND NAVIGATION
   ------------------------------------------------------------- */

.site-header {
    background-color: var(--navy);
    position: sticky;
    top: 0;
    z-index: 100;
}

.nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 32px;
    height: 72px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}

.nav-logo-text {
    font-family: 'Abril Fatface', Georgia, serif;
    font-weight: normal;
    font-size: 20px;
    color: var(--white);
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-logo:hover .nav-logo-text {
    color: var(--sand);
}

/* Primary nav list */
.nav-menu {
    display: flex;
    align-items: center;
}

.nav-menu > li {
    position: relative;
}

.nav-menu > li > a {
    display: block;
    padding: 24px 18px;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--white);
    transition: color 0.2s;
}

.nav-menu > li > a:hover {
    color: var(--coral);
}

/* Dropdown */
.nav-menu .dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background-color: var(--white);
    min-width: 210px;
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.12);
}

.nav-menu .has-dropdown:hover .dropdown {
    display: block;
}

.nav-menu .dropdown li a {
    display: block;
    padding: 13px 20px;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--navy);
    transition: color 0.2s;
}

.nav-menu .dropdown li a:hover {
    color: var(--coral);
}

/* Mobile hamburger button */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    color: var(--white);
    line-height: 1;
}

.nav-toggle svg {
    width: 24px;
    height: 24px;
    stroke: currentColor;
    stroke-width: 2;
    fill: none;
    stroke-linecap: round;
    stroke-linejoin: round;
}

/* -------------------------------------------------------------
   HERO
   ------------------------------------------------------------- */

.hero {
    background-color: var(--navy);
    background-size: cover;
    background-position: center;
    position: relative;
    padding: 120px 0;
}

/* Dark overlay for text legibility */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: rgba(39, 68, 114, 0.70);
}

/* Lift content above the overlay */
.hero .container {
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 680px;
}

.hero h1 {
    color: var(--white);
    font-size: 52px;
    margin-bottom: 24px;
}

.hero-subline {
    color: var(--sand);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 300;
    margin-bottom: 40px;
}

.hero-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* -------------------------------------------------------------
   PILLARS SECTION (Why Partner With Us)
   ------------------------------------------------------------- */

.pillars-section {
    background-color: var(--sand);
}

.pillars-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 48px;
    margin-top: 8px;
}

.pillars-grid-2 {
    grid-template-columns: repeat(2, 1fr);
}

.pillar-cta {
    margin-top: 24px;
}

.pillar h3 {
    font-size: 22px;
    margin-bottom: 12px;
}

/* -------------------------------------------------------------
   DESTINATIONS SECTION
   ------------------------------------------------------------- */

.destinations-section {
    background-color: var(--white);
}

.dest-grids {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-top: 8px;
}

.dest-grid-1,
.dest-grid-2 {
    display: grid;
    gap: 8px;
}

.dest-grid-1 {
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 200px 200px;
}

.dest-grid-2 {
    grid-template-columns: 1fr 1fr 2fr;
    grid-template-rows: 200px 200px;
}

/* Individual tile */
.dest-tile {
    position: relative;
    display: block;
    overflow: hidden;
    background-size: cover;
    background-position: center;
    text-decoration: none;
}

.dest-tile::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(39, 68, 114, 0.72) 0%, rgba(39, 68, 114, 0.08) 55%);
    transition: opacity 0.3s;
}

.dest-tile:hover::before {
    background: linear-gradient(to top, rgba(39, 68, 114, 0.88) 0%, rgba(39, 68, 114, 0.30) 60%);
}

.dest-tile-label {
    position: absolute;
    bottom: 18px;
    left: 20px;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.07em;
    text-transform: uppercase;
    color: var(--white);
}

/* Anchor tile spans both rows */
.dest-tile.anchor {
    grid-row: 1 / 3;
}

/* Placeholder background colors (replaced by background-image when photos are added) */
.dest-andalusia  { background-color: #8B7A5E; }
.dest-barcelona  { background-color: #5E6E82; }
.dest-mallorca   { background-color: #4E7A6A; }
.dest-valencia   { background-color: #82684E; }
.dest-galicia    { background-color: #4A6656; }
.dest-basque     { background-color: #5E4E3E; }
.dest-cantabria  { background-color: #4A5E6E; }
.dest-madrid     { background-color: #6E5E4A; }
.dest-asturias   { background-color: #4A6656; }
.dest-castilla   { background-color: #7A5A3A; }

/* -------------------------------------------------------------
   PROGRAMS SECTION
   ------------------------------------------------------------- */

.programs-section {
    background-color: var(--white);
}

.programs-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
    margin-top: 8px;
}

.program-card {
    border: 1px solid var(--sand);
    overflow: hidden;
    transition: box-shadow 0.2s;
}

.program-card:hover {
    box-shadow: 0 6px 24px rgba(39, 68, 114, 0.10);
}

.program-card-image {
    height: 200px;
    background-size: cover;
    background-position: center;
    background-color: var(--sand);
}

.program-card-body {
    padding: 28px;
}

.program-card-tag {
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--coral);
    margin-bottom: 10px;
}

.program-card-body h3 {
    font-size: 22px;
    margin-bottom: 6px;
}

.program-card-meta {
    font-size: 13px;
    color: var(--warm-gray);
    font-weight: 400;
    margin-bottom: 14px;
}

.program-card-body p {
    font-size: 15px;
    line-height: 1.65;
}

.programs-inline-cta {
    text-align: center;
    margin-top: 48px;
    font-size: 16px;
}

/* -------------------------------------------------------------
   PRE-FOOTER CTA
   ------------------------------------------------------------- */

.prefooter-cta {
    background-color: var(--coral);
    padding: 88px 0;
    text-align: center;
}

.prefooter-cta h2 {
    color: var(--white);
    margin-bottom: 16px;
}

.prefooter-cta p {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 40px;
    opacity: 0.92;
}

/* -------------------------------------------------------------
   FOOTER
   ------------------------------------------------------------- */

.site-footer {
    background-color: var(--navy);
    color: var(--sand);
    padding: 64px 0 32px;
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    margin-bottom: 48px;
}

.footer-brand-name {
    font-family: 'Abril Fatface', Georgia, serif;
    font-weight: normal;
    font-size: 20px;
    color: var(--white);
    display: block;
    margin-bottom: 12px;
    letter-spacing: 0.02em;
}

.footer-brand p {
    color: var(--sand);
    font-size: 14px;
    line-height: 1.7;
    opacity: 0.75;
}

.footer-col h6 {
    color: var(--white);
    font-size: 11px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 18px;
    opacity: 0.7;
}

.footer-col ul li {
    margin-bottom: 10px;
}

.footer-col ul li a {
    color: var(--sand);
    font-size: 14px;
    opacity: 0.75;
    transition: color 0.2s, opacity 0.2s;
}

.footer-col ul li a:hover {
    color: var(--coral);
    opacity: 1;
}

.footer-bar {
    border-top: 1px solid rgba(237, 230, 214, 0.18);
    padding-top: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 12px;
    color: var(--sand);
    opacity: 0.55;
    flex-wrap: wrap;
    gap: 8px;
}

.footer-bar a {
    color: inherit;
    transition: opacity 0.2s;
}

.footer-bar a:hover {
    opacity: 1;
    color: var(--coral);
}

.footer-legal-links {
    display: flex;
    gap: 24px;
}

/* -------------------------------------------------------------
   INFORMATIONAL PAGE SECTIONS
   ------------------------------------------------------------- */

.info-section {
    background-color: var(--white);
}

.info-section.bg-sand {
    background-color: var(--sand);
}

/* Also allow bg-sand on other section types */
.programs-section.bg-sand {
    background-color: var(--sand);
}

/* -------------------------------------------------------------
   CAPABILITIES GRID (What We Handle)
   ------------------------------------------------------------- */

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 36px;
    margin-top: 8px;
}

.capability-card h4 {
    margin-bottom: 10px;
}

.capability-card p {
    font-size: 15px;
    line-height: 1.65;
}

/* -------------------------------------------------------------
   PROCESS GRID (How We Work With You)
   ------------------------------------------------------------- */

.process-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px 36px;
    margin-top: 8px;
}

.process-step {
    position: relative;
}

.process-number {
    display: block;
    font-family: 'Abril Fatface', Georgia, serif;
    font-weight: normal;
    font-size: 36px;
    color: var(--sand);
    line-height: 1;
    margin-bottom: 12px;
}

.bg-sand .process-number,
.info-section.bg-sand .process-number {
    color: var(--white);
}

.process-step h4 {
    margin-bottom: 10px;
}

.process-step p {
    font-size: 15px;
    line-height: 1.65;
}

/* Program card detail line (operator metadata) */
.program-card-detail {
    font-size: 12px;
    font-weight: 400;
    color: var(--warm-gray);
    margin-top: 10px;
    letter-spacing: 0.02em;
}

/* Program card link (view program details) */
.program-card-link {
    margin-top: 14px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.02em;
}

/* -------------------------------------------------------------
   FAQ ACCORDION
   ------------------------------------------------------------- */

.faq-section {
    background-color: var(--sand);
}

.faq-list {
    max-width: 800px;
}

.faq-item {
    border-bottom: 1px solid rgba(122, 112, 98, 0.2);
}

.faq-item:first-child {
    border-top: 1px solid rgba(122, 112, 98, 0.2);
}

.faq-question {
    display: block;
    padding: 24px 40px 24px 0;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 16px;
    color: var(--navy);
    cursor: pointer;
    position: relative;
    list-style: none;
}

/* Remove default marker */
.faq-question::-webkit-details-marker {
    display: none;
}

.faq-question::marker {
    display: none;
    content: '';
}

/* Custom chevron */
.faq-question::after {
    content: '';
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 12px;
    height: 12px;
    border-right: 2px solid var(--navy);
    border-bottom: 2px solid var(--navy);
    transform: translateY(-50%) rotate(45deg);
    transition: transform 0.2s;
}

.faq-item[open] .faq-question::after {
    transform: translateY(-30%) rotate(-135deg);
}

.faq-answer {
    padding: 0 40px 24px 0;
}

.faq-answer p {
    font-size: 15px;
    line-height: 1.7;
}

/* -------------------------------------------------------------
   PAGE HERO (interior pages)
   ------------------------------------------------------------- */

.page-hero {
    background-color: var(--navy);
    padding: 80px 0;
}

.page-hero h1 {
    color: var(--white);
    margin-bottom: 20px;
}

.page-hero-aside {
    font-size: 13px;
    color: var(--sand);
    opacity: 0.55;
    margin-top: 32px;
}

.page-hero-aside a {
    color: var(--sand);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.page-hero-aside a:hover {
    opacity: 1;
    color: var(--white);
}

.page-hero-sub {
    color: var(--sand);
    font-size: 18px;
    line-height: 1.65;
    font-weight: 300;
    max-width: 680px;
    opacity: 0.9;
}

/* -------------------------------------------------------------
   CONTACT PAGE
   ------------------------------------------------------------- */

.contact-section {
    background-color: var(--white);
}

.contact-layout {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 64px;
    align-items: start;
}

/* --- Form fields --- */

.form-group {
    margin-bottom: 24px;
}

.form-row-half {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

label {
    display: block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 8px;
}

.required {
    color: var(--coral);
}

input[type="text"],
input[type="email"],
select,
textarea {
    width: 100%;
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-gray);
    background-color: var(--white);
    border: 1px solid var(--sand);
    padding: 12px 16px;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
    appearance: none;
    -webkit-appearance: none;
    border-radius: 0;
}

input[type="text"]:focus,
input[type="email"]:focus,
select:focus,
textarea:focus {
    outline: none;
    border-color: var(--navy);
    background-color: var(--sand);
    color: var(--navy);
}

textarea {
    resize: vertical;
    min-height: 120px;
}

select {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7062' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

/* Submit button inherits .btn .btn-standard */

.contact-form-col .btn {
    margin-top: 8px;
}

/* --- Honeypot (screen-reader and bot only) --- */

.visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* --- HubSpot form overrides --- */

#hubspot-form .hs-form-field {
    margin-bottom: 24px;
}

#hubspot-form label:not(.hs-error-msg) {
    display: block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.04em;
    color: var(--navy);
    margin-bottom: 8px;
}

#hubspot-form .hs-input {
    width: 100%;
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 15px;
    font-weight: 300;
    color: var(--warm-gray);
    background-color: var(--white);
    border: 1px solid var(--sand);
    padding: 12px 16px;
    border-radius: 0;
    transition: border-color 0.2s, background-color 0.2s, color 0.2s;
    box-sizing: border-box;
}

#hubspot-form .hs-input:focus {
    outline: none;
    border-color: var(--navy);
    background-color: var(--sand);
    color: var(--navy);
}

#hubspot-form textarea.hs-input {
    resize: vertical;
    min-height: 120px;
}

#hubspot-form select.hs-input {
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237A7062' stroke-width='1.5' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

#hubspot-form .hs-submit {
    margin-top: 8px;
}

#hubspot-form .hs-button {
    display: inline-block;
    font-family: 'Lato', system-ui, sans-serif;
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 0;
    border: 2px solid var(--coral);
    background-color: var(--coral);
    color: var(--white);
    cursor: pointer;
    transition: background-color 0.2s, color 0.2s, border-color 0.2s;
}

#hubspot-form .hs-button:hover {
    background-color: var(--navy);
    border-color: var(--navy);
    color: var(--white);
}

#hubspot-form .hs-error-msgs {
    list-style: none;
    padding: 0;
    margin: 6px 0 0;
}

#hubspot-form .hs-error-msg {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 12px;
    font-weight: 400;
    color: var(--coral);
}

#hubspot-form .hs-richtext {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 15px;
    color: var(--warm-gray);
    line-height: 1.65;
}

#hubspot-form .submitted-message {
    font-family: 'Lato', system-ui, sans-serif;
    font-size: 18px;
    color: var(--navy);
    line-height: 1.6;
    padding: 24px 0;
}

/* --- Form row base --- */

.form-row {
    margin-bottom: 0;
}

/* --- Contact info sidebar --- */

.contact-info-col {
    padding-top: 8px;
}

.contact-info-block {
    margin-bottom: 32px;
}

.contact-info-block:last-child {
    margin-bottom: 0;
}

.contact-info-block h5 {
    color: var(--navy);
    margin-bottom: 8px;
}

.contact-info-block p {
    font-size: 15px;
    line-height: 1.65;
}

/* --- Pre-footer with multiple buttons --- */

.prefooter-buttons {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* -------------------------------------------------------------
   MOBILE — max-width: 768px
   ------------------------------------------------------------- */

@media (max-width: 768px) {

    html { font-size: 16px; }

    h1 { font-size: 34px; }
    h2 { font-size: 28px; }
    h3 { font-size: 22px; }

    .container { padding: 0 20px; }

    section { padding: 56px 0; }

    /* --- Navigation --- */

    .nav-toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .nav-menu {
        display: none;
        flex-direction: column;
        align-items: stretch;
        position: absolute;
        top: 72px;
        left: 0;
        right: 0;
        background-color: var(--navy);
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-bottom: 12px;
    }

    .nav-menu.is-open {
        display: flex;
    }

    .nav-menu > li > a {
        padding: 14px 24px;
    }

    /* Mobile dropdown: revealed by JS-toggled class */
    .nav-menu .dropdown {
        position: static;
        display: none;
        box-shadow: none;
        background-color: transparent;
    }

    .nav-menu .has-dropdown.is-open .dropdown {
        display: block;
    }

    .nav-menu .dropdown li a {
        color: var(--sand);
        padding: 10px 24px 10px 44px;
        font-size: 13px;
        opacity: 0.8;
    }

    .nav-menu .dropdown li a:hover {
        color: var(--coral);
        opacity: 1;
    }

    /* --- Hero --- */

    .hero { padding: 72px 0; }

    .hero h1 { font-size: 34px; }

    .hero-subline { font-size: 16px; }

    .hero-buttons {
        flex-direction: column;
        align-items: flex-start;
    }

    .hero-buttons .btn { text-align: center; }

    /* --- Pillars --- */

    .pillars-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    /* --- Destinations --- */

    .dest-grid-1,
    .dest-grid-2 {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        gap: 16px;
    }

    .dest-tile,
    .dest-tile.anchor {
        grid-row: auto;
        height: 64px;
    }

    .dest-tile-label {
        bottom: 50%;
        transform: translateY(50%);
        left: 16px;
    }

    /* --- Programs --- */

    .programs-grid {
        grid-template-columns: 1fr;
    }

    /* --- Capabilities and Process grids --- */

    .capabilities-grid,
    .process-grid {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    /* --- FAQ --- */

    .faq-question {
        font-size: 15px;
        padding: 20px 36px 20px 0;
    }

    .faq-answer {
        padding: 0 36px 20px 0;
    }

    /* --- Page Hero --- */

    .page-hero { padding: 56px 0; }

    .page-hero h1 { font-size: 34px; }

    .page-hero-sub { font-size: 16px; }

    /* --- Contact --- */

    .contact-layout {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .form-row-half {
        grid-template-columns: 1fr;
        gap: 0;
    }

    /* --- Footer --- */

    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer-bar {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .footer-legal-links {
        justify-content: center;
        flex-wrap: wrap;
        gap: 16px;
    }
}
