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

:root {
    --color-emerald-900: #042f23;
    --color-emerald-800: #064e3b;
    --color-emerald-700: #065f46;
    --color-emerald-600: #047857;
    --color-emerald-500: #059669;
    --color-cream-50: #faf9f6;
    --color-cream-100: #f5f3ee;
    --color-cream-200: #ebe7dd;
    --color-cream-300: #e0d9cc;
    --color-text-dark: #1a1a1a;
    --color-text-medium: #3d3d3d;
    --color-text-light: #6b6b6b;
    --color-white: #ffffff;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-sans);
    color: var(--color-text-dark);
    background: var(--color-cream-50);
    line-height: 1.6;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
}

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

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

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

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

em {
    font-style: italic;
    font-weight: 400;
}

/* ===== Section Header ===== */
.section-header {
    margin-bottom: 64px;
}

.section-header--center {
    text-align: center;
}

.section-header__eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald-600);
    margin-bottom: 16px;
    display: block;
}

.section-header__title {
    font-size: clamp(2rem, 5vw, 3.25rem);
    color: var(--color-emerald-900);
}

/* ===== Buttons ===== */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 50px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 500;
    letter-spacing: 0.01em;
    transition: all 0.3s var(--ease-out);
    white-space: nowrap;
}

.btn--primary {
    background: var(--color-emerald-800);
    color: var(--color-white);
}

.btn--primary:hover {
    background: var(--color-emerald-700);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(6, 78, 59, 0.3);
}

.btn--ghost {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.4);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: rgba(255, 255, 255, 0.7);
    transform: translateY(-2px);
}

.btn--light {
    background: var(--color-white);
    color: var(--color-emerald-900);
}

.btn--light:hover {
    background: var(--color-cream-100);
    transform: translateY(-2px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
}

.btn--outline-light {
    background: transparent;
    color: var(--color-white);
    border: 1.5px solid rgba(255, 255, 255, 0.5);
}

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

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

/* ===== Navigation ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 20px 0;
    transition: all 0.4s var(--ease-out);
}

.nav.scrolled {
    background: rgba(250, 249, 246, 0.95);
    backdrop-filter: blur(20px);
    padding: 14px 0;
    box-shadow: 0 1px 0 rgba(0, 0, 0, 0.06);
}

.nav__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    z-index: 1001;
}

.nav__logo-text {
    color: var(--color-white);
    transition: color 0.4s;
}

.nav.scrolled .nav__logo-text {
    color: var(--color-emerald-900);
}

.nav__logo-accent {
    color: var(--color-emerald-400);
    font-style: italic;
}

.nav.scrolled .nav__logo-accent {
    color: var(--color-emerald-600);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 36px;
}

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.85);
    transition: color 0.3s;
    position: relative;
}

.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 1.5px;
    background: currentColor;
    transition: width 0.3s var(--ease-out);
}

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

.nav__link:hover {
    color: var(--color-white);
}

.nav.scrolled .nav__link {
    color: var(--color-text-medium);
}

.nav.scrolled .nav__link:hover {
    color: var(--color-emerald-800);
}

.nav__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--color-white);
    background: rgba(255, 255, 255, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
    padding: 10px 20px;
    border-radius: 50px;
    transition: all 0.3s var(--ease-out);
    backdrop-filter: blur(8px);
}

.nav__cta:hover {
    background: rgba(255, 255, 255, 0.25);
    transform: translateY(-1px);
}

.nav.scrolled .nav__cta {
    background: var(--color-emerald-800);
    border-color: var(--color-emerald-800);
    color: var(--color-white);
}

.nav.scrolled .nav__cta:hover {
    background: var(--color-emerald-700);
    border-color: var(--color-emerald-700);
}

/* Mobile nav toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-white);
    border-radius: 2px;
    transition: all 0.3s var(--ease-out);
}

.nav.scrolled .nav__toggle-bar {
    background: var(--color-emerald-900);
}

.nav__toggle.active .nav__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(5px, 5px);
}

.nav__toggle.active .nav__toggle-bar:nth-child(2) {
    opacity: 0;
}

.nav__toggle.active .nav__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(5px, -5px);
}

/* ===== Hero ===== */
.hero {
    position: relative;
    min-height: 100vh;
    min-height: 100dvh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 120px 24px 80px;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        linear-gradient(135deg, 
            #042f23 0%, 
            #064e3b 25%, 
            #047857 50%, 
            #059669 70%, 
            #065f46 100%);
    z-index: 0;
}

.hero__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 80% 60% at 20% 80%, rgba(5, 150, 105, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 60% 50% at 80% 20%, rgba(4, 78, 59, 0.6) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 50% 50%, rgba(6, 120, 87, 0.3) 0%, transparent 70%);
}

.hero__bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
        radial-gradient(circle at 25% 25%, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        radial-gradient(circle at 75% 75%, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 60px 60px, 40px 40px;
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 820px;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 24px;
}

.hero__headline {
    font-size: clamp(2.75rem, 8vw, 5.5rem);
    color: var(--color-white);
    margin-bottom: 28px;
    line-height: 1.05;
}

.hero__headline-line {
    display: block;
}

.hero__headline em {
    color: var(--color-cream-200);
    font-style: italic;
}

.hero__subheadline {
    font-size: clamp(1rem, 2vw, 1.25rem);
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 44px;
    font-weight: 300;
}

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

.hero__scroll {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    z-index: 1;
}

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

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

/* ===== Marquee ===== */
.marquee {
    background: var(--color-emerald-900);
    padding: 18px 0;
    overflow: hidden;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
}

.marquee__track {
    display: flex;
    gap: 48px;
    align-items: center;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}

.marquee__track:hover {
    animation-play-state: paused;
}

.marquee__track span {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.6);
    white-space: nowrap;
    letter-spacing: 0.02em;
}

.marquee__dot {
    color: var(--color-emerald-500) !important;
    font-size: 0.5rem !important;
}

@keyframes marqueeScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ===== Services ===== */
.services {
    padding: 120px 0;
    background: var(--color-cream-50);
}

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

.service-card {
    background: var(--color-white);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);
    transition: all 0.4s var(--ease-out);
    border: 1px solid var(--color-cream-200);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 24px 60px rgba(6, 78, 59, 0.1);
    border-color: transparent;
}

.service-card__img {
    overflow: hidden;
    aspect-ratio: 4/3;
}

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

.service-card:hover .service-card__img img {
    transform: scale(1.05);
}

.service-card__body {
    padding: 28px;
}

.service-card__title {
    font-size: 1.375rem;
    color: var(--color-emerald-900);
    margin-bottom: 12px;
}

.service-card__title em {
    color: var(--color-emerald-600);
}

.service-card__body p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

/* ===== About ===== */
.about {
    padding: 120px 0;
    background: var(--color-cream-100);
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: 20px;
    overflow: hidden;
    aspect-ratio: 5/6.5;
    box-shadow: 0 32px 80px rgba(6, 78, 59, 0.15);
}

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

.about__img-secondary {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 16px;
    overflow: hidden;
    aspect-ratio: 350/400;
    border: 6px solid var(--color-cream-100);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.12);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about__badge {
    position: absolute;
    top: -20px;
    right: 40px;
    background: var(--color-emerald-800);
    color: var(--color-white);
    padding: 20px 24px;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 16px 48px rgba(6, 78, 59, 0.3);
}

.about__badge-text {
    font-family: var(--font-serif);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.4;
}

.about__content {
    padding: 20px 0;
}

.about__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald-600);
    margin-bottom: 16px;
    display: block;
}

.about__title {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--color-emerald-900);
    margin-bottom: 28px;
}

.about__title em {
    color: var(--color-emerald-600);
}

.about__text {
    font-size: 1.0625rem;
    color: var(--color-text-medium);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}

.about__feature svg {
    flex-shrink: 0;
    color: var(--color-emerald-600);
    margin-top: 2px;
}

.about__feature span {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--color-text-dark);
    line-height: 1.4;
}

/* ===== Gallery ===== */
.gallery {
    padding: 120px 0;
    background: var(--color-cream-50);
}

.gallery__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto;
    gap: 20px;
}

.gallery__item {
    overflow: hidden;
    border-radius: 16px;
}

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

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

.gallery__item--large {
    grid-column: 1 / 7;
    aspect-ratio: 6/5;
}

.gallery__item--wide {
    grid-column: 6 / 13;
    aspect-ratio: 8/3.5;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--wide) {
    aspect-ratio: 4/3.5;
}

/* ===== CTA ===== */
.cta {
    position: relative;
    padding: 120px 24px;
    overflow: hidden;
}

.cta__bg {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, 
        var(--color-emerald-900) 0%, 
        var(--color-emerald-700) 50%, 
        var(--color-emerald-800) 100%);
}

.cta__bg::before {
    content: '';
    position: absolute;
    inset: 0;
    background: 
        radial-gradient(ellipse 50% 80% at 80% 20%, rgba(5, 150, 105, 0.4) 0%, transparent 60%),
        radial-gradient(ellipse 40% 60% at 10% 80%, rgba(4, 47, 35, 0.5) 0%, transparent 50%);
}

.cta__content {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cta__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 20px;
    display: block;
}

.cta__title {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--color-white);
    margin-bottom: 24px;
}

.cta__title em {
    color: var(--color-cream-200);
}

.cta__text {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 44px;
    font-weight: 300;
}

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

/* ===== Contact ===== */
.contact {
    padding: 120px 0;
    background: var(--color-cream-100);
}

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 80px;
    align-items: start;
}

.contact__eyebrow {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--color-emerald-600);
    margin-bottom: 16px;
    display: block;
}

.contact__title {
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: var(--color-emerald-900);
    margin-bottom: 48px;
}

.contact__title em {
    color: var(--color-emerald-600);
}

.contact__details {
    display: flex;
    flex-direction: column;
    gap: 32px;
    margin-bottom: 40px;
}

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

.contact__detail svg {
    flex-shrink: 0;
    color: var(--color-emerald-600);
    margin-top: 2px;
}

.contact__detail strong {
    display: block;
    font-size: 0.8125rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--color-emerald-800);
    margin-bottom: 4px;
}

.contact__detail span,
.contact__detail a {
    font-size: 1rem;
    color: var(--color-text-medium);
    line-height: 1.6;
}

.contact__detail a:hover {
    color: var(--color-emerald-700);
    text-decoration: underline;
}

/* Form */
.contact__form-wrap {
    background: var(--color-white);
    border-radius: 20px;
    padding: 44px;
    box-shadow: 0 8px 40px rgba(0, 0, 0, 0.06);
    border: 1px solid var(--color-cream-200);
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-emerald-900);
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 24px;
}

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

.form__input {
    width: 100%;
    padding: 14px 18px;
    border: 1.5px solid var(--color-cream-300);
    border-radius: 10px;
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    color: var(--color-text-dark);
    background: var(--color-cream-50);
    transition: all 0.3s;
    outline: none;
}

.form__input::placeholder {
    color: var(--color-text-light);
}

.form__input:focus {
    border-color: var(--color-emerald-500);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(5, 150, 105, 0.08);
}

.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='%236b6b6b' 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;
}

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

.form__success {
    text-align: center;
    padding: 40px 20px;
}

.form__success svg {
    margin: 0 auto 20px;
}

.form__success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    color: var(--color-emerald-900);
    margin-bottom: 12px;
}

.form__success p {
    font-size: 0.9375rem;
    color: var(--color-text-light);
    line-height: 1.6;
}

/* ===== Footer ===== */
.footer {
    background: var(--color-emerald-900);
    color: var(--color-white);
    padding: 80px 0 0;
}

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

.footer__logo {
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    display: inline-block;
    margin-bottom: 16px;
}

.footer__tagline {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 280px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__links a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s;
}

.footer__links a:hover {
    color: var(--color-white);
}

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.footer__contact a {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.65);
    transition: color 0.3s;
}

.footer__contact a:hover {
    color: var(--color-white);
}

.footer__bottom {
    padding: 28px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__bottom p {
    font-size: 0.8125rem;
    color: rgba(255, 255, 255, 0.35);
}

/* ===== Scroll Reveal (progressive enhancement) ===== */
@media (prefers-reduced-motion: no-preference) {
    .reveal {
        opacity: 0;
        transform: translateY(30px);
        transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    }

    .reveal.revealed {
        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; }
}

/* ===== Responsive ===== */
@media (max-width: 1024px) {
    .services__grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .about__inner {
        gap: 60px;
    }

    .contact__inner {
        gap: 60px;
    }

    .gallery__item--large {
        grid-column: 1 / 8;
    }

    .gallery__item--wide {
        grid-column: 5 / 13;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__menu {
        position: fixed;
        top: 0;
        right: 0;
        width: min(320px, 85vw);
        height: 100vh;
        height: 100dvh;
        background: var(--color-emerald-900);
        flex-direction: column;
        justify-content: center;
        gap: 28px;
        padding: 40px;
        transform: translateX(100%);
        transition: transform 0.4s var(--ease-out);
        box-shadow: -20px 0 60px rgba(0, 0, 0, 0.3);
    }

    .nav__menu.open {
        transform: translateX(0);
    }

    .nav__link {
        font-size: 1.125rem;
        color: rgba(255, 255, 255, 0.85) !important;
    }

    .nav__link:hover {
        color: var(--color-white) !important;
    }

    .nav__cta {
        font-size: 1rem;
        margin-top: 8px;
    }

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

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

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

    .about__inner {
        grid-template-columns: 1fr;
        gap: 80px;
    }

    .about__img-secondary {
        right: -10px;
        bottom: -30px;
    }

    .about__badge {
        right: 20px;
        top: -10px;
    }

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

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

    .gallery__item--large,
    .gallery__item--wide {
        grid-column: 1 / -1;
    }

    .gallery__item--large {
        aspect-ratio: 4/3;
    }

    .gallery__item--wide {
        aspect-ratio: 16/9;
    }

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

    .cta__actions .btn {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }

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

    .contact__form-wrap {
        padding: 28px;
    }

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

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

@media (max-width: 480px) {
    .hero {
        padding: 100px 20px 80px;
    }

    .services,
    .about,
    .gallery,
    .contact {
        padding: 80px 0;
    }

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

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

    .gallery__item--wide {
        grid-column: 1;
    }
}
