/* =============================================
   Golden Crust — Client Site Theme
   ============================================= */

:root {
  --amber: #D4A843;
  --amber-dark: #b8892f;
  --cream: #F9F5ED;
  --warm-white: #FFFDF8;
  --text-dark: #1C1208;
  --text-mid: #4A3A28;
  --text-muted: #8A7A68;
  --divider: #E8DFD0;
  --nav-bg: rgba(28, 18, 8, 0.92);
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body { font-family: 'DM Sans', sans-serif; background: var(--warm-white); color: var(--text-dark); line-height: 1.65; -webkit-font-smoothing: antialiased; }
h1, h2, h3, h4 { font-family: 'Playfair Display', Georgia, serif; font-weight: 700; line-height: 1.2; }

/* ---- Navigation ---- */
.site-nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: var(--nav-bg); backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(212,168,67,0.15);
}
.site-nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.site-logo { font-family: 'Playfair Display', serif; font-size: 1.2rem; font-weight: 700; color: white; text-decoration: none; letter-spacing: -0.01em; }
.site-logo img { height: 36px; width: auto; object-fit: contain; }
.site-nav-links { display: flex; gap: 2rem; align-items: center; }
.site-nav-links a { color: rgba(255,255,255,0.72); text-decoration: none; font-size: 0.875rem; font-weight: 500; transition: color 0.2s; }
.site-nav-links a:hover { color: var(--amber); }
.nav-cta { background: var(--amber); color: var(--text-dark) !important; padding: 7px 18px; border-radius: 7px; font-weight: 600 !important; }
.nav-cta:hover { background: var(--amber-dark); }

/* ---- Hero ---- */
.client-hero {
  position: relative; min-height: 100vh;
  display: flex; align-items: center;
  overflow: hidden;
}
.hero-bg-img {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  object-fit: cover;
  filter: brightness(0.45);
}
.hero-content {
  position: relative; z-index: 2;
  max-width: 1200px; margin: 0 auto; padding: 0 2rem;
  width: 100%; padding-top: 100px; padding-bottom: 80px;
}
.hero-badge {
  display: inline-flex; align-items: center; gap: 8px;
  font-size: 0.75rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--amber);
  margin-bottom: 1.5rem;
}
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--amber); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero-h1 {
  font-size: clamp(2.5rem, 6vw, 5rem);
  color: white; font-weight: 900;
  letter-spacing: -0.02em; line-height: 1.08;
  margin-bottom: 1.5rem;
}
.hero-h1 em { font-style: italic; color: var(--amber); }
.hero-sub {
  font-size: 1.1rem; color: rgba(255,255,255,0.7);
  max-width: 540px; line-height: 1.75; margin-bottom: 2rem;
}
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }
.btn-primary {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--amber); color: var(--text-dark);
  font-weight: 600; font-size: 0.9rem; padding: 12px 26px;
  border-radius: 9px; text-decoration: none; transition: background 0.2s;
}
.btn-primary:hover { background: var(--amber-dark); }
.btn-ghost {
  display: inline-flex; align-items: center; gap: 8px;
  background: transparent; color: white;
  font-weight: 500; font-size: 0.9rem; padding: 12px 24px;
  border-radius: 9px; text-decoration: none;
  border: 1px solid rgba(255,255,255,0.3);
  transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { border-color: rgba(255,255,255,0.6); background: rgba(255,255,255,0.08); }
.hero-scroll-hint {
  position: absolute; bottom: 2rem; left: 50%; transform: translateX(-50%);
  z-index: 2; color: rgba(255,255,255,0.5); font-size: 0.75rem;
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  animation: bounce 2s infinite;
}
@keyframes bounce { 0%,100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(5px); } }

/* ---- Section Shared ---- */
.section-label {
  display: block; font-size: 0.72rem; font-weight: 700;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: var(--amber); margin-bottom: 0.75rem;
}
.section-title { font-size: clamp(1.75rem, 4vw, 2.75rem); color: var(--text-dark); margin-bottom: 1rem; }
.section-desc { font-size: 1rem; color: var(--text-muted); max-width: 540px; line-height: 1.75; }

/* ---- About ---- */
.about-section { padding: 7rem 0; background: var(--cream); }
.about-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 5rem; align-items: center; }
.about-text .section-desc { margin-bottom: 1.5rem; }
.about-img-wrap { border-radius: 16px; overflow: hidden; aspect-ratio: 4/3; }
.about-img-wrap img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* ---- Services ---- */
.services-section { padding: 7rem 0; background: var(--warm-white); }
.services-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.services-header { margin-bottom: 3rem; }
.services-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.service-card { background: white; border: 1px solid var(--divider); border-radius: 12px; padding: 2rem 1.5rem; transition: transform 0.25s, box-shadow 0.25s; }
.service-card:hover { transform: translateY(-4px); box-shadow: 0 12px 32px rgba(28,18,8,0.08); }
.service-icon { display: block; width: 40px; height: 40px; margin-bottom: 1rem; }
.service-title { font-family: 'Playfair Display', serif; font-size: 1.1rem; font-weight: 700; color: var(--text-dark); margin-bottom: 0.5rem; }
.service-desc { font-size: 0.85rem; color: var(--text-muted); line-height: 1.65; }

/* ---- Gallery ---- */
.gallery-section { padding: 7rem 0; background: var(--cream); }
.gallery-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.gallery-header { margin-bottom: 3rem; }
.gallery-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; }
.gallery-item { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.gallery-item img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.4s; }
.gallery-item:hover img { transform: scale(1.04); }

/* ---- Hours & Map ---- */
.info-section { padding: 7rem 0; background: var(--warm-white); }
.info-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: start; }
.info-header { margin-bottom: 2rem; }
.hours-block { background: var(--cream); border-radius: 12px; padding: 2rem; margin-bottom: 1.5rem; }
.hours-row { display: flex; justify-content: space-between; align-items: center; padding: 0.65rem 0; border-bottom: 1px solid var(--divider); }
.hours-row:last-child { border-bottom: none; }
.hours-day { font-size: 0.875rem; font-weight: 500; color: var(--text-mid); }
.hours-time { font-size: 0.875rem; color: var(--text-muted); }
.extra-info { font-size: 0.875rem; color: var(--text-muted); line-height: 1.65; margin-top: 1rem; }
.map-wrap { border-radius: 12px; overflow: hidden; aspect-ratio: 4/3; }
.map-wrap iframe { width: 100%; height: 100%; border: 0; }
.contact-pills { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 1.5rem; }
.contact-pill { display: inline-flex; align-items: center; gap: 8px; font-size: 0.825rem; font-weight: 500; color: var(--text-mid); background: var(--cream); padding: 8px 16px; border-radius: 100px; text-decoration: none; transition: background 0.15s; }
.contact-pill:hover { background: var(--divider); }

/* ---- CTA ---- */
.cta-section { background: var(--text-dark); padding: 7rem 0; text-align: center; }
.cta-inner { max-width: 800px; margin: 0 auto; padding: 0 2rem; }
.cta-headline { font-size: clamp(2rem, 5vw, 3.5rem); color: white; margin-bottom: 1.25rem; font-weight: 900; letter-spacing: -0.02em; }
.cta-body { font-size: 1rem; color: rgba(255,255,255,0.55); margin-bottom: 2rem; line-height: 1.75; }
.btn-cta { display: inline-flex; background: var(--amber); color: var(--text-dark); font-weight: 700; font-size: 1rem; padding: 15px 36px; border-radius: 10px; text-decoration: none; transition: background 0.2s, transform 0.15s; }
.btn-cta:hover { background: var(--amber-dark); transform: translateY(-2px); }

/* ---- Footer ---- */
.site-footer { background: #120D05; padding: 3rem 0; text-align: center; border-top: 1px solid rgba(212,168,67,0.1); }
.footer-inner { max-width: 1200px; margin: 0 auto; padding: 0 2rem; }
.footer-logo { font-family: 'Playfair Display', serif; font-size: 1.25rem; font-weight: 700; color: white; display: block; margin-bottom: 0.75rem; text-decoration: none; }
.footer-address { font-size: 0.825rem; color: rgba(255,255,255,0.4); margin-bottom: 1rem; line-height: 1.6; }
.footer-social { display: flex; gap: 1rem; justify-content: center; margin-bottom: 1.5rem; }
.footer-social a { color: rgba(255,255,255,0.4); text-decoration: none; font-size: 0.8rem; transition: color 0.2s; }
.footer-social a:hover { color: var(--amber); }
.footer-copy { font-size: 0.75rem; color: rgba(255,255,255,0.25); }

/* ---- Contact Form ---- */
#contact { scroll-margin-top: 80px; }
.contact-section { padding: 7rem 0; background: var(--cream); }
.contact-inner { max-width: 700px; margin: 0 auto; padding: 0 2rem; }
.contact-form { background: white; border-radius: 16px; padding: 2.5rem; box-shadow: 0 4px 24px rgba(28,18,8,0.06); }
.form-field { margin-bottom: 1.25rem; }
.form-label { display: block; font-size: 0.8rem; font-weight: 600; color: var(--text-dark); margin-bottom: 0.4rem; }
.form-input { width: 100%; padding: 10px 14px; border: 1px solid var(--divider); border-radius: 8px; font-family: 'DM Sans', sans-serif; font-size: 0.875rem; color: var(--text-dark); background: var(--warm-white); transition: border-color 0.15s; }
.form-input:focus { outline: none; border-color: var(--amber); }
textarea.form-input { resize: vertical; min-height: 110px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.form-submit { width: 100%; background: var(--amber); color: var(--text-dark); font-weight: 700; font-size: 0.95rem; padding: 14px; border: none; border-radius: 9px; cursor: pointer; transition: background 0.2s, transform 0.15s; font-family: 'DM Sans', sans-serif; }
.form-submit:hover { background: var(--amber-dark); transform: translateY(-1px); }
.form-submit:disabled { opacity: 0.7; cursor: not-allowed; transform: none; }
.form-success { display: none; text-align: center; padding: 2rem; }
.form-success h3 { font-family: 'Playfair Display', serif; color: var(--text-dark); margin-bottom: 0.5rem; }
.form-success p { color: var(--text-muted); }

/* ---- Hamburger (mobile) ---- */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 8px;
  border-radius: 6px;
}
.hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: rgba(255,255,255,0.8);
  border-radius: 2px;
  transition: transform 0.2s, opacity 0.2s;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ---- Responsive ---- */
@media (max-width: 1024px) {
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .about-inner, .info-inner { grid-template-columns: 1fr; gap: 3rem; }
}
@media (max-width: 768px) {
  .site-nav-links {
    display: flex;
    flex-direction: column;
    position: absolute;
    top: 64px;
    left: 0;
    right: 0;
    background: rgba(28,18,8,0.97);
    backdrop-filter: blur(12px);
    padding: 1.5rem 2rem 2rem;
    gap: 0;
    border-top: 1px solid rgba(212,168,67,0.15);
    transform: translateY(-110%);
    opacity: 0;
    transition: transform 0.3s ease, opacity 0.3s ease;
    pointer-events: none;
  }
  .site-nav-links.open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
  }
  .site-nav-links a {
    display: block;
    padding: 0.75rem 0;
    color: rgba(255,255,255,0.85);
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.06);
  }
  .site-nav-links a:last-child { border-bottom: none; }
  .nav-cta { margin-top: 0.75rem; text-align: center; }
  .hamburger { display: flex; }
  .gallery-grid { grid-template-columns: repeat(2, 1fr); }
  .services-grid { grid-template-columns: 1fr; }
  .form-row { grid-template-columns: 1fr; }
}
@media (max-width: 480px) {
  .gallery-grid { grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
}