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

:root {
    --burgundy:    #7B2D3B;
    --burgundy-dark: #5C1F2B;
    --blush:       #F5E6E0;
    --blush-light: #FBF6F4;
    --cream:       #FDF8F6;
    --neutral:     #2C2426;
    --neutral-light: #6B5E61;
    --white:       #FFFFFF;
    --gold:        #C8956C;
    --radius:      12px;
    --radius-lg:   20px;
    --shadow:      0 4px 24px rgba(123, 45, 59, 0.08);
    --shadow-lg:   0 12px 48px rgba(123, 45, 59, 0.12);
    --transition:  0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', system-ui, sans-serif;
    color: var(--neutral);
    background: var(--cream);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

h1, h2, h3, h4 {
    font-family: 'Playfair Display', Georgia, serif;
    font-weight: 700;
    line-height: 1.15;
    color: var(--neutral);
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }
address { font-style: normal; }

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

/* ── Typography Utilities ─────────────────────────── */
.section-eyebrow {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--burgundy);
    margin-bottom: 12px;
}

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

.section-sub {
    font-size: 1.125rem;
    color: var(--neutral-light);
    max-width: 560px;
    line-height: 1.7;
}

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

.section-header .section-sub { margin: 0 auto; }

/* ── Buttons ──────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 28px;
    border-radius: 50px;
    font-weight: 600;
    font-size: 0.938rem;
    transition: var(--transition);
    white-space: nowrap;
}

.btn-primary {
    background: var(--burgundy);
    color: var(--white);
}
.btn-primary:hover {
    background: var(--burgundy-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: transparent;
    color: var(--white);
    border: 2px solid rgba(255,255,255,0.5);
}
.btn-secondary:hover {
    background: var(--white);
    color: var(--burgundy);
    border-color: var(--white);
}

.btn-outline {
    background: transparent;
    color: var(--burgundy);
    border: 2px solid var(--burgundy);
}
.btn-outline:hover {
    background: var(--burgundy);
    color: var(--white);
}

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

/* ── Navigation ───────────────────────────────────── */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(253, 248, 246, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    transition: var(--transition);
}

.nav.scrolled {
    box-shadow: 0 2px 20px rgba(123, 45, 59, 0.1);
}

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

.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--neutral);
}

.nav-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.nav-logo:hover .nav-logo-mark {
    background: var(--burgundy-dark);
    transform: rotate(-5deg);
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    font-size: 0.9rem;
    font-weight: 500;
    color: var(--neutral-light);
    transition: var(--transition);
    position: relative;
}

.nav-links a:not(.nav-cta):hover { color: var(--burgundy); }

.nav-links a:not(.nav-cta)::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--burgundy);
    transition: var(--transition);
}
.nav-links a:not(.nav-cta):hover::after { width: 100%; }

.nav-cta {
    background: var(--burgundy);
    color: var(--white) !important;
    padding: 10px 22px;
    border-radius: 50px;
    font-weight: 600;
}
.nav-cta:hover {
    background: var(--burgundy-dark);
    transform: translateY(-1px);
}
.nav-cta::after { display: none !important; }

/* Mobile toggle */
.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    width: 28px;
    padding: 4px 0;
}
.nav-toggle-line {
    width: 100%;
    height: 2px;
    background: var(--neutral);
    border-radius: 2px;
    transition: var(--transition);
}
.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);
}

/* ── Hero ─────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    background: var(--burgundy);
    padding: 120px 24px 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at 20% 80%, rgba(200, 149, 108, 0.15) 0%, transparent 60%),
        radial-gradient(ellipse at 80% 20%, rgba(245, 230, 224, 0.08) 0%, transparent 50%);
    pointer-events: none;
}

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

.hero-content { color: var(--white); }

.hero-eyebrow {
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 20px;
}

.hero-headline {
    font-size: clamp(2.25rem, 5vw, 3.75rem);
    color: var(--white);
    margin-bottom: 24px;
    line-height: 1.1;
}

.hero-sub {
    font-size: 1.125rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.hero-stats {
    display: flex;
    gap: 32px;
    align-items: center;
}

.hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.hero-stat-num {
    font-family: 'Playfair Display', serif;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--white);
}

.hero-stat-label {
    font-size: 0.8rem;
    color: rgba(255,255,255,0.55);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.hero-stat-divider {
    width: 1px;
    height: 40px;
    background: rgba(255,255,255,0.2);
}

.hero-image {
    position: relative;
    padding-bottom: 80px;
}

.hero-img-main {
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 24px 64px rgba(0,0,0,0.3);
}

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

.hero-img-accent {
    position: absolute;
    bottom: 0;
    right: -40px;
    border-radius: var(--radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 4px solid var(--burgundy);
}

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

.hero-wave {
    margin-top: -1px;
    line-height: 0;
}

.hero-wave svg {
    width: 100%;
    height: 80px;
}

/* ── Highlights Bar ───────────────────────────────── */
.highlights {
    background: var(--white);
    padding: 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.06);
}

.highlights-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.highlight-item {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 28px 32px;
    border-right: 1px solid rgba(123, 45, 59, 0.06);
    transition: var(--transition);
}

.highlight-item:last-child { border-right: none; }

.highlight-item:hover {
    background: var(--blush-light);
}

.highlight-icon {
    width: 28px;
    height: 28px;
    color: var(--burgundy);
    flex-shrink: 0;
}

.highlight-item span {
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--neutral);
}

/* ── Menu ─────────────────────────────────────────── */
.menu {
    padding: 100px 0;
    background: var(--cream);
}

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

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

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

.menu-card-img {
    height: 220px;
    overflow: hidden;
}

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

.menu-card:hover .menu-card-img img {
    transform: scale(1.06);
}

.menu-card-body {
    padding: 28px;
}

.menu-card-body h3 {
    font-size: 1.35rem;
    margin-bottom: 10px;
    color: var(--neutral);
}

.menu-card-body p {
    font-size: 0.938rem;
    color: var(--neutral-light);
    line-height: 1.65;
}

.menu-card-cta {
    background: var(--burgundy);
    display: flex;
    align-items: center;
    justify-content: center;
}

.menu-card-cta h3 { color: var(--white); }
.menu-card-cta p { color: rgba(255,255,255,0.75); }
.menu-card-cta .menu-card-actions {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
}

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

.about-grid {
    display: grid;
    grid-template-columns: 0.9fr 1fr;
    gap: 64px;
    align-items: center;
}

.about-image {
    position: relative;
}

.about-image img {
    width: 100%;
    height: 640px;
    object-fit: cover;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-image-float {
    position: absolute;
    bottom: -24px;
    left: -24px;
    background: var(--burgundy);
    color: var(--white);
    padding: 24px 28px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
}

.about-float-text {
    font-family: 'Playfair Display', serif;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.4;
    color: var(--white);
}

.about-content .section-title { margin-bottom: 24px; }

.about-content p {
    font-size: 1rem;
    color: var(--neutral-light);
    line-height: 1.8;
    margin-bottom: 16px;
}

.about-signature {
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid rgba(123, 45, 59, 0.12);
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.about-signature-label {
    font-family: 'Playfair Display', serif;
    font-style: italic;
    font-size: 1.1rem;
    color: var(--burgundy);
}

.about-signature-location {
    font-size: 0.85rem;
    color: var(--neutral-light);
}

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

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

.gallery-item {
    border-radius: var(--radius);
    overflow: hidden;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    display: block;
}

.gallery-item:hover img { transform: scale(1.04); }

.gallery-item--large {
    grid-column: span 5;
    grid-row: span 2;
}
.gallery-item--large img { height: 100%; min-height: 500px; }

.gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img {
    height: 240px;
}

.gallery-item--wide {
    grid-column: span 7;
}
.gallery-item--wide img { height: 240px; }

/* ── Testimonials ─────────────────────────────────── */
.testimonials {
    padding: 100px 0;
    background: var(--burgundy);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(200,149,108,0.12) 0%, transparent 70%);
    pointer-events: none;
}

.testimonials .section-eyebrow { color: var(--gold); }
.testimonials .section-title { color: var(--white); }

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

.testimonial-card {
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--radius-lg);
    padding: 36px;
    backdrop-filter: blur(8px);
    transition: var(--transition);
}

.testimonial-card:hover {
    background: rgba(255,255,255,0.12);
    transform: translateY(-4px);
}

.testimonial-stars {
    color: var(--gold);
    font-size: 1rem;
    letter-spacing: 4px;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.75;
    margin-bottom: 20px;
    font-style: italic;
}

.testimonial-author {
    font-size: 0.875rem;
    color: var(--gold);
    font-weight: 600;
}

/* ── Location ─────────────────────────────────────── */
.location {
    padding: 100px 0;
    background: var(--cream);
}

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

.location-info .section-title { margin-bottom: 24px; }

.location-address {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 32px;
    font-size: 1rem;
    color: var(--neutral);
    line-height: 1.6;
}

.location-icon {
    width: 24px;
    height: 24px;
    color: var(--burgundy);
    flex-shrink: 0;
    margin-top: 2px;
}

.location-hours { margin-bottom: 32px; }

.location-hours h3 {
    font-size: 1.1rem;
    margin-bottom: 16px;
    color: var(--neutral);
}

.hours-row {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid rgba(123, 45, 59, 0.08);
    font-size: 0.938rem;
}

.hours-row span:first-child { color: var(--neutral-light); }
.hours-row span:last-child { font-weight: 600; color: var(--neutral); }

.location-contact { display: flex;
    flex-direction: column;
    gap: 12px;
}

.location-phone,
.location-email {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 0.938rem;
    color: var(--burgundy);
    font-weight: 500;
    transition: var(--transition);
}

.location-phone:hover,
.location-email:hover { color: var(--burgundy-dark); }

.location-phone svg,
.location-email svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

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

.location-map iframe {
    width: 100%;
    height: 500px;
}

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

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

.contact-content .section-title { margin-bottom: 20px; }

.contact-content > p {
    font-size: 1rem;
    color: var(--neutral-light);
    line-height: 1.7;
    margin-bottom: 32px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 14px;
    font-size: 1rem;
    color: var(--neutral);
    font-weight: 500;
}

.contact-method svg {
    width: 22px;
    height: 22px;
    color: var(--burgundy);
    flex-shrink: 0;
}

.contact-form-wrap {
    background: var(--blush-light);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.contact-form { display: flex; flex-direction: column; gap: 20px; }

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

.form-group { display: flex; flex-direction: column; gap: 6px; }

.form-group label {
    font-size: 0.813rem;
    font-weight: 600;
    color: var(--neutral);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.form-group input,
.form-group select,
.form-group textarea {
    padding: 12px 16px;
    border: 1.5px solid rgba(123, 45, 59, 0.15);
    border-radius: var(--radius);
    font-family: 'Inter', sans-serif;
    font-size: 0.938rem;
    color: var(--neutral);
    background: var(--white);
    transition: var(--transition);
    outline: none;
    width: 100%;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    border-color: var(--burgundy);
    box-shadow: 0 0 0 3px rgba(123, 45, 59, 0.1);
}

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

.form-success {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 20px;
    background: rgba(123, 45, 59, 0.06);
    border: 1px solid rgba(123, 45, 59, 0.15);
    border-radius: var(--radius);
    color: var(--burgundy);
    font-weight: 500;
    font-size: 0.938rem;
}

.form-success svg {
    width: 22px;
    height: 22px;
    color: var(--burgundy);
    flex-shrink: 0;
}

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

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

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Playfair Display', serif;
    font-weight: 700;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 16px;
}

.footer-logo-mark {
    width: 40px;
    height: 40px;
    background: var(--burgundy);
    color: var(--white);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 700;
}

.footer-brand p {
    font-size: 0.938rem;
    line-height: 1.7;
    max-width: 280px;
}

.footer-links h4,
.footer-contact h4 {
    font-family: 'Inter', sans-serif;
    font-size: 0.813rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--white);
    margin-bottom: 20px;
}

.footer-links { display: flex; flex-direction: column; gap: 12px; }

.footer-links a {
    font-size: 0.938rem;
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-contact p {
    font-size: 0.938rem;
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer-contact a {
    color: rgba(255,255,255,0.6);
    transition: var(--transition);
}

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

.footer-contact svg {
    width: 18px;
    height: 18px;
    vertical-align: -3px;
    margin-right: 6px;
    color: var(--gold);
}

.footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
    padding: 28px 0;
    font-size: 0.813rem;
    color: rgba(255,255,255,0.35);
}

.footer-bottom a {
    color: rgba(255,255,255,0.5);
    transition: var(--transition);
}

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

/* ── Scroll Animations ────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s cubic-bezier(0.4, 0, 0.2, 1), transform 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

/* ── Responsive ───────────────────────────────────── */
@media (max-width: 1024px) {
    .hero-grid { grid-template-columns: 1fr; gap: 48px; }
    .hero-image { order: -1; max-width: 500px; margin: 0 auto; padding-bottom: 0; }
    .hero-img-accent { right: -16px; }
    .about-grid { grid-template-columns: 1fr; gap: 40px; }
    .about-image img { height: 420px; }
    .menu-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 2; max-width: 50%; margin: 0 auto; }
    .location-grid { grid-template-columns: 1fr; }
    .location-map iframe { height: 360px; }
    .contact-grid { grid-template-columns: 1fr; gap: 40px; }
    .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 768px) {
    .nav-links {
        position: fixed;
        top: 72px;
        left: 0;
        right: 0;
        background: rgba(253, 248, 246, 0.98);
        backdrop-filter: blur(16px);
        flex-direction: column;
        padding: 32px 24px;
        gap: 20px;
        border-bottom: 1px solid rgba(123, 45, 59, 0.08);
        transform: translateY(-120%);
        opacity: 0;
        transition: var(--transition);
        pointer-events: none;
    }
    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        pointer-events: all;
    }
    .nav-toggle { display: flex; }
    .highlights-grid { grid-template-columns: repeat(2, 1fr); }
    .highlight-item { border-right: none; border-bottom: 1px solid rgba(123, 45, 59, 0.06); }
    .highlight-item:nth-last-child(-n+2) { border-bottom: none; }
    .menu-grid { grid-template-columns: 1fr; }
    .gallery-grid {
        grid-template-columns: 1fr 1fr;
        grid-template-rows: auto;
    }
    .gallery-item--large { grid-column: span 2; grid-row: span 1; }
    .gallery-item--large img,
    .gallery-item--wide img { height: 240px; }
    .gallery-item--wide { grid-column: span 2; }
    .gallery-item:not(.gallery-item--large):not(.gallery-item--wide) img { height: 200px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonials-grid .testimonial-card:last-child { grid-column: span 1; max-width: 100%; }
    .form-row { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; gap: 36px; }
    .footer-bottom { flex-direction: column; text-align: center; }
    .hero-stats { gap: 20px; }
    .hero-img-accent { display: none; }
}

@media (max-width: 480px) {
    .hero { padding: 100px 16px 0; }
    .hero-actions { flex-direction: column; }
    .hero-actions .btn { width: 100%; }
    .highlights-grid { grid-template-columns: 1fr; }
    .highlight-item { border-right: none; border-bottom: 1px solid rgba(123, 45, 59, 0.06); }
    .highlight-item:last-child { border-bottom: none; }
    .gallery-grid { grid-template-columns: 1fr; }
    .gallery-item--large,
    .gallery-item--wide { grid-column: span 1; }
    .contact-form-wrap { padding: 24px; }
    .about-image-float { left: 16px; bottom: -16px; }
}
