/* ========================================
   Recambios Redocar — Stylesheet
   Classic & Elegant · Navy + Gold
   ======================================== */

/* --- CSS Custom Properties --- */
:root {
    --navy-dark: #0A1A2E;
    --navy: #0F2438;
    --navy-light: #1A3A52;
    --navy-lighter: #244B66;
    --gold: #C9A84C;
    --gold-light: #D4B96A;
    --gold-pale: #F0E6C8;
    --cream: #FAF8F3;
    --cream-dark: #F2EDE4;
    --white: #FFFFFF;
    --text-dark: #1A1A1A;
    --text-body: #3D3D3D;
    --text-muted: #6B6B6B;
    --text-light: #9A9A9A;
    --border: #E8E2D6;
    --border-light: #F0EBE3;

    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

    --shadow-sm: 0 1px 3px rgba(15, 36, 56, 0.06);
    --shadow-md: 0 4px 20px rgba(15, 36, 56, 0.08);
    --shadow-lg: 0 8px 40px rgba(15, 36, 56, 0.12);
    --shadow-xl: 0 16px 60px rgba(15, 36, 56, 0.15);

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);

    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

/* --- 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: 400;
    line-height: 1.7;
    color: var(--text-body);
    background-color: var(--cream);
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

address {
    font-style: normal;
}

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 500;
    line-height: 1.2;
    color: var(--navy);
}

/* --- Utility --- */
.section-label {
    display: inline-block;
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    position: relative;
    padding-left: 2rem;
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 1.2rem;
    height: 1.5px;
    background: var(--gold);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 1.25rem;
}

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

.section-description {
    font-size: 1.0625rem;
    color: var(--text-muted);
    max-width: 520px;
    line-height: 1.8;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 1.75rem;
    font-family: var(--font-body);
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.03em;
    border: none;
    border-radius: var(--radius-sm);
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

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

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

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

.btn--ghost:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
}

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

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

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

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

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

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

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

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--navy);
}

.nav__logo-icon {
    color: var(--gold);
}

.nav__logo-accent {
    color: var(--gold);
    font-style: italic;
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav__link {
    padding: 0.5rem 1rem;
    font-size: 0.875rem;
    font-weight: 400;
    color: var(--text-body);
    border-radius: var(--radius-sm);
    transition: all var(--transition);
}

.nav__link:hover {
    color: var(--navy);
    background: rgba(15, 36, 56, 0.05);
}

.nav__link--cta {
    background: var(--navy);
    color: var(--white) !important;
    margin-left: 0.5rem;
}

.nav__link--cta:hover {
    background: var(--navy-light);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--navy);
    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;
    inset: 0;
    z-index: 999;
    visibility: hidden;
    opacity: 0;
    transition: all var(--transition);
}

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

.mobile-menu__overlay {
    position: absolute;
    inset: 0;
    background: rgba(10, 26, 46, 0.5);
    backdrop-filter: blur(4px);
}

.mobile-menu__content {
    position: absolute;
    top: 0;
    right: 0;
    width: min(320px, 85vw);
    height: 100%;
    background: var(--cream);
    padding: 5.5rem 2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    box-shadow: var(--shadow-xl);
    transform: translateX(100%);
    transition: transform var(--transition);
}

.mobile-menu.open .mobile-menu__content {
    transform: translateX(0);
}

.mobile-menu__item {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 500;
    color: var(--navy);
    padding: 0.75rem 0;
    border-bottom: 1px solid var(--border);
    transition: color var(--transition);
}

.mobile-menu__item:hover {
    color: var(--gold);
}

.mobile-menu__contact {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid var(--border);
}

.mobile-menu__contact p {
    margin-bottom: 0.75rem;
}

.mobile-menu__phone,
.mobile-menu__email {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

.mobile-menu__phone:hover,
.mobile-menu__email:hover {
    color: var(--gold);
}

/* --- Hero Section --- */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 7rem 2rem 4rem;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: var(--navy);
    border-radius: 0 0 0 20%;
    opacity: 0.03;
    pointer-events: none;
}

.hero__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__content {
    max-width: 560px;
}

.hero__eyebrow {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.hero__eyebrow-line {
    width: 2rem;
    height: 1.5px;
    background: var(--gold);
    flex-shrink: 0;
}

.hero__title {
    font-size: clamp(2.75rem, 5vw, 4.25rem);
    font-weight: 500;
    line-height: 1.1;
    color: var(--navy);
    margin-bottom: 1.5rem;
}

.hero__title-accent {
    font-style: italic;
    color: var(--gold);
    position: relative;
}

.hero__title-accent::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 0.1em;
    background: var(--gold-pale);
    z-index: -1;
}

.hero__subtitle {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.25rem;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.hero__trust {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}

.hero__trust-item {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__trust-number {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1;
}

.hero__trust-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    letter-spacing: 0.04em;
}

.hero__trust-divider {
    width: 1px;
    height: 3rem;
    background: var(--border);
    flex-shrink: 0;
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/750;
}

.hero__image-accent {
    position: absolute;
    bottom: -2rem;
    left: -2rem;
    width: 60%;
    height: 40%;
    border: 2px solid var(--gold);
    border-radius: var(--radius-lg);
    z-index: -1;
    opacity: 0.3;
}

.hero__image-float {
    position: absolute;
    bottom: 2rem;
    left: -3rem;
    background: var(--white);
    border-radius: var(--radius-md);
    padding: 1rem 1.25rem;
    box-shadow: var(--shadow-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    z-index: 2;
}

.hero__image-float-icon {
    width: 40px;
    height: 40px;
    background: var(--gold-pale);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.hero__image-float-title {
    display: block;
    font-family: var(--font-display);
    font-size: 0.9375rem;
    font-weight: 600;
    color: var(--navy);
    line-height: 1.3;
}

.hero__image-float-sub {
    display: block;
    font-size: 0.75rem;
    color: var(--text-muted);
}

.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
    animation: float 2s ease-in-out infinite;
}

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

/* --- Services Section --- */
.services {
    padding: 7rem 2rem;
    background: var(--white);
}

.services__container {
    max-width: 1280px;
    margin: 0 auto;
}

.services__header {
    text-align: center;
    margin-bottom: 4rem;
}

.services__header .section-description {
    margin: 0 auto;
}

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

.service-card {
    background: var(--cream);
    border-radius: var(--radius-md);
    padding: 2rem;
    transition: all var(--transition);
    border: 1px solid transparent;
    position: relative;
    overflow: hidden;
}

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

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

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

.service-card__icon {
    width: 52px;
    height: 52px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.25rem;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--gold);
    color: var(--navy);
}

.service-card__title {
    font-size: 1.1875rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--navy);
}

.service-card__text {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.service-card__tag {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: var(--gold);
    text-transform: uppercase;
}

/* --- About Section --- */
.about {
    padding: 7rem 2rem;
    background: var(--cream);
    overflow: hidden;
}

.about__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__image-side {
    position: relative;
}

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

.about__image-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/600;
}

.about__image-secondary {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 55%;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    border: 4px solid var(--cream);
}

.about__image-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 300/250;
}

.about__experience-badge {
    position: absolute;
    top: -1.5rem;
    right: 2rem;
    background: var(--navy);
    color: var(--white);
    border-radius: var(--radius-md);
    padding: 1.25rem 1.5rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.about__experience-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.25rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about__experience-text {
    font-size: 0.75rem;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

.about__content {
    max-width: 520px;
}

.about__divider {
    width: 4rem;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.about__text {
    font-size: 1rem;
    line-height: 1.85;
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}

.about__text strong {
    color: var(--navy);
    font-weight: 500;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin: 2rem 0;
}

.about__value {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

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

.about__value-title {
    display: block;
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
    margin-bottom: 0.125rem;
}

.about__value-desc {
    font-size: 0.8125rem;
    color: var(--text-muted);
}

.about__content .btn {
    margin-top: 0.5rem;
}

/* --- Gallery Section --- */
.gallery {
    padding: 7rem 2rem;
    background: var(--white);
}

.gallery__container {
    max-width: 1280px;
    margin: 0 auto;
}

.gallery__header {
    text-align: center;
    margin-bottom: 3.5rem;
}

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

.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(15, 36, 56, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.25rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item-overlay span {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 500;
    color: var(--white);
}

.gallery__item:hover img {
    transform: scale(1.05);
}

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

.gallery__item--large {
    grid-column: span 5;
    grid-row: span 2;
}

.gallery__item:nth-child(2) {
    grid-column: span 4;
}

.gallery__item:nth-child(3) {
    grid-column: span 3;
}

.gallery__item:nth-child(4) {
    grid-column: span 3;
}

.gallery__item:nth-child(5) {
    grid-column: span 4;
}

/* --- CTA Section --- */
.cta {
    padding: 7rem 2rem;
    background: var(--navy);
    position: relative;
    overflow: hidden;
}

.cta::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(201, 168, 76, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cta__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta__content .section-label {
    color: var(--gold);
}

.cta__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--white);
    margin-bottom: 1.25rem;
}

.cta__title-accent {
    font-style: italic;
    color: var(--gold);
}

.cta__text {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 2.25rem;
    max-width: 480px;
}

.cta__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

.cta__btn-icon {
    display: flex;
    align-items: center;
}

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

.cta__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 500/600;
}

/* --- Contact Section --- */
.contact {
    padding: 7rem 2rem;
    background: var(--cream);
}

.contact__container {
    max-width: 1280px;
    margin: 0 auto;
}

.contact__header {
    text-align: center;
    margin-bottom: 4rem;
}

.contact__header .section-description {
    margin: 0 auto;
}

.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 4rem;
    align-items: start;
}

.contact__info {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

.contact__info-item {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.contact__info-icon {
    width: 48px;
    height: 48px;
    background: var(--navy);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

.contact__info-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-light);
    margin-bottom: 0.375rem;
}

.contact__info-value {
    font-size: 0.9375rem;
    color: var(--text-body);
    line-height: 1.7;
}

.contact__info-link {
    color: var(--navy);
    font-weight: 500;
    border-bottom: 1px solid transparent;
}

.contact__info-link:hover {
    color: var(--gold);
    border-bottom-color: var(--gold);
}

/* --- Contact Form --- */
.contact__form-wrapper {
    background: var(--white);
    border-radius: var(--radius-lg);
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--border-light);
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

.contact__form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact__form-label {
    font-size: 0.8125rem;
    font-weight: 500;
    color: var(--text-body);
    letter-spacing: 0.02em;
}

.contact__form-input,
.contact__form-textarea {
    font-family: var(--font-body);
    font-size: 0.9375rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.75rem 1rem;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.contact__form-input:focus,
.contact__form-textarea:focus {
    border-color: var(--gold);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(201, 168, 76, 0.1);
}

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

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

.contact__form-btn {
    align-self: flex-start;
    margin-top: 0.5rem;
}

.contact__success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1rem;
    padding: 2rem;
}

.contact__success-icon {
    width: 64px;
    height: 64px;
}

.contact__success-title {
    font-size: 1.5rem;
    color: var(--navy);
}

.contact__success-text {
    font-size: 0.9375rem;
    color: var(--text-muted);
}

/* --- Map Section --- */
.map-section {
    height: 350px;
    background: var(--cream-dark);
}

.map-section__container {
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.map-section iframe {
    width: 100%;
    height: 100%;
    filter: grayscale(30%);
}

/* --- Footer --- */
.footer {
    background: var(--navy-dark);
    color: rgba(255, 255, 255, 0.7);
    padding: 4rem 2rem 0;
}

.footer__container {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    font-family: var(--font-display);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 1rem;
}

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

.footer__logo-accent {
    color: var(--gold);
    font-style: italic;
}

.footer__tagline {
    font-size: 0.875rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.5);
    max-width: 280px;
}

.footer__heading {
    font-family: var(--font-body);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.footer__quick-links ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__quick-links a {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    transition: color var(--transition);
}

.footer__quick-links a:hover {
    color: var(--gold);
}

.footer__contact address {
    font-size: 0.875rem;
    line-height: 1.85;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.6);
}

.footer__contact a:hover {
    color: var(--gold);
}

.footer__hours ul {
    display: flex;
    flex-direction: column;
    gap: 0.625rem;
}

.footer__hours li {
    display: flex;
    justify-content: space-between;
    font-size: 0.875rem;
    gap: 1rem;
}

.footer__hours li span:first-child {
    color: rgba(255, 255, 255, 0.5);
}

.footer__hours li span:last-child {
    color: rgba(255, 255, 255, 0.8);
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 1.5rem 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.75rem;
}

.footer__copy {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__legal {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.3);
}

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s 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 --- */
@media (max-width: 1024px) {
    .hero__container {
        gap: 2.5rem;
    }

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

    .about__container {
        gap: 3rem;
    }

    .cta__container {
        gap: 2.5rem;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }

    .gallery__grid {
        grid-template-rows: repeat(2, 200px);
    }

    .gallery__item--large {
        grid-column: span 6;
        grid-row: span 2;
    }

    .gallery__item:nth-child(2) { grid-column: span 3; }
    .gallery__item:nth-child(3) { grid-column: span 3; }
    .gallery__item:nth-child(4) { grid-column: span 3; }
    .gallery__item:nth-child(5) { grid-column: span 3; }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        display: none;
    }

    .hero {
        padding: 6rem 1.5rem 4rem;
        min-height: auto;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero__image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }

    .hero__image-float {
        left: 0;
        bottom: 1rem;
    }

    .hero__trust {
        flex-wrap: wrap;
    }

    .hero__trust-divider {
        display: none;
    }

    .hero__scroll-indicator {
        display: none;
    }

    .services {
        padding: 5rem 1.5rem;
    }

    .services__grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about {
        padding: 5rem 1.5rem;
    }

    .about__container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image-side {
        max-width: 480px;
        margin: 0 auto;
    }

    .about__content {
        max-width: 100%;
    }

    .gallery {
        padding: 5rem 1.5rem;
    }

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

    .gallery__item--large {
        grid-column: span 2;
        grid-row: span 1;
    }

    .gallery__item {
        height: 200px;
    }

    .gallery__item:nth-child(2),
    .gallery__item:nth-child(3),
    .gallery__item:nth-child(4),
    .gallery__item:nth-child(5) {
        grid-column: span 1;
    }

    .cta {
        padding: 5rem 1.5rem;
    }

    .cta__container {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .cta__image {
        max-width: 400px;
        margin: 0 auto;
    }

    .contact {
        padding: 5rem 1.5rem;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

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

    .footer {
        padding: 3rem 1.5rem 0;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

@media (max-width: 480px) {
    .hero__title {
        font-size: 2.25rem;
    }

    .hero__actions {
        flex-direction: column;
    }

    .hero__actions .btn {
        justify-content: center;
    }

    .btn {
        padding: 0.75rem 1.5rem;
        font-size: 0.8125rem;
    }

    .service-card {
        padding: 1.5rem;
    }

    .contact__form-wrapper {
        padding: 1.5rem;
    }

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

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