/* ========================================
   Superior Styles & Barber Lounge
   Bold Editorial — Burgundy + Blush
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --color-burgundy: #7B2D3B;
    --color-burgundy-deep: #5C1F2B;
    --color-burgundy-light: #9A3D4E;
    --color-blush: #F5E6E0;
    --color-blush-light: #FBF5F2;
    --color-blush-mid: #E8D5CC;
    --color-cream: #FDF8F5;
    --color-charcoal: #1A1416;
    --color-dark: #2A1F22;
    --color-text: #3D2B30;
    --color-text-light: #6B5458;
    --color-text-muted: #9A8084;
    --color-white: #FFFFFF;
    --color-border: rgba(123, 45, 59, 0.12);
    
    --font-serif: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2.5rem;
    --space-xl: 4rem;
    --space-2xl: 6rem;
    --space-3xl: 8rem;
    
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.35s ease;
    --transition-slow: 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

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

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

body {
    font-family: var(--font-sans);
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.6;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-md);
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 600;
    line-height: 1.15;
    color: var(--color-charcoal);
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-md);
}

.section-eyebrow::before {
    content: '';
    display: block;
    width: 32px;
    height: 1.5px;
    background: var(--color-burgundy);
}

.section-eyebrow-light {
    color: var(--color-blush);
}

.section-eyebrow-light::before {
    background: var(--color-blush);
}

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

.section-title-accent {
    font-style: italic;
    color: var(--color-burgundy);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-text-light);
    max-width: 540px;
    line-height: 1.7;
}

/* --- Navigation --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 245, 0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--color-border);
    transition: var(--transition-base);
}

.nav.scrolled {
    background: rgba(253, 248, 245, 0.97);
    box-shadow: 0 4px 30px rgba(123, 45, 59, 0.08);
}

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

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

.nav-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-burgundy);
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.nav-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-charcoal);
}

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

.nav-link {
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--color-text-light);
    transition: color var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: var(--color-burgundy);
    transition: width var(--transition-base);
}

.nav-link:hover {
    color: var(--color-burgundy);
}

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

.nav-cta {
    padding: 0.625rem 1.5rem;
    background: var(--color-burgundy);
    color: var(--color-white);
    font-size: 0.875rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: background var(--transition-fast), transform var(--transition-fast);
}

.nav-cta:hover {
    background: var(--color-burgundy-deep);
    transform: translateY(-1px);
}

/* Mobile Toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}

.nav-toggle-line {
    display: block;
    width: 100%;
    height: 2px;
    background: var(--color-charcoal);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.nav-toggle.active .nav-toggle-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav-toggle.active .nav-toggle-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Overlay */
.nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--color-cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

.nav-overlay.open {
    opacity: 1;
    visibility: visible;
}

.nav-overlay-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-lg);
}

.nav-overlay-link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--color-charcoal);
    transition: color var(--transition-fast);
}

.nav-overlay-link:hover {
    color: var(--color-burgundy);
}

.nav-overlay-cta {
    margin-top: var(--space-md);
    padding: 1rem 2.5rem;
    background: var(--color-burgundy);
    color: var(--color-white);
    font-size: 1rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px var(--space-md) var(--space-xl);
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.hero-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(ellipse at 20% 50%, rgba(123, 45, 59, 0.04) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 230, 224, 0.8) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-left {
    padding-right: var(--space-lg);
}

.hero-eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-lg);
}

.hero-eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--color-burgundy);
    flex-shrink: 0;
}

.hero-headline {
    font-size: clamp(2.5rem, 5.5vw, 4.25rem);
    font-weight: 700;
    line-height: 1.08;
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero-headline-accent {
    font-style: italic;
    color: var(--color-burgundy);
    font-weight: 500;
}

.hero-subheadline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: var(--color-text-light);
    margin-bottom: var(--space-xl);
    max-width: 480px;
}

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

.hero-stats {
    display: flex;
    align-items: center;
    gap: var(--space-md);
    padding-top: var(--space-lg);
    border-top: 1px solid var(--color-border);
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero-stat-number {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-charcoal);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: var(--color-text-muted);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: var(--color-border);
}

/* Hero Image Stack */
.hero-right {
    position: relative;
    height: 700px;
}

.hero-image-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero-image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 82%;
    height: 88%;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(123, 45, 59, 0.15);
}

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

.hero-image-accent {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 6px solid var(--color-cream);
    box-shadow: 0 20px 40px rgba(123, 45, 59, 0.12);
}

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

.hero-badge {
    position: absolute;
    top: 50%;
    left: -10%;
    transform: translateY(-50%);
    background: var(--color-white);
    padding: 1rem 1.25rem;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    gap: 0.625rem;
    box-shadow: 0 10px 30px rgba(123, 45, 59, 0.1);
    z-index: 2;
}

.hero-badge svg {
    color: var(--color-burgundy);
}

.hero-badge span {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-charcoal);
    letter-spacing: 0.02em;
}

/* Scroll Indicator */
.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-lg);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-text-muted);
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, var(--color-burgundy), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 1; transform: scaleY(1); }
    50% { opacity: 0.5; transform: scaleY(0.6); }
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    padding: 0.875rem 1.75rem;
    font-size: 0.9rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
    white-space: nowrap;
}

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

.btn-primary:hover {
    background: var(--color-burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 45, 59, 0.3);
}

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

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

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

.btn-white:hover {
    background: var(--color-blush);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.15);
}

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

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

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

/* --- Marquee Strip --- */
.marquee-strip {
    background: var(--color-burgundy);
    padding: 1rem 0;
    overflow: hidden;
    position: relative;
}

.marquee-track {
    display: flex;
    gap: var(--space-md);
    animation: marquee 30s linear infinite;
    width: max-content;
}

.marquee-item {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: var(--color-blush);
    white-space: nowrap;
    letter-spacing: 0.05em;
}

.marquee-dot {
    color: var(--color-blush-mid);
    font-size: 0.5rem;
    opacity: 0.6;
    flex-shrink: 0;
}

@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

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

.services-header {
    max-width: 640px;
    margin-bottom: var(--space-2xl);
}

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

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(123, 45, 59, 0.1);
    border-color: transparent;
}

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

.service-card-number {
    font-family: var(--font-serif);
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-blush-mid);
    letter-spacing: 0.1em;
    margin-bottom: var(--space-md);
}

.service-card-icon {
    width: 52px;
    height: 52px;
    background: var(--color-blush-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy);
    margin-bottom: var(--space-md);
    transition: all var(--transition-fast);
}

.service-card:hover .service-card-icon {
    background: var(--color-burgundy);
    color: var(--color-white);
}

.service-card-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: var(--space-xs);
    color: var(--color-charcoal);
}

.service-card-desc {
    font-size: 0.9rem;
    line-height: 1.7;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-burgundy);
    transition: gap var(--transition-fast);
}

.service-card-link:hover {
    gap: 0.75rem;
}

/* --- About Section --- */
.about {
    padding: var(--space-3xl) 0;
    background: var(--color-blush-light);
}

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

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

.about-image-wrapper {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(123, 45, 59, 0.12);
}

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

.about-image-float {
    position: absolute;
    bottom: -20px;
    right: -20px;
    background: var(--color-burgundy);
    color: var(--color-white);
    padding: 1.25rem 1.5rem;
    border-radius: var(--radius-md);
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: 0 15px 30px rgba(123, 45, 59, 0.25);
}

.about-float-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    opacity: 0.75;
}

.about-float-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
}

.about-content-col {
    padding-left: var(--space-md);
}

.about-divider {
    width: 60px;
    height: 2px;
    background: var(--color-burgundy);
    margin-bottom: var(--space-lg);
}

.about-body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--color-text-light);
    margin-bottom: var(--space-md);
}

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

.about-feature {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.about-feature-icon {
    width: 24px;
    height: 24px;
    background: var(--color-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
    flex-shrink: 0;
}

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

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

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

.gallery-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: var(--space-sm);
}

.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 var(--transition-slow);
}

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(123, 45, 59, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: var(--space-md);
    opacity: 0;
    transition: opacity var(--transition-base);
}

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

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

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

.gallery-item--large {
    grid-column: span 7;
    grid-row: span 2;
    min-height: 400px;
}

.gallery-item--tall {
    grid-column: span 5;
    grid-row: span 2;
    min-height: 400px;
}

.gallery-item--wide {
    grid-column: span 8;
    min-height: 280px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--tall):not(.gallery-item--wide) {
    min-height: 240px;
}

/* --- Quote Section --- */
.quote-section {
    padding: var(--space-3xl) 0;
    background: var(--color-blush);
    position: relative;
    overflow: hidden;
}

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

.quote-mark {
    color: var(--color-burgundy);
    margin-bottom: var(--space-md);
}

.quote-content blockquote {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--color-charcoal);
    margin-bottom: var(--space-lg);
}

.quote-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.quote-author-name {
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-burgundy);
}

.quote-author-location {
    font-size: 0.8rem;
    color: var(--color-text-muted);
}

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

.cta-bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(ellipse at 70% 30%, rgba(123, 45, 59, 0.3) 0%, transparent 60%);
    pointer-events: none;
}

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

.cta-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-md);
    line-height: 1.1;
}

.cta-subheadline {
    font-size: 1.1rem;
    color: rgba(245, 230, 224, 0.7);
    margin-bottom: var(--space-xl);
    line-height: 1.7;
}

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

/* --- Contact Section --- */
.contact {
    padding: var(--space-3xl) 0;
    background: var(--color-cream);
}

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

.contact-info-col {
    padding-right: var(--space-lg);
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
    margin-top: var(--space-xl);
    margin-bottom: var(--space-xl);
}

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    background: var(--color-blush-light);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-burgundy);
    flex-shrink: 0;
}

.contact-detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.contact-detail-label {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-muted);
}

.contact-detail-value {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-detail-link {
    font-size: 0.95rem;
    color: var(--color-burgundy);
    font-weight: 500;
    transition: color var(--transition-fast);
}

.contact-detail-link:hover {
    color: var(--color-burgundy-deep);
    text-decoration: underline;
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(123, 45, 59, 0.08);
}

/* Contact Form */
.contact-form-col {
    background: var(--color-white);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
}

.contact-form-title {
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.contact-form-subtitle {
    font-size: 0.9rem;
    color: var(--color-text-light);
    margin-bottom: var(--space-lg);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-sm);
}

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

.form-label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.5rem;
}

.form-input {
    width: 100%;
    padding: 0.875rem 1rem;
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-cream);
    transition: border-color var(--transition-fast), box-shadow var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--color-burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

.form-select {
    appearance: none;
    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='%239A8084' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Epolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

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

/* Form Success */
.form-success {
    display: none;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: var(--space-xl) var(--space-md);
    gap: var(--space-sm);
}

.form-success.show {
    display: flex;
}

.form-success-icon {
    width: 56px;
    height: 56px;
    background: var(--color-burgundy);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-white);
}

.form-success-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-charcoal);
}

.form-success-text {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

.form-success-text a {
    color: var(--color-burgundy);
    font-weight: 600;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    margin-bottom: var(--space-sm);
}

.footer-logo-mark {
    width: 36px;
    height: 36px;
    background: var(--color-burgundy);
    color: var(--color-white);
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--color-white);
}

.footer-tagline {
    font-size: 0.9rem;
    color: rgba(245, 230, 224, 0.6);
    line-height: 1.7;
    max-width: 300px;
}

.footer-links {
    display: flex;
    gap: var(--space-xl);
}

.footer-link-col {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer-link-col-title {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-burgundy-light);
    margin-bottom: 0.25rem;
}

.footer-link {
    font-size: 0.9rem;
    color: rgba(245, 230, 224, 0.6);
    transition: color var(--transition-fast);
}

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

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

.footer-copyright {
    font-size: 0.8rem;
    color: rgba(245, 230, 224, 0.4);
}

.footer-location {
    font-size: 0.8rem;
    color: rgba(245, 230, 224, 0.4);
}

/* --- Scroll Reveal --- */
[data-reveal] {
    opacity: 1;
    transform: translateY(0);
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-reveal="hidden"] {
    opacity: 0;
    transform: translateY(30px);
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-left {
        padding-right: 0;
        text-align: center;
        max-width: 600px;
        margin: 0 auto;
    }

    .hero-subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-actions {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-right {
        height: 500px;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero-badge {
        left: -5%;
    }

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

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

    .about-content-col {
        padding-left: 0;
    }

    .about-image-col {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .contact-info-col {
        padding-right: 0;
    }

    .gallery-item--large,
    .gallery-item--tall {
        grid-column: span 6;
    }

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

@media (max-width: 768px) {
    :root {
        --space-xl: 3rem;
        --space-2xl: 4rem;
        --space-3xl: 5rem;
    }

    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
        min-height: auto;
        padding-bottom: var(--space-2xl);
    }

    .hero-right {
        height: 400px;
    }

    .hero-image-main {
        width: 90%;
        height: 90%;
    }

    .hero-image-accent {
        width: 55%;
        height: 55%;
    }

    .hero-badge {
        display: none;
    }

    .hero-scroll-indicator {
        display: none;
    }

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

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

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

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

    .gallery-item--large,
    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 2;
    }

    .gallery-item--large,
    .gallery-item--tall {
        grid-row: span 1;
        min-height: 280px;
    }

    .form-row {
        grid-template-columns: 1fr;
    }

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

    .footer-links {
        flex-wrap: wrap;
    }

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

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

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

@media (max-width: 480px) {
    .hero-right {
        height: 320px;
    }

    .hero-image-main {
        width: 100%;
        height: 85%;
    }

    .hero-image-accent {
        width: 55%;
        height: 55%;
    }

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

    .gallery-item--large,
    .gallery-item--tall,
    .gallery-item--wide {
        grid-column: span 1;
    }

    .contact-form-col {
        padding: var(--space-md);
    }
}

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

    .marquee-track {
        animation: none;
    }

    [data-reveal] {
        opacity: 1;
        transform: none;
    }
}
