/* ========================================
   Stahlmans at Bear Creek — Styles
   Clean minimalist · Teal + Slate grey
   ======================================== */

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

:root {
    --teal-50: #f0fdfa;
    --teal-100: #ccfbf1;
    --teal-200: #99f6e4;
    --teal-300: #5eead4;
    --teal-400: #2dd4bf;
    --teal-500: #14b8a6;
    --teal-600: #0d9488;
    --teal-700: #0f766e;
    --teal-800: #115e59;
    --teal-900: #134e4a;

    --slate-50: #f8fafc;
    --slate-100: #f1f5f9;
    --slate-200: #e2e8f0;
    --slate-300: #cbd5e1;
    --slate-400: #94a3b8;
    --slate-500: #64748b;
    --slate-600: #475569;
    --slate-700: #334155;
    --slate-800: #1e293b;
    --slate-900: #0f172a;

    --font-serif: 'Cormorant Garamond', Georgia, serif;
    --font-sans: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;

    --space-xs: 0.5rem;
    --space-sm: 1rem;
    --space-md: 1.5rem;
    --space-lg: 2rem;
    --space-xl: 3rem;
    --space-2xl: 4rem;
    --space-3xl: 6rem;
    --space-4xl: 8rem;

    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 0.6s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: var(--font-sans);
    font-weight: 300;
    color: var(--slate-800);
    background-color: #fafaf8;
    line-height: 1.7;
    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;
}

/* --- Typography --- */
h1, h2, h3 {
    font-family: var(--font-serif);
    font-weight: 300;
    line-height: 1.2;
    letter-spacing: -0.01em;
}

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

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

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    text-decoration: none;
    color: var(--slate-800);
}

.nav__logo-mark {
    font-family: var(--font-serif);
    font-size: 1.5rem;
    font-weight: 400;
    color: var(--teal-600);
    line-height: 1;
}

.nav__logo-text {
    font-family: var(--font-serif);
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.02em;
    color: var(--slate-700);
}

.nav__links {
    display: flex;
    align-items: center;
    gap: var(--space-lg);
    list-style: none;
}

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

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

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

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

.nav__link--cta {
    padding: 0.5rem 1.25rem;
    border: 1px solid var(--slate-300);
    border-radius: 100px;
    transition: all var(--transition);
}

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

.nav__link--cta:hover {
    border-color: var(--teal-600);
    color: var(--teal-700);
    background: var(--teal-50);
}

/* Mobile toggle */
.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--slate-700);
    transition: all var(--transition);
    transform-origin: center;
}

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

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

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

/* --- Hero --- */
.hero {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 120px var(--space-lg) var(--space-3xl);
    max-width: 1280px;
    margin: 0 auto;
}

.hero__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
    flex: 1;
}

.hero__eyebrow {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-lg);
}

.hero__headline {
    font-size: clamp(2.25rem, 4.5vw, 3.75rem);
    font-weight: 300;
    line-height: 1.15;
    color: var(--slate-900);
    margin-bottom: var(--space-lg);
    letter-spacing: -0.02em;
}

.hero__headline em {
    font-style: italic;
    color: var(--teal-700);
}

.hero__subhead {
    font-size: 1.0625rem;
    font-weight: 300;
    line-height: 1.8;
    color: var(--slate-500);
    margin-bottom: var(--space-xl);
    max-width: 520px;
}

.hero__actions {
    display: flex;
    gap: var(--space-md);
    flex-wrap: wrap;
}

/* Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 0.8125rem;
    font-weight: 500;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 100px;
    transition: all var(--transition);
    text-decoration: none;
}

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

.btn--primary:hover {
    background: var(--teal-700);
    border-color: var(--teal-700);
    transform: translateY(-1px);
    box-shadow: 0 8px 24px rgba(13, 148, 136, 0.2);
}

.btn--ghost {
    background: transparent;
    color: var(--slate-700);
    border: 1px solid var(--slate-300);
}

.btn--ghost:hover {
    border-color: var(--slate-500);
    color: var(--slate-900);
    transform: translateY(-1px);
}

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

/* Hero image */
.hero__image {
    position: relative;
}

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

.hero__image-frame img {
    width: 100%;
    height: 860px;
    object-fit: cover;
    display: block;
    transition: transform var(--transition-slow);
}

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

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

/* Hero scroll indicator */
.hero__scroll {
    display: flex;
    align-items: center;
    gap: var(--space-sm);
    padding: var(--space-lg) 0 0;
    color: var(--slate-400);
    font-size: 0.6875rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
}

.hero__scroll-line {
    width: 40px;
    height: 1px;
    background: var(--slate-300);
    position: relative;
    overflow: hidden;
}

.hero__scroll-line::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: var(--teal-500);
    animation: scrollLine 2s ease-in-out infinite;
}

@keyframes scrollLine {
    0% { left: -100%; }
    50% { left: 0; }
    100% { left: 100%; }
}

/* --- About --- */
.about {
    padding: var(--space-4xl) var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
}

.about__container {
    max-width: 1280px;
    margin: 0 auto;
}

.about__label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-2xl);
}

.about__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.about__headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: var(--space-xl);
    line-height: 1.2;
}

.about__body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--slate-500);
    margin-bottom: var(--space-md);
}

.about__image-group {
    position: relative;
    padding-top: var(--space-xl);
}

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

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

.about__image-secondary {
    position: absolute;
    bottom: 0;
    right: -40px;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.1);
    border: 4px solid #fafaf8;
}

.about__image-secondary img {
    width: 400px;
    height: 300px;
    object-fit: cover;
    display: block;
}

/* --- Divider --- */
.divider {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 var(--space-lg);
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

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

.divider__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--teal-400);
    flex-shrink: 0;
}

/* --- Offerings --- */
.offerings {
    padding: var(--space-4xl) var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
}

.offerings__container {
    max-width: 1280px;
    margin: 0 auto;
}

.offerings__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.offerings__eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-sm);
}

.offerings__headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: var(--space-md);
}

.offerings__subhead {
    font-size: 1.0625rem;
    font-weight: 300;
    color: var(--slate-400);
    max-width: 480px;
    margin: 0 auto;
}

.offerings__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-lg);
}

.offering {
    padding: var(--space-xl);
    border: 1px solid var(--slate-200);
    border-radius: 4px;
    transition: all var(--transition);
    position: relative;
    overflow: hidden;
}

.offering::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--teal-500);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform var(--transition);
}

.offering:hover {
    border-color: var(--teal-200);
    box-shadow: 0 12px 40px rgba(13, 148, 136, 0.06);
    transform: translateY(-4px);
}

.offering:hover::before {
    transform: scaleX(1);
}

.offering__number {
    font-family: var(--font-serif);
    font-size: 2.5rem;
    font-weight: 300;
    color: var(--slate-200);
    line-height: 1;
    margin-bottom: var(--space-md);
    transition: color var(--transition);
}

.offering:hover .offering__number {
    color: var(--teal-200);
}

.offering__icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--slate-200);
    border-radius: 50%;
    margin-bottom: var(--space-md);
    color: var(--teal-600);
    transition: all var(--transition);
}

.offering:hover .offering__icon {
    border-color: var(--teal-300);
    background: var(--teal-50);
}

.offering__title {
    font-family: var(--font-serif);
    font-size: 1.375rem;
    font-weight: 400;
    color: var(--slate-800);
    margin-bottom: var(--space-sm);
}

.offering__desc {
    font-size: 0.875rem;
    font-weight: 300;
    line-height: 1.75;
    color: var(--slate-500);
}

/* --- Craft --- */
.craft {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--slate-900);
    margin: var(--space-3xl) 0;
}

.craft__container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: center;
}

.craft__eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-400);
    margin-bottom: var(--space-lg);
}

.craft__headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: white;
    margin-bottom: var(--space-xl);
    line-height: 1.2;
}

.craft__headline em {
    font-style: italic;
    color: var(--teal-300);
}

.craft__body {
    font-size: 1rem;
    font-weight: 300;
    line-height: 1.85;
    color: var(--slate-400);
    margin-bottom: var(--space-md);
}

.craft__image {
    border-radius: 4px;
    overflow: hidden;
}

.craft__image img {
    width: 100%;
    height: 780px;
    object-fit: cover;
    display: block;
    filter: brightness(0.9);
    transition: filter var(--transition-slow);
}

.craft__image:hover img {
    filter: brightness(1);
}

/* --- Visit --- */
.visit {
    padding: var(--space-4xl) var(--space-lg);
    max-width: 1280px;
    margin: 0 auto;
}

.visit__container {
    max-width: 1280px;
    margin: 0 auto;
}

.visit__header {
    text-align: center;
    margin-bottom: var(--space-3xl);
}

.visit__eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-sm);
}

.visit__headline {
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 300;
    color: var(--slate-900);
}

.visit__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-3xl);
    align-items: start;
}

.visit__info {
    display: flex;
    flex-direction: column;
    gap: var(--space-xl);
}

.visit__detail {
    padding-bottom: var(--space-lg);
    border-bottom: 1px solid var(--slate-200);
}

.visit__detail:last-of-type {
    border-bottom: none;
}

.visit__detail-label {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-xs);
}

.visit__detail-value {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--slate-700);
    line-height: 1.6;
}

.visit__detail-value a {
    color: var(--slate-700);
    transition: color var(--transition);
}

.visit__detail-value a:hover {
    color: var(--teal-600);
}

.visit__hours-note {
    display: block;
    font-family: var(--font-sans);
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--slate-400);
    margin-top: var(--space-xs);
}

.visit__map {
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.08);
}

.visit__map iframe {
    width: 100%;
    height: 480px;
    display: block;
}

/* --- Contact --- */
.contact {
    padding: var(--space-4xl) var(--space-lg);
    background: var(--slate-50);
    border-top: 1px solid var(--slate-100);
}

.contact__container {
    max-width: 800px;
    margin: 0 auto;
}

.contact__content {
    text-align: center;
    margin-bottom: var(--space-2xl);
}

.contact__eyebrow {
    font-size: 0.6875rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--teal-600);
    margin-bottom: var(--space-sm);
}

.contact__headline {
    font-size: clamp(2rem, 3.5vw, 2.75rem);
    font-weight: 300;
    color: var(--slate-900);
    margin-bottom: var(--space-md);
}

.contact__body {
    font-size: 1rem;
    font-weight: 300;
    color: var(--slate-500);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.8;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: var(--space-md);
}

.contact__row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-md);
}

.contact__field {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.contact__label {
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--slate-500);
}

.contact__input {
    font-family: var(--font-sans);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--slate-800);
    padding: 0.875rem 1rem;
    border: 1px solid var(--slate-200);
    border-radius: 4px;
    background: white;
    transition: all var(--transition);
    outline: none;
    width: 100%;
}

.contact__input:focus,
.contact__select:focus,
.contact__textarea:focus {
    border-color: var(--teal-400);
    box-shadow: 0 0 0 3px rgba(20, 184, 166, 0.08);
}

.contact__input::placeholder {
    color: var(--slate-300);
}

.contact__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 24 24' fill='none' stroke='%2394a3b8' 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 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

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

.contact__success {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1.25rem;
    background: var(--teal-50);
    border: 1px solid var(--teal-200);
    border-radius: 4px;
    color: var(--teal-700);
    font-size: 0.9375rem;
    font-weight: 400;
    margin-top: var(--space-sm);
}

.contact__success svg {
    flex-shrink: 0;
    color: var(--teal-500);
}

/* --- Footer --- */
.footer {
    background: var(--slate-900);
    padding: var(--space-3xl) var(--space-lg) var(--space-lg);
}

.footer__inner {
    max-width: 1280px;
    margin: 0 auto;
}

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: var(--space-2xl);
    padding-bottom: var(--space-2xl);
    border-bottom: 1px solid var(--slate-800);
}

.footer__brand {
    display: flex;
    flex-direction: column;
    gap: var(--space-sm);
}

.footer__logo-mark {
    font-family: var(--font-serif);
    font-size: 2rem;
    font-weight: 400;
    color: var(--teal-400);
    line-height: 1;
}

.footer__logo-text {
    font-family: var(--font-serif);
    font-size: 1.25rem;
    font-weight: 400;
    color: var(--slate-200);
}

.footer__tagline {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--slate-500);
    line-height: 1.7;
    margin-top: var(--space-xs);
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__links a {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--slate-400);
    transition: color var(--transition);
}

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

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer__contact a {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--slate-400);
    transition: color var(--transition);
}

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

.footer__contact span {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--slate-500);
    line-height: 1.6;
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: var(--space-lg);
    font-size: 0.75rem;
    font-weight: 300;
    color: var(--slate-600);
}

/* --- 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.revealed {
    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: var(--space-2xl);
    }

    .hero__image-frame img {
        height: 640px;
    }

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

    .about__image-secondary {
        right: -20px;
    }

    .about__image-secondary img {
        width: 280px;
        height: 210px;
    }
}

@media (max-width: 768px) {
    .nav__toggle {
        display: flex;
    }

    .nav__links {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: rgba(250, 250, 248, 0.98);
        backdrop-filter: blur(20px);
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: var(--space-xl);
        transition: right var(--transition);
        box-shadow: -10px 0 40px rgba(0,0,0,0.1);
    }

    .nav__links.open {
        right: 0;
    }

    .hero {
        padding-top: 100px;
    }

    .hero__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .hero__image {
        order: -1;
    }

    .hero__image-frame img {
        height: 480px;
    }

    .hero__image-accent {
        display: none;
    }

    .hero__scroll {
        display: none;
    }

    .about__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .about__image-group {
        padding-top: 0;
        order: -1;
    }

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

    .about__image-secondary {
        position: relative;
        right: 0;
        bottom: 0;
        margin-top: var(--space-sm);
        box-shadow: none;
        border: 2px solid #fafaf8;
    }

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

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

    .craft__container {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .craft__image img {
        height: 480px;
    }

    .visit__grid {
        grid-template-columns: 1fr;
        gap: var(--space-2xl);
    }

    .visit__map iframe {
        height: 320px;
    }

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

    .footer__top {
        grid-template-columns: 1fr;
        gap: var(--space-xl);
    }

    .footer__bottom {
        flex-direction: column;
        gap: var(--space-xs);
        text-align: center;
    }
}

@media (max-width: 480px) {
    html {
        font-size: 15px;
    }

    .hero {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }

    .hero__actions {
        flex-direction: column;
    }

    .btn {
        width: 100%;
        text-align: center;
    }

    .offerings,
    .about,
    .visit {
        padding-left: var(--space-md);
        padding-right: var(--space-md);
    }
}
