/* Reset and Base Styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --black: #0a0a0a;
    --charcoal: #1a1a1a;
    --graphite: #2a2a2a;
    --light-gray: #3a3a3a;
    --lighter-gray: #4a4a4a;
    --off-white: #f5f5f0;
    --warm-white: #fafaf5;
    --gold: #d4af37;
    --gold-light: #e5c158;
    --gold-dark: #b8941f;
    --text-primary: #f5f5f0;
    --text-secondary: #e0e0e0;
    --text-light: #f0f0f0;
    --ease-smooth: cubic-bezier(0.25, 0.46, 0.45, 0.94);
    --ease-out-smooth: cubic-bezier(0.16, 1, 0.3, 1);
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-weight: 300;
    color: var(--text-primary);
    background-color: var(--black);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
    padding-top: 64px;
}

/* Scroll Progress Indicator */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    background: linear-gradient(to right, var(--gold), var(--gold-light));
    width: 0%;
    z-index: 9999;
    transition: width 0.15s var(--ease-smooth);
}

/* Cookie Consent Banner */
.cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    border-top: 1px solid rgba(212, 175, 55, 0.3);
    padding: 1.5rem 2rem;
    z-index: 9997;
    opacity: 0;
    transform: translateY(100%);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

.cookie-banner.show {
    opacity: 1;
    transform: translateY(0);
}

.cookie-content {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cookie-text {
    flex: 1;
    min-width: 280px;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.5;
}

.cookie-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cookie-btn {
    padding: 0.75rem 1.75rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 400;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.cookie-btn--accept {
    background: var(--gold);
    color: var(--black);
}

.cookie-btn--accept:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.cookie-btn--decline {
    background: transparent;
    color: var(--text-secondary);
    border: 1px solid rgba(212, 175, 55, 0.4);
}

.cookie-btn--decline:hover {
    border-color: var(--gold);
    color: var(--gold-light);
}

/* Site Header - logo + hamburger dropdown */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 9998;
    background: rgba(10, 10, 10, 0.96);
    border-bottom: 1px solid rgba(58, 58, 58, 0.25);
    transition: background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth);
    -webkit-font-smoothing: antialiased;
}

.header-inner {
    position: relative;
    width: 100%;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 64px;
}

.header-brand {
    display: flex;
    align-items: center;
    gap: 0.65rem;
    text-decoration: none;
    color: var(--text-light);
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    transition: color 0.3s var(--ease-smooth);
}

.header-brand:hover {
    color: var(--gold-light);
}

.header-logo {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    color: var(--black);
    font-size: 1.25rem;
    font-weight: 600;
    border-radius: 4px;
}

.header-name {
    letter-spacing: 0.02em;
}

.header-hamburger {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 44px;
    height: 44px;
    padding: 0;
    background: transparent;
    border: 1px solid rgba(74, 74, 74, 0.6);
    border-radius: 4px;
    cursor: pointer;
    transition: border-color 0.25s ease, background 0.25s ease;
}

.header-hamburger:hover {
    border-color: rgba(212, 175, 55, 0.5);
    background: rgba(212, 175, 55, 0.06);
}

.hamburger-line {
    display: block;
    width: 18px;
    height: 2px;
    background: var(--text-light);
    margin: 0 auto;
    transition: transform 0.25s ease, opacity 0.25s ease;
}

.site-header.is-open .hamburger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}
.site-header.is-open .hamburger-line:nth-child(2) {
    opacity: 0;
}
.site-header.is-open .hamburger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.header-dropdown {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(18, 18, 18, 0.98);
    border-bottom: 1px solid rgba(58, 58, 58, 0.4);
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    transition: max-height 0.3s ease, opacity 0.25s ease;
}

.site-header.is-open .header-dropdown {
    max-height: 320px;
    opacity: 1;
}

.header-nav {
    display: flex;
    flex-direction: column;
    padding: 0.75rem 0 1.25rem;
}

.header-link {
    display: block;
    padding: 0.75rem 1.5rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    font-weight: 400;
    color: var(--text-secondary);
    text-decoration: none;
    letter-spacing: 0.04em;
    transition: color 0.2s ease, background 0.2s ease;
}

.header-link:hover {
    color: var(--gold-light);
    background: rgba(212, 175, 55, 0.06);
}

/* Typography */
h1, h2, h3, h4 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

h1 {
    font-size: clamp(4rem, 10vw, 7.5rem);
    font-weight: 500;
    letter-spacing: -0.03em;
}

h2 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    margin-bottom: 2.5rem;
}

h3 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
}

h4 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 400;
}

/* Container */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Section Base */
.section {
    padding: 8rem 0;
    min-height: auto;
    position: relative;
}

/* Hero Section - Full viewport, cinematic private jet */
.hero {
    position: relative;
    height: 100vh;
    min-height: 560px;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Background: full-viewport hero (edit image file as needed) */
.hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/jakob-rosen-Emvf_emPMdY-unsplash.jpg?v=2');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.55) 0%,
        rgba(0, 0, 0, 0.25) 50%,
        rgba(0, 0, 0, 0.45) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-vignette {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 70% at 50% 45%,
        transparent 0%,
        transparent 50%,
        rgba(10, 10, 10, 0.4) 100%);
    z-index: 2;
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 3;
    text-align: center;
    padding: 2.5rem 3.5rem;
    max-width: 90vw;
    opacity: 0;
    animation: heroContentFadeIn 1.4s cubic-bezier(0.16, 1, 0.3, 1) 0.5s forwards;
    background: rgba(0, 0, 0, 0.45);
    border-radius: 8px;
    backdrop-filter: blur(2px);
}

.hero-brand {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 8vw, 6rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
    color: var(--text-primary);
    margin: 0 0 1.25rem;
    -webkit-text-stroke: 1px rgba(212, 175, 55, 0.35);
    text-shadow: 0 0 40px rgba(212, 175, 55, 0.08),
                 0 2px 24px rgba(0, 0, 0, 0.5);
}

.hero-tagline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.75rem, 1.8vw, 1rem);
    font-weight: 400;
    letter-spacing: 0.28em;
    text-transform: uppercase;
    color: rgba(212, 175, 55, 0.82);
    margin: 0 0 2.5rem;
    text-shadow: 0 1px 12px rgba(0, 0, 0, 0.5);
}

.hero-cta {
    display: inline-block;
    padding: 0.9rem 2.2rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.85rem, 1.5vw, 0.95rem);
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    text-decoration: none;
    color: var(--gold);
    background: transparent;
    border: 1px solid rgba(212, 175, 55, 0.5);
    transition: background 0.4s var(--ease-smooth), border-color 0.4s var(--ease-smooth), transform 0.4s var(--ease-smooth);
}

.hero-cta:hover {
    background: rgba(212, 175, 55, 0.12);
    border-color: rgba(212, 175, 55, 0.7);
    transform: translateY(-2px);
}

/* Section divider - thin gold line between major sections */
.section-divider {
    height: 1px;
    background: linear-gradient(to right,
        transparent 0%,
        rgba(212, 175, 55, 0.3) 20%,
        rgba(212, 175, 55, 0.5) 50%,
        rgba(212, 175, 55, 0.3) 80%,
        transparent 100%);
    margin: 0;
}

/* Soft fade from hero into next section */
.hero-fade-edge {
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 35vh;
    background: linear-gradient(to bottom, transparent 0%, rgba(10,10,10,0.25) 35%, rgba(10,10,10,0.6) 70%, var(--black) 100%);
    z-index: 2;
    pointer-events: none;
}

@keyframes heroContentFadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Jet Gallery */
.jet-gallery {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 6rem;
    padding: 0 2rem;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}

.jet-image {
    height: 400px;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
    border-radius: 2px;
}

.jet-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2), rgba(0, 0, 0, 0.6));
    z-index: 1;
    pointer-events: none;
}

/* Jet Showcase */
.jet-showcase {
    width: 100%;
    margin-bottom: 6rem;
    padding: 0 2rem;
}

.showcase-image {
    width: 100%;
    height: 600px;
    background-size: cover;
    background-position: center;
    position: relative;
    border-radius: 2px;
    overflow: hidden;
}

.showcase-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.3), rgba(0, 0, 0, 0.7));
    z-index: 1;
    pointer-events: none;
}

/* What We Do Section - split layout, jet right, text left with gradient */
.what-we-do {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    padding: 6rem 0;
    overflow: hidden;
    border-top: 1px solid rgba(42, 42, 42, 0.3);
}

.what-we-do-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/ChatGPT%20Image%20Feb%201%2C%202026%2C%2009_29_08%20PM.png?v=2'), url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?w=1600&q=85');
    background-size: cover;
    background-position: center right;
    background-repeat: no-repeat;
    z-index: 0;
}

.what-we-do-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right,
        rgba(10, 10, 10, 0.92) 0%,
        rgba(10, 10, 10, 0.75) 35%,
        rgba(10, 10, 10, 0.35) 55%,
        transparent 75%);
    z-index: 1;
    pointer-events: none;
}

.what-we-do-inner {
    position: relative;
    z-index: 2;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.what-we-do-content {
    max-width: 42%;
    min-width: 280px;
}

.what-we-do-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--gold-light);
    margin: 0 0 0.75rem;
    line-height: 1.15;
}

.what-we-do-underline {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(212, 175, 55, 0.4));
    margin-bottom: 2rem;
}

.what-we-do-text {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.what-we-do-body {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.35vw, 1.2rem);
    line-height: 1.85;
    color: rgba(245, 245, 240, 0.95);
    font-weight: 300;
    margin: 0;
}

.what-we-do-accent {
    color: var(--gold-light);
    font-weight: 400;
}

.section-title {
    color: var(--text-light);
    text-align: left;
    position: relative;
    display: inline-block;
    margin-bottom: 3rem;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -0.5rem;
    left: 0;
    width: 60px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    transition: width 0.5s ease;
}

.section-title:hover::after {
    width: 120px;
}

.content-block {
    max-width: 800px;
}

.body-text {
    font-size: clamp(1.125rem, 1.75vw, 1.375rem);
    line-height: 2;
    color: var(--text-light);
    font-weight: 300;
}

/* How It Works Section - sharp jet bg + dark gradient overlay (no blur) */
.how-it-works {
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(42, 42, 42, 0.3);
}

.how-it-works-bg {
    position: absolute;
    inset: 0;
    background-image: url('images/ChatGPT%20Image%20Feb%201%2C%202026%2C%2009_56_18%20PM.png?v=2'), url('https://images.unsplash.com/photo-1540962351504-03099e0a754b?w=1600&q=85');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.how-it-works-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.7) 0%,
        rgba(0, 0, 0, 0.88) 100%);
    z-index: 1;
    pointer-events: none;
}

.how-it-works-inner {
    position: relative;
    z-index: 2;
}

.how-it-works-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

.how-it-works-underline {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(212, 175, 55, 0.5));
    margin-bottom: 3rem;
}

.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    position: relative;
    z-index: 1;
}

.step-card {
    background: rgba(22, 22, 22, 0.7);
    border: 1px solid rgba(74, 74, 74, 0.4);
    border-radius: 8px;
    padding: 2.5rem 2rem;
    text-align: left;
}

.step-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.35);
}

.step-card-num {
    display: block;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.25rem, 4vw, 3.5rem);
    font-weight: 600;
    color: var(--gold);
    margin-bottom: 1rem;
    line-height: 1;
}

.step-card-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.5vw, 2rem);
    font-weight: 500;
    color: var(--text-light);
    margin: 0 0 0.75rem;
    letter-spacing: -0.02em;
}

.step-card-line {
    width: 100%;
    max-width: 40px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin-bottom: 1.25rem;
}

.step-card-copy {
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.2vw, 1.1rem);
    line-height: 1.75;
    color: rgba(245, 245, 240, 0.9);
    font-weight: 300;
    margin: 0;
}

/* The Difference Section */
/* The Difference - two columns, jet image + dark title box + gold bullet list */
.the-difference {
    background: var(--black);
    position: relative;
    border-top: 1px solid rgba(42, 42, 42, 0.4);
}

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

.difference-title-main {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 500;
    letter-spacing: -0.02em;
    color: var(--text-light);
    margin: 0 0 0.5rem;
    line-height: 1.15;
}

.difference-underline {
    width: 48px;
    height: 2px;
    background: linear-gradient(to right, var(--gold), rgba(212, 175, 55, 0.5));
    margin-bottom: 3rem;
}

.difference-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    align-items: stretch;
}

/* Outer card: box-shadow only, no clip on image */
.difference-column {
    position: relative;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.4);
}

/* Inner frame: no border-radius, no overflow — prevents blur from clipping */
.difference-image-frame {
    flex-shrink: 0;
    height: 340px;
}

/* Image layer: NO border-radius, NO overflow, NO transform, NO filter */
.difference-image {
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}

.difference-title-box {
    background: rgba(18, 18, 18, 0.98);
    border: 1px solid rgba(58, 58, 58, 0.4);
    border-top: none;
    padding: 1.75rem 2rem 2rem;
    margin-top: -1px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: border-color 0.4s var(--ease-smooth);
}

.difference-column:hover .difference-title-box {
    border-color: rgba(212, 175, 55, 0.2);
}

.difference-column-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.5rem, 2.2vw, 1.85rem);
    font-weight: 500;
    color: var(--text-light);
    text-align: center;
    margin: 0 0 1.25rem;
    letter-spacing: -0.02em;
}

.difference-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.difference-list li {
    position: relative;
    padding-left: 1.5rem;
    margin-bottom: 0.75rem;
    font-family: 'Inter', sans-serif;
    font-size: clamp(0.95rem, 1.1vw, 1.05rem);
    line-height: 1.6;
    color: rgba(245, 245, 240, 0.95);
    font-weight: 300;
}

.difference-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.4em;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 5px 0 5px 8px;
    border-color: transparent transparent transparent var(--gold);
}

/* Mission Section */
.mission {
    background: linear-gradient(180deg, var(--charcoal) 0%, var(--graphite) 50%, var(--charcoal) 100%);
    padding: 12rem 0;
    position: relative;
    overflow: hidden;
    border-top: 1px solid rgba(42, 42, 42, 0.3);
}

.mission-bg-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.05) 0%, transparent 30%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.05) 0%, transparent 30%);
    pointer-events: none;
}

.mission-statement {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.mission-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 12rem;
    color: var(--gold);
    opacity: 0.08;
    position: absolute;
    top: -4rem;
    left: -3rem;
    line-height: 1;
    font-style: italic;
}

.mission-text {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 4vw, 3.5rem);
    line-height: 1.7;
    color: var(--gold-light);
    font-weight: 400;
    font-style: italic;
    letter-spacing: -0.01em;
    position: relative;
    max-width: 850px;
    margin: 0 auto;
}

/* Who It's For Section */
.who-its-for {
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 100%);
}

/* Services Sections */
.service-section {
    position: relative;
    padding: 10rem 0;
    background-color: var(--black);
    overflow: hidden;
    border-top: 1px solid rgba(42, 42, 42, 0.2);
}

.service-hero-image {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 45vh;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    z-index: 0;
}

.service-hero-image::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom,
        rgba(0, 0, 0, 0.35) 0%,
        rgba(0, 0, 0, 0.55) 45%,
        rgba(0, 0, 0, 0.85) 85%,
        var(--black) 100%);
    z-index: 1;
    pointer-events: none;
}

.service-section .container {
    position: relative;
    z-index: 2;
}

/* Compact section with no background image (e.g. Guaranteed Arrival) — simple, no image */
.service-section--compact-no-image {
    padding: 1.5rem 0 2rem;
    margin-top: -1.5rem;
    background: var(--black);
    background-image: none;
}

.service-section--compact-no-image .service-hero-image {
    display: none;
}

.service-section--compact-no-image .service-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 0.75rem;
}

.service-section--compact-no-image .service-subline {
    margin-bottom: 1rem;
}

.service-section--compact-no-image .service-content-wrapper {
    margin-top: 1rem;
}

.service-section--compact-no-image .service-copy {
    margin-bottom: 1rem;
    font-size: clamp(1rem, 1.2vw, 1.1rem);
}

.service-section--compact-no-image .service-points {
    margin-bottom: 1rem;
}

.service-section--compact-no-image .service-points li {
    padding: 0.6rem 0;
}

.service-section--compact-no-image .service-cta-wrapper {
    margin-top: 1rem;
}

/* Large screens: two columns so section uses width, less black on sides */
@media (min-width: 768px) {
    .service-section--compact-no-image .guaranteed-layout {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem 4rem;
        align-items: start;
        max-width: 1000px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .service-section--compact-no-image .guaranteed-intro .service-copy {
        margin-bottom: 0;
    }
}

@media (min-width: 1024px) {
    .service-section--compact-no-image .guaranteed-layout {
        max-width: 1100px;
        gap: 3rem 5rem;
    }
}

.service-headline {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 6vw, 5rem);
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
    letter-spacing: -0.02em;
}

.service-subline {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1.2rem, 2vw, 1.6rem);
    color: var(--gold-light);
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
}

.service-content-wrapper {
    max-width: 800px;
    margin-top: 3rem;
}

.service-copy {
    font-size: clamp(1.1rem, 1.5vw, 1.3rem);
    line-height: 1.9;
    color: var(--text-light);
    margin-bottom: 3rem;
    font-weight: 300;
}

.service-points {
    list-style: none;
    margin-bottom: 3rem;
}

.service-points li {
    padding: 1.2rem 0;
    border-bottom: 1px solid rgba(42, 42, 42, 0.5);
    font-size: clamp(1rem, 1.3vw, 1.15rem);
    color: var(--text-light);
    line-height: 1.8;
    position: relative;
    padding-left: 2rem;
    font-weight: 300;
}

.service-points li::before {
    content: '—';
    position: absolute;
    left: 0;
    color: var(--gold);
    font-size: 1.5rem;
}

.service-disclaimer {
    font-size: 0.85rem;
    color: var(--text-secondary);
    opacity: 0.6;
    font-style: italic;
    margin-bottom: 2rem;
    font-weight: 300;
}

.service-cta-wrapper {
    margin-top: 3rem;
}

.service-cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(212, 175, 55, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-smooth);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.service-cta-button:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Section CTA Button (used throughout) */
.section-cta-wrapper {
    text-align: center;
    margin-top: 3rem;
}

.section-cta-button {
    display: inline-block;
    padding: 18px 45px;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(212, 175, 55, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    transition: all 0.4s var(--ease-smooth);
    font-family: 'Inter', sans-serif;
    font-weight: 400;
}

.section-cta-button:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
    transform: translateY(-2px);
}

/* Mission section CTA */
.mission-cta-wrapper {
    text-align: center;
    margin-top: 2.5rem;
}

.who-its-for-list {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    max-width: 800px;
}

.who-line {
    margin: 0;
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.8s ease;
}

/* Interior Showcase Section */
.interior-showcase {
    background-color: var(--black);
}

.interior-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2px;
    margin-top: 4rem;
    background: var(--black);
}

.interior-item {
    aspect-ratio: 3/2;
    background-size: cover;
    background-position: center;
    position: relative;
    overflow: hidden;
}

.interior-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.15), rgba(0, 0, 0, 0.4));
    z-index: 1;
    pointer-events: none;
}

.interior-item.large {
    grid-column: span 2;
    aspect-ratio: 21/9;
}

/* Waitlist Section */
/* Early Access section: scroll offset so content isn't hidden under fixed elements */
#early-access {
    scroll-margin-top: 80px;
}

.waitlist {
    background-color: var(--charcoal);
    padding: 10rem 0;
    background: linear-gradient(135deg, var(--charcoal) 0%, var(--graphite) 100%);
}

.waitlist-subtext {
    font-family: 'Inter', sans-serif;
    font-size: clamp(1rem, 1.4vw, 1.25rem);
    color: var(--gold-light);
    text-align: center;
    margin-bottom: 3rem;
    font-weight: 300;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.form-container {
    max-width: 700px;
    margin: 0 auto;
}

.google-form {
    width: 100%;
    min-height: 600px;
    border: 1px solid var(--graphite);
    background-color: var(--black);
    border-radius: 2px;
}

.form-note {
    margin-top: 1rem;
    font-size: 0.875rem;
    color: var(--text-secondary);
    text-align: center;
    opacity: 0.5;
    font-style: italic;
}

/* Custom Form Styling */
.custom-form {
    background: rgba(26, 26, 26, 0.6);
    border: 1px solid var(--graphite);
    padding: 3rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-group {
    margin-bottom: 2.5rem;
    text-align: left;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-bottom: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    font-weight: 300;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 18px 22px;
    background-color: rgba(42, 42, 42, 0.8);
    border: 1px solid var(--graphite);
    color: var(--text-primary);
    font-size: 1.05rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s ease;
    font-weight: 300;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    border-color: rgba(212, 175, 55, 0.6);
    background-color: rgba(42, 42, 42, 1);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.1);
    transition: border-color 0.3s var(--ease-smooth), box-shadow 0.3s var(--ease-smooth);
}

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

.form-submit {
    width: 100%;
    padding: 22px;
    background-color: transparent;
    color: var(--text-primary);
    border: 1px solid rgba(212, 175, 55, 0.6);
    font-size: 0.95rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    cursor: pointer;
    transition: all 0.4s var(--ease-smooth);
    font-weight: 400;
    font-family: 'Inter', sans-serif;
}

.form-submit:hover {
    background-color: var(--gold);
    color: var(--black);
    border-color: var(--gold);
}

.form-confirmation {
    display: none;
    text-align: center;
    padding: 4rem 2rem;
    max-width: 700px;
    margin: 0 auto;
}

.form-confirmation.active {
    display: block;
}

.confirmation-message {
    font-size: 1.8rem;
    font-family: 'Cormorant Garamond', serif;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.confirmation-subtext {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

/* Footer */
.footer {
    background: linear-gradient(to bottom, var(--black), var(--charcoal));
    border-top: 1px solid var(--graphite);
    position: relative;
    overflow: hidden;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(to right, transparent, var(--gold), transparent);
}

.footer-top {
    padding: 6rem 0 4rem;
    border-bottom: 1px solid var(--graphite);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 4rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 3vw, 2.5rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
    font-weight: 500;
}

.footer-tagline {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--gold-light);
    font-weight: 300;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    margin-bottom: 1.5rem;
}

.footer-divider {
    width: 60px;
    height: 1px;
    background: linear-gradient(to right, var(--gold), transparent);
    margin: 1.5rem 0;
}

.footer-description {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
    font-weight: 300;
}

.footer-column {
    display: flex;
    flex-direction: column;
}

.footer-heading {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.25rem;
    color: var(--text-light);
    margin-bottom: 1.5rem;
    font-weight: 500;
    position: relative;
    padding-bottom: 0.5rem;
}

.footer-heading::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 1px;
    background: var(--gold);
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    color: var(--text-secondary);
    font-weight: 300;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-block;
    position: relative;
    padding-left: 0;
    text-decoration: none;
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -15px;
    top: 50%;
    transform: translateY(-50%);
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-link:hover {
    color: var(--gold-light);
    padding-left: 15px;
}

.footer-link:hover::before {
    width: 10px;
}

.footer-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--gold);
    transition: width 0.3s ease;
}

.footer-link:hover::after {
    width: 100%;
}

.footer-email-link {
    color: var(--gold-light);
    text-decoration: none;
}

.footer-bottom {
    padding: 2.5rem 0;
    background: var(--black);
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.legal-text {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.4;
    font-weight: 300;
}

.copyright {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    opacity: 0.35;
    font-weight: 300;
}

.footer-legal-links {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin: 0.5rem 0;
}

.footer-legal-link {
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    color: var(--text-secondary);
    text-decoration: none;
    opacity: 0.5;
    transition: opacity 0.3s ease, color 0.3s ease;
}

.footer-legal-link:hover {
    opacity: 1;
    color: var(--gold-light);
}

.footer-legal-separator {
    color: var(--text-secondary);
    opacity: 0.3;
    font-size: 0.75rem;
}

/* Legal Pages (Terms, Privacy) */

/* Legal Hero Section */
.legal-hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, var(--black) 0%, var(--charcoal) 50%, var(--black) 100%);
    overflow: hidden;
}

.legal-hero-bg {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 50% at 50% 0%, rgba(212, 175, 55, 0.08) 0%, transparent 60%),
        radial-gradient(circle at 20% 80%, rgba(212, 175, 55, 0.05) 0%, transparent 40%);
    pointer-events: none;
}

.legal-hero-bg::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.3), transparent);
}

.legal-hero-bg::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.2), transparent);
}

.legal-hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.legal-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 50px;
    font-family: 'Inter', sans-serif;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1.5rem;
}

.legal-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.5rem, 6vw, 4rem);
    color: var(--text-light);
    margin-bottom: 1rem;
    font-weight: 500;
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.legal-subtitle {
    font-family: 'Inter', sans-serif;
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    font-weight: 300;
    opacity: 0.8;
}

.legal-updated {
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    color: var(--gold);
    font-weight: 400;
    letter-spacing: 0.05em;
}

/* Legal Page Content Area */
.legal-page {
    background: var(--black);
    padding: 4rem 0 6rem;
    min-height: auto;
}

.legal-card {
    background: linear-gradient(180deg, rgba(26, 26, 26, 0.8) 0%, rgba(18, 18, 18, 0.9) 100%);
    border: 1px solid rgba(212, 175, 55, 0.12);
    border-radius: 16px;
    padding: 3rem 3.5rem;
    box-shadow: 
        0 4px 24px rgba(0, 0, 0, 0.4),
        0 1px 0 rgba(255, 255, 255, 0.03) inset;
    max-width: 900px;
    margin: 0 auto;
}

.legal-content {
    max-width: 100%;
}

.legal-section {
    padding: 2rem 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.08);
}

.legal-section:first-child {
    padding-top: 0;
}

.legal-section:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.legal-section-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.25rem;
}

.legal-section-number {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 10px;
    font-family: 'Inter', sans-serif;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--gold-light);
    flex-shrink: 0;
}

.legal-section-header h2 {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.4rem, 2.5vw, 1.75rem);
    color: var(--text-light);
    font-weight: 500;
    margin: 0;
    letter-spacing: -0.01em;
}

.legal-content p {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 1rem;
    font-weight: 300;
}

.legal-content p:last-child {
    margin-bottom: 0;
}

.legal-content ul {
    list-style: none;
    margin: 1rem 0 1.25rem 0;
    padding: 0;
}

.legal-content li {
    font-family: 'Inter', sans-serif;
    font-size: 0.95rem;
    line-height: 1.85;
    color: var(--text-secondary);
    margin-bottom: 0.6rem;
    padding-left: 2rem;
    position: relative;
    font-weight: 300;
}

.legal-content li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.65rem;
    width: 6px;
    height: 6px;
    background: var(--gold);
    border-radius: 50%;
    opacity: 0.7;
}

.legal-content li strong {
    color: var(--text-light);
    font-weight: 500;
}

.legal-content a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s ease;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    padding-bottom: 1px;
}

.legal-content a:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

.legal-back {
    margin-top: 3rem;
    text-align: center;
}

/* Responsive Legal Pages */
@media (max-width: 768px) {
    .legal-hero {
        padding: 8rem 0 3rem;
    }
    
    .legal-card {
        padding: 2rem 1.5rem;
        border-radius: 12px;
    }
    
    .legal-section-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.75rem;
    }
    
    .legal-section-number {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
}

/* Responsive Design */
@media (max-width: 1024px) {
    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
        gap: 3rem;
    }
    
    .jet-gallery {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .cookie-content {
        flex-direction: column;
        text-align: center;
    }
    
    .cookie-buttons {
        width: 100%;
        justify-content: center;
    }
    
    .cookie-btn {
        flex: 1;
        min-width: 120px;
    }

    .section {
        padding: 5rem 0;
    }

    .what-we-do {
        min-height: auto;
        padding: 2.5rem 0;
        align-items: flex-start;
    }

    .what-we-do-inner {
        padding: 0 1.5rem;
    }

    .what-we-do-content {
        max-width: 100%;
        min-width: 0;
        background: rgba(10, 10, 10, 0.7);
        backdrop-filter: blur(8px);
        -webkit-backdrop-filter: blur(8px);
        padding: 1.75rem 1.5rem;
        border-radius: 12px;
        border: 1px solid rgba(212, 175, 55, 0.15);
    }

    .what-we-do-title {
        font-size: clamp(2rem, 8vw, 2.75rem);
        margin-bottom: 0.5rem;
    }

    .what-we-do-underline {
        margin-bottom: 1.25rem;
    }

    .what-we-do-text {
        gap: 1rem;
    }

    .what-we-do-body {
        font-size: clamp(1rem, 4vw, 1.15rem);
        line-height: 1.75;
        color: rgba(245, 245, 240, 0.98);
    }

    .what-we-do-accent {
        color: var(--gold-light);
        text-shadow: 0 0 20px rgba(212, 175, 55, 0.2);
    }

    .what-we-do .section-cta-wrapper {
        margin-top: 1.5rem;
    }

    .what-we-do-overlay {
        background: linear-gradient(to bottom,
            rgba(10, 10, 10, 0.9) 0%,
            rgba(10, 10, 10, 0.88) 100%);
    }

    .what-we-do-bg {
        background-position: center;
    }

    /* The Difference: stack on mobile, no overlap, clean vertical flow */
    .difference-container {
        padding: 0 1rem;
    }

    .difference-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
        align-items: stretch;
    }

    .difference-column {
        min-width: 0;
        display: flex;
        flex-direction: column;
    }

    .difference-image-frame {
        flex-shrink: 0;
        height: auto;
        aspect-ratio: 4/3;
        min-height: 0;
        overflow: hidden;
    }

    .difference-image {
        width: 100%;
        height: 100%;
        min-height: 180px;
    }

    .difference-title-box {
        flex: 0 0 auto;
        padding: 1.25rem 1rem 1.5rem;
        margin-top: 0;
    }

    .difference-column-title {
        font-size: clamp(1.1rem, 4vw, 1.4rem);
        margin-bottom: 0.75rem;
    }

    .difference-list li {
        font-size: 0.8rem;
        margin-bottom: 0.5rem;
        padding-left: 1.25rem;
    }

    .difference-list li::before {
        border-width: 4px 0 4px 6px;
    }

    .mission {
        padding: 6rem 0;
    }

    .waitlist {
        padding: 6rem 0;
    }

    .steps-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero {
        min-height: 500px;
    }

    .hero-brand {
        font-size: clamp(2.25rem, 10vw, 3.5rem);
        margin-bottom: 1rem;
    }

    .hero-tagline {
        font-size: clamp(0.65rem, 2.2vw, 0.85rem);
        letter-spacing: 0.2em;
        margin-bottom: 2rem;
    }

    .hero-cta {
        font-size: 0.8rem;
        padding: 0.8rem 1.75rem;
    }

    .section-title {
        font-size: clamp(2rem, 7vw, 3rem);
    }

    .jet-gallery {
        grid-template-columns: 1fr;
        gap: 1.5rem;
        margin-bottom: 4rem;
    }

    .jet-image {
        height: 300px;
    }

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

    .interior-item.large {
        grid-column: span 1;
        aspect-ratio: 3/2;
    }

    .showcase-image {
        height: 400px;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }

    .section {
        padding: 4rem 0;
    }

    .what-we-do {
        padding: 2rem 0;
    }

    .what-we-do-inner {
        padding: 0 1rem;
    }

    .what-we-do-content {
        padding: 1.5rem 1.25rem;
    }

    .what-we-do-title {
        font-size: 1.75rem;
    }

    .what-we-do-body {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .hero {
        min-height: 400px;
    }

    .hero-brand {
        font-size: clamp(2rem, 12vw, 2.75rem);
    }

    .hero-tagline {
        font-size: 0.6rem;
        letter-spacing: 0.18em;
    }

    .hero-cta {
        font-size: 0.75rem;
        padding: 0.75rem 1.5rem;
    }

    .jet-image {
        height: 250px;
    }

    .showcase-image {
        height: 300px;
    }
}

/* Smooth transitions for any interactive elements */
a, button {
    transition: opacity 0.3s ease;
}

a:hover, button:hover {
    opacity: 0.7;
}
