:root {
    --ink: #171914;
    --ink-soft: #30342d;
    --paper: #ffffff;
    --paper-2: #f3f7f0;
    --white: #ffffff;
    --red: #a40e12;
    --red-dark: #79080b;
    --green: #4c7b3a;
    --green-dark: #315f25;
    --green-pale: #edf4e9;
    --gold: #b79b67;
    --line: rgba(23, 25, 20, .14);
    --shadow: 0 24px 60px rgba(18, 21, 16, .14);
    --radius: 22px;
    --container: min(1180px, calc(100vw - 34px));
    --serif: Georgia, 'Times New Roman', serif;
    --sans: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
section[id] { scroll-margin-top: 72px; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--white);
    font-family: var(--sans);
    line-height: 1.7;
    text-rendering: optimizeLegibility;
    overflow-x: hidden;
}
body.modal-open { overflow: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button, input, textarea, select { font: inherit; }
button { color: inherit; }
.container { width: var(--container); margin-inline: auto; }
.honeypot { position: absolute !important; left: -10000px !important; width: 1px !important; height: 1px !important; overflow: hidden !important; }
.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: fixed; z-index: 1000; top: 12px; left: 12px; padding: 10px 14px;
    background: #fff; color: #000; border-radius: 6px; transform: translateY(-160%);
}
.skip-link:focus { transform: translateY(0); }

.site-header {
    position: fixed; z-index: 100; inset: 0 0 auto; background: rgba(255,255,255,.97);
    border-bottom: 1px solid rgba(23,25,20,.09); box-shadow: 0 5px 20px rgba(25,31,22,.05);
    transition: box-shadow .3s ease, transform .3s ease;
}
.site-header.scrolled {
    background: rgba(255,255,255,.98); backdrop-filter: blur(14px); box-shadow: 0 10px 34px rgba(25,31,22,.11);
}
.header-inner {
    width: min(1400px, calc(100vw - 24px));
    min-height: 72px; margin: 0 auto; display: flex; align-items: center; gap: 22px;
}
.brand { display: inline-flex; width: 138px; flex: 0 0 auto; }
.brand img { width: 100%; height: auto; }
.primary-nav {
    margin-left: auto; display: flex; align-items: center; gap: clamp(14px, 2vw, 28px);
    color: var(--ink-soft); font-size: .76rem; font-weight: 750; text-transform: uppercase; letter-spacing: .11em;
}
.primary-nav a { position: relative; padding: 8px 0; }
.primary-nav a::after {
    content: ''; position: absolute; left: 0; bottom: 0; width: 0; height: 2px; background: var(--green); transition: width .25s ease;
}
.primary-nav a:hover::after, .primary-nav a:focus-visible::after { width: 100%; }
.header-cta {
    display: inline-flex; align-items: center; justify-content: center; min-height: 42px; padding: 0 18px;
    color: #fff; background: var(--green); border: 1px solid var(--green); border-radius: 999px;
    font-size: .75rem; font-weight: 800; letter-spacing: .1em; text-transform: uppercase;
}
.header-cta:hover { background: var(--green-dark); border-color: var(--green-dark); }
.menu-toggle { display: none; background: transparent; border: 0; padding: 12px; cursor: pointer; }
.menu-toggle span:not(.sr-only) { display: block; width: 26px; height: 2px; margin: 5px 0; background: var(--ink); }

.hero {
    position: relative; min-height: 100svh; display: grid; place-items: center; color: #fff; isolation: isolate; overflow: hidden;
}
.hero-media {
    position: absolute; inset: 0; z-index: -3;
    background: url('../images/lodges-in-magaliesburg-mountain-view.webp') center 44% / cover no-repeat;
    transform: scale(1.02);
}
.hero-overlay {
    position: absolute; inset: 0; z-index: -2;
    background:
        linear-gradient(180deg, rgba(0,0,0,.48) 0%, rgba(0,0,0,.08) 38%, rgba(0,0,0,.52) 100%),
        linear-gradient(90deg, rgba(14,18,12,.42), rgba(14,18,12,.03) 66%);
}
.hero-content { padding-top: 130px; padding-bottom: 100px; }
.hero-kicker, .eyebrow {
    margin: 0 0 14px; font-size: .77rem; font-weight: 800;
    text-transform: uppercase; letter-spacing: .22em;
}
.hero-kicker { color: #f3e8d4; }
.eyebrow { color: var(--green); }
.hero h1 {
    max-width: 760px; margin: 0; font-family: var(--serif); font-size: clamp(3.2rem, 9vw, 7.4rem);
    font-weight: 400; line-height: .92; letter-spacing: -.045em;
}
.hero-line { margin: 26px 0 0; font-family: var(--serif); font-size: clamp(1.15rem, 2.5vw, 1.65rem); font-style: italic; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.button {
    appearance: none; display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    min-height: 50px; padding: 0 24px; border: 1px solid transparent; border-radius: 999px;
    cursor: pointer; font-size: .78rem; font-weight: 800; letter-spacing: .11em; text-transform: uppercase;
    transition: transform .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--green); color: #fff; }
.button-primary:hover { background: var(--green-dark); }
.button-ghost { background: rgba(255,255,255,.06); border-color: rgba(255,255,255,.55); color: #fff; backdrop-filter: blur(8px); }
.button-ghost:hover { background: #fff; color: var(--ink); }
.button-dark { width: 100%; background: var(--green-dark); color: #fff; }
.button-dark:hover { background: var(--green); }
.button-light { background: #fff; color: var(--ink); }
.scroll-cue {
    position: absolute; left: 50%; bottom: 26px; display: grid; place-items: center; width: 34px; height: 54px;
    border: 1px solid rgba(255,255,255,.48); border-radius: 999px; transform: translateX(-50%);
}
.scroll-cue span { width: 4px; height: 9px; background: #fff; border-radius: 9px; animation: scrollCue 1.8s infinite; }
@keyframes scrollCue { 0% { transform: translateY(-7px); opacity: 0; } 35% { opacity: 1; } 100% { transform: translateY(8px); opacity: 0; } }

.section { padding: clamp(78px, 10vw, 138px) 0; }
.section h2, .mountain-copy h2, .contact-heading h2, .directions-card h2 {
    margin: 0; font-family: var(--serif); font-weight: 400; font-size: clamp(2.5rem, 5vw, 4.8rem); line-height: 1.02; letter-spacing: -.035em;
}
.section h3 { line-height: 1.35; }
.split-grid { display: grid; grid-template-columns: .92fr 1.08fr; gap: clamp(42px, 7vw, 100px); align-items: center; }
.section-copy h3 { margin: 24px 0; font-family: var(--serif); font-size: clamp(1.35rem, 2.4vw, 2rem); font-weight: 400; }
.section-copy p { max-width: 650px; color: #4d5149; }
.image-frame { position: relative; margin: 0; width: 100%; max-width: 560px; aspect-ratio: 1 / 1; justify-self: end; overflow: hidden; }
.image-frame::before {
    content: ''; position: absolute; inset: 20px -20px -20px 20px; border: 1px solid rgba(76,123,58,.58); z-index: -1;
}
.image-frame img { width: 100%; height: 100%; object-fit: cover; box-shadow: var(--shadow); }
.image-frame figcaption { position: absolute; right: -12px; bottom: 30px; max-width: 220px; padding: 14px 18px; background: var(--green-dark); color: #fff; font-family: var(--serif); font-style: italic; }
.text-actions { margin-top: 30px; }
.text-link {
    display: inline-flex; align-items: center; gap: 8px; color: var(--green); font-size: .78rem; font-weight: 800;
    letter-spacing: .1em; text-transform: uppercase; border-bottom: 1px solid currentColor; padding-bottom: 3px;
}
.text-link span { transition: transform .2s ease; }
.text-link:hover span { transform: translateX(4px); }
.button-link { padding: 0; background: none; border: 0; cursor: pointer; }

.rooms-section { background: var(--green-pale); color: var(--ink); }
.section-heading { max-width: 780px; margin-bottom: clamp(36px, 5vw, 64px); }
.section-heading > p:last-child { max-width: 640px; color: #696e65; }
.rooms-section .section-heading > p:last-child { color: #5f685b; }
.room-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.room-card { display: flex; flex-direction: column; background: #fff; color: var(--ink); min-width: 0; border: 1px solid rgba(76,123,58,.16); box-shadow: 0 14px 36px rgba(35,55,29,.08); }
.room-image { position: relative; overflow: hidden; aspect-ratio: 1 / 1; background: #edf2ea; }
.room-image img { width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.room-card:hover .room-image img { transform: scale(1.035); }
.room-number {
    position: absolute; top: 16px; right: 16px; display: grid; place-items: center; width: 48px; height: 48px;
    border-radius: 50%; background: rgba(49,95,37,.9); color: #fff; font-size: .72rem; letter-spacing: .12em;
}
.room-content { padding: 28px; }
.room-content h3 { margin: 0 0 14px; font-size: 1rem; letter-spacing: .12em; }
.room-content p { min-height: 112px; color: #5a5f56; font-size: .94rem; }

.facilities-section { background: #fff; }
.facility-grid { display: grid; grid-template-columns: repeat(12, 1fr); gap: 20px; }
.facility-card {
    display: flex; flex-direction: column; grid-column: span 6; overflow: hidden; background: #fff; color: var(--ink);
    border: 1px solid var(--line); box-shadow: 0 15px 38px rgba(21,24,18,.07);
}
.facility-card.facility-large { grid-column: span 6; }
.facility-card::after { display: none; }
.facility-image { aspect-ratio: 1 / 1; overflow: hidden; background: #edf2ea; }
.facility-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s ease; }
.facility-card:hover .facility-image img { transform: scale(1.025); }
.facility-content { padding: clamp(26px, 4vw, 42px); }
.facility-content h3 { margin: 0 0 14px; font-family: var(--serif); font-size: clamp(1.9rem, 3vw, 3rem); font-weight: 400; }
.facility-content p { max-width: 900px; margin: 0 0 12px; color: #5f655b; font-size: .94rem; }
.facility-content .text-link { margin-top: 10px; color: var(--green); }

.book-experiences-section { background: var(--paper-2); overflow: hidden; }
.experience-header { display: grid; grid-template-columns: 1fr 1fr; gap: 30px; align-items: end; margin-bottom: 42px; }
.experience-header > p { max-width: 550px; margin: 0 0 6px; color: #61665d; }
.experience-scroller {
    display: grid; grid-auto-flow: column; grid-auto-columns: minmax(300px, 360px); gap: 18px;
    overflow-x: auto; padding: 2px max(0px, calc((100vw - min(1180px, calc(100vw - 34px))) / 2)) 24px;
    scroll-snap-type: x mandatory; scrollbar-width: thin;
}
.experience-card { display: flex; flex-direction: column; scroll-snap-align: start; background: #fff; border: 1px solid rgba(76,123,58,.14); box-shadow: 0 15px 40px rgba(21,24,18,.07); }
.experience-image { aspect-ratio: 1 / 1; overflow: hidden; background: #edf2ea; }
.experience-image img { display: block; width: 100%; height: 100%; object-fit: cover; }
.experience-card-body { padding: 25px; }
.experience-card h3 { margin: 10px 0; font-family: var(--serif); font-size: 1.8rem; font-weight: 400; }
.experience-card p { color: #62675e; min-height: 78px; }
.experience-meta { display: flex; flex-wrap: wrap; gap: 10px; color: var(--green); font-size: .7rem; font-weight: 800; text-transform: uppercase; letter-spacing: .08em; }
.experience-price { min-height: 34px; margin: 18px 0; font-weight: 700; }

.mountain-section { display: grid; grid-template-columns: 1.15fr .85fr; min-height: 720px; background: #eef4eb; color: var(--ink); }
.mountain-image { background: url('../images/lodges-in-magaliesburg-forest-entrance.webp') center / cover no-repeat; }
.mountain-copy { display: flex; flex-direction: column; justify-content: center; padding: clamp(50px, 8vw, 110px); }
.mountain-copy p { color: #5f685b; }
.mountain-copy h2 { margin-bottom: 28px; }

.gallery-section { background: #fff; }
.gallery-carousel { display: grid; gap: 14px; }
.gallery-stage-wrap { position: relative; max-width: min(920px, 100%); margin: 0 auto; }
.gallery-stage {
    position: relative; display: block; width: 100%; aspect-ratio: 1 / 1; padding: 0; border: 0; overflow: hidden;
    background: #e9ede6; cursor: zoom-in; text-align: left;
}
.gallery-stage > img { width: 100%; height: 100%; object-fit: cover; }
.gallery-stage-footer {
    position: absolute; inset: auto 0 0; display: flex; align-items: center; justify-content: space-between; gap: 18px;
    padding: 36px 28px 22px; color: #fff; background: linear-gradient(180deg, transparent, rgba(16,24,13,.76));
}
.gallery-stage-footer > span:first-child { font-family: var(--serif); font-size: clamp(1.05rem, 2vw, 1.45rem); }
.gallery-counter { flex: 0 0 auto; font-size: .78rem; font-weight: 800; letter-spacing: .1em; }
.gallery-arrow {
    position: absolute; z-index: 3; top: 50%; display: grid; place-items: center; width: 48px; height: 48px;
    padding: 0; border: 1px solid rgba(255,255,255,.7); border-radius: 50%; background: rgba(255,255,255,.92);
    color: var(--ink); font-size: 2rem; line-height: 1; cursor: pointer; transform: translateY(-50%); box-shadow: 0 8px 28px rgba(0,0,0,.16);
}
.gallery-arrow:hover { background: #fff; color: var(--green-dark); }
.gallery-arrow-prev { left: 18px; }
.gallery-arrow-next { right: 18px; }
.gallery-thumbnails {
    display: grid; grid-template-columns: repeat(9, minmax(0, 1fr)); gap: 10px;
    width: 100%; max-width: min(920px, 100%); margin: 0 auto; padding: 2px 0 8px; overflow: hidden;
}
.gallery-thumbnail {
    width: 100%; min-width: 0; aspect-ratio: 1 / 1; overflow: hidden; scroll-snap-align: start;
    padding: 0; border: 2px solid transparent; background: #e8ece5; cursor: pointer; opacity: .68;
    transition: opacity .2s ease, border-color .2s ease, transform .2s ease;
}
.gallery-thumbnail img { display: block; width: 100%; height: 100%; object-fit: cover; }
.gallery-thumbnail:hover, .gallery-thumbnail.is-active { opacity: 1; }
.gallery-thumbnail.is-active { border-color: var(--green); transform: translateY(-2px); }

.contact-section { background: #f8faf7; }
.contact-heading { margin-bottom: 50px; }
.contact-grid { display: grid; grid-template-columns: .8fr 1.2fr; gap: clamp(50px, 8vw, 110px); }
.contact-details h2 { margin: 0 0 38px; font-size: 1rem; text-transform: uppercase; letter-spacing: .16em; }
.contact-block { padding: 24px 0; border-top: 1px solid var(--line); }
.contact-block h3 { margin: 0 0 8px; font-family: var(--serif); font-size: 1.5rem; font-weight: 400; }
.contact-block p { margin: 0; color: #5b6057; }
.contact-form, .booking-form, .form-row { display: grid; gap: 18px; }
.form-row { grid-template-columns: 1fr 1fr; }
.contact-form label, .booking-form label { display: grid; gap: 7px; font-size: .72rem; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; }
.contact-form input, .contact-form textarea, .booking-form input, .booking-form textarea, .booking-form select {
    width: 100%; border: 0; border-bottom: 1px solid #9b9f96; background: transparent; padding: 12px 2px;
    color: var(--ink); font-size: 1rem; font-weight: 400; letter-spacing: 0; text-transform: none; outline: none;
}
.contact-form input:focus, .contact-form textarea:focus, .booking-form input:focus, .booking-form textarea:focus, .booking-form select:focus { border-color: var(--green); }
.form-feedback { min-height: 24px; color: var(--green); font-size: .9rem; }
.form-feedback.error { color: var(--red); }

.directions-section { position: relative; min-height: 610px; background: #ddd; }
.directions-section iframe { width: 100%; height: 610px; border: 0; filter: grayscale(1) contrast(.9); }
.directions-card {
    position: absolute; z-index: 2; left: max(17px, calc((100vw - min(1180px, calc(100vw - 34px))) / 2)); top: 50%;
    width: min(420px, calc(100vw - 34px)); padding: clamp(34px, 5vw, 54px); background: #fff; color: var(--ink); transform: translateY(-50%); border-left: 5px solid var(--green); box-shadow: var(--shadow);
}
.directions-card p:not(.eyebrow) { color: #62695f; }
.directions-card .button { margin-top: 18px; background: var(--green); color: #fff; }
.directions-card .button:hover { background: var(--green-dark); }

.site-footer { padding: 72px 0 24px; background: #f4f7f1; color: var(--ink); border-top: 1px solid rgba(76,123,58,.14); }
.footer-grid { display: grid; grid-template-columns: 1.4fr .6fr .8fr; gap: 60px; }
.footer-grid > div:first-child img { width: 150px; height: auto; object-fit: contain; margin-bottom: 18px; }
.footer-grid p { max-width: 430px; color: #62695f; }
.footer-grid h2 { font-size: .74rem; text-transform: uppercase; letter-spacing: .16em; color: var(--green-dark); }
.footer-grid a, .footer-grid button { display: block; margin: 12px 0; padding: 0; border: 0; background: none; color: #555d52; cursor: pointer; text-align: left; }
.footer-grid a:hover, .footer-grid button:hover { color: var(--green-dark); }
.footer-bottom { display: flex; justify-content: flex-start; gap: 20px; margin-top: 60px; padding-top: 20px; border-top: 1px solid rgba(23,25,20,.12); font-size: .78rem; }
.footer-bottom p { margin: 0; color: #70776d; }

.modal { position: fixed; z-index: 500; inset: 0; display: none; align-items: center; justify-content: flex-end; }
.modal.is-open { display: flex; }
.modal-backdrop { position: absolute; inset: 0; background: rgba(5,8,4,.72); backdrop-filter: blur(4px); }
.modal-panel {
    position: relative; z-index: 1; width: min(690px, 100%); height: 100%; overflow-y: auto; padding: clamp(32px, 6vw, 70px);
    background: var(--paper); box-shadow: -30px 0 80px rgba(0,0,0,.28); animation: modalIn .35s ease both;
}
@keyframes modalIn { from { transform: translateX(40px); opacity: 0; } }
.modal-close { position: absolute; top: 18px; right: 24px; width: 42px; height: 42px; border: 0; background: transparent; font-size: 2rem; cursor: pointer; }
.modal-intro { margin-bottom: 34px; }
.modal-intro h2 { margin: 0; font-family: var(--serif); font-size: clamp(2.4rem, 6vw, 4rem); font-weight: 400; }
.modal-intro p:last-child { color: #666b62; }
.booking-form { grid-template-columns: 1fr 1fr; }
.booking-form .full { grid-column: 1 / -1; }
.booking-form select { appearance: auto; }
.consent { display: flex !important; grid-template-columns: auto 1fr; align-items: start; text-transform: none !important; letter-spacing: 0 !important; font-weight: 400 !important; }
.consent input { width: auto; margin-top: 7px; }
.booking-summary { padding: 16px; border-left: 3px solid var(--gold); background: #ebe5d8; color: #52574e; font-size: .9rem; }
.lightbox { position: fixed; z-index: 600; inset: 0; display: none; place-items: center; padding: 30px; background: rgba(0,0,0,.92); }
.lightbox.is-open { display: grid; }
.lightbox img { max-width: min(1200px, 94vw); max-height: 88vh; box-shadow: 0 20px 80px rgba(0,0,0,.5); }
.lightbox-close { position: fixed; top: 18px; right: 24px; border: 0; background: none; color: #fff; font-size: 2.6rem; cursor: pointer; }

.reveal { opacity: 0; transform: translateY(24px); transition: opacity .75s ease, transform .75s ease; }
.reveal.visible { opacity: 1; transform: none; }

@media (max-width: 980px) {
    .header-inner { min-height: 70px; }
    .menu-toggle { display: block; margin-left: auto; }
    .header-cta { display: none; }
    .primary-nav {
        position: fixed; inset: 70px 12px auto; display: none; padding: 18px; background: rgba(255,255,255,.99);
        border: 1px solid rgba(23,25,20,.12); box-shadow: 0 18px 42px rgba(23,25,20,.14); flex-direction: column; align-items: stretch; gap: 0;
    }
    .primary-nav.open { display: flex; }
    .primary-nav a { padding: 14px 8px; border-bottom: 1px solid rgba(23,25,20,.08); }
    .split-grid, .contact-grid, .mountain-section { grid-template-columns: 1fr; }
    .image-frame { width: min(680px, 94%); margin: 30px auto 0; }
    .room-grid { grid-template-columns: 1fr; }
    .room-content p { min-height: auto; }
    .facility-card, .facility-card.facility-large { grid-column: span 12; }
    .mountain-image { min-height: 580px; }
    .experience-header { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
    :root { --container: min(100% - 26px, 1180px); }
    .brand { width: 120px; }
    .hero-content { padding-top: 110px; }
    .hero h1 { font-size: clamp(3rem, 17vw, 5.4rem); }
    .hero-actions { flex-direction: column; align-items: stretch; width: min(100%, 340px); }
    .section { padding: 78px 0; }
    .image-frame::before { inset: 12px -10px -12px 10px; }
    .image-frame figcaption { right: -6px; bottom: 18px; }
    .facility-content { padding: 28px 22px; }
    .facility-content p { font-size: .88rem; line-height: 1.55; }
    .experience-scroller { grid-auto-columns: minmax(284px, 84vw); }
    .mountain-image { min-height: 430px; }
    .mountain-copy { padding: 70px 24px; }
    .gallery-arrow { width: 42px; height: 42px; }
    .gallery-arrow-prev { left: 10px; }
    .gallery-arrow-next { right: 10px; }
    .gallery-stage-footer { padding: 30px 16px 14px; }
    .gallery-thumbnails {
        grid-template-columns: none; grid-auto-flow: column; grid-auto-columns: 88px; justify-content: start;
        max-width: 100%; overflow-x: auto; padding-bottom: 10px; scroll-snap-type: x proximity;
    }
    .form-row, .booking-form { grid-template-columns: 1fr; }
    .booking-form .full { grid-column: auto; }
    .directions-section { display: grid; }
    .directions-card { position: relative; inset: auto; width: 100%; transform: none; }
    .directions-section iframe { height: 430px; }
    .footer-grid { grid-template-columns: 1fr; }
    .footer-grid > div:first-child { grid-column: auto; }
    .footer-bottom { flex-direction: column; }
    .modal-panel { padding: 62px 22px 30px; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
    .reveal { opacity: 1; transform: none; }
}

/* Static one-page edition */
.contact-panel {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 18px;
    align-content: start;
}
.contact-card {
    min-height: 155px;
    padding: 28px;
    background: #fff;
    border: 1px solid rgba(76,123,58,.15);
    box-shadow: 0 14px 36px rgba(35,55,29,.07);
}
.contact-card h3 {
    margin: 0 0 10px;
    font-family: var(--serif);
    font-size: 1.45rem;
    font-weight: 400;
}
.contact-card p { margin: 0; color: #5b6057; }
.contact-card a:not(.button) { color: var(--green-dark); font-weight: 700; }
.contact-buttons .button { color: #fff; }
.contact-buttons { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 28px; }
.contact-buttons .button { min-width: 180px; }
.experience-card-body { display: flex; flex: 1; flex-direction: column; }
.experience-card-body .button { margin-top: auto; }
.external-note { margin-top: 16px; color: #6a7066; font-size: .86rem; }

@media (max-width: 680px) {
    .contact-panel { grid-template-columns: 1fr; }
    .contact-buttons { flex-direction: column; }
    .contact-buttons .button { width: 100%; }
}
