/* ============================================
   McGilchrist & Sons Roofing & Sheet Metal
   Fresh & Airy — Burgundy + Blush
   ============================================ */

/* ---------- CSS Custom Properties ---------- */
:root {
    --burgundy: #782F40;
    --burgundy-deep: #5C1F2E;
    --burgundy-light: #9A4B5E;
    --blush: #F5E6E0;
    --blush-light: #FDF3F0;
    --blush-mid: #F9E8E2;
    --cream: #FFFAF8;
    --cream-dark: #F7EDE8;
    --text-dark: #2D1F24;
    --text-mid: #5C4048;
    --text-light: #8A6B73;
    --white: #FFFFFF;
    --shadow-sm: 0 2px 8px rgba(120, 47, 64, 0.06);
    --shadow-md: 0 8px 30px rgba(120, 47, 64, 0.10);
    --shadow-lg: 0 20px 60px rgba(120, 47, 64, 0.14);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --font-display: 'DM Serif Display', 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
}

/* ---------- 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(--text-dark);
    background-color: var(--cream);
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ---------- Decorative Background Blobs ---------- */
.bg-blob {
    position: fixed;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.35;
    pointer-events: none;
    z-index: 0;
}

.bg-blob--1 {
    width: 600px;
    height: 600px;
    background: var(--blush);
    top: -200px;
    right: -150px;
}

.bg-blob--2 {
    width: 500px;
    height: 500px;
    background: var(--blush-mid);
    bottom: 20%;
    left: -200px;
}

.bg-blob--3 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, var(--blush-light), var(--blush));
    top: 50%;
    right: -100px;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 250, 248, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(120, 47, 64, 0.06);
    transition: var(--transition);
}

.header.scrolled {
    background: rgba(255, 250, 248, 0.95);
    box-shadow: var(--shadow-sm);
}

.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
}

/* ---------- Logo ---------- */
.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--burgundy);
    transition: var(--transition);
}

.logo:hover {
    color: var(--burgundy-deep);
}

.logo-icon {
    display: flex;
    align-items: center;
    flex-shrink: 0;
}

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

.logo-name {
    font-family: var(--font-display);
    font-size: 1.15rem;
    font-weight: 400;
    letter-spacing: -0.01em;
}

.logo-amp {
    font-style: italic;
    opacity: 0.7;
}

.logo-tagline {
    font-size: 0.7rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--text-light);
}

.logo--footer .logo-name {
    font-size: 1rem;
}

/* ---------- Navigation ---------- */
.nav {
    display: flex;
    align-items: center;
}

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

.nav-link {
    padding: 8px 16px;
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--text-mid);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-link:hover {
    color: var(--burgundy);
    background: var(--blush-light);
}

.nav-cta {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    margin-left: 8px;
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--white);
    background: var(--burgundy);
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav-cta:hover {
    background: var(--burgundy-deep);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

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

.nav-toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--burgundy);
    border-radius: 2px;
    transition: var(--transition);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav-toggle[aria-expanded="true"] .nav-toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    font-size: 0.95rem;
    font-weight: 600;
    border-radius: var(--radius-sm);
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    color: var(--white);
    background: var(--burgundy);
    box-shadow: 0 4px 15px rgba(120, 47, 64, 0.25);
}

.btn-primary:hover {
    background: var(--burgundy-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 47, 64, 0.35);
}

.btn-secondary {
    color: var(--burgundy);
    background: var(--white);
    border: 1.5px solid rgba(120, 47, 64, 0.2);
}

.btn-secondary:hover {
    border-color: var(--burgundy);
    background: var(--blush-light);
    transform: translateY(-2px);
}

.btn-white {
    color: var(--burgundy);
    background: var(--white);
    box-shadow: var(--shadow-md);
}

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

.btn--large {
    padding: 16px 32px;
    font-size: 1rem;
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* ---------- Hero Section ---------- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: linear-gradient(160deg, var(--cream) 0%, var(--blush-light) 50%, var(--blush-mid) 100%);
    overflow: hidden;
}

.hero-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

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

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 18px;
    background: var(--white);
    border: 1px solid rgba(120, 47, 64, 0.1);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--burgundy);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge-dot {
    width: 8px;
    height: 8px;
    background: var(--burgundy);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 3.8rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.12rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
}

/* Hero Visual */
.hero-visual {
    position: relative;
}

.hero-image-wrapper {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
}

.hero-image-accent {
    position: absolute;
    inset: 16px;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: calc(var(--radius-xl) - 8px);
    pointer-events: none;
    z-index: 2;
}

.hero-image-wrapper img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.hero-floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 16px 20px;
    background: var(--white);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    z-index: 3;
    animation: float 4s ease-in-out infinite;
}

.hero-floating-card.hfc--reverse {
    animation-delay: -2s;
}

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

.hfc--reverse {
    bottom: 80px;
    right: -30px;
}

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

.hfc-text {
    display: flex;
    flex-direction: column;
    line-height: 1.3;
}

.hfc-label {
    font-size: 0.72rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--text-light);
}

.hfc-value {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-dark);
}

.hfc--reverse .hfc-icon {
    background: var(--burgundy);
    color: var(--white);
}

.hfc--reverse .hfc-label {
    color: var(--text-light);
}

.hfc--reverse .hfc-value {
    color: var(--burgundy);
}

.hero-floating-card:first-of-type {
    bottom: 40px;
    left: -40px;
}

/* Hero Wave */
.hero-wave {
    position: absolute;
    bottom: -2px;
    left: 0;
    right: 0;
    color: var(--cream);
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ---------- Section Shared ---------- */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-label {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--burgundy);
    margin-bottom: 14px;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.8rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 18px;
    letter-spacing: -0.02em;
}

.section-subtitle {
    font-size: 1.05rem;
    line-height: 1.8;
    color: var(--text-mid);
}

/* ---------- Services Section ---------- */
.services {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--cream);
}

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

.service-card {
    padding: 36px 30px;
    background: var(--white);
    border-radius: var(--radius-lg);
    border: 1px solid rgba(120, 47, 64, 0.06);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

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

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

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

.sc-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush-light);
    border-radius: var(--radius-md);
    color: var(--burgundy);
    margin-bottom: 22px;
    transition: var(--transition);
}

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

.sc-title {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 12px;
}

.sc-desc {
    font-size: 0.92rem;
    line-height: 1.75;
    color: var(--text-mid);
}

/* ---------- About Section ---------- */
.about {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--cream) 0%, var(--blush-light) 100%);
}

.about-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-visual {
    position: relative;
}

.about-img-stack {
    position: relative;
    height: 620px;
}

.ais-primary {
    position: absolute;
    top: 0;
    left: 0;
    width: 75%;
    height: 78%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.ais-primary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ais-secondary {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 55%;
    height: 55%;
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 6px solid var(--white);
}

.ais-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.ais-badge {
    position: absolute;
    top: 50%;
    left: 55%;
    transform: translate(-50%, -50%);
    width: 72px;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 50%;
    box-shadow: var(--shadow-md);
    z-index: 2;
}

.about-content {
    max-width: 480px;
}

.about-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about-stats {
    display: flex;
    align-items: center;
    gap: 24px;
    padding: 32px 0;
    margin: 32px 0;
    border-top: 1px solid rgba(120, 47, 64, 0.1);
    border-bottom: 1px solid rgba(120, 47, 64, 0.1);
}

.stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
    flex: 1;
}

.stat-number {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--burgundy);
    line-height: 1.2;
}

.stat-label {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.stat-divider {
    width: 1px;
    height: 48px;
    background: rgba(120, 47, 64, 0.15);
    flex-shrink: 0;
}

/* ---------- Gallery Section ---------- */
.gallery {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: var(--white);
}

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

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

.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.08);
}

.gallery-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: flex-end;
    padding: 24px;
    background: linear-gradient(to top, rgba(45, 31, 36, 0.7) 0%, transparent 60%);
    opacity: 0;
    transition: var(--transition);
}

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

.gallery-overlay span {
    color: var(--white);
    font-family: var(--font-display);
    font-size: 1.1rem;
}

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

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

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

.gallery-item--tall img {
    height: 100%;
    min-height: 700px;
}

.gallery-item:not(.gallery-item--large):not(.gallery-item--tall) img {
    height: 240px;
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    position: relative;
    z-index: 1;
    padding: 80px 0;
    background: linear-gradient(135deg, var(--burgundy) 0%, var(--burgundy-deep) 100%);
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 30% 50%, rgba(245, 230, 224, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    position: relative;
}

.cta-content {
    flex: 1;
}

.cta-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--white);
    line-height: 1.25;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.cta-text {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 480px;
}

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

/* ---------- Contact Section ---------- */
.contact {
    position: relative;
    z-index: 1;
    padding: 100px 0;
    background: linear-gradient(180deg, var(--blush-light) 0%, var(--cream) 100%);
}

.contact-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
}

.contact-info {
    max-width: 500px;
}

.contact-text {
    font-size: 1.02rem;
    line-height: 1.85;
    color: var(--text-mid);
    margin-bottom: 36px;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 36px;
}

.cd-item {
    display: flex;
    align-items: flex-start;
    gap: 18px;
}

.cd-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--white);
    border-radius: var(--radius-md);
    color: var(--burgundy);
    box-shadow: var(--shadow-sm);
    flex-shrink: 0;
}

.cd-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.cd-label {
    font-size: 0.78rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--text-light);
}

.cd-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-dark);
}

.cd-value a {
    color: var(--burgundy);
    transition: var(--transition);
}

.cd-value a:hover {
    color: var(--burgundy-deep);
    text-decoration: underline;
}

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

/* Contact Form */
.contact-form-wrapper {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 44px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(120, 47, 64, 0.06);
}

.cf-title {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 400;
    color: var(--text-dark);
    margin-bottom: 28px;
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-group {
    margin-bottom: 20px;
}

.form-label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-mid);
    margin-bottom: 8px;
}

.form-input {
    width: 100%;
    padding: 13px 16px;
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--text-dark);
    background: var(--cream);
    border: 1.5px solid rgba(120, 47, 64, 0.1);
    border-radius: var(--radius-sm);
    transition: var(--transition);
    outline: none;
}

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

.form-input:focus {
    border-color: var(--burgundy);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(120, 47, 64, 0.08);
}

.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='%23782F40' stroke-width='2.5' 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: 44px;
    cursor: pointer;
}

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

/* Form Success */
.form-success {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 48px 24px;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.fs-icon {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--blush);
    border-radius: 50%;
    color: var(--burgundy);
    margin-bottom: 20px;
}

.fs-title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.fs-text {
    font-size: 0.95rem;
    color: var(--text-mid);
    line-height: 1.7;
}

/* ---------- Footer ---------- */
.footer {
    position: relative;
    z-index: 1;
    background: var(--text-dark);
    color: rgba(255, 255, 255, 0.7);
}

.footer-inner {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 48px;
    padding: 72px 0 48px;
}

.footer-brand .logo-name {
    color: var(--white);
}

.footer-brand .logo-tagline {
    color: rgba(255, 255, 255, 0.5);
}

.footer-desc {
    margin-top: 18px;
    font-size: 0.9rem;
    line-height: 1.8;
    max-width: 300px;
}

.footer-heading {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links ul {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

.footer-links a:hover {
    color: var(--white);
    padding-left: 4px;
}

.footer-contact address {
    font-style: normal;
    display: flex;
    flex-direction: column;
    gap: 8px;
    font-size: 0.9rem;
    line-height: 1.7;
}

.footer-contact a {
    color: rgba(255, 255, 255, 0.6);
    transition: var(--transition);
}

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

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 24px 0;
}

.footer-bottom-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}

.footer-bottom p {
    font-size: 0.82rem;
    color: rgba(255, 255, 255, 0.4);
}

/* ---------- Scroll Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 1024px) {
    .hero-inner {
        gap: 40px;
    }
    
    .hero-image-wrapper img {
        height: 560px;
    }
    
    .about-inner {
        gap: 48px;
    }
    
    .about-img-stack {
        height: 480px;
    }
    
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .container {
        padding: 0 20px;
    }
    
    /* Mobile nav */
    .nav-toggle {
        display: flex;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 80%;
        max-width: 320px;
        height: 100vh;
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
        padding: 100px 32px 40px;
        background: var(--white);
        box-shadow: var(--shadow-lg);
        transition: right 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 1000;
    }
    
    .nav-menu.open {
        right: 0;
    }
    
    .nav-link {
        padding: 14px 0;
        font-size: 1.05rem;
        border-bottom: 1px solid rgba(120, 47, 64, 0.06);
        border-radius: 0;
    }
    
    .nav-cta {
        margin-left: 0;
        margin-top: 16px;
        justify-content: center;
        border-radius: var(--radius-sm);
    }
    
    .nav-overlay {
        display: none;
        position: fixed;
        inset: 0;
        background: rgba(45, 31, 36, 0.4);
        backdrop-filter: blur(4px);
        z-index: 999;
    }
    
    .nav-overlay.show {
        display: block;
    }
    
    /* Hero mobile */
    .hero {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .hero-content {
        text-align: center;
        max-width: 100%;
    }
    
    .hero-subtitle {
        max-width: 100%;
    }
    
    .hero-actions {
        justify-content: center;
    }
    
    .hero-visual {
        order: -1;
        max-width: 480px;
        margin: 0 auto;
        width: 100%;
    }
    
    .hero-image-wrapper img {
        height: 420px;
    }
    
    .hero-floating-card:first-of-type {
        left: 10px;
        bottom: 20px;
    }
    
    .hero-floating-card.hfc--reverse {
        right: 10px;
        bottom: 160px;
    }
    
    .hero-wave svg {
        height: 50px;
    }
    
    /* About mobile */
    .about-inner {
        grid-template-columns: 1fr;
        gap: 48px;
    }
    
    .about-visual {
        order: -1;
    }
    
    .about-img-stack {
        height: 400px;
    }
    
    .about-content {
        max-width: 100%;
    }
    
    /* Services mobile */
    .services-grid {
        grid-template-columns: 1fr;
    }
    
    /* Gallery mobile */
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
    }
    
    .gallery-item--large {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    
    .gallery-item--tall {
        grid-column: 1 / 3;
        grid-row: auto;
    }
    
    .gallery-item--large img,
    .gallery-item--tall img {
        height: 260px;
    }
    
    .gallery-item:not(.gallery-item--large):not(.gallery-item--tall) img {
        height: 200px;
    }
    
    /* CTA mobile */
    .cta-inner {
        flex-direction: column;
        text-align: center;
    }
    
    .cta-text {
        max-width: 100%;
    }
    
    /* Contact mobile */
    .contact-inner {
        grid-template-columns: 1fr;
    }
    
    .contact-info {
        max-width: 100%;
    }
    
    .contact-form-wrapper {
        padding: 28px;
    }
    
    .form-row {
        grid-template-columns: 1fr;
    }
    
    /* Footer mobile */
    .footer-inner {
        grid-template-columns: 1fr;
        gap: 36px;
        padding: 56px 0 36px;
    }
    
    .footer-bottom-inner {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-actions {
        flex-direction: column;
        width: 100%;
    }
    
    .hero-actions .btn {
        width: 100%;
        justify-content: center;
    }
    
    .hero-floating-card {
        display: none;
    }
    
    .about-stats {
        flex-direction: column;
        gap: 20px;
        text-align: center;
    }
    
    .stat-divider {
        width: 48px;
        height: 1px;
    }
    
    .gallery-grid {
        grid-template-columns: 1fr;
    }
    
    .gallery-item--large,
    .gallery-item--tall {
        grid-column: 1;
    }
    
    .gallery-item--large img,
    .gallery-item--tall img {
        height: 260px;
    }
}
