/* ============================================
   SPRINKFIELD QUALITY TATTOO
   Clean Minimalist — 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: #E8D5CD;
    --color-cream: #FDF8F6;
    --color-white: #FFFFFF;
    --color-text: #1A1214;
    --color-text-muted: #6B5558;
    --color-text-light: #9A8082;
    --color-border: #E8D5CD;
    --color-bg-section: #FDF8F6;
    --color-bg-dark: #1A1214;
    
    --font-display: 'Cormorant Garamond', Georgia, serif;
    --font-body: 'Inter', -apple-system, sans-serif;
    
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 2rem;
    --space-lg: 4rem;
    --space-xl: 6rem;
    --space-2xl: 8rem;
    
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 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-body);
    font-weight: 300;
    color: var(--color-text);
    background-color: var(--color-cream);
    line-height: 1.7;
    overflow-x: hidden;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color var(--transition);
}

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

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

/* --- Typography --- */
.section-eyebrow {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-burgundy);
    margin-bottom: var(--space-sm);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

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

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--color-burgundy);
    color: var(--color-white);
    border: 1.5px solid var(--color-burgundy);
}

.btn-primary:hover {
    background: var(--color-burgundy-deep);
    border-color: var(--color-burgundy-deep);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.25);
}

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

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

.btn-light {
    background: var(--color-white);
    color: var(--color-burgundy);
    border: 1.5px solid var(--color-white);
}

.btn-light:hover {
    background: var(--color-blush);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

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

.btn-outline-light:hover {
    background: var(--color-white);
    color: var(--color-burgundy);
    border-color: var(--color-white);
}

.btn-full {
    width: 100%;
}

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

.nav.scrolled {
    box-shadow: 0 1px 20px rgba(26, 18, 20, 0.06);
}

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

.nav-logo {
    display: flex;
    flex-direction: column;
    line-height: 1.1;
}

.nav-logo-main {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 400;
    color: var(--color-text);
    letter-spacing: 0.02em;
}

.nav-logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-burgundy);
}

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

.nav-links a {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    position: relative;
    padding: 0.25rem 0;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--color-burgundy);
    transition: width var(--transition);
}

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

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

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

.nav-toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--color-text);
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--color-cream);
    z-index: 999;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: var(--space-md);
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-link {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 300;
    color: var(--color-text);
    transition: color var(--transition);
}

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

.mobile-menu-contact {
    margin-top: var(--space-lg);
    text-align: center;
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 2;
}

.mobile-menu-contact a {
    color: var(--color-burgundy);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--color-cream);
    padding-top: 72px;
}

.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-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--space-lg) var(--space-md);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-lg);
    align-items: center;
    position: relative;
    z-index: 1;
}

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

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

.hero-eyebrow-line {
    width: 40px;
    height: 1px;
    background: var(--color-burgundy);
}

.hero-headline {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 6vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--color-text);
    margin-bottom: var(--space-md);
    letter-spacing: -0.01em;
}

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

.hero-subtext {
    font-size: 1.05rem;
    color: var(--color-text-muted);
    line-height: 1.8;
    max-width: 440px;
    margin-bottom: var(--space-md);
}

.hero-cta-group {
    display: flex;
    gap: var(--space-sm);
    flex-wrap: wrap;
    margin-bottom: var(--space-lg);
}

.hero-contact-strip {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: var(--space-md);
    border-top: 1px solid var(--color-border);
}

.hero-contact-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: var(--color-text-muted);
    transition: color var(--transition);
}

.hero-contact-item:hover {
    color: var(--color-burgundy);
}

.hero-right {
    position: relative;
}

.hero-image-frame {
    position: relative;
    overflow: hidden;
    border-radius: var(--radius-md);
    box-shadow: 0 20px 60px rgba(26, 18, 20, 0.12);
}

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

.hero-accent-block {
    position: absolute;
    bottom: -40px;
    left: -60px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 18, 20, 0.15);
    max-width: 280px;
}

.hero-accent-block img {
    width: 100%;
    height: auto;
    display: block;
}

.hero-accent-caption {
    display: block;
    padding: 0.75rem 1rem;
    background: var(--color-burgundy);
    color: var(--color-white);
    font-size: 0.72rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.hero-scroll-indicator {
    position: absolute;
    bottom: var(--space-md);
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    z-index: 1;
}

.hero-scroll-indicator span {
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--color-text-light);
}

.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.4; transform: scaleY(0.6); }
}

/* --- Section Divider --- */
.section-divider {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--space-md);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.divider-line {
    flex: 1;
    height: 1px;
    background: var(--color-border);
}

.divider-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--color-burgundy);
    flex-shrink: 0;
}

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

.services-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

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

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

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

.service-card:hover {
    border-color: var(--color-burgundy);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(123, 45, 59, 0.08);
}

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

.service-card-number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--color-blush-mid);
    line-height: 1;
    margin-bottom: var(--space-sm);
    transition: color var(--transition);
}

.service-card:hover .service-card-number {
    color: var(--color-burgundy);
}

.service-card-title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

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

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

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

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

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

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

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

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

.gallery-item-overlay span {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-white);
}

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

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

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

.gallery-item:not(.gallery-item--tall) {
    grid-column: span 4;
    min-height: 240px;
}

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

.gallery-note {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
}

.gallery-note p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    font-style: italic;
    font-family: var(--font-display);
    font-size: 1.2rem;
}

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

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

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

.about-image-main {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(26, 18, 20, 0.1);
}

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

.about-image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 12px 40px rgba(26, 18, 20, 0.12);
    border: 4px solid var(--color-white);
    max-width: 240px;
}

.about-image-accent img {
    width: 100%;
    display: block;
}

.about-text-col {
    padding-top: var(--space-md);
}

.about-body {
    margin-bottom: var(--space-lg);
}

.about-body p {
    font-size: 0.95rem;
    color: var(--color-text-muted);
    line-height: 1.85;
    margin-bottom: var(--space-sm);
}

.about-values {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

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

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

.about-value strong {
    display: block;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.about-value span {
    font-size: 0.85rem;
    color: var(--color-text-muted);
    line-height: 1.6;
}

/* --- Process Section --- */
.process {
    padding: var(--space-2xl) 0;
    background: var(--color-blush);
}

.process-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

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

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

.process-step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 28px;
    right: -8px;
    width: 16px;
    height: 1px;
    background: var(--color-burgundy);
    opacity: 0.3;
}

.process-step-number {
    font-family: var(--font-display);
    font-size: 2.8rem;
    font-weight: 300;
    color: var(--color-burgundy);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: var(--space-sm);
}

.process-step-title {
    font-family: var(--font-display);
    font-size: 1.2rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

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

/* --- FAQ Section --- */
.faq {
    padding: var(--space-2xl) 0;
    background: var(--color-white);
}

.faq-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

.faq-list {
    max-width: 760px;
    margin: 0 auto;
}

.faq-item {
    border-bottom: 1px solid var(--color-border);
}

.faq-question {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: var(--space-sm);
    padding: var(--space-md) 0;
    text-align: left;
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--color-text);
    transition: color var(--transition);
}

.faq-question:hover {
    color: var(--color-burgundy);
}

.faq-question[aria-expanded="true"] .faq-toggle svg {
    transform: rotate(45deg);
}

.faq-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 1px solid var(--color-border);
    flex-shrink: 0;
    transition: all var(--transition);
    color: var(--color-burgundy);
}

.faq-question[aria-expanded="true"] .faq-toggle {
    background: var(--color-burgundy);
    border-color: var(--color-burgundy);
    color: var(--color-white);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height var(--transition), padding var(--transition);
}

.faq-answer p {
    padding-bottom: var(--space-md);
    font-size: 0.92rem;
    color: var(--color-text-muted);
    line-height: 1.8;
}

.faq-item.active .faq-answer {
    max-height: 300px;
}

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

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

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

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

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(2.2rem, 5vw, 3.5rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--color-white);
    margin-bottom: var(--space-md);
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(245, 230, 224, 0.7);
    line-height: 1.8;
    margin-bottom: var(--space-md);
}

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

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

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

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

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

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

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

.contact-detail strong {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text);
    margin-bottom: 0.2rem;
}

.contact-detail p,
.contact-detail a {
    font-size: 0.9rem;
    color: var(--color-text-muted);
    line-height: 1.7;
}

.contact-detail a:hover {
    color: var(--color-burgundy);
}

.contact-map {
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(26, 18, 20, 0.06);
}

/* Contact Form */
.contact-form-col {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: var(--space-lg);
    box-shadow: 0 8px 40px rgba(26, 18, 20, 0.06);
    border: 1px solid var(--color-border);
}

.contact-form-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: var(--space-md);
}

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

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

.form-group label {
    display: block;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-text-muted);
    margin-bottom: 0.4rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.8rem 1rem;
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--color-text);
    background: var(--color-blush-light);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-burgundy);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--color-text-light);
}

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

.form-success {
    text-align: center;
    padding: var(--space-lg) var(--space-md);
}

.form-success-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--color-blush);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-sm);
    color: var(--color-burgundy);
}

.form-success h4 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-text);
    margin-bottom: 0.5rem;
}

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

/* --- Footer --- */
.footer {
    background: var(--color-bg-dark);
    color: var(--color-white);
    padding: var(--space-lg) 0 var(--space-md);
}

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

.footer-logo {
    display: block;
    margin-bottom: var(--space-sm);
}

.footer-logo-main {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--color-white);
    line-height: 1.1;
}

.footer-logo-sub {
    font-family: var(--font-body);
    font-size: 0.6rem;
    font-weight: 400;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--color-blush);
}

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

.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    font-size: 0.85rem;
    color: rgba(245, 230, 224, 0.6);
    transition: color var(--transition);
}

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

.footer-contact p {
    font-size: 0.85rem;
    color: rgba(245, 230, 224, 0.5);
    line-height: 2;
}

.footer-contact a {
    color: rgba(245, 230, 224, 0.5);
    transition: color var(--transition);
}

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

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-md);
    font-size: 0.78rem;
    color: rgba(245, 230, 224, 0.3);
}

/* --- Back to Top --- */
.back-to-top {
    position: fixed;
    bottom: var(--space-md);
    right: var(--space-md);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--color-burgundy);
    color: var(--color-white);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 16px rgba(123, 45, 59, 0.3);
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all var(--transition);
    z-index: 100;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    background: var(--color-burgundy-deep);
    transform: translateY(-2px);
}

/* --- Scroll Reveal (progressive enhancement) --- */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(24px);
        transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
    }
    
    .reveal.revealed {
        opacity: 1;
        transform: translateY(0);
    }
    
    .reveal-delay-1 { transition-delay: 0.1s; }
    .reveal-delay-2 { transition-delay: 0.2s; }
    .reveal-delay-3 { transition-delay: 0.3s; }
    .reveal-delay-4 { transition-delay: 0.4s; }
    .reveal-delay-5 { transition-delay: 0.5s; }
}

/* --- Responsive --- */
@media (max-width: 1024px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }
    
    .hero-left {
        padding-right: 0;
        text-align: center;
    }
    
    .hero-subtext {
        margin-left: auto;
        margin-right: auto;
    }
    
    .hero-cta-group {
        justify-content: center;
    }
    
    .hero-contact-strip {
        align-items: center;
    }
    
    .hero-right {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .hero-accent-block {
        left: -20px;
        bottom: -20px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .gallery-item--tall {
        grid-column: span 6;
        grid-row: span 1;
        min-height: 360px;
    }
    
    .gallery-item:not(.gallery-item--tall) {
        grid-column: span 6;
    }
    
    .gallery-item--wide {
        grid-column: span 12;
    }
    
    .about-layout {
        grid-template-columns: 1fr;
    }
    
    .about-image-col {
        max-width: 480px;
        margin: 0 auto;
    }
    
    .process-steps {
        grid-template-columns: repeat(3, 1fr);
    }
    
    .process-step:nth-child(4),
    .process-step:nth-child(5) {
        grid-column: span 1;
    }
    
    .contact-layout {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        padding-right: 0;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 768px) {
    .nav-links {
        display: none;
    }
    
    .nav-toggle {
        display: flex;
    }
    
    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: var(--space-lg);
    }
    
    .hero-scroll-indicator {
        display: none;
    }
    
    .hero-accent-block {
        position: relative;
        bottom: auto;
        left: auto;
        max-width: 100%;
        margin-top: var(--space-sm);
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--tall {
        grid-column: span 2;
        min-height: 280px;
    }
    
    .gallery-item:not(.gallery-item--tall) {
        grid-column: span 1;
        min-height: 200px;
    }
    
    .gallery-item--wide {
        grid-column: span 2;
        min-height: 220px;
    }
    
    .process-steps {
        grid-template-columns: 1fr 1fr;
    }
    
    .process-step::after {
        display: none;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }
    
    .footer-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }
    
    .hero-headline {
        font-size: 2.4rem;
    }
    
    .hero-cta-group {
        flex-direction: column;
    }
    
    .hero-cta-group .btn {
        width: 100%;
        justify-content: center;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--tall,
    .gallery-item:not(.gallery-item--tall),
    .gallery-item--wide {
        grid-column: span 1;
        min-height: 240px;
    }
    
    .process-steps {
        grid-template-columns: 1fr;
    }
    
    .contact-form-col {
        padding: var(--space-md);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        justify-content: center;
    }
}
