/* ============================================
   THE QUEEN'S HEAD TATTOO PARLOUR
   Classic & Elegant — Navy + Warm Gold
   ============================================ */

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

:root {
    --navy-950: #050d1a;
    --navy-900: #0a1628;
    --navy-800: #0f2137;
    --navy-700: #162d4a;
    --navy-600: #1e3a5f;
    --navy-500: #254a73;

    --gold-500: #C9A84C;
    --gold-400: #D4B96A;
    --gold-300: #E0CA88;
    --gold-200: #EBD9A6;
    --gold-100: #F5E8C4;

    --cream-50: #FAF8F5;
    --cream-100: #F5F0E8;
    --cream-200: #EDE5D8;
    --cream-300: #E0D5C4;

    --text-dark: #0a1628;
    --text-body: #1e3a5f;
    --text-muted: #4a6274;
    --text-light: #f5f0e8;

    --font-display: 'Playfair Display', 'Georgia', serif;
    --font-accent: 'Cormorant Garamond', 'Georgia', serif;
    --font-body: 'Lato', 'Helvetica Neue', Arial, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;

    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.6s ease;
}

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

body {
    font-family: var(--font-body);
    font-weight: 300;
    color: var(--text-body);
    background-color: var(--cream-50);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: var(--space-sm);
    background: var(--navy-900);
    color: var(--gold-300);
    padding: var(--space-xs) var(--space-md);
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-weight: 700;
}

.skip-link:focus {
    top: var(--space-sm);
}

/* ============================================
   SECTION LABELS & TITLES
   ============================================ */

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

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.25rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--navy-900);
    margin-bottom: var(--space-lg);
}

.section-title em {
    font-style: italic;
    color: var(--gold-500);
}

.section-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    font-weight: 300;
    color: var(--text-muted);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.6;
}

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

/* ============================================
   BUTTONS
   ============================================ */

.btn {
    display: inline-flex;
    align-items: center;
    gap: var(--space-sm);
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: var(--radius-sm);
    border: 2px solid transparent;
    cursor: pointer;
    transition: all var(--transition-base);
    text-decoration: none;
}

.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);
    color: var(--navy-900);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(201, 168, 76, 0.3);
}

.btn-primary svg {
    width: 16px;
    height: 16px;
    transition: transform var(--transition-fast);
}

.btn-primary:hover svg {
    transform: translateX(3px);
}

.btn-outline-light {
    background: transparent;
    color: var(--text-light);
    border-color: rgba(245, 240, 232, 0.5);
}

.btn-outline-light:hover {
    background: rgba(245, 240, 232, 0.1);
    border-color: var(--text-light);
    color: var(--text-light);
    transform: translateY(-2px);
}

.btn-outline-dark {
    background: transparent;
    color: var(--navy-900);
    border-color: var(--navy-900);
}

.btn-outline-dark:hover {
    background: var(--navy-900);
    color: var(--gold-500);
    transform: translateY(-2px);
}

.btn-lg {
    padding: 1.25rem 2.5rem;
    font-size: 0.9rem;
}

.btn-full {
    width: 100%;
    justify-content: center;
}

/* ============================================
   NAVBAR
   ============================================ */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    padding: var(--space-md) 0;
    transition: all var(--transition-base);
}

.navbar.scrolled {
    background: rgba(10, 22, 40, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    padding: var(--space-sm) 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.2);
}

.navbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.navbar-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-light);
    text-decoration: none;
}

.navbar-logo:hover {
    color: var(--gold-300);
}

.logo-icon {
    width: 36px;
    height: 36px;
    color: var(--gold-500);
}

.logo-text {
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 500;
    letter-spacing: 0.02em;
}

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

.nav-menu ul {
    display: flex;
    list-style: none;
    gap: var(--space-xl);
    align-items: center;
}

.nav-menu a {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.8);
    text-decoration: none;
    transition: color var(--transition-fast);
    position: relative;
}

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

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

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

.nav-cta {
    background: var(--gold-500) !important;
    color: var(--navy-900) !important;
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    font-weight: 700 !important;
    letter-spacing: 0.08em !important;
}

.nav-cta::after {
    display: none;
}

.nav-cta:hover {
    background: var(--gold-400) !important;
    color: var(--navy-900) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    background: none;
    border: none;
    cursor: pointer;
    padding: var(--space-xs);
    z-index: 101;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    position: relative;
    transition: all var(--transition-base);
}

.hamburger::before,
.hamburger::after {
    content: '';
    position: absolute;
    width: 24px;
    height: 2px;
    background: var(--text-light);
    transition: all var(--transition-base);
}

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

.hamburger::after {
    top: 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 {
    top: 0;
    transform: rotate(-45deg);
}

/* ============================================
   HERO
   ============================================ */

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--navy-950);
}

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

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

.hero-scrim {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(5, 13, 26, 0.92) 0%,
        rgba(10, 22, 40, 0.85) 40%,
        rgba(22, 45, 74, 0.7) 100%
    );
}

.hero-scrim-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 40%;
    background: linear-gradient(to top, var(--navy-950) 0%, transparent 100%);
}

.hero-content {
    position: relative;
    z-index: 1;
    padding: var(--space-4xl) 0 var(--space-3xl);
    max-width: 900px;
}

.hero-badge {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-xl);
}

.badge-line {
    width: 48px;
    height: 1px;
    background: var(--gold-500);
    opacity: 0.6;
}

.badge-text {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold-400);
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--text-light);
    margin-bottom: var(--space-lg);
    text-shadow: 0 2px 40px rgba(0, 0, 0, 0.3);
}

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

.hero-subtitle {
    font-family: var(--font-accent);
    font-size: clamp(1.15rem, 2vw, 1.4rem);
    font-weight: 300;
    color: rgba(245, 240, 232, 0.8);
    max-width: 600px;
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-md);
    margin-bottom: var(--space-3xl);
}

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid rgba(201, 168, 76, 0.2);
}

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

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

.stat-label {
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(245, 240, 232, 0.5);
}

.stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(201, 168, 76, 0.25);
}

.scroll-indicator {
    position: absolute;
    bottom: var(--space-xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    color: var(--gold-500);
    opacity: 0.6;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-indicator svg {
    width: 24px;
    height: 24px;
}

@keyframes scrollBounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ============================================
   ABOUT
   ============================================ */

.about {
    padding: var(--space-4xl) 0;
    background: var(--cream-50);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.about-images {
    position: relative;
}

.about-img-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.15);
}

.about-img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(10, 22, 40, 0.2);
    border: 4px solid var(--cream-50);
}

.about-img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-accent {
    position: absolute;
    top: -30px;
    left: -30px;
    width: 80px;
    height: 80px;
    color: var(--gold-500);
    opacity: 0.3;
}

.about-content {
    padding: var(--space-xl) 0;
}

.about-content .section-title {
    margin-bottom: var(--space-lg);
}

.about-content p {
    font-family: var(--font-accent);
    font-size: 1.15rem;
    color: var(--text-body);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
    margin-top: var(--space-xl);
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: var(--space-sm);
}

.feature-icon {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    flex-shrink: 0;
    margin-top: 3px;
}

.feature-item span {
    font-size: 0.9rem;
    color: var(--text-body);
    line-height: 1.5;
}

/* ============================================
   SERVICES
   ============================================ */

.services {
    padding: var(--space-4xl) 0;
    background: var(--navy-900);
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, transparent, var(--gold-500), transparent);
}

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

.services .section-subtitle {
    color: rgba(245, 240, 232, 0.6);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-3xl);
}

.service-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(201, 168, 76, 0.15);
    border-radius: var(--radius-md);
    padding: var(--space-xl);
    transition: all var(--transition-base);
}

.service-card:hover {
    background: rgba(201, 168, 76, 0.05);
    border-color: rgba(201, 168, 76, 0.4);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.3);
}

.service-card-icon {
    width: 56px;
    height: 56px;
    color: var(--gold-500);
    margin-bottom: var(--space-md);
}

.service-card-icon svg {
    width: 100%;
    height: 100%;
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.35rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: var(--space-sm);
}

.service-card-desc {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: rgba(245, 240, 232, 0.65);
    line-height: 1.7;
    margin-bottom: var(--space-md);
}

.service-card-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-xs);
}

.service-card-features li {
    font-size: 0.875rem;
    color: rgba(245, 240, 232, 0.5);
    padding-left: 1.25rem;
    position: relative;
}

.service-card-features li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.5em;
    width: 6px;
    height: 6px;
    background: var(--gold-500);
    border-radius: 50%;
    opacity: 0.6;
}

/* ============================================
   GALLERY
   ============================================ */

.gallery {
    padding: var(--space-4xl) 0;
    background: var(--cream-100);
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-md);
    margin-top: var(--space-3xl);
}

.gallery-item {
    position: relative;
    border-radius: var(--radius-md);
    overflow: hidden;
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

.gallery-item:hover img {
    transform: scale(1.05);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(10, 22, 40, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-lg);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item:hover .gallery-overlay {
    opacity: 1;
}

.gallery-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--text-light);
    font-style: italic;
}

.gallery-item--wide {
    grid-column: span 7;
}

.gallery-item:not(.gallery-item--wide) {
    grid-column: span 5;
}

.gallery-cta {
    margin-top: var(--space-2xl);
}

/* ============================================
   EXPERIENCE / PROCESS
   ============================================ */

.experience {
    padding: var(--space-4xl) 0;
    background: var(--cream-50);
    position: relative;
}

.experience::before {
    content: '';
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 1px;
    height: 80px;
    background: linear-gradient(to bottom, var(--gold-500), transparent);
}

.experience-header {
    margin-bottom: var(--space-3xl);
}

.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
    position: relative;
}

.process-step {
    text-align: center;
    padding: var(--space-lg);
    position: relative;
}

.step-number {
    font-family: var(--font-display);
    font-size: 3rem;
    font-weight: 600;
    color: var(--gold-500);
    opacity: 0.25;
    line-height: 1;
    margin-bottom: var(--space-md);
}

.step-connector {
    display: none;
}

.step-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: var(--space-sm);
}

.step-desc {
    font-family: var(--font-accent);
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ============================================
   CTA BANNER
   ============================================ */

.cta-banner {
    padding: var(--space-4xl) 0;
    background: var(--navy-900);
    position: relative;
    overflow: hidden;
}

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

.cta-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 500px;
    height: 500px;
    color: var(--gold-500);
    opacity: 0.04;
}

.cta-label {
    margin-bottom: var(--space-lg);
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 500;
    color: var(--text-light);
    line-height: 1.2;
    margin-bottom: var(--space-lg);
}

.cta-title em {
    font-style: italic;
    color: var(--gold-400);
}

.cta-desc {
    font-family: var(--font-accent);
    font-size: 1.2rem;
    color: rgba(245, 240, 232, 0.6);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

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

/* ============================================
   CONTACT
   ============================================ */

.contact {
    padding: var(--space-4xl) 0;
    background: var(--cream-50);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.contact-info .section-title {
    margin-bottom: var(--space-md);
}

.contact-desc {
    font-family: var(--font-accent);
    font-size: 1.1rem;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

.contact-item {
    display: flex;
    gap: var(--space-md);
}

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

.contact-item-icon svg {
    width: 20px;
    height: 20px;
}

.contact-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy-900);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.6;
}

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

.contact-item a:hover {
    color: var(--gold-400);
    text-decoration: underline;
}

/* Form */
.contact-form-wrapper {
    background: var(--navy-900);
    border-radius: var(--radius-lg);
    padding: var(--space-2xl);
    box-shadow: 0 20px 60px rgba(10, 22, 40, 0.2);
}

.form-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--text-light);
    margin-bottom: var(--space-xs);
}

.form-note {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.5);
    margin-bottom: var(--space-xl);
}

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

.form-group label {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gold-400);
    margin-bottom: var(--space-xs);
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(201, 168, 76, 0.2);
    border-radius: var(--radius-sm);
    color: var(--text-light);
    font-family: var(--font-body);
    font-size: 0.95rem;
    line-height: 1.5;
    transition: all var(--transition-fast);
    -webkit-appearance: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(245, 240, 232, 0.3);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--gold-500);
    background: rgba(201, 168, 76, 0.05);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

.form-group select {
    cursor: pointer;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%23C9A84C' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

.form-group select option {
    background: var(--navy-900);
    color: var(--text-light);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: rgba(201, 168, 76, 0.1);
    border: 1px solid rgba(201, 168, 76, 0.3);
    border-radius: var(--radius-sm);
    margin-top: var(--space-md);
}

.form-success svg {
    width: 20px;
    height: 20px;
    color: var(--gold-500);
    flex-shrink: 0;
}

.form-success p {
    font-size: 0.9rem;
    color: var(--gold-200);
}

/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--navy-950);
    padding: var(--space-3xl) 0 var(--space-lg);
}

.footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid rgba(201, 168, 76, 0.1);
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    color: var(--text-light);
    text-decoration: none;
    margin-bottom: var(--space-md);
}

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

.footer-tagline {
    font-family: var(--font-accent);
    font-size: 1rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7;
    max-width: 280px;
}

.footer-links strong,
.footer-contact strong {
    display: block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-500);
    margin-bottom: var(--space-md);
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.5);
    text-decoration: none;
    transition: color var(--transition-fast);
}

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

.footer-contact address {
    font-style: normal;
    font-size: 0.9rem;
    color: rgba(245, 240, 232, 0.5);
    line-height: 1.7;
    margin-bottom: var(--space-sm);
}

.footer-contact p {
    font-size: 0.875rem;
    margin-bottom: 4px;
}

.footer-contact a {
    color: rgba(245, 240, 232, 0.5);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-sm);
    padding-top: var(--space-lg);
}

.footer-bottom p {
    font-size: 0.8rem;
    color: rgba(245, 240, 232, 0.3);
}

.footer-bottom a {
    color: rgba(245, 240, 232, 0.3);
}

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

/* ============================================
   RESPONSIVE
   ============================================ */

@media (max-width: 1024px) {
    .about-grid {
        gap: var(--space-2xl);
    }

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

    .process-steps {
        grid-template-columns: repeat(2, 1fr);
        gap: var(--space-xl);
    }

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

@media (max-width: 768px) {
    .nav-toggle {
        display: block;
    }

    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        background: var(--navy-900);
        padding: var(--space-3xl) var(--space-xl) var(--space-xl);
        transition: right var(--transition-base);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.5);
    }

    .nav-menu.open {
        right: 0;
    }

    .nav-menu ul {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .nav-menu a {
        font-size: 1rem;
    }

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

    .hero-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: var(--space-md);
    }

    .stat-divider {
        display: none;
    }

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

    .about-images {
        max-width: 500px;
    }

    .about-img-secondary {
        right: -20px;
        bottom: -20px;
    }

    .about-features {
        grid-template-columns: 1fr;
    }

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

    .gallery-item--wide,
    .gallery-item:not(.gallery-item--wide) {
        grid-column: span 12;
    }

    .process-steps {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

    .contact-form-wrapper {
        padding: var(--space-lg);
    }

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

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }

    .hero-actions {
        flex-direction: column;
    }

    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }

    .about-img-secondary {
        width: 65%;
        right: -10px;
        bottom: -10px;
    }
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .scroll-indicator {
        animation: none;
    }
}
