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

:root {
    --emerald-900: #042f23;
    --emerald-800: #064e3b;
    --emerald-700: #065f46;
    --emerald-600: #047857;
    --emerald-500: #10b981;
    --cream-50: #faf9f6;
    --cream-100: #f5f3ed;
    --cream-200: #e8e4d8;
    --cream-300: #d4cfc0;
    --gold: #c9a96e;
    --gold-light: #d4b87a;
    --text-primary: #1a1a1a;
    --text-secondary: #4a4a4a;
    --text-muted: #7a7a7a;
    --white: #ffffff;
    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', system-ui, sans-serif;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--text-primary);
    background: var(--cream-50);
    line-height: 1.6;
    font-size: 15px;
    overflow-x: hidden;
}

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

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

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

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

/* ── Typography ───────────────────────────────────── */
.section__eyebrow {
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 11px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--emerald-600);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-serif);
    font-weight: 400;
    font-size: clamp(28px, 4vw, 48px);
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 20px;
    letter-spacing: -0.01em;
}

.section__subtitle {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 540px;
    font-weight: 300;
}

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

.section-header--center .section__subtitle {
    margin: 0 auto;
}

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-sans);
    font-weight: 400;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 14px 28px;
    border-radius: 2px;
    transition: all 0.3s var(--ease-smooth);
    white-space: nowrap;
}

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

.btn--primary:hover {
    background: var(--emerald-700);
    border-color: var(--emerald-700);
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(6, 78, 59, 0.25);
}

.btn--ghost {
    background: transparent;
    color: var(--emerald-800);
    border: 1px solid var(--emerald-800);
}

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

.btn--ghost.btn--small {
    padding: 10px 20px;
    font-size: 12px;
}

.btn--outline {
    background: transparent;
    color: var(--emerald-800);
    border: 1px solid var(--cream-300);
    padding: 12px 24px;
}

.btn--outline:hover {
    border-color: var(--emerald-800);
    background: var(--cream-100);
}

.btn--full {
    width: 100%;
    justify-content: center;
    padding: 16px 28px;
}

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(250, 249, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    border-bottom-color: var(--cream-200);
    box-shadow: 0 1px 0 rgba(0,0,0,0.04);
}

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

.nav__logo {
    display: flex;
    align-items: center;
    gap: 10px;
}

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--emerald-800);
    letter-spacing: 0.02em;
}

.nav__logo-text {
    font-family: var(--font-sans);
    font-size: 12px;
    font-weight: 400;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--text-muted);
}

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

.nav__link {
    font-size: 13px;
    font-weight: 400;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-secondary);
    transition: color 0.2s ease;
    position: relative;
}

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

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

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

.nav__link--cta {
    padding: 10px 20px;
    border: 1px solid var(--emerald-800);
    color: var(--emerald-800);
    transition: all 0.3s ease;
}

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

.nav__link--cta:hover {
    background: var(--emerald-800);
    color: var(--white);
}

.nav__toggle {
    display: none;
    padding: 8px;
    color: var(--text-primary);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: var(--emerald-900);
}

.hero__bg {
    position: absolute;
    inset: 0;
    background: 
        url('https://images.pexels.com/photos/10047588/pexels-photo-10047588.jpeg?auto=compress&cs=tinysrgb&fit=crop&w=1920&h=1080') center center / cover no-repeat;
    opacity: 0.35;
    transform: scale(1.02);
}

.hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(4, 47, 35, 0.92) 0%,
        rgba(6, 78, 59, 0.82) 50%,
        rgba(4, 47, 35, 0.88) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    max-width: 1200px;
    margin: 0 auto;
    padding: 120px 24px 80px;
    display: grid;
    grid-template-columns: 1fr 380px;
    gap: 60px;
    align-items: center;
}

.hero__eyebrow {
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
    font-weight: 400;
}

.hero__headline {
    font-family: var(--font-serif);
    font-size: clamp(36px, 5vw, 64px);
    font-weight: 300;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 28px;
    letter-spacing: -0.015em;
}

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

.hero__subheadline {
    font-size: 16px;
    line-height: 1.75;
    color: rgba(250, 249, 246, 0.7);
    max-width: 480px;
    margin-bottom: 40px;
    font-weight: 300;
}

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

.hero__actions .btn--ghost {
    color: var(--white);
    border-color: rgba(250, 249, 246, 0.3);
}

.hero__actions .btn--ghost:hover {
    background: var(--white);
    color: var(--emerald-900);
    border-color: var(--white);
}

/* ── Hero Stat Cards ─────────────────────────────── */
.hero__cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.stat-card {
    background: rgba(255, 255, 255, 0.07);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    padding: 24px 28px;
    display: flex;
    align-items: center;
    gap: 18px;
    transition: all 0.3s var(--ease-smooth);
}

.stat-card:hover {
    background: rgba(255, 255, 255, 0.11);
    border-color: rgba(255, 255, 255, 0.18);
    transform: translateX(4px);
}

.stat-card--main {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}

.stat-card--main .stat-card__number {
    font-family: var(--font-serif);
    font-size: 32px;
    font-weight: 400;
    color: var(--gold);
}

.stat-card__icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--gold-light);
    flex-shrink: 0;
}

.stat-card__number {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 400;
    color: var(--white);
    line-height: 1;
}

.stat-card__label {
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.55);
    font-weight: 400;
}

/* ── Hero Scroll ──────────────────────────────────── */
.hero__scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    color: rgba(250, 249, 246, 0.4);
    font-size: 10px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(to bottom, rgba(250,249,246,0.4), transparent);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0%, 100% { opacity: 0.4; transform: scaleY(1); }
    50% { opacity: 1; transform: scaleY(1.2); }
}

/* ── Divider ──────────────────────────────────────── */
.divider {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.divider__line {
    flex: 1;
    height: 1px;
    background: var(--cream-200);
}

.divider__dot {
    width: 5px;
    height: 5px;
    border-radius: 50%;
    background: var(--emerald-500);
    flex-shrink: 0;
}

/* ── Rooms ────────────────────────────────────────── */
.rooms {
    padding: 120px 0;
    background: var(--cream-50);
}

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

.section-header .section__subtitle {
    margin-top: 16px;
}

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

.room-card {
    background: var(--white);
    border-radius: 4px;
    overflow: hidden;
    border: 1px solid var(--cream-200);
    transition: all 0.4s var(--ease-out);
}

.room-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.08);
    border-color: transparent;
}

.room-card--featured {
    border-color: var(--emerald-800);
}

.room-card__image {
    position: relative;
    overflow: hidden;
    aspect-ratio: 6/4;
}

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

.room-card:hover .room-card__image img {
    transform: scale(1.04);
}

.room-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--emerald-800);
    color: var(--white);
    font-size: 10px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 12px;
    border-radius: 2px;
    font-weight: 500;
}

.room-card__body {
    padding: 28px;
}

.room-card__name {
    font-family: var(--font-serif);
    font-size: 22px;
    font-weight: 500;
    margin-bottom: 10px;
    color: var(--text-primary);
    letter-spacing: -0.01em;
}

.room-card__desc {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

.room-card__amenities {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px 16px;
    margin-bottom: 24px;
}

.room-card__amenities li {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 400;
}

.room-card__amenities li svg {
    color: var(--emerald-600);
    flex-shrink: 0;
}

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

.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: 100%;
    object-fit: cover;
    border-radius: 4px;
}

.about__image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 60%;
    height: 40%;
    border: 1px solid var(--emerald-600);
    border-radius: 4px;
    z-index: -1;
    opacity: 0.3;
}

.about__content {
    padding: 20px 0;
}

.about__text {
    font-size: 15px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-weight: 300;
}

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

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

.feature-item__icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-300);
    border-radius: 50%;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.feature-item__title {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-primary);
    display: block;
    margin-bottom: 2px;
}

.feature-item__desc {
    font-size: 13px;
    color: var(--text-muted);
    font-weight: 300;
}

/* ── Location ─────────────────────────────────────── */
.location {
    padding: 120px 0;
    background: var(--cream-50);
}

.location__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    margin-top: 64px;
    align-items: start;
}

.location__map-placeholder {
    background: var(--cream-100);
    border: 1px solid var(--cream-200);
    border-radius: 4px;
    padding: 60px 40px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    min-height: 360px;
    justify-content: center;
}

.location__map-icon {
    color: var(--emerald-600);
    opacity: 0.6;
}

.location__map-text {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 400;
    color: var(--text-primary);
    line-height: 1.5;
}

.location__card {
    display: flex;
    align-items: flex-start;
    gap: 16px;
    padding: 28px;
    background: var(--white);
    border: 1px solid var(--cream-200);
    border-radius: 4px;
    margin-bottom: 16px;
    transition: all 0.3s ease;
}

.location__card:last-child {
    margin-bottom: 0;
}

.location__card:hover {
    border-color: var(--emerald-600);
    box-shadow: 0 4px 20px rgba(6, 78, 59, 0.08);
}

.location__card-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--cream-200);
    border-radius: 50%;
    color: var(--emerald-700);
    flex-shrink: 0;
}

.location__card-title {
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.location__card-text {
    font-size: 14px;
    line-height: 1.7;
    color: var(--text-secondary);
    font-weight: 300;
}

/* ── Contact ──────────────────────────────────────── */
.contact {
    padding: 120px 0;
    background: var(--emerald-900);
    color: var(--white);
}

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

.contact .section__eyebrow {
    color: var(--gold);
}

.contact .section__title {
    color: var(--white);
}

.contact__desc {
    font-size: 15px;
    line-height: 1.75;
    color: rgba(250, 249, 246, 0.6);
    margin-top: 16px;
    margin-bottom: 40px;
    font-weight: 300;
}

.contact__methods {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.contact__method {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 20px 24px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 4px;
    transition: all 0.3s ease;
}

.contact__method:hover {
    border-color: rgba(255, 255, 255, 0.25);
    background: rgba(255, 255, 255, 0.05);
}

.contact__method-icon {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50%;
    color: var(--gold-light);
    flex-shrink: 0;
}

.contact__method-label {
    font-size: 11px;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.45);
    display: block;
    margin-bottom: 4px;
}

.contact__method-value {
    font-size: 15px;
    color: var(--white);
    font-weight: 400;
    line-height: 1.5;
}

/* ── Form ─────────────────────────────────────────── */
.contact__form-wrap {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 4px;
    padding: 40px;
}

.form__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form__group {
    margin-bottom: 20px;
}

.form__label {
    display: block;
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.5);
    margin-bottom: 8px;
    font-weight: 400;
}

.form__input {
    width: 100%;
    padding: 12px 16px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    color: var(--white);
    font-family: var(--font-sans);
    font-size: 14px;
    font-weight: 300;
    transition: all 0.2s ease;
    outline: none;
}

.form__input::placeholder {
    color: rgba(250, 249, 246, 0.3);
}

.form__input:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 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 12 12' fill='none' stroke='%23d4cfc0' stroke-width='1.3'%3E%3Cpath d='M3 5l3 3 3-3'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 14px center;
    padding-right: 36px;
    cursor: pointer;
}

.form__select option {
    background: var(--emerald-900);
    color: var(--white);
}

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

.contact__success {
    display: none;
    text-align: center;
    padding: 60px 40px;
}

.contact__success.active {
    display: block;
}

.contact__success-icon {
    width: 64px;
    height: 64px;
    margin: 0 auto 24px;
    border: 1px solid var(--emerald-500);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--emerald-500);
}

.contact__success-title {
    font-family: var(--font-serif);
    font-size: 28px;
    font-weight: 400;
    color: var(--white);
    margin-bottom: 12px;
}

.contact__success-text {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.6);
    font-weight: 300;
}

/* ── Footer ───────────────────────────────────────── */
.footer {
    background: #031f17;
    padding: 64px 0 0;
    color: var(--white);
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-mark {
    font-family: var(--font-serif);
    font-size: 20px;
    font-weight: 600;
    color: var(--white);
}

.footer__logo-text {
    font-size: 12px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.5);
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.7;
    color: rgba(250, 249, 246, 0.45);
    max-width: 280px;
    font-weight: 300;
}

.footer__heading {
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(250, 249, 246, 0.4);
    margin-bottom: 20px;
    font-weight: 400;
}

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

.footer__link {
    font-size: 14px;
    color: rgba(250, 249, 246, 0.6);
    font-weight: 300;
    transition: color 0.2s ease;
    line-height: 1.5;
}

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

.footer__link--static {
    cursor: default;
}

.footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.07);
    padding: 24px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.footer__bottom p {
    font-size: 13px;
    color: rgba(250, 249, 246, 0.3);
    font-weight: 300;
}

/* ── Mobile Menu ──────────────────────────────────── */
.nav__links.open {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    background: rgba(250, 249, 246, 0.98);
    backdrop-filter: blur(16px);
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--cream-200);
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.nav__links.open .nav__link--cta {
    text-align: center;
}

/* ── Scroll Animations ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    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; }

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        gap: 48px;
    }

    .hero__cards {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .stat-card {
        flex: 1;
        min-width: 140px;
    }

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

    .about__grid {
        gap: 48px;
    }

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

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

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

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

    .nav__toggle {
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .hero__content {
        padding: 100px 24px 100px;
    }

    .hero__cards {
        flex-direction: column;
    }

    .stat-card {
        min-width: auto;
    }

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

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

    .about__image-wrap {
        order: -1;
    }

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

    .contact__form-wrap {
        padding: 28px;
    }

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

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

    .hero__scroll {
        display: none;
    }
}

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

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

    .btn {
        padding: 12px 20px;
        font-size: 12px;
    }
}
