/* Hills Cafe & Bakery — Premium Demo Site */
@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:ital,wght@0,400;0,600;0,700;1,400&family=DM+Sans:wght@300;400;500;600&display=swap');

:root {
  --cream: #FDF8EE;
  --cream-dark: #F5EDD8;
  --espresso: #2C1810;
  --espresso-mid: #4A2E20;
  --terracotta: #C1440E;
  --terracotta-light: #D4623A;
  --amber: #D4883A;
  --amber-light: #E8A85A;
  --warm-grey: #8C7B6E;
  --text: #3A2A1E;
  --text-light: #6B5A50;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'DM Sans', sans-serif;
  background: var(--cream);
  color: var(--text);
  line-height: 1.6;
}

/* PASSWORD GATE */
.password-gate {
  position: fixed; inset: 0;
  background: var(--espresso);
  background-image: radial-gradient(ellipse at 30% 50%, #4A2E20 0%, #2C1810 60%, #1a0e08 100%);
  display: flex; align-items: center; justify-content: center;
  z-index: 9999;
}
.gate-card {
  background: var(--cream);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 420px;
  width: 90%;
  text-align: center;
  box-shadow: 0 30px 80px rgba(0,0,0,0.5);
}
.gate-icon {
  width: 72px; height: 72px;
  background: var(--espresso);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 2rem;
  margin: 0 auto 1.5rem;
}
.gate-card h1 {
  font-family: 'Playfair Display', serif;
  font-size: 1.75rem;
  color: var(--espresso);
  margin-bottom: 0.75rem;
}
.gate-card p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; line-height: 1.6; }
.gate-card p strong { color: var(--espresso); font-weight: 600; }
.gate-input {
  width: 100%;
  padding: 0.875rem 1rem;
  border: 2px solid var(--cream-dark);
  border-radius: 10px;
  font-size: 1rem;
  font-family: 'DM Sans', sans-serif;
  text-align: center;
  letter-spacing: 0.2em;
  outline: none;
  transition: border-color 0.2s;
  margin-bottom: 1rem;
}
.gate-input:focus { border-color: var(--amber); }
.gate-input.error { border-color: var(--terracotta); animation: shake 0.3s ease; }
@keyframes shake {
  0%,100% { transform: translateX(0); }
  25% { transform: translateX(-6px); }
  75% { transform: translateX(6px); }
}
.gate-btn {
  width: 100%;
  padding: 0.875rem;
  background: var(--amber);
  color: #fff;
  border: none;
  border-radius: 10px;
  font-size: 1rem;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.gate-btn:hover { background: var(--terracotta); }
.gate-btn:active { transform: scale(0.98); }
.gate-badge {
  margin-top: 1.5rem;
  font-size: 0.75rem;
  color: var(--warm-grey);
  display: flex; align-items: center; justify-content: center; gap: 0.4rem;
}
.site-content { display: none; }

/* NAV */
.nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  padding: 1.25rem 2rem;
  display: flex; align-items: center; justify-content: space-between;
  transition: background 0.3s, box-shadow 0.3s, padding 0.3s;
}
.nav.scrolled {
  background: rgba(253,248,238,0.97);
  backdrop-filter: blur(8px);
  box-shadow: 0 2px 20px rgba(44,24,16,0.1);
  padding: 0.875rem 2rem;
}
.nav-logo {
  font-family: 'Playfair Display', serif;
  font-size: 1.4rem;
  color: #fff;
  text-decoration: none;
  font-weight: 700;
  transition: color 0.3s;
}
.nav.scrolled .nav-logo { color: var(--espresso); }
.nav-links { display: flex; gap: 2rem; list-style: none; }
.nav-links a {
  text-decoration: none;
  color: rgba(255,255,255,0.9);
  font-weight: 500;
  font-size: 0.9rem;
  letter-spacing: 0.05em;
  transition: color 0.2s;
}
.nav.scrolled .nav-links a { color: var(--text-light); }
.nav-links a:hover { color: var(--amber); }
.nav-links a.active { color: var(--amber); }
.nav-cta {
  background: var(--amber);
  color: #fff !important;
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  font-weight: 600 !important;
  transition: background 0.2s !important;
}
.nav-cta:hover { background: var(--terracotta) !important; color: #fff !important; }
.nav-hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 4px; }
.nav-hamburger span { display: block; width: 24px; height: 2px; background: #fff; border-radius: 2px; transition: background 0.3s; }
.nav.scrolled .nav-hamburger span { background: var(--espresso); }
@media (max-width: 768px) {
  .nav-links { display: none; position: absolute; top: 100%; left: 0; right: 0; background: var(--cream); flex-direction: column; padding: 1.5rem 2rem; gap: 1rem; box-shadow: 0 10px 30px rgba(0,0,0,0.1); }
  .nav-links.open { display: flex; }
  .nav-links a { color: var(--text) !important; }
  .nav-hamburger { display: flex; }
  .nav-cta { background: var(--amber); color: #fff !important; }
}

/* HERO */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
  background: var(--espresso);
}
.hero-bg {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, #2C1810 0%, #4A2E20 40%, #3D241A 70%, #2C1810 100%);
}
.hero-pattern {
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 20% 80%, rgba(212,136,58,0.15) 0%, transparent 50%),
                    radial-gradient(circle at 80% 20%, rgba(193,68,14,0.1) 0%, transparent 50%);
}
#steam-canvas {
  position: absolute; inset: 0;
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1100px; margin: 0 auto;
  padding: 8rem 2rem 4rem;
  display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center;
}
.hero-text { color: #fff; }
.hero-eyebrow {
  font-size: 0.8rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 1rem;
}
.hero-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.15;
  margin-bottom: 1.25rem;
}
.hero-title em { font-style: italic; color: var(--amber-light); }
.hero-subtitle {
  font-size: 1.05rem; color: rgba(255,255,255,0.8);
  max-width: 420px; margin-bottom: 2rem; line-height: 1.7;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  padding: 0.875rem 2rem;
  background: var(--amber);
  color: #fff; border: none;
  border-radius: 30px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: background 0.2s, transform 0.2s, box-shadow 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-primary:hover { background: var(--terracotta); transform: translateY(-2px); box-shadow: 0 8px 25px rgba(212,136,58,0.4); }
.btn-outline {
  padding: 0.875rem 2rem;
  background: transparent;
  color: #fff; border: 2px solid rgba(255,255,255,0.4);
  border-radius: 30px; font-size: 0.95rem; font-weight: 600;
  cursor: pointer; text-decoration: none;
  transition: border-color 0.2s, background 0.2s;
  display: inline-flex; align-items: center; gap: 0.5rem;
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.1); }
.hero-badges { display: flex; gap: 1.5rem; margin-top: 2.5rem; flex-wrap: wrap; }
.hero-badge {
  display: flex; align-items: center; gap: 0.5rem;
  color: rgba(255,255,255,0.75); font-size: 0.85rem;
}
.hero-badge span { font-size: 1.1rem; }
.hero-visual {
  position: relative;
  display: flex; align-items: center; justify-content: center;
}
.coffee-cup-scene {
  position: relative;
  width: 300px; height: 300px;
  background: radial-gradient(circle, rgba(212,136,58,0.15) 0%, transparent 70%);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 8rem;
}
.coffee-cup-scene::before {
  content: '';
  position: absolute; inset: -20px;
  border: 1px solid rgba(212,136,58,0.2);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite;
}
.coffee-cup-scene::after {
  content: '';
  position: absolute; inset: -40px;
  border: 1px solid rgba(212,136,58,0.1);
  border-radius: 50%;
  animation: pulse-ring 3s ease-in-out infinite 1s;
}
@keyframes pulse-ring {
  0%,100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.05); opacity: 0.5; }
}
@media (max-width: 768px) {
  .hero-content { grid-template-columns: 1fr; gap: 2rem; text-align: center; }
  .hero-subtitle { max-width: none; }
  .hero-actions { justify-content: center; }
  .hero-badges { justify-content: center; }
  .hero-visual { display: none; }
}

/* TRUST BAR */
.trust-bar {
  background: var(--espresso-mid);
  padding: 0.875rem 0;
  overflow: hidden;
}
.trust-marquee {
  display: flex; gap: 3rem;
  animation: marquee 25s linear infinite;
  width: max-content;
}
.trust-item {
  display: flex; align-items: center; gap: 0.6rem;
  color: rgba(255,255,255,0.8); font-size: 0.85rem; font-weight: 500;
  white-space: nowrap;
}
.trust-item .star { color: var(--amber-light); font-size: 1rem; }
.trust-sep { color: var(--amber); font-size: 1.2rem; }
@keyframes marquee {
  0% { transform: translateX(0); }
  100% { transform: translateX(-50%); }
}

/* SECTIONS */
.section { padding: 5rem 2rem; }
.section-inner { max-width: 1100px; margin: 0 auto; }
.section-label {
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.2em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 0.75rem;
}
.section-title {
  font-family: 'Playfair Display', serif;
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  color: var(--espresso);
  margin-bottom: 1rem;
  line-height: 1.2;
}
.section-sub { color: var(--text-light); font-size: 1rem; max-width: 560px; line-height: 1.7; }

/* ABOUT PREVIEW */
.about-preview { background: var(--cream-dark); }
.about-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 4rem; align-items: center;
}
.about-visual {
  position: relative;
  background: var(--espresso);
  border-radius: 20px;
  overflow: hidden;
  aspect-ratio: 4/3;
  display: flex; align-items: center; justify-content: center;
  font-size: 6rem;
}
.about-visual::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(212,136,58,0.2), transparent);
}
.about-text-block { padding: 1rem 0; }
.founder-quote {
  margin: 1.5rem 0;
  padding: 1.25rem 1.5rem;
  border-left: 3px solid var(--amber);
  background: rgba(212,136,58,0.06);
  border-radius: 0 12px 12px 0;
}
.founder-quote p { font-style: italic; color: var(--text-light); font-size: 0.95rem; line-height: 1.7; }
.founder-quote cite { display: block; margin-top: 0.5rem; font-size: 0.8rem; font-weight: 600; color: var(--amber); font-style: normal; }
.about-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; margin-top: 1.5rem; }
.stat-box { text-align: center; padding: 1rem; background: var(--cream); border-radius: 12px; }
.stat-num { font-family: 'Playfair Display', serif; font-size: 1.75rem; color: var(--espresso); font-weight: 700; }
.stat-lbl { font-size: 0.75rem; color: var(--text-light); margin-top: 0.2rem; }
@media (max-width: 768px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .about-visual { aspect-ratio: 3/2; }
}

/* MENU PREVIEW */
.menu-section {}
.menu-header { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 2.5rem; flex-wrap: wrap; gap: 1rem; }
.menu-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}
.menu-card {
  border-radius: 16px;
  overflow: hidden;
  background: #fff;
  box-shadow: 0 4px 20px rgba(44,24,16,0.08);
  transition: transform 0.3s, box-shadow 0.3s;
  cursor: pointer;
}
.menu-card:hover { transform: translateY(-6px); box-shadow: 0 12px 40px rgba(44,24,16,0.15); }
.menu-card-img {
  height: 180px;
  display: flex; align-items: center; justify-content: center;
  font-size: 4.5rem;
  overflow: hidden;
  transition: transform 0.4s;
  position: relative;
}
.menu-card:hover .menu-card-img { transform: scale(1.08); }
.menu-card-body { padding: 1.25rem; }
.menu-card-cat { font-size: 0.7rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--amber); margin-bottom: 0.4rem; }
.menu-card-name { font-family: 'Playfair Display', serif; font-size: 1.15rem; color: var(--espresso); margin-bottom: 0.5rem; }
.menu-card-desc { font-size: 0.85rem; color: var(--text-light); line-height: 1.5; }
@media (max-width: 900px) { .menu-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px) { .menu-grid { grid-template-columns: 1fr; } }

/* HOURS CTA */
.hours-cta { background: var(--espresso); color: #fff; }
.hours-cta-inner {
  display: grid; grid-template-columns: 1fr auto; gap: 3rem; align-items: center;
  max-width: 1100px; margin: 0 auto; padding: 4rem 2rem;
}
.hours-cta .section-title { color: #fff; }
.hours-cta .section-sub { color: rgba(255,255,255,0.7); max-width: none; }
.hours-table { min-width: 280px; }
.hours-row {
  display: flex; justify-content: space-between; align-items: center;
  padding: 0.6rem 0;
  border-bottom: 1px solid rgba(255,255,255,0.1);
  font-size: 0.9rem;
}
.hours-row:last-child { border-bottom: none; }
.hours-day { color: rgba(255,255,255,0.7); }
.hours-time { color: #fff; font-weight: 500; }
.hours-time.open { color: var(--amber-light); }
.hours-time.closed { color: rgba(255,255,255,0.35); }
@media (max-width: 768px) { .hours-cta-inner { grid-template-columns: 1fr; } .hours-table { width: 100%; } }

/* REVIEWS */
.reviews-section { background: var(--espresso-mid); }
.reviews-header { text-align: center; margin-bottom: 2.5rem; }
.reviews-header .section-title { color: #fff; }
.reviews-header .section-sub { color: rgba(255,255,255,0.7); margin: 0 auto; }
.reviews-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.review-card {
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 16px;
  padding: 1.5rem;
}
.review-stars { color: var(--amber-light); font-size: 1rem; margin-bottom: 0.75rem; }
.review-text { color: rgba(255,255,255,0.85); font-size: 0.9rem; line-height: 1.65; font-style: italic; margin-bottom: 1rem; }
.review-author { display: flex; align-items: center; gap: 0.75rem; }
.review-avatar {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--amber); display: flex; align-items: center; justify-content: center;
  font-weight: 700; color: #fff; font-size: 0.9rem; flex-shrink: 0;
}
.review-name { font-weight: 600; font-size: 0.9rem; color: #fff; }
.review-date { font-size: 0.75rem; color: rgba(255,255,255,0.5); }
@media (max-width: 900px) { .reviews-grid { grid-template-columns: 1fr; } }
@media (max-width: 768px) { .reviews-grid { grid-template-columns: 1fr; } }

/* FOOTER */
.footer {
  background: var(--espresso);
  color: rgba(255,255,255,0.75);
  padding: 3rem 2rem 1.5rem;
}
.footer-grid {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr;
  gap: 3rem; margin-bottom: 2.5rem;
}
.footer-brand .brand-name {
  font-family: 'Playfair Display', serif;
  font-size: 1.5rem; color: #fff;
  margin-bottom: 0.75rem; display: block;
}
.footer-brand p { font-size: 0.85rem; line-height: 1.7; }
.footer-col h4 { color: #fff; font-size: 0.85rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 1rem; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 0.5rem; }
.footer-col ul li a { color: rgba(255,255,255,0.65); text-decoration: none; font-size: 0.85rem; transition: color 0.2s; }
.footer-col ul li a:hover { color: var(--amber-light); }
.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  padding-top: 1.5rem; border-top: 1px solid rgba(255,255,255,0.1);
  display: flex; justify-content: space-between; align-items: center; flex-wrap: gap;
  font-size: 0.8rem; color: rgba(255,255,255,0.4);
}
.footer-bottom a { color: var(--amber-light); text-decoration: none; }
@media (max-width: 768px) { .footer-grid { grid-template-columns: 1fr; gap: 2rem; } .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; } }

/* PAGE HERO (inner pages) */
.page-hero {
  background: var(--espresso);
  padding: 8rem 2rem 4rem;
  text-align: center;
  position: relative; overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse at 50% 120%, rgba(212,136,58,0.2) 0%, transparent 60%);
}
.page-hero-inner { position: relative; z-index: 1; max-width: 700px; margin: 0 auto; }
.page-hero .section-label { margin-bottom: 1rem; }
.page-hero h1 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  color: #fff; margin-bottom: 1rem;
}
.page-hero p { color: rgba(255,255,255,0.75); font-size: 1.05rem; line-height: 1.7; }

/* ABOUT PAGE */
.story-section {}
.story-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.story-image {
  border-radius: 20px; overflow: hidden;
  background: var(--espresso-mid);
  aspect-ratio: 4/5;
  display: flex; align-items: center; justify-content: center;
  font-size: 7rem;
  position: sticky; top: 6rem;
}
.story-text h2 { font-family: 'Playfair Display', serif; font-size: 2rem; color: var(--espresso); margin: 2rem 0 1rem; }
.story-text h2:first-child { margin-top: 0; }
.story-text p { color: var(--text-light); line-height: 1.8; margin-bottom: 1rem; }
.timeline { margin: 2rem 0; }
.timeline-item {
  display: flex; gap: 1.5rem;
  padding-bottom: 1.5rem;
  position: relative;
}
.timeline-item::before {
  content: '';
  position: absolute; left: 19px; top: 40px; bottom: 0;
  width: 2px; background: var(--cream-dark);
}
.timeline-item:last-child::before { display: none; }
.timeline-dot {
  width: 40px; height: 40px; border-radius: 50%;
  background: var(--amber);
  display: flex; align-items: center; justify-content: center;
  color: #fff; font-weight: 700; font-size: 0.8rem;
  flex-shrink: 0;
}
.timeline-content h4 { font-weight: 600; color: var(--espresso); margin-bottom: 0.3rem; }
.timeline-content p { font-size: 0.9rem; color: var(--text-light); line-height: 1.6; }
.values-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; margin-top: 1.5rem; }
.value-card {
  padding: 1.25rem;
  background: var(--cream-dark);
  border-radius: 12px;
}
.value-card .val-icon { font-size: 1.5rem; margin-bottom: 0.5rem; }
.value-card h4 { font-weight: 600; color: var(--espresso); margin-bottom: 0.3rem; font-size: 0.95rem; }
.value-card p { font-size: 0.82rem; color: var(--text-light); line-height: 1.5; }
@media (max-width: 900px) { .story-grid { grid-template-columns: 1fr; } .story-image { position: static; aspect-ratio: 3/2; } }

/* MENU PAGE */
.menu-page {}
.menu-cats { display: flex; gap: 0.75rem; flex-wrap: wrap; margin-bottom: 2.5rem; }
.menu-cat-btn {
  padding: 0.5rem 1.25rem;
  border-radius: 25px;
  border: 2px solid var(--cream-dark);
  background: #fff;
  font-size: 0.85rem; font-weight: 500; color: var(--text-light);
  cursor: pointer; transition: all 0.2s;
}
.menu-cat-btn:hover, .menu-cat-btn.active { border-color: var(--amber); background: var(--amber); color: #fff; }
.menu-section-block { margin-bottom: 3rem; }
.menu-section-block h3 {
  font-family: 'Playfair Display', serif;
  font-size: 1.6rem; color: var(--espresso);
  margin-bottom: 1.25rem; padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--cream-dark);
  display: flex; align-items: center; gap: 0.6rem;
}
.menu-items-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 1rem; }
.menu-item {
  display: flex; align-items: center; gap: 1rem;
  padding: 1rem 1.25rem;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--cream-dark);
  transition: border-color 0.2s, box-shadow 0.2s;
}
.menu-item:hover { border-color: var(--amber); box-shadow: 0 4px 15px rgba(212,136,58,0.1); }
.menu-item-icon { font-size: 2rem; flex-shrink: 0; }
.menu-item-info { flex: 1; }
.menu-item-info h4 { font-weight: 600; color: var(--espresso); font-size: 0.95rem; margin-bottom: 0.2rem; }
.menu-item-info p { font-size: 0.8rem; color: var(--text-light); line-height: 1.4; }
.menu-item-price { font-weight: 700; color: var(--amber); font-size: 0.95rem; white-space: nowrap; }
@media (max-width: 700px) { .menu-items-grid { grid-template-columns: 1fr; } }

/* CONTACT PAGE */
.contact-grid { display: grid; grid-template-columns: 1fr 1.5fr; gap: 3rem; }
.contact-info-block { padding: 2rem; background: var(--espresso); border-radius: 20px; color: #fff; }
.contact-info-block h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: #fff; margin-bottom: 1.5rem; }
.contact-item { display: flex; gap: 1rem; margin-bottom: 1.5rem; }
.contact-item-icon { width: 44px; height: 44px; background: rgba(212,136,58,0.2); border-radius: 12px; display: flex; align-items: center; justify-content: center; font-size: 1.2rem; flex-shrink: 0; }
.contact-item-text .label { font-size: 0.75rem; color: rgba(255,255,255,0.5); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.2rem; }
.contact-item-text .value { font-size: 0.9rem; color: rgba(255,255,255,0.9); line-height: 1.5; }
.contact-item-text a { color: var(--amber-light); text-decoration: none; }
.hours-card { background: rgba(255,255,255,0.06); border-radius: 12px; padding: 1.25rem; margin-top: 1.5rem; }
.hours-card h4 { color: rgba(255,255,255,0.6); font-size: 0.75rem; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 0.75rem; }
.contact-form-block {}
.contact-form-block h3 { font-family: 'Playfair Display', serif; font-size: 1.5rem; color: var(--espresso); margin-bottom: 0.5rem; }
.contact-form-block p { color: var(--text-light); font-size: 0.9rem; margin-bottom: 1.5rem; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-group { margin-bottom: 1rem; }
.form-group label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--espresso); margin-bottom: 0.4rem; letter-spacing: 0.05em; }
.form-group input, .form-group textarea, .form-group select {
  width: 100%; padding: 0.75rem 1rem;
  border: 2px solid var(--cream-dark); border-radius: 10px;
  font-size: 0.9rem; font-family: 'DM Sans', sans-serif;
  color: var(--text); background: #fff; outline: none;
  transition: border-color 0.2s;
}
.form-group input:focus, .form-group textarea:focus, .form-group select:focus { border-color: var(--amber); }
.form-group textarea { resize: vertical; min-height: 120px; }
.form-submit { width: 100%; padding: 0.875rem; background: var(--amber); color: #fff; border: none; border-radius: 10px; font-size: 1rem; font-weight: 600; cursor: pointer; transition: background 0.2s; }
.form-submit:hover { background: var(--terracotta); }
.form-success { display: none; padding: 1.25rem; background: rgba(212,136,58,0.1); border: 1px solid var(--amber); border-radius: 12px; text-align: center; color: var(--espresso); }
.map-placeholder { background: var(--cream-dark); border-radius: 16px; height: 250px; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 0.75rem; margin-top: 1.5rem; font-size: 2rem; cursor: pointer; border: 2px solid transparent; transition: border-color 0.2s; }
.map-placeholder:hover { border-color: var(--amber); }
.map-placeholder p { font-size: 0.85rem; color: var(--text-light); }
.map-placeholder a { color: var(--amber); text-decoration: none; font-size: 0.85rem; font-weight: 600; }
@media (max-width: 900px) { .contact-grid { grid-template-columns: 1fr; } .form-row { grid-template-columns: 1fr; } }

/* SCROLL REVEAL */
.reveal { opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease, transform 0.6s ease; }
.reveal.visible { opacity: 1; transform: translateY(0); }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
