/* =========================================
   Fine Sky — Modern Design System
   ========================================= */

:root {
    /* Brand palette */
    --ink-900: #0a1428;
    --ink-800: #0f1d36;
    --ink-700: #16294b;
    --ink-600: #1f3a66;
    --ink-500: #2c4f87;
    --ink-400: #4f6ea3;
    --ink-300: #8aa0c4;
    --ink-200: #c5d1e2;
    --ink-100: #e6ecf5;
    --ink-50:  #f4f7fb;

    --gold-600: #b08648;
    --gold-500: #c69a5b;
    --gold-400: #d4ad75;
    --gold-300: #e3c598;

    --accent: #c69a5b;
    --accent-dark: #a87f43;
    --accent-soft: rgba(198, 154, 91, 0.12);

    --bg: #ffffff;
    --bg-alt: #f7f8fb;
    --bg-soft: #fafbfd;
    --text: #14213d;
    --text-muted: #5b6a85;
    --text-light: #8392ad;
    --border: rgba(20, 33, 61, 0.08);
    --border-strong: rgba(20, 33, 61, 0.14);

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;
    --radius-xl: 28px;

    --shadow-sm: 0 1px 2px rgba(15, 29, 54, 0.05);
    --shadow: 0 8px 24px rgba(15, 29, 54, 0.08);
    --shadow-lg: 0 24px 60px -20px rgba(15, 29, 54, 0.25);
    --shadow-xl: 0 40px 80px -30px rgba(15, 29, 54, 0.35);

    --ease: cubic-bezier(0.22, 1, 0.36, 1);

    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    --font-display: 'Fraunces', 'Inter', Georgia, serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--text);
    background: var(--bg);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img, svg { display: block; max-width: 100%; }

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

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

/* =========================================
   Reveal Animations
   ========================================= */
[data-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease), transform 0.8s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* =========================================
   Buttons
   ========================================= */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.95rem 1.75rem;
    border-radius: 999px;
    font-family: var(--font-sans);
    font-size: 0.95rem;
    font-weight: 600;
    letter-spacing: 0.01em;
    cursor: pointer;
    border: 1px solid transparent;
    transition: transform 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease), color 0.25s var(--ease), border-color 0.25s var(--ease);
    white-space: nowrap;
}

.btn i { font-size: 0.85em; transition: transform 0.25s var(--ease); }
.btn:hover i { transform: translateX(3px); }

.btn-primary {
    background: var(--ink-900);
    color: #fff;
    box-shadow: 0 10px 30px -10px rgba(10, 20, 40, 0.45);
}
.btn-primary:hover {
    background: var(--ink-700);
    transform: translateY(-2px);
    box-shadow: 0 18px 40px -12px rgba(10, 20, 40, 0.55);
}

.btn-ghost {
    background: transparent;
    color: var(--ink-900);
    border-color: var(--border-strong);
}
.btn-ghost:hover {
    background: var(--ink-900);
    color: #fff;
    border-color: var(--ink-900);
    transform: translateY(-2px);
}

.btn-full { width: 100%; }

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 600;
    color: var(--ink-900);
    position: relative;
    transition: color 0.25s var(--ease), gap 0.25s var(--ease);
}
.btn-link::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: -3px;
    width: 100%;
    height: 1.5px;
    background: currentColor;
    transform: scaleX(0.35);
    transform-origin: left;
    transition: transform 0.35s var(--ease);
}
.btn-link:hover { color: var(--accent-dark); gap: 0.75rem; }
.btn-link:hover::after { transform: scaleX(1); }

/* =========================================
   Navigation
   ========================================= */
.navbar {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: saturate(180%) blur(18px);
    -webkit-backdrop-filter: saturate(180%) blur(18px);
    border-bottom: 1px solid transparent;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.navbar.scrolled {
    background: rgba(255, 255, 255, 0.92);
    border-bottom-color: var(--border);
    box-shadow: 0 8px 24px -16px rgba(15, 29, 54, 0.18);
}

.navbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 24px;
}

.nav-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 1.35rem;
    color: var(--ink-900);
    letter-spacing: -0.01em;
}

.brand-mark {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: linear-gradient(135deg, var(--ink-900), var(--ink-600));
    color: var(--gold-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 6px;
    box-shadow: 0 6px 18px -6px rgba(15, 29, 54, 0.45);
}
.brand-mark svg { width: 100%; height: 100%; }

.nav-menu {
    display: flex;
    list-style: none;
    gap: 2.25rem;
    align-items: center;
}

.nav-menu > li > a {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-muted);
    transition: color 0.25s var(--ease);
    position: relative;
}
.nav-menu > li > a:not(.btn-nav)::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -6px;
    margin: auto;
    width: 0;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
    transition: width 0.3s var(--ease);
}
.nav-menu > li > a:hover,
.nav-menu > li > a.active {
    color: var(--ink-900);
}
.nav-menu > li > a:hover::after,
.nav-menu > li > a.active::after {
    width: 100%;
}

.btn-nav {
    display: inline-flex;
    align-items: center;
    padding: 0.55rem 1.1rem;
    background: var(--ink-900);
    color: #fff !important;
    border-radius: 999px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.25s var(--ease), transform 0.25s var(--ease);
}
.btn-nav:hover { background: var(--ink-700); transform: translateY(-1px); }
.btn-nav::after { display: none !important; }

.hamburger {
    display: none;
    width: 40px;
    height: 40px;
    border: 1px solid var(--border-strong);
    border-radius: 10px;
    background: #fff;
    cursor: pointer;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 5px;
    padding: 0;
}
.hamburger span {
    width: 18px;
    height: 2px;
    background: var(--ink-900);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.2s var(--ease);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* =========================================
   Hero
   ========================================= */
.hero {
    position: relative;
    padding: 7rem 0 6rem;
    background: linear-gradient(180deg, #ffffff 0%, var(--ink-50) 100%);
    overflow: hidden;
    isolation: isolate;
}

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

.hero-blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.55;
}
.hero-blob-1 {
    width: 520px;
    height: 520px;
    top: -160px;
    right: -120px;
    background: radial-gradient(circle, rgba(198, 154, 91, 0.45), transparent 70%);
    animation: float 14s ease-in-out infinite;
}
.hero-blob-2 {
    width: 600px;
    height: 600px;
    bottom: -220px;
    left: -180px;
    background: radial-gradient(circle, rgba(31, 58, 102, 0.35), transparent 70%);
    animation: float 18s ease-in-out infinite reverse;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(15, 29, 54, 0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(15, 29, 54, 0.045) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black, transparent 75%);
}

@keyframes float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -20px) scale(1.05); }
}

.hero-container {
    position: relative;
}

.hero-content {
    max-width: 880px;
    margin: 0 auto;
    text-align: center;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    padding: 0.45rem 1rem;
    border: 1px solid var(--border-strong);
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(8px);
    border-radius: 999px;
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}
.eyebrow-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 0 4px rgba(198, 154, 91, 0.2);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(198, 154, 91, 0.2); }
    50% { box-shadow: 0 0 0 8px rgba(198, 154, 91, 0.08); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5.5vw, 4.6rem);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -0.025em;
    color: var(--ink-900);
    margin-bottom: 1.5rem;
}

.text-gradient {
    background: linear-gradient(120deg, var(--accent) 0%, var(--gold-600) 60%, var(--ink-700) 110%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-style: italic;
}

.hero-subtitle {
    font-size: clamp(1.05rem, 1.5vw, 1.25rem);
    line-height: 1.65;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto 2.25rem;
}

.hero-actions {
    display: inline-flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.85rem;
    margin-bottom: 4rem;
}

.hero-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    max-width: 720px;
    margin: 0 auto;
    padding: 1.5rem 1rem;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(12px);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
}
.stat {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.25rem;
}
.stat-value {
    font-family: var(--font-display);
    font-size: clamp(1.4rem, 2.4vw, 1.9rem);
    font-weight: 600;
    color: var(--ink-900);
    letter-spacing: -0.02em;
}
.stat-label {
    font-size: 0.82rem;
    color: var(--text-muted);
    text-align: center;
}

/* =========================================
   Section Heads
   ========================================= */
.section-head {
    text-align: center;
    max-width: 720px;
    margin: 0 auto 3.5rem;
}
.section-eyebrow {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--accent-dark);
    margin-bottom: 0.85rem;
}
.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.5vw, 2.85rem);
    font-weight: 600;
    line-height: 1.1;
    color: var(--ink-900);
    letter-spacing: -0.02em;
    margin-bottom: 0.85rem;
}
.section-lede {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.65;
}

/* legacy divider (kept hidden in new layout) */
.divider { display: none; }

/* =========================================
   About
   ========================================= */
.about {
    padding: 6rem 0;
    background: var(--bg);
    position: relative;
}

.about-grid {
    display: grid;
    grid-template-columns: 1.15fr 1fr;
    gap: 4rem;
    align-items: center;
    max-width: 1080px;
    margin: 0 auto;
}

.about-copy p {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.about-copy .btn-link { margin-top: 0.5rem; }

.about-highlights {
    display: grid;
    gap: 1rem;
}
.highlight {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
    padding: 1.25rem 1.5rem;
    background: var(--bg-alt);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease), border-color 0.3s var(--ease);
}
.highlight:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
    border-color: var(--border-strong);
}
.highlight i {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: var(--accent-soft);
    color: var(--accent-dark);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
}
.highlight h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 0.2rem;
}
.highlight p {
    font-size: 0.92rem;
    color: var(--text-muted);
    margin: 0;
}

/* =========================================
   Services
   ========================================= */
.services {
    padding: 6rem 0;
    background: var(--bg-alt);
    position: relative;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.service-card {
    position: relative;
    padding: 2.25rem;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s var(--ease);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    isolation: isolate;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--ink-600));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s var(--ease);
    z-index: 1;
}
.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}
.service-card:hover::before { transform: scaleX(1); }

.service-card-wide {
    grid-column: span 3;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 2rem;
    padding: 2rem 2.5rem;
}
.service-card-wide h3 { margin: 0; }
.service-card-wide p { margin: 0.35rem 0 0; }
.service-card-wide .service-icon { margin: 0; }

.service-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    background: linear-gradient(135deg, var(--ink-900), var(--ink-600));
    color: var(--gold-400);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.45rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 10px 24px -10px rgba(15, 29, 54, 0.55);
}

.service-card h3 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}
.service-card p {
    color: var(--text-muted);
    font-size: 0.97rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    flex: 1;
}

/* =========================================
   Contact
   ========================================= */
.contact {
    padding: 6rem 0;
    background: var(--bg);
}

.contact-content {
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow);
}
.contact-card h3 {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 1.75rem;
    letter-spacing: -0.01em;
}

.form-group {
    margin-bottom: 1.25rem;
}
.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    letter-spacing: 0.01em;
}
.required { color: #d04848; margin-left: 2px; }

.form-group input,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-sm);
    font-size: 0.97rem;
    font-family: inherit;
    color: var(--text);
    background: var(--bg-soft);
    transition: border-color 0.25s var(--ease), box-shadow 0.25s var(--ease), background 0.25s var(--ease);
}
.form-group input:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--ink-700);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(31, 58, 102, 0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.form-group input[type="file"] {
    padding: 0.6rem;
    background: var(--bg-soft);
    cursor: pointer;
}

.file-info {
    margin-top: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.recaptcha-notice {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 1rem;
    text-align: center;
    line-height: 1.5;
}

.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.info-card {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 1.75rem;
    transition: border-color 0.3s var(--ease), box-shadow 0.3s var(--ease);
}
.info-card:hover { border-color: var(--border-strong); box-shadow: var(--shadow); }

.info-card-accent {
    background: linear-gradient(135deg, var(--ink-900), var(--ink-700));
    color: #fff;
    border-color: transparent;
    position: relative;
    overflow: hidden;
}
.info-card-accent::before {
    content: '';
    position: absolute;
    top: -40px;
    right: -40px;
    width: 160px;
    height: 160px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(198, 154, 91, 0.5), transparent 70%);
    pointer-events: none;
}
.info-card-accent h3 { color: #fff; position: relative; }
.info-card-accent p { color: rgba(255, 255, 255, 0.8); position: relative; }

.info-card h3 {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--ink-900);
    margin-bottom: 0.85rem;
    letter-spacing: -0.01em;
}

.info-line {
    display: flex;
    gap: 0.85rem;
    align-items: flex-start;
    color: var(--text-muted);
    font-size: 0.94rem;
    margin-bottom: 0.65rem;
    line-height: 1.55;
}
.info-line:last-child { margin-bottom: 0; }
.info-line i {
    flex-shrink: 0;
    margin-top: 0.25rem;
    color: var(--accent-dark);
    width: 16px;
    text-align: center;
}
.info-line a { color: var(--ink-900); font-weight: 500; transition: color 0.2s var(--ease); }
.info-line a:hover { color: var(--accent-dark); }

.hours-table {
    width: 100%;
    margin-bottom: 1rem;
    border-collapse: collapse;
}
.hours-table td {
    padding: 0.65rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 0.94rem;
    color: var(--text-muted);
}
.hours-table tr:last-child td { border-bottom: 0; }

.badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    border-radius: 999px;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.02em;
}
.badge-closed {
    background: rgba(208, 72, 72, 0.1);
    color: #b73a3a;
}

/* =========================================
   Newsletter
   ========================================= */
.newsletter {
    padding: 4rem 0 6rem;
    background: var(--bg);
}

.newsletter-card {
    position: relative;
    background: linear-gradient(135deg, var(--ink-900) 0%, var(--ink-700) 70%, var(--ink-600) 100%);
    color: #fff;
    border-radius: var(--radius-xl);
    padding: 3.5rem;
    display: grid;
    grid-template-columns: 1.3fr 1fr;
    gap: 2.5rem;
    align-items: center;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}
.newsletter-card::before,
.newsletter-card::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}
.newsletter-card::before {
    width: 280px;
    height: 280px;
    top: -100px;
    right: -60px;
    background: radial-gradient(circle, rgba(198, 154, 91, 0.5), transparent 70%);
}
.newsletter-card::after {
    width: 220px;
    height: 220px;
    bottom: -90px;
    left: -40px;
    background: radial-gradient(circle, rgba(79, 110, 163, 0.5), transparent 70%);
}

.newsletter-copy { position: relative; }
.newsletter-copy h2 {
    font-family: var(--font-display);
    font-size: clamp(1.75rem, 3vw, 2.4rem);
    font-weight: 600;
    line-height: 1.15;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}
.newsletter-copy p {
    color: rgba(255, 255, 255, 0.78);
    font-size: 1rem;
    line-height: 1.6;
}

.newsletter-form {
    position: relative;
    display: flex;
    gap: 0.6rem;
    padding: 0.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 999px;
}
.newsletter-form input {
    flex: 1;
    padding: 0.8rem 1.25rem;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 0.95rem;
    font-family: inherit;
}
.newsletter-form input::placeholder { color: rgba(255, 255, 255, 0.6); }
.newsletter-form input:focus { outline: none; }
.newsletter-form .btn-primary {
    background: var(--accent);
    color: var(--ink-900);
    box-shadow: 0 8px 20px -6px rgba(198, 154, 91, 0.6);
}
.newsletter-form .btn-primary:hover {
    background: var(--gold-300);
    box-shadow: 0 12px 28px -6px rgba(198, 154, 91, 0.65);
}

/* =========================================
   Footer
   ========================================= */
.footer {
    background: var(--ink-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 0 1.5rem;
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand .nav-brand { color: #fff; margin-bottom: 1rem; }
.footer-brand .brand-mark {
    background: rgba(255, 255, 255, 0.08);
    color: var(--gold-400);
}
.footer-brand p {
    font-size: 0.95rem;
    line-height: 1.65;
    max-width: 320px;
}

.footer-links {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.footer-links h5 {
    color: #fff;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1.1rem;
}
.footer-links ul { list-style: none; display: flex; flex-direction: column; gap: 0.65rem; }
.footer-links a {
    color: rgba(255, 255, 255, 0.65);
    font-size: 0.92rem;
    transition: color 0.2s var(--ease);
}
.footer-links a:hover { color: var(--gold-400); }

.footer-bottom {
    padding-top: 1.5rem;
    text-align: center;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
}

/* =========================================
   Cookie Notice
   ========================================= */
.cookie-notice {
    position: fixed;
    bottom: 1.5rem;
    left: 1.5rem;
    right: 1.5rem;
    max-width: 720px;
    margin: 0 auto;
    background: rgba(10, 20, 40, 0.96);
    backdrop-filter: blur(18px);
    color: #fff;
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-xl);
    z-index: 10000;
    transform: translateY(140%);
    opacity: 0;
    transition: transform 0.5s var(--ease), opacity 0.5s var(--ease);
}
.cookie-notice.show { transform: translateY(0); opacity: 1; }

.cookie-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}
.cookie-content h4 { margin-bottom: 0.3rem; font-size: 1rem; font-weight: 600; }
.cookie-content p {
    font-size: 0.88rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, 0.75);
    margin: 0;
}
.cookie-content .btn-primary {
    background: var(--accent);
    color: var(--ink-900);
    padding: 0.7rem 1.4rem;
    flex-shrink: 0;
}
.cookie-content .btn-primary:hover { background: var(--gold-300); }

/* =========================================
   Responsive
   ========================================= */
@media (max-width: 1024px) {
    .about-grid { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .service-card-wide { grid-column: span 2; }
    .contact-content { grid-template-columns: 1fr; }
    .newsletter-card { grid-template-columns: 1fr; padding: 2.5rem; }
    .footer-top { grid-template-columns: 1fr; gap: 2.5rem; }
}

@media (max-width: 768px) {
    .container { padding: 0 20px; }

    .nav-menu {
        position: fixed;
        top: 68px;
        left: 0;
        right: 0;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        padding: 1.5rem 1.5rem 2rem;
        background: rgba(255, 255, 255, 0.98);
        backdrop-filter: blur(16px);
        border-bottom: 1px solid var(--border);
        box-shadow: var(--shadow);
        transform: translateY(-120%);
        opacity: 0;
        pointer-events: none;
        transition: transform 0.4s var(--ease), opacity 0.3s var(--ease);
    }
    .nav-menu.active {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }
    .nav-menu li { width: 100%; }
    .nav-menu > li > a {
        display: block;
        padding: 0.85rem 0;
        border-bottom: 1px solid var(--border);
        font-size: 1rem;
        color: var(--ink-900);
    }
    .nav-menu > li > a::after { display: none; }
    .btn-nav { margin-top: 0.75rem; justify-content: center; }

    .hamburger { display: flex; }

    .hero { padding: 4rem 0 4.5rem; }
    .hero-actions { margin-bottom: 3rem; }
    .hero-stats {
        grid-template-columns: 1fr;
        gap: 0.75rem;
        padding: 1.25rem;
    }
    .stat { flex-direction: row; justify-content: space-between; align-items: baseline; gap: 1rem; }
    .stat-label { text-align: right; }

    .about, .services, .contact, .newsletter { padding: 4rem 0; }

    .services-grid { grid-template-columns: 1fr; }
    .service-card-wide {
        grid-column: span 1;
        grid-template-columns: 1fr;
        text-align: left;
        gap: 1rem;
    }

    .newsletter-form { flex-direction: column; border-radius: var(--radius-lg); padding: 0.6rem; }
    .newsletter-form .btn-primary { width: 100%; }
    .newsletter-card { padding: 2rem; }

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

    .cookie-notice { left: 1rem; right: 1rem; bottom: 1rem; padding: 1rem 1.25rem; }
    .cookie-content { flex-direction: column; align-items: flex-start; gap: 1rem; }
    .cookie-content .btn-primary { width: 100%; }
}

@media (max-width: 480px) {
    .contact-card, .info-card { padding: 1.5rem; }
    .service-card { padding: 1.75rem; }
    .footer-links { grid-template-columns: 1fr; }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.001ms !important;
        transition-duration: 0.001ms !important;
    }
    [data-reveal] { opacity: 1; transform: none; }
}
