/* ===== RESET & BASE ===== */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Open Sans', sans-serif;
  color: #1a1a1a;
  background: #fff;
  line-height: 1.6;
}
a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; }
ul { list-style: none; }

.container { max-width: 1160px; margin: 0 auto; padding: 0 24px; }

/* ===== NAV ===== */
.nav {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 100;
  background: rgba(10,10,10,0.92);
  backdrop-filter: blur(8px);
  border-bottom: 2px solid #d32f2f;
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}
.logo { display: flex; align-items: baseline; gap: 6px; }
.logo-hhtj {
  font-family: 'Oswald', sans-serif;
  font-size: 1.7rem;
  font-weight: 700;
  color: #d32f2f;
  letter-spacing: 2px;
}
.logo-rest {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 400;
  color: #ccc;
  letter-spacing: 1px;
}
.links { display: flex; align-items: center; gap: 28px; }
.links a {
  color: #ddd;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  transition: color 0.2s;
}
.links a:hover { color: #fff; }
.btn-portal {
  background: #1565c0;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.btn-portal:hover { background: #0d47a1 !important; }
.btn-call {
  background: #d32f2f;
  color: #fff !important;
  padding: 8px 18px;
  border-radius: 4px;
  font-size: 0.85rem !important;
  transition: background 0.2s !important;
}
.btn-call:hover { background: #b71c1c !important; }

/* ===== HERO ===== */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: #0a0a0a;
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  opacity: 0.45;
  filter: grayscale(20%);
}
.hero-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(0,0,0,0.85) 40%, rgba(211,47,47,0.25) 100%);
}
.hero-content {
  position: relative;
  z-index: 1;
  max-width: 680px;
  padding-top: 80px;
}
.hero-tag {
  display: inline-block;
  background: #d32f2f;
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  padding: 4px 14px;
  border-radius: 2px;
  margin-bottom: 18px;
}
.hero-content h1 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2.8rem, 6vw, 5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.05;
  margin-bottom: 16px;
  text-transform: uppercase;
  letter-spacing: 1px;
}
.hero-content h1 span { color: #ef5350; }
.hero-sub {
  color: #ccc;
  font-size: 1.1rem;
  margin-bottom: 36px;
}
.hero-ctas { display: flex; gap: 16px; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
  display: inline-block;
  padding: 14px 28px;
  border-radius: 4px;
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  cursor: pointer;
  transition: all 0.2s;
}
.btn-primary {
  background: #d32f2f;
  color: #fff;
  border: 2px solid #d32f2f;
}
.btn-primary:hover { background: #b71c1c; border-color: #b71c1c; }
.btn-outline {
  background: transparent;
  color: #fff;
  border: 2px solid rgba(255,255,255,0.5);
}
.btn-outline:hover { border-color: #fff; background: rgba(255,255,255,0.08); }
.btn-fb {
  background: #1877f2;
  color: #fff !important;
  border: none;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  border-radius: 4px;
  cursor: pointer;
  transition: background 0.2s;
}
.btn-fb:hover { background: #0d65d8; }

/* ===== INFO BAR ===== */
.info-bar {
  background: #1a1a1a;
  border-bottom: 2px solid #d32f2f;
}
.info-bar-inner {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
}
.info-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 20px 28px;
  flex: 1 1 200px;
  color: #ccc;
  font-size: 0.88rem;
  border-right: 1px solid #333;
}
.info-item:last-child { border-right: none; }
.info-icon { font-size: 1.4rem; flex-shrink: 0; }
.info-item a { color: #ef5350; transition: color 0.2s; }
.info-item a:hover { color: #fff; }

/* ===== SECTIONS ===== */
.section { padding: 96px 0; }
.section-title {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(2rem, 4vw, 2.8rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-bottom: 12px;
}
.section-sub {
  text-align: center;
  color: #666;
  font-size: 1rem;
  margin-bottom: 56px;
}

/* ===== SERVICES ===== */
.services { background: #f7f7f7; }
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 24px;
}
.service-card {
  background: #fff;
  border-radius: 8px;
  padding: 36px 28px;
  box-shadow: 0 2px 16px rgba(0,0,0,0.07);
  position: relative;
  border-top: 4px solid #e0e0e0;
  transition: transform 0.2s, box-shadow 0.2s;
}
.service-card:hover { transform: translateY(-4px); box-shadow: 0 8px 32px rgba(0,0,0,0.12); }
.service-card.featured { border-top-color: #d32f2f; }
.service-icon { font-size: 2.4rem; margin-bottom: 16px; }
.service-card h3 {
  font-family: 'Oswald', sans-serif;
  font-size: 1.25rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 16px;
  color: #111;
}
.service-card ul { padding: 0; }
.service-card li {
  padding: 5px 0;
  color: #555;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.service-card li::before {
  content: '→';
  color: #d32f2f;
  font-weight: bold;
  flex-shrink: 0;
}
.badge {
  position: absolute;
  top: -1px;
  right: 20px;
  background: #d32f2f;
  color: #fff;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 4px 10px;
  border-radius: 0 0 4px 4px;
}

/* ===== ABOUT ===== */
.about { background: #fff; }
.about-inner {
  display: flex;
  gap: 64px;
  align-items: center;
}
.about-image-wrap {
  flex: 0 0 44%;
  border-radius: 10px;
  overflow: hidden;
  position: relative;
  min-height: 380px;
  background: #111;
}
.about-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 10px;
  display: block;
}
.about-img-placeholder {
  display: none;
  position: absolute;
  inset: 0;
  align-items: center;
  justify-content: center;
  font-family: 'Oswald', sans-serif;
  font-size: 4rem;
  font-weight: 700;
  color: #d32f2f;
  letter-spacing: 4px;
  background: #111;
}
.img-fallback .about-img-placeholder { display: flex; }
.img-fallback .about-img { display: none; }

.about-text h2 {
  font-family: 'Oswald', sans-serif;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 18px;
}
.about-text p { color: #555; font-size: 1rem; margin-bottom: 28px; line-height: 1.8; }
.stats { display: flex; flex-direction: column; gap: 12px; margin-bottom: 32px; }
.stat { display: flex; align-items: flex-start; gap: 12px; }
.stat strong { color: #d32f2f; font-size: 1.1rem; flex-shrink: 0; }
.stat span { color: #444; font-size: 0.93rem; }

/* ===== GALLERY ===== */
.gallery { background: #111; }
.gallery .section-title { color: #fff; }
.gallery .section-sub { color: #888; }
.gallery-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 16px;
}
.gallery-card {
  border-radius: 8px;
  overflow: hidden;
  background: #1e1e1e;
  position: relative;
  aspect-ratio: 4/3;
  display: flex;
  align-items: center;
  justify-content: center;
}
.gallery-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s;
}
.gallery-card:hover img { transform: scale(1.05); }
.gallery-label {
  position: absolute;
  bottom: 0; left: 0; right: 0;
  background: linear-gradient(transparent, rgba(0,0,0,0.7));
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
  padding: 24px 14px 10px;
  letter-spacing: 0.5px;
}
.gallery-placeholder {
  background: linear-gradient(135deg, #1e1e1e, #2a2a2a);
  border: 1px solid #333;
}
.placeholder-inner {
  text-align: center;
  color: #666;
  font-size: 0.9rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  line-height: 2;
}
.placeholder-inner span, .placeholder-inner > * { font-size: 2rem; display: block; margin-bottom: 8px; }
.gallery-cta-text {
  text-align: center;
  margin-top: 32px;
  color: #888;
  font-size: 0.95rem;
}
.gallery-cta-text a { color: #ef5350; font-weight: 600; }
.gallery-cta-text a:hover { color: #fff; }

/* ===== CONTACT ===== */
.contact { background: #f7f7f7; }
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-info h2 {
  font-family: 'Oswald', sans-serif;
  font-size: 2rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 28px;
}
.contact-block { margin-bottom: 24px; }
.contact-block h4 {
  font-family: 'Oswald', sans-serif;
  font-size: 1rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
  color: #d32f2f;
  margin-bottom: 6px;
}
.contact-block p { color: #444; font-size: 0.95rem; line-height: 1.7; }
.contact-block a { color: #d32f2f; transition: color 0.2s; }
.contact-block a:hover { color: #111; }
.hours-table { border-collapse: collapse; width: 100%; }
.hours-table td {
  padding: 5px 12px 5px 0;
  color: #444;
  font-size: 0.9rem;
}
.hours-table td:first-child { font-weight: 600; color: #222; min-width: 100px; }
.hours-table tr.closed td { color: #aaa; }
.contact-socials { margin-top: 28px; }
.map-wrap {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 24px rgba(0,0,0,0.12);
}
.map-wrap iframe { display: block; }

/* ===== FOOTER ===== */
.footer {
  background: #0a0a0a;
  border-top: 2px solid #d32f2f;
  padding: 36px 0;
}
.footer-inner { text-align: center; }
.footer-logo { display: inline-flex; align-items: baseline; gap: 6px; margin-bottom: 12px; }
.footer-socials { display: flex; justify-content: center; gap: 16px; margin-bottom: 18px; }
.fb-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: #1877f2;
  color: #fff;
  transition: background 0.2s, transform 0.2s;
}
.fb-icon:hover { background: #0d65d8; transform: translateY(-2px); }
.footer-copy { color: #666; font-size: 0.82rem; margin-bottom: 6px; }
.footer-address { color: #555; font-size: 0.82rem; }
.footer-address a { color: #ef5350; }
.footer-address a:hover { color: #fff; }

/* ===== RESPONSIVE ===== */
@media (max-width: 900px) {
  .about-inner { flex-direction: column; gap: 36px; }
  .about-image-wrap { flex: none; width: 100%; min-height: 260px; }
  .contact-inner { grid-template-columns: 1fr; gap: 36px; }
}
@media (max-width: 700px) {
  .links { gap: 14px; }
  .links a:not(.btn-call) { display: none; }
  .info-bar-inner { flex-direction: column; }
  .info-item { border-right: none; border-bottom: 1px solid #333; padding: 14px 24px; }
  .info-item:last-child { border-bottom: none; }
  .hero-ctas { flex-direction: column; }
  .btn { width: fit-content; }
  .gallery-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 440px) {
  .gallery-grid { grid-template-columns: 1fr; }
}
