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

:root {
    --plum-50: #F7F3F9;
    --plum-100: #EDE5F3;
    --plum-200: #D9C8E6;
    --plum-300: #C2A5D6;
    --plum-400: #A87DC4;
    --plum-500: #5D3A6E;
    --plum-600: #4A2D57;
    --plum-700: #382142;
    --plum-800: #26152D;
    --plum-900: #140A17;
    --amber-350: #F5A623;
    --amber-400: #F5B041;
    --amber-500: #F5A623;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-in-out: cubic-bezier(0.65, 0, 0.35, 1);
}

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

body {
    font-family: var(--font-sans);
    font-size: 16px;
    line-height: 1.6;
    color: var(--plum-800);
    background-color: #FDFBF8;
    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;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

/* ─── Typography ─── */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

em {
    font-style: italic;
    color: var(--plum-500);
}

/* ─── Section Labels ─── */
.section-label {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-350);
    margin-bottom: 1rem;
}

.section-title {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: var(--plum-800);
    margin-bottom: 1.25rem;
}

.section-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--plum-600);
    max-width: 520px;
    line-height: 1.7;
}

/* ─── Buttons ─── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-sans);
    font-weight: 600;
    font-size: 0.9375rem;
    padding: 0.875rem 1.75rem;
    border-radius: 6px;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum-500);
    color: #fff;
    border: 2px solid var(--plum-500);
}

.btn--primary:hover {
    background: var(--plum-600);
    border-color: var(--plum-600);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(93, 58, 110, 0.3);
}

.btn--ghost {
    background: transparent;
    color: var(--plum-700);
    border: 2px solid var(--plum-200);
}

.btn--ghost:hover {
    border-color: var(--plum-400);
    color: var(--plum-500);
    transform: translateY(-2px);
}

.btn--outline {
    background: transparent;
    color: var(--plum-500);
    border: 2px solid var(--plum-300);
}

.btn--outline:hover {
    background: var(--plum-50);
    border-color: var(--plum-500);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 1rem 2rem;
    font-size: 1rem;
}

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

/* ─── Navigation ─── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 251, 248, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--plum-100);
    transition: box-shadow 0.3s var(--ease-out);
}

.nav.scrolled {
    box-shadow: 0 4px 32px rgba(93, 58, 110, 0.08);
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1.5rem;
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.nav__brand-mark {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.5rem;
    color: var(--plum-500);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-500);
    color: #fff;
    border-radius: 8px;
}

.nav__brand-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    color: var(--plum-800);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.nav__links a:not(.nav__cta) {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--plum-600);
    transition: color 0.2s;
    position: relative;
}

.nav__links a:not(.nav__cta):hover {
    color: var(--plum-500);
}

.nav__links a:not(.nav__cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--amber-350);
    transition: width 0.3s var(--ease-out);
}

.nav__links a:not(.nav__cta):hover::after {
    width: 100%;
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--amber-350);
    background: var(--plum-50);
    border: 1.5px solid var(--plum-200);
    padding: 0.5rem 1rem;
    border-radius: 6px;
    transition: all 0.3s var(--ease-out);
}

.nav__cta:hover {
    background: var(--plum-500);
    color: #fff;
    border-color: var(--plum-500);
}

.nav__toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 6px;
    color: var(--plum-700);
    transition: background 0.2s;
}

.nav__toggle:hover {
    background: var(--plum-50);
}

.nav__toggle-icon {
    transition: transform 0.3s var(--ease-out);
}

.nav__toggle[aria-expanded="true"] .nav__toggle-icon {
    transform: rotate(90deg);
}

/* ─── Hero ─── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 72px 1.5rem 4rem;
    background: linear-gradient(135deg, #FDFBF8 0%, var(--plum-50) 50%, #FDFBF8 100%);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(93, 58, 110, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
    width: 100%;
}

.hero__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber-350);
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.hero__eyebrow::before {
    content: '';
    width: 32px;
    height: 2px;
    background: var(--amber-350);
}

.hero__headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    color: var(--plum-800);
    margin-bottom: 1.5rem;
    line-height: 1.05;
}

.hero__subhead {
    font-size: clamp(1rem, 1.5vw, 1.1875rem);
    color: var(--plum-600);
    line-height: 1.75;
    max-width: 480px;
    margin-bottom: 2rem;
}

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

.hero__stats {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.hero__stat {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-700);
}

.hero__stat-label {
    font-size: 0.8125rem;
    color: var(--plum-400);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero__stat-divider {
    width: 1px;
    height: 48px;
    background: var(--plum-200);
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 32px 64px rgba(93, 58, 110, 0.15);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.hero__image-wrapper:hover img {
    transform: scale(1.03);
}

.hero__image-accent {
    position: absolute;
    bottom: -24px;
    left: -24px;
    width: 120px;
    height: 120px;
    background: var(--amber-350);
    border-radius: 12px;
    z-index: -1;
    opacity: 0.6;
}

/* ─── Services ─── */
.services {
    padding: 7rem 1.5rem;
    background: #FDFBF8;
}

.services__inner {
    max-width: 1280px;
    margin: 0 auto;
}

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

.service-card {
    background: #fff;
    border: 1px solid var(--plum-100);
    border-radius: 12px;
    padding: 2rem;
    transition: all 0.4s var(--ease-out);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--plum-500), var(--amber-350));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out);
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(93, 58, 110, 0.1);
    border-color: transparent;
}

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

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--plum-50);
    border-radius: 12px;
    color: var(--plum-500);
    margin-bottom: 1.25rem;
    transition: all 0.3s var(--ease-out);
}

.service-card:hover .service-card__icon {
    background: var(--plum-500);
    color: #fff;
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--plum-800);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.service-card__desc {
    font-size: 0.9375rem;
    color: var(--plum-600);
    line-height: 1.7;
}

/* ─── Why Us ─── */
.why-us {
    padding: 7rem 1.5rem;
    background: var(--plum-800);
    color: #fff;
    position: relative;
    overflow: hidden;
}

.why-us::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse at top right, rgba(245, 166, 35, 0.1) 0%, transparent 60%);
    pointer-events: none;
}

.why-us__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    position: relative;
    z-index: 1;
}

.why-us .section-title {
    color: #fff;
}

.why-us .section-subtitle {
    color: var(--plum-200);
    margin-bottom: 2.5rem;
}

.why-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.why-list li {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.why-list__mark {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--amber-350);
    color: var(--plum-800);
    border-radius: 50%;
    font-size: 0.75rem;
    font-weight: 700;
    margin-top: 2px;
}

.why-list span {
    font-size: 1rem;
    color: var(--plum-200);
    line-height: 1.65;
}

.why-list strong {
    color: #fff;
}

.why-us__image-stack {
    position: relative;
    height: 620px;
}

.why-us__img {
    position: absolute;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 24px 48px rgba(0, 0, 0, 0.3);
}

.why-us__img--main {
    top: 0;
    right: 0;
    width: 75%;
    height: 75%;
}

.why-us__img--accent {
    bottom: 0;
    left: 0;
    width: 55%;
    height: 45%;
    border: 4px solid var(--plum-700);
}

.why-us__img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ─── Gallery ─── */
.gallery {
    padding: 7rem 1.5rem;
    background: #FDFBF8;
}

.gallery__inner {
    max-width: 1280px;
    margin: 0 auto;
    text-align: center;
}

.gallery__inner .section-subtitle {
    margin: 0 auto 3rem;
}

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

.gallery__item {
    border-radius: 12px;
    overflow: hidden;
    position: relative;
    aspect-ratio: 5/4;
    cursor: pointer;
}

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(93, 58, 110, 0.4) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.3s var(--ease-out);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease-out);
}

.gallery__item:hover img {
    transform: scale(1.08);
}

/* ─── CTA Banner ─── */
.cta-banner {
    padding: 6rem 1.5rem;
    background: linear-gradient(135deg, var(--plum-500) 0%, var(--plum-700) 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -20%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(245, 166, 35, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -30%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.05) 0%, transparent 60%);
    pointer-events: none;
}

.cta-banner__inner {
    max-width: 720px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.cta-banner__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: #fff;
    margin-bottom: 1.25rem;
}

.cta-banner__desc {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    color: var(--plum-200);
    line-height: 1.75;
    margin-bottom: 2.5rem;
}

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

.cta-banner .btn--primary {
    background: var(--amber-350);
    border-color: var(--amber-350);
    color: var(--plum-800);
}

.cta-banner .btn--primary:hover {
    background: var(--amber-400);
    border-color: var(--amber-400);
    box-shadow: 0 8px 24px rgba(245, 166, 35, 0.4);
}

.cta-banner .btn--outline {
    border-color: rgba(255, 255, 255, 0.3);
    color: #fff;
}

.cta-banner .btn--outline:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: #fff;
}

/* ─── Contact ─── */
.contact {
    padding: 7rem 1.5rem;
    background: var(--plum-50);
}

.contact__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

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

.contact__detail-icon {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #fff;
    border-radius: 10px;
    color: var(--plum-500);
    box-shadow: 0 4px 12px rgba(93, 58, 110, 0.08);
}

.contact__detail-label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--plum-400);
    margin-bottom: 0.25rem;
}

.contact__detail-value {
    display: block;
    font-size: 1rem;
    color: var(--plum-700);
    line-height: 1.6;
}

.contact__link {
    transition: color 0.2s;
}

.contact__link:hover {
    color: var(--amber-350);
}

/* ─── Contact Form ─── */
.contact-form {
    background: #fff;
    border-radius: 16px;
    padding: 2.5rem;
    box-shadow: 0 16px 48px rgba(93, 58, 110, 0.08);
    border: 1px solid var(--plum-100);
}

.contact-form__title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--plum-800);
    margin-bottom: 1.75rem;
}

.contact-form__group {
    margin-bottom: 1.25rem;
}

.contact-form__label {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--plum-600);
    margin-bottom: 0.5rem;
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.contact-form__input {
    width: 100%;
    padding: 0.875rem 1rem;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--plum-800);
    background: var(--plum-50);
    border: 1.5px solid var(--plum-100);
    border-radius: 8px;
    transition: all 0.2s;
    outline: none;
}

.contact-form__input:focus {
    border-color: var(--plum-400);
    background: #fff;
    box-shadow: 0 0 0 3px rgba(93, 58, 110, 0.1);
}

.contact-form__input::placeholder {
    color: var(--plum-300);
}

.contact-form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke-width='2' stroke='%235D3A6E' width='16' height='16'%3E%3Cpath stroke-linecap='round' stroke-linejoin='round' d='M19 9l-7 7-7-7'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.contact-form__success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 1rem;
    padding: 1rem;
    background: #ecfdf5;
    border: 1px solid #a7f3d0;
    border-radius: 8px;
    color: #065f46;
    font-size: 0.9375rem;
    font-weight: 500;
}

/* ─── Footer ─── */
.footer {
    background: var(--plum-900);
    color: var(--plum-200);
    padding: 4rem 1.5rem 2rem;
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(93, 58, 110, 0.4);
    margin-bottom: 3rem;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 0.625rem;
    text-decoration: none;
}

.footer__brand-mark {
    font-family: var(--font-serif);
    font-weight: 900;
    font-size: 1.375rem;
    color: var(--amber-350);
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(245, 166, 35, 0.15);
    border-radius: 8px;
}

.footer__brand-text {
    font-family: var(--font-serif);
    font-weight: 700;
    font-size: 1.125rem;
    color: #fff;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: var(--plum-300);
}

.footer__mid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer__col h4 {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 1.25rem;
}

.footer__col a {
    display: block;
    font-size: 0.875rem;
    color: var(--plum-300);
    padding: 0.375rem 0;
    transition: color 0.2s;
}

.footer__col a:hover {
    color: var(--amber-350);
}

.footer__col p {
    font-size: 0.875rem;
    line-height: 1.75;
    color: var(--plum-300);
    margin-bottom: 0.5rem;
}

.footer__link {
    display: block;
    font-size: 0.875rem;
    color: var(--amber-350) !important;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(93, 58, 110, 0.4);
    font-size: 0.8125rem;
    color: var(--plum-400);
}

/* ─── Scroll Animations ─── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }
.reveal-delay-6 { transition-delay: 0.6s; }

/* ─── Mobile Menu Overlay ─── */
.nav__overlay {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(20, 10, 23, 0.5);
    z-index: 98;
    opacity: 0;
    transition: opacity 0.3s;
}

.nav__overlay.active {
    opacity: 1;
}

/* ─── Responsive ─── */
@media (max-width: 1024px) {
    .hero__grid {
        gap: 2.5rem;
    }

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

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

@media (max-width: 768px) {
    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: #FDFBF8;
        flex-direction: column;
        align-items: flex-start;
        padding: 5rem 2rem 2rem;
        gap: 1.5rem;
        z-index: 99;
        box-shadow: -8px 0 32px rgba(0, 0, 0, 0.1);
        transition: right 0.4s var(--ease-out);
    }

    .nav__links.open {
        right: 0;
    }

    .nav__overlay {
        display: block;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__cta {
        margin-top: 1rem;
    }

    .hero {
        padding-top: 100px;
        padding-bottom: 3rem;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .hero__image {
        order: -1;
    }

    .hero__image-wrapper {
        border-radius: 12px;
    }

    .hero__image-accent {
        width: 80px;
        height: 80px;
        bottom: -16px;
        left: -16px;
    }

    .hero__headline {
        font-size: clamp(2rem, 8vw, 3rem);
    }

    .services {
        padding: 4rem 1.5rem;
    }

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

    .why-us {
        padding: 4rem 1.5rem;
    }

    .why-us__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .why-us__image-stack {
        height: 400px;
        order: -1;
    }

    .gallery {
        padding: 4rem 1.5rem;
    }

    .gallery__grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.75rem;
    }

    .cta-banner {
        padding: 4rem 1.5rem;
    }

    .contact {
        padding: 4rem 1.5rem;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }

    .contact-form {
        padding: 1.75rem;
    }

    .footer__top {
        flex-direction: column;
        align-items: flex-start;
    }

    .footer__mid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

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

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

    .hero__actions .btn {
        justify-content: center;
    }

    .hero__stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero__stat-divider {
        width: 48px;
        height: 1px;
    }

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

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