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

:root {
    --teal-dark: #0d4f6e;
    --teal: #1a6b8a;
    --teal-light: #2a8fa8;
    --teal-pale: #e8f4f7;
    --slate-dark: #1e2a34;
    --slate: #2d3e4f;
    --slate-mid: #4a5f73;
    --slate-light: #8a9bab;
    --cream: #f7f4f0;
    --cream-dark: #ede8e0;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

/* ── Typography ── */
.section-eyebrow {
    font-family: var(--font-sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--slate-dark);
    margin-bottom: 24px;
}

.section-title--accent {
    color: var(--teal);
    font-style: italic;
}

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 14px 32px;
    border: 1.5px solid transparent;
    border-radius: 2px;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--teal-dark);
    color: var(--white);
    border-color: var(--teal-dark);
}

.btn--primary:hover {
    background: var(--teal);
    border-color: var(--teal);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(13, 79, 110, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--slate-dark);
    border-color: var(--slate-light);
}

.btn--ghost:hover {
    border-color: var(--teal-dark);
    color: var(--teal-dark);
    transform: translateY(-2px);
}

.btn--white {
    background: var(--white);
    color: var(--teal-dark);
    border-color: var(--white);
}

.btn--white:hover {
    background: var(--teal-pale);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.15);
}

.btn--outline-white {
    background: transparent;
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.6);
}

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

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

/* ── Navigation ── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(247, 244, 240, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(45, 62, 79, 0.08);
    transition: all var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(30, 42, 52, 0.08);
}

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

.nav__brand {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-dark);
    transition: color var(--transition);
}

.nav__brand:hover {
    color: var(--teal);
}

.nav__brand-icon {
    color: var(--teal-dark);
}

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

.nav__link {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--slate-mid);
    transition: color var(--transition);
    position: relative;
}

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

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

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

.nav__link--cta {
    padding: 8px 20px;
    border: 1px solid var(--teal-dark);
    color: var(--teal-dark);
    border-radius: 2px;
    transition: all var(--transition);
}

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

.nav__link--cta:hover {
    background: var(--teal-dark);
    color: var(--white);
}

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

.nav__toggle span {
    width: 22px;
    height: 1.5px;
    background: var(--slate-dark);
    transition: all var(--transition);
    display: block;
}

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

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

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

/* ── Mobile Menu ── */
.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: var(--cream);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.mobile-menu.open {
    opacity: 1;
    pointer-events: all;
}

.mobile-menu__inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.mobile-menu__link {
    font-family: var(--font-serif);
    font-size: 1.8rem;
    color: var(--slate-dark);
    transition: color var(--transition);
}

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

.mobile-menu__link--cta {
    font-family: var(--font-sans);
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 8px;
    padding: 12px 28px;
    border: 1px solid var(--teal-dark);
    color: var(--teal-dark);
}

.mobile-menu__contact {
    margin-top: 16px;
    text-align: center;
    font-size: 0.85rem;
    color: var(--slate-mid);
    line-height: 2;
}

.mobile-menu__contact a {
    color: var(--slate-mid);
    transition: color var(--transition);
}

.mobile-menu__contact a:hover {
    color: var(--teal);
}

/* ── Hero ── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    background: var(--cream);
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(26, 107, 138, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

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

.hero__eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--teal);
    margin-bottom: 20px;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    font-weight: 300;
    line-height: 1.1;
    color: var(--slate-dark);
    margin-bottom: 28px;
}

.hero__headline--accent {
    color: var(--teal);
    font-style: italic;
    font-weight: 400;
}

.hero__subheadline {
    font-size: 1rem;
    line-height: 1.8;
    color: var(--slate-mid);
    max-width: 480px;
    margin-bottom: 36px;
}

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

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

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

.hero__stat-number {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--slate-dark);
    line-height: 1.3;
}

.hero__stat-label {
    font-size: 0.7rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-light);
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: var(--slate-light);
    opacity: 0.4;
}

.hero__image {
    position: relative;
}

.hero__image-frame {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
}

.hero__image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 200px;
    height: 200px;
    border: 1px solid var(--teal);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

/* ── Services ── */
.services {
    padding: 120px 0;
    background: var(--white);
}

.services__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

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

.service-card {
    padding: 44px;
    background: var(--cream);
    border-radius: 4px;
    transition: all var(--transition);
    border: 1px solid transparent;
}

.service-card:hover {
    border-color: var(--teal);
    transform: translateY(-4px);
    box-shadow: 0 16px 48px rgba(13, 79, 110, 0.08);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-pale);
    color: var(--teal-dark);
    margin-bottom: 24px;
    transition: all var(--transition);
}

.service-card:hover .service-card__icon {
    background: var(--teal-dark);
    color: var(--white);
}

.service-card__title {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--slate-dark);
    margin-bottom: 12px;
}

.service-card__text {
    font-size: 0.9rem;
    line-height: 1.8;
    color: var(--slate-mid);
}

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

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

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 720px;
    object-fit: cover;
    border-radius: 4px;
}

.about__image-accent {
    position: absolute;
    top: -16px;
    right: -16px;
    width: 100%;
    height: 100%;
    border: 1px solid var(--teal);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.25;
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--slate-mid);
    margin-bottom: 20px;
}

.about__values {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px 24px;
    margin: 32px 0 40px;
}

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

.about__value-line {
    width: 24px;
    height: 1px;
    background: var(--teal);
    flex-shrink: 0;
}

/* ── Areas ── */
.areas {
    padding: 120px 0;
    background: var(--white);
}

.areas__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

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

.area-card {
    position: relative;
    overflow: hidden;
    border-radius: 4px;
    aspect-ratio: 4/3;
    cursor: pointer;
}

.area-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

.area-card:hover img {
    transform: scale(1.08);
}

.area-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(30, 42, 52, 0.8) 0%, transparent 60%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 28px;
    transition: background var(--transition);
}

.area-card:hover .area-card__overlay {
    background: linear-gradient(to top, rgba(13, 79, 110, 0.85) 0%, transparent 70%);
}

.area-card__name {
    font-family: var(--font-serif);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 4px;
}

.area-card__desc {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.5;
}

/* ── Testimonials ── */
.testimonials {
    padding: 120px 0;
    background: var(--slate-dark);
}

.testimonials__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 64px;
}

.testimonials__header .section-eyebrow {
    color: var(--teal-light);
}

.testimonials__header .section-title {
    color: var(--white);
}

.testimonials__header .section-title--accent {
    color: var(--teal-light);
}

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

.testimonial-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 40px;
    transition: all var(--transition);
}

.testimonial-card:hover {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(42, 143, 168, 0.3);
    transform: translateY(-4px);
}

.testimonial-card__quote {
    color: var(--teal-light);
    opacity: 0.5;
    margin-bottom: 20px;
}

.testimonial-card__text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-style: italic;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 24px;
}

.testimonial-card__author {
    font-family: var(--font-sans);
    font-size: 0.78rem;
    font-style: normal;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--teal-light);
}

/* ── CTA Banner ── */
.cta-banner {
    padding: 100px 0;
    background: linear-gradient(135deg, var(--teal-dark) 0%, var(--teal) 100%);
    position: relative;
    overflow: hidden;
}

.cta-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    pointer-events: none;
}

.cta-banner::after {
    content: '';
    position: absolute;
    bottom: -150px;
    left: -100px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.05);
    pointer-events: none;
}

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

.cta-banner__eyebrow {
    font-size: 0.72rem;
    font-weight: 600;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 16px;
}

.cta-banner__title {
    font-family: var(--font-serif);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 400;
    line-height: 1.2;
    color: var(--white);
    margin-bottom: 20px;
}

.cta-banner__title--accent {
    font-style: italic;
    color: rgba(255, 255, 255, 0.85);
}

.cta-banner__text {
    font-size: 1rem;
    line-height: 1.8;
    color: rgba(255, 255, 255, 0.75);
    margin-bottom: 36px;
}

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

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

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

.contact__text {
    font-size: 0.95rem;
    line-height: 1.9;
    color: var(--slate-mid);
    margin-bottom: 36px;
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--teal-pale);
    color: var(--teal-dark);
    flex-shrink: 0;
}

.contact__detail-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact__detail-label {
    font-size: 0.7rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--slate-light);
}

.contact__detail-value {
    font-size: 0.95rem;
    color: var(--slate-dark);
    line-height: 1.6;
}

.contact__detail-link {
    font-size: 0.95rem;
    color: var(--teal);
    transition: color var(--transition);
}

.contact__detail-link:hover {
    color: var(--teal-dark);
    text-decoration: underline;
}

.contact__form-wrap {
    background: var(--white);
    border-radius: 4px;
    padding: 44px;
    box-shadow: 0 4px 24px rgba(30, 42, 52, 0.06);
    border: 1px solid rgba(45, 62, 79, 0.06);
}

.form__group {
    margin-bottom: 24px;
}

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

.form__input,
.form__select,
.form__textarea {
    width: 100%;
    padding: 12px 16px;
    font-family: var(--font-sans);
    font-size: 0.9rem;
    color: var(--slate-dark);
    background: var(--cream);
    border: 1px solid rgba(45, 62, 79, 0.12);
    border-radius: 2px;
    outline: none;
    transition: all var(--transition);
    -webkit-appearance: none;
}

.form__input:focus,
.form__select:focus,
.form__textarea:focus {
    border-color: var(--teal);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(26, 107, 138, 0.08);
}

.form__input::placeholder,
.form__textarea::placeholder {
    color: var(--slate-light);
}

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

.form__select {
    cursor: pointer;
    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='%234a5f73' 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: 40px;
}

.form__success {
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 12px;
    padding: 40px;
    text-align: center;
    color: var(--teal-dark);
}

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

.form__success p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--slate-mid);
}

/* ── Footer ── */
.footer {
    background: var(--slate-dark);
    padding: 64px 0 0;
}

.footer__top {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 48px;
    padding-bottom: 48px;
    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.1rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 12px;
}

.footer__tagline {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.6;
}

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

.footer__links a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

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

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

.footer__contact a {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.55);
    transition: color var(--transition);
}

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

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 24px 0;
    font-size: 0.78rem;
    color: rgba(255, 255, 255, 0.3);
}

/* ── Scroll Animations ── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s cubic-bezier(0.4, 0, 0.2, 1), transform 0.8s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

    .hero__image-accent {
        width: 120px;
        height: 120px;
    }

    .about__grid {
        gap: 48px;
    }

    .contact__grid {
        gap: 48px;
    }
}

@media (max-width: 900px) {
    .hero__grid {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero__subheadline {
        margin-left: auto;
        margin-right: auto;
    }

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image {
        max-width: 500px;
        margin: 0 auto;
    }

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

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

    .about__image-wrap {
        max-width: 480px;
        margin: 0 auto;
    }

    .about__content {
        max-width: 100%;
    }

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

    .testimonials__grid {
        grid-template-columns: 1fr;
        max-width: 600px;
        margin: 0 auto;
    }

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

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

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

    .nav__toggle {
        display: flex;
    }

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

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

    .hero__stats {
        flex-direction: column;
        gap: 16px;
    }

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

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

    .area-card {
        aspect-ratio: 16/10;
    }

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

    .contact__form-wrap {
        padding: 28px;
    }

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

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

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

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

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

    .cta-banner__actions .btn {
        width: 100%;
        max-width: 280px;
    }
}
