/* ============================================
   GRANO LAKESIDE LOUNGE — STYLESHEET
   Vibrant modern | Terracotta + Sand
   ============================================ */

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

:root {
    --terracotta: #C05A43;
    --terracotta-dark: #A04835;
    --terracotta-light: #D4785F;
    --sand: #E8D5C0;
    --sand-light: #F5EDE3;
    --sand-dark: #C4A882;
    --cream: #FDF8F3;
    --charcoal: #2C2420;
    --charcoal-light: #4A3F38;
    --warm-white: #FFF9F5;
    --white: #FFFFFF;
    --font-display: 'Playfair Display', Georgia, serif;
    --font-body: 'Inter', system-ui, sans-serif;
    --radius-sm: 8px;
    --radius-md: 16px;
    --radius-lg: 24px;
    --radius-xl: 32px;
    --shadow-sm: 0 2px 8px rgba(44, 36, 32, 0.08);
    --shadow-md: 0 8px 30px rgba(44, 36, 32, 0.12);
    --shadow-lg: 0 20px 60px rgba(44, 36, 32, 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(--charcoal);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

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

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

ul {
    list-style: none;
}

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

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

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

/* --- SECTION LABELS & TITLES --- */
.section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--terracotta);
    background: var(--sand);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 16px;
}

.section-label--light {
    color: var(--sand);
    background: rgba(255, 255, 255, 0.2);
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    line-height: 1.15;
    color: var(--charcoal);
    margin-bottom: 20px;
}

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

.text-accent {
    color: var(--terracotta);
}

.text-accent-light {
    color: var(--sand);
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--charcoal-light);
    max-width: 520px;
    line-height: 1.7;
}

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

.section-header--light {
    margin-bottom: 56px;
}

/* --- BUTTONS --- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    padding: 14px 28px;
    border-radius: var(--radius-md);
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    white-space: nowrap;
}

.btn--primary {
    background: var(--terracotta);
    color: var(--white);
    border-color: var(--terracotta);
}

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

.btn--secondary {
    background: var(--white);
    color: var(--charcoal);
    border-color: var(--white);
}

.btn--secondary:hover {
    background: var(--sand-light);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.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(--charcoal);
    border-color: var(--white);
    transform: translateY(-2px);
}

.btn--lg {
    padding: 18px 36px;
    font-size: 1.05rem;
    border-radius: var(--radius-lg);
}

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

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

/* --- NAV --- */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(253, 248, 243, 0.9);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(192, 90, 67, 0.1);
    transition: var(--transition);
}

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

.nav__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--charcoal);
}

.nav__logo {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 0.05em;
}

.nav__name {
    display: none;
}

.nav__list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav__link {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--charcoal-light);
    padding: 8px 16px;
    border-radius: var(--radius-sm);
    transition: var(--transition);
}

.nav__link:hover {
    color: var(--terracotta);
    background: var(--sand-light);
}

.nav__link--cta {
    background: var(--terracotta);
    color: var(--white) !important;
    margin-left: 8px;
}

.nav__link--cta:hover {
    background: var(--terracotta-dark);
}

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

.nav__bar {
    display: block;
    width: 24px;
    height: 2px;
    background: var(--charcoal);
    border-radius: 2px;
    transition: var(--transition);
}

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

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

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

/* --- HERO --- */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #C05A43 0%, #D4785F 30%, #E8A87C 60%, #E8D5C0 100%);
    padding: 120px 24px 80px;
}

.hero__bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}

.hero__shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.15;
}

.hero__shape--1 {
    width: 600px;
    height: 600px;
    background: var(--sand);
    top: -200px;
    right: -100px;
}

hero__shape--2 {
    width: 400px;
    height: 400px;
    background: var(--white);
    bottom: -100px;
    left: -50px;
}

.hero__shape--3 {
    width: 200px;
    height: 200px;
    background: var(--charcoal);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.05;
}

.hero__content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, 0.2);
    color: var(--white);
    padding: 8px 20px;
    border-radius: 100px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 24px;
    backdrop-filter: blur(8px);
}

.hero__headline {
    font-family: var(--font-display);
    font-size: clamp(2.25rem, 5.5vw, 4rem);
    font-weight: 700;
    line-height: 1.1;
    color: var(--white);
    margin-bottom: 24px;
}

.hero__highlight {
    display: block;
    font-style: italic;
    font-weight: 400;
    opacity: 0.9;
}

.hero__subhead {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

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

.hero__stats {
    display: flex;
    align-items: center;
    gap: 24px;
}

.hero__stat {
    display: flex;
    flex-direction: column;
}

.hero__stat-num {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--white);
    line-height: 1;
}

.hero__stat-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-top: 4px;
}

.hero__stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

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

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

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

.hero__img--1 {
    width: 280px;
    height: 360px;
    top: 0;
    right: 40px;
    z-index: 3;
}

hero__img--2 {
    width: 220px;
    height: 280px;
    top: 120px;
    right: 0;
    z-index: 2;
}

.hero__img--3 {
    width: 200px;
    height: 250px;
    bottom: 0;
    right: 80px;
    z-index: 1;
}

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

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

.about__visual {
    position: relative;
}

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

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

.about__accent {
    position: absolute;
    bottom: -30px;
    right: -30px;
    width: 100px;
    height: 100px;
    background: var(--terracotta);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    opacity: 0.8;
}

.about__text {
    padding: 20px 0;
}

.about__body {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 20px;
}

.about__features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.about__feature {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 500;
    color: var(--charcoal);
}

.about__feature-icon {
    width: 40px;
    height: 40px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

/* --- PRODUCTS --- */
.products {
    padding: 120px 0;
    background: var(--sand-light);
    position: relative;
    overflow: hidden;
}

.products__deco {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.products__circle {
    position: absolute;
    border-radius: 50%;
    border: 2px solid rgba(192, 90, 67, 0.1);
}

.products__circle--1 {
    width: 400px;
    height: 400px;
    top: -100px;
    left: -100px;
}

products__circle--2 {
    width: 300px;
    height: 300px;
    bottom: -80px;
    right: -80px;
}

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

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

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

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

.product-card:not(.product-card--featured) {
    grid-column: span 5;
}

.product-card__img {
    position: relative;
    overflow: hidden;
    height: 260px;
}

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

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

.product-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    background: var(--terracotta);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
}

product-card__body {
    padding: 28px;
}

product-card__title {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 10px;
}

product-card__desc {
    font-size: 0.95rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* --- SPECIALS --- */
.specials {
    padding: 120px 0;
    background: var(--terracotta);
    position: relative;
    overflow: hidden;
}

.specials__bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.specials__shape {
    position: absolute;
    opacity: 0.08;
}

.specials__shape--circle {
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: var(--white);
    top: -50px;
    right: 10%;
}

specials__shape--triangle {
    width: 0;
    height: 0;
    border-left: 100px solid transparent;
    border-right: 100px solid transparent;
    border-bottom: 173px solid var(--white);
    bottom: 20px;
    left: 5%;
}

.specials__shape--rect {
    width: 120px;
    height: 120px;
    background: var(--sand);
    bottom: 40px;
    right: 15%;
    border-radius: var(--radius-md);
    transform: rotate(30deg);
}

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

.special-card {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: var(--radius-lg);
    padding: 40px 32px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}

special-card:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
}

special-card--sand {
    background: var(--sand);
    border-color: var(--sand);
}

special-card--sand:hover {
    background: #f0dfce;
}

special-card__day {
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--sand);
    margin-bottom: 12px;
}

special-card--sand .special-card__day {
    color: var(--terracotta);
}

special-card__title {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 12px;
}

special-card--sand .special-card__title {
    color: var(--charcoal);
}

special-card__desc {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
}

special-card--sand .special-card__desc {
    color: var(--charcoal-light);
}

special-card__accent-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--sand);
    opacity: 0.5;
}

special-card--sand .special-card__accent-bar {
    background: var(--terracotta);
    opacity: 0.5;
}

/* --- VISIT --- */
.visit {
    padding: 120px 0;
    background: var(--cream);
}

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

visit__detail {
    display: flex;
    gap: 20px;
    margin-bottom: 32px;
}

visit__detail-icon {
    width: 52px;
    height: 52px;
    background: var(--sand);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

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

visit__detail p {
    font-size: 1.05rem;
    color: var(--charcoal);
    line-height: 1.6;
}

visit__detail a {
    color: var(--charcoal);
    transition: var(--transition);
}

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

visit__map {
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: var(--shadow-md);
}

visit__map-placeholder {
    background: var(--sand);
    padding: 60px 40px;
    text-align: center;
    min-height: 400px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 16px;
}

visit__map-icon {
    width: 72px;
    height: 72px;
    background: var(--terracotta);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
}

visit__map-text {
    font-family: var(--font-display);
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--charcoal);
}

/* --- CTA --- */
.cta {
    padding: 120px 0;
    background: linear-gradient(135deg, #2C2420 0%, #4A3F38 100%);
    position: relative;
    overflow: hidden;
}

cta__shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

cta__shape {
    position: absolute;
    border-radius: 50%;
}

cta__shape--1 {
    width: 400px;
    height: 400px;
    background: var(--terracotta);
    opacity: 0.1;
    top: -100px;
    left: -100px;
}

cta__shape--2 {
    width: 300px;
    height: 300px;
    background: var(--sand);
    opacity: 0.08;
    bottom: -80px;
    right: 10%;
}

cta__shape--3 {
    width: 150px;
    height: 150px;
    background: var(--terracotta-light);
    opacity: 0.15;
    top: 30%;
    right: 5%;
}

cta__content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

cta__headline {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3.25rem);
    font-weight: 700;
    color: var(--white);
    line-height: 1.15;
    margin-bottom: 24px;
}

cta__body {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
    margin-bottom: 40px;
}

cta__actions {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* --- CONTACT --- */
.contact {
    padding: 120px 0;
    background: var(--sand-light);
}

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

contact__body {
    font-size: 1.05rem;
    color: var(--charcoal-light);
    line-height: 1.8;
    margin-bottom: 32px;
}

contact__info-cards {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

contact__info-card {
    display: flex;
    align-items: center;
    gap: 16px;
    background: var(--white);
    padding: 20px 24px;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-sm);
    font-size: 0.95rem;
    color: var(--charcoal);
}

contact__info-card-icon {
    width: 44px;
    height: 44px;
    background: var(--sand);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--terracotta);
    flex-shrink: 0;
}

contact__form-wrap {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 48px;
    box-shadow: var(--shadow-md);
}

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

.form__label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--charcoal);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

form__input,
.form__textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--sand);
    border-radius: var(--radius-md);
    font-family: var(--font-body);
    font-size: 1rem;
    color: var(--charcoal);
    background: var(--cream);
    transition: var(--transition);
    outline: none;
}

form__input:focus,
.form__textarea:focus {
    border-color: var(--terracotta);
    background: var(--white);
    box-shadow: 0 0 0 4px rgba(192, 90, 67, 0.1);
}

form__input::placeholder,
.form__textarea::placeholder {
    color: var(--sand-dark);
}

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

.contact__success {
    text-align: center;
    padding: 40px 20px;
}

contact__success-icon {
    width: 80px;
    height: 80px;
    background: var(--sand);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--terracotta);
}

contact__success-title {
    font-family: var(--font-display);
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--charcoal);
    margin-bottom: 12px;
}

contact__success-text {
    font-size: 1rem;
    color: var(--charcoal-light);
    line-height: 1.7;
}

/* --- FOOTER --- */
.footer {
    background: var(--charcoal);
    color: rgba(255, 255, 255, 0.7);
    padding: 80px 0 40px;
}

footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1.5fr;
    gap: 60px;
    margin-bottom: 60px;
}

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

footer__logo-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    background: var(--terracotta);
    color: var(--white);
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 0.85rem;
    font-weight: 700;
}

footer__logo-text {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.1rem;
    color: var(--white);
}

footer__tagline {
    font-size: 0.95rem;
    line-height: 1.7;
    max-width: 280px;
}

footer__links strong,
footer__contact strong {
    display: block;
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    color: var(--white);
    margin-bottom: 20px;
}

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

footer__links a,
footer__contact a {
    font-size: 0.95rem;
    transition: var(--transition);
    display: flex;
    align-items: center;
    gap: 8px;
}

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

footer__contact li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.95rem;
}

footer__contact svg {
    flex-shrink: 0;
    margin-top: 2px;
}

footer__bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    font-size: 0.875rem;
}

/* --- MOBILE RESPONSIVE --- */
@media (max-width: 1024px) {
    .hero__content {
        grid-template-columns: 1fr;
        text-align: center;
    }

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

    .hero__actions {
        justify-content: center;
    }

    .hero__stats {
        justify-content: center;
    }

    .hero__image-stack {
        display: none;
    }

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

    .about__visual {
        max-width: 500px;
        margin: 0 auto;
    }

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

    .product-card--featured,
    .product-card:not(.product-card--featured) {
        grid-column: span 1;
    }

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

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

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

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

@media (max-width: 768px) {
    .nav__menu {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 243, 0.98);
        backdrop-filter: blur(12px);
        padding: 24px;
        border-bottom: 1px solid rgba(192, 90, 67, 0.1);
        transform: translateY(-100%);
        opacity: 0;
        pointer-events: none;
        transition: var(--transition);
    }

    .nav__menu[aria-hidden="false"] {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }

    .nav__list {
        flex-direction: column;
        gap: 4px;
    }

    .nav__link {
        display: block;
        padding: 12px 16px;
        width: 100%;
    }

    .nav__link--cta {
        margin-left: 0;
        text-align: center;
        margin-top: 8px;
    }

    .nav__toggle {
        display: flex;
    }

    .nav__name {
        display: block;
        font-size: 0.9rem;
    }

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

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

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

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

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

    .about__accent {
        display: none;
    }

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

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

    .contact__form-wrap {
        padding: 32px 24px;
    }

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

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

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

    .hero {
        padding: 90px 16px 50px;
    }

    .section-title {
        font-size: clamp(1.75rem, 7vw, 2.25rem);
    }

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

    .btn--lg {
        padding: 14px 24px;
    }
}

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

    html {
        scroll-behavior: auto;
    }
}
