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

:root {
    --navy: #1a2744;
    --navy-light: #243352;
    --navy-dark: #111b30;
    --gold: #c8a45a;
    --gold-light: #dbb96e;
    --gold-dark: #b08d3e;
    --cream: #f7f4ee;
    --cream-dark: #ede8dd;
    --white: #ffffff;
    --text-dark: #1a1a1a;
    --text-mid: #4a4a4a;
    --text-light: #7a7a7a;
    --font-serif: 'Playfair Display', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

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

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.938rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--gold {
    background: var(--gold);
    color: var(--navy-dark);
    border: 2px solid var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(200, 164, 90, 0.3);
}

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

.btn--outline:hover {
    border-color: var(--gold);
    color: var(--gold);
    transform: translateY(-2px);
}

.btn--dark {
    background: var(--navy);
    color: var(--white);
    border: 2px solid var(--navy);
}

.btn--dark:hover {
    background: var(--navy-light);
    border-color: var(--navy-light);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(26, 39, 68, 0.3);
}

.btn--outline-sm {
    background: transparent;
    color: var(--navy);
    border: 1.5px solid var(--navy);
    padding: 10px 24px;
    font-size: 0.875rem;
    border-radius: 4px;
}

.btn--outline-sm:hover {
    background: var(--navy);
    color: var(--white);
}

.btn--full {
    width: 100%;
}

/* ===== NAVIGATION ===== */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(26, 39, 68, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(200, 164, 90, 0.15);
    transition: all var(--transition);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    letter-spacing: 0.02em;
}

.nav__logo-icon {
    color: var(--gold);
}

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

.nav__link {
    font-size: 0.875rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    letter-spacing: 0.04em;
    text-transform: uppercase;
    transition: color var(--transition);
    position: relative;
}

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

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

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

.nav__cta {
    padding: 10px 20px;
    background: var(--gold);
    color: var(--navy-dark);
    border-radius: 4px;
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    transition: all var(--transition);
}

.nav__cta:hover {
    background: var(--gold-light);
    transform: translateY(-1px);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--white);
    border-radius: 2px;
    transition: all var(--transition);
}

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

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

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

/* ===== MOBILE MENU ===== */
.mobile-menu {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    background: var(--navy-dark);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__inner {
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 600;
    color: var(--white);
    padding: 16px 0;
    display: block;
    transition: color var(--transition);
}

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

.mobile-menu__divider {
    width: 48px;
    height: 1px;
    background: var(--gold);
    margin: 24px auto;
}

.mobile-menu__phone {
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--gold);
    padding: 8px 0;
}

.mobile-menu__email {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.7);
    padding: 8px 0;
}

.mobile-menu__address {
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 16px;
    line-height: 1.8;
}

/* ===== HERO ===== */
.hero {
    min-height: 100vh;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px 24px 80px;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -20%;
    width: 80%;
    height: 200%;
    background: radial-gradient(ellipse, rgba(200, 164, 90, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.hero__grid {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
    width: 100%;
}

.hero__eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
}

.hero__accent {
    color: var(--gold);
    font-style: italic;
}

.hero__subheadline {
    font-size: 1.125rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
    max-width: 480px;
}

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

.hero__trust {
    display: flex;
    align-items: center;
    gap: 24px;
}

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

.hero__trust-num {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--gold);
}

.hero__trust-label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
}

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(200, 164, 90, 0.3);
}

.hero__image {
    position: relative;
}

.hero__image-wrap {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
}

.hero__image-wrap img {
    width: 100%;
    height: 750px;
    object-fit: cover;
    border-radius: 8px;
}

.hero__image-accent {
    position: absolute;
    bottom: -16px;
    left: -16px;
    right: -16px;
    height: 40%;
    background: var(--navy);
    border-radius: 8px;
    z-index: -1;
    opacity: 0.4;
}

.hero__floating-card {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.2);
    z-index: 2;
}

.hero__floating-card svg {
    color: var(--gold);
    flex-shrink: 0;
}

.hero__floating-card span {
    font-size: 0.938rem;
    font-weight: 600;
    color: var(--navy);
}

.hero__scroll {
    position: absolute;
    bottom: 32px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.4);
    font-size: 0.75rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

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

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

/* ===== SECTION HEADER ===== */
.section-header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.section-header__eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.section-header__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.section-header__desc {
    font-size: 1.063rem;
    line-height: 1.7;
    color: var(--text-mid);
}

.section-header__desc--light {
    color: rgba(255, 255, 255, 0.7);
}

.accent {
    color: var(--gold-dark);
    font-style: italic;
}

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

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

.service-card {
    background: var(--white);
    padding: 40px 32px;
    border-radius: 8px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(26, 39, 68, 0.1);
    border-color: rgba(200, 164, 90, 0.3);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
    color: var(--gold);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.313rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 0.938rem;
    line-height: 1.7;
    color: var(--text-mid);
}

/* ===== ABOUT ===== */
.about {
    padding: 120px 0;
    background: var(--white);
}

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

.about__image-group {
    position: relative;
}

.about__image-main {
    border-radius: 8px;
    overflow: hidden;
}

.about__image-main img {
    width: 100%;
    height: 620px;
    object-fit: cover;
}

.about__image-small {
    position: absolute;
    bottom: -40px;
    right: -40px;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 16px 48px rgba(0, 0, 0, 0.15);
    border: 4px solid var(--white);
}

.about__image-small img {
    width: 340px;
    height: 260px;
    object-fit: cover;
}

.about__experience-badge {
    position: absolute;
    top: -24px;
    left: -24px;
    background: var(--gold);
    color: var(--navy-dark);
    padding: 20px 24px;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 8px 24px rgba(200, 164, 90, 0.3);
}

.about__exp-num {
    display: block;
    font-family: var(--font-serif);
    font-size: 1.75rem;
    font-weight: 800;
    line-height: 1;
}

.about__exp-text {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-top: 4px;
}

.about__content {
    max-width: 480px;
}

.about__eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.about__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 28px;
}

.about__body {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 20px;
}

.about__values {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin: 32px 0;
}

.about__value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.938rem;
    font-weight: 500;
    color: var(--navy);
}

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

/* ===== GALLERY ===== */
.gallery {
    padding: 120px 0;
    background: var(--navy);
}

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

.gallery__item {
    position: relative;
    border-radius: 8px;
    overflow: hidden;
    cursor: pointer;
}

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

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

.gallery__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(26, 39, 68, 0.8) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 24px;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery__overlay span {
    font-family: var(--font-serif);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--white);
}

.gallery__item--large {
    grid-column: span 7;
    height: 400px;
}

.gallery__item--tall {
    grid-column: span 5;
    height: 460px;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--tall) {
    grid-column: span 4;
    height: 300px;
}

/* ===== QUOTE SECTION ===== */
.quote-section {
    padding: 100px 0;
    background: var(--cream);
}

.quote-section__inner {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.quote-section__quote {
    color: var(--gold);
    margin-bottom: 32px;
    opacity: 0.6;
}

.quote-section__text {
    font-family: var(--font-serif);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 400;
    font-style: italic;
    line-height: 1.6;
    color: var(--navy);
    margin-bottom: 32px;
}

.quote-section__cite {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    font-style: normal;
}

.quote-section__name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--navy);
}

.quote-section__loc {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ===== CONTACT ===== */
.contact {
    padding: 120px 0;
    background: var(--white);
}

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

.contact__eyebrow {
    font-size: 0.813rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.contact__title {
    font-family: var(--font-serif);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--navy);
    margin-bottom: 20px;
}

.contact__desc {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-mid);
    margin-bottom: 40px;
}

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

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

.contact__detail-icon {
    width: 44px;
    height: 44px;
    background: var(--navy);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    flex-shrink: 0;
}

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

.contact__detail-value {
    font-size: 1rem;
    font-weight: 500;
    color: var(--navy);
    line-height: 1.6;
}

.contact__detail-value a {
    transition: color var(--transition);
}

.contact__detail-value a:hover {
    color: var(--gold-dark);
}

/* ===== FORM ===== */
.contact__form-wrap {
    background: var(--cream);
    padding: 48px;
    border-radius: 8px;
}

.contact__form-title {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.contact__form-sub {
    font-size: 0.938rem;
    color: var(--text-mid);
    margin-bottom: 32px;
}

.form__group {
    margin-bottom: 20px;
}

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

.form__input {
    width: 100%;
    padding: 14px 16px;
    background: var(--white);
    border: 1.5px solid var(--cream-dark);
    border-radius: 4px;
    font-family: var(--font-sans);
    font-size: 0.938rem;
    color: var(--text-dark);
    transition: border-color var(--transition);
    outline: none;
}

.form__input:focus {
    border-color: var(--gold);
}

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

.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 12 12' fill='none' stroke='%237a7a7a' stroke-width='2' stroke-linecap='round'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

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

.form__note {
    font-size: 0.813rem;
    color: var(--text-light);
    margin-top: 16px;
    text-align: center;
}

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 48px 24px;
    gap: 16px;
}

.form__success.active {
    display: flex;
}

.form__success svg {
    color: var(--gold);
}

.form__success h4 {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--navy);
}

.form__success p {
    font-size: 0.938rem;
    color: var(--text-mid);
    margin-bottom: 8px;
}

/* ===== FOOTER ===== */
.footer {
    background: var(--navy-dark);
    padding: 80px 0 0;
}

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

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 16px;
}

.footer__logo svg {
    color: var(--gold);
}

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

.footer__heading {
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.footer__link {
    display: block;
    font-size: 0.938rem;
    color: rgba(255, 255, 255, 0.6);
    padding: 6px 0;
    transition: color var(--transition);
}

.footer__link:hover {
    color: var(--gold);
}

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

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

/* ===== REVEAL ANIMATIONS ===== */
[data-reveal] {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

[data-reveal].revealed {
    opacity: 1;
    transform: translateY(0);
}

[data-reveal].revealed:nth-child(2) { transition-delay: 0.1s; }
[data-reveal].revealed:nth-child(3) { transition-delay: 0.2s; }
[data-reveal].revealed:nth-child(4) { transition-delay: 0.3s; }
[data-reveal].revealed:nth-child(5) { transition-delay: 0.4s; }
[data-reveal].revealed:nth-child(6) { transition-delay: 0.5s; }

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

    .hero__image-wrap img {
        height: 560px;
    }

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

    .about__grid {
        gap: 48px;
    }

    .about__image-small {
        right: -20px;
        bottom: -20px;
    }

    .about__experience-badge {
        left: -16px;
        top: -16px;
    }

    .contact__grid {
        gap: 48px;
    }

    .gallery__item--large {
        grid-column: span 12;
        height: 360px;
    }

    .gallery__item--tall {
        grid-column: span 6;
        height: 360px;
    }

    .gallery__item:not(.gallery__item--large):not(.gallery__item--tall) {
        grid-column: span 6;
        height: 280px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 100px 24px 80px;
    }

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

    .hero__image {
        order: -1;
    }

    .hero__image-wrap img {
        height: 400px;
    }

    .hero__floating-card {
        left: 16px;
        bottom: 16px;
    }

    .hero__trust {
        flex-wrap: wrap;
        gap: 16px;
    }

    .hero__scroll {
        display: none;
    }

    .services {
        padding: 80px 0;
    }

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

    .service-card {
        padding: 32px 28px;
    }

    .about {
        padding: 80px 0;
    }

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

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

    .about__image-small {
        position: relative;
        bottom: auto;
        right: auto;
        margin-top: -60px;
        margin-left: 24px;
    }

    .about__image-small img {
        width: 100%;
        height: 220px;
    }

    .about__experience-badge {
        position: relative;
        top: auto;
        left: auto;
        display: inline-block;
        margin-bottom: 24px;
    }

    .about__content {
        max-width: 100%;
    }

    .gallery {
        padding: 80px 0;
    }

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

    .gallery__item--large,
    .gallery__item--tall,
    .gallery__item:not(.gallery__item--large):not(.gallery__item--tall) {
        grid-column: span 1;
        height: 280px;
    }

    .gallery__overlay {
        opacity: 1;
    }

    .quote-section {
        padding: 80px 0;
    }

    .contact {
        padding: 80px 0;
    }

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

    .contact__form-wrap {
        padding: 32px 24px;
    }

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

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

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

    .hero__actions .btn {
        width: 100%;
    }

    .hero__headline {
        font-size: 2rem;
    }

    .btn {
        padding: 12px 24px;
        font-size: 0.875rem;
    }
}
