/*
  Design rationale: The logo's deep maroon-red on warm ivory is the soul of Inosho — a Tokyo-trained precision and quiet authority. The ink-brushed near-black grounds the space; maroon-red (#8B2E2E) is pulled directly from the logo mark; warm kanji-gold (#B5802A) echoes the gold staff uniform emblem and the restaurant's warm wood interior.
  Heading: Dela Gothic One — bold, Japanese-influenced display sans with structural weight that mirrors tsukemen craft
  Body: Epilogue — clean, versatile humanist sans that keeps the copy readable against dark backgrounds
*/

/* 1. Reset & Custom Properties */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
:root {
  --dark:      #0C0806;
  --bg-alt:    #18100E;
  --accent:    #8B2E2E;
  --highlight: #B5802A;
  --cream:     #F5F0E8;
  --cream-dim: rgba(245, 240, 232, 0.65);
  --accent-dim:rgba(139, 46, 46, 0.14);
  --border:    rgba(139, 46, 46, 0.22);
  --ff-display:'Dela Gothic One', sans-serif;
  --ff-body:   'Epilogue', sans-serif;
}
html { scroll-behavior: smooth; }
body { font-family: var(--ff-body); background: var(--dark); color: var(--cream); line-height: 1.6; overflow-x: hidden; }
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--ff-body); cursor: pointer; border: none; background: none; }

/* 2. Typography */
h1, h2, h3, h4 { font-family: var(--ff-display); line-height: 1.15; letter-spacing: 0.01em; }
h1 { font-size: clamp(2.4rem, 6vw, 5rem); }
h2 { font-size: clamp(1.8rem, 3.5vw, 3rem); }
h3 { font-size: clamp(1.2rem, 2.2vw, 1.8rem); }
h4 { font-size: clamp(1rem, 1.5vw, 1.3rem); }
p  { color: var(--cream-dim); font-size: 0.98rem; }
.section-label { display: inline-block; font-size: 0.72rem; font-weight: 700; letter-spacing: 0.18em; text-transform: uppercase; color: var(--highlight); margin-bottom: 0.6rem; }
.section-heading { color: var(--cream); margin-bottom: 1rem; }
.text-accent { color: var(--accent); }
.text-highlight { color: var(--highlight); }

/* 3. Buttons */
.btn { display: inline-flex; align-items: center; gap: 0.45rem; padding: 0.7rem 1.6rem; font-size: 0.88rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; border-radius: 3px; transition: all 0.25s ease; }
.btn-primary { background: var(--accent); color: var(--cream); }
.btn-primary:hover { background: #a33535; transform: translateY(-2px); }
.btn-ghost { border: 1.5px solid var(--cream); color: var(--cream); }
.btn-ghost:hover { background: var(--cream); color: var(--dark); }
.btn-outline { border: 1.5px solid var(--accent); color: var(--accent); }
.btn-outline:hover { background: var(--accent); color: var(--cream); }
.btn-highlight { background: var(--highlight); color: var(--dark); }
.btn-highlight:hover { background: #c98f32; transform: translateY(-2px); }

/* 4. Navbar */
.navbar { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 1.2rem 2rem; display: flex; align-items: center; justify-content: space-between; transition: background 0.35s ease, padding 0.35s ease; }
.navbar.scrolled { background: var(--dark); padding: 0.8rem 2rem; box-shadow: 0 2px 20px rgba(0,0,0,0.6); }
.nav-logo { display: flex; align-items: center; gap: 0.8rem; }
.nav-logo img { width: 40px; height: 40px; border-radius: 50%; object-fit: cover; }
.nav-logo-text { font-family: var(--ff-display); font-size: 1rem; color: var(--cream); letter-spacing: 0.04em; line-height: 1.2; }
.nav-logo-text span { display: block; font-family: var(--ff-body); font-size: 0.65rem; font-weight: 400; color: var(--cream-dim); letter-spacing: 0.12em; text-transform: uppercase; }
.nav-links { display: flex; align-items: center; gap: 2.2rem; }
.nav-links a { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: var(--cream-dim); transition: color 0.2s; }
.nav-links a:hover, .nav-links a.active { color: var(--cream); }
.nav-cta { padding: 0.55rem 1.3rem; font-size: 0.8rem; }
.hamburger { display: none; flex-direction: column; gap: 5px; width: 26px; cursor: pointer; }
.hamburger span { display: block; height: 2px; background: var(--cream); border-radius: 2px; transition: all 0.3s ease; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }
.mobile-overlay { display: none; position: fixed; inset: 0; background: var(--dark); z-index: 999; flex-direction: column; align-items: center; justify-content: center; gap: 2rem; }
.mobile-overlay.open { display: flex; }
.mobile-overlay a { font-family: var(--ff-display); font-size: 1.6rem; color: var(--cream); }
.mobile-overlay a:hover { color: var(--accent); }

/* 5. Hero */
.hero { min-height: 100vh; position: relative; display: flex; align-items: center; justify-content: center; text-align: center; overflow: hidden; }
.hero-bg { position: absolute; inset: 0; background-image: var(--page-hero-bg); background-size: cover; background-position: center; background-repeat: no-repeat; }
.hero-bg::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,8,6,0.55) 0%, rgba(12,8,6,0.35) 40%, rgba(12,8,6,0.8) 100%); }
.hero-content { position: relative; z-index: 2; max-width: 820px; padding: 0 2rem; }
.hero-content h1 { color: var(--cream); margin-bottom: 1rem; text-shadow: 0 2px 20px rgba(0,0,0,0.5); }
.hero-content .subtitle { font-size: clamp(0.9rem, 1.8vw, 1.15rem); color: var(--cream-dim); margin-bottom: 0.6rem; letter-spacing: 0.05em; text-transform: uppercase; }
.hero-content .tagline { font-size: clamp(1rem, 1.8vw, 1.2rem); color: var(--cream); margin-bottom: 2rem; font-weight: 300; font-style: italic; }
.hero-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.scroll-indicator { position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 0.4rem; }
.scroll-indicator span { font-size: 0.7rem; letter-spacing: 0.15em; text-transform: uppercase; color: var(--cream-dim); }
.scroll-indicator .arrow { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--cream-dim), transparent); }

/* 6. Features strip */
.features-strip { background: var(--accent); padding: 3.5rem 2rem; }
.features-grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; max-width: 1200px; margin: 0 auto; text-align: center; }
.feature-item svg { width: 36px; height: 36px; color: var(--cream); margin: 0 auto 0.7rem; }
.feature-item h4 { font-size: 0.9rem; color: var(--cream); margin-bottom: 0.3rem; font-family: var(--ff-display); letter-spacing: 0.04em; }
.feature-item p { font-size: 0.78rem; color: rgba(245,240,232,0.8); }

/* 7. Offerings grid */
.section-wrapper { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.offerings-section { padding: 6rem 0; }
.offerings-intro { text-align: center; max-width: 640px; margin: 0 auto 3.5rem; }
.offerings-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.2rem; }
.offering-tile { position: relative; aspect-ratio: 1; overflow: hidden; cursor: pointer; border-radius: 4px; }
.offering-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s ease; }
.offering-tile:hover img { transform: scale(1.06); }
.offering-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,8,6,0.9) 0%, transparent 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.2rem; opacity: 0; transition: opacity 0.3s; }
.offering-tile:hover .offering-tile-overlay, .offering-tile .offering-tile-overlay { opacity: 1; }
.offering-tile-overlay .label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--highlight); }
.offering-tile-overlay h4 { font-size: 0.95rem; color: var(--cream); margin-top: 0.2rem; }

/* 8. Brand teaser split */
.brand-teaser { padding: 6rem 0; background: var(--bg-alt); }
.split-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.split-img { border-radius: 4px; overflow: hidden; aspect-ratio: 4/5; }
.split-img img { width: 100%; height: 100%; object-fit: cover; }
.split-text p { margin-bottom: 1.2rem; }
.split-text .btn { margin-top: 0.5rem; }

/* 9. Stats row */
.stats-row { background: var(--dark); border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); padding: 3.5rem 2rem; }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 2rem; max-width: 1100px; margin: 0 auto; text-align: center; }
.stat-item .number { font-family: var(--ff-display); font-size: clamp(2rem, 4vw, 3.5rem); color: var(--accent); line-height: 1; margin-bottom: 0.4rem; }
.stat-item .label { font-size: 0.8rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream-dim); }

/* 10. Review cards */
.reviews-section { padding: 6rem 0; background: var(--bg-alt); }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.review-card { background: var(--dark); border: 1px solid var(--border); border-radius: 4px; padding: 2rem; }
.review-stars { display: flex; gap: 4px; margin-bottom: 1rem; }
.review-stars svg { width: 16px; height: 16px; color: var(--highlight); }
.review-text { font-style: italic; margin-bottom: 1.2rem; color: var(--cream-dim); font-size: 0.92rem; line-height: 1.7; }
.reviewer { display: flex; align-items: center; gap: 0.8rem; }
.reviewer-avatar { width: 40px; height: 40px; border-radius: 50%; background: var(--accent-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 1rem; color: var(--accent); }
.reviewer-info h5 { font-size: 0.88rem; color: var(--cream); font-family: var(--ff-body); font-weight: 700; }
.reviewer-info span { font-size: 0.75rem; color: var(--cream-dim); }

/* 11. Social CTA + platform buttons */
.social-cta { background: var(--accent); padding: 5rem 2rem; text-align: center; }
.social-cta h2 { color: var(--cream); margin-bottom: 1rem; }
.social-cta p { color: rgba(245,240,232,0.85); max-width: 560px; margin: 0 auto 2.5rem; }
.platform-btns { display: flex; gap: 1rem; flex-wrap: wrap; justify-content: center; }
.platform-btn { display: inline-flex; align-items: center; gap: 0.6rem; padding: 0.65rem 1.5rem; background: rgba(245,240,232,0.12); border: 1.5px solid rgba(245,240,232,0.3); color: var(--cream); font-size: 0.82rem; font-weight: 700; letter-spacing: 0.08em; border-radius: 3px; transition: all 0.25s; }
.platform-btn svg { width: 18px; height: 18px; }
.platform-btn:hover { background: rgba(245,240,232,0.22); border-color: var(--cream); }

/* 12. Social feed grid */
.social-feed { padding: 5rem 0; }
.feed-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 0.4rem; margin-top: 2.5rem; }
.feed-item { aspect-ratio: 1; overflow: hidden; }
.feed-item img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.4s ease; }
.feed-item:hover img { transform: scale(1.08); }

/* 13. Footer */
footer { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4rem 2rem 2rem; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.5fr; gap: 3rem; max-width: 1200px; margin: 0 auto; }
.footer-logo { display: flex; align-items: center; gap: 0.8rem; margin-bottom: 1rem; }
.footer-logo img { width: 44px; height: 44px; border-radius: 50%; object-fit: cover; }
.footer-logo-text { font-family: var(--ff-display); font-size: 1rem; color: var(--cream); }
.footer-tagline { font-size: 0.88rem; color: var(--cream-dim); margin-bottom: 1.5rem; line-height: 1.6; }
.footer-socials { display: flex; gap: 0.8rem; }
.footer-socials a { width: 38px; height: 38px; border-radius: 50%; background: var(--accent-dim); border: 1px solid var(--border); display: flex; align-items: center; justify-content: center; color: var(--cream-dim); transition: all 0.2s; }
.footer-socials a:hover { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.footer-socials svg { width: 18px; height: 18px; }
.footer-col h5 { font-family: var(--ff-display); font-size: 0.82rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--cream); margin-bottom: 1.2rem; }
.footer-col ul li { margin-bottom: 0.6rem; }
.footer-col ul a { font-size: 0.85rem; color: var(--cream-dim); transition: color 0.2s; }
.footer-col ul a:hover { color: var(--cream); }
.footer-info p { font-size: 0.85rem; color: var(--cream-dim); margin-bottom: 0.6rem; }
.footer-info p strong { color: var(--cream); }
.footer-bottom { max-width: 1200px; margin: 3rem auto 0; padding-top: 1.5rem; border-top: 1px solid var(--border); display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 1rem; }
.footer-bottom p { font-size: 0.78rem; color: var(--cream-dim); }
.footer-badges { display: flex; gap: 1rem; flex-wrap: wrap; }
.badge { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.3rem 0.8rem; border-radius: 2px; }
.badge-accent { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-highlight { background: rgba(181,128,42,0.15); color: var(--highlight); border: 1px solid rgba(181,128,42,0.25); }

/* 14. Page hero (inner pages) */
.page-hero { min-height: 50vh; position: relative; display: flex; align-items: flex-end; padding: 5rem 2rem 4rem; background-image: var(--page-hero-bg); background-size: cover; background-position: center; }
.page-hero::after { content: ''; position: absolute; inset: 0; background: linear-gradient(to bottom, rgba(12,8,6,0.5), rgba(12,8,6,0.85)); }
.page-hero-content { position: relative; z-index: 1; max-width: 760px; }
.page-hero-content h1 { color: var(--cream); margin-bottom: 0.8rem; }
.page-hero-content p { font-size: 1.05rem; color: var(--cream-dim); max-width: 560px; }

/* 15. About page sections */
.about-section { padding: 6rem 0; }
.about-section.alt { background: var(--bg-alt); }
.philosophy-cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 3rem; }
.phil-card { background: var(--dark); border: 1px solid var(--border); border-radius: 4px; padding: 2.2rem; }
.phil-card svg { width: 36px; height: 36px; color: var(--accent); margin-bottom: 1rem; }
.phil-card h3 { margin-bottom: 0.8rem; }
.phil-card p { font-size: 0.9rem; }
.values-list { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
.value-item { display: flex; gap: 1.5rem; align-items: flex-start; }
.value-num { font-family: var(--ff-display); font-size: 2rem; color: var(--accent); line-height: 1; min-width: 3rem; }
.value-text h4 { margin-bottom: 0.4rem; }
.value-text p { font-size: 0.88rem; }
.timeline { position: relative; margin-top: 3.5rem; }
.timeline::before { content: ''; position: absolute; left: 1.5rem; top: 0; bottom: 0; width: 1px; background: var(--border); }
.timeline-item { display: flex; gap: 2.5rem; padding: 0 0 2.5rem 4rem; position: relative; }
.timeline-dot { position: absolute; left: 0; top: 0; width: 3rem; height: 3rem; background: var(--accent-dim); border: 2px solid var(--accent); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-family: var(--ff-display); font-size: 0.6rem; color: var(--accent); letter-spacing: 0.05em; text-align: center; line-height: 1.2; }
.timeline-content { padding-top: 0.4rem; }
.timeline-date { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: var(--highlight); margin-bottom: 0.3rem; }
.timeline-content h4 { margin-bottom: 0.4rem; }
.timeline-content p { font-size: 0.88rem; }
.cta-split { background: var(--accent); padding: 5rem 2rem; }
.cta-split .split-layout { gap: 5rem; }
.cta-split .split-img { border-radius: 4px; }
.cta-split h2 { color: var(--cream); margin-bottom: 1rem; }
.cta-split p { color: rgba(245,240,232,0.85); margin-bottom: 1.5rem; }
.cta-btns { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-light { background: var(--cream); color: var(--accent); }
.btn-light:hover { background: #ede7dd; }

/* 16. Menu page */
.menu-hero-section { padding: 5rem 0; }
.disclaimer-bar { background: var(--accent-dim); border: 1px solid var(--border); border-radius: 3px; padding: 0.9rem 1.5rem; display: flex; align-items: center; justify-content: space-between; gap: 1rem; margin-bottom: 3.5rem; flex-wrap: wrap; }
.disclaimer-bar p { font-size: 0.85rem; color: var(--cream-dim); }
.category-tiles { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; margin-bottom: 5rem; }
.cat-tile { position: relative; aspect-ratio: 3/4; overflow: hidden; border-radius: 4px; cursor: pointer; }
.cat-tile img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cat-tile:hover img { transform: scale(1.06); }
.cat-tile-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(12,8,6,0.92) 0%, rgba(12,8,6,0.2) 60%); display: flex; flex-direction: column; justify-content: flex-end; padding: 1.5rem; }
.cat-tile-overlay h3 { color: var(--cream); margin-bottom: 0.3rem; }
.cat-tile-overlay .count { font-size: 0.75rem; color: var(--highlight); letter-spacing: 0.1em; text-transform: uppercase; }
.menu-category-section { margin-bottom: 5rem; padding-top: 1rem; }
.cat-heading-bar { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2rem; padding-bottom: 1.2rem; border-bottom: 1px solid var(--border); }
.cat-heading-bar h2 { font-size: clamp(1.5rem, 2.5vw, 2.2rem); }
.cat-desc { font-size: 0.88rem; color: var(--cream-dim); margin-top: 0.3rem; }
.menu-items-list { display: grid; gap: 1rem; }
.menu-item { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; padding: 1.5rem 2rem; display: flex; align-items: flex-start; justify-content: space-between; gap: 1rem; transition: border-color 0.2s; }
.menu-item:hover { border-color: var(--accent); }
.menu-item-info { flex: 1; }
.menu-item-info h4 { margin-bottom: 0.4rem; color: var(--cream); }
.menu-item-info .item-desc { font-size: 0.88rem; color: var(--cream-dim); line-height: 1.65; }
.menu-badge { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; padding: 0.25rem 0.7rem; border-radius: 2px; align-self: flex-start; white-space: nowrap; margin-top: 0.2rem; }
.badge-sig { background: var(--accent-dim); color: var(--accent); border: 1px solid var(--border); }
.badge-new { background: rgba(181,128,42,0.15); color: var(--highlight); border: 1px solid rgba(181,128,42,0.3); }
.badge-best { background: rgba(139,46,46,0.25); color: #e06060; border: 1px solid rgba(139,46,46,0.4); }
.menu-bottom-cta { background: var(--bg-alt); border-top: 1px solid var(--border); padding: 4rem 2rem; text-align: center; }
.menu-bottom-cta h2 { margin-bottom: 1rem; }
.menu-bottom-cta p { max-width: 560px; margin: 0 auto 2rem; }

/* 17. Gallery page */
.filter-bar { display: flex; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 3rem; }
.filter-btn { padding: 0.5rem 1.2rem; font-size: 0.78rem; font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase; border: 1.5px solid var(--border); color: var(--cream-dim); border-radius: 2px; transition: all 0.2s; }
.filter-btn.active, .filter-btn:hover { background: var(--accent); color: var(--cream); border-color: var(--accent); }
.gallery-group { margin-bottom: 4rem; }
.gallery-group-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--border); }
.gallery-group-header h3 { color: var(--cream); }
.gallery-group-header .date { font-size: 0.78rem; color: var(--cream-dim); }
.masonry { column-count: 4; column-gap: 0.8rem; }
.masonry-item { break-inside: avoid; margin-bottom: 0.8rem; border-radius: 4px; overflow: hidden; cursor: pointer; display: block; }
.masonry-item img { width: 100%; display: block; transition: transform 0.4s; }
.masonry-item:hover img { transform: scale(1.03); }
.lightbox { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.95); z-index: 2000; align-items: center; justify-content: center; }
.lightbox.active { display: flex; }
.lightbox-inner { position: relative; max-width: 90vw; max-height: 90vh; }
.lightbox-inner img { max-width: 90vw; max-height: 85vh; object-fit: contain; border-radius: 3px; }
.lightbox-close { position: absolute; top: -3rem; right: 0; font-size: 2rem; color: var(--cream); cursor: pointer; line-height: 1; }
.lightbox-prev, .lightbox-next { position: absolute; top: 50%; transform: translateY(-50%); font-size: 2rem; color: var(--cream); cursor: pointer; padding: 1rem; background: rgba(0,0,0,0.3); }
.lightbox-prev { left: -4rem; }
.lightbox-next { right: -4rem; }
.lightbox-counter { position: absolute; bottom: -2.5rem; left: 50%; transform: translateX(-50%); font-size: 0.82rem; color: var(--cream-dim); letter-spacing: 0.1em; }
.gallery-cta { padding: 4rem 2rem; text-align: center; background: var(--bg-alt); border-top: 1px solid var(--border); }

/* 18. Contact page */
.contact-grid { display: grid; grid-template-columns: 1fr 1.4fr; gap: 4rem; padding: 5rem 0; }
.contact-block { margin-bottom: 2.5rem; }
.contact-block h4 { margin-bottom: 0.8rem; display: flex; align-items: center; gap: 0.6rem; }
.contact-block h4 svg { width: 20px; height: 20px; color: var(--accent); }
.contact-block p, .contact-block a { font-size: 0.9rem; color: var(--cream-dim); }
.contact-block a:hover { color: var(--cream); }
.hours-table { width: 100%; border-collapse: collapse; margin-top: 0.5rem; }
.hours-table tr td { padding: 0.35rem 0; font-size: 0.88rem; color: var(--cream-dim); }
.hours-table tr td:last-child { text-align: right; color: var(--cream); }
.hours-table tr.highlight-row td { color: var(--highlight); }
.inquiry-form { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; }
.inquiry-form h3 { margin-bottom: 1.5rem; }
.form-group { margin-bottom: 1.2rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1.2rem; }
label { display: block; font-size: 0.8rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--cream-dim); margin-bottom: 0.4rem; }
input, select, textarea { width: 100%; padding: 0.7rem 1rem; background: var(--dark); border: 1.5px solid var(--border); border-radius: 3px; color: var(--cream); font-family: var(--ff-body); font-size: 0.9rem; transition: border-color 0.2s; }
input:focus, select:focus, textarea:focus { outline: none; border-color: var(--accent); }
input.invalid, select.invalid, textarea.invalid { border-color: #c44040; }
select option { background: var(--dark); }
textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 0.9rem; background: var(--accent); color: var(--cream); font-family: var(--ff-display); font-size: 0.95rem; letter-spacing: 0.06em; border-radius: 3px; transition: background 0.25s; }
.form-submit:hover { background: #a33535; }
.form-success { display: none; text-align: center; padding: 3rem 2rem; }
.form-success svg { width: 56px; height: 56px; color: var(--accent); margin: 0 auto 1.2rem; }
.form-success h3 { margin-bottom: 0.6rem; }
.map-placeholder { background: var(--bg-alt); border: 1px solid var(--border); border-radius: 4px; padding: 2.5rem; text-align: center; margin-top: 2.5rem; }
.map-placeholder svg { width: 40px; height: 40px; color: var(--accent); margin: 0 auto 1rem; }
.map-placeholder h4 { margin-bottom: 0.4rem; }
.map-placeholder p { font-size: 0.88rem; margin-bottom: 1.5rem; }

/* 19. FAQ accordion */
.faq-section { padding: 6rem 0; background: var(--bg-alt); }
.faq-list { max-width: 760px; margin: 3rem auto 0; }
.faq-item { border-bottom: 1px solid var(--border); }
.faq-question { display: flex; align-items: center; justify-content: space-between; padding: 1.4rem 0; cursor: pointer; font-size: 0.98rem; font-weight: 700; color: var(--cream); gap: 1rem; }
.faq-icon { width: 24px; height: 24px; min-width: 24px; border: 1.5px solid var(--border); border-radius: 50%; display: flex; align-items: center; justify-content: center; transition: transform 0.3s, background 0.3s; }
.faq-icon::before { content: '+'; font-size: 1rem; color: var(--accent); line-height: 1; }
.faq-item.open .faq-icon { transform: rotate(45deg); background: var(--accent-dim); }
.faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq-answer-inner { padding: 0 0 1.5rem; font-size: 0.9rem; color: var(--cream-dim); line-height: 1.7; }

/* 20. Scroll-to-top button */
.scroll-top { position: fixed; bottom: 2rem; right: 2rem; width: 46px; height: 46px; background: var(--accent); color: var(--cream); border-radius: 50%; display: flex; align-items: center; justify-content: center; z-index: 500; opacity: 0; pointer-events: none; transition: opacity 0.3s, transform 0.3s; cursor: pointer; }
.scroll-top.visible { opacity: 1; pointer-events: all; }
.scroll-top:hover { transform: translateY(-3px); }
.scroll-top svg { width: 20px; height: 20px; }

/* 21. Fade-in animation */
.fade-in { opacity: 0; transform: translateY(20px); transition: opacity 0.6s ease, transform 0.6s ease; }
.fade-in.visible { opacity: 1; transform: none; }

/* 22. Responsive */
@media (max-width: 1024px) {
  .features-grid { grid-template-columns: repeat(3, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .category-tiles { grid-template-columns: repeat(2, 1fr); }
  .contact-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .values-list { grid-template-columns: 1fr; }
}
@media (max-width: 768px) {
  .navbar .nav-links, .navbar .nav-cta { display: none; }
  .hamburger { display: flex; }
  .hero-content h1 { font-size: 2.2rem; }
  .split-layout { grid-template-columns: 1fr; gap: 2rem; }
  .split-img { aspect-ratio: 16/9; }
  .offerings-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .reviews-grid { grid-template-columns: 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { column-count: 2; }
  .philosophy-cards { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .lightbox-prev { left: -1rem; }
  .lightbox-next { right: -1rem; }
}
@media (max-width: 480px) {
  .offerings-grid { grid-template-columns: 1fr 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .feed-grid { grid-template-columns: repeat(3, 1fr); }
  .masonry { column-count: 1; }
  .category-tiles { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
  .hero-btns { flex-direction: column; align-items: center; }
  .footer-grid { grid-template-columns: 1fr; }
  .features-grid { grid-template-columns: 1fr 1fr; }
  .disclaimer-bar { flex-direction: column; align-items: flex-start; }
}
