/* ============================================
   Sweeny Tire & Auto — Stylesheet
   Classic & Elegant Design System
   ============================================ */

/* --- CSS Custom Properties --- */
:root {
    --color-terracotta-deep: #78350F;
    --color-terracotta: #92400E;
    --color-terracotta-mid: #B45309;
    --color-terracotta-light: #D97706;
    --color-sand: #F5F0E8;
    --color-sand-light: #FAF7F2;
    --color-sand-warm: #EDE5D8;
    --color-sand-dark: #D4C4B0;
    --color-cream: #FDFBF7;
    --color-text-dark: #1C1410;
    --color-text-body: #3D2B1F;
    --color-text-muted: #6B5344;
    --color-text-light: #8B7355;
    --color-white: #FFFFFF;
    --color-border: #E8DFD0;
    --color-border-light: #F0E8DC;
    
    --font-serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --font-sans: 'Lato', 'Segoe UI', system-ui, sans-serif;
    
    --fs-xs: clamp(0.7rem, 0.65rem + 0.2vw, 0.8rem);
    --fs-sm: clamp(0.8rem, 0.75rem + 0.25vw, 0.9rem);
    --fs-base: clamp(0.95rem, 0.9rem + 0.3vw, 1.05rem);
    --fs-md: clamp(1.1rem, 1rem + 0.4vw, 1.25rem);
    --fs-lg: clamp(1.3rem, 1.1rem + 0.6vw, 1.6rem);
    --fs-xl: clamp(1.6rem, 1.3rem + 1vw, 2.2rem);
    --fs-2xl: clamp(2rem, 1.5rem + 1.8vw, 3rem);
    --fs-3xl: clamp(2.5rem, 1.8rem + 2.5vw, 4rem);
    --fs-4xl: clamp(3rem, 2rem + 3.5vw, 5.5rem);
    
    --space-xs: 0.25rem;
    --space-sm: 0.5rem;
    --space-md: 1rem;
    --space-lg: 1.5rem;
    --space-xl: 2rem;
    --space-2xl: 3rem;
    --space-3xl: 4rem;
    --space-4xl: 6rem;
    --space-5xl: 8rem;
    
    --radius-sm: 6px;
    --radius-md: 10px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    
    --shadow-sm: 0 1px 3px rgba(28, 20, 16, 0.06), 0 1px 2px rgba(28, 20, 16, 0.04);
    --shadow-md: 0 4px 16px rgba(28, 20, 16, 0.08), 0 2px 6px rgba(28, 20, 16, 0.04);
    --shadow-lg: 0 12px 40px rgba(28, 20, 16, 0.1), 0 4px 12px rgba(28, 20, 16, 0.05);
    --shadow-xl: 0 24px 60px rgba(28, 20, 16, 0.12), 0 8px 20px rgba(28, 20, 16, 0.06);
    
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 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-sans);
    font-size: var(--fs-base);
    line-height: 1.7;
    color: var(--color-text-body);
    background-color: var(--color-cream);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

ul, ol {
    list-style: none;
}

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

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

.page-wrapper {
    min-height: 100vh;
}

/* --- Header --- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 251, 247, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--color-border-light);
    transition: var(--transition-base);
}

.header.scrolled {
    box-shadow: var(--shadow-sm);
}

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

/* --- Logo --- */
.logo {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    text-decoration: none;
    flex-shrink: 0;
}

.logo-icon {
    color: var(--color-terracotta);
    display: flex;
    align-items: center;
}

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

.logo-name {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-text-dark);
    letter-spacing: -0.01em;
}

.logo-tagline {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

/* --- Navigation --- */
.nav-list {
    display: flex;
    align-items: center;
    gap: var(--space-xs);
}

.nav-link {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: var(--color-text-muted);
    padding: var(--space-sm) var(--space-md);
    border-radius: var(--radius-sm);
    transition: var(--transition-fast);
    letter-spacing: 0.01em;
}

.nav-link:hover {
    color: var(--color-terracotta);
    background: rgba(146, 64, 14, 0.06);
}

.nav-cta {
    color: var(--color-terracotta) !important;
    background: rgba(146, 64, 14, 0.08) !important;
    border-radius: var(--radius-md) !important;
    margin-left: var(--space-sm);
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-weight: 600 !important;
}

.nav-cta:hover {
    background: var(--color-terracotta) !important;
    color: var(--color-white) !important;
}

/* --- Mobile Menu Toggle --- */
.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: var(--space-sm);
    z-index: 1001;
}

.menu-line {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--color-text-dark);
    border-radius: 2px;
    transition: var(--transition-base);
    transform-origin: center;
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

.menu-toggle[aria-expanded="true"] .menu-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* --- Mobile Overlay --- */
.mobile-overlay {
    position: fixed;
    inset: 0;
    background: rgba(28, 20, 16, 0.5);
    backdrop-filter: blur(4px);
    z-index: 998;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-base);
}

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

/* --- Hero Section --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px var(--space-xl) var(--space-4xl);
    overflow: hidden;
}

.hero-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 50% 40%, rgba(180, 83, 9, 0.35) 0%, transparent 70%),
        radial-gradient(ellipse 60% 50% at 20% 60%, rgba(120, 53, 15, 0.3) 0%, transparent 60%),
        radial-gradient(ellipse 50% 40% at 80% 30%, rgba(217, 119, 6, 0.25) 0%, transparent 50%),
        linear-gradient(160deg, #1C1410 0%, #3D2B1F 30%, #78350F 60%, #B45309 80%, #D97706 100%);
    z-index: 0;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='1'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    z-index: 1;
}

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 780px;
}

.hero-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253, 251, 247, 0.7);
    margin-bottom: var(--space-lg);
}

.hero-title {
    font-size: var(--fs-4xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    line-height: 1.05;
    letter-spacing: -0.02em;
}

.hero-title-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: rgba(253, 251, 247, 0.85);
    display: block;
    font-size: 0.85em;
    margin-top: var(--space-sm);
}

.hero-description {
    font-size: var(--fs-md);
    color: rgba(253, 251, 247, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

.hero-badges {
    display: flex;
    gap: var(--space-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.hero-badge {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    font-weight: 500;
    color: rgba(253, 251, 247, 0.65);
}

.hero-badge svg {
    color: rgba(253, 251, 247, 0.5);
}

.hero-scroll {
    position: absolute;
    bottom: var(--space-2xl);
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: var(--space-sm);
    color: rgba(253, 251, 247, 0.4);
    font-size: var(--fs-xs);
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(253, 251, 247, 0.4), transparent);
    animation: scrollPulse 2s ease-in-out infinite;
}

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

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: var(--space-sm);
    font-family: var(--font-sans);
    font-size: var(--fs-sm);
    font-weight: 600;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    transition: var(--transition-base);
    white-space: nowrap;
    letter-spacing: 0.01em;
}

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

.btn-primary:hover {
    background: var(--color-terracotta-deep);
    border-color: var(--color-terracotta-deep);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--color-terracotta);
    border-color: var(--color-terracotta);
}

.btn-secondary:hover {
    background: var(--color-terracotta);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-outline-light {
    background: transparent;
    color: var(--color-white);
    border-color: rgba(253, 251, 247, 0.5);
}

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

.btn-full {
    width: 100%;
}

.btn-lg {
    padding: 16px 32px;
    font-size: var(--fs-base);
}

.btn-sm {
    padding: 10px 20px;
    font-size: var(--fs-sm);
}

/* --- Section Shared --- */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    margin-bottom: var(--space-md);
}

.section-title {
    font-size: var(--fs-3xl);
    font-weight: 700;
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.section-title-accent {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 500;
    color: var(--color-terracotta);
}

.section-description {
    font-size: var(--fs-md);
    color: var(--color-text-muted);
    max-width: 560px;
    line-height: 1.7;
}

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

.section-header .section-description {
    margin-left: auto;
    margin-right: auto;
}

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

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

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

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-terracotta-light));
    opacity: 0;
    transition: var(--transition-base);
}

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

.service-card:hover::before {
    opacity: 1;
}

.service-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(146, 64, 14, 0.1), rgba(217, 119, 6, 0.08));
    border-radius: var(--radius-md);
    color: var(--color-terracotta);
    margin-bottom: var(--space-lg);
    transition: var(--transition-base);
}

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

.service-name {
    font-size: var(--fs-lg);
    font-weight: 600;
    margin-bottom: var(--space-sm);
    color: var(--color-text-dark);
}

.service-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

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

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

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

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

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

.about-image-accent {
    position: absolute;
    bottom: -40px;
    right: -30px;
    width: 220px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--color-cream);
}

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

.about-experience-badge {
    position: absolute;
    top: -20px;
    left: -20px;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: var(--space-lg) var(--space-xl);
    border-radius: var(--radius-lg);
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.experience-number {
    display: block;
    font-family: var(--font-serif);
    font-size: var(--fs-2xl);
    font-weight: 700;
    line-height: 1;
}

.experience-text {
    display: block;
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 500;
    letter-spacing: 0.05em;
    opacity: 0.85;
    margin-top: var(--space-xs);
}

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

.about-text {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-lg);
}

.about-values {
    margin-top: var(--space-2xl);
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

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

.value-icon {
    width: 44px;
    height: 44px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(146, 64, 14, 0.1), rgba(217, 119, 6, 0.06));
    border-radius: var(--radius-md);
    color: var(--color-terracotta);
}

.value-name {
    font-family: var(--font-serif);
    font-size: var(--fs-md);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
}

.value-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.6;
}

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

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

.divider-diamond {
    color: var(--color-terracotta);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* --- Why Us Section --- */
.why-us {
    padding: var(--space-5xl) 0;
    background: var(--color-sand-light);
}

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

.why-us-text {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

.feature-row {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: var(--space-lg);
    padding: var(--space-xl) 0;
    border-bottom: 1px solid var(--color-border-light);
}

.feature-row:first-child {
    padding-top: 0;
}

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

.feature-number {
    font-family: var(--font-serif);
    font-size: var(--fs-xl);
    font-weight: 700;
    color: var(--color-terracotta);
    opacity: 0.4;
    line-height: 1;
    padding-top: var(--space-xs);
}

.feature-title {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-xs);
}

.feature-desc {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    line-height: 1.7;
}

.why-us-image {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.why-us-image img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.why-us-image-caption {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    padding: var(--space-xl);
    background: linear-gradient(to top, rgba(28, 20, 16, 0.7), transparent);
    color: var(--color-white);
    font-size: var(--fs-sm);
    font-weight: 500;
    display: flex;
    align-items: center;
    gap: var(--space-sm);
}

.why-us-image-caption svg {
    color: rgba(253, 251, 247, 0.8);
}

/* --- CTA Banner --- */
.cta-banner {
    position: relative;
    padding: var(--space-5xl) 0;
    overflow: hidden;
}

.cta-gradient {
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 70% 60% at 30% 50%, rgba(180, 83, 9, 0.4) 0%, transparent 70%),
        radial-gradient(ellipse 50% 50% at 80% 50%, rgba(120, 53, 15, 0.3) 0%, transparent 60%),
        linear-gradient(135deg, #1C1410 0%, #3D2B1F 40%, #78350F 70%, #92400E 100%);
}

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

.cta-eyebrow {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(253, 251, 247, 0.6);
    margin-bottom: var(--space-md);
}

.cta-title {
    font-size: var(--fs-3xl);
    font-weight: 700;
    color: var(--color-white);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.cta-text {
    font-size: var(--fs-md);
    color: rgba(253, 251, 247, 0.8);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

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

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

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

.contact-intro {
    font-size: var(--fs-base);
    color: var(--color-text-muted);
    line-height: 1.7;
    margin-bottom: var(--space-2xl);
}

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

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

.contact-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(146, 64, 14, 0.1), rgba(217, 119, 6, 0.06));
    border-radius: var(--radius-md);
    color: var(--color-terracotta);
}

.contact-label {
    display: block;
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--color-text-light);
    margin-bottom: var(--space-xs);
}

.contact-value {
    display: block;
    font-size: var(--fs-base);
    color: var(--color-text-body);
    line-height: 1.6;
}

.contact-link {
    color: var(--color-terracotta);
    font-weight: 600;
    transition: var(--transition-fast);
}

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

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

/* --- Contact Form --- */
.contact-form-wrap {
    position: sticky;
    top: 100px;
}

.contact-form-card {
    background: var(--color-white);
    border-radius: var(--radius-xl);
    padding: var(--space-2xl);
    border: 1px solid var(--color-border);
    box-shadow: var(--shadow-md);
}

.form-title {
    font-size: var(--fs-xl);
    font-weight: 700;
    margin-bottom: var(--space-sm);
}

.form-subtitle {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-2xl);
}

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

.form-label {
    display: block;
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.form-input {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: var(--fs-base);
    color: var(--color-text-dark);
    background: var(--color-sand-light);
    border: 1.5px solid var(--color-border);
    border-radius: var(--radius-md);
    transition: var(--transition-fast);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 3px rgba(146, 64, 14, 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='%236B5344' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 40px;
    cursor: pointer;
}

.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-2xl) var(--space-lg);
}

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

.success-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(146, 64, 14, 0.1), rgba(217, 119, 6, 0.06));
    border-radius: 50%;
    color: var(--color-terracotta);
    margin-bottom: var(--space-lg);
}

.success-title {
    font-size: var(--fs-lg);
    font-weight: 600;
    color: var(--color-text-dark);
    margin-bottom: var(--space-sm);
}

.success-text {
    font-size: var(--fs-sm);
    color: var(--color-text-muted);
    margin-bottom: var(--space-xl);
}

/* --- Footer --- */
.footer {
    background: var(--color-text-dark);
    color: rgba(253, 251, 247, 0.7);
    padding: var(--space-4xl) 0 var(--space-xl);
}

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

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

.footer-logo-icon {
    color: var(--color-terracotta-light);
}

.footer-logo-text {
    font-family: var(--font-serif);
    font-size: var(--fs-lg);
    font-weight: 700;
    color: var(--color-white);
}

.footer-tagline {
    font-size: var(--fs-sm);
    line-height: 1.7;
    margin-bottom: var(--space-lg);
    color: rgba(253, 251, 247, 0.5);
}

.footer-contact-mini {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer-phone {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: var(--fs-sm);
    font-weight: 600;
    color: var(--color-terracotta-light);
    transition: var(--transition-fast);
}

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

.footer-address {
    font-size: var(--fs-sm);
    color: rgba(253, 251, 247, 0.4);
}

.footer-heading {
    font-family: var(--font-sans);
    font-size: var(--fs-xs);
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(253, 251, 247, 0.4);
    margin-bottom: var(--space-lg);
}

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

.footer-list a {
    font-size: var(--fs-sm);
    color: rgba(253, 251, 247, 0.6);
    transition: var(--transition-fast);
}

.footer-list a:hover {
    color: var(--color-terracotta-light);
    padding-left: 4px;
}

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

.footer-hours li {
    display: flex;
    justify-content: space-between;
    font-size: var(--fs-sm);
}

.footer-hours .day {
    color: rgba(253, 251, 247, 0.6);
}

.footer-hours .hours {
    color: rgba(253, 251, 247, 0.8);
    font-weight: 500;
}

.footer-hours .hours.closed {
    color: rgba(253, 251, 247, 0.3);
}

.footer-bottom {
    border-top: 1px solid rgba(253, 251, 247, 0.08);
    padding-top: var(--space-xl);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: var(--space-md);
}

.copyright {
    font-size: var(--fs-sm);
    color: rgba(253, 251, 247, 0.35);
}

.footer-location {
    font-size: var(--fs-sm);
    color: rgba(253, 251, 247, 0.35);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.reveal.visible {
    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; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* --- Responsive: Tablet --- */
@media (max-width: 1024px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-grid,
    .why-us-layout,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: var(--space-3xl);
    }
    
    .about-image-accent {
        right: 20px;
        bottom: -30px;
        width: 180px;
    }
    
    .about-image-main img {
        height: 400px;
    }
    
    .why-us-image img {
        height: 420px;
    }
    
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: var(--space-2xl);
    }
}

/* --- Responsive: Mobile --- */
@media (max-width: 768px) {
    .header-inner {
        height: 64px;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--color-cream);
        padding: 90px var(--space-xl) var(--space-2xl);
        transform: translateX(100%);
        transition: var(--transition-base);
        z-index: 999;
        box-shadow: var(--shadow-xl);
    }
    
    .nav.open {
        transform: translateX(0);
    }
    
    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: var(--space-xs);
    }
    
    .nav-link {
        padding: var(--space-md);
        font-size: var(--fs-base);
        border-radius: var(--radius-md);
    }
    
    .nav-cta {
        margin-left: 0 !important;
        justify-content: center;
        margin-top: var(--space-md);
    }
    
    .hero {
        min-height: 100svh;
        padding: 100px var(--space-lg) var(--space-3xl);
    }
    
    .hero-title {
        font-size: var(--fs-3xl);
    }
    
    .hero-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .hero-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .hero-badges {
        flex-direction: column;
        align-items: center;
        gap: var(--space-sm);
    }
    
    .hero-scroll {
        display: none;
    }
    
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    .service-card {
        padding: var(--space-xl);
    }
    
    .about-image-wrap {
        max-width: 400px;
        margin: 0 auto;
    }
    
    .about-image-accent {
        width: 150px;
        bottom: -20px;
        right: 0;
    }
    
    .about-image-accent img {
        height: 113px;
    }
    
    .about-experience-badge {
        top: -10px;
        left: -10px;
        padding: var(--space-md) var(--space-lg);
    }
    
    .section-title {
        font-size: var(--fs-2xl);
    }
    
    .cta-title {
        font-size: var(--fs-2xl);
    }
    
    .cta-actions {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-actions .btn {
        width: 100%;
        max-width: 280px;
    }
    
    .contact-form-wrap {
        position: static;
    }
    
    .footer-grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 var(--space-md);
    }
    
    .hero {
        padding: 90px var(--space-md) var(--space-2xl);
    }
    
    .about-image-main img {
        height: 300px;
    }
    
    .contact-form-card {
        padding: var(--space-xl);
    }
}
