/* ============================================
   D & U Chicken — Wilmington, NC
   Confident Corporate · Deep Navy + Warm Gold
   ============================================ */

/* ---------- RESET & BASE ---------- */
*, *::before, *::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --navy-950: #0A1F36;
    --navy-900: #0F2B4C;
    --navy-800: #153A63;
    --navy-700: #1B4A7A;
    --navy-600: #245B94;
    --gold-500: #C8960C;
    --gold-400: #D4A825;
    --gold-300: #E0BC4A;
    --gold-200: #EDD07A;
    --gold-100: #F7E4A8;
    --cream-50: #FAF8F4;
    --cream-100: #F5F0E8;
    --cream-200: #EDE5D8;
    --neutral-800: #1A1A2E;
    --neutral-700: #2D2D44;
    --neutral-600: #4A4A60;
    --neutral-500: #6B6B80;
    --neutral-400: #9090A4;
    --neutral-300: #B8B8C8;
    --neutral-200: #D4D4E0;
    --neutral-100: #ECECF4;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --shadow-sm: 0 1px 3px rgba(15, 43, 76, 0.08);
    --shadow-md: 0 4px 16px rgba(15, 43, 76, 0.10);
    --shadow-lg: 0 8px 32px rgba(15, 43, 76, 0.14);
    --shadow-xl: 0 16px 48px rgba(15, 43, 76, 0.18);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-body);
    color: var(--neutral-800);
    background: var(--cream-50);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

/* ---------- NAVBAR ---------- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(15, 43, 76, 0.95);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(200, 150, 12, 0.15);
    transition: var(--transition);
}

.navbar.scrolled {
    background: rgba(10, 31, 54, 0.98);
    box-shadow: var(--shadow-lg);
}

.nav-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--gold-400);
    letter-spacing: -0.02em;
}

.logo-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav-menu {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--neutral-200);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.08);
}

.nav-cta {
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--navy-900);
    background: var(--gold-400);
    padding: 10px 20px;
    border-radius: var(--radius-sm);
    margin-left: 8px;
    transition: var(--transition);
    letter-spacing: 0.01em;
}

.nav-cta:hover {
    background: var(--gold-300);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(200, 150, 12, 0.4);
}

.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
}

.hamburger {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--white);
    position: relative;
    transition: var(--transition);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 22px;
    height: 2px;
    background: var(--white);
    left: 0;
    transition: var(--transition);
}

.hamburger::before { top: -7px; }
.hamburger::after { bottom: -7px; }

.nav-toggle[aria-expanded="true"] .hamburger {
    background: transparent;
}

.nav-toggle[aria-expanded="true"] .hamburger::before {
    top: 0;
    transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] .hamburger::after {
    bottom: 0;
    transform: rotate(-45deg);
}

/* Mobile overlay */
.mobile-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(10, 31, 54, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

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

.mobile-menu {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mobile-link {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 500;
    color: var(--neutral-200);
    padding: 12px 24px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.mobile-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.06);
}

.mobile-cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 1.1rem;
    color: var(--navy-900);
    background: var(--gold-400);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
}

/* ---------- HERO ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: var(--navy-900);
    overflow: hidden;
    padding-top: 72px;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 80% 60% at 70% 40%, rgba(200, 150, 12, 0.06) 0%, transparent 70%),
        radial-gradient(ellipse 50% 80% at 10% 90%, rgba(200, 150, 12, 0.04) 0%, transparent 60%);
    pointer-events: none;
}

.hero-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 24px;
    width: 100%;
    position: relative;
    z-index: 1;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gold-400);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 24px;
    padding: 8px 16px;
    background: rgba(200, 150, 12, 0.1);
    border: 1px solid rgba(200, 150, 12, 0.25);
    border-radius: 100px;
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.12;
    letter-spacing: -0.025em;
    margin-bottom: 24px;
    max-width: 560px;
}

.hero-headline em {
    font-style: normal;
    color: var(--gold-400);
}

.hero-subheadline {
    font-size: 1.125rem;
    color: var(--neutral-300);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold-400);
    line-height: 1;
}

.stat-label {
    font-size: 0.8125rem;
    color: var(--neutral-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.12);
}

/* Hero visual */
.hero-visual {
    position: relative;
}

.hero-image-main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero-image-main img {
    width: 100%;
    height: 700px;
    object-fit: cover;
}

.hero-image-accent {
    position: absolute;
    bottom: -40px;
    left: -40px;
    width: 240px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--navy-900);
}

.hero-image-accent img {
    width: 100%;
    height: 240px;
    object-fit: cover;
}

.hero-floating-card {
    position: absolute;
    top: 40px;
    right: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--white);
    padding: 16px 20px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 2;
}

.hero-floating-card svg {
    color: var(--gold-500);
    flex-shrink: 0;
}

.floating-card-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--neutral-500);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.floating-card-value {
    display: block;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--navy-900);
}

/* ---------- BUTTONS ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-size: 0.9375rem;
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-decoration: none;
    white-space: nowrap;
}

.btn-primary {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
}

.btn-primary:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 150, 12, 0.35);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-secondary:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-gold {
    background: var(--gold-500);
    color: var(--navy-900);
    border-color: var(--gold-500);
}

.btn-gold:hover {
    background: var(--gold-400);
    border-color: var(--gold-400);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 150, 12, 0.35);
}

.btn-outline-gold {
    background: transparent;
    color: var(--gold-400);
    border-color: var(--gold-400);
}

.btn-outline-gold:hover {
    background: rgba(200, 150, 12, 0.1);
    transform: translateY(-2px);
}

.btn-outline-light {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.3);
}

.btn-outline-light:hover {
    border-color: var(--white);
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-2px);
}

.btn-large {
    padding: 16px 32px;
    font-size: 1rem;
}

/* ---------- SECTION DIVIDER ---------- */
.section-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
}

.divider-icon {
    width: 40px;
    height: 40px;
    color: var(--gold-500);
    opacity: 0.6;
}

/* ---------- SECTION LABELS & TITLES ---------- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--gold-500);
    margin-bottom: 16px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.875rem, 3.5vw, 2.75rem);
    font-weight: 700;
    color: var(--navy-900);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title--light {
    color: var(--white);
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--neutral-500);
    line-height: 1.7;
    max-width: 560px;
}

.section-subtitle--light {
    color: var(--neutral-300);
}

/* ---------- ABOUT ---------- */
.about {
    padding: 100px 24px;
    background: var(--cream-50);
}

.about-container {
    max-width: 1280px;
    margin: 0 auto;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image-col {
    position: relative;
}

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image-wrapper img {
    width: 100%;
    height: 800px;
    object-fit: cover;
}

.about-image-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--cream-50);
    width: 60%;
}

.about-image-secondary img {
    width: 100%;
    height: 350px;
    object-fit: cover;
}

.about-content-col {
    padding: 20px 0;
}

.about-body {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about-feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.feature-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(200, 150, 12, 0.1);
    border-radius: var(--radius-sm);
    color: var(--gold-500);
}

.about-feature h4 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.about-feature p {
    font-size: 0.9375rem;
    color: var(--neutral-500);
    line-height: 1.6;
}

/* ---------- MENU ---------- */
.menu {
    padding: 100px 24px;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

.menu::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 60% 50% at 90% 10%, rgba(200, 150, 12, 0.05) 0%, transparent 70%),
        radial-gradient(ellipse 40% 40% at 5% 90%, rgba(200, 150, 12, 0.03) 0%, transparent 60%);
    pointer-events: none;
}

.menu-container {
    max-width: 1280px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.menu-header {
    text-align: center;
    margin-bottom: 64px;
}

.menu-header .section-subtitle {
    margin: 0 auto;
}

.menu-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.menu-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: var(--transition);
}

.menu-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(200, 150, 12, 0.3);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.menu-card-image {
    overflow: hidden;
    height: 220px;
}

.menu-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

.menu-card:hover .menu-card-image img {
    transform: scale(1.05);
}

.menu-card-content {
    padding: 28px;
}

.menu-card-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
}

.menu-card-header h3 {
    font-family: var(--font-display);
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--white);
    letter-spacing: -0.01em;
}

.menu-tag {
    font-size: 0.6875rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold-400);
    background: rgba(200, 150, 12, 0.15);
    padding: 4px 10px;
    border-radius: 100px;
    border: 1px solid rgba(200, 150, 12, 0.3);
}

.menu-card-desc {
    font-size: 0.9375rem;
    color: var(--neutral-400);
    line-height: 1.7;
}

.menu-note {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 20px 24px;
    background: rgba(200, 150, 12, 0.08);
    border: 1px solid rgba(200, 150, 12, 0.2);
    border-radius: var(--radius-md);
    color: var(--neutral-300);
    font-size: 0.9375rem;
}

.menu-note svg {
    color: var(--gold-400);
    flex-shrink: 0;
}

.menu-note a {
    color: var(--gold-400);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

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

/* ---------- TRUST ---------- */
.trust {
    padding: 100px 24px;
    background: var(--cream-100);
}

.trust-container {
    max-width: 1280px;
    margin: 0 auto;
}

.trust-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.trust-body {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 40px;
}

.trust-badges {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.trust-badge {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy-900);
}

.trust-badge svg {
    flex-shrink: 0;
}

.trust-visual {
    position: relative;
}

.trust-image-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.trust-image-grid img:first-child {
    width: 100%;
    height: 600px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.trust-image-grid img:last-child {
    width: 75%;
    height: 280px;
    object-fit: cover;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-md);
    margin-left: auto;
}

/* ---------- LOCATION ---------- */
.location {
    padding: 100px 24px;
    background: var(--white);
}

.location-container {
    max-width: 1280px;
    margin: 0 auto;
}

.location-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.location-details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin: 40px 0;
}

.location-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.location-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--navy-900);
    border-radius: var(--radius-sm);
    color: var(--gold-400);
}

.location-item h4 {
    font-size: 0.8125rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--neutral-500);
    margin-bottom: 6px;
}

.location-item p {
    font-size: 1.0625rem;
    color: var(--navy-900);
    line-height: 1.6;
}

.location-item a {
    color: var(--navy-900);
    font-weight: 600;
    transition: var(--transition);
}

.location-item a:hover {
    color: var(--gold-500);
}

.location-cta {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-top: 8px;
}

.map-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 500px;
}

/* ---------- CTA SECTION ---------- */
.cta-section {
    position: relative;
    padding: 100px 24px;
    background: var(--navy-900);
    overflow: hidden;
}

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(200, 150, 12, 0.08) 0%, transparent 70%),
        radial-gradient(ellipse 40% 50% at 90% 80%, rgba(200, 150, 12, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.cta-subheadline {
    font-size: 1.125rem;
    color: var(--neutral-300);
    line-height: 1.7;
    margin-bottom: 40px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ---------- FOOTER ---------- */
.footer {
    background: var(--navy-950);
    padding: 80px 24px 0;
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
    text-decoration: none;
}

.footer-logo-mark {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.35rem;
    color: var(--gold-400);
}

.footer-logo-text {
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 1rem;
    color: var(--white);
}

.footer-tagline {
    font-size: 0.9375rem;
    color: var(--neutral-400);
    line-height: 1.7;
    margin-bottom: 24px;
    max-width: 300px;
}

.footer-contact {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer-contact p {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--neutral-400);
}

.footer-contact a {
    color: var(--gold-400);
    font-weight: 600;
    transition: var(--transition);
}

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

.footer-links h4,
.footer-hours h4 {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul,
.footer-hours ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-links a {
    font-size: 0.9375rem;
    color: var(--neutral-400);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--gold-400);
}

.footer-hours li {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    font-size: 0.9375rem;
    color: var(--neutral-400);
}

.footer-hours li span:last-child {
    color: var(--neutral-300);
    font-weight: 500;
}

.footer-bottom {
    padding: 28px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.8125rem;
    color: var(--neutral-500);
}

.footer-bottom a {
    color: var(--gold-400);
    font-weight: 600;
    transition: var(--transition);
}

.footer-bottom a:hover {
    color: var(--gold-300);
}

/* ---------- RESPONSIVE ---------- */
@media (max-width: 1024px) {
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-visual {
        max-width: 560px;
    }
    
    .hero-image-main img {
        height: 500px;
    }
    
    .hero-image-accent {
        width: 200px;
        bottom: -24px;
        left: -16px;
    }
    
    .hero-image-accent img {
        height: 200px;
    }
    
    .about-grid,
    .trust-grid,
    .location-grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-image-wrapper img,
    .trust-image-grid img:first-child {
        height: 500px;
    }
    
    .about-image-secondary {
        width: 55%;
        right: -16px;
        bottom: -24px;
    }
    
    .menu-grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        display: none;
    }
    
    .nav-toggle {
        display: block;
    }
    
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }
    
    .hero-content {
        order: 1;
    }
    
    .hero-visual {
        order: 2;
    }
    
    .hero-floating-card {
        right: 0;
        top: 16px;
    }
    
    .hero-stats {
        gap: 20px;
    }
    
    .about-image-secondary {
        display: none;
    }
    
    .trust-image-grid img:last-child {
        width: 100%;
    }
    
    .map-wrapper {
        min-height: 350px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero-headline {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-stats {
        flex-wrap: wrap;
        gap: 16px;
    }
    
    .stat-divider {
        display: none;
    }
    
    .btn-large {
        width: 100%;
        justify-content: center;
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn-large {
        width: 100%;
    }
}

/* ---------- REDUCED MOTION ---------- */
@media (prefers-reduced-motion: no-preference) {
    .menu-card {
        transition: var(--transition);
    }
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        transition: none !important;
        animation: none !important;
    }
    
    html {
        scroll-behavior: auto;
    }
}
