*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --cream: #FAF6F0;
    --warm-white: #FFFCF8;
    --terracotta: #C4623A;
    --terracotta-dark: #9B4828;
    --terracotta-light: #EAC4AF;
    --gold: #C9A84C;
    --gold-light: #F0DFA7;
    --deep: #2C1A0E;
    --mid: #6B3F22;
    --muted: #9E7B5A;
    --border: rgba(196, 98, 58, 0.15);
    --nav-h: 72px;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Jost', sans-serif;
    background: var(--cream);
    color: var(--deep);
    font-weight: 300;
    line-height: 1.75;
    overflow-x: hidden;
}

/* ── NAV ── */
nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    height: var(--nav-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 5vw;
    background: rgba(250, 246, 240, 0.92);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    transition: box-shadow 0.3s;
}

.nav-logo {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--terracotta);
    letter-spacing: 0.02em;
    text-decoration: none;
}

.nav-logo span {
    color: var(--gold);
}

.nav-links {
    display: flex;
    gap: 2.5rem;
    list-style: none;
}

.nav-links a {
    text-decoration: none;
    font-size: 0.8rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--mid);
    transition: color 0.2s;
    font-weight: 400;
}

.nav-links a:hover {
    color: var(--terracotta);
}

.nav-cta {
    padding: 0.5rem 1.4rem;
    background: var(--terracotta);
    color: white !important;
    border-radius: 2px;
    transition: background 0.2s !important;
}

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

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

.nav-toggle span {
    display: block;
    width: 24px;
    height: 1.5px;
    background: var(--deep);
    transition: 0.3s;
}

/* ── HERO ── */
#home {
    min-height: 100vh;
    padding-top: var(--nav-h);
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 0;
    overflow: hidden;
}

.hero-text {
    padding: 6rem 4rem 6rem 8vw;
    animation: fadeUp 1s ease both;
}

.hero-eyebrow {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1.5rem;
    font-weight: 400;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(3rem, 5vw, 5.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--deep);
    margin-bottom: 1.5rem;
}

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

.hero-sub {
    font-size: 1rem;
    color: var(--muted);
    max-width: 38ch;
    margin-bottom: 2.5rem;
    line-height: 1.8;
}

.btn-primary {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: background 0.2s, transform 0.2s;
    margin-right: 1rem;
}

.btn-primary:hover {
    background: var(--terracotta-dark);
    transform: translateY(-1px);
}

.btn-outline {
    display: inline-block;
    padding: 0.85rem 2.2rem;
    border: 1px solid var(--terracotta);
    color: var(--terracotta);
    text-decoration: none;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    transition: all 0.2s;
}

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

.hero-visual {
    height: 100vh;
    position: relative;
    background: var(--deep);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.hero-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.08;
}

.hero-image-placeholder {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.hero-mandala {
    width: 340px;
    height: 340px;
    animation: rotate 60s linear infinite;
}

.hero-badge {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    z-index: 4;
    background: var(--cream);
    border: 1px solid var(--gold);
    border-radius: 50%;
    width: 110px;
    height: 110px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    animation: fadeUp 1.4s ease both;
}

.hero-badge strong {
    font-family: 'Cormorant Garamond', serif;
    font-size: 2rem;
    color: var(--terracotta);
    line-height: 1;
    font-weight: 600;
}

.hero-badge span {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: var(--terracotta);
    text-transform: uppercase;
}

.hero-image {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    z-index: 1;
    display: block;
}

@media (max-width: 900px) {
    .hero-text .btn-primary {
        margin-right: 0;
        margin-bottom: 1rem;
    }
}

/* ── SECTIONS ── */
section {
    padding: 7rem 8vw;
}

.section-label {
    font-size: 0.72rem;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 1rem;
    font-weight: 400;
    display: flex;
    align-items: center;
    gap: 1rem;
}

.section-label::after {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    background: var(--gold);
}

.section-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--deep);
    margin-bottom: 1.5rem;
}

.section-title em {
    font-style: italic;
    color: var(--terracotta);
}

/* ── ABOUT ── */
#about {
    background: var(--warm-white);
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
    margin-top: 3rem;
}

.about-visual {
    position: relative;
}

.about-img-box {
    width: 100%;
    aspect-ratio: 4/5;
    background: linear-gradient(135deg, var(--terracotta-light), var(--gold-light));
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.about-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.about-img-box svg {
    width: 65%;
    opacity: 0.5;
}

.about-accent {
    position: absolute;
    bottom: -2rem;
    right: -2rem;
    width: 180px;
    height: 180px;
    background: var(--cream);
    border: 1px solid var(--border);
    border-radius: 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 1.5rem;
    text-align: center;
}

.about-accent-num {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3.5rem;
    color: var(--terracotta);
    line-height: 1;
    font-weight: 300;
}

.about-accent-label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    color: var(--muted);
    text-transform: uppercase;
    margin-top: 0.4rem;
}

.about-text p {
    color: var(--mid);
    margin-bottom: 1.2rem;
    font-size: 1rem;
}

.about-values {
    display: flex;
    gap: 2rem;
    margin-top: 2rem;
    flex-wrap: wrap;
}

.value-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    flex: 1;
    min-width: 180px;
}

.value-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--terracotta);
    flex-shrink: 0;
    margin-top: 0.55rem;
}

.value-item h4 {
    font-weight: 500;
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
    color: var(--deep);
}

.value-item p {
    font-size: 0.82rem;
    color: var(--muted);
}

/* ── SERVICES ── */
.services-intro {
    max-width: 55ch;
}

.services-intro p {
    color: var(--muted);
    font-size: 1rem;
    margin-top: 1rem;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5px;
    margin-top: 4rem;
    background: var(--border);
    border: 1px solid var(--border);
}

.service-card {
    background: var(--warm-white);
    padding: 3rem 2.5rem;
    transition: background 0.3s;
    cursor: default;
}

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

.service-icon {
    width: 48px;
    height: 48px;
    border: 1px solid var(--terracotta-light);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.8rem;
}

.service-icon svg {
    width: 24px;
    height: 24px;
    stroke: var(--terracotta);
    fill: none;
    stroke-width: 1.5;
}

.service-card h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--deep);
    margin-bottom: 0.8rem;
}

.service-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.8;
}

.service-price {
    margin-top: 1.8rem;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    color: var(--terracotta);
    font-weight: 500;
    text-transform: uppercase;
}

/* ── PORTFOLIO ── */
#portfolio {
    background: var(--deep);
    padding: 7rem 8vw;
}

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

#portfolio .section-label::after {
    background: var(--gold);
}

#portfolio .section-title {
    color: var(--cream);
}

.portfolio-filter {
    display: flex;
    gap: 0.5rem;
    flex-wrap: wrap;
    margin: 2.5rem 0;
}

.filter-btn {
    padding: 0.4rem 1.2rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
    background: transparent;
    color: rgba(255, 255, 255, 0.5);
    font-family: 'Jost', sans-serif;
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    cursor: pointer;
    border-radius: 2px;
    transition: all 0.2s;
}

.filter-btn:hover,
.filter-btn.active {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(201, 168, 76, 0.1);
}

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

.portfolio-item {
    position: relative;
    overflow: hidden;
    border-radius: 2px;
    cursor: pointer;
}

.portfolio-item.wide {
    grid-column: span 2;
}

.portfolio-item.tall {
    grid-row: span 2;
}

.portfolio-thumb {
    width: 100%;
    aspect-ratio: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0;
    transition: transform 0.5s ease;
    overflow: hidden;
}

.portfolio-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.portfolio-item.wide .portfolio-thumb {
    aspect-ratio: 2/1;
}

.portfolio-item.tall .portfolio-thumb {
    aspect-ratio: 1/2;
}

.portfolio-item:hover .portfolio-thumb {
    transform: scale(1.04);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(44, 26, 14, 0.85) 0%, transparent 60%);
    opacity: 0;
    /* allow clicks to pass through when overlay hidden */
    pointer-events: none;
    transition: opacity 0.3s;
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
}

.portfolio-item:hover .portfolio-overlay {
    opacity: 1;
    /* enable pointer events when overlay is visible so overlay elements are interactive */
    pointer-events: auto;
    z-index: 2;
}

/* Style overlay label as a button (reset defaults and add small interaction animation) */
.portfolio-overlay .portfolio-label {
    -webkit-appearance: none;
    appearance: none;
    border: 0;
    background: rgba(0, 0, 0, 0.35);
    color: #fff;
    padding: 0.5rem 0.9rem;
    border-radius: 999px;
    font-weight: 500;
    cursor: pointer;
    transition: transform 140ms ease, box-shadow 140ms ease, background-color 140ms ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.12);
}

.portfolio-overlay .portfolio-label:active {
    transform: scale(0.98);
}

.portfolio-overlay .portfolio-label:focus {
    outline: 2px solid rgba(255, 255, 255, 0.18);
    outline-offset: 3px;
}

/* Small visual feedback when opening from the overlay */
.lightbox-content .lightbox-img {
    transition: transform 220ms ease;
}

/* Social links in contact section */
.contact-social .social-links {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    margin-top: 0.35rem;
}

.contact-social .social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--terracotta);
    color: white;
    text-decoration: none;
    transition: transform 140ms ease, background-color 140ms ease, box-shadow 140ms ease;
    box-shadow: 0 1px 4px rgba(11, 11, 11, 0.06);
}

.contact-social .social-link:hover {
    transform: translateY(-3px);
    background: rgba(44, 26, 14, 0.45);
}

.contact-social .social-link:focus {
    outline: 2px solid rgba(0, 0, 0, 0.08);
    outline-offset: 3px;
}

/* Make the contact block responsive: stack on small screens */
@media (max-width: 640px) {
    .contact-social .contact-detail-text {
        display: flex;
        flex-direction: column;
        gap: 0.35rem;
    }

    .contact-social .social-links {
        gap: 0.45rem;
    }

    .contact-social .social-link {
        width: 36px;
        height: 36px;
    }
}

.portfolio-label {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.1rem;
    color: var(--cream);
    font-style: italic;
    font-weight: 300;
}

/* Floating CTA placed in normal flow after the portfolio grid */
.floating-cta-wrap {
    display: flex;
    justify-content: center; /* center horizontally */
    margin-top: 2.25rem; /* spacing below the grid */
}

.floating-cta {
    display: inline-block;
    background: var(--terracotta, #c86b39);
    color: #fff;
    text-decoration: none;
    padding: 0.85rem 1.25rem;
    font-weight: 500;
    box-shadow: 0 6px 18px rgba(36, 24, 14, 0.18);
    transition: transform 150ms ease, box-shadow 150ms ease, opacity 150ms ease;
    border: 0;
}

.floating-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 24px rgba(36, 24, 14, 0.22);
}

.floating-cta:active {
    transform: translateY(0);
}

.floating-cta:focus {
    outline: 3px solid rgba(255,255,255,0.12);
    outline-offset: 4px;
}

@media (max-width: 640px) {
    .floating-cta {
        padding: 0.65rem 1rem;
        font-size: 0.95rem;
    }
    .floating-cta-wrap {
        margin-top: 1.25rem;
    }
}

/* ── LIGHTBOX ── */
.lightbox {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(44, 26, 14, 0.95);
    z-index: 1000;
    align-items: center;
    justify-content: center;
    animation: fadeIn 0.3s ease;
}

.lightbox.active {
    display: flex;
}

.lightbox-content {
    position: relative;
    width: 90%;
    height: 90vh;
    max-width: 90vw;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: zoomIn 0.3s ease;
}

.lightbox-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.lightbox-close {
    position: absolute;
    top: -40px;
    right: 0;
    background: none;
    border: none;
    color: var(--cream);
    font-size: 2.5rem;
    cursor: pointer;
    padding: 0;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: color 0.2s;
}

.lightbox-close:hover {
    color: var(--gold);
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(201, 168, 76, 0.2);
    border: 1px solid var(--gold);
    color: var(--cream);
    font-size: 1.5rem;
    padding: 1rem;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    z-index: 1001;
}

.lightbox-prev {
    left: 1rem;
}

.lightbox-next {
    right: 1rem;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(201, 168, 76, 0.4);
    border-color: var(--gold);
}

.lightbox-prev:disabled,
.lightbox-next:disabled {
    opacity: 0.3;
    cursor: not-allowed;
}

.portfolio-img {
    cursor: pointer;
    transition: opacity 0.2s;
}

.portfolio-img:hover {
    opacity: 0.8;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }

    to {
        opacity: 1;
    }
}

@keyframes zoomIn {
    from {
        transform: scale(0.8);
        opacity: 0;
    }

    to {
        transform: scale(1);
        opacity: 1;
    }
}

/* Portfolio card colors (placeholders) */
.pc1 {
    background: linear-gradient(135deg, #8B4513 0%, #D2691E 50%, #C4623A 100%);
}

.pc2 {
    background: linear-gradient(135deg, #C4623A 0%, #9B4828 100%);
}

.pc3 {
    background: linear-gradient(135deg, #6B3F22 0%, #C9A84C 100%);
}

.pc4 {
    background: linear-gradient(135deg, #3D1F0A 0%, #8B4513 100%);
}

.pc5 {
    background: linear-gradient(135deg, #C9A84C 0%, #C4623A 100%);
}

.pc6 {
    background: linear-gradient(135deg, #9B4828 0%, #2C1A0E 100%);
}

.pc7 {
    background: linear-gradient(135deg, #D2691E 0%, #C9A84C 100%);
}

.portfolio-thumb svg {
    width: 40%;
    opacity: 0.25;
}

/* ── TESTIMONIALS ── */
.testimonials-wrap {
    max-width: 900px;
    margin: 0 auto;
}

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

.testimonials-title .section-label {
    justify-content: center;
}

.testimonials-title .section-label::after {
    display: none;
}

.testimonials-title .section-label::before {
    content: '';
    display: block;
    height: 1px;
    width: 40px;
    background: var(--gold);
}

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

.testimonial-card {
    background: var(--warm-white);
    border: 1px solid var(--border);
    border-radius: 4px;
    padding: 2rem;
    position: relative;
}

.testimonial-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 3rem;
    color: var(--terracotta-light);
    line-height: 1;
    margin-bottom: 0.5rem;
    font-weight: 300;
}

.testimonial-text {
    font-size: 0.9rem;
    color: var(--mid);
    line-height: 1.8;
    font-style: italic;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.05rem;
}

.testimonial-author {
    margin-top: 1.5rem;
    padding-top: 1rem;
    border-top: 1px solid var(--border);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.author-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 500;
    color: white;
    flex-shrink: 0;
}

.author-name {
    font-size: 0.82rem;
    font-weight: 500;
    color: var(--deep);
}

.author-event {
    font-size: 0.72rem;
    color: var(--muted);
}

.stars {
    color: var(--gold);
    font-size: 0.7rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

/* ── CONTACT ── */
#contact {
    background: var(--warm-white);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 6rem;
    margin-top: 3rem;
    align-items: start;
}

.contact-info h3 {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.8rem;
    font-weight: 300;
    color: var(--deep);
    margin-bottom: 1rem;
}

.contact-info p {
    color: var(--muted);
    font-size: 0.92rem;
    line-height: 1.9;
    margin-bottom: 2rem;
}

.contact-detail {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1.4rem;
}

.contact-detail-icon {
    width: 40px;
    height: 40px;
    flex-shrink: 0;
    border: 1px solid var(--border);
    border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.contact-detail-icon svg {
    width: 18px;
    height: 18px;
    stroke: var(--terracotta);
    fill: none;
    stroke-width: 1.5;
}

.contact-detail-text .label {
    font-size: 0.7rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.2rem;
}

.contact-detail-text .value {
    font-size: 0.9rem;
    color: var(--deep);
    font-weight: 400;
}

.contact-form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

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

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.form-group label {
    font-size: 0.72rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 400;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 0.85rem 1rem;
    border: 1px solid var(--border);
    border-radius: 2px;
    background: var(--cream);
    font-family: 'Jost', sans-serif;
    font-size: 0.9rem;
    color: var(--deep);
    font-weight: 300;
    transition: border-color 0.2s;
    outline: none;
    -webkit-appearance: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--terracotta);
}

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

.form-submit {
    padding: 0.9rem 2.5rem;
    background: var(--terracotta);
    color: white;
    border: none;
    font-family: 'Jost', sans-serif;
    font-size: 0.78rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    font-weight: 500;
    border-radius: 2px;
    cursor: pointer;
    transition: background 0.2s;
    align-self: flex-start;
}

.form-submit:hover {
    background: var(--terracotta-dark);
}

.form-success {
    display: none;
    background: rgba(196, 98, 58, 0.08);
    border: 1px solid var(--terracotta-light);
    border-radius: 2px;
    padding: 1rem 1.5rem;
    color: var(--terracotta-dark);
    font-size: 0.88rem;
}

/* ── FOOTER ── */
footer {
    background: var(--deep);
    padding: 4rem 8vw 2rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-brand .nav-logo {
    font-size: 1.8rem;
    color: var(--cream);
}

.footer-brand .nav-logo span {
    color: var(--gold);
}

.footer-brand p {
    font-size: 0.82rem;
    margin-top: 0.8rem;
    max-width: 28ch;
    line-height: 1.7;
}

.footer-links h4 {
    font-size: 0.72rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.2rem;
    font-weight: 400;
}

.footer-links ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.4);
    text-decoration: none;
    font-size: 0.88rem;
    transition: color 0.2s;
}

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

.footer-bottom {
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* ── ANIMATIONS ── */
@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes rotate {
    to {
        transform: rotate(360deg);
    }
}

.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

.reveal.visible {
    opacity: 1;
    transform: none;
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    #home {
        grid-template-columns: 1fr;
    }

    .hero-visual {
        height: 50vh;
    }

    .hero-text {
        padding: 3rem 6vw;
        text-align: center;
    }

    .hero-sub {
        max-width: 100%;
    }

    .about-grid,
    .contact-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-accent {
        bottom: -1rem;
        right: -1rem;
        width: 130px;
        height: 130px;
    }

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

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

    .portfolio-item.wide,
    .portfolio-item.tall {
        grid-column: auto;
        grid-row: auto;
    }

    .portfolio-thumb,
    .portfolio-item.wide .portfolio-thumb,
    .portfolio-item.tall .portfolio-thumb {
        aspect-ratio: 1;
    }

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

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

    .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: var(--nav-h);
        left: 0;
        right: 0;
        background: var(--cream);
        border-bottom: 1px solid var(--border);
        padding: 2rem 6vw;
        gap: 1.5rem;
    }

    .nav-links.open {
        display: flex;
    }

    .nav-toggle {
        display: flex;
    }

    .footer-top {
        flex-direction: column;
    }
}