/* ============================================
   MODERN HEARTH — DESIGN SYSTEM
   ============================================ */

:root {
    --alabaster: #F8F6F2;
    --warm-taupe: #A99E93;
    --pale-taupe: #D6CCC2;
    --warm-stone: #C4B5A4;
    --rich-walnut: #5C4E3D;
    --sculpted-clay: #9C7C5B;

    --font-primary: 'Inter', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    --font-serif: 'Cormorant Garamond', 'Georgia', serif;

    --nav-height: 80px;
    --transition: 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}

/* Reset & Base */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-primary);
    background: var(--alabaster);
    color: var(--warm-taupe);
    font-size: 16px;
    line-height: 1.6;
    letter-spacing: 0.01em;
    overflow-x: hidden;
}
img { display: block; width: 100%; height: 100%; object-fit: cover; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { border: none; background: none; cursor: pointer; font-family: inherit; }

/* Typography */
h1 {
    font-family: var(--font-primary);
    font-weight: 800;
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    text-transform: uppercase;
    color: var(--rich-walnut);
    line-height: 1.05;
    letter-spacing: -0.01em;
}
h2 {
    font-family: var(--font-primary);
    font-weight: 700;
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--rich-walnut);
    line-height: 1.15;
}
h3 {
    font-family: var(--font-primary);
    font-weight: 500;
    font-size: clamp(1.25rem, 2.5vw, 2rem);
    color: var(--rich-walnut);
    line-height: 1.2;
}
.body-large { font-size: 1.25rem; font-weight: 300; color: var(--warm-taupe); }
.meta {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-stone);
}
.editorial {
    font-family: var(--font-serif);
    font-style: italic;
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    color: var(--rich-walnut);
    line-height: 1.4;
}
.editorial-accent {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--sculpted-clay);
    line-height: 1.5;
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background: rgba(248, 246, 242, 0.96);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--pale-taupe);
    transition: var(--transition);
}
.nav.scrolled {
    box-shadow: 0 4px 40px rgba(92, 78, 61, 0.08);
}
.nav__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
}
.nav__logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}
/* Keep fallback text styles in case */
.nav__logo-main {
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--rich-walnut);
    letter-spacing: 0.03em;
    text-transform: uppercase;
}
.nav__logo-sub {
    font-size: 0.65rem;
    color: var(--warm-stone);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-weight: 400;
}
.nav__links {
    display: flex;
    align-items: center;
    gap: 2.5rem;
}
.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-taupe);
    transition: color 0.3s ease;
    position: relative;
}
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px; left: 0; right: 0;
    height: 1px;
    background: var(--sculpted-clay);
    transform: scaleX(0);
    transition: transform 0.3s ease;
    transform-origin: left;
}
.nav__link:hover, .nav__link.active {
    color: var(--sculpted-clay);
}
.nav__link:hover::after, .nav__link.active::after {
    transform: scaleX(1);
}
.nav__cta {
    padding: 0.6rem 1.5rem;
    background: var(--rich-walnut);
    color: var(--alabaster) !important;
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-radius: 1px;
    transition: background 0.3s ease;
}
.nav__cta:hover { background: var(--sculpted-clay); }
.nav__hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}
.nav__hamburger span {
    display: block;
    width: 24px; height: 1.5px;
    background: var(--rich-walnut);
    transition: var(--transition);
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-family: var(--font-primary);
    font-size: 0.8rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    border-radius: 1px;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary {
    background: var(--rich-walnut);
    color: var(--alabaster);
}
.btn-primary:hover {
    background: var(--sculpted-clay);
    transform: translateY(-1px);
}
.btn-secondary {
    background: transparent;
    color: var(--rich-walnut);
    border: 1px solid var(--rich-walnut);
}
.btn-secondary:hover {
    background: var(--rich-walnut);
    color: var(--alabaster);
}
.btn-wa {
    background: #25D366;
    color: white;
}
.btn-wa:hover {
    background: #128C7E;
    transform: translateY(-1px);
}
.btn-outline-light {
    background: transparent;
    color: var(--alabaster);
    border: 1px solid rgba(248,246,242,0.5);
}
.btn-outline-light:hover {
    background: rgba(248,246,242,0.15);
}

/* ============================================
   FLOATING WHATSAPP
   ============================================ */
.whatsapp-float {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 999;
    width: 58px; height: 58px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: all 0.3s ease;
    overflow: hidden;
}
.whatsapp-float span {
    display: none;
    font-size: 0.8rem;
    font-weight: 600;
    color: white;
    white-space: nowrap;
    margin-left: 0.5rem;
}
.whatsapp-float:hover {
    width: auto;
    padding: 0 1.25rem 0 1rem;
    border-radius: 30px;
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.5);
}
.whatsapp-float:hover span { display: block; }

/* ============================================
   PAGE UTILITIES
   ============================================ */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.section {
    padding: 6rem 0;
}
.section--sm { padding: 4rem 0; }
.section--lg { padding: 8rem 0; }
.section-header {
    margin-bottom: 4rem;
}
.section-header .meta {
    display: block;
    margin-bottom: 1rem;
}
.divider {
    width: 40px; height: 1px;
    background: var(--sculpted-clay);
    margin: 1.5rem 0;
}

/* Animations */
.fade-in {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s ease, transform 0.7s 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; }

/* ============================================
   HOME — HERO
   ============================================ */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: flex-end;
    overflow: hidden;
}
.hero__bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}
.hero__bg img {
    width: 100%; height: 100%;
    object-fit: cover;
    transform: scale(1.05);
    animation: heroZoom 10s ease-out forwards;
}
@keyframes heroZoom {
    to { transform: scale(1); }
}
.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to top,
        rgba(92,78,61,0.7) 0%,
        rgba(92,78,61,0.2) 50%,
        transparent 100%
    );
    z-index: 1;
}
.hero__content {
    position: relative;
    z-index: 2;
    padding: 4rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.hero__eyebrow {
    display: block;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pale-taupe);
    margin-bottom: 1.5rem;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.3s forwards;
}
.hero__title {
    color: white;
    max-width: 800px;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.5s forwards;
}
.hero__subtitle {
    font-size: 1.1rem;
    color: rgba(248,246,242,0.8);
    max-width: 480px;
    margin: 1.5rem 0 2.5rem;
    line-height: 1.7;
    font-weight: 300;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.7s forwards;
}
.hero__actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.8s ease 0.9s forwards;
}
.hero__scroll {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: rgba(248,246,242,0.6);
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}
.hero__scroll-line {
    width: 1px;
    height: 60px;
    background: rgba(248,246,242,0.4);
    animation: scrollLine 2s ease infinite;
}
@keyframes scrollLine {
    0%, 100% { transform: scaleY(0); transform-origin: top; }
    50% { transform: scaleY(1); transform-origin: top; }
    51% { transform: scaleY(1); transform-origin: bottom; }
    100% { transform: scaleY(0); transform-origin: bottom; }
}
@keyframes fadeUp {
    from { opacity: 0; transform: translateY(25px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   HOME — INTRO BAND
   ============================================ */
.intro-band {
    background: var(--rich-walnut);
    padding: 2.5rem 0;
    overflow: hidden;
}
.intro-band__track {
    display: flex;
    gap: 4rem;
    white-space: nowrap;
    animation: marquee 20s linear infinite;
}
.intro-band__item {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    color: var(--pale-taupe);
    display: flex;
    align-items: center;
    gap: 1rem;
}
.intro-band__item::after {
    content: '·';
    color: var(--sculpted-clay);
    font-size: 1.5rem;
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ============================================
   HOME — BRAND STORY
   ============================================ */
.brand-story {
    background: var(--alabaster);
}
.brand-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: center;
}
.brand-story__image {
    height: 600px;
    overflow: hidden;
    position: relative;
}
.brand-story__image img {
    transition: transform 0.8s ease;
}
.brand-story__image:hover img { transform: scale(1.03); }
.brand-story__label {
    position: absolute;
    bottom: 1.5rem;
    left: 1.5rem;
    background: var(--alabaster);
    padding: 0.75rem 1.25rem;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--rich-walnut);
    font-weight: 600;
}
.brand-story__text p {
    margin-bottom: 1.25rem;
    font-size: 1.05rem;
    color: var(--warm-taupe);
}
.brand-story__stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid var(--pale-taupe);
}
.stat__number {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--rich-walnut);
    line-height: 1;
    margin-bottom: 0.25rem;
}
.stat__label {
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--warm-stone);
}

/* ============================================
   HOME — FEATURED PROJECTS
   ============================================ */
.featured-projects {
    background: var(--pale-taupe);
}
.featured-projects__header {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    margin-bottom: 4rem;
}
.projects-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
}
.projects-grid--alt {
    grid-template-columns: 2fr 1fr 1fr;
}
.project-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
}
.project-card__img {
    aspect-ratio: 3/4;
    overflow: hidden;
}
.project-card--wide .project-card__img {
    aspect-ratio: 4/5;
}
.project-card__img img {
    transition: transform 0.7s ease;
}
.project-card:hover .project-card__img img {
    transform: scale(1.06);
}
.project-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(92,78,61,0.85) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.4s ease;
    display: flex;
    align-items: flex-end;
    padding: 2rem;
}
.project-card:hover .project-card__overlay { opacity: 1; }
.project-card__info { color: white; }
.project-card__info .meta { color: rgba(248,246,242,0.7); margin-bottom: 0.5rem; }
.project-card__info h3 { font-size: 1.25rem; color: white; font-weight: 600; }
.project-card__bottom {
    padding: 1.25rem;
    background: white;
}
.project-card__bottom .meta { margin-bottom: 0.25rem; }
.project-card__bottom h3 { font-size: 1rem; color: var(--rich-walnut); }

/* ============================================
   HOME — PHILOSOPHY QUOTE
   ============================================ */
.philosophy-section {
    background: var(--rich-walnut);
    padding: 7rem 0;
    text-align: center;
}
.philosophy-section .editorial {
    color: var(--pale-taupe);
    max-width: 800px;
    margin: 0 auto 2rem;
}
.philosophy-section .meta {
    color: var(--warm-stone);
}
.philosophy-section::before {
    content: '"';
    display: block;
    font-family: var(--font-serif);
    font-size: 8rem;
    color: rgba(248,246,242,0.1);
    line-height: 0.5;
    margin-bottom: 2rem;
}

/* ============================================
   HOME — CTA SECTION
   ============================================ */
.cta-section {
    background: var(--alabaster);
    text-align: center;
    padding: 6rem 0;
}
.cta-section h2 { margin-bottom: 1rem; }
.cta-section p { max-width: 500px; margin: 0 auto 2.5rem; }
.cta-section__actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* ============================================
   PORTFOLIO PAGE
   ============================================ */
.page-hero {
    padding-top: calc(var(--nav-height) + 4rem);
    padding-bottom: 3rem;
    background: var(--alabaster);
}
.page-hero__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}
.portfolio-filter {
    display: flex;
    gap: 0.5rem;
    margin-top: 2.5rem;
    flex-wrap: wrap;
}
.filter-btn {
    padding: 0.6rem 1.5rem;
    font-size: 0.8rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--warm-taupe);
    border: 1px solid var(--pale-taupe);
    border-radius: 30px;
    transition: all 0.3s ease;
    background: transparent;
}
.filter-btn:hover, .filter-btn.active {
    background: var(--rich-walnut);
    color: var(--alabaster);
    border-color: var(--rich-walnut);
}
.portfolio-grid {
    background: var(--pale-taupe);
    padding: 4rem 0;
}
.portfolio-grid__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.portfolio-item {
    background: var(--alabaster);
    overflow: hidden;
}
.portfolio-item__images {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 2px;
    height: 400px;
}
.portfolio-item__images.single { grid-template-columns: 1fr; }
.portfolio-item__images.triple {
    grid-template-columns: 2fr 1fr;
}
.portfolio-item__img-wrap { overflow: hidden; }
.portfolio-item__img-wrap img {
    width: 100%; height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}
.portfolio-item:hover .portfolio-item__img-wrap img { transform: scale(1.04); }
.portfolio-item__content {
    padding: 2rem;
}
.portfolio-item__content .meta { margin-bottom: 0.75rem; }
.portfolio-item__content h3 { margin-bottom: 0.75rem; }
.portfolio-item__content p { font-size: 0.95rem; line-height: 1.7; }

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}
.service-card {
    background: white;
    padding: 2.5rem;
    border: 1px solid var(--pale-taupe);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}
.service-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 3px; height: 0;
    background: var(--sculpted-clay);
    transition: height 0.4s ease;
}
.service-card:hover::before { height: 100%; }
.service-card:hover {
    box-shadow: 0 8px 40px rgba(92,78,61,0.1);
    transform: translateY(-4px);
}
.service-card__icon {
    width: 48px; height: 48px;
    margin-bottom: 1.5rem;
    color: var(--sculpted-clay);
}
.service-card__number {
    font-family: var(--font-serif);
    font-size: 3rem;
    color: var(--pale-taupe);
    font-weight: 300;
    line-height: 1;
    margin-bottom: 1rem;
}
.service-card h3 { font-size: 1.1rem; margin-bottom: 1rem; }
.service-card p { font-size: 0.95rem; color: var(--warm-taupe); line-height: 1.7; }

/* Process section */
.process-section {
    background: var(--rich-walnut);
    padding: 6rem 0;
}
.process-steps {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 3rem;
    margin-top: 3rem;
}
.process-step {
    text-align: center;
    color: var(--pale-taupe);
}
.process-step__num {
    font-family: var(--font-serif);
    font-size: 4rem;
    font-weight: 300;
    color: rgba(248,246,242,0.2);
    line-height: 1;
    margin-bottom: 1rem;
}
.process-step__title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--pale-taupe);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}
.process-step p {
    font-size: 0.9rem;
    color: rgba(248,246,242,0.6);
    line-height: 1.7;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-hero {
    padding-top: var(--nav-height);
    background: var(--rich-walnut);
    min-height: 65vh;
    display: flex;
    align-items: flex-end;
    position: relative;
    overflow: hidden;
}
.about-hero__bg {
    position: absolute;
    inset: 0;
    opacity: 0.2;
}
.about-hero__content {
    position: relative;
    z-index: 1;
    padding: 5rem 2rem;
    max-width: 1400px;
    margin: 0 auto;
    width: 100%;
}
.about-hero__content h1 { color: var(--pale-taupe); }
.about-hero__content .editorial { color: rgba(214,204,194,0.9); max-width: 640px; margin-top: 1.5rem; }
.about-story {
    background: var(--alabaster);
}
.about-story__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6rem;
    align-items: start;
}
.about-story__images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto auto;
    gap: 1.5rem;
}
.about-story__img {
    overflow: hidden;
}
.about-story__img:first-child {
    grid-column: 1 / -1;
    height: 350px;
}
.about-story__img:not(:first-child) {
    height: 220px;
}
.about-story__img img {
    transition: transform 0.7s ease;
}
.about-story__img:hover img { transform: scale(1.04); }
.about-text h2 { margin-bottom: 1.5rem; }
.about-text p { margin-bottom: 1.25rem; font-size: 1rem; }

.philosophy-block {
    background: var(--pale-taupe);
    padding: 5rem 0;
}
.philosophy-block__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    padding: 0 2rem;
}
.pull-quote {
    font-family: var(--font-serif);
    font-size: clamp(1.5rem, 3vw, 2.25rem);
    font-style: italic;
    color: var(--rich-walnut);
    line-height: 1.5;
    margin: 2rem 0;
    padding: 2rem;
    border-left: 3px solid var(--sculpted-clay);
    text-align: left;
    background: rgba(248,246,242,0.6);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 4rem;
}
.value-card {
    text-align: center;
    padding: 2rem;
    background: white;
    border-top: 2px solid var(--sculpted-clay);
}
.value-card h3 { font-size: 1.1rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.9rem; }

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-layout {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 0;
    min-height: 80vh;
}
.contact-info {
    background: var(--rich-walnut);
    padding: 5rem 3rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.contact-info h2 { color: var(--pale-taupe); }
.contact-info p { color: rgba(214,204,194,0.8); }
.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}
.contact-detail__label {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-stone);
}
.contact-detail__value {
    font-size: 1.1rem;
    color: var(--pale-taupe);
    font-weight: 500;
}
.contact-detail__value a {
    color: var(--pale-taupe);
    transition: color 0.3s;
}
.contact-detail__value a:hover { color: white; }
.contact-form-wrap {
    background: var(--alabaster);
    padding: 5rem 4rem;
}
.contact-form-wrap h2 { margin-bottom: 0.75rem; }
.contact-form-wrap p { margin-bottom: 2.5rem; }
.form-group {
    margin-bottom: 1.5rem;
}
.form-group label {
    display: block;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--warm-stone);
    margin-bottom: 0.5rem;
    font-weight: 500;
}
.form-control {
    width: 100%;
    padding: 0.875rem 1rem;
    background: white;
    border: 1px solid var(--pale-taupe);
    font-family: var(--font-primary);
    font-size: 1rem;
    color: var(--rich-walnut);
    border-radius: 1px;
    transition: border-color 0.3s ease;
    outline: none;
}
.form-control:focus {
    border-color: var(--sculpted-clay);
    box-shadow: 0 0 0 3px rgba(156, 124, 91, 0.1);
}
textarea.form-control {
    resize: vertical;
    min-height: 140px;
}
.form-success {
    display: none;
    background: #d4edda;
    border: 1px solid #c3e6cb;
    color: #155724;
    padding: 1rem 1.5rem;
    border-radius: 2px;
    margin-top: 1rem;
    font-size: 0.95rem;
}
.map-placeholder {
    height: 350px;
    background: var(--pale-taupe);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}
.map-placeholder img {
    opacity: 0.6;
}
.map-label {
    position: absolute;
    background: var(--rich-walnut);
    color: var(--pale-taupe);
    padding: 0.75rem 1.5rem;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: var(--rich-walnut);
    color: var(--pale-taupe);
    padding: 5rem 0 0;
}
.footer__inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 4rem;
    padding-bottom: 4rem;
    border-bottom: 1px solid rgba(214,204,194,0.2);
}
.footer__logo {
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 1rem;
}
.footer__logo-wrap {
    margin-bottom: 1.25rem;
}
.footer__logo-img {
    height: 72px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
    display: block;
}
.footer__tagline {
    font-size: 0.95rem;
    color: rgba(214,204,194,0.6);
    line-height: 1.7;
    margin-bottom: 2rem;
}
.footer__social {
    display: flex;
    gap: 1rem;
}
.footer__social-link {
    width: 38px; height: 38px;
    border: 1px solid rgba(214,204,194,0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--pale-taupe);
    border-radius: 1px;
    transition: all 0.3s ease;
}
.footer__social-link:hover {
    background: rgba(214,204,194,0.1);
    border-color: var(--pale-taupe);
}
.footer__heading {
    font-size: 0.7rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--warm-stone);
    margin-bottom: 1.5rem;
    font-weight: 600;
}
.footer__nav ul, .footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer__nav li a {
    font-size: 0.95rem;
    color: rgba(214,204,194,0.8);
    transition: color 0.3s;
}
.footer__nav li a:hover { color: white; }
.footer__contact-item {
    font-size: 0.95rem;
    color: rgba(214,204,194,0.8);
    transition: color 0.3s;
}
.footer__contact-item:hover { color: white; }
.footer__location {
    font-size: 0.8rem;
    color: var(--warm-stone);
    margin-top: 0.5rem;
}
.footer__bottom {
    max-width: 1400px;
    margin: 0 auto;
    padding: 1.5rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.footer__bottom p {
    font-size: 0.8rem;
    color: rgba(214,204,194,0.4);
}
.footer__admin-link {
    font-size: 0.75rem;
    color: rgba(214,204,194,0.3);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.footer__admin-link:hover { color: rgba(214,204,194,0.6); }

/* ============================================
   ADMIN
   ============================================ */
.admin-body {
    font-family: var(--font-primary);
    background: #f5f5f5;
    min-height: 100vh;
}
.admin-nav {
    background: var(--rich-walnut);
    padding: 1rem 2rem;
    display: flex;
    align-items: center;
    gap: 2rem;
}
.admin-nav h1 {
    font-size: 1rem;
    color: var(--pale-taupe);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.admin-nav a {
    font-size: 0.85rem;
    color: rgba(214,204,194,0.7);
    text-decoration: none;
    transition: color 0.2s;
}
.admin-nav a:hover { color: white; }
.admin-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
}
.admin-card {
    background: white;
    border-radius: 4px;
    padding: 2rem;
    margin-bottom: 2rem;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.admin-card h2 {
    font-size: 1rem;
    color: var(--rich-walnut);
    font-weight: 600;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid #eee;
}
.admin-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-bottom: 2rem;
}
.admin-stat {
    background: white;
    padding: 1.5rem;
    border-radius: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid var(--sculpted-clay);
}
.admin-stat__num {
    font-size: 2rem;
    font-weight: 700;
    color: var(--rich-walnut);
}
.admin-stat__label {
    font-size: 0.8rem;
    color: var(--warm-taupe);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}
.admin-table { width: 100%; border-collapse: collapse; }
.admin-table th, .admin-table td {
    padding: 0.75rem 1rem;
    text-align: left;
    font-size: 0.875rem;
    border-bottom: 1px solid #eee;
}
.admin-table th {
    font-weight: 600;
    color: var(--warm-stone);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    font-size: 0.75rem;
}
.admin-table td { color: var(--rich-walnut); }
.badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 20px;
    font-size: 0.75rem;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.badge-residential { background: #e8f4f8; color: #2a6496; }
.badge-commercial { background: #fef9e7; color: #9c7c5b; }
.btn-danger {
    padding: 0.3rem 0.75rem;
    font-size: 0.75rem;
    background: #dc3545;
    color: white;
    border: none;
    border-radius: 2px;
    cursor: pointer;
}
.btn-danger:hover { background: #c82333; }
.btn-admin {
    padding: 0.6rem 1.25rem;
    background: var(--rich-walnut);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border: none;
    border-radius: 2px;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background 0.2s;
}
.btn-admin:hover { background: var(--sculpted-clay); }
.flash-message {
    padding: 0.75rem 1rem;
    margin-bottom: 1rem;
    border-radius: 2px;
    font-size: 0.9rem;
}
.flash-success { background: #d4edda; color: #155724; border: 1px solid #c3e6cb; }
.admin-form .form-group { margin-bottom: 1.25rem; }
.admin-form label {
    display: block;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--warm-taupe);
    margin-bottom: 0.4rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}
.admin-form input, .admin-form select, .admin-form textarea {
    width: 100%;
    padding: 0.6rem 0.875rem;
    border: 1px solid #ddd;
    border-radius: 2px;
    font-family: inherit;
    font-size: 0.9rem;
    outline: none;
    transition: border-color 0.2s;
}
.admin-form input:focus, .admin-form select:focus, .admin-form textarea:focus {
    border-color: var(--sculpted-clay);
}
.admin-form textarea { min-height: 100px; resize: vertical; }
.admin-checkbox { display: flex; align-items: center; gap: 0.5rem; }
.admin-checkbox input { width: auto; }

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .projects-grid, .projects-grid--alt {
        grid-template-columns: repeat(2, 1fr);
    }
    .services-grid { grid-template-columns: repeat(2, 1fr); }
    .process-steps { grid-template-columns: repeat(2, 1fr); }
    .values-grid { grid-template-columns: repeat(2, 1fr); }
    .brand-story__grid, .about-story__grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    .brand-story__image { height: 450px; }
    .portfolio-grid__inner { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: var(--nav-height);
        left: 0; right: 0;
        background: var(--alabaster);
        flex-direction: column;
        padding: 2rem;
        gap: 1.5rem;
        border-bottom: 1px solid var(--pale-taupe);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }
    .nav__links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav__hamburger { display: flex; }
    .nav__cta { display: block; text-align: center; }
    h1 { font-size: 2.5rem; }
    .hero { height: 100svh; }
    .hero__actions { gap: 0.75rem; }
    .hero__actions .btn { padding: 0.75rem 1.25rem; font-size: 0.75rem; }
    .featured-projects__header { flex-direction: column; align-items: flex-start; gap: 1.5rem; }
    .projects-grid, .projects-grid--alt { grid-template-columns: 1fr; }
    .services-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; gap: 2rem; }
    .values-grid { grid-template-columns: 1fr 1fr; }
    .brand-story__stats { grid-template-columns: 1fr; }
    .footer__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .footer__bottom { flex-direction: column; gap: 0.5rem; }
    .section { padding: 4rem 0; }
    .contact-form-wrap { padding: 3rem 1.5rem; }
    .admin-stats { grid-template-columns: 1fr; }
    .portfolio-item__images { height: 280px; }
    .about-story__img:first-child { height: 250px; }
    .about-story__img:not(:first-child) { height: 160px; }
}

@media (max-width: 480px) {
    .values-grid { grid-template-columns: 1fr; }
    .hero__scroll { display: none; }
}
