/* ===== RESET & BASE ===== */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Poppins', sans-serif;
  color: #2d2d2d;
  background: #fff;
  font-size: 16px;
  line-height: 1.7;
}

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

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

ul {
  list-style: none;
}

/* ===== NAVIGATION ===== */
nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: #fff;
  border-bottom: 1px solid #e8e8e8;
  padding: 0 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 70px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 0;
}

.nav-logo-icon {
  height: 54px;
  width: auto;
  display: block;
  flex-shrink: 0;
  margin-right: -22px;
}

.nav-logo-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0;
}

.nav-logo-words {
  width: 130px;
  height: auto;
  display: block;
}

.nav-logo-sub {
  width: 130px;
  height: auto;
  display: block;
  margin-top: 3px;
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  font-size: 0.82rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #555;
  transition: color 0.2s;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: #3d7a6e;
  transition: width 0.2s;
}

.nav-links a:hover,
.nav-links a.active {
  color: #3d7a6e;
}

.nav-links a:hover::after,
.nav-links a.active::after {
  width: 100%;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: #2d2d2d;
  transition: all 0.3s;
}

/* ===== HERO ===== */
.hero {
  position: relative;
  background: linear-gradient(rgba(0,0,0,0.48), rgba(0,0,0,0.48)),
              url('zac-gudakov-UPbYh3A5cdg-unsplash.jpg') center/cover no-repeat;
  padding: 120px 2rem;
  text-align: center;
  overflow: hidden;
}

.hero-overlay {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 1;
}

.hero-label {
  color: #a8d5cc !important;
}

.hero h1 {
  font-size: clamp(2rem, 5vw, 3.5rem);
  font-weight: 700;
  color: #fff;
  line-height: 1.2;
  margin-bottom: 1rem;
}

.hero h1 .cycle-word {
  color: #6fcfc3;
  transition: opacity 0.4s ease;
  display: inline-block;
}

.hero h1 .cycle-word.fade-out {
  opacity: 0;
}

.hero p {
  font-size: 1.1rem;
  color: #c8e6e3;
  max-width: 560px;
  margin: 0 auto 2rem;
}

.btn {
  display: inline-block;
  padding: 0.85rem 2rem;
  border-radius: 4px;
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.2s;
  cursor: pointer;
  border: none;
}

.btn-primary {
  background: #3d7a6e;
  color: #fff;
}

.btn-primary:hover {
  background: #2f6358;
}

.btn-outline {
  background: transparent;
  color: #3d7a6e;
  border: 2px solid #3d7a6e;
}

.btn-outline:hover {
  background: #3d7a6e;
  color: #fff;
}

/* ===== SECTIONS ===== */
section {
  padding: 80px 2rem;
}

.container {
  max-width: 1000px;
  margin: 0 auto;
}

.section-label {
  font-size: 0.75rem;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: #3d7a6e;
  margin-bottom: 0.75rem;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 1.5rem;
}

.section-divider {
  width: 40px;
  height: 3px;
  background: #3d7a6e;
  margin-bottom: 2rem;
}

/* ===== WELCOME ===== */
.welcome {
  background: #fff;
}

.welcome-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}

.welcome-text p {
  color: #555;
  margin-bottom: 1.2rem;
}

.welcome-text p:last-child {
  margin-bottom: 0;
}

.welcome-aside {
  background: #f8faf9;
  border-left: 3px solid #3d7a6e;
  padding: 2rem;
  border-radius: 0 6px 6px 0;
}

.welcome-aside h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 1rem;
  color: #2d2d2d;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.welcome-aside ul {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.welcome-aside ul li {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  color: #555;
  font-size: 0.95rem;
}

.welcome-aside ul li::before {
  content: '';
  width: 8px;
  height: 8px;
  background: #3d7a6e;
  border-radius: 50%;
  flex-shrink: 0;
}

/* ===== REVIEWS ===== */
.reviews-section {
  background: #2d2d2d;
  padding: 80px 2rem;
}

.reviews-section .section-label {
  color: #6fcfc3;
}

.reviews-section .section-title {
  color: #fff;
}

.reviews-divider {
  width: 40px;
  height: 3px;
  background: #3d7a6e;
  margin: 0 auto 3rem;
}

.reviews-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
  align-items: start;
}

.review-card {
  background: #3a3a3a;
  border-radius: 10px;
  padding: 2rem;
  position: relative;
  transition: transform 0.2s;
}

.review-card:hover {
  transform: translateY(-4px);
}

.review-card::before {
  content: '\201C';
  position: absolute;
  top: -10px;
  left: 20px;
  font-size: 5rem;
  color: #3d7a6e;
  line-height: 1;
  font-family: Georgia, serif;
}

.review-card--featured {
  background: #3d7a6e;
  transform: scale(1.04);
}

.review-card--featured:hover {
  transform: scale(1.04) translateY(-4px);
}

.review-card--featured::before {
  color: rgba(255,255,255,0.3);
}

.review-stars {
  color: #f6c90e;
  font-size: 1rem;
  letter-spacing: 2px;
  margin-bottom: 1rem;
  padding-top: 1.5rem;
}

.review-title {
  font-size: 0.95rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 0.75rem;
  line-height: 1.4;
}

.review-body {
  font-size: 0.88rem;
  color: #bbb;
  line-height: 1.7;
  margin-bottom: 1.25rem;
}

.review-card--featured .review-body {
  color: rgba(255,255,255,0.85);
}

.review-author {
  font-size: 0.82rem;
  font-weight: 700;
  color: #6fcfc3;
  letter-spacing: 0.06em;
}

.review-card--featured .review-author {
  color: #fff;
}

@media (max-width: 768px) {
  .reviews-grid {
    grid-template-columns: 1fr;
  }
  .review-card--featured {
    transform: scale(1);
  }
  .review-card--featured:hover {
    transform: translateY(-4px);
  }
}

/* ===== CONTACT FOOTER SECTION ===== */
.contact-section {
  background: #2d2d2d;
  padding: 80px 2rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 220px 1fr;
  gap: 3rem;
  max-width: 1000px;
  margin: 0 auto;
  align-items: start;
}

.contact-left {
  display: flex;
  flex-direction: column;
}

.contact-form-col {
  min-width: 0;
}

.contact-col h3 {
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #3d7a6e;
  margin-bottom: 1.2rem;
}

.contact-col p,
.contact-col a {
  color: #ccc;
  font-size: 0.95rem;
  line-height: 1.8;
}

.contact-col a:hover {
  color: #fff;
}

.hours-list {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

.hours-row {
  display: flex;
  justify-content: space-between;
  color: #ccc;
  font-size: 0.9rem;
}

.hours-row .day {
  color: #aaa;
}

/* ===== FORM ===== */
.form-group {
  margin-bottom: 1rem;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: #3a3a3a;
  border: 1px solid #4a4a4a;
  border-radius: 4px;
  color: #fff;
  font-family: 'Poppins', sans-serif;
  font-size: 0.9rem;
  transition: border-color 0.2s;
  outline: none;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
  color: #888;
}

.form-group input:focus,
.form-group textarea:focus {
  border-color: #3d7a6e;
}

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

.form-submit {
  width: 100%;
  padding: 0.85rem;
  background: #3d7a6e;
  color: #fff;
  border: none;
  border-radius: 4px;
  font-family: 'Poppins', sans-serif;
  font-size: 0.82rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.2s;
}

.form-submit:hover {
  background: #2f6358;
}

/* ===== PAGE HERO (inner pages) ===== */
.page-hero {
  background: linear-gradient(135deg, #1a3a35 0%, #2d5a52 100%);
  padding: 60px 2rem;
  text-align: center;
}

.page-hero .section-label {
  color: #a8d5cc;
}

.page-hero h1 {
  font-size: clamp(1.8rem, 4vw, 2.8rem);
  font-weight: 700;
  color: #fff;
}

.page-hero p {
  color: #c8e6e3;
  margin-top: 0.75rem;
  font-size: 1rem;
}

/* ===== PAGE CONTENT ===== */
.page-content {
  background: #fff;
  padding: 80px 2rem;
}

.page-content .container {
  max-width: 720px;
}

.page-content p {
  color: #555;
  margin-bottom: 1.4rem;
}

.page-content h2 {
  font-size: 1.4rem;
  font-weight: 700;
  color: #2d2d2d;
  margin: 2.5rem 0 1rem;
}

/* ===== FOOTER ===== */
footer {
  background: #222;
  padding: 1.5rem 2rem;
  text-align: center;
}

footer p {
  color: #666;
  font-size: 0.8rem;
}

.footer-social {
  margin-top: 0.5rem;
}

.footer-social a {
  color: #888;
  font-size: 0.8rem;
  transition: color 0.2s;
}

.footer-social a:hover {
  color: #fff;
}

.footer-social span {
  color: #555;
  margin: 0 0.4rem;
  font-size: 0.8rem;
}

/* ===== FAQ ===== */
.faq-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.faq-item {
  border: 1px solid #e8e8e8;
  border-radius: 6px;
  overflow: hidden;
}

.faq-question {
  width: 100%;
  text-align: left;
  padding: 1.2rem 1.5rem;
  background: none;
  border: none;
  font-family: 'Poppins', sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  color: #2d2d2d;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  transition: background 0.2s;
}

.faq-question:hover {
  background: #f8faf9;
}

.faq-question .icon {
  font-size: 1.2rem;
  color: #3d7a6e;
  transition: transform 0.2s;
  flex-shrink: 0;
}

.faq-item.open .faq-question .icon {
  transform: rotate(45deg);
}

.faq-answer {
  display: none;
  padding: 0 1.5rem 1.2rem;
  color: #555;
  font-size: 0.95rem;
  line-height: 1.7;
}

.faq-item.open .faq-answer {
  display: block;
}

/* ===== HIRING ===== */
.hiring-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2rem;
  margin-top: 2rem;
}

.hiring-card {
  background: #f8faf9;
  border-radius: 8px;
  padding: 2rem;
  border-top: 3px solid #3d7a6e;
}

.hiring-card h3 {
  font-size: 1rem;
  font-weight: 700;
  margin-bottom: 0.75rem;
  color: #2d2d2d;
}

.hiring-card p {
  color: #666;
  font-size: 0.9rem;
  margin-bottom: 0;
}

/* ===== ABOUT THE OWNER ===== */
.owner-section {
  background: #fff;
  padding: 80px 2rem;
}

.owner-grid {
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 4rem;
  align-items: start;
}

.owner-photo {
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 4px 20px rgba(0,0,0,0.1);
  aspect-ratio: 3 / 4;
}

.owner-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: top center;
}

.owner-text p {
  color: #555;
  margin-bottom: 1.2rem;
}

@media (max-width: 768px) {
  .owner-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .owner-photo {
    max-width: 280px;
    aspect-ratio: 1 / 1;
  }
}

/* ===== MEET THE TEAM ===== */
.team-section {
  background: #f8faf9;
  padding: 80px 2rem;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 2rem;
  margin-top: 2rem;
}

.team-card {
  background: #fff;
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0,0,0,0.06);
  transition: transform 0.2s, box-shadow 0.2s;
}

.team-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}

.team-avatar {
  width: 100%;
  aspect-ratio: 1 / 1;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.05em;
  font-family: 'Poppins', sans-serif;
}

.team-info {
  padding: 1.25rem;
}

.team-info h3 {
  font-size: 1rem;
  font-weight: 700;
  color: #2d2d2d;
  margin-bottom: 0.25rem;
}

.team-role {
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: #3d7a6e;
  margin-bottom: 0.6rem;
}

.team-bio {
  font-size: 0.88rem;
  color: #666;
  line-height: 1.6;
}

/* ===== SUPPORT BAR ===== */
.support-bar {
  background: #f4f4f4;
  border-top: 1px solid #e0e0e0;
  padding: 2rem;
}

.support-inner {
  max-width: 900px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
}

.support-img {
  max-width: 100%;
  height: auto;
  object-fit: contain;
}


/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
  nav {
    padding: 0 1.25rem;
  }

  .nav-links {
    display: none;
    position: absolute;
    top: 70px;
    left: 0;
    right: 0;
    background: #fff;
    flex-direction: column;
    padding: 1.5rem;
    gap: 1.2rem;
    border-bottom: 1px solid #e8e8e8;
    box-shadow: 0 4px 12px rgba(0,0,0,0.08);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-toggle {
    display: flex;
  }

  .welcome-grid {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 2.5rem;
  }

  .contact-form-col iframe {
    height: 600px;
  }

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

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

  section {
    padding: 60px 1.25rem;
  }

  .hero {
    padding: 70px 1.25rem;
  }

  .contact-section {
    padding: 60px 1.25rem;
  }
}
