/* ============================================
   Collins Handyman — Custom Styles
   Clean minimalist · Plum + Amber palette
   ============================================ */

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

:root {
    /* Plum palette */
    --plum-deep: #3D1F33;
    --plum-primary: #7B3B5E;
    --plum-mid: #9B5D7E;
    --plum-light: #C4A0B5;
    --plum-pale: #F2E8ED;
    --plum-ghost: #FAF5F7;

    /* Amber palette */
    --amber-deep: #8B5E3C;
    --amber-primary: #C8924A;
    --amber-mid: #D4A866;
    --amber-light: #E8C99A;
    --amber-pale: #FBF5EC;

    /* Neutrals */
    --black: #1A1A1A;
    --dark: #2D2D2D;
    --gray-900: #333333;
    --gray-700: #555555;
    --gray-500: #888888;
    --gray-300: #BBBBBB;
    --gray-200: #E0E0E0;
    --gray-100: #F0F0F0;
    --white: #FFFFFF;
    --off-white: #FDFCFC;

    /* Typography */
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;

    /* Spacing */
    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-base: 0.3s ease;
    --transition-slow: 0.5s ease;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--gray-900);
    background-color: var(--off-white);
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

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

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

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

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

/* --- Typography --- */
h1, h2, h3, h4 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.2;
    color: var(--black);
}

em {
    font-style: italic;
    color: var(--plum-primary);
}

/* --- Section Label --- */
.section-label {
    display: inline-block;
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-primary);
    margin-bottom: var(--space-sm);
    position: relative;
    padding-left: var(--space-lg);
}

.section-label::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 32px;
    height: 1px;
    background: var(--plum-primary);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3.2rem);
    margin-bottom: var(--space-md);
    color: var(--black);
}

.section-description {
    font-size: 1.05rem;
    color: var(--gray-700);
    max-width: 520px;
    line-height: 1.8;
}

.section-header--center {
    text-align: center;
}

.section-header--center .section-label {
    padding-left: 0;
}

.section-header--center .section-label::before {
    display: none;
}

.section-header--center .section-description {
    margin: 0 auto;
}

/* --- Buttons --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 0;
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

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

.btn--primary:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(123, 59, 94, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--plum-primary);
    border: 1px solid var(--plum-light);
}

.btn--ghost:hover {
    background: var(--plum-pale);
    border-color: var(--plum-primary);
}

.btn--dark {
    background: var(--black);
    color: var(--white);
    border: 1px solid var(--black);
}

.btn--dark:hover {
    background: var(--plum-deep);
    border-color: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(61, 31, 51, 0.3);
}

.btn--light {
    background: var(--white);
    color: var(--plum-primary);
    border: 1px solid var(--white);
}

.btn--light:hover {
    background: var(--plum-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

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

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

.nav.scrolled {
    border-bottom-color: var(--gray-200);
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.05);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--black);
    letter-spacing: 0.02em;
}

.nav-logo-icon {
    color: var(--plum-primary);
}

.nav-logo:hover .nav-logo-icon {
    color: var(--amber-primary);
}

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

.nav-link {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--gray-700);
    position: relative;
    padding: 0.25rem 0;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--plum-primary);
    transition: width var(--transition-base);
}

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

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

.nav-link--cta {
    color: var(--plum-primary);
    border: 1px solid var(--plum-light);
    padding: 0.6rem 1.2rem;
    transition: all var(--transition-base);
}

.nav-link--cta::after {
    display: none;
}

.nav-link--cta:hover {
    background: var(--plum-primary);
    color: var(--white);
    border-color: var(--plum-primary);
}

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

.nav-toggle span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--black);
    transition: all var(--transition-base);
}

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

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

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

/* --- Mobile Menu --- */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--off-white);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition-base);
}

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

.mobile-menu-close {
    position: absolute;
    top: 24px;
    right: 24px;
    color: var(--black);
    padding: 8px;
}

.mobile-menu-content {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: var(--space-lg);
}

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

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

.mobile-menu-link--cta {
    font-family: var(--font-sans);
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--plum-primary);
    border: 1px solid var(--plum-primary);
    padding: 1rem 2rem;
    margin-top: var(--space-sm);
}

.mobile-menu-contact {
    margin-top: var(--space-lg);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.mobile-menu-contact a {
    font-size: 0.85rem;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.mobile-menu-contact a:hover {
    color: var(--plum-primary);
}

/* ============================================
   Hero Section
   ============================================ */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px var(--space-lg) 80px;
    background: var(--off-white);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background: linear-gradient(135deg, var(--plum-pale) 0%, var(--amber-pale) 100%);
    opacity: 0.4;
    pointer-events: none;
}

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

.hero-content {
    max-width: 540px;
}

.hero-label {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--plum-primary);
    margin-bottom: var(--space-xl);
}

.hero-label-line {
    width: 40px;
    height: 1px;
    background: var(--plum-primary);
}

.hero-headline {
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--black);
    margin-bottom: var(--space-lg);
}

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

.hero-description {
    font-size: 1.05rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: var(--space-xl);
    max-width: 460px;
}

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

.hero-trust {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

.hero-trust-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    color: var(--gray-700);
}

.hero-trust-item svg {
    color: var(--amber-primary);
}

/* Hero Image */
.hero-image {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    overflow: hidden;
}

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

.hero-image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 60%;
    height: 60%;
    border: 1px solid var(--plum-light);
    z-index: -1;
}

.hero-image-badge {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: var(--space-lg);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.hero-badge-number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--plum-primary);
    line-height: 1;
}

.hero-badge-text {
    font-size: 0.78rem;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--gray-700);
    line-height: 1.5;
}

/* Hero Scroll */
.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero-scroll a {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gray-500);
    transition: color var(--transition-fast);
}

.hero-scroll a:hover {
    color: var(--plum-primary);
}

.hero-scroll svg {
    animation: bounce 2s infinite;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% { transform: translateY(0); }
    40% { transform: translateY(6px); }
    60% { transform: translateY(3px); }
}

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

.services .container {
    max-width: 1200px;
}

.section-header {
    margin-bottom: var(--space-3xl);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--gray-200);
    border: 1px solid var(--gray-200);
}

.service-card {
    background: var(--white);
    padding: var(--space-2xl);
    transition: all var(--transition-base);
    position: relative;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--plum-primary);
    transition: width var(--transition-base);
}

.service-card:hover {
    background: var(--plum-ghost);
}

.service-card:hover::before {
    width: 100%;
}

.service-card-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    margin-bottom: var(--space-lg);
    color: var(--plum-primary);
    transition: all var(--transition-base);
}

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

.service-card-title {
    font-size: 1.35rem;
    font-weight: 400;
    margin-bottom: var(--space-sm);
    color: var(--black);
}

.service-card-desc {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.8;
}

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

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

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

.about-image-main {
    overflow: hidden;
}

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

.about-image-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    width: 55%;
    overflow: hidden;
    border: 6px solid var(--off-white);
}

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

.about-experience-strip {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    margin-top: var(--space-xl);
    padding-top: var(--space-xl);
    border-top: 1px solid var(--gray-200);
}

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

.about-exp-number {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 300;
    color: var(--plum-primary);
    line-height: 1;
}

.about-exp-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.about-exp-divider {
    width: 1px;
    height: 40px;
    background: var(--gray-200);
}

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

.about-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: var(--space-lg);
}

.about-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.9;
    margin-bottom: var(--space-md);
}

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

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

.about-value-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    color: var(--plum-primary);
}

.about-value span:last-child {
    font-size: 0.9rem;
    color: var(--gray-700);
    line-height: 1.6;
    padding-top: 0.4rem;
}

/* ============================================
   Gallery Section
   ============================================ */
.gallery {
    padding: var(--space-4xl) 0;
    background: var(--white);
}

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

.gallery-item {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery-item-overlay {
    position: absolute;
    inset: 0;
    background: rgba(61, 31, 51, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.gallery-item-overlay span {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 300;
    color: var(--white);
    letter-spacing: 0.05em;
}

.gallery-item--large {
    grid-column: 1 / 8;
    grid-row: 1 / 2;
}

.gallery-item--large img {
    height: 480px;
}

.gallery-item:nth-child(2) {
    grid-column: 8 / 13;
    grid-row: 1 / 2;
}

.gallery-item:nth-child(2) img,
.gallery-item:nth-child(3) img,
.gallery-item:nth-child(4) img,
.gallery-item:nth-child(6) img {
    height: 400px;
}

.gallery-item:nth-child(3) {
    grid-column: 8 / 13;
    grid-row: 2 / 3;
}

.gallery-item:nth-child(4) {
    grid-column: 1 / 5;
    grid-row: 2 / 3;
}

.gallery-item--tall {
    grid-column: 5 / 9;
    grid-row: 2 / 3;
}

.gallery-item--tall img {
    height: 640px;
}

.gallery-item:nth-child(6) {
    grid-column: 9 / 13;
    grid-row: 2 / 3;
}

/* ============================================
   CTA Banner
   ============================================ */
.cta-banner {
    padding: var(--space-4xl) 0;
    background: var(--plum-deep);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 60%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200, 146, 74, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.cta-banner-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: var(--space-3xl);
    align-items: center;
    position: relative;
    z-index: 1;
}

.cta-banner .section-label {
    color: var(--amber-mid);
}

.cta-banner .section-label::before {
    background: var(--amber-mid);
}

.cta-title {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    color: var(--white);
    margin-bottom: var(--space-md);
}

.cta-title em {
    color: var(--amber-light);
}

.cta-description {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.65);
    line-height: 1.8;
    max-width: 480px;
}

.cta-banner-actions {
    flex-shrink: 0;
}

/* ============================================
   Contact Section
   ============================================ */
.contact {
    padding: var(--space-4xl) 0;
    background: var(--off-white);
}

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

.contact-title {
    font-size: clamp(2rem, 3.5vw, 2.8rem);
    margin-bottom: var(--space-md);
}

.contact-text {
    font-size: 1rem;
    color: var(--gray-700);
    line-height: 1.8;
    margin-bottom: var(--space-2xl);
}

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

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

.contact-detail-icon {
    width: 44px;
    height: 44px;
    min-width: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--gray-200);
    color: var(--plum-primary);
}

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

.contact-detail-label {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gray-500);
}

.contact-detail-text a,
.contact-detail-text span {
    font-size: 0.95rem;
    color: var(--gray-900);
    transition: color var(--transition-fast);
}

.contact-detail-text a:hover {
    color: var(--plum-primary);
}

.contact-hours {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-md);
    background: var(--plum-ghost);
    border-left: 2px solid var(--plum-primary);
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.8;
}

.contact-hours-icon {
    color: var(--plum-primary);
    flex-shrink: 0;
}

/* --- Contact Form --- */
.contact-form {
    background: var(--white);
    padding: var(--space-2xl);
    border: 1px solid var(--gray-200);
}

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

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

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

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.85rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    font-weight: 300;
    color: var(--black);
    background: var(--off-white);
    border: 1px solid var(--gray-200);
    outline: none;
    transition: all var(--transition-fast);
    appearance: none;
    border-radius: 0;
}

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

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

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

.form-group select {
    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='%23888888' stroke-width='2'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
}

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: var(--space-3xl) var(--space-2xl);
    background: var(--white);
    border: 1px solid var(--gray-200);
}

.form-success-icon {
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--plum-primary);
    color: var(--plum-primary);
    margin-bottom: var(--space-lg);
}

.form-success-title {
    font-size: 1.5rem;
    margin-bottom: var(--space-sm);
}

.form-success-text {
    font-size: 0.95rem;
    color: var(--gray-700);
    line-height: 1.8;
    max-width: 320px;
}

/* ============================================
   Footer
   ============================================ */
.footer {
    background: var(--black);
    color: rgba(255, 255, 255, 0.6);
    padding: var(--space-3xl) 0 var(--space-lg);
}

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: var(--space-md);
}

.footer-logo-icon {
    color: var(--amber-primary);
}

.footer-tagline {
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
    color: rgba(255, 255, 255, 0.45);
}

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

.footer-link-title {
    font-family: var(--font-sans);
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: var(--space-md);
}

.footer-link-col a,
.footer-link-col span {
    display: block;
    font-size: 0.88rem;
    color: rgba(255, 255, 255, 0.55);
    padding: 0.3rem 0;
    transition: color var(--transition-fast);
}

.footer-link-col a:hover {
    color: var(--amber-primary);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   Animations
   ============================================ */
.fade-in {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }
.fade-in-delay-5 { transition-delay: 0.5s; }
.fade-in-delay-6 { transition-delay: 0.6s; }

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

    .hero-image-wrapper img {
        height: 560px;
    }

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

    .about-image-secondary {
        right: -20px;
        bottom: -20px;
    }

    .gallery-item--large img {
        height: 380px;
    }

    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(4) img,
    .gallery-item:nth-child(6) img {
        height: 280px;
    }

    .gallery-item--tall img {
        height: 480px;
    }
}

@media (max-width: 900px) {
    .nav-links {
        display: none;
    }

    .nav-toggle {
        display: flex;
    }

    .hero {
        padding-top: 100px;
    }

    .hero-container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero-content {
        max-width: 100%;
        order: 1;
    }

    .hero-image {
        order: 2;
        max-width: 500px;
    }

    .hero-image-wrapper img {
        height: 480px;
    }

    .hero-image-badge {
        left: -10px;
        bottom: 20px;
    }

    .hero-image-accent {
        display: none;
    }

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

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

    .about-image-main img {
        height: 400px;
    }

    .about-image-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        width: 100%;
        margin-top: var(--space-md);
        border: none;
    }

    .about-image-secondary img {
        height: 200px;
    }

    .cta-banner-inner {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

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

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

    .footer-links {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .services-grid {
        grid-template-columns: 1fr;
    }

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

    .gallery-item--large {
        grid-column: 1 / -1;
    }

    .gallery-item--large img {
        height: 300px;
    }

    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(5),
    .gallery-item:nth-child(6) {
        grid-column: auto;
        grid-row: auto;
    }

    .gallery-item:nth-child(2) img,
    .gallery-item:nth-child(3) img,
    .gallery-item:nth-child(4) img,
    .gallery-item:nth-child(6) img {
        height: 240px;
    }

    .gallery-item--tall {
        grid-column: 1 / -1;
    }

    .gallery-item--tall img {
        height: 300px;
    }

    .hero-scroll {
        display: none;
    }
}

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

    .hero {
        padding: 100px var(--space-md) 60px;
    }

    .hero-actions {
        flex-direction: column;
    }

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

    .hero-trust {
        flex-direction: column;
        gap: var(--space-sm);
    }

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

    .footer-links {
        grid-template-columns: 1fr 1fr;
    }

    .footer-bottom {
        flex-direction: column;
        gap: var(--space-sm);
        text-align: center;
    }

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

    .gallery-item--large,
    .gallery-item--tall,
    .gallery-item:nth-child(2),
    .gallery-item:nth-child(3),
    .gallery-item:nth-child(4),
    .gallery-item:nth-child(6) {
        grid-column: 1 / -1;
    }

    .gallery-item img {
        height: 260px !important;
    }
}

@media (max-width: 380px) {
    .footer-links {
        grid-template-columns: 1fr;
    }
}
