/* ============================================
   HOGE FARMHOUSE — Custom Styles
   ============================================ */

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: 80px;
}

body {
    overflow-x: hidden;
}

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

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 240, 242, 0.85);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background: rgba(250, 240, 242, 0.95);
    box-shadow: 0 4px 30px rgba(123, 45, 59, 0.08);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #7B2D3B;
}

.nav__logo-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
    letter-spacing: -0.01em;
}

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

.nav__link {
    text-decoration: none;
    color: #571e29;
    font-size: 0.9rem;
    font-weight: 500;
    padding: 8px 16px;
    border-radius: 100px;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav__link:hover {
    background: rgba(123, 45, 59, 0.08);
    color: #7B2D3B;
}

.nav__link--cta {
    background: #7B2D3B;
    color: #fff;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: #6a2532;
    color: #fff;
}

.nav__burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    z-index: 1001;
}

.nav__burger-line {
    display: block;
    width: 24px;
    height: 2px;
    background: #7B2D3B;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

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

.nav__burger[aria-expanded="true"] .nav__burger-line:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile Menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(250, 240, 242, 0.98);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding-top: 100px;
}

.mobile-menu.active {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    animation: fadeIn 0.3s ease;
}

.mobile-menu__link {
    text-decoration: none;
    color: #571e29;
    font-family: 'Lora', Georgia, serif;
    font-size: 1.5rem;
    padding: 12px 24px;
    border-radius: 12px;
    transition: background 0.2s ease, color 0.2s ease;
}

.mobile-menu__link:hover {
    background: rgba(123, 45, 59, 0.08);
    color: #7B2D3B;
}

.mobile-menu__link--cta {
    margin-top: 16px;
    background: #7B2D3B;
    color: #fff;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 1rem;
    padding: 14px 32px;
    border-radius: 100px;
}

/* ============================================
   HERO SECTION
   ============================================ */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #faf0f2 0%, #f5dfe6 50%, #fff3e0 100%);
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.04;
    background-image: radial-gradient(circle at 2px 2px, #7B2D3B 1px, transparent 0);
    background-size: 32px 32px;
    pointer-events: none;
}

.hero__inner {
    position: relative;
    z-index: 1;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.85rem;
    font-weight: 600;
    color: #7B2D3B;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 24px;
}

.hero__eyebrow-dot {
    width: 8px;
    height: 8px;
    background: #e8911a;
    border-radius: 50%;
    display: inline-block;
}

.hero__headline {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 600;
    line-height: 1.12;
    color: #331116;
    margin-bottom: 24px;
    letter-spacing: -0.02em;
}

.hero__headline-accent {
    color: #7B2D3B;
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.75;
    color: #571e29;
    max-width: 520px;
    margin-bottom: 36px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 48px;
}

.hero__stats {
    display: flex;
    align-items: center;
    gap: 32px;
}

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

.hero__stat-number {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.8rem;
    font-weight: 600;
    color: #7B2D3B;
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: #6a2532;
    opacity: 0.7;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(123, 45, 59, 0.2);
}

/* Hero Image Stack */
.hero__images {
    position: relative;
    min-height: 580px;
}

.hero__img-stack {
    position: relative;
    width: 100%;
    height: 100%;
}

.hero__img {
    position: absolute;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(123, 45, 59, 0.15), 0 8px 20px rgba(123, 45, 59, 0.1);
}

.hero__img--main {
    width: 75%;
    height: 85%;
    top: 0;
    right: 0;
}

.hero__img--main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__img--accent {
    width: 55%;
    height: 45%;
    bottom: 5%;
    left: 0;
    border: 4px solid #faf0f2;
}

.hero__img--accent img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__img--badge {
    position: absolute;
    bottom: 42%;
    left: 55%;
    transform: translateX(-50%);
    z-index: 2;
}

.hero__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 12px 20px;
    border-radius: 100px;
    box-shadow: 0 10px 40px rgba(123, 45, 59, 0.15);
    font-size: 0.85rem;
    font-weight: 600;
    color: #7B2D3B;
    white-space: nowrap;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    text-decoration: none;
    font-family: 'Nunito Sans', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 100px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn--primary {
    background: #7B2D3B;
    color: #fff;
    border-color: #7B2D3B;
}

.btn--primary:hover {
    background: #6a2532;
    border-color: #6a2532;
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(123, 45, 59, 0.3);
}

.btn--ghost {
    background: transparent;
    color: #7B2D3B;
    border-color: #7B2D3B;
}

.btn--ghost:hover {
    background: #7B2D3B;
    color: #fff;
    transform: translateY(-2px);
}

.btn--outline-light {
    background: transparent;
    color: #fff;
    border-color: rgba(255, 255, 255, 0.4);
}

.btn--outline-light:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1.05rem;
}

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

/* ============================================
   SECTIONS
   ============================================ */
.section {
    padding: 100px 0;
}

.section--light {
    background: #fff;
}

.section--dark {
    background: linear-gradient(135deg, #331116 0%, #571e29 50%, #45171f 100%);
    color: #fff;
}

.section-header {
    margin-bottom: 64px;
}

.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #7B2D3B;
    margin-bottom: 16px;
}

.section-label--light {
    color: #e8911a;
}

.section-label::before {
    content: '';
    width: 24px;
    height: 2px;
    background: #e8911a;
    border-radius: 2px;
}

.section-title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: #331116;
    letter-spacing: -0.02em;
    margin-bottom: 20px;
}

.section-title--light {
    color: #fff;
}

.section-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    color: #571e29;
    max-width: 560px;
    margin: 0 auto;
}

/* ============================================
   ABOUT SECTION
   ============================================ */
.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about__image-wrapper {
    position: relative;
}

.about__image-wrapper img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: 24px;
    box-shadow: 0 25px 60px rgba(123, 45, 59, 0.12);
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 200px;
    height: 200px;
    background: #e8911a;
    border-radius: 20px;
    z-index: -1;
    opacity: 0.3;
}

.about__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: #571e29;
    margin-bottom: 20px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: 40px;
}

.about__value {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.about__value-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    background: rgba(123, 45, 59, 0.08);
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.about__value-title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: #331116;
    margin-bottom: 4px;
}

.about__value-desc {
    font-size: 0.9rem;
    color: #6a2532;
    line-height: 1.6;
}

/* ============================================
   SERVICES SECTION
   ============================================ */
.services__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.service-card {
    background: #fff;
    border: 1px solid rgba(123, 45, 59, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #7B2D3B, #e8911a);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(123, 45, 59, 0.1);
    border-color: transparent;
}

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

.service-card__icon {
    width: 64px;
    height: 64px;
    background: rgba(123, 45, 59, 0.06);
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    transition: background 0.3s ease;
}

.service-card:hover .service-card__icon {
    background: rgba(123, 45, 59, 0.1);
}

.service-card__title {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.25rem;
    font-weight: 600;
    color: #331116;
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.95rem;
    line-height: 1.7;
    color: #6a2532;
}

/* ============================================
   AREA SECTION
   ============================================ */
.area__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.area__body {
    font-size: 1.05rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 40px;
}

.area__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
}

.area__highlight {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 24px 28px;
    transition: background 0.3s ease;
}

.area__highlight:hover {
    background: rgba(255, 255, 255, 0.1);
}

.area__highlight-num {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.6rem;
    font-weight: 600;
    color: #e8911a;
    margin-bottom: 6px;
}

.area__highlight-label {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.area__image-col {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.area__img {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.area__img--tall img {
    width: 100%;
    height: 560px;
    object-fit: cover;
}

.area__img--short img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial-card {
    background: #fff;
    border: 1px solid rgba(123, 45, 59, 0.08);
    border-radius: 24px;
    padding: 40px 32px;
    position: relative;
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(123, 45, 59, 0.1);
}

.testimonial-card__quote-mark {
    font-family: 'Lora', Georgia, serif;
    font-size: 4rem;
    line-height: 1;
    color: #7B2D3B;
    opacity: 0.15;
    position: absolute;
    top: 20px;
    left: 28px;
}

.testimonial-card__text {
    font-size: 0.95rem;
    line-height: 1.75;
    color: #571e29;
    margin-bottom: 28px;
    position: relative;
    z-index: 1;
}

.testimonial-card__author {
    display: flex;
    align-items: center;
    gap: 14px;
}

.testimonial-card__author-avatar {
    width: 44px;
    height: 44px;
    background: rgba(123, 45, 59, 0.08);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.testimonial-card__author-name {
    font-family: 'Lora', Georgia, serif;
    font-weight: 600;
    font-size: 0.95rem;
    color: #331116;
}

.testimonial-card__author-location {
    font-size: 0.8rem;
    color: #6a2532;
    opacity: 0.7;
}

/* ============================================
   CTA SECTION
   ============================================ */
.cta-section {
    position: relative;
    padding: 100px 0;
    background: linear-gradient(135deg, #7B2D3B 0%, #571e29 100%);
    overflow: hidden;
}

.cta-section__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.05;
    background-image: radial-gradient(circle at 2px 2px, #fff 1px, transparent 0);
    background-size: 28px 28px;
    pointer-events: none;
}

.cta-section__inner {
    position: relative;
    z-index: 1;
}

.cta-section__eyebrow {
    font-size: 0.85rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: #e8911a;
    margin-bottom: 20px;
}

.cta-section__title {
    font-family: 'Lora', Georgia, serif;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 600;
    line-height: 1.15;
    color: #fff;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

.cta-section__body {
    font-size: 1.1rem;
    line-height: 1.75;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
}

.cta-section__actions {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
}

/* ============================================
   CONTACT SECTION
   ============================================ */
.contact__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.contact__body {
    font-size: 1.05rem;
    line-height: 1.75;
    color: #571e29;
    margin-bottom: 40px;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.contact__detail {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact__detail-icon {
    width: 44px;
    height: 44px;
    background: rgba(123, 45, 59, 0.06);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact__detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: #7B2D3B;
    margin-bottom: 4px;
}

.contact__detail-value {
    font-size: 0.95rem;
    color: #571e29;
    line-height: 1.6;
}

.contact__detail-link {
    font-size: 0.95rem;
    color: #7B2D3B;
    text-decoration: none;
    transition: color 0.2s ease;
}

.contact__detail-link:hover {
    color: #e8911a;
    text-decoration: underline;
}

/* Contact Form */
.contact-form {
    background: #fff;
    border: 1px solid rgba(123, 45, 59, 0.08);
    border-radius: 24px;
    padding: 40px;
    box-shadow: 0 20px 50px rgba(123, 45, 59, 0.06);
}

.contact-form__group {
    margin-bottom: 24px;
}

.contact-form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: #571e29;
    margin-bottom: 8px;
}

.contact-form__input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid rgba(123, 45, 59, 0.15);
    border-radius: 14px;
    font-family: 'Nunito Sans', sans-serif;
    font-size: 0.95rem;
    color: #331116;
    background: #faf0f2;
    transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
    outline: none;
}

.contact-form__input::placeholder {
    color: #dc929f;
}

.contact-form__input:focus {
    border-color: #7B2D3B;
    box-shadow: 0 0 0 4px rgba(123, 45, 59, 0.08);
    background: #fff;
}

.contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%237B2D3B' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'%3E%3C/polyline%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 44px;
    cursor: pointer;
}

.contact-form__textarea {
    resize: vertical;
    min-height: 120px;
}

.contact-form__success {
    display: none;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
    padding: 16px 20px;
    background: rgba(123, 45, 59, 0.06);
    border: 1px solid rgba(123, 45, 59, 0.12);
    border-radius: 14px;
    color: #7B2D3B;
    font-size: 0.9rem;
    font-weight: 500;
}

.contact-form__success.visible {
    display: flex;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    background: #331116;
    color: #fff;
    padding: 80px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 60px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer__brand {
    max-width: 300px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    color: #fff;
    margin-bottom: 16px;
}

.footer__logo-text {
    font-family: 'Lora', Georgia, serif;
    font-size: 1.2rem;
    font-weight: 600;
}

.footer__tagline {
    font-size: 0.9rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.55);
}

.footer__heading {
    font-family: 'Lora', Georgia, serif;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: #e8911a;
}

.footer__links {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.2s ease;
}

.footer__links a:hover {
    color: #fff;
}

.footer__address {
    font-style: normal;
    font-size: 0.9rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.55);
}

.footer__address-link a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__address-link a:hover {
    color: #e8911a;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
}

.footer__copyright {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.4);
}

.footer__disclaimer {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ============================================
   ANIMATIONS
   ============================================ */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

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

.animate-on-scroll {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.animate-on-scroll.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 40px;
    }

    .about__grid,
    .area__grid,
    .contact__grid {
        gap: 48px;
    }

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

    .testimonials__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 2;
        max-width: 50%;
        margin: 0 auto;
    }

    .footer__top {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .nav__links {
        display: none;
    }

    .nav__burger {
        display: flex;
    }

    .hero {
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 60px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__images {
        min-height: 400px;
        order: -1;
    }

    .hero__img--main {
        width: 80%;
        height: 70%;
    }

    .hero__img--accent {
        width: 55%;
        height: 40%;
    }

    .hero__stats {
        gap: 24px;
    }

    .section {
        padding: 72px 0;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .about__image-wrapper img {
        height: 400px;
    }

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

    .area__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .area__image-col {
        order: -1;
    }

    .area__img--tall img {
        height: 300px;
    }

    .area__img--short img {
        height: 200px;
    }

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

    .testimonials__grid .testimonial-card:last-child {
        grid-column: span 1;
        max-width: 100%;
    }

    .contact__grid {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .contact-form {
        padding: 28px;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 36px;
    }

    .footer__bottom {
        flex-direction: column;
        gap: 8px;
        text-align: center;
    }

    .cta-section__actions {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .hero__actions {
        flex-direction: column;
    }

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

    .hero__img--badge {
        display: none;
    }

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