/* ============================================
   The Beauty Shop — Holmen, WI
   Classic & Elegant Beauty Salon Website
   ============================================ */

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

:root {
    --forest: #1B4332;
    --forest-light: #2D6A4F;
    --forest-dark: #0D1F17;
    --cream: #FAF8F5;
    --cream-dark: #F0EDE8;
    --gold: #C8A961;
    --gold-light: #D4BA78;
    --gold-dark: #B08D3F;
    --text-dark: #1A1A1A;
    --text-mid: #4A4A4A;
    --text-light: #6B6B6B;
    --white: #FFFFFF;
    --serif: 'Cormorant Garamond', Georgia, 'Times New Roman', serif;
    --sans: 'Montserrat', 'Helvetica Neue', Arial, sans-serif;
    --shadow-sm: 0 1px 3px rgba(27, 67, 50, 0.06);
    --shadow-md: 0 4px 20px rgba(27, 67, 50, 0.08);
    --shadow-lg: 0 8px 40px rgba(27, 67, 50, 0.12);
    --radius-sm: 4px;
    --radius-md: 8px;
    --radius-lg: 16px;
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--forest);
    color: var(--white);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    z-index: 1000;
    font-size: 0.875rem;
}

.skip-link:focus {
    top: 16px;
}

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

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

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

.section-desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    max-width: 560px;
    line-height: 1.8;
}

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

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

.btn--dark:hover {
    background: var(--forest-dark);
    border-color: var(--forest-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn--gold {
    background: var(--gold);
    color: var(--forest-dark);
    border-color: var(--gold);
}

.btn--gold:hover {
    background: var(--gold-light);
    border-color: var(--gold-light);
    transform: translateY(-2px);
    box-shadow: 0 4px 20px rgba(200, 169, 97, 0.35);
}

.btn--outline {
    background: transparent;
    color: var(--forest);
    border-color: var(--forest);
}

.btn--outline:hover {
    background: var(--forest);
    color: var(--white);
    transform: translateY(-2px);
}

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

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

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

.btn--lg {
    padding: 16px 40px;
    font-size: 0.875rem;
}

/* --- Navbar --- */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(250, 248, 245, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(27, 67, 50, 0.06);
    transition: all var(--transition);
}

.navbar.scrolled {
    background: rgba(250, 248, 245, 0.97);
    box-shadow: var(--shadow-sm);
}

.navbar__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
}

.navbar__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--forest);
}

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

.navbar__logo-text {
    letter-spacing: 0.02em;
}

.navbar__menu {
    display: flex;
    align-items: center;
}

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

.navbar__link {
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--text-mid);
    transition: color var(--transition);
    position: relative;
}

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

.navbar__link:hover {
    color: var(--forest);
}

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

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

.navbar__toggle-bar {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--forest);
    transition: all var(--transition);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(1) {
    transform: rotate(45deg) translate(4px, 5px);
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(2) {
    opacity: 0;
}

.navbar__toggle[aria-expanded="true"] .navbar__toggle-bar:nth-child(3) {
    transform: rotate(-45deg) translate(4px, -5px);
}

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

.hero::before {
    content: '';
    position: absolute;
    top: -20%;
    right: -10%;
    width: 60%;
    height: 140%;
    background: radial-gradient(ellipse, rgba(27, 67, 50, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.hero__container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    padding-top: 40px;
    padding-bottom: 40px;
}

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

.hero__headline {
    font-family: var(--serif);
    font-size: clamp(2.25rem, 4.5vw, 3.5rem);
    font-weight: 400;
    line-height: 1.15;
    color: var(--forest);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

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

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

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

.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(--serif);
    font-size: 1.75rem;
    font-weight: 600;
    color: var(--forest);
    line-height: 1;
}

.hero__trust-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--text-light);
}

.hero__trust-divider {
    width: 1px;
    height: 40px;
    background: rgba(27, 67, 50, 0.15);
}

.hero__image {
    position: relative;
}

.hero__image-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.hero__image-wrapper img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 600/780;
}

.hero__image-accent {
    position: absolute;
    bottom: -20px;
    left: -20px;
    width: 120px;
    height: 120px;
    border: 2px solid var(--gold);
    border-radius: var(--radius-md);
    z-index: -1;
}

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

.services__header {
    text-align: center;
    margin-bottom: 64px;
}

.services__header .section-desc {
    margin: 0 auto;
}

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

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

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: rgba(200, 169, 97, 0.2);
    background: var(--white);
}

.service-card__icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(27, 67, 50, 0.06);
    color: var(--forest);
    margin-bottom: 24px;
    transition: all var(--transition);
}

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

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

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

/* --- About --- */
.about {
    padding: 100px 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.02'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    pointer-events: none;
}

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

.about__images {
    position: relative;
}

.about__img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about__img-main img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 520/640;
}

.about__img-secondary {
    position: absolute;
    bottom: -32px;
    right: -32px;
    border-radius: var(--radius-md);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--forest);
}

.about__img-secondary img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    aspect-ratio: 400/320;
}

.about__img-accent-box {
    position: absolute;
    top: -24px;
    left: -24px;
    background: var(--gold);
    color: var(--forest-dark);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    text-align: center;
    box-shadow: var(--shadow-md);
}

.about__img-accent-num {
    display: block;
    font-family: var(--serif);
    font-size: 0.875rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
}

.about__img-accent-year {
    display: block;
    font-family: var(--serif);
    font-size: 1.5rem;
    font-weight: 700;
    line-height: 1.2;
}

.about__content {
    color: var(--white);
}

.about__content .section-eyebrow {
    color: var(--gold);
}

.about__text {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    margin-bottom: 16px;
}

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

.about__value {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.85);
}

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

/* --- Gallery --- */
.gallery {
    padding: 100px 0;
    background: var(--cream);
}

.gallery__header {
    text-align: center;
    margin-bottom: 48px;
}

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

.gallery__item {
    border-radius: var(--radius-md);
    overflow: hidden;
    position: relative;
}

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

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

.gallery__item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(27, 67, 50, 0.15), transparent 40%);
    pointer-events: none;
    opacity: 0;
    transition: opacity var(--transition);
}

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

.gallery__item--large {
    grid-column: span 7;
    aspect-ratio: 600/500;
}

.gallery__item--tall {
    grid-column: span 5;
    grid-row: span 2;
    aspect-ratio: 400/700;
}

.gallery__item:not(.gallery__item--large):not(.gallery__item--tall) {
    aspect-ratio: 400/350;
}

/* --- CTA Banner --- */
.cta-banner {
    padding: 80px 0;
    background: var(--cream-dark);
    border-top: 1px solid rgba(27, 67, 50, 0.06);
    border-bottom: 1px solid rgba(27, 67, 50, 0.06);
}

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

.cta-banner__eyebrow {
    color: var(--gold-dark);
    margin-bottom: 16px;
}

.cta-banner__title {
    font-family: var(--serif);
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 400;
    color: var(--forest);
    line-height: 1.25;
    margin-bottom: 16px;
}

.cta-banner__desc {
    font-size: 1.05rem;
    color: var(--text-mid);
    margin-bottom: 32px;
}

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

/* --- Visit --- */
.visit {
    padding: 100px 0;
    background: var(--white);
}

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

.visit__info .section-eyebrow {
    margin-bottom: 12px;
}

.visit__details {
    margin-top: 40px;
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.visit__detail {
    display: flex;
    gap: 16px;
}

.visit__detail-icon {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-sm);
    background: rgba(27, 67, 50, 0.06);
    color: var(--forest);
    flex-shrink: 0;
}

.visit__detail strong {
    display: block;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--forest);
    margin-bottom: 4px;
    letter-spacing: 0.04em;
}

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

.visit__detail a {
    color: var(--forest-light);
    transition: color var(--transition);
}

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

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    aspect-ratio: 4/3;
}

.visit__map iframe {
    width: 100%;
    height: 100%;
}

/* --- Contact --- */
.contact {
    padding: 100px 0;
    background: var(--forest);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    bottom: -30%;
    left: -10%;
    width: 50%;
    height: 100%;
    background: radial-gradient(ellipse, rgba(200, 169, 97, 0.05) 0%, transparent 70%);
    pointer-events: none;
}

.contact__layout {
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    position: relative;
    z-index: 1;
}

.contact__content .section-eyebrow {
    color: var(--gold);
}

.contact__content .section-desc {
    color: rgba(255, 255, 255, 0.65);
    margin-bottom: 40px;
}

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

.contact__field {
    margin-bottom: 20px;
}

.contact__label {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.5);
    margin-bottom: 8px;
}

.contact__input,
.contact__select,
.contact__textarea {
    width: 100%;
    padding: 14px 16px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: var(--radius-sm);
    color: var(--white);
    font-family: var(--sans);
    font-size: 0.9375rem;
    transition: all var(--transition);
    outline: none;
}

.contact__input::placeholder,
.contact__textarea::placeholder {
    color: rgba(255, 255, 255, 0.3);
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
    border-color: var(--gold);
    background: rgba(255, 255, 255, 0.1);
}

.contact__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1 L6 6 L11 1' stroke='rgba(255,255,255,0.5)' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
    cursor: pointer;
}

.contact__select option {
    background: var(--forest);
    color: var(--white);
}

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

.contact__success {
    text-align: center;
    padding: 40px;
    color: var(--white);
}

.contact__success h3 {
    font-family: var(--serif);
    font-size: 1.75rem;
    margin: 16px 0 8px;
    color: var(--white);
}

.contact__success p {
    color: rgba(255, 255, 255, 0.65);
}

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

.contact__card {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius-md);
    padding: 32px;
}

.contact__card h3 {
    font-family: var(--serif);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 8px;
}

.contact__card p {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    margin-bottom: 20px;
}

.contact__card-link {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.9375rem;
    color: var(--gold);
    margin-bottom: 12px;
    transition: color var(--transition);
}

.contact__card-link:hover {
    color: var(--gold-light);
}

.contact__card-divider {
    height: 1px;
    background: rgba(255, 255, 255, 0.08);
    margin: 20px 0;
}

.contact__card-note {
    font-size: 0.8125rem !important;
    color: rgba(255, 255, 255, 0.4) !important;
    margin-bottom: 0 !important;
}

.contact__card--accent {
    background: rgba(200, 169, 97, 0.08);
    border-color: rgba(200, 169, 97, 0.2);
}

/* --- Footer --- */
.footer {
    background: var(--forest-dark);
    color: rgba(255, 255, 255, 0.6);
    padding: 64px 0 0;
}

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

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

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

.footer__brand p {
    font-size: 0.9375rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer__links h4,
.footer__contact h4 {
    font-family: var(--sans);
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

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

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

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

.footer__contact p {
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 4px;
}

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

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

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

.footer__bottom a {
    color: rgba(255, 255, 255, 0.35);
    transition: color var(--transition);
}

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

/* --- Scroll Animations --- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

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

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

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

    .gallery__item--tall {
        grid-column: span 6;
        grid-row: span 1;
    }
}

@media (max-width: 768px) {
    .navbar__toggle {
        display: flex;
        z-index: 101;
    }

    .navbar__menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--cream);
        padding: 100px 32px 32px;
        transition: right var(--transition);
        box-shadow: var(--shadow-lg);
    }

    .navbar__menu.open {
        right: 0;
    }

    .navbar__links {
        flex-direction: column;
        align-items: flex-start;
        gap: 24px;
    }

    .navbar__link {
        font-size: 1rem;
    }

    .hero__container {
        grid-template-columns: 1fr;
        gap: 40px;
        text-align: center;
    }

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

    .hero__actions {
        justify-content: center;
    }

    .hero__trust {
        justify-content: center;
    }

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

    .hero__image-accent {
        display: none;
    }

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

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

    .about__img-secondary {
        right: 0;
        bottom: -24px;
    }

    .about__img-accent-box {
        left: 0;
        top: -16px;
    }

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

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

    .gallery__item--tall {
        grid-column: span 2;
    }

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

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

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

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

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

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

    .hero {
        padding-top: 72px;
    }

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

    .hero__actions .btn {
        width: 100%;
    }

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

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

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

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

    .gallery__item--tall {
        grid-column: span 1;
    }

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

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

/* --- Reduced Motion --- */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }

    html {
        scroll-behavior: auto;
    }

    .reveal {
        opacity: 1;
        transform: none;
    }
}
