/* ========================================
   Grammas Get Up And Go Bars
   Classic & Elegant · Plum + Amber
   ======================================== */

*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

:root {
    --plum-deep: #4A2040;
    --plum: #6B3A5B;
    --plum-light: #8B5A7B;
    --plum-muted: #B89AAF;
    --plum-pale: #F3EBF0;
    --plum-bg: #FBF7FA;
    --amber: #D4A017;
    --amber-light: #E8C04A;
    --amber-pale: #FFF8E7;
    --cream: #FDF9F4;
    --warm-white: #FEFCF9;
    --text-dark: #2A1525;
    --text-body: #4A3545;
    --text-muted: #7A6575;
    --text-light: #A090A0;
    --border: #E8D8E0;
    --shadow-sm: 0 2px 8px rgba(107, 58, 91, 0.06);
    --shadow-md: 0 8px 30px rgba(107, 58, 91, 0.10);
    --shadow-lg: 0 20px 60px rgba(107, 58, 91, 0.12);
    --radius-sm: 8px;
    --radius-md: 14px;
    --radius-lg: 24px;
    --font-display: 'Playfair Display', Georgia, 'Times New Roman', serif;
    --font-body: 'Lora', 'Palatino Linotype', Palatino, serif;
    --transition: 0.35s cubic-bezier(0.4, 0, 0.2, 1);
    --transition-fast: 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

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

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

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

ul {
    list-style: none;
}

/* ========================================
   Typography
   ======================================== */

.section-eyebrow {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1rem;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 500;
    line-height: 1.2;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

.section-heading em {
    font-style: italic;
    color: var(--plum);
}

/* ========================================
   Buttons
   ======================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-body);
    font-size: 0.95rem;
    font-weight: 600;
    padding: 0.9rem 2rem;
    border-radius: 50px;
    transition: all var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--plum);
    color: #fff;
    box-shadow: 0 4px 15px rgba(107, 58, 91, 0.3);
}

.btn--primary:hover {
    background: var(--plum-deep);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(107, 58, 91, 0.35);
}

.btn--ghost {
    background: transparent;
    color: var(--plum);
    border: 1.5px solid var(--plum);
}

.btn--ghost:hover {
    background: var(--plum);
    color: #fff;
    transform: translateY(-2px);
}

.btn--large {
    padding: 1.1rem 2.5rem;
    font-size: 1rem;
}

.btn--sm {
    padding: 0.7rem 1.5rem;
    font-size: 0.85rem;
}

/* ========================================
   Navigation
   ======================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.2rem 0;
    transition: all var(--transition);
}

.nav.scrolled {
    background: rgba(253, 249, 244, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow-sm);
    padding: 0.8rem 0;
}

.nav__inner {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--plum);
}

.nav__logo-text {
    letter-spacing: -0.01em;
}

.nav__links {
    display: flex;
    align-items: center;
    gap: 0.3rem;
}

.nav__link {
    font-family: var(--font-body);
    font-size: 0.9rem;
    color: var(--text-body);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    transition: all var(--transition-fast);
}

.nav__link:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.nav__link--cta {
    background: var(--plum);
    color: #fff !important;
    margin-left: 0.5rem;
}

.nav__link--cta:hover {
    background: var(--plum-deep);
}

.nav__toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 0.5rem;
    z-index: 1001;
}

.nav__toggle-line {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--plum);
    border-radius: 2px;
    transition: all var(--transition-fast);
}

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

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

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

/* ========================================
   Mobile Menu
   ======================================== */

.mobile-menu {
    position: fixed;
    inset: 0;
    z-index: 999;
    background: rgba(253, 249, 244, 0.98);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    opacity: 0;
    visibility: hidden;
    transition: all var(--transition);
}

.mobile-menu.open {
    opacity: 1;
    visibility: visible;
}

.mobile-menu__close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    color: var(--plum);
    padding: 0.5rem;
}

.mobile-menu__links {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.mobile-menu__link {
    font-family: var(--font-display);
    font-size: 1.8rem;
    color: var(--text-dark);
    padding: 0.6rem 1.5rem;
    border-radius: var(--radius-sm);
    transition: all var(--transition-fast);
}

.mobile-menu__link:hover {
    color: var(--plum);
    background: var(--plum-pale);
}

.mobile-menu__link--cta {
    margin-top: 1rem;
    font-family: var(--font-body);
    font-size: 1rem;
    background: var(--plum);
    color: #fff;
    border-radius: 50px;
    padding: 0.9rem 2.5rem;
}

.mobile-menu__link--cta:hover {
    background: var(--plum-deep);
    color: #fff;
}

/* ========================================
   Hero
   ======================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, var(--cream) 0%, var(--plum-pale) 50%, var(--amber-pale) 100%);
    position: relative;
    overflow: hidden;
    padding: 8rem 2rem 4rem;
}

.hero__bg-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: radial-gradient(circle at 2px 2px, var(--plum) 1px, transparent 0);
    background-size: 40px 40px;
    pointer-events: none;
}

.hero__inner {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
    width: 100%;
}

.hero__content {
    max-width: 560px;
}

.hero__eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--amber);
    margin-bottom: 1.5rem;
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 5vw, 4rem);
    font-weight: 500;
    line-height: 1.15;
    color: var(--text-dark);
    margin-bottom: 1.5rem;
}

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

.hero__accent {
    color: var(--amber);
    position: relative;
}

.hero__accent::after {
    content: '';
    position: absolute;
    bottom: 0.05em;
    left: 0;
    right: 0;
    height: 0.15em;
    background: var(--amber-light);
    opacity: 0.3;
    z-index: -1;
    border-radius: 2px;
}

.hero__subheadline {
    font-size: 1.1rem;
    line-height: 1.8;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 480px;
}

.hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
}

/* Image Stack */
.hero__image-col {
    position: relative;
}

.hero__image-stack {
    position: relative;
    height: 600px;
}

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

.hero__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.hero__image--main {
    width: 380px;
    height: 480px;
    right: 0;
    top: 0;
    z-index: 2;
}

.hero__image--accent {
    width: 260px;
    height: 200px;
    left: 0;
    bottom: 40px;
    z-index: 3;
    border: 5px solid var(--warm-white);
}

.hero__image--badge {
    width: 100px;
    height: 100px;
    right: 20px;
    bottom: 0;
    z-index: 4;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hero__badge {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    background: var(--plum);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    color: var(--amber-light);
    font-family: var(--font-body);
    font-size: 0.65rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    box-shadow: var(--shadow-md);
}

/* Scroll Indicator */
.hero__scroll-indicator {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-light);
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    font-family: var(--font-body);
}

/* ========================================
   About
   ======================================== */

.about {
    padding: 8rem 2rem;
    background: var(--warm-white);
}

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

.about__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
}

.about__image-wrap {
    position: relative;
}

.about__image-wrap img {
    width: 100%;
    height: 700px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about__image-accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 200px;
    height: 200px;
    background: var(--plum-pale);
    border-radius: var(--radius-lg);
    z-index: -1;
}

.about__text {
    max-width: 520px;
}

.about__text p {
    margin-bottom: 1.2rem;
    font-size: 1.05rem;
    color: var(--text-body);
}

.about__signature {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid var(--border);
}

.about__signature-text {
    font-family: var(--font-display);
    font-style: italic;
    font-size: 1.1rem;
    color: var(--plum);
}

/* ========================================
   Products
   ======================================== */

.products {
    padding: 8rem 2rem;
    background: var(--plum-bg);
}

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

.products__header {
    text-align: center;
    max-width: 640px;
    margin: 0 auto 4rem;
}

.products__subtitle {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.products__grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: auto auto;
    gap: 1.5rem;
}

.product-card {
    background: var(--warm-white);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
    transition: all var(--transition);
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.product-card--large {
    grid-column: span 7;
}

.product-card--wide {
    grid-column: span 12;
}

.product-card__image {
    overflow: hidden;
    height: 280px;
}

.product-card--large .product-card__image {
    height: 340px;
}

.product-card__image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

.product-card:hover .product-card__image img {
    transform: scale(1.05);
}

.product-card__content {
    padding: 1.8rem 2rem 2rem;
}

.product-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--amber);
    background: var(--amber-pale);
    padding: 0.3rem 0.8rem;
    border-radius: 50px;
    margin-bottom: 0.8rem;
}

.product-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 0.6rem;
}

.product-card__description {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ========================================
   Gallery
   ======================================== */

.gallery {
    padding: 8rem 2rem;
    background: var(--warm-white);
}

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

.gallery__header {
    text-align: center;
    max-width: 600px;
    margin: 0 auto 4rem;
}

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

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

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform var(--transition);
}

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

.gallery__item-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(74, 32, 64, 0.7) 0%, transparent 60%);
    display: flex;
    align-items: flex-end;
    padding: 1.5rem;
    opacity: 0;
    transition: opacity var(--transition);
}

.gallery__item:hover .gallery__item-overlay {
    opacity: 1;
}

.gallery__item-overlay span {
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: #fff;
    font-style: italic;
}

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

.gallery__item--wide {
    grid-column: span 6;
}

/* ========================================
   Visit
   ======================================== */

.visit {
    padding: 8rem 2rem;
    background: linear-gradient(135deg, var(--plum-pale) 0%, var(--cream) 100%);
}

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

.visit__split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.visit__details {
    display: flex;
    flex-direction: column;
    gap: 2rem;
    margin-top: 2.5rem;
}

.visit__detail {
    display: flex;
    align-items: flex-start;
    gap: 1.2rem;
}

.visit__detail-icon {
    flex-shrink: 0;
    width: 52px;
    height: 52px;
    background: var(--warm-white);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--plum);
    box-shadow: var(--shadow-sm);
}

.visit__detail-text {
    display: flex;
    flex-direction: column;
    gap: 0.2rem;
}

.visit__detail-label {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-light);
}

.visit__detail-value {
    font-size: 1rem;
    color: var(--text-body);
    line-height: 1.6;
}

.visit__detail-value a {
    color: var(--plum);
    transition: color var(--transition-fast);
}

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

.visit__map {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    height: 100%;
    min-height: 450px;
}

.visit__map-placeholder {
    width: 100%;
    height: 100%;
    min-height: 450px;
    background: linear-gradient(135deg, var(--plum-pale) 0%, var(--cream) 100%);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    text-align: center;
    padding: 2rem;
}

.visit__map-placeholder p {
    font-family: var(--font-display);
    font-size: 1.2rem;
    color: var(--text-dark);
    line-height: 1.6;
}

/* ========================================
   Contact
   ======================================== */

.contact {
    padding: 8rem 2rem;
    background: var(--warm-white);
}

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

.contact__inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: start;
}

.contact__text {
    max-width: 480px;
}

.contact__text p {
    font-size: 1.05rem;
    color: var(--text-muted);
    line-height: 1.8;
}

.contact__form {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.contact__form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.2rem;
}

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

.form-group__label {
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--text-dark);
    letter-spacing: 0.02em;
}

.form-group__input {
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--text-dark);
    background: var(--plum-bg);
    border: 1.5px solid var(--border);
    border-radius: var(--radius-sm);
    padding: 0.9rem 1.2rem;
    transition: all var(--transition-fast);
    outline: none;
    width: 100%;
}

.form-group__input:focus {
    border-color: var(--plum);
    background: var(--warm-white);
    box-shadow: 0 0 0 4px rgba(107, 58, 91, 0.08);
}

.form-group__input::placeholder {
    color: var(--text-light);
}

.form-group__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='%236B3A5B' stroke-width='2'%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;
}

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

.contact__form-success {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--plum-pale);
    border-radius: var(--radius-sm);
    margin-top: 0.5rem;
}

.contact__form-success p {
    font-size: 0.95rem;
    color: var(--plum);
    margin: 0;
}

/* ========================================
   Footer
   ======================================== */

.footer {
    background: var(--text-dark);
    color: var(--plum-muted);
    padding: 5rem 2rem 2rem;
}

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

.footer__top {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 4rem;
    padding-bottom: 3rem;
    border-bottom: 1px solid rgba(184, 154, 175, 0.2);
}

.footer__brand {
    max-width: 360px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer__tagline {
    font-size: 0.95rem;
    line-height: 1.8;
    color: var(--plum-muted);
}

.footer__links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

.footer__link-group h4 {
    font-family: var(--font-display);
    font-size: 1rem;
    font-weight: 600;
    color: #fff;
    margin-bottom: 1rem;
}

.footer__link-group ul {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}

.footer__link-group a,
.footer__link-group span {
    font-size: 0.9rem;
    color: var(--plum-muted);
    transition: color var(--transition-fast);
}

.footer__link-group a:hover {
    color: var(--amber-light);
}

.footer__bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 2rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

/* ========================================
   Animations
   ======================================== */

.fade-in {
    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);
}

.fade-in.visible {
    opacity: 1;
    transform: translateY(0);
}

.fade-in-delay-1 { transition-delay: 0.1s; }
.fade-in-delay-2 { transition-delay: 0.2s; }
.fade-in-delay-3 { transition-delay: 0.3s; }
.fade-in-delay-4 { transition-delay: 0.4s; }

/* ========================================
   Responsive
   ======================================== */

@media (max-width: 1024px) {
    .hero__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

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

    .hero__subheadline {
        max-width: 100%;
    }

    .hero__actions {
        justify-content: center;
    }

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

    .about__split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about__image-wrap img {
        height: 500px;
    }

    .about__text {
        max-width: 100%;
    }

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

    .product-card--large {
        grid-column: span 2;
    }

    .product-card--wide {
        grid-column: span 2;
    }

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

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

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

    .gallery__item {
        height: 280px;
    }

    .visit__split {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .contact__inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .footer__top {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

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

    .nav__toggle {
        display: flex;
    }

    .hero {
        padding: 7rem 1.5rem 4rem;
        min-height: auto;
    }

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

    .hero__image-stack {
        height: 380px;
    }

    .hero__image--main {
        width: 260px;
        height: 340px;
    }

    .hero__image--accent {
        width: 180px;
        height: 140px;
    }

    .hero__image--badge {
        width: 80px;
        height: 80px;
    }

    .hero__badge {
        width: 80px;
        height: 80px;
        font-size: 0.55rem;
    }

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

    .product-card--large,
    .product-card--wide {
        grid-column: span 1;
    }

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

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

    .gallery__item {
        height: 240px;
    }

    .contact__form-row {
        grid-template-columns: 1fr;
    }

    .footer__links {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

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

@media (max-width: 480px) {
    .hero {
        padding: 6rem 1.2rem 3rem;
    }

    .hero__image-stack {
        height: 320px;
    }

    .hero__image--main {
        width: 200px;
        height: 280px;
    }

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

    .hero__badge {
        width: 70px;
        height: 70px;
        font-size: 0.5rem;
    }

    .about,
    .products,
    .gallery,
    .visit,
    .contact {
        padding: 5rem 1.2rem;
    }

    .section-heading {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
}
