@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Montserrat';
  src: url('../font/Montserrat-Bold.otf') format('opentype');
  font-weight: 600 800;
  font-style: normal;
  font-display: swap;
}

:root {
  --dark: #0d0d0d;
  --red: #e53137;
  --cream: #f7f5f2;
  --text: #222;
}

* { box-sizing: border-box; }

body {
  margin: 0;
  font-family: 'Montserrat', sans-serif;
  color: var(--text);
  background: #fff;
  line-height: 1.6;
}

a { color: inherit; text-decoration: none; }

.announce {
  background: var(--red);
  color: #fff;
  text-align: center;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 16px;
}

.announce a {
  color: #fff;
  text-decoration: underline;
}

.announce a:hover { color: #fff2ee; }

.topbar {
  background: var(--dark);
  color: #ddd;
  font-size: 0.8rem;
  font-weight: 600;
  padding: 8px 24px;
  display: flex;
  justify-content: center;
  gap: 32px;
  flex-wrap: wrap;
}

.topbar a { color: #fff; }

header.main-header {
  background: var(--dark);
  color: #fff;
  padding: 14px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.logo {
  text-align: center;
}

.logo img { height: 60px; }

nav.primary-nav ul {
  list-style: none;
  display: flex;
  gap: 26px;
  margin: 0;
  padding: 0;
  flex-wrap: wrap;
}

nav.primary-nav a {
  color: #fff;
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
  font-size: 0.85rem;
}

nav.primary-nav a:hover, nav.primary-nav a.active { color: var(--red); }

.order-now {
  background: var(--red);
  color: #fff !important;
  padding: 12px 24px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.5px;
}

.order-now:hover { background: #c22026; }

/* Hero image carousel */
.hero-carousel {
  position: relative;
  min-height: 520px;
  overflow: hidden;
}

.hero-slide {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  opacity: 0;
  transition: opacity 1.2s ease-in-out;
}

.hero-slide.active { opacity: 1; }

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  z-index: 2;
}

.hero-overlay .tile-content { color: #fff; }

.hero-overlay h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 14px;
  border-bottom: 2px solid #fff;
  padding-bottom: 14px;
  display: inline-block;
}

.hero-dots {
  position: absolute;
  bottom: 20px;
  left: 0;
  right: 0;
  z-index: 3;
  display: flex;
  justify-content: center;
  gap: 8px;
}

.hero-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255,255,255,0.5);
  cursor: pointer;
}

.hero-dot.active { background: #fff; }

/* Full-bleed photo tiles used for hero + CTA sections */
.photo-tile {
  position: relative;
  min-height: 420px;
  background-size: cover;
  background-position: center;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
}

.photo-tile::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0,0,0,0.35);
}

.photo-tile .tile-content {
  position: relative;
  z-index: 1;
  color: #fff;
}

.photo-tile h2 {
  font-size: 2.6rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 1px;
  margin: 0 0 14px;
  border-bottom: 2px solid #fff;
  padding-bottom: 14px;
  display: inline-block;
}

.photo-tile .btn {
  margin-top: 18px;
}

.page-banner {
  min-height: 380px;
}

@media (min-width: 700px) {
  .page-banner { min-height: 460px; }
}

@media (min-width: 1100px) {
  .page-banner { min-height: 560px; }
}

.tile-row {
  display: flex;
  flex-wrap: wrap;
}

.tile-row .photo-tile {
  flex: 1 1 480px;
  min-height: 360px;
}

.btn {
  display: inline-block;
  background: var(--red);
  color: #fff !important;
  padding: 14px 30px;
  border-radius: 3px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1px;
  font-size: 0.85rem;
}

.btn:hover { background: #c22026; }

section.block { padding: 70px 24px; max-width: 1200px; margin: 0 auto; }

section.block h2.section-title {
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 2px;
  font-weight: 800;
  font-size: 2.2rem;
  margin-bottom: 40px;
}

.testimonials {
  background: var(--dark);
  color: #fff;
  padding: 70px 24px;
}

.testimonials h2.section-title { color: #fff; }

.testimonial-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  max-width: 1200px;
  margin: 0 auto;
}

.testimonial {
  background: var(--red);
  color: #fff;
  border-radius: 4px;
  padding: 30px 26px;
  text-align: center;
  position: relative;
}

.testimonial .quote-mark {
  font-size: 2.5rem;
  font-weight: 800;
  line-height: 1;
  opacity: 0.8;
}

.testimonial p { font-size: 0.95rem; margin: 10px 0 16px; }

.testimonial cite {
  display: block;
  font-style: normal;
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 6px;
}

.stars { color: #f7e084; letter-spacing: 2px; }

.locations-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto;
}

.location-card {
  background: var(--cream);
  border-radius: 6px;
  overflow: hidden;
  box-shadow: 0 10px 24px rgba(0,0,0,0.12);
}

.location-card img {
  width: 100%;
  height: 220px;
  object-fit: cover;
  display: block;
}

.location-card .location-body {
  padding: 24px;
}

.location-card h3 {
  font-size: 1.4rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin: 0 0 10px;
  color: var(--dark);
}

.location-card p {
  margin: 0 0 8px;
  font-size: 0.95rem;
}

.location-card .hours-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.9rem;
  padding: 4px 0;
  border-top: 1px solid #e5e5e5;
}

.location-card .hours-row:first-of-type { border-top: none; margin-top: 10px; }

.location-card .hours-row span:first-child { font-weight: 700; }

@media (max-width: 700px) {
  .locations-grid { grid-template-columns: 1fr; }
}

.about-photo {
  width: 100%;
  max-width: 500px;
  display: block;
  margin: 0 auto 30px;
  border-radius: 6px;
}

.faq-item {
  border-bottom: 1px solid #e5e5e5;
  padding: 18px 0;
}

.faq-item h3 {
  color: var(--red);
  margin: 0 0 8px;
  font-size: 1rem;
  text-transform: uppercase;
  font-weight: 700;
}

.faq-category {
  margin-top: 50px;
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--dark);
  text-transform: uppercase;
  border-bottom: 3px solid var(--red);
  padding-bottom: 10px;
}

footer {
  background: var(--dark);
  color: #ccc;
  padding: 50px 24px 24px;
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 30px;
  max-width: 1200px;
  margin: 0 auto 30px;
}

.footer-grid h4 {
  color: #fff;
  text-transform: uppercase;
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 1px;
  margin-bottom: 16px;
}

.footer-grid ul {
  list-style: none;
  padding: 0;
  margin: 0;
}

.footer-grid li { margin-bottom: 10px; font-size: 0.9rem; }
.footer-grid li a:hover { color: var(--red); }

.footer-logo img { height: 90px; margin-bottom: 16px; }

.social-icons {
  display: flex;
  gap: 12px;
  margin-top: 16px;
}

.social-icons a {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: var(--red);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.9rem;
  font-weight: 700;
}

.footer-bottom {
  text-align: center;
  font-size: 0.8rem;
  border-top: 1px solid #2a2a2a;
  padding-top: 20px;
  max-width: 1200px;
  margin: 0 auto;
}

.powered-by {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  margin-top: 14px;
  padding: 7px 14px;
  border: 1px solid rgba(255,255,255,.18);
  border-radius: 20px;
  color: #8b93a3;
  font-size: 0.75rem;
  letter-spacing: 0.3px;
  transition: border-color .25s, color .25s, background .25s, transform .2s;
}

.powered-by:hover {
  border-color: var(--red);
  color: #fff;
  background: rgba(255,255,255,.04);
  transform: translateY(-1px);
}

.powered-by strong { color: #fff; font-weight: 700; }
.powered-by:hover strong { color: var(--red); }
.powered-by-icon { width: 14px; height: 14px; flex-shrink: 0; opacity: .8; }

@media (max-width: 700px) {
  header.main-header { flex-direction: column; gap: 16px; }
  nav.primary-nav ul { justify-content: center; }
  .photo-tile h2 { font-size: 1.8rem; }
}

/* Application form */
.apply-form {
  max-width: 640px;
  margin: 0 auto;
}

.apply-form .form-row {
  margin-bottom: 20px;
}

.apply-form label {
  display: block;
  font-weight: 700;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.apply-form input[type="text"],
.apply-form input[type="email"],
.apply-form input[type="tel"],
.apply-form select,
.apply-form textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid #ccc;
  border-radius: 3px;
  font-family: inherit;
  font-size: 0.95rem;
  color: var(--text);
}

.apply-form input[type="file"] {
  width: 100%;
  font-size: 0.9rem;
}

.apply-form textarea { resize: vertical; min-height: 120px; }

.apply-form .form-hint {
  font-size: 0.8rem;
  color: #777;
  margin-top: 6px;
}

.apply-form button.btn {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.apply-form button.btn:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.apply-form-status {
  text-align: center;
  margin-top: 16px;
  font-weight: 600;
}

.apply-form-status.success { color: #1a7f37; }
.apply-form-status.error { color: var(--red); }

.hp-field {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}
