/* ============================================
   THE JET FINDER — Design System
   Premium Private Aviation
   ============================================ */

/* --- Google Fonts --- */
@import url('https://fonts.googleapis.com/css2?family=EB+Garamond:ital,wght@0,400;0,500;0,600;0,700;1,400;1,500&family=Instrument+Sans:wght@400;500;600;700&family=Cinzel:wght@400;500;600;700&display=swap');

/* --- CSS Variables --- */
:root {
    /* Primary Palette */
    --color-primary: #021422;
    --color-primary-light: #0a2e4a;
    --color-primary-dark: #010d17;
    --color-secondary: #bfa163;
    --color-secondary-light: #d4a853;
    --color-secondary-dark: #a88b4f;

    /* Accent Palette */
    --color-cream: #ebdcbd;
    --color-offwhite: #f2f3f5;
    --color-charcoal: #1a1a2e;
    --color-white: #ffffff;
    --color-black: #000000;

    /* Functional */
    --color-text-primary: #f2f3f5;
    --color-text-secondary: #bfa163;
    --color-text-body: rgba(242, 243, 245, 0.85);
    --color-text-muted: rgba(242, 243, 245, 0.55);
    --color-border: rgba(191, 161, 99, 0.25);
    --color-border-hover: rgba(191, 161, 99, 0.65);
    --color-glass: rgba(2, 20, 34, 0.6);
    --color-glass-border: rgba(255, 255, 255, 0.08);

    /* Typography */
    --font-display: 'EB Garamond', 'Georgia', serif;
    --font-heading: 'Cinzel', 'EB Garamond', serif;
    --font-body: 'Instrument Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

    /* Font Sizes (fluid) */
    --text-xs: clamp(0.7rem, 0.65rem + 0.25vw, 0.8rem);
    --text-sm: clamp(0.8rem, 0.75rem + 0.3vw, 0.9rem);
    --text-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.1rem);
    --text-lg: clamp(1.1rem, 1rem + 0.5vw, 1.3rem);
    --text-xl: clamp(1.3rem, 1.15rem + 0.75vw, 1.6rem);
    --text-2xl: clamp(1.6rem, 1.35rem + 1.25vw, 2.2rem);
    --text-3xl: clamp(2rem, 1.6rem + 2vw, 3rem);
    --text-4xl: clamp(2.5rem, 1.8rem + 3.5vw, 4.5rem);
    --text-5xl: clamp(3rem, 2rem + 5vw, 6rem);

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 10rem;

    /* Sizing */
    --container-max: 1400px;
    --container-narrow: 900px;
    --container-wide: 1600px;

    /* Transitions */
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-elegant: 0.8s cubic-bezier(0.16, 1, 0.3, 1);

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.2);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 8px 40px rgba(0, 0, 0, 0.4);
    --shadow-gold: 0 4px 20px rgba(191, 161, 99, 0.15);

    /* Border Radius */
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;

    /* Header height */
    --header-height: 80px;
}

/* --- CSS Reset & Base --- */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-body);
    font-size: var(--text-base);
    font-weight: 400;
    line-height: 1.7;
    color: var(--color-text-body);
    background-color: var(--color-primary);
    overflow-x: hidden;
    min-height: 100vh;
}

img:not(.header-logo-img) {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--color-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

a:hover {
    color: var(--color-secondary-light);
}

ul,
ol {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
    font-family: inherit;
}

/* --- Typography --- */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    color: var(--color-text-primary);
    line-height: 1.2;
    font-weight: 400;
    letter-spacing: 0.01em;
}

h1 {
    font-size: var(--text-5xl);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

h2 {
    font-size: var(--text-3xl);
    letter-spacing: -0.01em;
}

h3 {
    font-size: var(--text-2xl);
}

h4 {
    font-size: var(--text-xl);
}

h5 {
    font-size: var(--text-lg);
}

h6 {
    font-size: var(--text-base);
    font-weight: 500;
}

.heading-display {
    font-family: var(--font-heading);
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.heading-serif {
    font-family: var(--font-display);
    font-style: italic;
    font-weight: 400;
}

.text-gold {
    color: var(--color-secondary);
}

.text-cream {
    color: var(--color-cream);
}

.text-muted {
    color: var(--color-text-muted);
}

.text-center {
    text-align: center;
}

.label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
}

/* --- Layout --- */
.container {
    width: 100%;
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--space-lg);
}

.container-narrow {
    max-width: var(--container-narrow);
}

.container-wide {
    max-width: var(--container-wide);
}

.section {
    padding: var(--space-3xl) 0;
    position: relative;
}

.section-sm {
    padding: var(--space-2xl) 0;
}

.section-lg {
    padding: clamp(8rem, 6rem + 10vw, 14rem) 0;
}

/* --- Gold Dividers --- */
.gold-divider {
    width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-secondary), transparent);
    margin: var(--space-md) 0;
    border: none;
}

.gold-divider-center {
    margin-left: auto;
    margin-right: auto;
}

.gold-divider-wide {
    width: 200px;
}

.gold-line-full {
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--color-border), transparent);
    border: none;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 1rem 2.5rem;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-secondary);
    color: var(--color-primary);
}

.btn-primary:hover {
    background: var(--color-secondary-light);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-outline {
    background: transparent;
    color: var(--color-secondary);
    border: 1px solid var(--color-secondary);
}

.btn-outline:hover {
    background: var(--color-secondary);
    color: var(--color-primary);
    box-shadow: var(--shadow-gold);
    transform: translateY(-2px);
}

.btn-ghost {
    background: transparent;
    color: var(--color-text-primary);
    border: 1px solid var(--color-glass-border);
}

.btn-ghost:hover {
    border-color: var(--color-border-hover);
    color: var(--color-secondary);
}

.btn-lg {
    padding: 1.25rem 3.5rem;
    font-size: var(--text-sm);
}

.btn-sm {
    padding: 0.65rem 1.5rem;
    font-size: 0.7rem;
}

.btn-icon {
    width: 50px;
    height: 50px;
    padding: 0;
    border-radius: 50%;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

/* Button arrow animation */
.btn .btn-arrow {
    transition: transform var(--transition-fast);
}

.btn:hover .btn-arrow {
    transform: translateX(4px);
}

/* --- Cards --- */
.card {
    background: var(--color-glass);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-md);
    padding: var(--space-lg);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.card:hover {
    border-color: var(--color-border);
    box-shadow: var(--shadow-md);
    transform: translateY(-4px);
}

.card-glass {
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    background: rgba(2, 20, 34, 0.4);
}

.card-dark {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-light);
}

.card-bordered {
    border-left: 3px solid var(--color-secondary);
}

.card-gold-top {
    border-top: 2px solid var(--color-secondary);
}

.card-image {
    width: 100%;
    height: 250px;
    object-fit: cover;
    border-radius: var(--radius-md) var(--radius-md) 0 0;
    margin: calc(-1 * var(--space-lg));
    margin-bottom: var(--space-md);
    width: calc(100% + 2 * var(--space-lg));
}

/* --- Grids --- */
.grid {
    display: grid;
    gap: var(--space-lg);
}

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

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

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

.grid-auto {
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
}

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

.hero-inner {
    min-height: 70vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

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

.hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg,
            rgba(2, 20, 34, 0.4) 0%,
            rgba(2, 20, 34, 0.6) 40%,
            rgba(2, 20, 34, 0.85) 100%);
    z-index: 1;
}

.hero-overlay-dark {
    background: linear-gradient(180deg,
            rgba(2, 20, 34, 0.6) 0%,
            rgba(2, 20, 34, 0.75) 40%,
            rgba(2, 20, 34, 0.95) 100%);
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 900px;
    padding: var(--space-xl) var(--space-lg);
}

.hero-subtitle {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.3em;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.hero-title {
    font-size: var(--text-5xl);
    margin-bottom: var(--space-md);
    color: var(--color-white);
}

.hero-description {
    font-size: var(--text-lg);
    color: var(--color-text-body);
    max-width: 650px;
    margin: 0 auto var(--space-xl);
    line-height: 1.8;
}

.hero-actions {
    display: flex;
    gap: var(--space-md);
    justify-content: center;
    flex-wrap: wrap;
}

/* --- Page Header (non-homepage) --- */
.page-header {
    padding-top: calc(var(--header-height) + var(--space-3xl));
    padding-bottom: var(--space-2xl);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-header::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(ellipse, rgba(191, 161, 99, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.page-header .label {
    margin-bottom: var(--space-sm);
    display: block;
}

.page-header h1 {
    margin-bottom: var(--space-md);
}

.page-header .gold-divider {
    margin-bottom: var(--space-md);
}

/* Page Hero (page-header with background image) */
.page-hero {
    min-height: 55vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.page-hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.page-hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.page-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 20, 34, 0.4) 0%, rgba(2, 20, 34, 0.7) 60%, rgba(2, 20, 34, 1) 100%);
    z-index: 1;
}

.page-hero .container {
    position: relative;
    z-index: 2;
}

/* --- Breadcrumbs --- */
.breadcrumbs {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
    color: var(--color-text-muted);
    padding: var(--space-sm) 0;
}

.breadcrumbs a {
    color: var(--color-text-muted);
}

.breadcrumbs a:hover {
    color: var(--color-secondary);
}

.breadcrumbs .sep {
    color: var(--color-border);
    font-size: 0.7rem;
}

/* --- Forms --- */
.form-group {
    margin-bottom: var(--space-md);
}

.form-label {
    display: block;
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    margin-bottom: 0.5rem;
}

.form-input,
.form-textarea,
.form-select {
    width: 100%;
    padding: 1rem 1.25rem;
    background: rgba(2, 20, 34, 0.6);
    border: 1px solid var(--color-glass-border);
    border-radius: var(--radius-sm);
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: var(--text-base);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
}

.form-input:focus,
.form-textarea:focus,
.form-select:focus {
    outline: none;
    border-color: var(--color-secondary);
    box-shadow: 0 0 0 3px rgba(191, 161, 99, 0.1);
}

.form-input::placeholder,
.form-textarea::placeholder {
    color: var(--color-text-muted);
}

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

.form-select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' fill='%23bfa163' viewBox='0 0 16 16'%3E%3Cpath d='M8 11L3 6h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-select option {
    background: var(--color-primary);
    color: var(--color-text-primary);
}

/* --- Tables --- */
.table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--color-glass-border);
}

.table {
    width: 100%;
    border-collapse: collapse;
}

.table th {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--color-secondary);
    padding: 1rem 1.25rem;
    text-align: left;
    background: var(--color-primary-dark);
    border-bottom: 1px solid var(--color-border);
}

.table td {
    padding: 1rem 1.25rem;
    border-bottom: 1px solid var(--color-glass-border);
    vertical-align: top;
}

.table tr:last-child td {
    border-bottom: none;
}

.table tr:hover td {
    background: rgba(191, 161, 99, 0.03);
}

/* --- FAQ / Accordion --- */
.faq-item {
    border-bottom: 1px solid var(--color-glass-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: var(--space-md) 0;
    text-align: left;
    color: var(--color-text-primary);
    font-family: var(--font-body);
    font-size: var(--text-lg);
    font-weight: 500;
    cursor: pointer;
    transition: color var(--transition-fast);
}

.faq-question:hover {
    color: var(--color-secondary);
}

.faq-question .faq-icon {
    font-size: 1.5rem;
    color: var(--color-secondary);
    transition: transform var(--transition-base);
    flex-shrink: 0;
    margin-left: var(--space-md);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition-base), padding var(--transition-base);
}

.faq-item.active .faq-answer {
    max-height: 500px;
    padding-bottom: var(--space-md);
}

.faq-answer p {
    color: var(--color-text-body);
    line-height: 1.8;
}

/* --- Stats / Counters --- */
.stat {
    text-align: center;
}

.stat-number {
    font-family: var(--font-display);
    font-size: var(--text-4xl);
    color: var(--color-secondary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.stat-label {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-text-muted);
}

/* --- Process / Timeline Steps --- */
.process-steps {
    display: grid;
    gap: var(--space-xl);
    position: relative;
}

.process-step {
    display: flex;
    gap: var(--space-lg);
    align-items: flex-start;
    position: relative;
}

.process-step-number {
    font-family: var(--font-display);
    font-size: var(--text-3xl);
    color: var(--color-secondary);
    opacity: 0.4;
    line-height: 1;
    flex-shrink: 0;
    width: 60px;
}

.process-step-content h3 {
    margin-bottom: var(--space-xs);
}

/* --- Scroll-triggered Animations --- */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity var(--transition-elegant), transform var(--transition-elegant);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-left {
    opacity: 0;
    transform: translateX(-40px);
    transition: opacity var(--transition-elegant), transform var(--transition-elegant);
}

.fade-in-left.visible {
    opacity: 1;
    transform: translateX(0);
}

.fade-in-right {
    opacity: 0;
    transform: translateX(40px);
    transition: opacity var(--transition-elegant), transform var(--transition-elegant);
}

.fade-in-right.visible {
    opacity: 1;
    transform: translateX(0);
}

.scale-in {
    opacity: 0;
    transform: scale(0.95);
    transition: opacity var(--transition-elegant), transform var(--transition-elegant);
}

.scale-in.visible {
    opacity: 1;
    transform: scale(1);
}

/* Stagger children */
.stagger-children>*:nth-child(1) {
    transition-delay: 0s;
}

.stagger-children>*:nth-child(2) {
    transition-delay: 0.1s;
}

.stagger-children>*:nth-child(3) {
    transition-delay: 0.2s;
}

.stagger-children>*:nth-child(4) {
    transition-delay: 0.3s;
}

.stagger-children>*:nth-child(5) {
    transition-delay: 0.4s;
}

.stagger-children>*:nth-child(6) {
    transition-delay: 0.5s;
}

/* --- Parallax --- */
.parallax-bg {
    will-change: transform;
}

/* --- Utility --- */
.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;
}

.overflow-hidden {
    overflow: hidden;
}

.relative {
    position: relative;
}

.z-1 {
    z-index: 1;
}

.z-2 {
    z-index: 2;
}

.z-10 {
    z-index: 10;
}

/* --- Header / Navigation --- */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--header-height);
    display: flex;
    align-items: center;
    transition: background var(--transition-base), box-shadow var(--transition-base), backdrop-filter var(--transition-base);
}

.site-header.scrolled {
    background: rgba(2, 20, 34, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 1px 0 var(--color-glass-border);
}

.header-container {
    width: 100%;
    max-width: var(--container-wide);
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    z-index: 1001;
}

.header-logo-text {
    font-family: var(--font-heading);
    font-size: clamp(0.85rem, 0.7rem + 0.5vw, 1.1rem);
    text-transform: uppercase;
    letter-spacing: 0.25em;
    color: var(--color-white);
    transition: color var(--transition-fast);
}

.header-logo-icon {
    width: 32px;
    height: 32px;
    opacity: 0.9;
}

.header-logo-img {
    height: 43px !important;
    width: auto !important;
    display: block;
}

.header-nav {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 0;
}

.nav-link {
    font-family: var(--font-body);
    font-size: var(--text-sm);
    font-weight: 400;
    color: var(--color-text-body);
    text-decoration: none;
    padding: 0.5rem 1rem;
    transition: color var(--transition-fast);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.nav-link:hover,
.nav-link.active {
    color: var(--color-secondary);
}

.nav-cta {
    margin-left: var(--space-sm);
}

/* Mobile Menu Toggle */
.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    z-index: 1001;
    cursor: pointer;
}

.menu-toggle-bar {
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    position: relative;
    transition: background var(--transition-fast);
}

.menu-toggle-bar::before,
.menu-toggle-bar::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--color-text-primary);
    transition: transform var(--transition-base);
}

.menu-toggle-bar::before {
    top: -7px;
}

.menu-toggle-bar::after {
    top: 7px;
}

.menu-toggle.active .menu-toggle-bar {
    background: transparent;
}

.menu-toggle.active .menu-toggle-bar::before {
    top: 0;
    transform: rotate(45deg);
}

.menu-toggle.active .menu-toggle-bar::after {
    top: 0;
    transform: rotate(-45deg);
}

/* Mobile Nav Overlay */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(2, 20, 34, 0.98);
    backdrop-filter: blur(30px);
    -webkit-backdrop-filter: blur(30px);
    z-index: 999;
    padding: calc(var(--header-height) + var(--space-xl)) var(--space-lg) var(--space-lg);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity var(--transition-base), visibility var(--transition-base);
}

.mobile-nav.active {
    opacity: 1;
    visibility: visible;
}

.mobile-nav .nav-link {
    display: block;
    font-size: var(--text-xl);
    text-align: center;
    padding: var(--space-sm) 0;
    font-family: var(--font-display);
}

/* --- Footer --- */
.site-footer {
    background: var(--color-primary-dark);
    border-top: 1px solid var(--color-glass-border);
    padding: var(--space-2xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: var(--space-xl);
    margin-bottom: var(--space-2xl);
}

.footer-brand p {
    margin-top: var(--space-sm);
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    max-width: 300px;
    line-height: 1.8;
}

.footer-heading {
    font-family: var(--font-heading);
    font-size: var(--text-xs);
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--color-secondary);
    margin-bottom: var(--space-md);
}

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--color-text-muted);
    font-size: var(--text-sm);
    transition: color var(--transition-fast);
}

.footer-link:hover {
    color: var(--color-secondary);
}

.footer-social {
    display: flex;
    gap: var(--space-sm);
    margin-top: var(--space-md);
}

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--color-glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 1rem;
    transition: all var(--transition-fast);
}

.footer-social a:hover {
    border-color: var(--color-secondary);
    color: var(--color-secondary);
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--color-glass-border);
    padding-top: var(--space-lg);
    text-align: center;
}

.footer-copyright {
    font-size: var(--text-sm);
    color: var(--color-text-muted);
}

.footer-copyright a {
    color: var(--color-text-muted);
    transition: color var(--transition-fast);
}

.footer-copyright a:hover {
    color: var(--color-secondary);
}

/* --- Background Patterns --- */
.bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 25% 25%, var(--color-secondary) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, var(--color-secondary) 1px, transparent 1px);
    background-size: 60px 60px;
}

.bg-glow {
    position: absolute;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(191, 161, 99, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* --- Responsive Breakpoints --- */

/* Tablet */
@media (max-width: 1024px) {
    .header-nav {
        display: none;
    }

    .menu-toggle {
        display: flex;
    }

    .mobile-nav {
        display: flex;
    }

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

    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-lg);
    }
}

/* Mobile */
@media (max-width: 768px) {
    :root {
        --header-height: 70px;
    }

    .container {
        padding: 0 var(--space-md);
    }

    .section {
        padding: var(--space-2xl) 0;
    }

    .section-lg {
        padding: var(--space-3xl) 0;
    }

    .grid-2,
    .grid-3 {
        grid-template-columns: 1fr;
    }

    .hero {
        min-height: 90vh;
    }

    .hero-actions {
        flex-direction: column;
        align-items: center;
    }

    .hero-actions .btn {
        width: 100%;
        max-width: 320px;
    }

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

    .process-step {
        flex-direction: column;
        gap: var(--space-sm);
    }
}

/* Small Mobile */
@media (max-width: 480px) {
    .btn-lg {
        padding: 1rem 2rem;
        font-size: var(--text-xs);
    }

    .page-header {
        padding-top: calc(var(--header-height) + var(--space-2xl));
        padding-bottom: var(--space-xl);
    }
}

/* Large Desktop */
@media (min-width: 1600px) {
    .container {
        padding: 0 var(--space-xl);
    }
}

/* --- Print --- */
@media print {

    .site-header,
    .site-footer,
    .menu-toggle,
    .mobile-nav {
        display: none !important;
    }

    body {
        background: white;
        color: #111;
    }
}