/* ========================================
   EL PATRON BARBERSHOP BAR LOUNGE
   Stylesheet
======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-charcoal: #1a1a2e;
    --color-charcoal-light: #2d2d44;
    --color-charcoal-dark: #12121f;
    --color-coral: #E85D3A;
    --color-coral-light: #f07558;
    --color-coral-dark: #c94d2e;
    --color-cream: #f5f0eb;
    --color-cream-dark: #e8e0d8;
    --color-white: #ffffff;
    --color-text-dark: #1a1a2e;
    --color-text-light: #f5f0eb;
    --color-text-muted: #8a8a9a;
    --color-overlay: rgba(26, 26, 46, 0.7);
    
    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'Outfit', 'Segoe UI', 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;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;
    
    --shadow-sm: 0 2px 8px rgba(26, 26, 46, 0.08);
    --shadow-md: 0 8px 30px rgba(26, 26, 46, 0.12);
    --shadow-lg: 0 20px 60px rgba(26, 26, 46, 0.15);
    --shadow-coral: 0 8px 30px rgba(232, 93, 58, 0.35);
}

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.6;
    color: var(--color-text-dark);
    background-color: var(--color-cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
}

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

ul, ol {
    list-style: none;
}

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-heading);
    font-weight: 800;
    line-height: 1.15;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-xl);
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.02em;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--coral {
    background: var(--color-coral);
    color: var(--color-white);
    box-shadow: var(--shadow-coral);
}

.btn--coral:hover {
    background: var(--color-coral-light);
    transform: translateY(-2px);
    box-shadow: 0 12px 35px rgba(232, 93, 58, 0.45);
}

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

.btn--outline:hover {
    background: var(--color-charcoal);
    color: var(--color-white);
    transform: translateY(-2px);
}

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

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

.btn--large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

.btn--white-text {
    color: var(--color-white);
}

/* --- Section Tags --- */
.section-tag {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: 2rem;
}

.section-tag::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.25rem;
    height: 2px;
    background: var(--color-coral);
}

.section-tag--light {
    color: var(--color-coral);
}

.section-tag--light::before {
    background: var(--color-coral);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-charcoal);
    margin-bottom: var(--space-md);
}

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

.section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.section-header--light {
    padding-top: var(--space-2xl);
    padding-bottom: var(--space-xl);
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 26, 46, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(232, 93, 58, 0.15);
    transition: all 0.3s ease;
}

.navbar.scrolled {
    background: rgba(18, 18, 31, 0.98);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.logo-icon {
    width: 40px;
    height: 40px;
    background: var(--color-coral);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-weight: 900;
    font-size: 1.3rem;
    color: var(--color-white);
    transform: rotate(-3deg);
    transition: transform 0.3s ease;
}

.nav-logo:hover .logo-icon {
    transform: rotate(0deg);
}

.logo-text {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-white);
}

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

.nav-menu a {
    font-size: 0.9rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    position: relative;
    padding: 0.25rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-coral);
    transition: width 0.3s ease;
}

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

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

.nav-cta {
    background: var(--color-coral) !important;
    color: var(--color-white) !important;
    padding: 0.6rem 1.25rem !important;
    border-radius: var(--radius-xl) !important;
    font-weight: 600 !important;
}

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

.nav-cta:hover {
    background: var(--color-coral-light) !important;
    transform: translateY(-1px);
}

/* Hamburger */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.hamburger {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.nav-toggle.active .hamburger:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active .hamburger:nth-child(2) {
    opacity: 0;
}

.nav-toggle.active .hamburger:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* --- Hero --- */
.hero {
    min-height: 100vh;
    background: var(--color-charcoal);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 100px var(--space-lg) 60px;
}

.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.geo-circle {
    position: absolute;
    border-radius: 50%;
    opacity: 0.06;
}

.geo-circle--1 {
    width: 600px;
    height: 600px;
    background: var(--color-coral);
    top: -200px;
    right: -100px;
}

.geo-circle--2 {
    width: 300px;
    height: 300px;
    background: var(--color-coral);
    bottom: -80px;
    left: 10%;
}

.geo-square {
    position: absolute;
    width: 120px;
    height: 120px;
    background: var(--color-coral);
    opacity: 0.05;
    top: 20%;
    left: 5%;
    transform: rotate(45deg);
}

.geo-square--1 {
    width: 80px;
    height: 80px;
    top: auto;
    bottom: 15%;
    right: 35%;
    opacity: 0.08;
}

.geo-diamond {
    position: absolute;
    width: 60px;
    height: 60px;
    background: var(--color-coral);
    opacity: 0.07;
    top: 30%;
    right: 15%;
    transform: rotate(30deg);
}

.geo-diamond--1 {
    width: 40px;
    height: 40px;
    top: auto;
    bottom: 25%;
    right: auto;
    left: 20%;
    opacity: 0.1;
    transform: rotate(15deg);
}

.geo-triangle {
    position: absolute;
    width: 0;
    height: 0;
    border-style: solid;
    border-width: 0 50px 86px 50px;
    border-color: transparent transparent var(--color-coral) transparent;
    opacity: 0.05;
    top: 60%;
    left: 8%;
    transform: rotate(-20deg);
}

.geo-triangle--1 {
    border-width: 0 35px 60px 35px;
    top: 10%;
    left: auto;
    right: 5%;
    transform: rotate(15deg);
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero-content {
    max-width: 540px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(232, 93, 58, 0.12);
    border: 1px solid rgba(232, 93, 58, 0.25);
    border-radius: var(--radius-xl);
    padding: 0.5rem 1rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-coral);
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: var(--space-lg);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-coral);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-headline {
    font-size: clamp(2.5rem, 5vw, 4rem);
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-headline br {
    display: none;
}

@media (min-width: 640px) {
    .hero-headline br {
        display: block;
    }
}

.hero-subheadline {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.7;
    margin-bottom: var(--space-xl);
    max-width: 440px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--space-sm);
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 520px;
}

.hero-card--main {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 320px;
    height: 420px;
}

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

.card-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.85) 0%, rgba(26, 26, 46, 0.2) 50%, transparent 100%);
}

.card-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-lg);
}

.card-label {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: 0.4rem;
}

.card-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    color: var(--color-white);
    margin-bottom: 0.3rem;
}

.card-content p {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Stat Cards */
.stat-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-sm) var(--space-md);
    box-shadow: var(--shadow-md);
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.stat-card--1 {
    top: 10%;
    right: 0;
    animation: float 4s ease-in-out infinite;
}

.stat-card--2 {
    bottom: 25%;
    left: -20px;
    animation: float 4s ease-in-out infinite 1s;
}

.stat-card--3 {
    bottom: 5%;
    right: 10%;
    animation: float 4s ease-in-out infinite 2s;
}

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

.stat-number {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 900;
    color: var(--color-coral);
    line-height: 1;
}

.stat-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--color-text-muted);
    letter-spacing: 0.02em;
}

.stat-icon {
    width: 32px;
    height: 32px;
    background: rgba(232, 93, 58, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    margin-bottom: 0.25rem;
}

/* --- Services --- */
.services {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
    position: relative;
}

.section-shape {
    position: absolute;
    pointer-events: none;
}

.shape--top-right {
    width: 300px;
    height: 300px;
    background: var(--color-coral);
    opacity: 0.03;
    border-radius: 50%;
    top: -100px;
    right: -100px;
}

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(26, 26, 46, 0.06);
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--color-charcoal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.service-card--accent {
    background: var(--color-charcoal);
    border-color: transparent;
}

.service-card--accent::before {
    background: var(--color-coral);
}

.service-card--accent:hover {
    box-shadow: 0 20px 60px rgba(26, 26, 46, 0.3);
}

.service-icon-wrap {
    width: 56px;
    height: 56px;
    background: rgba(232, 93, 58, 0.1);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    margin-bottom: var(--space-md);
    transition: all 0.3s ease;
}

.service-card:hover .service-icon-wrap {
    background: var(--color-coral);
    color: var(--color-white);
    transform: scale(1.05);
}

.service-card--accent .service-icon-wrap {
    background: rgba(232, 93, 58, 0.2);
}

.service-card--accent:hover .service-icon-wrap {
    background: var(--color-coral);
}

.service-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--color-charcoal);
    margin-bottom: 0.5rem;
}

.service-card--accent .service-title {
    color: var(--color-white);
}

.service-desc {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.65;
}

.service-card--accent .service-desc {
    color: rgba(255, 255, 255, 0.6);
}

/* --- About --- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-white);
    position: relative;
    overflow: hidden;
}

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

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

.about-images {
    position: relative;
    min-height: 520px;
}

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

.about-img--1 {
    width: 65%;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 2;
}

.about-img--1 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-img--2 {
    width: 55%;
    position: absolute;
    bottom: 0;
    right: 0;
    z-index: 1;
}

.about-img--2 img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-accent-box {
    position: absolute;
    bottom: 30%;
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
    background: var(--color-coral);
    border-radius: var(--radius-md);
    padding: var(--space-md) var(--space-lg);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
    box-shadow: var(--shadow-coral);
    white-space: nowrap;
}

.accent-box-number {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 900;
    color: var(--color-white);
    line-height: 1;
}

.accent-box-text {
    font-size: 0.75rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.85);
    text-align: center;
    letter-spacing: 0.03em;
}

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

.about-body {
    font-size: 1rem;
    color: var(--color-text-muted);
    line-height: 1.75;
    margin-bottom: var(--space-md);
}

.about-features {
    margin-top: var(--space-lg);
    display: grid;
    gap: var(--space-sm);
}

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

.feature-check {
    width: 24px;
    height: 24px;
    background: rgba(232, 93, 58, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    flex-shrink: 0;
}

.about-feature span {
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--color-charcoal);
}

/* --- Gallery --- */
.gallery {
    padding: var(--space-3xl) 0;
    background: var(--color-charcoal);
    position: relative;
}

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(2, 220px);
    gap: var(--space-md);
    padding: 0 var(--space-lg);
    max-width: 1200px;
    margin: 0 auto;
}

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

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

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

.gallery-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 26, 46, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.gallery-overlay span {
    font-family: var(--font-heading);
    font-size: 1.2rem;
    font-weight: 800;
    color: var(--color-white);
}

.gallery-item--1 {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery-item--2 {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.gallery-item--3 {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.gallery-item--4 {
    grid-column: 5 / 13;
    grid-row: 2 / 3;
}

/* --- Visit --- */
.visit {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
    position: relative;
}

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

.visit-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: stretch;
}

.visit-info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.contact-cards {
    display: grid;
    gap: var(--space-sm);
}

.contact-card {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: var(--space-md);
    border: 1px solid rgba(26, 26, 46, 0.06);
    transition: all 0.3s ease;
}

.contact-card:hover {
    transform: translateX(6px);
    box-shadow: var(--shadow-md);
    border-color: rgba(232, 93, 58, 0.2);
}

.contact-card-icon {
    width: 48px;
    height: 48px;
    background: rgba(232, 93, 58, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-coral);
    flex-shrink: 0;
}

.contact-card-text {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
    flex: 1;
    min-width: 0;
}

.contact-card-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-card-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--color-charcoal);
    line-height: 1.4;
}

.contact-card-arrow {
    color: var(--color-coral);
    flex-shrink: 0;
    opacity: 0;
    transition: all 0.3s ease;
    transform: translateX(-4px);
}

.contact-card:hover .contact-card-arrow {
    opacity: 1;
    transform: translateX(0);
}

.hours-box {
    background: var(--color-charcoal);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.hours-title {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-md);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.hours-grid {
    display: grid;
    gap: var(--space-sm);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-bottom: var(--space-sm);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.hours-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.hours-row span {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
}

.hours-row span:last-child {
    font-weight: 600;
    color: var(--color-white);
}

.visit-map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    min-height: 400px;
}

/* --- CTA --- */
.cta {
    background: var(--color-coral);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.cta-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.cta-shape {
    position: absolute;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.06);
}

.cta-shape--1 {
    width: 400px;
    height: 400px;
    top: -200px;
    left: -100px;
}

.cta-shape--2 {
    width: 250px;
    height: 250px;
    bottom: -100px;
    right: 10%;
}

.cta-shape--3 {
    width: 120px;
    height: 120px;
    top: 20%;
    right: 25%;
}

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

.cta-headline {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

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

/* --- Footer --- */
.footer {
    background: var(--color-charcoal-dark);
    padding: var(--space-2xl) 0 var(--space-lg);
}

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

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

.footer-brand .logo-icon {
    margin-bottom: var(--space-sm);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.6;
    max-width: 220px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-coral);
    margin-bottom: var(--space-md);
}

.footer-links {
    display: grid;
    gap: 0.5rem;
}

.footer-links a {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 4px;
}

.footer-contact p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.55);
}

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

.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(255, 255, 255, 0.35);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .hero-content {
        max-width: 100%;
    }
    
    .hero-subheadline {
        max-width: 100%;
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-images {
        min-height: 400px;
        max-width: 500px;
        margin: 0 auto;
    }
    
    .visit-layout {
        grid-template-columns: 1fr;
    }
    
    .visit-map {
        min-height: 300px;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
    }
}

@media (max-width: 768px) {
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--color-charcoal-dark);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-lg) !important;
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        box-shadow: -10px 0 40px rgba(0, 0, 0, 0.3);
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        color: rgba(255, 255, 255, 0.8);
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    
    .gallery-item--1,
    .gallery-item--2,
    .gallery-item--3,
    .gallery-item--4 {
        grid-column: auto;
        grid-row: auto;
    }
    
    .gallery-item {
        height: 200px;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 90px var(--space-md) 40px;
    }
    
    .hero-headline {
        font-size: 2.2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .btn--large {
        width: 100%;
        justify-content: center;
    }
    
    .about-img--1 {
        width: 75%;
    }
    
    .about-img--2 {
        width: 65%;
    }
    
    .about-accent-box {
        padding: var(--space-sm) var(--space-md);
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .contact-card {
        flex-wrap: wrap;
    }
}

/* --- 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;
    }
    
    .stat-card {
        animation: none;
    }
}
