*, *::before, *::after {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

:root {
  --green-accent: #9ece6a;
  --green-light: #a8d86e;
  --text-dark: #1a1a1a;
  --text-body: #555;
  --text-light: #777;
  --white: #fff;
  --border-color: #1a1a1a;
  --font-heading: 'Playfair Display', Georgia, serif;
  --font-body: 'Cormorant Garamond', Georgia, serif;
  --max-width: 1400px;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  color: var(--text-dark);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}

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

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

ul {
  list-style: none;
}

/* ===== HEADER ===== */
.site-header {
  padding: 30px 40px 0;
  text-align: center;
  border-top: 4px solid var(--green-accent);
}

.header-logo {
  display: inline-block;
  margin-bottom: 20px;
}

.header-logo img {
  height: 120px;
  width: auto;
  margin: 0 auto;
}

.header-cta {
  position: absolute;
  right: 40px;
  top: 50px;
}

.header-inner {
  position: relative;
  max-width: var(--max-width);
  margin: 0 auto;
}

.btn-outline {
  display: inline-block;
  padding: 10px 24px;
  border: 1px solid var(--green-accent);
  border-radius: 30px;
  color: var(--green-accent);
  font-family: var(--font-body);
  font-size: 0.95rem;
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline:hover {
  background: var(--green-accent);
  color: var(--white);
}

.main-nav {
  padding: 20px 0 25px;
}

.main-nav ul {
  display: flex;
  justify-content: center;
  gap: 50px;
}

.main-nav a {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--text-dark);
  transition: color 0.3s;
}

.main-nav a:hover,
.main-nav a.active {
  color: var(--green-accent);
}

.mobile-menu-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 10px;
}

.mobile-menu-toggle span {
  display: block;
  width: 28px;
  height: 2px;
  background: var(--text-dark);
  margin: 6px 0;
  transition: transform 0.3s, opacity 0.3s;
}

/* ===== SECTION DIVIDER ===== */
.section-divider {
  border: none;
  border-top: 2px solid var(--border-color);
  margin: 0;
}

/* ===== HERO SECTION ===== */
.hero-section {
  padding: 60px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

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

.hero-content h1 {
  font-family: var(--font-heading);
  font-size: 3rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 3px;
  line-height: 1.2;
  margin-bottom: 40px;
}

.hero-content p {
  font-family: var(--font-body);
  font-size: 1.1rem;
  font-style: italic;
  color: var(--text-light);
  line-height: 1.8;
  margin-bottom: 15px;
}

/* ===== SERVICES CTA SECTION ===== */
.services-cta-section {
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.services-cta-content {
  text-align: center;
}

.services-cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.services-cta-image img {
  width: 100%;
  height: 300px;
  object-fit: cover;
}

/* ===== ABOUT CTA SECTION ===== */
.about-cta-section {
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.about-cta-content {
  text-align: center;
}

.about-cta-content h2 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.about-cta-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== FOOTER ===== */
.site-footer {
  background: var(--green-accent);
  padding: 60px 40px;
  text-align: center;
}

.footer-logo {
  margin-bottom: 30px;
}

.footer-logo img {
  height: 100px;
  width: auto;
  margin: 0 auto;
}

.footer-cta {
  margin-bottom: 20px;
}

.btn-outline-dark {
  display: inline-block;
  padding: 12px 30px;
  border: 1px solid var(--text-dark);
  border-radius: 30px;
  color: var(--text-dark);
  font-family: var(--font-body);
  font-size: 1rem;
  letter-spacing: 0.5px;
  transition: background 0.3s, color 0.3s;
}

.btn-outline-dark:hover {
  background: var(--text-dark);
  color: var(--white);
}

/* ===== SERVICES PAGE ===== */
.services-grid-section {
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 40px;
  margin-bottom: 60px;
}

.services-grid.second-row {
  grid-template-columns: repeat(3, 1fr);
  max-width: 900px;
  margin: 0 auto;
}

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

.service-card-image {
  width: 240px;
  height: 240px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 20px;
}

.service-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.service-card h3 {
  font-family: var(--font-heading);
  font-size: 1.1rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}

.services-cta-bottom {
  text-align: center;
  margin-top: 60px;
}

.services-cta-bottom h2 {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

/* ===== ABOUT PAGE ===== */
.about-section {
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.about-content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 30px;
}

.about-content p {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-dark);
  line-height: 1.8;
  margin-bottom: 15px;
}

.about-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== CONTACT PAGE ===== */
.contact-section {
  padding: 80px 40px;
  max-width: var(--max-width);
  margin: 0 auto;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: start;
}

.contact-content h1 {
  font-family: var(--font-heading);
  font-size: 2.5rem;
  font-weight: 400;
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 40px;
}

.contact-info {
  margin-bottom: 30px;
}

.contact-info a {
  font-family: var(--font-body);
  font-size: 1.05rem;
  color: var(--text-dark);
  text-decoration: underline;
  display: block;
  margin-bottom: 20px;
}

.contact-info a:hover {
  color: var(--green-accent);
}

.contact-info .phone {
  font-family: var(--font-body);
  font-size: 1.05rem;
  font-weight: 600;
  margin-bottom: 30px;
}

.contact-map {
  margin-bottom: 30px;
}

.contact-map iframe {
  width: 100%;
  max-width: 400px;
  height: 300px;
  border: 0;
}

.contact-hours h3 {
  font-family: var(--font-body);
  font-size: 1.05rem;
  text-decoration: underline;
  margin-bottom: 15px;
}

.contact-hours p {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.8;
}

.contact-image img {
  width: 100%;
  height: auto;
  object-fit: cover;
}

/* ===== MOBILE RESPONSIVE ===== */
@media (max-width: 1024px) {
  .hero-content h1 {
    font-size: 2.4rem;
  }

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

  .services-grid.second-row {
    grid-template-columns: repeat(2, 1fr);
    max-width: 100%;
  }
}

@media (max-width: 768px) {
  .site-header {
    padding: 20px 20px 0;
  }

  .header-cta {
    display: none;
  }

  .header-logo img {
    height: 80px;
  }

  .main-nav {
    display: none;
    padding: 0 0 20px;
  }

  .main-nav.open {
    display: block;
  }

  .main-nav ul {
    flex-direction: column;
    gap: 15px;
  }

  .mobile-menu-toggle {
    display: block;
    position: absolute;
    right: 0;
    top: 15px;
  }

  .hero-section {
    padding: 40px 20px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .hero-content h1 {
    font-size: 2rem;
  }

  .services-cta-section,
  .about-cta-section {
    padding: 50px 20px;
  }

  .services-cta-grid,
  .about-cta-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .services-cta-content h2,
  .about-cta-content h2 {
    font-size: 2rem;
  }

  .services-grid-section {
    padding: 50px 20px;
  }

  .services-grid,
  .services-grid.second-row {
    grid-template-columns: 1fr 1fr;
    gap: 30px;
  }

  .service-card-image {
    width: 160px;
    height: 160px;
  }

  .about-section,
  .contact-section {
    padding: 50px 20px;
  }

  .about-grid,
  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-image {
    order: -1;
  }

  .site-footer {
    padding: 40px 20px;
  }
}

@media (max-width: 480px) {
  .services-grid,
  .services-grid.second-row {
    grid-template-columns: 1fr;
  }

  .service-card-image {
    width: 200px;
    height: 200px;
  }

  .hero-content h1 {
    font-size: 1.7rem;
  }
}
