/* AGS Ultra-Luxury — FINAL palette (locked 22 May 2026) */
/* Fonts: Playfair Display (headings) + Rubik (body) */
/* Desert Night #0A0909 | Savanna Gold #8D6E50 | Taupe Clay #CDC9BB | Alabaster #FCFBF7 */

:root {
    --dark: #0A0909;
    --gold: #8D6E50;
    --stone: #CDC9BB;
    --white: #FCFBF7;
    --off-white: #FCFBF7;
    --text: #0A0909;
    --text-light: #9A938A;
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Rubik', Helvetica, Arial, sans-serif;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --header-height: 80px;
}

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

html {
    font-size: 16px;
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    color: var(--text);
    background: var(--white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body.no-scroll {
    overflow: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
}

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

/* ─── HEADER ─── */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    transition: background var(--transition), backdrop-filter var(--transition);
    background: transparent;
}

.site-header.menu-open {
    background: rgba(252, 251, 247, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
}

.site-header.scrolled {
    background: var(--white);
}

.header-inner {
    max-width: 100%;
    height: 100%;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

/* Header Logo */
.header-logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    z-index: 1001;
}

.header-logo img {
    height: 50px;
    width: auto;
    display: block;
}

/* Logo colour: white by default, black when header has a light background */
.header-logo .logo-black {
    display: none;
}

.site-header.menu-open .header-logo .logo-white,
.site-header.scrolled .header-logo .logo-white {
    display: none;
}

.site-header.menu-open .header-logo .logo-black,
.site-header.scrolled .header-logo .logo-black {
    display: block;
}

/* Header Actions */
.header-actions {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    z-index: 1001;
}

/* CTA Button — solid gold */
.cta-btn {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    border: 1px solid var(--white);
    padding: 0.6rem 1.5rem;
    transition: all var(--transition);
    background: var(--gold);
}

.cta-btn:hover {
    background: #7A5E45;
    border-color: #7A5E45;
    color: var(--white);
}

/* Hamburger */
.hamburger {
    width: 28px;
    height: 20px;
    position: relative;
    cursor: pointer;
    background: none;
    border: none;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 0;
    z-index: 1001;
}

.hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--white);
    transition: all var(--transition);
    transform-origin: center;
}

.site-header.scrolled .hamburger span {
    background: var(--dark);
}

.hamburger.active span:nth-child(1) {
    transform: translateY(9px) rotate(45deg);
    background: var(--dark);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
}

.hamburger.active span:nth-child(3) {
    transform: translateY(-9px) rotate(-45deg);
    background: var(--dark);
}

/* ─── MENU OVERLAY ─── */
.menu-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    z-index: 999;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.5s ease;
    overflow-y: auto;
}

.menu-overlay.active {
    opacity: 1;
    pointer-events: all;
}

.menu-nav {
    padding-top: var(--header-height);
}

.menu-nav ul {
    list-style: none;
    text-align: center;
}

.menu-nav li {
    margin: 1.5rem 0;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.4s ease;
    transition-delay: calc(0.08s * var(--i, 0));
}

.menu-overlay.active .menu-nav li {
    opacity: 1;
    transform: translateY(0);
}

.menu-nav li:nth-child(1) { --i: 1; }
.menu-nav li:nth-child(2) { --i: 2; }
.menu-nav li:nth-child(3) { --i: 3; }
.menu-nav li:nth-child(4) { --i: 4; }
.menu-nav li:nth-child(5) { --i: 5; }
.menu-nav li:nth-child(6) { --i: 6; }
.menu-nav li:nth-child(7) { --i: 7; }
.menu-nav li:nth-child(8) { --i: 8; }

.menu-nav a {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    color: var(--dark);
    text-decoration: none;
    transition: color var(--transition);
    display: inline-block;
    position: relative;
}

.menu-nav a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.4s ease;
}

.menu-nav a:hover {
    color: var(--gold);
}

.menu-nav a:hover::after {
    width: 100%;
}

@media (max-width: 768px) {
    .menu-nav a {
        font-size: 1.8rem;
    }
    .menu-nav li {
        margin: 1rem 0;
    }
}

/* ─── HERO ─── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
}

.hero-video video,
.hero-video img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

@media (max-width: 768px) {
    .header-inner {
        padding: 0 1rem;
    }
    .cta-btn {
        font-size: 0.7rem;
        padding: 0.5rem 1rem;
    }
}

/* ─── VISUAL DISCLAIMER ─── */
.visual-disclaimer {
    text-align: center;
    font-size: 0.6rem;
    font-weight: 300;
    color: var(--text-light);
    letter-spacing: 0.04em;
    padding: 0.75rem 1rem 0;
    margin: 0;
    line-height: 1.4;
    background: var(--white);
}

/* ─── SECTION: Intro ─── */
.intro {
    padding: 6rem 0;
    text-align: center;
    background: var(--white);
}

.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 1rem;
}

.intro h2 {
    font-family: var(--font-heading);
    font-size: 2.75rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.intro p {
    max-width: 680px;
    margin: 0 auto;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text);
    line-height: 1.8;
}

@media (max-width: 768px) {
    .intro { padding: 4rem 0; }
    .intro h2 { font-size: 1.8rem; }
}

/* ─── EXPERIENCES SLIDER (Cheetah Plains style) ─── */
.experiences-slider {
    background: var(--dark);
    padding: 0;
}

.experiences-inner {
    display: flex;
    align-items: stretch;
    max-width: 100%;
}

.exp-slider-col {
    width: 58.333%;
    position: relative;
    overflow: hidden;
}

.exp-text-col {
    width: 41.667%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 5rem 4rem;
    color: var(--white);
}

.exp-text-col .section-label {
    color: var(--gold);
    margin-bottom: 1rem;
}

.exp-text-col h2 {
    font-family: var(--font-heading);
    font-size: 2.25rem;
    font-weight: 400;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--white);
}

.exp-text-col p {
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 300;
    line-height: 1.7;
    color: var(--stone);
}

.exp-cta {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    border: 1px solid var(--gold);
    padding: 0.75rem 2rem;
    transition: all var(--transition);
    align-self: flex-start;
}

.exp-cta:hover {
    background: var(--gold);
    color: var(--white);
}

/* Swiper slides */
.expSwiper {
    width: 100%;
    height: 100%;
}

.expSwiper .swiper-slide {
    height: 100%;
}

.exp-slide-link {
    display: block;
    position: relative;
    height: 100%;
    overflow: hidden;
}

.exp-slide-img {
    height: 100%;
    min-height: 500px;
}

.exp-slide-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.exp-slide-link:hover .exp-slide-img img {
    transform: scale(1.05);
}

.exp-slide-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 3rem 2.5rem;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(10, 9, 9, 0.85) 100%
    );
}

.exp-slide-content h3 {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.exp-slide-content p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--stone);
    margin-bottom: 1rem;
    max-width: 450px;
    line-height: 1.6;
}

.exp-slide-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--white);
    background: var(--gold);
    padding: 0.6rem 1.4rem;
    transition: all var(--transition);
}

.exp-slide-link:hover .exp-slide-btn {
    background: #7A5E45;
}

/* Slider Navigation */
.exp-slider-nav {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.exp-progress {
    width: 160px;
    height: 2px;
    background: rgba(205, 201, 187, 0.25);
    position: relative;
    border-radius: 1px;
    overflow: hidden;
}

.exp-progress-bar {
    height: 100%;
    width: 20%;
    background: var(--gold);
    border-radius: 1px;
    transition: width 0.6s ease;
}

.exp-arrows {
    display: flex;
    gap: 0.5rem;
}

.exp-arrow {
    width: 40px;
    height: 40px;
    border: 1px solid var(--stone);
    background: transparent;
    color: var(--stone);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all var(--transition);
    border-radius: 0;
}

.exp-arrow:hover {
    border-color: var(--gold);
    color: var(--gold);
}

@media (max-width: 1024px) {
    .experiences-inner {
        flex-direction: column;
    }
    .exp-slider-col,
    .exp-text-col {
        width: 100%;
    }
    .exp-text-col {
        padding: 3rem 2rem;
        text-align: center;
    }
    .exp-cta {
        align-self: center;
    }
    .exp-slide-img {
        min-height: 400px;
    }
}

@media (max-width: 640px) {
    .exp-text-col h2 {
        font-size: 1.6rem;
    }
    .exp-text-col {
        padding: 2rem 1.5rem;
    }
    .exp-slider-nav {
        bottom: 1rem;
        right: 1rem;
    }
    .exp-progress {
        width: 100px;
    }
    .exp-slide-content {
        padding: 2.5rem 1.5rem;
        background: linear-gradient(
            180deg,
            transparent 0%,
            rgba(10, 9, 9, 0.85) 60%
        );
    }
}

/* ─── EXPERIENCES GRID (6-square card pattern) ─── */
.exp-grid-section {
    padding: 6rem 0 4rem;
    background: var(--white);
    text-align: center;
}

.exp-grid-intro {
    font-family: var(--font-body);
    font-weight: 300;
    font-size: 1rem;
    color: var(--dark);
    max-width: 700px;
    margin: 0 auto 3rem;
    line-height: 1.7;
    opacity: 0.8;
}

.exp-grid-heading {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 3rem;
    line-height: 1.2;
}

.exp-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    background: var(--stone);
    max-width: 1200px;
    margin: 0 auto;
}

.exp-grid-card {
    position: relative;
    overflow: hidden;
    display: block;
    background: var(--dark);
}

.exp-grid-image {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.exp-grid-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s ease;
}

.exp-grid-card:hover .exp-grid-image img {
    transform: scale(1.08);
}

.exp-grid-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        transparent 40%,
        rgba(10, 9, 9, 0.8) 100%
    );
    transition: opacity 0.4s ease;
}

.exp-grid-card:hover .exp-grid-overlay {
    opacity: 0.9;
}

.exp-grid-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: 2rem;
    text-align: left;
    z-index: 2;
}

.exp-grid-content h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 0.4rem;
}

.exp-grid-content p {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--stone);
    margin-bottom: 1rem;
    line-height: 1.5;
}

/* Enquire CTA card in grid */
.exp-grid-cta {
    background: var(--gold);
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.exp-grid-cta-inner {
    padding: 2rem;
    text-align: center;
    color: var(--white);
}

.exp-grid-cta-inner h3 {
    font-family: var(--font-heading);
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 0.6rem;
    color: var(--white);
}

.exp-grid-cta-inner p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.5;
    margin-bottom: 1.2rem;
    opacity: 0.9;
}

.exp-grid-cta-btn {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.6rem 1.5rem;
    border: 1px solid var(--white);
    transition: all var(--transition);
}

.exp-grid-cta:hover .exp-grid-cta-btn {
    background: var(--white);
    color: var(--gold);
}

@media (max-width: 1024px) {
    .exp-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .exp-grid {
        grid-template-columns: 1fr;
    }
    .exp-grid-content {
        padding: 1.5rem;
    }
    .exp-grid-content h3 {
        font-size: 1.25rem;
    }
    .exp-grid-heading {
        font-size: 1.8rem;
    }
}

/* ─── DESTINATIONS ─── */
.destinations {
    padding: 4rem 0 6rem;
    background: var(--white);
}

.destinations-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem 4rem;
    max-width: 1000px;
    margin: 0 auto;
}

.destination-card h3 {
    font-family: var(--font-heading);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.destination-card p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.7;
    opacity: 0.8;
}

@media (max-width: 768px) {
    .destinations-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* ─── SPLIT DESTINATIONS ─── */
.split-destinations {
    padding: 6rem 0;
    background: var(--off-white);
}

.split-row {
    display: flex;
    align-items: center;
    gap: 4rem;
    max-width: 1100px;
    margin: 0 auto 4rem;
    padding: 0 1.5rem;
}

.split-row:last-child {
    margin-bottom: 0;
}

.split-row.reverse {
    flex-direction: row-reverse;
}

.split-image {
    flex: 0 0 45%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.split-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.split-text {
    flex: 1;
}

.split-text h3 {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--dark);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.split-text p {
    font-family: var(--font-body);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--dark);
    line-height: 1.7;
    opacity: 0.8;
}

/* Alternating tint every other row */
.split-row:nth-child(even) {
    background: rgba(205, 201, 187, 0.15);
    border-radius: 6px;
    padding: 2.5rem 1.5rem;
}

@media (max-width: 768px) {
    .split-row,
    .split-row.reverse {
        flex-direction: column;
        gap: 1.5rem;
        margin-bottom: 3rem;
    }
    .split-image {
        flex: none;
        width: 100%;
        aspect-ratio: 16 / 9;
    }
}

/* ─── TESTIMONIAL ─── */
.testimonial {
    padding: 6rem 0;
    background: var(--off-white);
    text-align: center;
}

.testimonial blockquote {
    font-family: var(--font-heading);
    font-size: 1.6rem;
    font-weight: 400;
    font-style: italic;
    color: var(--dark);
    max-width: 750px;
    margin: 0 auto 1.5rem;
    line-height: 1.6;
}

.testimonial cite {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--gold);
    font-style: normal;
    letter-spacing: 0.04em;
}

@media (max-width: 768px) {
    .testimonial { padding: 4rem 0; }
    .testimonial blockquote { font-size: 1.2rem; }
}

/* ─── CTA BANNER ─── */
.cta-banner {
    padding: 5rem 0;
    background: var(--stone);
    color: var(--text);
    text-align: center;
}

.cta-banner h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 400;
    margin-bottom: 1rem;
    color: var(--dark);
}

.cta-banner p {
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 300;
    color: var(--dark);
    opacity: 0.7;
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.6;
}

.cta-banner .cta-btn {
    display: inline-block;
    background: var(--dark);
    border-color: var(--dark);
    color: var(--white);
}

.cta-banner .cta-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: var(--white);
}

@media (max-width: 768px) {
    .cta-banner { padding: 3.5rem 1.5rem; }
    .cta-banner h2 { font-size: 1.5rem; }
    .cta-banner p { font-size: 0.9rem; }
}

/* ─── FOOTER ─── */
.site-footer {
    background: var(--dark);
    color: var(--stone);
    padding: 4rem 0 2rem;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand .footer-logo {
    max-width: 120px;
    height: auto;
    margin-bottom: 1rem;
    display: block;
}

.footer-brand .pts-bonded {
    font-family: var(--font-heading);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--gold);
    letter-spacing: 0.08em;
    margin-top: 0.5rem;
    margin-bottom: 0.5rem;
    display: inline-block;
    border: 1px solid var(--gold);
    padding: 0.4rem 1rem;
}

.footer-brand .pts-trust {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--stone);
    line-height: 1.5;
    opacity: 0.85;
    max-width: 320px;
}

.footer-brand p {
    font-size: 0.85rem;
    font-weight: 300;
    line-height: 1.6;
}

.footer-nav h4,
.footer-contact h4,
.footer-newsletter h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
    margin-bottom: 1rem;
}

/* Newsletter */
.footer-newsletter p {
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--stone);
    line-height: 1.5;
    margin-bottom: 1rem;
    opacity: 0.85;
}

.newsletter-form {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.newsletter-input {
    width: 100%;
    padding: 0.65rem 0.9rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 300;
    color: var(--dark);
    background: var(--white);
    border: 1px solid rgba(205, 201, 187, 0.3);
    border-radius: 2px;
    outline: none;
    transition: border-color var(--transition);
}

.newsletter-input:focus {
    border-color: var(--gold);
}

.newsletter-input::placeholder {
    color: rgba(10, 9, 9, 0.5);
}

.newsletter-btn {
    font-family: var(--font-body);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--white);
    background: var(--gold);
    border: none;
    padding: 0.65rem 1.25rem;
    cursor: pointer;
    transition: background var(--transition);
    border-radius: 2px;
    width: 100%;
}

.newsletter-btn:hover {
    background: #7A5E45;
}

.newsletter-note {
    font-size: 0.65rem;
    font-weight: 300;
    color: rgba(205, 201, 187, 0.4);
    margin-top: 0.4rem;
    line-height: 1.4;
}

.footer-nav a,
.footer-contact a {
    display: block;
    font-size: 0.85rem;
    font-weight: 300;
    color: var(--stone);
    margin-bottom: 0.5rem;
    transition: color var(--transition);
}

.footer-nav a:hover,
.footer-contact a:hover {
    color: var(--gold);
}

.footer-bottom {
    border-top: 1px solid rgba(205, 201, 187, 0.15);
    padding-top: 2rem;
    text-align: center;
}

.footer-bottom p {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(205, 201, 187, 0.5);
}

@media (max-width: 768px) {
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
}