@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Oswald:wght@400;600&family=Lato:wght@400;700&display=swap');

/* =============================================================================
   VARIABLES
   ============================================================================= */
:root {
  --green:        #4f5320;
  --green-dark:   #45491c;
  --orange:       #e86c00;
  --orange-light: #ff8c1a;
  --white:        #ffffff;
  --off-white:    #f5f4ef;
  --text-dark:    #1a1a1a;
  --text-mid:     #444444;
  --text-light:   #777777;
  --border:       #e0ddd5;
}

/* =============================================================================
   GLOBAL
   ============================================================================= */
*, *::before, *::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: 'Lato', sans-serif;
  font-size: 16px;
  color: var(--text-dark);
  background-color: var(--off-white);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

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

p {
  margin: 0 0 1rem;
}

h1, h2, h3, h4 {
  margin: 0 0 1rem;
  line-height: 1.2;
}

/* =============================================================================
   UTILITY
   ============================================================================= */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 24px;
}

.text-center {
  text-align: center;
}

.section-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 2rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 0.5rem;
}

.section-title::after {
  content: '';
  display: block;
  width: 50px;
  height: 3px;
  background: var(--orange);
  margin-top: 10px;
}

.text-center .section-title::after {
  margin-left: auto;
  margin-right: auto;
}

.btn-primary {
  display: inline-block;
  background: var(--orange);
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border: 2px solid var(--orange);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-primary:hover {
  background: #c55c00;
  border-color: #c55c00;
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-primary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

.btn-secondary {
  display: inline-block;
  background: transparent;
  color: var(--white);
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  padding: 14px 32px;
  border: 2px solid var(--white);
  border-radius: 6px;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--white);
  color: var(--text-dark);
  transform: translateY(-2px);
  box-shadow: 0 4px 12px rgba(0,0,0,0.2);
}

.btn-secondary:active {
  transform: translateY(0);
  box-shadow: 0 1px 4px rgba(0,0,0,0.15);
}

/* =============================================================================
   NAVIGATION
   ============================================================================= */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  background: var(--green);
  box-shadow: 0 2px 8px rgba(0,0,0,0.25);
}

.nav__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 0 24px;
  max-width: 1200px;
  margin: 0 auto;
  min-height: 64px;
}

.nav__logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
  text-decoration: none;
}

.nav__logo img {
  max-height: 50px;
  width: auto;
  object-fit: contain;
}

.nav__logo-name {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.2rem;
  color: var(--white);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  line-height: 1.2;
}

.nav__links {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 4px 20px;
  list-style: none;
  margin: 0;
  padding: 0;
  justify-content: flex-end;
}

.nav__links a {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--white);
  text-decoration: none;
  padding: 8px 2px;
  border-bottom: 2px solid transparent;
  transition: color 0.15s, border-color 0.15s;
  white-space: nowrap;
}

.nav__links a:hover {
  color: var(--orange);
}

.nav__links a.active {
  color: var(--orange);
  border-bottom-color: var(--orange);
}

/* =============================================================================
   HERO
   ============================================================================= */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  background-color: #000000;
  background-size: cover;
  background-position: center;
  background-repeat: no-repeat;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero__content {
  position: relative;
  z-index: 1;
  padding: 100px 24px 60px;
  max-width: 800px;
}

.hero__headline {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(3rem, 9vw, 6.5rem);
  color: var(--white);
  letter-spacing: 0.03em;
  line-height: 1;
  margin-bottom: 1rem;
  text-shadow: 0 2px 12px rgba(0,0,0,0.4);
}

.hero__sub {
  font-family: 'Lato', sans-serif;
  font-size: clamp(1rem, 2.5vw, 1.3rem);
  color: rgba(255,255,255,0.9);
  margin-bottom: 2.5rem;
  max-width: 560px;
  margin-left: auto;
  margin-right: auto;
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* =============================================================================
   SECTIONS
   ============================================================================= */
.section {
  padding: 80px 0;
}

.section--white {
  background: var(--white);
}

.section--off-white {
  background: var(--off-white);
}

.section__header {
  margin-bottom: 48px;
}

/* =============================================================================
   SERVICE CARDS
   ============================================================================= */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.service-card {
  background: var(--white);
  border-radius: 4px;
  border-top: 4px solid var(--green);
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 32px 24px;
  transition: box-shadow 0.2s, transform 0.2s;
}

.service-card:hover {
  box-shadow: 0 6px 24px rgba(0,0,0,0.13);
  transform: translateY(-2px);
}

.service-card__icon {
  font-size: 2.4rem;
  margin-bottom: 16px;
  line-height: 1;
}

.service-card__title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 1.15rem;
  color: var(--green);
  text-transform: uppercase;
  letter-spacing: 0.04em;
  margin-bottom: 10px;
}

.service-card__desc {
  font-family: 'Lato', sans-serif;
  color: var(--text-mid);
  font-size: 0.95rem;
  margin: 0;
  line-height: 1.65;
}

/* =============================================================================
   REVIEWS
   ============================================================================= */
.reviews-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.review-card {
  background: var(--white);
  border-radius: 4px;
  box-shadow: 0 2px 12px rgba(0,0,0,0.08);
  padding: 28px 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.review-card__stars {
  color: var(--orange);
  font-size: 1.1rem;
  letter-spacing: 2px;
}

.review-card__text {
  font-family: 'Lato', sans-serif;
  color: var(--text-mid);
  font-size: 0.97rem;
  line-height: 1.7;
  margin: 0;
  flex: 1;
}

.review-card__footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.review-card__author {
  font-family: 'Lato', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--text-dark);
}

.review-card__source {
  font-family: 'Oswald', sans-serif;
  font-weight: 400;
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  background: var(--green);
  color: var(--white);
  padding: 3px 10px;
  border-radius: 20px;
  white-space: nowrap;
}

/* =============================================================================
   HOURS TABLE
   ============================================================================= */
.hours-table {
  width: 100%;
  max-width: 520px;
  border-collapse: collapse;
  font-family: 'Lato', sans-serif;
}

.hours-table tr {
  border-bottom: 1px solid var(--border);
}

.hours-table tr:nth-child(even) {
  background: var(--off-white);
}

.hours-table tr.today {
  color: var(--orange);
  font-weight: 700;
}

.hours-table td {
  padding: 12px 16px;
  font-size: 0.97rem;
}

.hours-table td:first-child {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: inherit;
  width: 140px;
}

.hours-table td:last-child {
  color: var(--text-mid);
}

.hours-table tr.today td:last-child {
  color: var(--orange);
}

/* =============================================================================
   CONTACT FORM
   ============================================================================= */
.contact-form {
  max-width: 620px;
}

.form-group {
  margin-bottom: 20px;
}

.form-group label {
  display: block;
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-mid);
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea,
.form-group select {
  width: 100%;
  padding: 12px 14px;
  font-family: 'Lato', sans-serif;
  font-size: 1rem;
  color: var(--text-dark);
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 3px;
  outline: none;
  transition: border-color 0.15s;
  appearance: none;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
  border-color: var(--green);
}

.form-group textarea {
  resize: vertical;
  min-height: 130px;
}

.form-message {
  margin-top: 12px;
  font-size: 0.95rem;
  padding: 10px 14px;
  border-radius: 3px;
  display: none;
}

.form-message.success {
  display: block;
  background: #eaf2d7;
  color: var(--green-dark);
  border: 1px solid #c4d98a;
}

.form-message.error {
  display: block;
  background: #fdecea;
  color: #b00020;
  border: 1px solid #f5c2be;
}

/* =============================================================================
   ABOUT SECTION
   ============================================================================= */
.about-layout {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-text p {
  color: var(--text-mid);
  line-height: 1.75;
  font-size: 1.05rem;
}

.about-photo {
  border-radius: 4px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.12);
}

.about-photo img {
  width: 100%;
  height: 360px;
  object-fit: cover;
}

/* =============================================================================
   FOOTER
   ============================================================================= */
.footer {
  background: var(--green-dark);
  color: var(--white);
  padding: 60px 0 32px;
}

.footer__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  margin-bottom: 48px;
}

.footer__col-title {
  font-family: 'Oswald', sans-serif;
  font-weight: 600;
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: rgba(255,255,255,0.55);
  margin-bottom: 16px;
}

.footer__phone {
  font-family: 'Bebas Neue', cursive;
  font-size: 2.2rem;
  color: var(--orange-light);
  letter-spacing: 0.04em;
  line-height: 1;
  margin-bottom: 8px;
}

.footer__address {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.6;
}

.footer__hours {
  font-family: 'Lato', sans-serif;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.75);
  line-height: 1.9;
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  font-family: 'Lato', sans-serif;
  font-size: 0.95rem;
  color: rgba(255,255,255,0.75);
  text-decoration: none;
  transition: color 0.15s;
}

.footer__links a:hover {
  color: var(--orange-light);
}

.footer__bottom {
  border-top: 1px solid rgba(255,255,255,0.12);
  padding-top: 24px;
  text-align: center;
  font-family: 'Lato', sans-serif;
  font-size: 0.82rem;
  color: rgba(255,255,255,0.4);
}

/* =============================================================================
   PAGE HERO (inner pages — shorter than home hero)
   ============================================================================= */
.page-hero {
  padding: 140px 0 60px;
  background: var(--green);
  text-align: center;
}

.page-hero__title {
  font-family: 'Bebas Neue', cursive;
  font-size: clamp(2.5rem, 6vw, 4rem);
  color: var(--white);
  letter-spacing: 0.04em;
  margin: 0;
}

.page-hero__sub {
  font-family: 'Lato', sans-serif;
  color: rgba(255,255,255,0.8);
  margin-top: 12px;
  font-size: 1.05rem;
}

/* =============================================================================
   ADMIN NOTICE BANNER (for mustChangePassword flow etc.)
   ============================================================================= */
.notice-banner {
  background: var(--orange);
  color: var(--white);
  text-align: center;
  padding: 12px 24px;
  font-family: 'Oswald', sans-serif;
  font-size: 0.95rem;
  letter-spacing: 0.03em;
}

/* =============================================================================
   RESPONSIVE — 768px
   ============================================================================= */
@media (max-width: 768px) {
  .section {
    padding: 50px 0;
  }

  .nav__inner {
    min-height: 56px;
    padding: 0 16px;
    gap: 12px;
  }

  .nav__logo-name {
    font-size: 1rem;
  }

  .nav__logo img {
    max-height: 34px;
    width: auto;
    object-fit: contain;
  }

  .nav__links {
    gap: 3px 14px;
  }

  .nav__links a {
    font-size: 0.82rem;
    letter-spacing: 0.05em;
    padding: 6px 2px;
  }

  .hero {
    min-height: 70vh;
  }

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

  .about-layout {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .about-photo img {
    height: 280px;
  }

  .reviews-grid {
    grid-template-columns: 1fr;
  }

  .footer__grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }

  .footer__grid > *:last-child {
    grid-column: 1 / -1;
  }
}

/* =============================================================================
   RESPONSIVE — 480px
   ============================================================================= */
@media (max-width: 480px) {
  .nav__inner {
    flex-wrap: wrap;
    padding: 10px 16px;
    min-height: unset;
    justify-content: center;
    gap: 8px;
  }

  .nav__logo {
    justify-content: center;
  }

  .nav__links {
    justify-content: center;
    gap: 2px 12px;
  }

  .nav__links a {
    font-size: 0.78rem;
  }

  .hero__content {
    padding: 120px 16px 48px;
  }

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

  .btn-primary,
  .btn-secondary {
    width: 100%;
    max-width: 300px;
    text-align: center;
  }

  .services-grid {
    grid-template-columns: 1fr;
  }

  .section-title {
    font-size: 1.6rem;
  }

  .footer__grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .footer__phone {
    font-size: 1.8rem;
  }

  .hours-table td:first-child {
    width: 110px;
  }
}
