/* ============================================================
   Happy Valley Café Davao — styles.css
   Palette: Cool slate dark + warm ivory + steel blue accent
   Fonts: Bodoni Moda (display) + Inter (body)
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Bodoni+Moda:ital,opsz,wght@0,6..96,400;0,6..96,500;0,6..96,600;0,6..96,700;1,6..96,400;1,6..96,600&family=Inter:wght@300;400;500;600&display=swap');

/* ── Custom Properties ── */
:root {
  --dark:      #131C26;   /* cool deep slate-navy */
  --bg-alt:    #1C2A38;   /* deep teal-slate alt */
  --accent:    #7AAFC2;   /* steel blue — from logo/interior blue counter */
  --highlight: #C9A96E;   /* warm parchment gold */
  --cream:     #F0EDE6;   /* warm ivory */
  --mid:       #4A6070;   /* muted slate mid-tone */
  --text-on-dark: rgba(240,237,230,0.88);
  --text-muted:   rgba(240,237,230,0.55);

  --nav-h: 72px;
  --r: 4px;
  --transition: 0.3s ease;
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: 'Inter', sans-serif;
  background: var(--dark);
  color: var(--text-on-dark);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
img { display: block; max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }

/* ── Typography ── */
h1, h2, h3, h4 {
  font-family: 'Bodoni Moda', serif;
  font-weight: 600;
  line-height: 1.18;
  letter-spacing: -0.01em;
}
h1 { font-size: clamp(2.6rem, 6vw, 5rem); }
h2 { font-size: clamp(1.9rem, 3.5vw, 2.9rem); }
h3 { font-size: clamp(1.3rem, 2vw, 1.65rem); }
h4 { font-size: 1.1rem; }
p { font-size: 1rem; color: var(--text-on-dark); }
.label {
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

/* ── Container ── */
.container {
  width: min(1160px, 92%);
  margin-inline: auto;
}

/* ── Utility ── */
.sr-only {
  position: absolute; width: 1px; height: 1px;
  overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap;
}
.accent-text { color: var(--accent); }
.highlight-text { color: var(--highlight); }

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 999;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  transition: background var(--transition), box-shadow var(--transition), backdrop-filter var(--transition);
  background: transparent;
}
.navbar.scrolled {
  background: rgba(19, 28, 38, 0.96);
  backdrop-filter: blur(12px);
  box-shadow: 0 1px 0 rgba(122,175,194,0.12);
}
.nav-inner {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: clamp(1.5rem, 4vw, 3rem);
}
.nav-logo img {
  height: 44px;
  width: 44px;
  object-fit: cover;
  object-position: center;
  border-radius: 50%;
  filter: invert(1);
  border: 1.5px solid rgba(255, 255, 255, 0.35);
  transition: opacity var(--transition);
}
.nav-logo img:hover { opacity: 0.8; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 2.2rem;
}
.nav-links a {
  font-size: 0.85rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  transition: color var(--transition);
  position: relative;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -3px; left: 0;
  width: 0; height: 1px;
  background: var(--accent);
  transition: width var(--transition);
}
.nav-links a:hover { color: var(--accent); }
.nav-links a:hover::after { width: 100%; }
.nav-links a.active { color: var(--accent); }
.nav-links a.active::after { width: 100%; }
.nav-cta {
  padding: 0.5rem 1.2rem;
  background: var(--accent);
  color: var(--dark) !important;
  border-radius: var(--r);
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.05em;
}
.nav-cta::after { display: none !important; }
.nav-cta:hover { background: var(--highlight) !important; color: var(--dark) !important; opacity: 1; }

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 4px;
  background: none;
  border: none;
}
.nav-toggle span {
  display: block;
  width: 24px; height: 2px;
  background: var(--cream);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile nav */
.mobile-nav {
  display: none;
  position: fixed;
  top: var(--nav-h); left: 0; right: 0;
  background: rgba(19, 28, 38, 0.98);
  backdrop-filter: blur(16px);
  z-index: 998;
  flex-direction: column;
  padding: 2rem;
  gap: 1.5rem;
  border-top: 1px solid rgba(122,175,194,0.15);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--text-on-dark);
  letter-spacing: 0.04em;
  transition: color var(--transition);
}
.mobile-nav a:hover { color: var(--accent); }
.mobile-nav .nav-cta {
  align-self: flex-start;
  color: var(--dark) !important;
  padding: 0.7rem 1.5rem;
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}
.hero-bg {
  position: absolute;
  inset: 0;
  background-image: url('images/banner.jpg?v=1');
  background-size: cover;
  background-position: center 30%;
  filter: brightness(0.38) saturate(0.7);
  transform: scale(1.04);
  transition: transform 0.6s ease;
}
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    to bottom,
    rgba(19,28,38,0.3) 0%,
    rgba(19,28,38,0.1) 40%,
    rgba(19,28,38,0.7) 100%
  );
  z-index: 1;
}
.hero-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
  padding: 0 1.5rem;
  padding-top: var(--nav-h);
}
.hero-content .label { color: var(--accent); margin-bottom: 1.2rem; }
.hero-content h1 {
  color: var(--cream);
  font-style: italic;
  margin-bottom: 0.8rem;
}
.hero-subtitle {
  font-size: 1rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
  color: rgba(240,237,230,0.6);
  margin-bottom: 1.4rem;
}
.hero-tagline {
  font-size: 1.15rem;
  color: var(--cream);
  max-width: 520px;
  margin: 0 auto 2.4rem;
  font-style: italic;
  opacity: 0.85;
}
.hero-ctas {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}
.btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.8rem 1.8rem;
  border-radius: var(--r);
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  border: none;
  text-decoration: none;
}
.btn-primary {
  background: var(--accent);
  color: var(--dark);
}
.btn-primary:hover { background: var(--highlight); }
.btn-secondary {
  background: transparent;
  color: var(--cream);
  border: 1px solid rgba(240,237,230,0.4);
}
.btn-secondary:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.hero-scroll {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
  color: rgba(240,237,230,0.45);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: scrollBounce 2s ease-in-out infinite;
}
.hero-scroll svg { width: 20px; height: 20px; opacity: 0.5; }
@keyframes scrollBounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

/* ============================================================
   FEATURES STRIP
   ============================================================ */
.features-strip {
  background: var(--bg-alt);
  border-top: 1px solid rgba(122,175,194,0.1);
  border-bottom: 1px solid rgba(122,175,194,0.1);
  padding: 2rem 0;
}
.features-list {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 0;
}
.feature-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.7rem 2.2rem;
  border-right: 1px solid rgba(122,175,194,0.15);
}
.feature-item:last-child { border-right: none; }
.feature-item svg {
  width: 18px; height: 18px;
  color: var(--accent);
  flex-shrink: 0;
}
.feature-item span {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  color: var(--text-on-dark);
  white-space: nowrap;
}

/* ============================================================
   SECTION COMMONS
   ============================================================ */
section { padding: 5rem 0; }
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-header .label { margin-bottom: 0.75rem; }
.section-header h2 { margin-bottom: 1rem; }
.section-header p {
  max-width: 560px;
  margin: 0 auto;
  color: var(--text-muted);
  font-size: 1rem;
}

/* ============================================================
   OFFERINGS GRID (Home)
   ============================================================ */
.offerings { background: var(--dark); }
.offerings-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(122,175,194,0.1);
  border: 1px solid rgba(122,175,194,0.1);
}
.offering-tile {
  position: relative;
  overflow: hidden;
  aspect-ratio: 1;
  cursor: pointer;
}
.offering-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}
.offering-tile:hover img { transform: scale(1.06); }
.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(19,28,38,0.82) 0%, transparent 60%);
  display: flex;
  align-items: flex-end;
  padding: 1.2rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.offering-tile:hover .tile-overlay { opacity: 1; }
.tile-overlay span {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.05rem;
  font-style: italic;
  color: var(--cream);
}

/* ============================================================
   STATS BAR
   ============================================================ */
.stats-bar {
  background: var(--accent);
  padding: 2.8rem 0;
}
.stats-inner {
  display: flex;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
}
.stat {
  text-align: center;
  padding: 0.5rem 3rem;
  border-right: 1px solid rgba(19,28,38,0.2);
}
.stat:last-child { border-right: none; }
.stat-number {
  display: block;
  font-family: 'Bodoni Moda', serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  color: var(--dark);
  line-height: 1;
  margin-bottom: 0.3rem;
}
.stat-label {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(19,28,38,0.7);
}

/* ============================================================
   REVIEWS
   ============================================================ */
.reviews { background: var(--bg-alt); }
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.review-card {
  background: rgba(19,28,38,0.6);
  border: 1px solid rgba(122,175,194,0.12);
  border-radius: var(--r);
  padding: 2rem;
  position: relative;
}
.review-card::before {
  content: '"';
  font-family: 'Bodoni Moda', serif;
  font-size: 5rem;
  color: var(--accent);
  opacity: 0.2;
  position: absolute;
  top: -0.5rem;
  left: 1.2rem;
  line-height: 1;
}
.review-text {
  font-style: italic;
  color: var(--text-on-dark);
  margin-bottom: 1.2rem;
  line-height: 1.7;
}
.review-author {
  font-size: 0.82rem;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.06em;
}

/* ============================================================
   INSTAGRAM CTA
   ============================================================ */
.ig-cta {
  background: var(--dark);
  padding: 4rem 0;
  text-align: center;
}
.ig-cta h2 { margin-bottom: 0.8rem; }
.ig-cta p { color: var(--text-muted); margin-bottom: 2rem; }
.ig-handle {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 1.1rem;
  color: var(--accent);
  font-weight: 500;
  margin-bottom: 2rem;
}

/* ============================================================
   FOOTER
   ============================================================ */
footer {
  background: #0D151E;
  border-top: 1px solid rgba(122,175,194,0.1);
  padding: 3.5rem 0 2rem;
}
.footer-inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 3rem;
  margin-bottom: 3rem;
}
.footer-brand img {
  height: 52px;
  width: auto;
  filter: invert(1);
  margin-bottom: 1rem;
  opacity: 0.85;
}
.footer-brand p {
  font-size: 0.88rem;
  color: var(--text-muted);
  max-width: 220px;
  line-height: 1.6;
}
.footer-col h4 {
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1.2rem;
}
.footer-col ul li + li { margin-top: 0.65rem; }
.footer-col ul a {
  font-size: 0.9rem;
  color: var(--text-muted);
  transition: color var(--transition);
}
.footer-col ul a:hover { color: var(--cream); }
.footer-col address {
  font-style: normal;
  font-size: 0.9rem;
  color: var(--text-muted);
  line-height: 1.7;
}
.footer-social {
  display: flex;
  gap: 0.75rem;
  margin-top: 1rem;
}
.social-icon {
  width: 36px; height: 36px;
  border-radius: 50%;
  border: 1px solid rgba(122,175,194,0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all var(--transition);
  color: var(--text-muted);
}
.social-icon:hover {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}
.social-icon svg { width: 16px; height: 16px; }
.footer-bottom {
  border-top: 1px solid rgba(122,175,194,0.08);
  padding-top: 1.5rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 0.5rem;
}
.footer-bottom p {
  font-size: 0.8rem;
  color: var(--text-muted);
}

/* ============================================================
   ABOUT PAGE
   ============================================================ */
.page-hero {
  min-height: 52vh;
  display: flex;
  align-items: flex-end;
  position: relative;
  overflow: hidden;
  padding-bottom: 4rem;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: brightness(0.3) saturate(0.6);
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(19,28,38,0.4) 0%, rgba(19,28,38,0.75) 100%);
  z-index: 1;
}
.page-hero-content {
  position: relative;
  z-index: 2;
  padding-top: calc(var(--nav-h) + 2rem);
}
.page-hero-content .label { margin-bottom: 0.75rem; }
.page-hero-content h1 { color: var(--cream); }

.about-story {
  background: var(--dark);
}
.story-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.story-text .label { margin-bottom: 0.8rem; }
.story-text h2 { margin-bottom: 1.2rem; }
.story-text p + p { margin-top: 1rem; }
.story-text p { color: rgba(240,237,230,0.75); line-height: 1.8; }
.story-quote {
  margin-top: 2rem;
  padding: 1.5rem;
  border-left: 3px solid var(--accent);
  background: rgba(122,175,194,0.06);
  border-radius: 0 var(--r) var(--r) 0;
}
.story-quote blockquote {
  font-family: 'Bodoni Moda', serif;
  font-style: italic;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.6;
}
.story-quote cite {
  display: block;
  margin-top: 0.75rem;
  font-size: 0.82rem;
  color: var(--accent);
  font-style: normal;
  font-weight: 600;
}
.story-img img {
  width: 100%;
  aspect-ratio: 3/4;
  object-fit: cover;
  border-radius: var(--r);
}

.about-philosophy { background: var(--bg-alt); }
.philosophy-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.phil-card {
  background: rgba(19,28,38,0.5);
  border: 1px solid rgba(122,175,194,0.12);
  border-radius: var(--r);
  padding: 2.2rem;
}
.phil-icon {
  width: 44px; height: 44px;
  background: rgba(122,175,194,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.3rem;
}
.phil-icon svg { width: 20px; height: 20px; color: var(--accent); }
.phil-card h3 { font-size: 1.2rem; margin-bottom: 0.75rem; }
.phil-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.7; }

.about-timeline { background: var(--dark); }
.timeline {
  max-width: 680px;
  margin: 0 auto;
  position: relative;
}
.timeline::before {
  content: '';
  position: absolute;
  left: 7px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(122,175,194,0.2);
}
.timeline-item {
  display: grid;
  grid-template-columns: 16px 1fr;
  gap: 1.5rem;
  margin-bottom: 2.5rem;
  position: relative;
}
.timeline-dot {
  width: 16px; height: 16px;
  border-radius: 50%;
  background: var(--accent);
  border: 3px solid var(--dark);
  box-shadow: 0 0 0 1px var(--accent);
  margin-top: 4px;
  flex-shrink: 0;
}
.timeline-content h4 {
  font-family: 'Bodoni Moda', serif;
  font-size: 1rem;
  color: var(--cream);
  margin-bottom: 0.3rem;
}
.timeline-content p {
  font-size: 0.9rem;
  color: var(--text-muted);
}
.timeline-year {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  color: var(--accent);
  margin-bottom: 0.4rem;
  text-transform: uppercase;
}

/* ============================================================
   MENU PAGE
   ============================================================ */
.menu-section { background: var(--dark); }
.menu-category {
  margin-bottom: 4rem;
}
.menu-cat-header {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  margin-bottom: 2rem;
  padding-bottom: 1rem;
  border-bottom: 1px solid rgba(122,175,194,0.12);
}
.menu-cat-icon {
  width: 48px; height: 48px;
  background: rgba(122,175,194,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.menu-cat-icon svg { width: 22px; height: 22px; color: var(--accent); }
.menu-cat-header h2 {
  font-size: 1.7rem;
}
.menu-items {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 1px;
  background: rgba(122,175,194,0.08);
}
.menu-item {
  background: var(--dark);
  padding: 1.6rem;
  transition: background var(--transition);
}
.menu-item:hover { background: var(--bg-alt); }
.menu-item-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 0.4rem;
}
.menu-item-name {
  font-family: 'Bodoni Moda', serif;
  font-size: 1.05rem;
  color: var(--cream);
  line-height: 1.3;
}
.badge {
  display: inline-block;
  padding: 0.2rem 0.65rem;
  border-radius: 50px;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  white-space: nowrap;
}
.badge-signature { background: var(--highlight); color: var(--dark); }
.badge-new { background: var(--accent); color: var(--dark); }
.menu-item-desc {
  font-size: 0.87rem;
  color: var(--text-muted);
  line-height: 1.6;
}
.menu-note {
  background: rgba(122,175,194,0.07);
  border: 1px solid rgba(122,175,194,0.15);
  border-radius: var(--r);
  padding: 1.4rem 1.8rem;
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-top: 1rem;
}
.menu-note svg { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.menu-note p { font-size: 0.9rem; color: var(--text-muted); }
.menu-note a { color: var(--accent); font-weight: 600; }
.menu-note a:hover { color: var(--highlight); }
.menu-inquiry {
  background: var(--bg-alt);
  padding: 4rem 0;
  text-align: center;
}
.menu-inquiry h2 { margin-bottom: 0.8rem; }
.menu-inquiry p { color: var(--text-muted); margin-bottom: 2rem; max-width: 500px; margin-inline: auto; }

/* ============================================================
   GALLERY PAGE
   ============================================================ */
.gallery-section { background: var(--dark); padding: 4rem 0 5rem; }
.gallery-filters {
  display: flex;
  gap: 0.75rem;
  justify-content: center;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.filter-btn {
  padding: 0.55rem 1.4rem;
  border-radius: 50px;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  cursor: pointer;
  transition: all var(--transition);
  border: 1px solid rgba(122,175,194,0.25);
  background: transparent;
  color: var(--text-muted);
}
.filter-btn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.filter-btn.active {
  background: var(--accent);
  border-color: var(--accent);
  color: var(--dark);
}
.gallery-masonry {
  columns: 3;
  column-gap: 1rem;
}
.gallery-item {
  break-inside: avoid;
  margin-bottom: 1rem;
  overflow: hidden;
  border-radius: var(--r);
  position: relative;
  cursor: pointer;
  display: block;
}
.gallery-item img {
  width: 100%;
  display: block;
  transition: transform 0.5s ease;
}
.gallery-item:hover img { transform: scale(1.04); }
.gallery-item-caption {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(to top, rgba(19,28,38,0.85) 0%, transparent 100%);
  padding: 2rem 1rem 1rem;
  opacity: 0;
  transition: opacity var(--transition);
}
.gallery-item:hover .gallery-item-caption { opacity: 1; }
.gallery-item-caption span {
  font-size: 0.82rem;
  color: var(--cream);
  font-weight: 500;
}

/* ============================================================
   CONTACT PAGE
   ============================================================ */
.contact-section { background: var(--dark); }
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
}
.contact-info h2 { margin-bottom: 2rem; }
.info-block {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}
.info-icon {
  width: 40px; height: 40px;
  background: rgba(122,175,194,0.1);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.info-icon svg { width: 18px; height: 18px; color: var(--accent); }
.info-block h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.3rem;
}
.info-block p, .info-block a {
  font-size: 0.92rem;
  color: var(--text-muted);
  line-height: 1.6;
  transition: color var(--transition);
}
.info-block a:hover { color: var(--cream); }
.social-links { margin-top: 2rem; }
.social-links h4 {
  font-family: 'Inter', sans-serif;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 1rem;
}
.social-link-item {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem;
  border: 1px solid rgba(122,175,194,0.12);
  border-radius: var(--r);
  margin-bottom: 0.6rem;
  transition: all var(--transition);
  color: var(--text-muted);
  font-size: 0.9rem;
}
.social-link-item:hover {
  border-color: var(--accent);
  color: var(--cream);
  background: rgba(122,175,194,0.06);
}
.social-link-item svg { width: 18px; height: 18px; color: var(--accent); }

/* Inquiry form */
.inquiry-form {
  background: var(--bg-alt);
  border: 1px solid rgba(122,175,194,0.12);
  border-radius: var(--r);
  padding: 2.5rem;
}
.inquiry-form h3 { margin-bottom: 0.5rem; }
.inquiry-form > p { font-size: 0.9rem; color: var(--text-muted); margin-bottom: 2rem; }
.form-group { margin-bottom: 1.3rem; }
.form-group label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 0.5rem;
}
.form-group input,
.form-group select,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: rgba(19,28,38,0.6);
  border: 1px solid rgba(122,175,194,0.15);
  border-radius: var(--r);
  color: var(--cream);
  font-family: 'Inter', sans-serif;
  font-size: 0.92rem;
  transition: border-color var(--transition);
  outline: none;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--text-muted); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
}
.form-group select option { background: var(--bg-alt); color: var(--cream); }
.form-group textarea { resize: vertical; min-height: 110px; }
.form-note {
  font-size: 0.82rem;
  color: var(--text-muted);
  margin-top: 1.2rem;
}
.form-note a { color: var(--accent); font-weight: 600; }
.form-note a:hover { color: var(--highlight); }

/* Map */
.map-section { background: var(--bg-alt); padding: 4rem 0; }
.map-frame {
  width: 100%;
  height: 380px;
  border-radius: var(--r);
  overflow: hidden;
  border: 1px solid rgba(122,175,194,0.12);
  margin-top: 2rem;
}
.map-frame iframe {
  width: 100%;
  height: 100%;
  border: none;
  filter: saturate(0.7) brightness(0.85);
}

/* FAQ */
.faq-section { background: var(--dark); }
.faq-list { max-width: 760px; margin: 0 auto; }
.faq-item {
  border-bottom: 1px solid rgba(122,175,194,0.1);
}
.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: 1.4rem 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 1rem;
  cursor: pointer;
  text-align: left;
  color: var(--cream);
  font-family: 'Bodoni Moda', serif;
  font-size: 1.02rem;
  font-weight: 600;
  line-height: 1.4;
  transition: color var(--transition);
}
.faq-question:hover { color: var(--accent); }
.faq-icon {
  width: 24px; height: 24px;
  border: 1px solid rgba(122,175,194,0.3);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all var(--transition);
  margin-top: 2px;
}
.faq-icon svg { width: 12px; height: 12px; color: var(--accent); transition: transform var(--transition); }
.faq-item.open .faq-icon { background: var(--accent); border-color: var(--accent); }
.faq-item.open .faq-icon svg { color: var(--dark); transform: rotate(45deg); }
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease, padding 0.3s ease;
}
.faq-answer-inner {
  padding-bottom: 1.4rem;
}
.faq-item.open .faq-answer { max-height: 400px; }
.faq-answer p {
  font-size: 0.93rem;
  color: var(--text-muted);
  line-height: 1.75;
}

/* ============================================================
   RESPONSIVE — 1024px
   ============================================================ */
@media (max-width: 1024px) {
  .footer-inner { grid-template-columns: 1fr 1fr; }
  .story-grid { gap: 3rem; }
  .philosophy-cards { grid-template-columns: 1fr 1fr; }
}

/* ============================================================
   RESPONSIVE — 768px
   ============================================================ */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-toggle { display: flex; }

  .hero-ctas { flex-direction: column; align-items: center; }

  .features-strip { padding: 1.5rem 0; }
  .feature-item {
    padding: 0.5rem 1.2rem;
    border-right: none;
    border-bottom: 1px solid rgba(122,175,194,0.1);
    width: 50%;
    justify-content: center;
  }
  .feature-item:last-child { border-bottom: none; }

  .offerings-grid { grid-template-columns: repeat(2, 1fr); }

  .stats-inner { gap: 0; }
  .stat { padding: 0.5rem 1.5rem; }

  .story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .story-img { order: -1; }
  .story-img img { aspect-ratio: 16/9; }

  .philosophy-cards { grid-template-columns: 1fr; }

  .footer-inner { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .footer-brand { grid-column: 1 / -1; }

  .contact-layout { grid-template-columns: 1fr; }
  .gallery-masonry { columns: 2; }
}

/* ============================================================
   RESPONSIVE — 480px
   ============================================================ */
@media (max-width: 480px) {
  :root { --nav-h: 64px; }
  h1 { font-size: 2.2rem; }
  h2 { font-size: 1.6rem; }

  .offerings-grid { grid-template-columns: 1fr; }
  .stat { width: 50%; padding: 0.8rem 0.5rem; }
  .footer-inner { grid-template-columns: 1fr; }

  .gallery-masonry { columns: 1; }
  .menu-items { grid-template-columns: 1fr; }
}
