/* ============================================================
   TIỆM MỲ BÁCH GIA — Landing Page v2.0
   style.css — Section comments match brief section numbers
   ============================================================ */

/* ==== CSS VARIABLES ==== */
:root {
    --sage-base:  #B8C5A6;
    --sage-dark:  #9AAF7E;
    --sage-deep:  #7A9B5F;
    --sage-light: #D4E0C7;
    --gold:       #D4B483;
    --gold-deep:  #B8945F;
    --cream:      #FAF7F0;
    --ink:        #2E3F1C;
    --ink-soft:   #4A5D3A;

    --nav-height: 72px;
    --radius:     8px;
    --radius-lg:  16px;
    --radius-pill: 100px;

    --transition-fast: 150ms ease;
    --transition-base: 300ms ease;

    --container-max: 1200px;
    --container-pad: 24px;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-height);
    font-size: 16px;
}

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

img, video {
    max-width: 100%;
    display: block;
}

a {
    color: inherit;
}

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
    html { scroll-behavior: auto; }
}


/* ==== SECTION 1: FIXED NAVBAR ==== */

.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: var(--nav-height);
    background-color: rgba(250, 247, 240, 0.92);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-bottom: 1px solid transparent;
    transition:
        background-color var(--transition-base),
        box-shadow var(--transition-base),
        border-color var(--transition-base),
        transform var(--transition-base);
}

.navbar.scrolled {
    background-color: rgba(250, 247, 240, 0.98);
    box-shadow: 0 2px 20px rgba(46, 63, 28, 0.10);
    border-bottom-color: var(--sage-light);
}


.nav-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    height: 100%;
    display: flex;
    align-items: center;
    gap: 32px;
}

/* Logo */
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}

.nav-logo-img {
    height: 52px;
    width: auto;
    object-fit: contain;
}

.nav-logo-text {
    font-size: 17px;
    font-weight: 700;
    color: var(--ink);
    letter-spacing: -0.3px;
    white-space: nowrap;
}

/* Desktop nav links */
.nav-links {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-left: auto;
}

.nav-links a {
    text-decoration: none;
    color: var(--ink-soft);
    font-size: 15px;
    font-weight: 500;
    transition: color var(--transition-fast);
    position: relative;
    padding-bottom: 2px;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--sage-deep);
    border-radius: 2px;
    transition: width var(--transition-base);
}

@media (hover: hover) {
    .nav-links a:hover {
        color: var(--ink);
    }
    .nav-links a:hover::after {
        width: 100%;
    }
}

/* CTA + Dropdown */
.nav-cta-wrapper {
    position: relative;
    flex-shrink: 0;
}

.nav-cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background-color: var(--sage-deep);
    color: #fff;
    border: none;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    white-space: nowrap;
    transition: background-color var(--transition-fast), transform var(--transition-fast);
}

@media (hover: hover) {
    .nav-cta-btn:hover {
        background-color: var(--sage-dark);
    }
}

.nav-cta-btn:active {
    transform: scale(0.97);
}

.nav-cta-dropdown {
    display: none;
    position: absolute;
    top: calc(100% + 10px);
    right: 0;
    background: #fff;
    border: 1px solid var(--sage-light);
    border-radius: var(--radius-lg);
    box-shadow: 0 8px 28px rgba(46, 63, 28, 0.13);
    overflow: hidden;
    min-width: 190px;
    z-index: 10;
    animation: dropdownIn 150ms ease;
}

.nav-cta-dropdown.open {
    display: block;
}

@keyframes dropdownIn {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
}

.nav-cta-dropdown a {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    text-decoration: none;
    color: var(--ink);
    font-size: 14px;
    font-weight: 500;
    transition: background-color var(--transition-fast);
}

.dropdown-icon {
    font-size: 18px;
    line-height: 1;
}

@media (hover: hover) {
    .nav-cta-dropdown a:hover {
        background-color: var(--sage-light);
    }
}

/* Hamburger */
.nav-hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    align-items: flex-end;
    gap: 5px;
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 6px;
    border-radius: var(--radius);
    flex-shrink: 0;
    margin-left: auto;
}

.nav-hamburger span {
    display: block;
    height: 2px;
    background-color: var(--ink);
    border-radius: 2px;
    transition:
        transform var(--transition-base),
        opacity var(--transition-base),
        width var(--transition-base);
    transform-origin: center;
}

.nav-hamburger span:nth-child(1) { width: 22px; }
.nav-hamburger span:nth-child(2) { width: 16px; }
.nav-hamburger span:nth-child(3) { width: 22px; }

.nav-hamburger.open span:nth-child(1) {
    width: 22px;
    transform: translateY(7px) rotate(45deg);
}
.nav-hamburger.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.nav-hamburger.open span:nth-child(3) {
    width: 22px;
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile full-screen menu */
.mobile-menu {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 999;
    background-color: var(--cream);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: var(--nav-height) 32px 48px;
    overflow-y: auto;
}

.mobile-menu.open {
    display: flex;
}

.mobile-menu nav {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    width: 100%;
    margin-bottom: 48px;
}

.mobile-nav-link {
    text-decoration: none;
    color: var(--ink);
    font-size: 30px;
    font-weight: 700;
    padding: 10px 0;
    letter-spacing: -0.5px;
    transition: color var(--transition-fast);
}

.mobile-nav-link:active {
    color: var(--sage-deep);
}

.mobile-menu-cta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    width: 100%;
    max-width: 320px;
}

.mobile-cta-btn {
    display: block;
    text-align: center;
    text-decoration: none;
    padding: 15px 24px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 600;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.mobile-cta-btn:active {
    transform: scale(0.98);
    opacity: 0.88;
}

.mobile-cta-btn.shopeefood { background-color: var(--sage-deep); color: #fff; }
.mobile-cta-btn.grabfood   { background-color: var(--ink);       color: #fff; }
.mobile-cta-btn.zalo       { background-color: #0068FF;           color: #fff; }

/* ==== SECTION 2: HERO ==== */

.hero {
    position: relative;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
}

/* Video layer */
.hero-videos {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-vid {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 1.2s ease;
}

.hero-vid--a { opacity: 1; }
.hero-vid--b { opacity: 0; }

/* Mobile poster — replaces video entirely */
.hero-mobile-poster {
    display: none;
    position: absolute;
    inset: 0;
    background: url('assets/images/605764467_719895127858342_4665019908575505697_n.jpg') center/cover no-repeat;
}

@media (max-width: 768px) {
    .hero-vid--desktop {
        display: none !important;
    }
    .hero-mobile-poster {
        display: block;
    }
}

/* Gradient overlay — darkens right side on desktop, bottom on mobile */
.hero-overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to left,  rgba(30, 44, 18, 0.72) 0%, rgba(30, 44, 18, 0.0) 55%),
        linear-gradient(to bottom, rgba(46, 63, 28, 0.30) 0%, rgba(46, 63, 28, 0.0) 40%);
}

@media (max-width: 768px) {
    .hero-overlay {
        background: linear-gradient(to top, rgba(30, 44, 18, 0.82) 0%, rgba(30, 44, 18, 0.0) 58%);
    }
}

/* Content */
.hero-content {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 480px;
    margin-right: var(--container-pad);
    padding: 48px 32px 52px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    text-align: right;
    gap: 16px;
}

.hero-eyebrow {
    font-size: 14px;
    font-weight: 600;
    color: var(--gold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-h1 {
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: -0.02em;
    max-width: 480px;
    text-shadow: 0 2px 16px rgba(0,0,0,0.55), 0 1px 4px rgba(0,0,0,0.35);
}

.hero-h1-sub {
    font-size: clamp(18px, 2vw, 28px);
    font-weight: 700;
    color: var(--sage-light);
    display: block;
    margin-top: 4px;
    text-shadow: 0 2px 12px rgba(0,0,0,0.45);
}

.hero-sub {
    font-size: clamp(13px, 1.2vw, 16px);
    color: var(--cream);
    line-height: 1.6;
    opacity: 0.92;
    text-shadow: 0 1px 8px rgba(0,0,0,0.40);
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: flex-end;
    gap: 12px;
    margin-top: 8px;
}

.hero-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: var(--radius-pill);
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    white-space: nowrap;
    transition: transform var(--transition-fast), opacity var(--transition-fast), background-color var(--transition-fast);
}

.hero-btn:active {
    transform: scale(0.97);
}

.hero-btn--primary {
    background-color: var(--gold);
    color: var(--ink);
}

@media (hover: hover) {
    .hero-btn--primary:hover {
        background-color: var(--gold-deep);
        color: #fff;
    }
}

.hero-btn--secondary {
    background-color: transparent;
    color: #fff;
    border: 2px solid rgba(255, 255, 255, 0.75);
}

@media (hover: hover) {
    .hero-btn--secondary:hover {
        background-color: rgba(255, 255, 255, 0.12);
        border-color: #fff;
    }
}

/* Mobile */
@media (max-width: 768px) {
    .hero {
        height: 100svh;
        min-height: 520px;
        align-items: flex-end;
    }

    .hero-content {
        padding-bottom: 40px;
        align-items: center;
        text-align: center;
        gap: 14px;
        background: none;
        padding-top: 48px;
    }

    .hero-eyebrow {
        font-size: 11px;
    }

    .hero-h1 {
        font-size: 26px;
        letter-spacing: -0.01em;
    }

    .hero-h1-sub {
        font-size: 18px;
    }

    .hero-sub {
        font-size: 13px;
    }

    .hero-ctas {
        flex-direction: column;
        width: 100%;
    }

    .hero-btn {
        width: 100%;
        padding: 15px 24px;
        font-size: 15px;
    }
}

/* Responsive breakpoints */
@media (max-width: 768px) {
    .nav-links,
    .nav-cta-wrapper {
        display: none;
    }
    .nav-hamburger {
        display: flex;
    }
}


/* ==== SECTION 3: MENU ==== */

.menu-section {
    background: var(--cream);
    padding: 88px 0;
}

.menu-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

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

.section-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--sage-deep);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 10px;
}

.section-title {
    font-size: clamp(24px, 3vw, 36px);
    font-weight: 800;
    color: var(--ink);
    letter-spacing: -0.02em;
    line-height: 1.2;
    margin-bottom: 12px;
}

.section-sub {
    font-size: 15px;
    color: var(--ink-soft);
    max-width: 460px;
    margin: 0 auto;
    line-height: 1.6;
}

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

.menu-card {
    background: #fff;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(46, 63, 28, 0.07);
    transition: transform var(--transition-base), box-shadow var(--transition-base);
}

@media (hover: hover) {
    .menu-card:hover {
        transform: translateY(-5px);
        box-shadow: 0 10px 28px rgba(46, 63, 28, 0.13);
    }
    .menu-card:hover .menu-card-img {
        transform: scale(1.05);
    }
}

.menu-card-img-wrap {
    position: relative;
    aspect-ratio: 4 / 3;
    overflow: hidden;
}

.menu-card-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.menu-card-tag {
    position: absolute;
    top: 10px;
    left: 10px;
    background: var(--gold);
    color: var(--ink);
    font-size: 10px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: var(--radius-pill);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.menu-card-tag--order {
    background: var(--sage-deep);
    color: #fff;
}

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

.menu-card-name {
    font-size: 15px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 6px;
    line-height: 1.3;
}

.menu-card-desc {
    font-size: 12px;
    color: var(--ink-soft);
    line-height: 1.5;
    margin-bottom: 10px;
}

.menu-card-price {
    font-size: 15px;
    font-weight: 700;
    color: var(--sage-deep);
}

.menu-cta {
    text-align: center;
}

@media (max-width: 900px) {
    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 768px) {
    .menu-section {
        padding: 60px 0;
    }

    .section-header {
        margin-bottom: 36px;
    }

    .menu-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
        margin-bottom: 36px;
    }

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

    .menu-card-name {
        font-size: 13px;
    }

    .menu-card-desc {
        display: none;
    }

    .menu-card-price {
        font-size: 14px;
    }
}


/* ==== SECTION 4: REVIEWS ==== */

.reviews-section {
    background: var(--sage-light);
    padding: 88px 0;
    overflow: hidden;
}

.reviews-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
}

.reviews-summary {
    text-align: center;
    margin-bottom: 52px;
}

.reviews-score {
    font-size: 64px;
    font-weight: 800;
    color: var(--ink);
    line-height: 1;
    letter-spacing: -0.03em;
}

.reviews-stars {
    font-size: 28px;
    color: var(--gold-deep);
    margin: 8px 0 10px;
    letter-spacing: 4px;
}

.reviews-count {
    font-size: 14px;
    color: var(--ink-soft);
}

.reviews-slider {
    display: flex;
    align-items: center;
    gap: 12px;
}

.reviews-track-container {
    overflow: visible;
    flex: 1;
    min-width: 0;
}

.reviews-track {
    display: flex;
    gap: 24px;
    transition: transform 0.45s cubic-bezier(0.4, 0, 0.2, 1);
    will-change: transform;
    -webkit-backface-visibility: hidden;
    backface-visibility: hidden;
}

.reviews-track.no-transition {
    transition: none !important;
}

.reviews-arrow {
    flex-shrink: 0;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 2px solid var(--sage-deep);
    background: #fff;
    color: var(--ink);
    font-size: 26px;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background-color var(--transition-fast), color var(--transition-fast);
}

@media (hover: hover) {
    .reviews-arrow:hover {
        background: var(--sage-deep);
        color: #fff;
    }
}

.reviews-arrow:disabled {
    opacity: 0.3;
    cursor: default;
}

.reviews-dots {
    display: flex;
    justify-content: center;
    gap: 8px;
    margin-top: 28px;
}

.reviews-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: rgba(46, 63, 28, 0.2);
    border: none;
    padding: 0;
    cursor: pointer;
    transition: background-color var(--transition-base), transform var(--transition-base);
}

.reviews-dot.active {
    background: var(--sage-deep);
    transform: scale(1.35);
}

.review-card {
    flex-shrink: 0;
    width: 360px; /* fallback — JS overrides this */
    background: #fff;
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: 0 2px 12px rgba(46, 63, 28, 0.07);
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.review-stars {
    font-size: 18px;
    color: var(--gold-deep);
    letter-spacing: 2px;
}

.review-text {
    font-size: 14px;
    color: var(--ink-soft);
    line-height: 1.7;
    flex: 1;
    font-style: italic;
}

.review-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.review-avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.review-name {
    font-size: 14px;
    font-weight: 700;
    color: var(--ink);
}

.review-source {
    font-size: 12px;
    color: var(--sage-deep);
    font-weight: 500;
}

@media (max-width: 768px) {
    .reviews-section {
        padding: 60px 0;
    }

    .reviews-score {
        font-size: 48px;
    }

    .reviews-track-container {
        overflow: hidden;
        width: 100%;
    }

    .review-card {
        padding: 20px;
    }
}


/* ==== SECTION 5: STORY ==== */


.story-section {
    display: grid;
    grid-template-columns: 1fr 1fr;
    min-height: 640px;
}

/* Photo grid — left side */
.story-gallery {
    display: grid;
    grid-template-columns: 1.1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 4px;
    overflow: hidden;
}

.story-gallery-item {
    overflow: hidden;
}

.story-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

@media (hover: hover) {
    .story-gallery-item:hover img {
        transform: scale(1.05);
    }
}

.story-gallery-item--tall {
    grid-row: 1 / 3;
}

.story-image-wrap {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-rows: 1fr 1fr;
    gap: 3px;
}

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

.story-img--top  { object-position: center 30%; }
.story-img--bottom { object-position: center top; }

.story-img-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(30, 44, 18, 0.35) 0%, transparent 60%);
}

.story-content {
    background: var(--ink);
    display: flex;
    align-items: center;
}

.story-inner {
    padding: 72px 64px;
    max-width: 560px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.story-title {
    font-size: clamp(26px, 2.8vw, 40px);
    font-weight: 800;
    color: #fff;
    line-height: 1.15;
    letter-spacing: 0.02em;
}

.story-body {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.78);
    line-height: 1.85;
}

.story-pullquote {
    font-size: clamp(18px, 2vw, 24px);
    font-weight: 700;
    font-style: italic;
    color: var(--gold);
    line-height: 1.5;
    padding-left: 20px;
    border-left: 3px solid var(--gold-deep);
}

/* ==== FOOTER ==== */

.footer {
    background-color: rgba(250, 247, 240, 0.98);
    border-top: 1px solid var(--sage-light);
    padding: 16px 24px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.footer-logo {
    height: 40px;
    width: auto;
    object-fit: contain;
}


/* ==== SECTION 6: CONTACT ==== */

.contact-section {
    background: var(--ink);
    padding: 88px 0;
}

.contact-container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 var(--container-pad);
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: start;
}

.contact-title {
    font-size: clamp(28px, 3vw, 42px);
    font-weight: 800;
    color: #fff;
    line-height: 1.2;
    letter-spacing: -0.02em;
    margin: 12px 0 36px;
}

.contact-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.contact-item {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.contact-icon {
    font-size: 20px;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--sage-base);
    margin-bottom: 4px;
}

.contact-value {
    font-size: 15px;
    color: rgba(255,255,255,0.88);
    line-height: 1.5;
}

.contact-link {
    text-decoration: none;
    color: var(--gold);
    transition: color var(--transition-fast);
}

@media (hover: hover) {
    .contact-link:hover { color: #fff; }
}

.contact-brand-icon {
    width: 28px;
    height: 28px;
    flex-shrink: 0;
    margin-top: 2px;
    border-radius: 6px;
}

.contact-order-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.contact-order-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    border-radius: var(--radius-pill);
    font-size: 14px;
    font-weight: 700;
    text-decoration: none;
    color: #fff;
    transition: opacity var(--transition-fast), transform var(--transition-fast);
}

.contact-order-btn:active { transform: scale(0.97); }

@media (hover: hover) {
    .contact-order-btn:hover { opacity: 0.88; }
}

.contact-order-btn--shopee { background: #EE4D2D; }
.contact-order-btn--grab   { background: #00B14F; }
.contact-order-btn--zalo   { background: #0068FF; }

.contact-order-logo {
    width: 24px;
    height: 24px;
    border-radius: 5px;
    flex-shrink: 0;
}

.hero-btn--secondary-dark {
    background: transparent;
    color: #fff;
    border: 2px solid rgba(255,255,255,0.4);
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 15px 28px;
    border-radius: var(--radius-pill);
    font-size: 15px;
    font-weight: 700;
    transition: border-color var(--transition-fast), background var(--transition-fast);
}

@media (hover: hover) {
    .hero-btn--secondary-dark:hover {
        border-color: #fff;
        background: rgba(255,255,255,0.08);
    }
}

.contact-map {
    height: 440px;
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: 0 8px 32px rgba(0,0,0,0.3);
}

.contact-map iframe {
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
}

@media (max-width: 768px) {
    .contact-section {
        padding: 60px 0;
    }

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

    .contact-map {
        height: 300px;
    }

    .contact-order-btns {
        flex-direction: column;
    }
}


@media (max-width: 900px) {
    .story-section {
        grid-template-columns: 1fr;
    }

    .story-gallery {
        height: 420px;
        grid-template-columns: 1fr 1fr;
        grid-template-rows: 1fr 1fr 1fr;
    }

    .story-gallery-item--tall {
        grid-row: 1 / 3;
    }

    .story-inner {
        padding: 48px 24px;
        gap: 20px;
    }
}
