/* ============================================
   Hannifan & Associates — Brand Styles
   Palette: Burgundy (#78281F) + Blush (#FDF2E9)
   Fonts: Lora (serif) + Montserrat (sans)
   ============================================ */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-text-size-adjust: 100%;
}

body {
    font-family: 'Montserrat', -apple-system, BlinkMacSystemFont, sans-serif;
    color: #2D2A26;
    background-color: #FDF8F4;
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

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

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

ul {
    list-style: none;
}

h1, h2, h3, h4 {
    font-family: 'Lora', Georgia, serif;
    line-height: 1.2;
    font-weight: 600;
}

.skip-link {
    position: absolute;
    top: -100%;
    left: 1rem;
    background: #78281F;
    color: #fff;
    padding: 0.75rem 1.5rem;
    z-index: 10000;
    border-radius: 0 0 8px 8px;
    font-weight: 500;
}

.skip-link:focus {
    top: 0;
}

/* ---------- Container ---------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

@media (min-width: 1024px) {
    .container {
        padding: 0 3rem;
    }
}

/* ---------- Typography ---------- */
.section-eyebrow {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #78281F;
    margin-bottom: 1rem;
}

.section-heading {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    color: #2D2A26;
    margin-bottom: 1.5rem;
}

.section-heading--light {
    color: #FDF2E9;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 1rem 2rem;
    border-radius: 4px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.btn--primary {
    background-color: #78281F;
    color: #FDF2E9;
    border-color: #78281F;
}

.btn--primary:hover,
.btn--primary:focus {
    background-color: #5a1e18;
    border-color: #5a1e18;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(120, 40, 31, 0.3);
}

.btn--ghost {
    background-color: transparent;
    color: #FDF2E9;
    border-color: rgba(253, 242, 233, 0.5);
}

.btn--ghost:hover,
.btn--ghost:focus {
    border-color: #FDF2E9;
    background-color: rgba(253, 242, 233, 0.1);
    transform: translateY(-2px);
}

.btn--outline {
    background-color: transparent;
    color: #78281F;
    border-color: #78281F;
}

.btn--outline:hover,
.btn--outline:focus {
    background-color: #78281F;
    color: #FDF2E9;
    transform: translateY(-2px);
}

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

.btn--large {
    padding: 1.125rem 2.25rem;
    font-size: 0.9375rem;
}

/* ---------- Header ---------- */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background-color: rgba(253, 248, 244, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(120, 40, 31, 0.08);
    transition: all 0.4s ease;
}

.header.scrolled {
    box-shadow: 0 4px 30px rgba(45, 42, 38, 0.08);
}

.header__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-top: 1rem;
    padding-bottom: 1rem;
}

/* Logo */
.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
}

.logo__mark {
    font-family: 'Lora', serif;
    font-size: 1.125rem;
    font-weight: 700;
    color: #78281F;
    background-color: #78281F;
    color: #FDF2E9;
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    letter-spacing: 0.02em;
}

.logo--light .logo__mark {
    background-color: #FDF2E9;
    color: #78281F;
}

.logo__text {
    display: flex;
    flex-direction: column;
}

.logo__name {
    font-family: 'Lora', serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2D2A26;
    line-height: 1.2;
}

.logo--light .logo__name {
    color: #FDF2E9;
}

.logo__tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #78281F;
}

.logo--light .logo__tagline {
    color: rgba(253, 242, 233, 0.7);
}

/* Nav Toggle */
.nav-toggle {
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
    z-index: 1001;
}

.nav-toggle__bar {
    display: block;
    width: 24px;
    height: 2px;
    background-color: #2D2A26;
    border-radius: 2px;
    transition: all 0.3s ease;
}

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

/* Navigation */
.nav__list {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #2D2A26;
    position: relative;
    padding: 0.25rem 0;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1.5px;
    background-color: #78281F;
    transition: width 0.3s ease;
}

.nav__link:hover::after,
.nav__link:focus::after {
    width: 100%;
}

.nav__link--cta {
    background-color: #78281F;
    color: #FDF2E9;
    padding: 0.625rem 1.25rem;
    border-radius: 4px;
    margin-left: 0.5rem;
    transition: all 0.3s ease;
}

.nav__link--cta::after {
    display: none;
}

.nav__link--cta:hover {
    background-color: #5a1e18;
    transform: translateY(-1px);
}

/* Mobile Nav */
@media (max-width: 767px) {
    .nav-toggle {
        display: flex;
    }

    .nav {
        position: fixed;
        top: 0;
        right: 0;
        width: 100%;
        height: 100vh;
        height: 100dvh;
        background-color: #FDF8F4;
        display: flex;
        align-items: center;
        justify-content: center;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
        z-index: 999;
    }

    .nav.is-open {
        transform: translateX(0);
    }

    .nav__list {
        flex-direction: column;
        gap: 1.5rem;
        text-align: center;
    }

    .nav__link {
        font-size: 1.125rem;
    }

    .nav__link--cta {
        margin-left: 0;
        margin-top: 1rem;
    }
}

@media (min-width: 768px) {
    .nav-toggle {
        display: none;
    }
}

/* ---------- Hero ---------- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-top: 80px;
    padding-bottom: 3rem;
    background-color: #FDF8F4;
    overflow: hidden;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
    flex: 1;
}

.hero__content {
    order: 2;
}

.hero__image-wrapper {
    order: 1;
    position: relative;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: #78281F;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__eyebrow::before {
    content: '';
    display: block;
    width: 40px;
    height: 1.5px;
    background-color: #78281F;
}

.hero__headline {
    font-size: clamp(2rem, 5vw, 3.5rem);
    font-weight: 700;
    color: #2D2A26;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    max-width: 600px;
}

.hero__headline em {
    font-style: italic;
    color: #78281F;
}

.hero__subheadline {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: #5C5650;
    line-height: 1.8;
    margin-bottom: 2.5rem;
    max-width: 520px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero__credentials {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
}

.credential {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 500;
    color: #5C5650;
}

.credential svg {
    color: #78281F;
    flex-shrink: 0;
}

/* Hero Image */
.hero__image-wrapper {
    position: relative;
}

.hero__image-accent {
    position: absolute;
    top: -20px;
    left: -20px;
    width: 100%;
    height: 100%;
    border: 2px solid #78281F;
    border-radius: 8px;
    z-index: -1;
    opacity: 0.3;
}

.hero__image {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 4;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 25px 60px rgba(45, 42, 38, 0.15);
}

.hero__image-seal {
    position: absolute;
    bottom: 2rem;
    left: -1.5rem;
    background-color: #78281F;
    color: #FDF2E9;
    padding: 1rem 1.25rem;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: 'Lora', serif;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(120, 40, 31, 0.3);
}

.hero__scroll-indicator {
    display: none;
}

/* Desktop Hero */
@media (min-width: 1024px) {
    .hero__container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 4rem;
    }

    .hero__content {
        order: 1;
    }

    .hero__image-wrapper {
        order: 2;
    }

    .hero__image {
        aspect-ratio: 3 / 4;
    }

    .hero__scroll-indicator {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 0.5rem;
        font-size: 0.75rem;
        font-weight: 500;
        letter-spacing: 0.15em;
        text-transform: uppercase;
        color: #78281F;
        padding-bottom: 2rem;
        animation: float 2s ease-in-out infinite;
    }

    .hero__scroll-indicator svg {
        animation: bounce 2s ease-in-out infinite;
    }
}

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

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(4px); }
}

/* ---------- About ---------- */
.about {
    padding: 6rem 0;
    background-color: #FDF8F4;
}

.about__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.about__image-column {
    position: relative;
}

.about__image-main {
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(45, 42, 38, 0.12);
}

.about__image-main img {
    width: 100%;
    height: auto;
    aspect-ratio: 5 / 6.5;
    object-fit: cover;
}

.about__image-secondary {
    position: absolute;
    bottom: -2rem;
    right: -1rem;
    width: 55%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 15px 40px rgba(45, 42, 38, 0.15);
    border: 4px solid #FDF8F4;
}

.about__image-secondary img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

.about__stat {
    position: absolute;
    top: -1.5rem;
    right: -1rem;
    background-color: #78281F;
    color: #FDF2E9;
    padding: 1.25rem 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 10px 30px rgba(120, 40, 31, 0.3);
}

.about__stat-number {
    display: block;
    font-family: 'Lora', serif;
    font-size: 1.75rem;
    font-weight: 700;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about__stat-label {
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    opacity: 0.85;
}

.about__content {
    max-width: 560px;
}

.about__lead {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-style: italic;
    color: #78281F;
    line-height: 1.7;
    margin-bottom: 1.5rem;
    padding-left: 1.5rem;
    border-left: 3px solid #78281F;
}

.about__content > p {
    color: #5C5650;
    margin-bottom: 1.25rem;
    font-size: 0.9375rem;
}

.about__values {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

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

.value-item__icon {
    color: #78281F;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.value-item__title {
    font-family: 'Lora', serif;
    font-size: 1.0625rem;
    font-weight: 600;
    color: #2D2A26;
    margin-bottom: 0.25rem;
}

.value-item__text {
    font-size: 0.875rem;
    color: #5C5650;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .about {
        padding: 8rem 0;
    }

    .about__container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 5rem;
    }

    .about__content {
        max-width: 100%;
    }
}

/* ---------- Services ---------- */
.services {
    padding: 6rem 0;
    background-color: #78281F;
    position: relative;
    overflow: hidden;
}

.services__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 20% 80%, rgba(253, 242, 233, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(253, 242, 233, 0.05) 0%, transparent 50%);
    pointer-events: none;
}

.services__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
    position: relative;
    z-index: 1;
}

.services__subtitle {
    font-size: 1rem;
    color: rgba(253, 242, 233, 0.75);
    line-height: 1.7;
}

.services__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    position: relative;
    z-index: 1;
}

.service-card {
    background-color: rgba(253, 242, 233, 0.06);
    border: 1px solid rgba(253, 242, 233, 0.1);
    border-radius: 8px;
    padding: 2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, #FDF2E9, #E8C4B8);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.service-card:hover::before {
    transform: scaleX(1);
}

.service-card:hover {
    background-color: rgba(253, 242, 233, 0.1);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.2);
}

.service-card__icon {
    color: #FDF2E9;
    margin-bottom: 1.25rem;
    opacity: 0.9;
}

.service-card__title {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #FDF2E9;
    margin-bottom: 0.75rem;
}

.service-card__description {
    font-size: 0.875rem;
    color: rgba(253, 242, 233, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.service-card__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #FDF2E9;
    transition: gap 0.3s ease;
}

.service-card__link:hover {
    gap: 0.75rem;
}

@media (min-width: 640px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 1024px) {
    .services {
        padding: 8rem 0;
    }

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

/* ---------- Approach ---------- */
.approach {
    padding: 6rem 0;
    background-color: #FDF8F4;
}

.approach__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

.approach__steps {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 960px;
    margin: 0 auto;
}

.approach__step {
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 20px rgba(45, 42, 38, 0.06);
    border: 1px solid rgba(120, 40, 31, 0.06);
    transition: all 0.3s ease;
}

.approach__step:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 35px rgba(45, 42, 38, 0.1);
}

.approach__step-number {
    font-family: 'Lora', serif;
    font-size: 2.5rem;
    font-weight: 700;
    color: #78281F;
    opacity: 0.15;
    line-height: 1;
    margin-bottom: 0.75rem;
}

.approach__step-title {
    font-family: 'Lora', serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #2D2A26;
    margin-bottom: 0.75rem;
}

.approach__step-text {
    font-size: 0.9375rem;
    color: #5C5650;
    line-height: 1.7;
}

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

@media (min-width: 1024px) {
    .approach {
        padding: 8rem 0;
    }

    .approach__steps {
        grid-template-columns: repeat(4, 1fr);
        gap: 1.5rem;
    }
}

/* ---------- Community ---------- */
.community {
    padding: 6rem 0;
    background-color: #FDF2E9;
}

.community__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

.community__content {
    max-width: 560px;
}

.community__text {
    font-size: 0.9375rem;
    color: #5C5650;
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.community__quote {
    margin-top: 2.5rem;
    padding: 2rem;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 8px 30px rgba(45, 42, 38, 0.08);
    position: relative;
}

.community__quote-mark {
    color: #78281F;
    opacity: 0.2;
    position: absolute;
    top: 1rem;
    left: 1.5rem;
}

.community__quote blockquote {
    font-family: 'Lora', serif;
    font-size: 1.0625rem;
    font-style: italic;
    color: #2D2A26;
    line-height: 1.7;
    padding-left: 1.5rem;
    border-left: 2px solid #78281F;
}

.community__quote-source {
    margin-top: 1rem;
    font-size: 0.8125rem;
    font-weight: 600;
    color: #78281F;
    padding-left: 1.5rem;
    letter-spacing: 0.05em;
}

.community__image-column {
    position: relative;
}

.community__image-stack {
    position: relative;
    height: 500px;
}

.community__image-main {
    position: absolute;
    top: 0;
    right: 0;
    width: 75%;
    height: 75%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 20px 50px rgba(45, 42, 38, 0.12);
}

.community__image-secondary {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 55%;
    height: 55%;
    object-fit: cover;
    border-radius: 8px;
    box-shadow: 0 15px 40px rgba(45, 42, 38, 0.15);
    border: 4px solid #FDF2E9;
}

@media (min-width: 1024px) {
    .community {
        padding: 8rem 0;
    }

    .community__container {
        grid-template-columns: 1.1fr 0.9fr;
        gap: 5rem;
    }

    .community__content {
        max-width: 100%;
    }
}

/* ---------- CTA Banner ---------- */
.cta-banner {
    padding: 5rem 0;
    background: linear-gradient(135deg, #2D2A26 0%, #4A2520 100%);
}

.cta-banner__container {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2.5rem;
}

.cta-banner__heading {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    color: #FDF2E9;
    max-width: 600px;
}

.cta-banner__text {
    font-size: 1rem;
    color: rgba(253, 242, 233, 0.7);
    max-width: 500px;
    line-height: 1.7;
}

.cta-banner__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

.cta-banner__actions .btn--outline {
    border-color: rgba(253, 242, 233, 0.5);
    color: #FDF2E9;
}

.cta-banner__actions .btn--outline:hover {
    border-color: #FDF2E9;
    background-color: rgba(253, 242, 233, 0.1);
    color: #FDF2E9;
}

@media (min-width: 768px) {
    .cta-banner__container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
    }
}

/* ---------- Contact ---------- */
.contact {
    padding: 6rem 0;
    background-color: #FDF8F4;
}

.contact__container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

.contact__info {
    max-width: 520px;
}

.contact__lead {
    font-size: 1rem;
    color: #5C5650;
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 1.75rem;
}

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

.contact__detail-icon {
    color: #78281F;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.contact__detail-label {
    font-family: 'Lora', serif;
    font-size: 0.9375rem;
    font-weight: 600;
    color: #2D2A26;
    margin-bottom: 0.25rem;
}

.contact__detail address {
    font-style: normal;
    font-size: 0.9375rem;
    color: #5C5650;
    line-height: 1.6;
}

.contact__detail a {
    color: #5C5650;
    transition: color 0.3s ease;
}

.contact__detail a:hover {
    color: #78281F;
}

.contact__detail p {
    font-size: 0.9375rem;
    color: #5C5650;
    line-height: 1.6;
}

/* Contact Form */
.contact__form-wrapper {
    background-color: #fff;
    border-radius: 12px;
    padding: 2.5rem;
    box-shadow: 0 10px 40px rgba(45, 42, 38, 0.08);
    border: 1px solid rgba(120, 40, 31, 0.06);
}

.contact__form-header {
    margin-bottom: 2rem;
}

.contact__form-title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D2A26;
    margin-bottom: 0.5rem;
}

.contact__form-note {
    font-size: 0.8125rem;
    color: #5C5650;
}

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

.form-group {
    margin-bottom: 1.25rem;
}

.form-group label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #2D2A26;
    margin-bottom: 0.5rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: 'Montserrat', sans-serif;
    font-size: 0.9375rem;
    color: #2D2A26;
    background-color: #FDF8F4;
    border: 1.5px solid rgba(120, 40, 31, 0.15);
    border-radius: 6px;
    transition: all 0.3s ease;
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: #78281F;
    background-color: #fff;
    box-shadow: 0 0 0 3px rgba(120, 40, 31, 0.08);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: #A89F98;
}

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

.form-group 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='%2378281F' stroke-width='2'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.form-error {
    display: block;
    font-size: 0.75rem;
    color: #c0392b;
    margin-top: 0.375rem;
    min-height: 1rem;
}

.form-group.error input,
.form-group.error select,
.form-group.error textarea {
    border-color: #c0392b;
}

/* Form Success */
.form-success {
    text-align: center;
    padding: 2rem;
}

.form-success__icon {
    color: #78281F;
    margin-bottom: 1rem;
}

.form-success__title {
    font-family: 'Lora', serif;
    font-size: 1.5rem;
    font-weight: 600;
    color: #2D2A26;
    margin-bottom: 0.75rem;
}

.form-success p {
    font-size: 0.9375rem;
    color: #5C5650;
    line-height: 1.6;
}

@media (min-width: 1024px) {
    .contact {
        padding: 8rem 0;
    }

    .contact__container {
        grid-template-columns: 0.9fr 1.1fr;
        gap: 5rem;
    }

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

/* ---------- Footer ---------- */
.footer {
    background-color: #2D2A26;
    color: #FDF2E9;
    padding: 4rem 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(253, 242, 233, 0.1);
}

.footer__brand {
    max-width: 320px;
}

.footer__tagline {
    font-size: 0.875rem;
    color: rgba(253, 242, 233, 0.6);
    line-height: 1.7;
    margin-top: 1rem;
}

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

.footer__link-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #FDF2E9;
    margin-bottom: 1.25rem;
}

.footer__link-list li {
    margin-bottom: 0.625rem;
}

.footer__link-list a {
    font-size: 0.875rem;
    color: rgba(253, 242, 233, 0.6);
    transition: color 0.3s ease;
}

.footer__link-list a:hover {
    color: #FDF2E9;
}

.footer__address {
    font-style: normal;
    font-size: 0.875rem;
    color: rgba(253, 242, 233, 0.6);
    line-height: 1.6;
    margin-bottom: 0.75rem;
}

.footer__address a,
.footer__link-column a {
    color: rgba(253, 242, 233, 0.6);
}

.footer__address a:hover,
.footer__link-column a:hover {
    color: #FDF2E9;
}

.footer__bottom {
    padding: 1.5rem 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    text-align: center;
}

.footer__copyright {
    font-size: 0.8125rem;
    color: rgba(253, 242, 233, 0.4);
}

.footer__disclaimer {
    font-size: 0.75rem;
    color: rgba(253, 242, 233, 0.3);
    line-height: 1.6;
    max-width: 700px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .footer__top {
        grid-template-columns: 1fr 2fr;
    }

    .footer__bottom {
        flex-direction: row;
        justify-content: space-between;
        align-items: center;
        text-align: left;
    }
}

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

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

.fade-in.is-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; }
