/* ========================================
   D.C. Paintworks — Custom Styles
   Warm terracotta & sand palette
   ======================================== */

/* CSS Custom Properties */
:root {
    --terracotta-50: #FFF5F0;
    --terracotta-100: #FDE4D6;
    --terracotta-200: #F9C4AE;
    --terracotta-300: #F09B7A;
    --terracotta-400: #E07050;
    --terracotta-500: #C0603A;
    --terracotta-600: #A84E2E;
    --terracotta-700: #8B3F24;
    --terracotta-800: #6E321D;
    --terracotta-900: #4A1F0F;

    --sand-50: #FDF8F4;
    --sand-100: #F9EDE0;
    --sand-200: #F2D9C0;
    --sand-300: #E8C09A;
    --sand-400: #D4A574;
    --sand-500: #B8895A;

    --neutral-50: #FAFAFA;
    --neutral-100: #F5F5F5;
    --neutral-200: #EEEEEE;
    --neutral-300: #E0E0E0;
    --neutral-400: #BDBDBD;
    --neutral-500: #9E9E9E;
    --neutral-600: #757575;
    --neutral-700: #616161;
    --neutral-800: #424242;
    --neutral-900: #212121;

    --font-heading: 'Playfair Display', Georgia, serif;
    --font-body: 'DM Sans', -apple-system, BlinkMacSystemFont, sans-serif;

    --shadow-sm: 0 1px 3px rgba(192, 96, 58, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(192, 96, 58, 0.08), 0 2px 6px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(192, 96, 58, 0.12), 0 4px 12px rgba(0, 0, 0, 0.06);
    --shadow-xl: 0 24px 60px rgba(192, 96, 58, 0.14), 0 8px 20px rgba(0, 0, 0, 0.08);

    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 22px;
    --radius-xl: 32px;

    --transition: 0.3s 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-body);
    font-size: 16px;
    line-height: 1.7;
    color: var(--neutral-800);
    background-color: var(--sand-50);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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 {
    list-style: none;
}

/* Utility */
.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ========================================
   Buttons
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 1rem;
    padding: 14px 28px;
    border-radius: var(--radius-lg);
    transition: all var(--transition);
    white-space: nowrap;
    border: 2px solid transparent;
}

.btn--primary {
    background: var(--terracotta-500);
    color: #fff;
    border-color: var(--terracotta-500);
    box-shadow: var(--shadow-md);
}

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

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    border-color: rgba(255, 255, 255, 0.5);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--light {
    background: #fff;
    color: var(--terracotta-600);
    border-color: #fff;
    box-shadow: var(--shadow-md);
}

.btn--light:hover {
    background: var(--sand-100);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.6);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1.0625rem;
}

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

/* ========================================
   Section Shared
   ======================================== */
.section {
    padding: 100px 0;
}

.section__label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--terracotta-500);
    margin-bottom: 12px;
    background: var(--terracotta-50);
    padding: 6px 16px;
    border-radius: 50px;
}

.section__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--neutral-900);
    line-height: 1.2;
    margin-bottom: 16px;
}

.section__subtitle {
    font-size: 1.125rem;
    color: var(--neutral-600);
    max-width: 600px;
    line-height: 1.7;
}

.section__header {
    text-align: center;
    margin-bottom: 64px;
}

.section__header .section__subtitle {
    margin: 0 auto;
}

/* ========================================
   Navigation
   ======================================== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: var(--shadow-sm);
    padding: 10px 0;
}

.nav__inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    transition: color var(--transition);
}

.nav.scrolled .nav__logo {
    color: var(--terracotta-600);
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.9375rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    padding: 8px 16px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.nav__link:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
}

.nav.scrolled .nav__link {
    color: var(--neutral-700);
}

.nav.scrolled .nav__link:hover {
    color: var(--terracotta-600);
    background: var(--terracotta-50);
}

.nav__link--cta {
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    margin-left: 8px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.nav__link--cta:hover {
    background: #fff;
    color: var(--terracotta-600);
}

.nav.scrolled .nav__link--cta {
    background: var(--terracotta-500);
    color: #fff;
    border-color: var(--terracotta-500);
}

.nav.scrolled .nav__link--cta:hover {
    background: var(--terracotta-600);
    border-color: var(--terracotta-600);
}

/* Mobile Toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    width: 24px;
    height: 2px;
    background: #fff;
    border-radius: 2px;
    transition: all var(--transition);
}

.nav.scrolled .nav__toggle-bar {
    background: var(--neutral-800);
}

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

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

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

/* Mobile Menu */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--sand-50);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

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

.mobile-menu__close {
    position: absolute;
    top: 20px;
    right: 24px;
    color: var(--neutral-700);
    padding: 8px;
}

.mobile-menu__link {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--neutral-800);
    padding: 12px 24px;
    border-radius: var(--radius-md);
    transition: all var(--transition);
}

.mobile-menu__link:hover {
    color: var(--terracotta-600);
}

.mobile-menu__link--cta {
    margin-top: 16px;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--terracotta-500);
    color: #fff;
    padding: 16px 32px;
    border-radius: var(--radius-lg);
}

.mobile-menu__link--cta:hover {
    background: var(--terracotta-600);
    color: #fff;
}

/* ========================================
   Hero Section
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    z-index: -2;
}

.hero__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--terracotta-700) 0%, var(--terracotta-500) 35%, var(--terracotta-400) 60%, var(--sand-400) 100%);
}

.hero__pattern {
    position: absolute;
    inset: 0;
    opacity: 0.06;
    background-image: radial-gradient(circle at 25% 25%, #fff 1px, transparent 1px),
                      radial-gradient(circle at 75% 75%, #fff 1px, transparent 1px);
    background-size: 48px 48px;
}

.hero__content {
    max-width: 800px;
    margin: 0 auto;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.95);
    font-size: 0.875rem;
    font-weight: 500;
    padding: 8px 20px;
    border-radius: 50px;
    margin-bottom: 28px;
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero__badge svg {
    flex-shrink: 0;
}

.hero__headline {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4.25rem);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__headline-accent {
    display: block;
    font-style: italic;
    font-weight: 600;
    color: var(--sand-200);
}

.hero__subheadline {
    font-size: clamp(1.0625rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.7;
    max-width: 600px;
    margin: 0 auto 40px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    margin-bottom: 56px;
}

.hero__trust {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 32px;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.hero__trust-item svg {
    opacity: 0.8;
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    animation: float 2.5s ease-in-out infinite;
}

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

/* ========================================
   Services Section
   ======================================== */
.services {
    background: var(--sand-50);
}

.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--sand-100);
    transition: all var(--transition);
}

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

.service-card__icon-wrap {
    width: 60px;
    height: 60px;
    border-radius: var(--radius-md);
    background: var(--terracotta-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
    margin-bottom: 20px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon-wrap {
    background: var(--terracotta-500);
    color: #fff;
}

.service-card__icon {
    width: 32px;
    height: 32px;
}

.service-card__title {
    font-family: var(--font-heading);
    font-size: 1.3125rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 10px;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.65;
    margin-bottom: 18px;
}

.service-card__features {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.service-card__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: var(--neutral-700);
}

.service-card__features li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta-400);
    flex-shrink: 0;
}

/* ========================================
   About Section
   ======================================== */
.about {
    background: #fff;
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.about__images {
    position: relative;
}

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

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

.about__img-stack {
    position: absolute;
    bottom: -32px;
    right: -32px;
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.about__img-stack img {
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    border: 4px solid #fff;
}

.about__img-accent {
    background: var(--terracotta-500);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-lg);
    border: none;
}

.about__stat {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.about__stat-number {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}

.about__stat-label {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.85);
    font-weight: 500;
}

.about__content {
    max-width: 520px;
}

.about__text {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-top: 36px;
}

.about__value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__value-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--terracotta-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
    flex-shrink: 0;
}

.about__value-title {
    display: block;
    font-size: 1rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 2px;
}

.about__value-desc {
    font-size: 0.9375rem;
    color: var(--neutral-600);
}

/* ========================================
   Gallery Section
   ======================================== */
.gallery {
    background: var(--sand-50);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 20px;
}

.gallery__item {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    cursor: pointer;
    box-shadow: var(--shadow-sm);
}

.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__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(140, 63, 36, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-tag {
    display: inline-block;
    background: rgba(255, 255, 255, 0.25);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 600;
    padding: 4px 12px;
    border-radius: 50px;
    width: fit-content;
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.gallery__item-desc {
    color: #fff;
    font-size: 1rem;
    font-weight: 600;
}

.gallery__item--wide {
    grid-column: span 7;
    aspect-ratio: 8/5;
}

.gallery__item:not(.gallery__item--wide) {
    aspect-ratio: 5/4;
}

/* ========================================
   Process Section
   ======================================== */
.process {
    background: #fff;
}

.process__steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    max-width: 1100px;
    margin: 0 auto;
}

.process__step {
    position: relative;
}

.process__step-number {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 800;
    color: var(--terracotta-100);
    line-height: 1;
    margin-bottom: 16px;
    position: relative;
}

.process__step-line {
    position: absolute;
    top: 50%;
    right: -12px;
    width: 24px;
    height: 2px;
    background: var(--terracotta-200);
}

.process__step:last-child .process__step-line {
    display: none;
}

.process__step-icon {
    width: 56px;
    height: 56px;
    border-radius: var(--radius-md);
    background: var(--terracotta-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
    margin-bottom: 16px;
}

.process__step-title {
    font-family: var(--font-heading);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 8px;
}

.process__step-desc {
    font-size: 0.9375rem;
    color: var(--neutral-600);
    line-height: 1.7;
}

/* ========================================
   CTA Banner
   ======================================== */
.cta-banner {
    position: relative;
    padding: 88px 0;
    overflow: hidden;
}

.cta-banner__bg {
    position: absolute;
    inset: 0;
    z-index: -1;
}

.cta-banner__gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, var(--terracotta-600) 0%, var(--terracotta-500) 50%, var(--terracotta-400) 100%);
}

.cta-banner__content {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.cta-banner__title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.cta-banner__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 36px;
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

/* ========================================
   Contact Section
   ======================================== */
.contact {
    background: var(--sand-50);
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact__text {
    font-size: 1.0625rem;
    color: var(--neutral-600);
    line-height: 1.8;
    margin-bottom: 36px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 52px;
    height: 52px;
    border-radius: var(--radius-md);
    background: var(--terracotta-50);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta-500);
    flex-shrink: 0;
}

.contact__detail-label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--terracotta-500);
    margin-bottom: 4px;
}

.contact__detail p {
    font-size: 1rem;
    color: var(--neutral-800);
    line-height: 1.6;
}

.contact__detail a {
    color: var(--neutral-800);
    transition: color var(--transition);
}

.contact__detail a:hover {
    color: var(--terracotta-600);
}

/* Contact Form */
.contact__form-wrap {
    background: #fff;
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--sand-100);
}

.contact__form-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--neutral-900);
    margin-bottom: 28px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--neutral-700);
    margin-bottom: 6px;
}

.form__input {
    width: 100%;
    padding: 14px 16px;
    border: 1.5px solid var(--neutral-200);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--neutral-800);
    background: var(--sand-50);
    transition: all var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--terracotta-400);
    background: #fff;
    box-shadow: 0 0 0 4px rgba(192, 96, 58, 0.1);
}

.form__input::placeholder {
    color: var(--neutral-400);
}

.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='%239E9E9E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

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

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    text-align: center;
    padding: 32px 20px;
    background: var(--terracotta-50);
    border-radius: var(--radius-md);
    margin-top: 8px;
}

.form__success.active {
    display: flex;
}

.form__success svg {
    color: var(--terracotta-500);
}

.form__success p {
    font-size: 1rem;
    color: var(--neutral-700);
    line-height: 1.6;
}

/* ========================================
   Footer
   ======================================== */
.footer {
    background: var(--neutral-900);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: 1.25rem;
    color: #fff;
    margin-bottom: 16px;
}

.footer__logo-icon {
    color: var(--terracotta-400);
}

.footer__tagline {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.55);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding-bottom: 56px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__heading {
    font-size: 0.8125rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.45);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer__links a:hover {
    color: var(--terracotta-300);
}

.footer__address {
    font-style: normal;
    font-size: 0.9375rem;
    line-height: 1.8;
}

.footer__address a {
    color: rgba(255, 255, 255, 0.7);
    transition: color var(--transition);
}

.footer__address a:hover {
    color: var(--terracotta-300);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__bottom p {
    margin: 0;
}

/* ========================================
   Scroll Animations
   ======================================== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    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; }

/* ========================================
   Responsive
   ======================================== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .process__steps {
        grid-template-columns: repeat(2, 1fr);
        gap: 40px;
    }

    .process__step-line {
        display: none;
    }

    .about__img-stack {
        right: -16px;
        bottom: -20px;
    }

    .gallery__item--wide {
        grid-column: span 8;
    }
}

@media (max-width: 768px) {
    .section {
        padding: 72px 0;
    }

    /* Nav mobile */
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        display: none;
    }

    /* Hero */
    .hero {
        padding: 100px 20px 80px;
    }

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

    .hero__trust {
        gap: 20px;
    }

    /* Services */
    .services__grid {
        grid-template-columns: 1fr;
    }

    /* About */
    .about__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .about__images {
        order: -1;
    }

    .about__img-stack {
        position: relative;
        right: 0;
        bottom: 0;
        flex-direction: row;
    }

    .about__img-stack img {
        width: 55%;
    }

    .about__img-accent {
        width: 45%;
    }

    /* Gallery */
    .gallery__grid {
        grid-template-columns: 1fr 1fr;
    }

    .gallery__item--wide {
        grid-column: span 2;
    }

    .gallery__item-overlay {
        opacity: 1;
    }

    /* Process */
    .process__steps {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .process__step-number {
        font-size: 2.5rem;
    }

    /* CTA */
    .cta-banner__actions {
        flex-direction: column;
        align-items: center;
    }

    /* Contact */
    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact__form-wrap {
        padding: 28px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }
}

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

    .section {
        padding: 56px 0;
    }

    .hero__headline {
        font-size: 2rem;
    }

    .hero__badge {
        font-size: 0.8125rem;
        padding: 6px 14px;
    }

    .btn--lg {
        padding: 16px 28px;
        font-size: 1rem;
    }

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

    .gallery__item--wide {
        grid-column: span 1;
    }

    .about__img-stack {
        flex-direction: column;
    }

    .about__img-stack img,
    .about__img-accent {
        width: 100%;
    }
}
