/* ====================================================
   ARCA LEGAL — Premium Legal Website
   Design: Exact replica of arca-legal-suite.lovable.app
   Fonts loaded via HTML <link> tag (no @import needed)
   ==================================================== */

/* ======== CSS Variables (exact HSL from Lovable bundle) ======== */
:root {
    --navy: hsl(218, 50%, 10%);
    --navy-light: hsl(216, 46%, 14%);
    --navy-dark: hsl(220, 60%, 6%);
    --gold: hsl(43, 52%, 54%);
    --gold-light: hsl(40, 65%, 69%);
    --text: hsl(36, 30%, 94%);
    --text-muted: hsl(217, 16%, 64%);
    --border-col: rgba(197, 160, 89, 0.15);
    --gold-solid: #C9A84C;
    --ink-navy: #1A1A2E;
}

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

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--text);
    font-family: 'Lato', sans-serif;
    font-weight: 400;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
    text-decoration: none;
}

ul {
    list-style: none;
}

button {
    cursor: pointer;
    border: none;
    background: none;
}

/* Force Cinzel on all headings — weight 400 as per Lovable spec */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    line-height: 1.15;
    text-transform: uppercase;
}

/* ====================================================
   HEADER
   ==================================================== */
#header {
    position: fixed;
    top: 0;
    width: 100%;
    z-index: 9999;
    background: hsl(218, 50%, 10%);
    border-bottom: 1px solid rgba(197, 160, 89, 0.15);
    transition: all 0.4s ease;
}

#header.scrolled {
    background: hsl(218, 52%, 8%, 0.96);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
}

.header-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0.7rem 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
}

/* Language Switcher */
.lang-switcher {
    margin-right: 0rem;
    flex-shrink: 0;
}

.btn-lang {
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    font-weight: 400;
    letter-spacing: 0.12rem;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border: 1px solid rgba(197, 160, 89, 0.15);
    border-radius: 1px;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    gap: 0.4rem;
    background: rgba(255, 255, 255, 0.02);
}

.btn-lang span {
    transition: color 0.3s ease, opacity 0.3s ease;
    opacity: 0.6;
}

.btn-lang span.active {
    color: var(--gold);
    font-weight: 700;
    opacity: 1;
}

.btn-lang:hover {
    border-color: var(--gold);
    color: var(--text);
    background: rgba(197, 160, 89, 0.08);
}

/* Logo — real image, left-aligned */
.logo-link {
    display: flex;
    align-items: center;
    flex-shrink: 0;
    text-decoration: none;
}

.logo-img {
    height: 56px;
    width: auto;
    object-fit: contain;
    display: block;
}

.logo-img-sm {
    height: 44px;
}

/* Nav links */
.nav-list {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.nav-list a {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: hsl(36, 30%, 88%);
    padding: 0.5rem 0.75rem;
    transition: color 0.25s;
}

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

/* CONSULTA button */
.btn-consulta {
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.2rem;
    text-transform: uppercase;
    border: 1px solid var(--gold);
    color: var(--gold);
    padding: 0.55rem 1.5rem;
    border-radius: 2px;
    transition: all 0.25s;
    white-space: nowrap;
}

.btn-consulta:hover {
    background: var(--gold);
    color: hsl(218, 50%, 10%);
}

/* Mobile */
.mobile-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
}

.mobile-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: var(--text);
    transition: all 0.3s;
}

.mobile-nav {
    display: none;
    padding: 1rem 2rem 1.5rem;
    background: hsl(218, 50%, 8%);
    border-top: 1px solid var(--border-col);
}

.mobile-nav.open {
    display: block;
}

.mobile-nav ul {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav a {
    font-family: 'Cinzel', serif;
    font-size: 0.8rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: var(--text);
    transition: color 0.25s;
}

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

@media (max-width: 1024px) {
    .nav-list,
    .btn-consulta {
        display: none;
    }

    .mobile-toggle {
        display: flex;
    }
}

/* ====================================================
   HERO SECTION
   ==================================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 5rem;
    /* Local hero background */
    background-image: url("Fondo.png");
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

/* Dark navy overlay — heavy, as in the screenshots */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(160deg,
            hsl(218, 55%, 7%, 0.9) 0%,
            hsl(218, 55%, 7%, 0.85) 50%,
            hsl(218, 55%, 5%, 0.95) 100%);
    z-index: 1;
}

/* Bottom fade into navy */
.hero::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(to bottom, transparent, var(--navy));
    z-index: 2;
}

.hero-content {
    position: relative;
    z-index: 3;
    max-width: 860px;
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Scales icon above title */
.hero-icon {
    color: var(--gold);
    margin-bottom: 1.25rem;
    opacity: 0.85;
}

/* Main title — exact Lovable specs */
.hero-title {
    font-family: 'Cinzel', serif;
    font-weight: 400;
    font-size: 3.5rem;
    letter-spacing: 0.05em;
    color: #C9A84C;
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 0;
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2.1rem;
    }
}

@media (min-width: 769px) and (max-width: 1023px) {
    .hero-title {
        font-size: 2.8rem;
    }
}

/* Ornament divider */
.hero-ornament {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin: 1.75rem 0;
}

.ornament-line {
    display: block;
    flex: 1;
    max-width: 100px;
    height: 1px;
    background: rgba(197, 160, 89, 0.45);
}

.ornament-diamond {
    color: var(--gold);
    font-size: 0.65rem;
    opacity: 0.75;
}

/* Subtitle — italic Cormorant */
.hero-subtitle {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.05rem, 2vw, 1.25rem);
    font-style: italic;
    font-weight: 400;
    color: hsl(36, 30%, 88%);
    margin-bottom: 2.5rem;
    line-height: 1.5;
}

/* Hero buttons */
.hero-buttons {
    display: flex;
    gap: 1.25rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Hero buttons (Montserrat, as per spec) */
.hero-buttons .btn {
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero-buttons .btn-outline {
    border-color: var(--gold-solid);
}

.hero-buttons .btn-outline:hover {
    border-color: var(--gold-solid);
    color: var(--gold-solid);
    background: rgba(201, 168, 76, 0.08);
}

.hero-buttons .btn-gold {
    background: var(--gold-solid);
    border-color: var(--gold-solid);
    color: var(--ink-navy);
}

.hero-buttons .btn-gold:hover {
    background: #D8B55A;
    border-color: #D8B55A;
    transform: translateY(-2px);
    box-shadow: 0 10px 28px rgba(201, 168, 76, 0.35);
}

/* ====================================================
   BUTTONS
   ==================================================== */
.btn {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    padding: 0.9rem 2rem;
    border-radius: 2px;
    transition: all 0.3s ease;
    cursor: pointer;
    text-align: center;
}

.btn-gold {
    background: var(--gold);
    color: hsl(218, 50%, 8%);
    border: 1px solid var(--gold);
}

.btn-gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(197, 160, 89, 0.3);
}

.btn-outline {
    background: transparent;
    color: var(--text);
    border: 1px solid rgba(197, 160, 89, 0.45);
}

.btn-outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(197, 160, 89, 0.06);
}

.btn-outline-sm {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 600;
    letter-spacing: 0.15rem;
    text-transform: uppercase;
    padding: 0.75rem 1.75rem;
    border: 1px solid rgba(197, 160, 89, 0.35);
    color: var(--text);
    border-radius: 2px;
    transition: all 0.25s;
}

.btn-outline-sm:hover {
    border-color: var(--gold);
    color: var(--gold);
}

.btn-full {
    width: 100%;
}

/* ====================================================
   SHARED SECTION STYLES
   ==================================================== */
.section-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 5.5rem 2rem;
}

@media (min-width: 768px) {
    .section-wrap {
        padding: 7rem 2rem;
    }
}

.section-divider {
    border: none;
    border-top: 1px solid var(--border-col);
    margin: 0;
}

/* Tag above section headings */
.tag {
    display: inline-block;
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    font-weight: 400;
    letter-spacing: 0.3rem;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.75rem;
}

/* Section heading */
.heading {
    font-family: 'Cinzel', serif;
    font-weight: 700;
    font-size: clamp(1.6rem, 3.5vw, 2.4rem);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 1rem;
}

/* Gold separator line */
.gold-sep {
    display: block;
    width: 3.5rem;
    height: 2px;
    background: var(--gold);
    margin-bottom: 2rem;
}

.gold-sep.center {
    margin: 0 auto 2.5rem;
}

/* ====================================================
   QUIÉNES SOMOS
   ==================================================== */
.about-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

@media (min-width: 968px) {
    .about-grid {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
    }
}

.body-p {
    font-size: 0.95rem;
    line-height: 1.85;
    color: hsl(36, 20%, 80%);
    margin-bottom: 1.2rem;
}

/* Justify only the attorney descriptions */
.member-info .body-p {
    text-align: justify;
    text-justify: inter-word;
    hyphens: auto;
    text-align-last: left;
}

.values-row {
    display: flex;
    gap: 1.5rem;
    flex-wrap: wrap;
    margin: 1.75rem 0;
}

.value-item {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Cinzel', serif;
    font-size: 0.68rem;
    letter-spacing: 0.1rem;
    color: var(--text);
    text-transform: uppercase;
}

.value-item svg {
    color: var(--gold);
    flex-shrink: 0;
}

.about-img img {
    width: 100%;
    border-radius: 2px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.55);
    object-fit: cover;
    max-height: 520px;
}

/* ====================================================
   ÁREAS DE PRÁCTICA
   ==================================================== */
.services-section-bg {
    background: hsl(218, 52%, 8%);
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.25rem;
    margin-top: 1rem;
}

@media (min-width: 900px) {
    .services-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.service-card {
    background: var(--navy-light);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 2.25rem 1.75rem;
    transition: border-color 0.3s, transform 0.3s, background 0.3s;
    cursor: default;
}

.service-card:hover {
    border-color: rgba(197, 160, 89, 0.35);
    background: hsl(216, 46%, 17%);
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.35);
}

.svc-icon {
    color: var(--gold);
    margin-bottom: 1.25rem;
}

.svc-title {
    font-family: 'Cinzel', serif;
    font-size: 0.78rem;
    letter-spacing: 0.08rem;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 0.75rem;
    font-weight: 600;
}

.svc-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ====================================================
   EQUIPO
   ==================================================== */
.team-intro-quote {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.15rem;
    font-style: italic;
    color: hsl(36, 25%, 78%);
    text-align: center;
    margin-top: 0.5rem;
}

.team-member {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-top: 4.5rem;
    margin-top: 4.5rem;
    border-top: 1px solid var(--border-col);
}

/* ====================================================
   STATS BAND (Hero metrics)
   ==================================================== */
.stats-band {
    background: linear-gradient(180deg, #C9A84C 0%, #C3A046 100%);
    color: var(--ink-navy);
    border-top: 1px solid rgba(26, 26, 46, 0.14);
    border-bottom: 1px solid rgba(26, 26, 46, 0.14);
}

.stats-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2.25rem 2rem;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.5rem 1rem;
    align-items: center;
    text-align: center;
}

@media (min-width: 900px) {
    .stats-inner {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 2.5rem;
        padding: 2.6rem 2rem;
    }
}

.stat {
    position: relative;
    padding: 0.25rem 0;
}

@media (min-width: 900px) {
    .stat:not(:first-child)::before {
        content: '';
        position: absolute;
        left: -1.25rem;
        top: 18%;
        bottom: 18%;
        width: 1px;
        background: rgba(26, 26, 46, 0.14);
    }
}

.stat-num {
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: clamp(2.15rem, 3.8vw, 3.1rem);
    line-height: 1;
    letter-spacing: 0.01em;
    color: var(--ink-navy);
    text-rendering: optimizeLegibility;
    font-variant-numeric: lining-nums tabular-nums;
}

.stat-label {
    margin-top: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 400;
    font-size: 0.875rem;
    letter-spacing: 0.01em;
    line-height: 1.2;
    color: rgba(26, 26, 46, 0.78);
    text-rendering: optimizeLegibility;
}

@media (min-width: 900px) {
    .stat-label {
        white-space: nowrap;
    }
}

.team-member:first-of-type {
    border-top: none;
    margin-top: 3.5rem;
    padding-top: 0;
}

@media (min-width: 768px) {
    .team-member {
        grid-template-columns: 280px 1fr;
        gap: 4.5rem;
        align-items: start;
    }

    .team-member.alt {
        direction: rtl;
    }

    .team-member.alt>* {
        direction: ltr;
    }
}

.member-photo img {
    width: 100%;
    max-width: 280px;
    height: 360px;
    object-fit: cover;
    object-position: top center;
    border-radius: 2px;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    filter: grayscale(10%);
}

.member-name {
    font-family: 'Cinzel', serif;
    font-size: clamp(1rem, 2vw, 1.4rem);
    letter-spacing: 0.04em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.35rem;
}

.member-role {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1rem;
    font-style: italic;
    color: var(--gold-light);
    display: block;
}

.sep-sm {
    display: block;
    width: 2.5rem;
    height: 2px;
    background: var(--gold);
    margin: 0.9rem 0 1.5rem;
}

.member-credentials {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    margin-top: 1.75rem;
}

@media (min-width: 600px) {
    .member-credentials {
        grid-template-columns: 1fr 1fr;
    }
}

.cred-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.63rem;
    letter-spacing: 0.2rem;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.6rem;
}

.cred-list {
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}

.cred-list li {
    font-size: 0.875rem;
    color: var(--text-muted);
    padding-left: 0.75rem;
    border-left: 2px solid rgba(197, 160, 89, 0.25);
    line-height: 1.5;
}

.tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.45rem;
}

.tags span {
    font-size: 0.68rem;
    padding: 0.28rem 0.7rem;
    border: 1px solid rgba(197, 160, 89, 0.22);
    color: var(--gold-light);
    border-radius: 2px;
    letter-spacing: 0.04rem;
}

/* ====================================================
   TESTIMONIOS
   ==================================================== */
.testimonials-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    margin-top: 1rem;
}

@media (min-width: 768px) {
    .testimonials-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.t-card {
    background: var(--navy-light);
    border: 1px solid rgba(197, 160, 89, 0.1);
    padding: 2.5rem 2rem;
    position: relative;
    transition: border-color 0.3s;
}

.t-card:hover {
    border-color: rgba(197, 160, 89, 0.3);
}

.t-quote-mark {
    font-family: 'Cormorant Garamond', serif;
    font-size: 5.5rem;
    line-height: 1;
    color: rgba(197, 160, 89, 0.1);
    position: absolute;
    top: 0.5rem;
    left: 1.25rem;
    font-style: italic;
    user-select: none;
}

.t-text {
    font-family: 'Cormorant Garamond', serif;
    font-style: italic;
    font-size: 1.05rem;
    color: hsl(36, 25%, 85%);
    line-height: 1.75;
    margin-bottom: 1.75rem;
    position: relative;
}

.t-author {
    display: flex;
    flex-direction: column;
    gap: 0.15rem;
}

.t-name {
    font-family: 'Cinzel', serif;
    font-size: 0.72rem;
    letter-spacing: 0.1rem;
    color: var(--gold);
    text-transform: uppercase;
}

.t-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ====================================================
   CONTACTO
   ==================================================== */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
}

@media (min-width: 968px) {
    .contact-grid {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 5rem;
    }
}

.detail-group {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
    margin-top: 2.5rem;
}

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

.detail-item svg {
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 3px;
}

.detail-label {
    display: block;
    font-family: 'Cinzel', serif;
    font-size: 0.62rem;
    letter-spacing: 0.2rem;
    color: var(--gold);
    margin-bottom: 0.2rem;
}

.detail-item p {
    font-size: 0.95rem;
    color: hsl(36, 20%, 80%);
}

.detail-item p a {
    color: inherit;
    text-decoration: none;
    border-bottom: 1px solid rgba(201, 168, 76, 0.25);
    transition: border-color 0.25s, color 0.25s;
}

.detail-item p a:hover {
    color: var(--gold-solid);
    border-bottom-color: rgba(201, 168, 76, 0.7);
}

/* Embedded map under location */
.map-embed {
    margin-top: 0.85rem;
    border: 1px solid rgba(197, 160, 89, 0.18);
    background: hsl(216, 46%, 11%);
    border-radius: 2px;
    overflow: hidden;
    box-shadow: 0 16px 42px rgba(0, 0, 0, 0.35);
}

.map-embed iframe {
    width: 100%;
    height: 220px;
    border: 0;
    display: block;
}

@media (min-width: 968px) {
    .map-embed iframe {
        height: 240px;
    }
}

.map-link {
    display: inline-block;
    margin-top: 0.6rem;
    font-family: 'Montserrat', sans-serif;
    font-weight: 600;
    font-size: 0.78rem;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--gold-solid);
    transition: color 0.25s, opacity 0.25s;
}

.map-link:hover {
    color: var(--gold-light);
    opacity: 0.95;
}

/* Form */
.form {
    display: flex;
    flex-direction: column;
    gap: 1.1rem;
}

.form-row {
    display: flex;
    gap: 1.1rem;
}

.form-row.col1 {
    flex-direction: column;
}

.form input,
.form select,
.form textarea {
    width: 100%;
    background: hsl(216, 46%, 11%);
    border: 1px solid rgba(197, 160, 89, 0.18);
    color: var(--text);
    padding: 0.9rem 1rem;
    font-family: 'Lato', sans-serif;
    font-size: 0.9rem;
    border-radius: 2px;
    outline: none;
    transition: border-color 0.25s;
    -webkit-appearance: none;
    appearance: none;
}

.form input::placeholder,
.form textarea::placeholder {
    color: var(--text-muted);
}

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

.form select option {
    background: hsl(218, 50%, 12%);
}

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

/* ====================================================
   FOOTER
   ==================================================== */
.footer {
    background: var(--navy-dark);
    border-top: 1px solid rgba(197, 160, 89, 0.12);
    padding: 4rem 2rem 2.5rem;
    text-align: center;
}

.footer-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.footer-nav {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 0.5rem 1.75rem;
}

.footer-nav a {
    font-family: 'Cinzel', serif;
    font-size: 0.63rem;
    letter-spacing: 0.18rem;
    text-transform: uppercase;
    color: var(--text-muted);
    transition: color 0.25s;
}

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

.footer-line {
    width: 3rem;
    height: 1px;
    background: rgba(197, 160, 89, 0.25);
}

.footer-copy {
    font-size: 0.78rem;
    color: hsl(36, 15%, 48%);
}

/* ====================================================
   SCROLL REVEAL
   ==================================================== */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}

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

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

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

/* ====================================================
   RESPONSIVE
   ==================================================== */
@media (max-width: 600px) {
    .hero-buttons {
        flex-direction: column;
        align-items: stretch;
    }

    .hero-buttons .btn {
        text-align: center;
    }

    .values-row {
        flex-direction: column;
        gap: 0.85rem;
    }

    .form-row {
        flex-direction: column;
    }

    .about-img img {
        max-height: 300px;
    }

    .member-photo img {
        height: 280px;
    }
}
