/* ============================================
   WILLAMETTE MASSAGE — Custom Styles
   Palette: Terracotta (#C2704E) + Sand (#FDF6EE)
   Fonts: DM Serif Display + Nunito
============================================ */

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

:root {
    --color-terracotta: #C2704E;
    --color-terracotta-dark: #A85A3A;
    --color-terracotta-light: #E8A87C;
    --color-sand: #FDF6EE;
    --color-sand-dark: #F5E6D3;
    --color-cream: #FFF9F3;
    --color-text: #3D2B1F;
    --color-text-light: #7A6455;
    --color-white: #FFFFFF;
    --color-border: #E8D5C4;
    --font-display: 'DM Serif Display', Georgia, serif;
    --font-body: 'Nunito', 'Segoe UI', sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(194, 112, 78, 0.08);
    --shadow-md: 0 8px 30px rgba(194, 112, 78, 0.12);
    --shadow-lg: 0 16px 50px rgba(194, 112, 78, 0.15);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

a {
    color: var(--color-terracotta);
    text-decoration: none;
    transition: color var(--transition);
}

a:hover {
    color: var(--color-terracotta-dark);
}

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
    font-family: var(--font-display);
    font-weight: 400;
    line-height: 1.2;
    color: var(--color-text);
}

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

/* ---------- Section Header ---------- */
.section-tag {
    display: inline-block;
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--color-terracotta);
    background: rgba(194, 112, 78, 0.1);
    padding: 6px 16px;
    border-radius: 50px;
    margin-bottom: 16px;
}

.section-tag--light {
    color: var(--color-terracotta-light);
    background: rgba(232, 168, 124, 0.2);
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    margin-bottom: 16px;
}

.section-title--light {
    color: var(--color-text);
}

.section-desc {
    font-size: 1.1rem;
    color: var(--color-text-light);
    max-width: 560px;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: all var(--transition);
    text-decoration: none;
}

.btn--primary {
    background: var(--color-terracotta);
    color: var(--color-white);
    box-shadow: 0 4px 15px rgba(194, 112, 78, 0.35);
}

.btn--primary:hover {
    background: var(--color-terracotta-dark);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(194, 112, 78, 0.4);
}

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

.btn--ghost:hover {
    border-color: var(--color-terracotta);
    background: rgba(194, 112, 78, 0.05);
    transform: translateY(-2px);
}

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

.btn--sm {
    padding: 10px 20px;
    font-size: 0.85rem;
}

/* ---------- Navigation ---------- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 246, 238, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid transparent;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(253, 246, 238, 0.95);
    border-bottom-color: var(--color-border);
    box-shadow: var(--shadow-sm);
}

.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;
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--color-text);
    text-decoration: none;
}

.nav__logo:hover {
    color: var(--color-terracotta);
}

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

.nav__links a {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text-light);
    position: relative;
}

.nav__links a::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-terracotta);
    border-radius: 2px;
    transition: width var(--transition);
}

.nav__links a:hover {
    color: var(--color-terracotta);
}

.nav__links a:hover::after {
    width: 100%;
}

.nav__cta {
    background: var(--color-terracotta);
    color: var(--color-white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 700;
}

.nav__cta::after {
    display: none;
}

.nav__cta:hover {
    background: var(--color-terracotta-dark);
    color: var(--color-white) !important;
    transform: translateY(-1px);
}

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

.nav__toggle span {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--color-text);
    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 {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(253, 246, 238, 0.98);
    backdrop-filter: blur(12px);
    z-index: 999;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 24px;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.5rem;
    color: var(--color-text);
    text-decoration: none;
    transition: color var(--transition);
}

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

.mobile-menu__cta {
    margin-top: 16px;
    background: var(--color-terracotta);
    color: var(--color-white);
    padding: 14px 32px;
    border-radius: 50px;
    font-weight: 700;
    font-size: 1rem;
}

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

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 20% 80%, rgba(194, 112, 78, 0.06) 0%, transparent 50%),
                      radial-gradient(circle at 80% 20%, rgba(232, 168, 124, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--color-terracotta);
    background: var(--color-white);
    padding: 8px 18px;
    border-radius: 50px;
    box-shadow: var(--shadow-sm);
    margin-bottom: 24px;
}

.hero__badge-dot {
    width: 8px;
    height: 8px;
    background: var(--color-terracotta);
    border-radius: 50%;
    animation: pulse 2s infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.hero__headline {
    font-size: clamp(2.8rem, 5.5vw, 4.5rem);
    line-height: 1.08;
    margin-bottom: 24px;
    color: var(--color-text);
}

.hero__sub {
    font-size: 1.15rem;
    color: var(--color-text-light);
    max-width: 480px;
    margin-bottom: 36px;
    line-height: 1.8;
}

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

.hero__visual {
    position: relative;
}

.hero__img-card {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 520/640;
}

.hero__img-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Floating Cards */
.float-card {
    position: absolute;
    background: var(--color-white);
    border-radius: var(--radius-md);
    padding: 16px 20px;
    box-shadow: var(--shadow-md);
    display: flex;
    align-items: center;
    gap: 12px;
    z-index: 2;
    animation: float 4s ease-in-out infinite;
}

.float-card--1 {
    bottom: 60%;
    left: -30px;
    animation-delay: 0s;
}

.float-card--2 {
    top: 25%;
    right: -20px;
    animation-delay: 1.3s;
}

.float-card--3 {
    bottom: 20%;
    right: -10px;
    animation-delay: 2.6s;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.float-card__icon {
    width: 44px;
    height: 44px;
    background: rgba(194, 112, 78, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.float-card__text {
    display: flex;
    flex-direction: column;
}

.float-card__text strong {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--color-text);
    line-height: 1.2;
}

.float-card__text span {
    font-size: 0.78rem;
    color: var(--color-text-light);
    font-weight: 600;
}

/* Hero Wave */
.hero__wave {
    position: absolute;
    bottom: -1px;
    left: 0;
    right: 0;
    line-height: 0;
}

.hero__wave svg {
    width: 100%;
    height: 80px;
}

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

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

.service-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
    border: 1px solid var(--color-border);
}

.service-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
    border-color: var(--color-terracotta-light);
}

.service-card__img {
    position: relative;
    overflow: hidden;
    aspect-ratio: 400/280;
}

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

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

.service-card__overlay {
    position: absolute;
    inset: 0;
    background: rgba(194, 112, 78, 0.7);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity var(--transition);
}

.service-card:hover .service-card__overlay {
    opacity: 1;
}

.service-card__body {
    padding: 28px;
}

.service-card__body h3 {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.service-card__body p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.7;
}

.service-card__benefits {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-card__benefits li {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--color-terracotta);
    background: rgba(194, 112, 78, 0.08);
    padding: 5px 12px;
    border-radius: 50px;
}

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

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

.about__visual {
    position: relative;
}

.about__img-stack {
    position: relative;
    height: 580px;
}

.about__img-main {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    width: 380px;
    height: 480px;
    position: relative;
    z-index: 1;
}

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

.about__img-accent {
    position: absolute;
    bottom: 0;
    right: 0;
    width: 240px;
    height: 240px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    border: 6px solid var(--color-sand);
    z-index: 2;
}

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

.about__experience-badge {
    position: absolute;
    top: 30px;
    right: 40px;
    background: var(--color-terracotta);
    color: var(--color-white);
    border-radius: var(--radius-md);
    padding: 20px 24px;
    text-align: center;
    z-index: 3;
    box-shadow: var(--shadow-md);
}

.about__experience-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.2rem;
    line-height: 1;
}

.about__experience-text {
    display: block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-top: 4px;
    opacity: 0.9;
}

.about__content {
    max-width: 480px;
}

.about__text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 16px;
    line-height: 1.8;
}

.about__highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-top: 32px;
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--color-text);
}

.highlight-item__icon {
    width: 28px;
    height: 28px;
    background: rgba(194, 112, 78, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ---------- Wellness ---------- */
.wellness {
    padding: 100px 0;
    background: var(--color-cream);
    position: relative;
    overflow: hidden;
}

.wellness__bg {
    position: absolute;
    inset: 0;
    background-image: radial-gradient(circle at 10% 50%, rgba(194, 112, 78, 0.05) 0%, transparent 50%),
                      radial-gradient(circle at 90% 50%, rgba(232, 168, 124, 0.06) 0%, transparent 50%);
    pointer-events: none;
}

.wellness-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    position: relative;
    z-index: 1;
}

.wellness-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    border: 1px solid var(--color-border);
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.wellness-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-terracotta), var(--color-terracotta-light));
    opacity: 0;
    transition: opacity var(--transition);
}

.wellness-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
    border-color: transparent;
}

.wellness-card:hover::before {
    opacity: 1;
}

.wellness-card__number {
    font-family: var(--font-display);
    font-size: 2.5rem;
    color: var(--color-sand-dark);
    line-height: 1;
    margin-bottom: 16px;
    transition: color var(--transition);
}

.wellness-card:hover .wellness-card__number {
    color: rgba(194, 112, 78, 0.2);
}

.wellness-card h3 {
    font-size: 1.2rem;
    margin-bottom: 10px;
}

.wellness-card p {
    font-size: 0.9rem;
    color: var(--color-text-light);
    line-height: 1.7;
}

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

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

.contact__text {
    font-size: 1.05rem;
    color: var(--color-text-light);
    margin-bottom: 36px;
    line-height: 1.8;
}

.contact-details {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

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

.contact-item__icon {
    width: 48px;
    height: 48px;
    background: rgba(194, 112, 78, 0.1);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-item strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-terracotta);
    margin-bottom: 4px;
}

.contact-item p {
    font-size: 0.95rem;
    color: var(--color-text);
    line-height: 1.6;
}

.contact-item a {
    color: var(--color-text);
}

.contact-item a:hover {
    color: var(--color-terracotta);
}

/* Contact Form */
.contact-form {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 40px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--color-border);
}

.contact-form__title {
    font-size: 1.5rem;
    margin-bottom: 28px;
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 6px;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 12px 16px;
    border: 2px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.95rem;
    color: var(--color-text);
    background: var(--color-cream);
    transition: all var(--transition);
    outline: none;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--color-terracotta);
    background: var(--color-white);
    box-shadow: 0 0 0 4px rgba(194, 112, 78, 0.1);
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.form-success {
    display: none;
    text-align: center;
    padding: 32px;
    background: rgba(45, 106, 79, 0.05);
    border-radius: var(--radius-md);
    margin-top: 16px;
}

.form-success.show {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
}

.form-success p {
    font-size: 0.95rem;
    color: #2D6A4F;
    font-weight: 600;
}

/* ---------- Map Section ---------- */
.map-section {
    position: relative;
}

.map-section__img {
    width: 100%;
    height: 300px;
    object-fit: cover;
    display: block;
}

.map-section__overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 24px;
}

.map-card {
    background: var(--color-white);
    border-radius: var(--radius-lg);
    padding: 36px 48px;
    text-align: center;
    box-shadow: var(--shadow-lg);
    max-width: 520px;
}

.map-card h3 {
    font-size: 1.4rem;
    margin-bottom: 8px;
}

.map-card p {
    font-size: 0.95rem;
    color: var(--color-text-light);
    margin-bottom: 20px;
}

/* ---------- Footer ---------- */
.footer {
    background: var(--color-text);
    color: rgba(255, 255, 255, 0.7);
    padding: 72px 0 0;
}

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

.footer__brand p {
    margin-top: 16px;
    font-size: 0.9rem;
    line-height: 1.7;
    max-width: 300px;
}

.footer__brand .nav__logo {
    color: var(--color-white);
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-white);
    margin-bottom: 20px;
}

.footer__links ul,
.footer__contact ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

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

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

.footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.88rem;
    line-height: 1.6;
}

.footer__contact a {
    color: rgba(255, 255, 255, 0.6);
}

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

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

.footer__bottom a {
    color: rgba(255, 255, 255, 0.5);
}

.footer__bottom a:hover {
    color: var(--color-terracotta-light);
}

/* ---------- Animations ---------- */
.slide-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

.slide-up.visible {
    opacity: 1;
    transform: translateY(0);
}

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

    .services-grid {
        gap: 24px;
    }

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

    .about__img-stack {
        height: 460px;
    }

    .about__img-main {
        width: 300px;
        height: 380px;
    }

    .about__img-accent {
        width: 180px;
        height: 180px;
    }
}

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

    .nav__toggle {
        display: flex;
    }

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

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

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

    .hero__visual {
        order: -1;
        max-width: 400px;
        margin: 0 auto;
    }

    .hero__img-card {
        aspect-ratio: 400/480;
    }

    .float-card {
        display: none;
    }

    .hero__wave svg {
        height: 50px;
    }

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

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

    .about__visual {
        order: -1;
    }

    .about__img-stack {
        height: 380px;
        margin: 0 auto;
        max-width: 360px;
    }

    .about__img-main {
        width: 100%;
        height: 320px;
    }

    .about__img-accent {
        width: 150px;
        height: 150px;
    }

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

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

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

    .contact-form {
        padding: 28px;
    }

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

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

@media (max-width: 480px) {
    .container {
        padding: 0 16px;
    }

    .hero__actions {
        flex-direction: column;
    }

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

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

    .services,
    .about,
    .wellness,
    .contact {
        padding: 64px 0;
    }
}
