@import url('https://fonts.googleapis.com/css2?family=Great+Vibes&display=swap');
@import url('https://fonts.googleapis.com/css2?family=Abel&display=swap');

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
:root {
    --black: #F5EDDC;
    --dark: #F5EDDC;
    --espresso: #F5EDDC;
    --gold: #C4A57B;
    --gold-dim: rgba(196,165,123,0.15);
    --cream: #5B2C0E;
    --copper: #6B4C30;
    --text: #6B4C30;
    --card-bg: rgba(255,252,245,0.85);
    --card-border: rgba(91,44,14,0.1);
}
html { scroll-behavior: smooth; }
body { font-family: 'Abel', sans-serif; color: var(--cream); background: var(--black); line-height: 1.7; -webkit-font-smoothing: antialiased; }
h1, h2 { font-family: 'Great Vibes', cursive; font-weight: 400; line-height: 1.15; }
h3, h4 { font-family: 'Abel', sans-serif; font-weight: 600; line-height: 1.4; letter-spacing: 0.5px; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 1.5rem; }

/* FADE */
.reveal { opacity: 0; transform: translateY(30px); transition: opacity 0.8s ease, transform 0.8s ease; }
.reveal.show { opacity: 1; transform: translateY(0); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 200; padding: 1rem 0; transition: all 0.4s ease; }
.nav.scrolled { background: rgba(245,237,220,0.97); backdrop-filter: blur(12px); border-bottom: 1px solid var(--card-border); padding: 0.8rem 0; }
.nav.scrolled .nav-logo img { max-height: 52px; transition: max-height 0.4s ease; }
.nav.scrolled .nav-links a { font-size: 0.62rem; transition: font-size 0.4s ease; }
.nav.scrolled .nav-cta-btn { padding: 0.4rem 1.05rem !important; transition: padding 0.4s ease !important; }
.nav-inner { max-width: 1400px; margin: 0 auto; display: flex; align-items: center; justify-content: space-between; padding: 0 3rem; }
.nav-logo img { max-height: 65px; width: auto; filter: brightness(10); transition: all 0.4s ease; }
.nav.scrolled .nav-logo img { filter: none; }
.nav-links { display: flex; gap: 2rem; align-items: center; list-style: none; }
.nav-links a { text-decoration: none; color: #fff; font-size: 0.78rem; font-weight: 500; letter-spacing: 1.5px; text-transform: uppercase; position: relative; transition: all 0.4s ease; text-shadow: 0 1px 3px rgba(0,0,0,0.2); }
.nav.scrolled .nav-links a { color: var(--cream); text-shadow: none; }
.nav-links a::after { content: ''; position: absolute; bottom: -4px; left: 50%; width: 0; height: 1px; background: var(--gold); transition: all 0.3s; transform: translateX(-50%); }
.nav-links a:hover { color: var(--gold); }
.nav-links a:hover::after { width: 100%; }
.nav-cta-btn { border: 1px solid var(--gold) !important; padding: 0.5rem 1.3rem; background: var(--gold) !important; color: #fff !important; transition: all 0.3s !important; }
.nav-cta-btn::after { display: none !important; }
.nav-cta-btn:hover { box-shadow: 0 4px 15px rgba(196,165,123,0.4) !important; transform: translateY(-1px); }
.nav.scrolled .nav-cta-btn { background: var(--gold) !important; border-color: var(--gold) !important; color: #fff !important; }
.nav-dd { position: relative; }
.nav-dd .dd-menu { display: none; position: absolute; top: 100%; left: -20px; background: var(--dark); border: 1px solid var(--card-border); min-width: 190px; padding: 0.6rem 0; padding-top: 1rem; }
.nav-dd:hover .dd-menu { display: block; }
.dd-menu a { display: block; padding: 0.5rem 1.3rem; font-size: 0.75rem; letter-spacing: 1px; color: var(--cream) !important; text-shadow: none !important; }
.hamburger { display: none; background: none; border: none; color: var(--cream); font-size: 1.4rem; cursor: pointer; }

/* HERO */
.hero { position: relative; height: 100vh; min-height: 600px; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background: url('/image/hero_image.png') center/cover no-repeat; }
.hero-bg::before { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(0,0,0,0.4) 0%, rgba(0,0,0,0.5) 50%, rgba(0,0,0,0.65) 100%); }
.hero-bg::after { display: none; }
.hero-content { position: relative; z-index: 1; height: 100%; display: flex; flex-direction: column; justify-content: center; padding: 7rem 3rem 4rem; max-width: 1400px; margin: 0 auto; }
.breadcrumbs { margin-bottom: 1.2rem; }
.breadcrumbs a, .breadcrumbs span { color: rgba(255,255,255,0.7); font-size: 0.82rem; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; text-decoration: none; text-shadow: 0 1px 3px rgba(0,0,0,0.3); }
.breadcrumbs a:hover { color: #D4BFA0; }
.bc-sep { margin: 0 0.5rem; color: rgba(255,255,255,0.4); }
.hero-tag { color: #D4BFA0; font-size: 0.8rem; font-weight: 600; letter-spacing: 5px; text-transform: uppercase; margin-bottom: 1.5rem; text-shadow: 0 1px 4px rgba(0,0,0,0.4); }
.hero h1 { font-size: clamp(2.5rem, 5vw, 3.8rem); font-weight: 300; max-width: 800px; margin-bottom: 1.5rem; color: #fff; }
.hero h1 strong { font-weight: 700; font-style: italic; color: #D4BFA0; }
.hero-sub { font-size: 1.2rem; color: rgba(255,255,255,0.85); max-width: 550px; margin-bottom: 2.5rem; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-glow { background: var(--gold); color: #fff; padding: 1rem 2.5rem; text-decoration: none; font-weight: 600; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; transition: all 0.3s; box-shadow: 0 4px 20px rgba(196,165,123,0.3); }
.btn-glow:hover { box-shadow: 0 6px 30px rgba(196,165,123,0.45); transform: translateY(-2px); }
.btn-dark { border: 1px solid var(--gold); color: #fff; padding: 1rem 2.5rem; text-decoration: none; font-weight: 600; font-size: 0.78rem; letter-spacing: 2px; text-transform: uppercase; background: var(--gold); transition: all 0.3s; }
.btn-dark:hover { box-shadow: 0 6px 30px rgba(196,165,123,0.45); transform: translateY(-2px); }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 1; color: var(--cream); font-size: 0.7rem; letter-spacing: 3px; text-transform: uppercase; display: flex; flex-direction: column; align-items: center; gap: 0.5rem; animation: bounce 2s infinite; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(8px); } }

/* SECTIONS */
.section { padding-top: 6rem; padding-bottom: 6rem; }
.section-dark { background: var(--dark); }
.section-espresso { background: var(--espresso); }
.section-divider { padding: 0; line-height: 0; width: 100%; }
.section-divider::after { content: ''; display: block; width: 100%; height: 1.5px; background: rgba(58,31,14,0.18); box-shadow: 0 1px 4px rgba(58,31,14,0.1); }
.gold-line { width: 50px; height: 1px; background: var(--gold); margin-bottom: 1.5rem; }
.section-tag { color: var(--gold); font-size: 0.75rem; font-weight: 600; letter-spacing: 4px; text-transform: uppercase; margin-bottom: 0.8rem; display: block; }
.section-title { font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 300; margin-bottom: 1rem; }
.section-sub { color: var(--text); max-width: 550px; font-size: 1.05rem; }

/* REVIEWS */
.reviews-track { display: flex; gap: 1.5rem; overflow-x: auto; -webkit-overflow-scrolling: touch; padding: 2rem 0; scrollbar-width: none; }
.reviews-track::-webkit-scrollbar { display: none; }
.r-card { flex: 0 0 360px; scroll-snap-align: start; background: #FBF7EF; border: 1px solid var(--card-border); padding: 2.5rem; box-shadow: 0 2px 15px rgba(91,44,14,0.04); transition: all 0.4s; position: relative; }
.r-card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 2px; background: linear-gradient(to right, transparent, var(--gold), transparent); opacity: 0; transition: opacity 0.4s; }
.r-card:hover { border-color: rgba(196,165,123,0.35); transform: translateY(-4px); box-shadow: 0 8px 30px rgba(91,44,14,0.08); }
.r-card:hover::before { opacity: 1; }
.r-stars { color: var(--gold); font-size: 0.75rem; letter-spacing: 3px; margin-bottom: 1.2rem; }
.r-text { font-family: 'Great Vibes', cursive; font-style: italic; font-size: 1.1rem; line-height: 1.7; color: var(--cream); margin-bottom: 1.5rem; display: -webkit-box; -webkit-line-clamp: 5; -webkit-box-orient: vertical; overflow: hidden; }
.r-author { font-size: 0.75rem; font-weight: 600; letter-spacing: 2px; text-transform: uppercase; color: var(--copper); }
.r-quote { position: absolute; top: 1.5rem; right: 2rem; font-family: 'Great Vibes', cursive; font-size: 4rem; color: var(--gold-dim); line-height: 1; }

/* WHY US */
.why-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.why-card { background: #FBF7EF; border: 1px solid var(--card-border); padding: 2.5rem; position: relative; overflow: hidden; transition: all 0.4s; }
.why-card::after { content: ''; position: absolute; bottom: 0; left: 0; right: 0; height: 2px; background: var(--gold); transform: scaleX(0); transition: transform 0.4s; }
.why-card:hover { border-color: rgba(196,165,123,0.3); background: #FBF7EF; box-shadow: 0 8px 30px rgba(91,44,14,0.06); }
.why-card:hover::after { transform: scaleX(1); }
.why-num { font-family: 'Great Vibes', cursive; font-size: 3.5rem; font-weight: 300; color: rgba(196,165,123,0.4); margin-bottom: 1rem; }
.why-card h3 { font-size: 1.4rem; font-weight: 400; margin-bottom: 1rem; color: var(--cream); }
.why-card p { color: var(--text); font-size: 1.02rem; }

/* FAQ */
.faq-wrap { max-width: 800px; margin: 2rem auto 0; }
.faq-item { border-bottom: 1px solid var(--card-border); }
.faq-q { width: 100%; border: none; background: none; padding: 1rem 0; display: flex; justify-content: space-between; align-items: center; cursor: pointer; text-align: left; }
.faq-q span { font-family: 'Great Vibes', cursive; font-size: 1.15rem; color: var(--cream); flex: 1; }
.faq-q .ico { width: 32px; height: 32px; border: 1px solid rgba(196,165,123,0.4); display: flex; align-items: center; justify-content: center; color: var(--gold); font-size: 0.7rem; transition: all 0.3s; flex-shrink: 0; margin-left: 1rem; }
.faq-a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-a-in { padding-bottom: 1.5rem; color: var(--text); font-size: 1.02rem; }
.faq-item.on .faq-a { max-height: 150px; }
.faq-item.on .ico { background: var(--gold); color: var(--black); border-color: var(--gold); transform: rotate(45deg); }

/* CTA */
.cta-section { text-align: center; padding: 5rem 2rem; position: relative; background: #8D6339; color: #fff; }
.cta-section::before { content: ''; position: absolute; top: 50%; left: 50%; width: 400px; height: 400px; background: radial-gradient(circle, rgba(196,165,123,0.1) 0%, transparent 70%); transform: translate(-50%,-50%); pointer-events: none; }
.cta-section h2 { font-size: clamp(2rem, 4vw, 3rem); font-weight: 300; margin-bottom: 2.5rem; position: relative; color: #fff; }
.cta-btns { display: flex; justify-content: center; gap: 1rem; flex-wrap: wrap; position: relative; }

/* LOCATION */
.loc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; margin-top: 3rem; }
.loc-info { display: flex; flex-direction: column; gap: 1.5rem; }
.loc-row { display: flex; gap: 1rem; }
.loc-row i { color: var(--gold); width: 18px; margin-top: 3px; }
.loc-row a { color: var(--cream); text-decoration: none; transition: color 0.3s; }
.loc-row a:hover { color: var(--gold); }
.hours-box { background: #FBF7EF; border: 1px solid var(--card-border); padding: 1.5rem; margin-top: 0.5rem; }
.h-row { display: flex; justify-content: space-between; padding: 0.5rem 0; font-size: 1rem; }
.h-row + .h-row { border-top: 1px solid var(--card-border); }
.h-closed { color: #C66; font-weight: 600; }
.map-box { border: 1px solid var(--card-border); overflow: hidden; min-height: 400px; }
.map-box iframe { width: 100%; height: 100%; min-height: 400px; border: 0; }

/* FOOTER */
.footer { background: #8D6339; border-top: none; padding: 4rem 0 2rem; }
.footer, .footer p, .footer .footer-desc { color: rgba(255,255,255,0.75); }
.footer a:hover { color: var(--gold) !important; }
.footer-bottom { color: rgba(255,255,255,0.4) !important; border-top-color: rgba(255,255,255,0.1) !important; }
.footer-logo img { filter: brightness(10); }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.footer-logo img { max-height: 65px; width: auto; margin-bottom: 1.2rem; }
.footer-desc { font-size: 0.95rem; color: var(--text); line-height: 1.8; }
.footer h4 { font-family: 'Abel', sans-serif; font-size: 0.80rem; font-weight: 600; letter-spacing: 3px; text-transform: uppercase; color: var(--gold); margin-bottom: 1.2rem; }
.footer-links { list-style: none; display: flex; flex-direction: column; gap: 0.7rem; }
.footer-links a { color: rgba(255,255,255,0.6); text-decoration: none; font-size: 0.95rem; font-weight: 300; transition: color 0.3s; }
.footer-links li { color: rgba(255,255,255,0.6); font-size: 0.95rem; font-weight: 300; }
.footer-links a:hover { color: var(--gold); }
.footer-bottom { text-align: center; padding-top: 2.5rem; margin-top: 2.5rem; border-top: 1px solid var(--card-border); font-size: 0.85rem; color: var(--text); }

/* RESPONSIVE */
@media (min-width: 1441px) {
    .container { max-width: 1400px; padding-left: 2rem; padding-right: 2rem; }
    .hero-content { max-width: 1600px; }
    .nav-inner { max-width: 1600px; }
    .hero h1 { font-size: 4rem; }
    .section-title { font-size: 3.5rem; }
    .r-card { flex: 0 0 400px; padding: 3rem; }
    .why-card { padding: 3rem; }
}
@media (max-width: 1200px) {
    .nav-inner { padding: 0 2rem; }
    .hero-content { padding: 7rem 2rem 5rem; }
    .nav-links { gap: 1.5rem; }
    .why-grid { gap: 1.2rem; }
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 1024px) {
    .why-grid { grid-template-columns: 1fr; }
    .loc-grid { grid-template-columns: 1fr; }
    .footer-grid { grid-template-columns: 1fr; }
    .r-card { flex: 0 0 320px; }
    .container { padding-left: 1.5rem; padding-right: 1.5rem; }
}
@media (max-width: 768px) {
    /* NAV */
    .nav { padding: 1.5rem 0; }
    .nav.scrolled { padding: 1.4rem 0; }
    .nav.menu-open { background: rgba(245,237,220,0.98) !important; padding: 1.5rem 0 !important; position: fixed; }
    .nav-logo img { max-height: 48px; }
    .nav.scrolled .nav-logo img { max-height: 48px; }
    .nav.menu-open .nav-logo img { filter: none !important; max-height: 48px; }
    .nav-links { display: none; flex-direction: column; position: fixed; top: 0; left: 0; right: 0; bottom: 0; width: 100%; height: 100vh; background: #F5EDDC; padding: 5rem 2rem; gap: 1.5rem; justify-content: center; align-items: center; z-index: 9999; overflow-y: auto; }
    .nav-links a { color: var(--cream) !important; text-shadow: none !important; font-size: 0.85rem !important; }
    .nav-links.active { display: flex; }
    .nav-dd:hover .dd-menu { display: none; }
    .nav-dd .dd-menu { display: none; position: static; background: transparent; border: none; min-width: auto; padding: 0.5rem 0 0; text-align: center; }
    .nav-dd.open .dd-menu { display: block !important; }
    .dd-menu a { padding: 0.4rem 0; font-size: 0.78rem !important; color: var(--gold) !important; }
    .hamburger { display: block; z-index: 10000; position: relative; }
    .nav-inner { padding: 0 1.5rem; }
    /* CONTAINER - padding horizontal siempre presente */
    .container { padding-left: 1.25rem; padding-right: 1.25rem; }
    /* HERO */
    .hero { display: flex; align-items: center; }
    .hero-content { justify-content: center; padding: 6rem 1.5rem 2rem; }
    .hero h1 { font-size: 2.5rem; margin-bottom: 1.2rem; }
    .hero-sub { font-size: 1.1rem; margin-bottom: 2rem; }
    .hero-btns { flex-direction: row; justify-content: flex-start; width: 100%; gap: 0.4rem; }
    .hero-btns a { text-align: center; padding: 0.7rem 0.65rem; font-size: 0.62rem; letter-spacing: 0.3px; }
    .breadcrumbs { margin-bottom: 1rem; font-size: 0.75rem; }
    .hero-tag { margin-bottom: 1rem; }
    .scroll-indicator { display: none; }
    /* SECCIONES */
    .section { padding-top: 3rem; padding-bottom: 3rem; }
    .section-dark { padding-top: 3rem; padding-bottom: 3rem; }
    .section-espresso { padding-top: 0; padding-bottom: 0; }
    .section-tag { margin-bottom: 0.6rem; font-size: 0.72rem; }
    .gold-line { margin-bottom: 1rem; }
    .section-title { font-size: 2rem; margin-bottom: 0.8rem; }
    .section-sub { margin-bottom: 0; }
    /* REVIEWS */
    .r-card { flex: 0 0 280px; padding: 2rem; }
    .reviews-track { padding: 1.5rem 0; }
    /* WHY US */
    .why-grid { margin-top: 2rem; }
    .why-card { padding: 2rem; }
    .why-num { font-size: 2.8rem; color: rgba(196,165,123,0.4); }
    /* FAQ */
    .faq-wrap { margin-top: 1.5rem; }
    .faq-item.on .faq-a { max-height: 300px; }
    /* CTA */
    .cta-section { padding: 3rem 1.5rem; }
    .cta-btns { flex-direction: row; justify-content: center; width: 100%; gap: 0.4rem; }
    .cta-btns a { text-align: center; padding: 0.7rem 0.65rem; font-size: 0.62rem; letter-spacing: 0.3px; }
    /* LOCATION */
    .loc-grid { gap: 2rem; margin-top: 2rem; }
    .map-box { min-height: 280px; }
    .map-box iframe { min-height: 280px; }
    /* FOOTER */
    .footer { padding: 2.5rem 0 1.5rem; }
    .footer-grid { grid-template-columns: 1fr 1fr; gap: 1.5rem; align-items: start; }
    .footer-grid > div:first-child { grid-column: 1 / -1; }
    .footer-logo img { max-height: 50px; margin-bottom: 0.8rem; }
    .footer-desc { font-size: 0.9rem; }
}
@media (max-width: 480px) {
    .container { padding-left: 1rem; padding-right: 1rem; }
    /* HERO */
    .hero { min-height: 500px; }
    .hero h1 { font-size: 2rem; margin-bottom: 1rem; }
    .hero-sub { font-size: 1.03rem; margin-bottom: 2rem; }
    .hero-tag { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 0.8rem; }
    .hero-content { padding: 6rem 1.25rem 2rem; justify-content: center; }
    .breadcrumbs { margin-bottom: 0.8rem; }
    .breadcrumbs a, .breadcrumbs span { font-size: 0.75rem; letter-spacing: 1px; }
    .btn-glow, .btn-dark { padding: 0.65rem 0.55rem; font-size: 0.58rem; letter-spacing: 0.3px; }
    /* SECCIONES */
    .section { padding-top: 2.5rem; padding-bottom: 2.5rem; }
    .section-tag { font-size: 0.7rem; letter-spacing: 3px; margin-bottom: 0.5rem; }
    .gold-line { margin-bottom: 0.8rem; }
    .section-title { font-size: 1.8rem; margin-bottom: 0.6rem; }
    .section-sub { font-size: 0.98rem; }
    /* REVIEWS */
    .r-card { flex: 0 0 260px; padding: 1.8rem; }
    .r-text { font-size: 1rem; -webkit-line-clamp: 4; }
    .r-quote { font-size: 3rem; top: 1rem; right: 1.5rem; }
    /* WHY US */
    .why-grid { margin-top: 1.5rem; }
    .why-card { padding: 1.8rem; }
    .why-card h3 { font-size: 1.2rem; }
    .why-card p { font-size: 0.95rem; }
    .why-num { font-size: 2.5rem; color: rgba(196,165,123,0.45); }
    /* FAQ */
    .faq-wrap { margin-top: 1rem; }
    .faq-q span { font-size: 1rem; }
    .faq-a-in { font-size: 0.95rem; }
    /* CTA */
    .cta-section { padding: 2.5rem 1.25rem; }
    .cta-section h2 { font-size: 1.8rem; }
    /* LOCATION */
    .loc-row { font-size: 0.98rem; }
    .hours-box { padding: 1.2rem; }
    .h-row { font-size: 0.93rem; }
    .map-box { min-height: 220px; }
    .map-box iframe { min-height: 220px; }
    /* FOOTER */
    .footer-desc { font-size: 0.93rem; }
    .footer-links a, .footer-links li { font-size: 0.93rem; }
    .footer-bottom { font-size: 0.83rem; }
}
@media (max-width: 375px) {
    .container { padding-left: 0.85rem; padding-right: 0.85rem; }
    .hero h1 { font-size: 1.75rem; margin-bottom: 0.8rem; }
    .hero-sub { font-size: 0.98rem; margin-bottom: 1.5rem; }
    .hero-content { padding: 6rem 1rem 2rem; }
    .breadcrumbs { margin-bottom: 0.6rem; font-size: 0.7rem; }
    .btn-glow, .btn-dark { padding: 0.7rem 0.7rem; font-size: 0.58rem; letter-spacing: 0.5px; }
    .section-tag { font-size: 0.68rem; margin-bottom: 0.4rem; }
    .section-title { font-size: 1.6rem; margin-bottom: 0.5rem; }
    .r-card { flex: 0 0 240px; padding: 1.5rem; }
    .r-text { font-size: 0.92rem; }
    .r-author { font-size: 0.68rem; }
    .why-card { padding: 1.5rem; }
    .why-card h3 { font-size: 1.1rem; }
    .why-card p { font-size: 0.92rem; }
    .faq-q span { font-size: 0.92rem; }
    .faq-q .ico { width: 28px; height: 28px; }
    .faq-a-in { font-size: 0.92rem; }
    .cta-section h2 { font-size: 1.6rem; }
    .loc-grid { margin-top: 1.5rem; }
    .loc-row { font-size: 0.95rem; }
    .footer-grid { gap: 1.5rem; }
    .nav-logo img { max-height: 50px; }
}
@media (max-width: 320px) {
    .container { padding-left: 0.75rem; padding-right: 0.75rem; }
    .hero h1 { font-size: 1.5rem; margin-bottom: 0.6rem; }
    .hero-sub { font-size: 0.91rem; max-width: 100%; margin-bottom: 1.2rem; }
    .hero-tag { font-size: 0.65rem; letter-spacing: 2px; }
    .breadcrumbs { margin-bottom: 0.5rem; }
    .btn-glow, .btn-dark { padding: 0.65rem 0.6rem; font-size: 0.53rem; letter-spacing: 0.5px; }
    .section { padding-top: 2rem; padding-bottom: 2rem; }
    .section-title { font-size: 1.4rem; margin-bottom: 0.4rem; }
    .section-tag { font-size: 0.65rem; letter-spacing: 2px; margin-bottom: 0.3rem; }
    .r-card { flex: 0 0 220px; padding: 1.2rem; }
    .r-text { font-size: 0.85rem; -webkit-line-clamp: 3; }
    .r-stars { font-size: 0.65rem; }
    .why-card { padding: 1.2rem; }
    .why-card h3 { font-size: 1rem; }
    .why-card p { font-size: 0.9rem; }
    .why-num { font-size: 2rem; }
    .faq-q span { font-size: 0.85rem; }
    .faq-a-in { font-size: 0.9rem; }
    .cta-section h2 { font-size: 1.4rem; }
    .cta-section { padding: 2rem 1rem; }
    .hours-box { padding: 1rem; }
    .h-row { font-size: 0.88rem; padding: 0.4rem 0; }
    .loc-row { font-size: 0.93rem; }
    .map-box { min-height: 180px; }
    .map-box iframe { min-height: 180px; }
    .footer { padding: 2rem 0 1rem; }
    .footer-logo img { max-height: 50px; }
    .footer-desc { font-size: 0.88rem; }
    .footer-links a, .footer-links li { font-size: 0.88rem; }
    .nav-logo img { max-height: 42px; }
}
@media (max-height: 500px) and (orientation: landscape) {
    .hero { min-height: 400px; height: auto; padding-top: 5rem; padding-bottom: 2rem; }
    .hero-content { padding: 6rem 2rem 2rem; }
    .hero h1 { font-size: 2rem; margin-bottom: 0.8rem; }
    .hero-sub { font-size: 0.85rem; margin-bottom: 1.5rem; }
    .hero-btns { flex-direction: row; }
    .hero-btns a { width: auto; }
    .scroll-indicator { display: none; }
}
