/* Daniel-inspired minimal homepage */

* { box-sizing: border-box; }
html { 
    height: 100%; 
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
    scroll-behavior: smooth;
}
body { 
    min-height: 100%; 
    overflow-x: hidden;
    width: 100%;
    max-width: 100%;
}

:root{
    --white: #ffffff;
    --white-80: rgba(255,255,255,.8);
    --white-65: rgba(255,255,255,.65);
    --white-40: rgba(255,255,255,.4);
    --overlay: rgba(0,0,0,.32);
    --overlay-strong: rgba(0,0,0,.6);
    --serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
}

body {
    margin: 0;
    font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
    color: rgba(255, 255, 255, 0.92);
    background: #000;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

a { color: inherit; text-decoration: none; }
a:hover { color: var(--white); }

.sr-only {
    position: absolute !important;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.skip-link{
    position:absolute;
    left:-999px;
    top:10px;
    background:#fff;
    color:#000;
    padding:10px 12px;
    z-index:9999;
}
.skip-link:focus{ left:10px; }

/* Header */
.site-header{
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 30px 22px 20px;
    z-index: 50;
    background: transparent;
    box-sizing: border-box;
}

.header-logo{
    display: flex;
    justify-content: center;
    align-items: center;
}
.header-logo img{
    width: min(260px, 39vw);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}

.menu-button{
    display: none !important;
}

.menu-button{
    width: 52px;
    height: 52px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(0,0,0,.16);
    backdrop-filter: blur(10px);
    border-radius: 999px;
    cursor: pointer;
    color: var(--white);
}
.menu-button:focus-visible{
    outline: 2px solid rgba(255,255,255,.8);
    outline-offset: 3px;
}
.menu-button__icon{
    width: 18px;
    height: 12px;
    position: relative;
    display: inline-block;
}
.menu-button__icon::before,
.menu-button__icon::after{
    content:"";
    position:absolute;
    left:0;
    width:100%;
    height:1px;
    background: rgba(255,255,255,.9);
}
.menu-button__icon::before{ top:1px; }
.menu-button__icon::after{ bottom:1px; }

.top-links{
    display:flex;
    gap: 16px;
    align-items:center;
    flex-wrap: wrap;
    justify-content: flex-end;
    font-family: var(--serif);
    letter-spacing: .02em;
    font-size: 21px;
    text-align: right;
}
.top-link{
    padding: 8px 10px;
    color: var(--white-80);
    transition: color .2s ease;
    white-space: nowrap;
}
.top-link:hover{ color: var(--white); }

/* Hero */
.hero{
    position: relative;
    min-height: 100svh;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: auto;
}
.hero__media{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    max-width: 100%;
    max-height: 100%;
    overflow: hidden;
    filter: blur(6px);
}

.hero__image{
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    min-width: 100%;
    min-height: 100%;
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
    object-position: center center;
}
.hero__fire-effect{
    position:absolute;
    inset: 0;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    z-index: 0;
    pointer-events: none;
}

/* Base: rising fire gradient (hot at bottom, cooler at top) */
.hero__fire-effect::before{
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        180deg,
        transparent 0%,
        rgba(255, 100, 0, 0.08) 25%,
        rgba(255, 140, 0, 0.18) 45%,
        rgba(255, 69, 0, 0.35) 65%,
        rgba(255, 50, 0, 0.5) 85%,
        rgba(220, 30, 0, 0.45) 100%
    );
    animation: fireRise 3s ease-in-out infinite;
}

/* Flame tongues: tall narrow ellipses along bottom */
.hero__fire-effect::after{
    content: '';
    position: absolute;
    left: -5%;
    right: -5%;
    bottom: -10%;
    height: 70%;
    background: 
        /* center flame */
        radial-gradient(ellipse 35% 80% at 50% 100%, rgba(255, 200, 50, 0.4) 0%, rgba(255, 140, 0, 0.35) 25%, rgba(255, 69, 0, 0.25) 50%, transparent 75%),
        /* left flame */
        radial-gradient(ellipse 25% 70% at 25% 100%, rgba(255, 180, 40, 0.35) 0%, rgba(255, 120, 0, 0.3) 30%, rgba(255, 69, 0, 0.2) 55%, transparent 80%),
        /* right flame */
        radial-gradient(ellipse 25% 70% at 75% 100%, rgba(255, 180, 40, 0.35) 0%, rgba(255, 120, 0, 0.3) 30%, rgba(255, 69, 0, 0.2) 55%, transparent 80%),
        /* outer left */
        radial-gradient(ellipse 18% 55% at 10% 100%, rgba(255, 140, 0, 0.3) 0%, rgba(255, 69, 0, 0.2) 40%, transparent 70%),
        /* outer right */
        radial-gradient(ellipse 18% 55% at 90% 100%, rgba(255, 140, 0, 0.3) 0%, rgba(255, 69, 0, 0.2) 40%, transparent 70%);
    animation: fireDance 2.5s ease-in-out infinite;
    transform-origin: center bottom;
}

@keyframes fireRise {
    0%, 100% { opacity: 0.85; filter: brightness(1); }
    33% { opacity: 1; filter: brightness(1.1); }
    66% { opacity: 0.9; filter: brightness(0.95); }
}

@keyframes fireDance {
    0%, 100% {
        transform: scaleX(1) scaleY(1) translateX(0);
        opacity: 0.9;
    }
    25% {
        transform: scaleX(1.05) scaleY(1.02) translateX(-1%);
        opacity: 1;
    }
    50% {
        transform: scaleX(0.98) scaleY(1.05) translateX(1%);
        opacity: 0.85;
    }
    75% {
        transform: scaleX(1.02) scaleY(0.98) translateX(-0.5%);
        opacity: 0.95;
    }
}

.hero__overlay{
    position:absolute;
    inset: 0;
    background: rgba(0,0,0,.5);
    width: 100%;
    max-width: 100%;
    z-index: 1;
}

.hero__center{
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 40px 22px 40px;
    min-height: 100svh;
    flex: 1 1 auto;
    text-align: center;
    box-sizing: border-box;
    z-index: 1;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
    overflow-y: visible;
}
.hero__center-content{
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: clamp(24px, 4vh, 32px);
    max-width: 600px;
    width: 100%;
    padding: clamp(20px, 3vh, 30px) 0;
    box-sizing: border-box;
    flex-shrink: 0;
}
.hero__logo{
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}
.hero__logo img{
    width: min(260px, 40vw);
    height: auto;
    display: block;
    filter: brightness(0) invert(1);
}
.hero__logo a{
    display: block;
    text-decoration: none;
}
.hero__info-group{
    display: flex;
    flex-direction: column;
    gap: clamp(16px, 2vh, 24px);
    width: 100%;
    text-align: center;
    align-items: center;
    flex-shrink: 0;
}
.hero__info-item{
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: center;
    width: 100%;
}
.hero__info-label{
    font-size: 13px;
    letter-spacing: .15em;
    text-transform: uppercase;
    color: rgba(255,255,255,.7);
    font-weight: 500;
    font-family: "Inter", sans-serif;
}
.hero__info-value{
    font-size: 18px;
    letter-spacing: .05em;
    color: rgba(255,255,255,.95);
    line-height: 1.6;
    font-family: "Platypi", serif;
}
.hero__info-value span{
    display: block;
    margin-bottom: 4px;
}
.hero__info-value span:last-child{
    margin-bottom: 0;
}
.hero__meta{
    font-size: 18px;
    letter-spacing: .05em;
    color: rgba(255,255,255,.95);
    transition: color 0.2s ease;
    display: inline-block;
    font-family: "Platypi", serif;
    text-decoration: none;
}
.hero__meta:hover{
    color: rgba(255,255,255,1);
}
.hero__buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.hero__button{
    padding: 14px 32px;
    min-height: 44px;
    min-width: 140px;
    border: 2px solid rgba(255,255,255,1);
    background: transparent;
    color: rgba(255,255,255,1);
    font-family: "Inter", sans-serif;
    font-size: 16px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    text-decoration: none;
    transition: all 0.2s ease;
    cursor: pointer;
    font-weight: 500;
    flex-shrink: 0;
    white-space: nowrap;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}
.hero__button:hover{
    background: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    transform: translateY(-2px);
}
.hero__button-secondary {
    background: rgba(255,255,255,1);
    color: rgba(0,0,0,1);
    border-color: rgba(255,255,255,1);
}
.hero__button-secondary:hover {
    background: transparent;
    color: rgba(255,255,255,1);
    border-color: rgba(255,255,255,1);
}

.hero__rating {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
    transition: color 0.2s ease;
}

.hero__rating--top {
    margin-top: 0;
    margin-bottom: 0;
    order: -1;
}

.hero__rating:hover {
    color: rgba(255, 255, 255, 1);
}

.hero__rating-stars {
    color: #f8b805;
    letter-spacing: 1px;
    font-size: 14px;
}

.hero__rating-text {
    font-weight: 500;
}

.hero__rating-sep {
    color: rgba(255, 255, 255, 0.5);
    font-weight: 300;
}

.hero__rating-link {
    color: rgba(255, 255, 255, 0.75);
    text-decoration: underline;
    text-underline-offset: 2px;
}

.hero__rating:hover .hero__rating-link {
    color: rgba(255, 255, 255, 1);
}

.hero__bottom{
    position:absolute;
    inset: auto 0 18px 0;
    padding: 0 22px;
}
.hero__bottom-inner{
    display:flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    font-size: 12px;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: rgba(255,255,255,.72);
}

/* Back to top */
.back-to-top {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 50;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    text-decoration: none;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.25s ease, visibility 0.25s ease, transform 0.2s ease;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.25);
}

.back-to-top--visible {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
}

.back-to-top:hover {
    transform: translateY(-2px);
    color: #ffffff;
    background: #333333;
}

.back-to-top:focus {
    outline: 2px solid #ffffff;
    outline-offset: 2px;
}

.back-to-top__icon i {
    font-size: 18px;
}

@media (max-width: 520px) {
    .back-to-top {
        bottom: 20px;
        right: 20px;
        width: 44px;
        height: 44px;
    }
    .back-to-top__icon i {
        font-size: 16px;
    }
}

/* Menu overlay */
body.menu-open{
    overflow: hidden;
}
.menu-overlay{
    position: fixed;
    inset: 0;
    z-index: 100;
    background: rgba(0,0,0,.55);
    backdrop-filter: blur(8px);
    display: none;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 80px 22px 20px;
    max-height: 100vh;
    max-height: 100dvh;
    overflow: hidden;
}
.menu-overlay:not([hidden]),
body.menu-open .menu-overlay{
    display: flex;
}

.menu-close{
    position: absolute;
    top: 22px;
    left: 22px;
    width: 52px;
    height: 52px;
    border-radius: 999px;
    border: 1px solid rgba(255,255,255,.28);
    background: rgba(0,0,0,.16);
    backdrop-filter: blur(10px);
    cursor: pointer;
    color: var(--white);
    font-size: 26px;
    line-height: 1;
    display: grid;
    place-items: center;
    flex-shrink: 0;
}
.menu-close:focus-visible{
    outline: 2px solid rgba(255,255,255,.8);
    outline-offset: 3px;
}

.menu-nav{
    width: min(560px, 92vw);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
}
.menu-brand{
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: clamp(16px, 3vh, 32px);
    flex-shrink: 0;
}
.menu-brand__logo{
    width: min(300px, 50vw, 25vh);
    height: auto;
    filter: brightness(0) invert(1);
    opacity: 0.9;
}
.menu-nav__list{
    list-style: none;
    padding: 0;
    margin: 0;
    display: grid;
    gap: clamp(4px, 1vh, 10px);
    width: 100%;
    flex: 1 1 auto;
    min-height: 0;
    align-content: center;
}
.menu-nav__link{
    font-family: var(--serif);
    font-size: clamp(24px, 5vw, 56px);
    line-height: 1.05;
    letter-spacing: .03em;
    color: rgba(255,255,255,.92);
    transition: opacity .2s ease, transform .2s ease;
    display: inline-block;
    padding: clamp(1px, 0.5vh, 2px) 0;
}
.menu-nav__link:hover{
    opacity: 1;
    transform: translateY(-1px);
}

/* Utility anchors for now */
.anchor-target{
    height: 1px;
    overflow: hidden;
}

/* Homepage bottom CTA */
.homepage-cta {
    position: relative;
    background: #1a1a1a;
    background-image: url("assets/inside/tequila-fuego-bar-area-longview-wa.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: #ffffff;
    padding: 60px 22px 70px;
    text-align: center;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.homepage-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.88);
    z-index: 0;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-family: "Yellowtail", cursive;
    font-size: clamp(32px, 5vw, 42px);
    font-weight: 400;
    color: #ffffff;
    margin: 0 0 12px 0;
    letter-spacing: 0.02em;
}

.cta-intro {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.85);
    margin: 0 0 32px 0;
}

.cta-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
    align-items: center;
}

.cta-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 28px;
    min-height: 48px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.9);
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    letter-spacing: 0.04em;
    text-decoration: none;
    border-radius: 6px;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
}

.cta-button:hover {
    background: rgba(255, 255, 255, 1);
    color: #000000;
    border-color: #ffffff;
    transform: translateY(-2px);
}

.cta-button-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cta-button-icon i {
    font-size: 18px;
}

@media (max-width: 767px) {
    .homepage-cta {
        padding: 50px 20px 60px;
    }
    .cta-intro {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .cta-buttons {
        flex-direction: column;
        gap: 12px;
    }
    .cta-button {
        width: 100%;
        max-width: 280px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .homepage-cta {
        padding: 40px 16px 50px;
    }
    .cta-title {
        font-size: 28px;
    }
}

/* Footer */
.site-footer{
    background: #000000;
    color: #ffffff;
    padding: 80px 22px 60px;
    font-family: "Inter", sans-serif;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.footer-container{
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 60px;
    justify-items: center;
    width: 100%;
    box-sizing: border-box;
    padding: 0;
    overflow-x: hidden;
}
.footer-column{
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}
.footer-heading{
    font-family: "Yellowtail", cursive;
    font-size: clamp(32px, 4vw, 36px);
    font-weight: 400;
    letter-spacing: 0.02em;
    margin: 0 0 28px 0;
    color: #ffffff;
    line-height: 1.2;
}
.footer-content{
    display: flex;
    flex-direction: column;
    gap: 12px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.8;
    color: #ffffff;
}
.footer-content p{
    margin: 0;
}
.footer-subheading{
    font-family: "Inter", sans-serif;
    font-weight: 600;
    font-size: 16px;
    margin-bottom: 4px;
    margin-top: 4px;
    color: #ffffff;
    letter-spacing: 0.01em;
}
.footer-content a{
    color: #ffffff;
    text-decoration: none;
    transition: all 0.2s ease;
    display: inline-block;
}
.footer-content a:hover{
    opacity: 0.8;
    text-decoration: underline;
    text-decoration-color: #ffffff;
    text-underline-offset: 3px;
    transform: translateX(2px);
}

/* Mailing List Form */
.mailing-list-form{
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.footer-email-input{
    background: transparent;
    border: none;
    border-bottom: 2px solid rgba(0, 0, 0, 0.2);
    padding: 8px 0;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    color: #000000;
    outline: none;
    transition: border-color 0.2s ease;
}
.footer-email-input::placeholder{
    color: rgba(0, 0, 0, 0.5);
}
.footer-email-input:focus{
    border-bottom-color: #000000;
}
.footer-subscribe-btn{
    background: #000000;
    border: 2px solid #000000;
    padding: 12px 24px;
    font-family: "Inter", sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #ffffff;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.1s ease;
    align-self: flex-start;
    border-radius: 4px;
}
.footer-subscribe-btn:hover{
    background: #333333;
    border-color: #333333;
    transform: translateY(-1px);
}

@media (max-width: 1024px){
    .site-footer{
        padding: 70px 22px 50px;
    }
    .footer-container{
        grid-template-columns: repeat(2, 1fr);
        gap: 50px 40px;
    }
    .footer-heading{
        margin-bottom: 24px;
    }
    .hero__info-group{
        display: flex;
        flex-direction: column;
        gap: 20px;
        max-width: 520px;
        align-items: center;
    }
    .hero__hours span{
        margin-bottom: 10px;
    }
    .hero__hours span:last-child{
        margin-bottom: 0;
    }
}

/* Footer Copyright */
.footer-copyright {
    max-width: 1200px;
    margin: 50px auto 0;
    padding-top: 30px;
    border-top: 1px solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px;
}

.footer-copyright-left {
    flex: 1;
    min-width: 0;
}

.footer-copyright-right {
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.footer-copyright p {
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: #ffffff;
    margin: 0;
    opacity: 1;
    line-height: 1.5;
}

.footer-copyright-left p {
    display: block;
    text-align: left;
}

.footer-copyright-right p {
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

.footer-copyright-right a {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
}

.graticle-logo {
    height: 40px;
    width: auto;
    display: inline-block;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    transition: filter 0.3s ease;
    pointer-events: none;
}

.footer-copyright-right a:hover .graticle-logo,
.footer-copyright-right a:focus .graticle-logo {
    filter: none;
}

@media (max-width: 767px){
    .site-footer{
        padding: 60px 22px 40px;
    }
    
    .footer-container{
        grid-template-columns: 1fr;
        gap: 45px;
    }
    
    .footer-column{
        text-align: center;
    }
    
    .footer-heading{
        font-size: clamp(28px, 6vw, 32px);
        margin-bottom: 24px;
        text-align: center;
    }
    
    .footer-content{
        font-size: 15px;
        gap: 10px;
        text-align: center;
        align-items: center;
        line-height: 1.75;
    }
    
    .footer-subheading{
        font-size: 15px;
        margin-top: 0;
    }
    
    .footer-content a:hover{
        transform: none;
    }
    
    .footer-copyright {
        margin-top: 40px;
        padding-top: 25px;
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
    
    .footer-copyright-left,
    .footer-copyright-right {
        width: 100%;
        text-align: center;
        display: flex;
        justify-content: center;
        align-items: center;
    }
    
    .footer-copyright-left p {
        text-align: center;
        display: block;
    }
    
    .footer-copyright-right p {
        font-size: 13px;
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 8px;
        margin: 0 auto;
    }
    
    .footer-copyright p {
        font-size: 13px;
    }
    
    #copyright-year {
        display: inline;
    }
    
    .graticle-logo {
        height: 36px;
    }
}

@media (max-width: 520px){
    .menu-button, .menu-close{ width: 48px; height: 48px; }
    .hero__center{ 
        padding: 40px 16px 40px;
        align-items: center;
        min-height: 100svh;
    }
    .hero__center-content{ 
        gap: clamp(20px, 3vh, 28px);
        margin-top: 0;
        padding: clamp(15px, 2vh, 20px) 0;
    }
    .hero__logo img{
        width: min(300px, 67.5vw);
        max-height: none;
        object-fit: contain;
    }
    .hero__info-group{
        gap: clamp(16px, 2.5vh, 20px);
        text-align: center;
    }
    .hero__info-item{
        align-items: center;
    }
    .hero__info-label{ font-size: 12px; }
    .hero__info-value{ font-size: 16px; text-align: center; }
    .hero__meta{ font-size: 16px; }
    .hero__buttons {
        flex-direction: column;
        gap: 12px;
        margin-bottom: 20px;
    }
    .hero__button{ 
        padding: 14px 28px; 
        font-size: 15px;
        min-width: 200px;
        width: 100%;
        max-width: 300px;
    }
    .menu-overlay{ padding: 70px 16px 16px; }
    .menu-brand__logo{ width: min(250px, 45vw, 20vh); }
    .menu-nav__link{ font-size: clamp(20px, 4.5vw, 40px); }
    .site-footer{ padding: 50px 20px 40px; }
    .footer-container{
        grid-template-columns: 1fr;
        gap: 35px;
    }
    .footer-heading{ margin-bottom: 16px; }
    .footer-content{ gap: 6px; }
}

@media (max-height: 600px){
    .menu-overlay{ padding: 60px 16px 12px; }
    .menu-brand__logo{ width: min(200px, 40vw, 18vh); margin-bottom: clamp(8px, 1.5vh, 16px); }
    .menu-nav__list{ gap: clamp(2px, 0.8vh, 6px); }
    .menu-nav__link{ font-size: clamp(18px, 4vw, 36px); padding: 0; }
    /* Hero: compact layout so all content visible (scroll if needed) */
    .hero__center{ padding: 20px 22px 20px; align-items: center; }
    .hero__center-content{ gap: 10px; padding: 10px 0; }
    .hero__rating--top{ margin-bottom: 0; font-size: 13px; }
    .hero__rating-stars{ font-size: 12px; }
    .hero__info-group{
        display: flex;
        flex-direction: column;
        gap: 12px;
        width: 100%;
        max-width: 480px;
        align-items: center;
    }
    .hero__hours span{
        margin-bottom: 10px;
    }
    .hero__hours span:last-child{
        margin-bottom: 0;
    }
    .hero__info-item{ align-items: center; }
    .hero__info-label{ font-size: 10px; }
    .hero__info-value{ font-size: 14px; line-height: 1.4; }
    .hero__meta{ font-size: 14px; }
    .hero__info-value span{ margin-bottom: 2px; }
    .hero__logo img{ width: min(200px, 45vw); }
    .hero__buttons{ gap: 8px; }
    .hero__button{ padding: 10px 24px; font-size: 14px; min-height: 40px; }
}

@media (max-height: 500px){
    .hero__center{ padding: 16px 16px 16px; }
    .hero__center-content{ gap: 8px; padding: 8px 0; }
    .hero__rating--top{ font-size: 12px; }
    .hero__rating-stars{ font-size: 11px; }
    .hero__info-group{ gap: 8px 16px; max-width: 420px; }
    .hero__info-label{ font-size: 9px; }
    .hero__info-value{ font-size: 13px; }
    .hero__meta{ font-size: 13px; }
    .hero__logo img{ width: min(160px, 38vw); }
    .hero__button{ padding: 8px 20px; font-size: 13px; min-height: 36px; }
    /* Compact hours on one line to save vertical space */
    .hero__hours span{ display: inline; margin-bottom: 0; }
    .hero__hours span::after{ content: ' · '; color: rgba(255,255,255,.6); }
    .hero__hours span:last-child::after{ content: none; }
}

@media (max-height: 600px) and (max-width: 400px){
    /* Narrow + short: contact info stays 2x2, single column would be too tall */
    .hero__info-group{ max-width: 100%; gap: 10px 12px; }
    .hero__info-value{ font-size: 13px; }
    .hero__meta{ font-size: 13px; }
}

/* Homepage Restaurant Description Section */
.homepage-restaurant-description {
    background: #ffffff;
    padding: 80px 22px;
    color: #000000;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.homepage-restaurant-description.visible {
    opacity: 1;
    transform: translateY(0);
}

.restaurant-desc-container {
    max-width: 900px;
    margin: 0 auto;
    width: 100%;
    padding: 0;
}

.restaurant-map-directions {
    width: 100%;
    max-width: 100%;
}

.restaurant-desc-container h2 {
    font-family: "Yellowtail", cursive;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 400;
    color: #000000;
    margin: 0 0 40px 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.restaurant-map-directions {
    margin-top: 50px;
    display: flex;
    flex-direction: column;
    gap: 24px;
    align-items: center;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s;
    width: 100%;
    max-width: 100%;
}

.homepage-restaurant-description.visible .restaurant-map-directions {
    opacity: 1;
    transform: translateY(0);
}

/* Homepage Our Food (plate photos) Section */
.homepage-food-photos {
    background: #ffffff;
    padding: 70px 22px 80px;
    color: #000000;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
    border-top: 1px solid rgba(0, 0, 0, 0.08);
}

.food-photos-container {
    max-width: 1200px;
    margin: 0 auto;
}

.food-photos-title {
    font-family: "Yellowtail", cursive;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 400;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.food-photos-intro {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    max-width: 720px;
    margin: 0 auto 40px;
    text-align: center;
}

.food-photos-hero {
    margin-bottom: 32px;
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.12);
    max-width: 100%;
}

.food-photos-img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
}

.food-photos-img--hero {
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.food-photos-hero .food-photos-img,
.food-photos-masonry .food-photos-img {
    cursor: pointer;
}

/* Grid layout: even columns so no trailing white space at the end of the section */
.food-photos-masonry {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 32px;
    width: 100%;
    max-width: 100%;
}

.food-photos-masonry-item {
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08);
}

.food-photos-masonry-item img {
    width: 100%;
    height: auto;
    display: block;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    vertical-align: middle;
}

.food-photos-cta {
    text-align: center;
    margin: 0;
}

.food-photos-menu-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 32px;
    min-height: 48px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #000000;
    border: 2px solid #000000;
    border-radius: 6px;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, box-shadow 0.2s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.food-photos-menu-btn:hover {
    background: #333333;
    border-color: #333333;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.food-photos-menu-btn:focus {
    outline: 2px solid #000000;
    outline-offset: 2px;
}

@media (max-width: 768px) {
    .homepage-food-photos {
        padding: 50px 16px 60px;
    }
    .food-photos-hero {
        margin-bottom: 28px;
    }
    .food-photos-masonry {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        margin-bottom: 28px;
    }
    .food-photos-intro {
        font-size: 16px;
        margin-bottom: 32px;
    }
}

@media (max-width: 480px) {
    .homepage-food-photos {
        padding: 40px 16px 50px;
    }
    .food-photos-masonry {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

/* Lightbox for Food and Inside galleries */
body.lightbox-open {
    overflow: hidden;
}

.lightbox {
    position: fixed;
    inset: 0;
    z-index: 9999;
    background: rgba(0, 0, 0, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 50px 60px 70px;
    box-sizing: border-box;
}

/* Keep lightbox hidden until an image is clicked; [hidden] is overridden by display:flex above */
.lightbox[hidden] {
    display: none !important;
}

.lightbox-content {
    flex: 1 1 auto;
    min-width: 0;
    max-width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lightbox-img {
    max-width: 100%;
    max-height: calc(100vh - 120px);
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}

.lightbox-close {
    position: absolute;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    padding: 0;
    border: none;
    background: rgba(255, 255, 255, 0.15);
    color: #fff;
    font-size: 28px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s ease;
}

.lightbox-close:hover {
    background: rgba(255, 255, 255, 0.25);
}

.lightbox-close:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.lightbox-prev,
.lightbox-next {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 52px;
    height: 52px;
    padding: 0;
    border: 2px solid rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.1);
    color: #fff;
    font-size: 36px;
    line-height: 1;
    cursor: pointer;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: background 0.2s ease, border-color 0.2s ease;
}

.lightbox-prev {
    left: 16px;
}

.lightbox-next {
    right: 16px;
}

.lightbox-prev:hover,
.lightbox-next:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: rgba(255, 255, 255, 0.8);
}

.lightbox-prev:focus,
.lightbox-next:focus {
    outline: 2px solid #fff;
    outline-offset: 2px;
}

.lightbox-counter {
    position: absolute;
    bottom: 24px;
    left: 50%;
    transform: translateX(-50%);
    font-family: "Inter", sans-serif;
    font-size: 14px;
    color: rgba(255, 255, 255, 0.85);
}

@media (max-width: 768px) {
    .lightbox {
        padding: 40px 12px 56px;
    }
    .lightbox-prev,
    .lightbox-next {
        width: 44px;
        height: 44px;
        font-size: 28px;
        left: 8px;
        right: 8px;
    }
    .lightbox-next {
        right: 8px;
    }
    .lightbox-close {
        top: 12px;
        right: 12px;
        width: 44px;
        height: 44px;
        font-size: 24px;
    }
}

/* Homepage Interior Gallery Section */
.homepage-interior-gallery {
    background: #f5f5f4;
    padding: 70px 22px 80px;
    color: #000000;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.interior-gallery-container {
    max-width: 1200px;
    margin: 0 auto;
}

.interior-gallery-title {
    font-family: "Yellowtail", cursive;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 400;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.interior-gallery-intro {
    font-family: "Inter", sans-serif;
    font-size: 18px;
    line-height: 1.7;
    color: #333;
    max-width: 720px;
    margin: 0 auto 36px;
    text-align: center;
}

.interior-gallery-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 28px;
    max-width: 100%;
}

.interior-gallery-featured-img {
    width: 100%;
    height: auto;
    aspect-ratio: 3 / 2;
    object-fit: cover;
    border-radius: 8px;
    display: block;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

.interior-gallery-cta {
    text-align: center;
    margin: 0 0 40px 0;
}

.interior-gallery-cta-link {
    font-family: "Platypi", serif;
    font-size: 17px;
    font-weight: 600;
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.interior-gallery-cta-link:hover {
    color: #333;
}

/* Grid layout: even columns so no trailing white space at the end of the section */
.interior-gallery-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 100%;
}

.interior-gallery-item {
    margin: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #eee;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.interior-gallery-item img {
    width: 100%;
    height: auto;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    display: block;
    vertical-align: middle;
    cursor: pointer;
}

@media (max-width: 768px) {
    .homepage-interior-gallery {
        padding: 50px 16px 60px;
    }
    .interior-gallery-featured {
        grid-template-columns: 1fr;
        gap: 12px;
        margin-bottom: 24px;
    }
    .interior-gallery-intro {
        font-size: 16px;
        margin-bottom: 28px;
    }
    .interior-gallery-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media (max-width: 480px) {
    .interior-gallery-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
}

.map-container {
    width: 100%;
    max-width: 100%;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    aspect-ratio: 16 / 9;
    position: relative;
}

.map-container iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
}

@media (max-width: 1024px) {
    .map-container {
        max-width: 100%;
    }
}

@media (max-width: 1024px) and (min-width: 768px) {
    .restaurant-features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .restaurant-features-grid .feature-item:nth-child(1),
    .restaurant-features-grid .feature-item:nth-child(2),
    .restaurant-features-grid .feature-item:nth-child(3),
    .restaurant-features-grid .feature-item:nth-child(4),
    .restaurant-features-grid .feature-item:nth-child(5) {
        grid-column: span 1;
        justify-self: stretch;
        max-width: 100%;
    }
    
    .restaurant-features-grid .feature-item:nth-child(6) {
        grid-column: 1 / -1;
    }
}

@media (max-width: 767px) {
    .restaurant-map-directions {
        margin-top: 40px;
        gap: 20px;
    }
    
    .map-container {
        aspect-ratio: 4 / 3; /* Taller on tablets */
        border-radius: 6px;
    }
    
    .directions-button {
        width: 100%;
        max-width: 300px;
        min-height: 44px;
    }
    
    .restaurant-features-grid {
        grid-template-columns: 1fr !important;
        gap: 30px;
    }
    
    .restaurant-features-grid .feature-item:nth-child(1),
    .restaurant-features-grid .feature-item:nth-child(2),
    .restaurant-features-grid .feature-item:nth-child(3),
    .restaurant-features-grid .feature-item:nth-child(4),
    .restaurant-features-grid .feature-item:nth-child(5),
    .restaurant-features-grid .feature-item:nth-child(6) {
        grid-column: 1 / -1 !important;
    }
}

@media (max-width: 480px) {
    .map-container {
        aspect-ratio: 1 / 1; /* Square on small phones */
        border-radius: 6px;
    }
    
    .directions-button {
        padding: 12px 24px;
        font-size: 15px;
    }
    
    .restaurant-features-grid {
        grid-template-columns: 1fr !important;
        gap: 25px;
    }
    
    .restaurant-features-grid .feature-item {
        grid-column: 1 / -1 !important;
    }
}

.directions-button {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 600;
    color: #ffffff;
    background: #000000;
    padding: 14px 32px;
    min-height: 44px;
    min-width: 180px;
    text-decoration: none;
    border-radius: 4px;
    transition: all 0.3s ease;
    justify-content: center;
    letter-spacing: 0.02em;
}

.directions-button:hover {
    background: #333333;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.directions-button svg {
    transition: transform 0.3s ease;
}

.directions-button:hover svg {
    transform: translateX(4px);
}

.restaurant-desc-content {
    font-family: "Inter", sans-serif;
    font-size: 17px;
    line-height: 1.8;
    color: #000000;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
}

.restaurant-desc-content p {
    margin: 0 0 24px 0;
    text-align: left;
}
.restaurant-desc-content p:first-child {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 28px;
}

.restaurant-desc-content p:last-child {
    margin-bottom: 0;
}

.about-section-image {
    margin: 36px 0 32px 0;
    max-width: 100%;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
}

.about-section-image img {
    width: 100%;
    height: auto;
    display: block;
    vertical-align: middle;
    aspect-ratio: 3 / 2;
    object-fit: cover;
}

/* Stacked full-width layout: no floats so text and images flow in a clear order */
@media (max-width: 639px) {
    .about-section-image {
        margin: 28px 0 24px 0;
    }
}

.restaurant-desc-content strong {
    font-weight: 600;
    color: #000000;
}

/* Restaurant Features Grid */
.restaurant-features-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 30px;
    margin-top: 40px;
}

.restaurant-features-grid .feature-item:nth-child(1) {
    grid-column: 1 / 3;
}

.restaurant-features-grid .feature-item:nth-child(2) {
    grid-column: 3 / 5;
}

.restaurant-features-grid .feature-item:nth-child(3) {
    grid-column: 5 / 7;
}

.restaurant-features-grid .feature-item:nth-child(4) {
    grid-column: 1 / 4;
}

.restaurant-features-grid .feature-item:nth-child(5) {
    grid-column: 4 / 7;
}

.restaurant-features-grid .feature-item:nth-child(6) {
    grid-column: 1 / -1;
}

.feature-item {
    display: flex;
    flex-direction: column;
}

.feature-title {
    font-family: "Platypi", serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    line-height: 1.3;
}

.feature-item p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 0;
    text-align: left;
}

@media (max-width: 767px) {
    .homepage-restaurant-description {
        padding: 60px 22px;
    }
    
    .restaurant-desc-container h2 {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 30px;
    }
    
    .restaurant-desc-content {
        font-size: 16px;
        line-height: 1.7;
    }
    
    .restaurant-desc-content p {
        margin-bottom: 20px;
    }
    
    .restaurant-desc-content p:first-child {
        font-size: 18px;
        line-height: 1.8;
        margin-bottom: 24px;
    }
}

@media (max-width: 520px) {
    .homepage-restaurant-description {
        padding: 50px 16px;
    }
}

/* Homepage FAQ Section */
/* Why Choose Tequila Fuego Section */
.homepage-why-choose {
    background: #f8f8f8;
    padding: 80px 22px;
    color: #000000;
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.homepage-why-choose.visible {
    opacity: 1;
    transform: translateY(0);
}

.why-choose-container {
    max-width: 1200px;
    margin: 0 auto;
}

.why-choose-title {
    font-family: "Yellowtail", cursive;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 400;
    color: #000000;
    margin: 0 0 30px 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.why-choose-content {
    font-family: "Inter", sans-serif;
}

.why-choose-intro {
    font-size: 18px;
    line-height: 1.8;
    color: #000000;
    margin: 0 0 50px 0;
    text-align: center;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 35px;
    margin-top: 40px;
}

.why-choose-item {
    display: flex;
    flex-direction: column;
    background: #ffffff;
    padding: 30px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.why-choose-item-title {
    font-family: "Platypi", serif;
    font-size: clamp(20px, 2.5vw, 24px);
    font-weight: 700;
    color: #000000;
    margin: 0 0 15px 0;
    line-height: 1.3;
}

.why-choose-item p {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 0;
    text-align: left;
}

/* Homepage Reviews Section */
.homepage-reviews {
    background: #ffffff;
    padding: 80px 22px;
    color: #000000;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.reviews-container {
    max-width: 1200px;
    margin: 0 auto;
}

.reviews-title {
    font-family: "Yellowtail", cursive;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 400;
    color: #000000;
    margin: 0 0 20px 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.reviews-intro {
    font-size: 18px;
    line-height: 1.7;
    color: #000000;
    margin: 0 0 45px 0;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.reviews-grid {
    column-count: 3;
    column-gap: 30px;
}

.review-card {
    display: flex;
    flex-direction: column;
    break-inside: avoid;
    margin-bottom: 30px;
    background: #f8f8f8;
    padding: 28px;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.04);
    min-height: 0;
}

.review-platform {
    margin-top: auto;
    align-self: flex-end;
    padding-top: 12px;
}

.review-platform i {
    font-size: 18px;
}

.review-platform--google {
    color: #4285f4;
}

.review-platform--facebook {
    color: #1877f2;
}

.review-platform--yelp {
    color: #d32323;
}

.review-stars {
    font-size: 20px;
    letter-spacing: 2px;
    color: #f8b805;
    margin-bottom: 14px;
    line-height: 1;
}

.review-text {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 0 0 20px 0;
    flex-grow: 1;
    font-style: normal;
}

.review-text::before,
.review-text::after {
    content: none;
}

.review-author {
    font-family: "Platypi", serif;
    font-size: 15px;
    font-weight: 600;
    color: #000000;
    margin: 0;
}

/* Hide reviews after the first 12 until "Read All Reviews" is clicked */
.review-card--hidden {
    display: none;
}
.homepage-reviews.reviews-expanded .review-card--hidden {
    display: flex;
}

.reviews-expand-wrap {
    text-align: center;
    margin-top: 32px;
}
.reviews-expand-wrap[aria-hidden="true"] {
    display: none;
}
.reviews-expand-btn {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    font-weight: 500;
    padding: 14px 28px;
    border: 2px solid #1a1a1a;
    background: transparent;
    color: #1a1a1a;
    border-radius: 6px;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease;
}
.reviews-expand-btn:hover {
    background: #1a1a1a;
    color: #fff;
    transform: translateY(-2px);
}

.reviews-cta {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 45px 0 0 0;
    text-align: center;
}

.reviews-cta a {
    color: #000000;
    text-decoration: underline;
    text-decoration-color: rgba(0, 0, 0, 0.35);
    text-underline-offset: 3px;
    transition: text-decoration-color 0.2s ease;
}

.reviews-cta a:hover {
    text-decoration-color: #000000;
}

.review-share-block {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid #e8e8e8;
}

.reviews-cta--secondary {
    margin-top: 0;
    margin-bottom: 16px;
    font-size: 15px;
}

/* Leave a Review pill buttons */
.review-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    justify-content: center;
    align-items: center;
}

.review-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px 8px 8px;
    background: #ffffff;
    border: 1px solid #e0e0e0;
    border-radius: 999px;
    font-family: "Inter", sans-serif;
    font-size: 15px;
    font-weight: 500;
    color: #333333;
    text-decoration: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.review-btn:hover {
    border-color: #bdbdbd;
    box-shadow: 0 1px 4px rgba(0, 0, 0, 0.08);
    color: #333333;
}

.review-btn:hover .review-btn__label {
    color: #333333;
}

.review-btn__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    border-radius: 50%;
    flex-shrink: 0;
}

.review-btn__icon i {
    font-size: 14px;
    color: #ffffff;
}

.review-btn--google .review-btn__icon {
    background: #4285f4;
}

.review-btn--facebook .review-btn__icon {
    background: #1877f2;
}

.review-btn--yelp .review-btn__icon {
    background: #d32323;
}

.review-btn__label {
    white-space: nowrap;
}

@media (max-width: 767px) {
    .reviews-cta--secondary {
        font-size: 14px;
    }
    
    .review-buttons {
        gap: 10px;
    }
    
    .review-btn {
        padding: 6px 14px 6px 6px;
        font-size: 14px;
    }
    
    .review-btn__icon {
        width: 24px;
        height: 24px;
    }
    
    .review-btn__icon i {
        font-size: 12px;
    }
}

@media (max-width: 1024px) {
    .reviews-grid {
        column-count: 2;
        column-gap: 25px;
    }
    .review-card {
        margin-bottom: 25px;
    }
}

@media (max-width: 767px) {
    .homepage-reviews {
        padding: 60px 22px;
    }
    
    .reviews-grid {
        column-count: 1;
        column-gap: 0;
    }
    .review-card {
        margin-bottom: 24px;
    }
    
    .reviews-intro {
        font-size: 17px;
        margin-bottom: 35px;
    }
    
    .reviews-cta {
        margin-top: 35px;
        font-size: 15px;
    }
}

@media (max-width: 520px) {
    .homepage-reviews {
        padding: 50px 16px;
    }
    
    .review-card {
        padding: 24px;
    }
}

@media (max-width: 767px) {
    .homepage-why-choose {
        padding: 60px 22px;
    }
    
    .why-choose-grid {
        grid-template-columns: 1fr;
        gap: 25px;
    }
    
    .why-choose-intro {
        font-size: 17px;
        margin-bottom: 40px;
    }
    
    .why-choose-item {
        padding: 25px;
    }
}

.homepage-faq {
    background: #ffffff;
    padding: 80px 22px;
    color: #000000;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.8s ease, transform 0.8s ease;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    overflow-x: hidden;
}

.homepage-faq.visible {
    opacity: 1;
    transform: translateY(0);
}

.faq-container {
    max-width: 900px;
    margin: 0 auto;
}

.faq-title {
    font-family: "Yellowtail", cursive;
    font-size: clamp(36px, 6vw, 48px);
    font-weight: 400;
    color: #000000;
    margin: 0 0 40px 0;
    text-align: center;
    letter-spacing: 0.02em;
}

.faq-content {
    display: flex;
    flex-direction: column;
    gap: 30px;
    max-width: 800px;
    margin: 0 auto;
    box-sizing: border-box;
    overflow-x: hidden;
    width: 100%;
}

.faq-item {
    padding: 0;
}

.faq-question {
    font-family: "Platypi", serif;
    font-size: clamp(20px, 3vw, 24px);
    font-weight: 700;
    color: #000000;
    margin: 0 0 12px 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    max-width: 100%;
}

.faq-answer {
    font-family: "Inter", sans-serif;
    font-size: 16px;
    line-height: 1.7;
    color: #000000;
    margin: 0;
    word-wrap: break-word;
    overflow-wrap: break-word;
    hyphens: auto;
    max-width: 100%;
}

.faq-answer a {
    color: #000000;
    text-decoration: underline;
    text-underline-offset: 2px;
}

.faq-answer a:hover {
    opacity: 0.7;
}

@media (max-width: 767px) {
    .homepage-faq {
        padding: 60px 22px;
    }
    
    .faq-title {
        font-size: clamp(28px, 8vw, 36px);
        margin-bottom: 30px;
    }
    
    .faq-content {
        gap: 24px;
    }
    
    .faq-question {
        font-size: clamp(18px, 4vw, 22px);
    }
    
    .faq-answer {
        font-size: 15px;
    }
}

@media (max-width: 520px) {
    .homepage-faq {
        padding: 50px 16px;
    }
}
