/* Local Fonts */
@font-face {
  font-family: "DM Sans";
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/DMSans-VariableFont_opsz,wght.woff2") format("woff2");
}

@font-face {
  font-family: "DM Sans";
  font-style: italic;
  font-optical-sizing: auto;
  font-weight: 100 900;
  font-display: swap;
  src: url("fonts/DMSans-Italic-VariableFont_opsz,wght.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: normal;
  font-optical-sizing: auto;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/PlayfairDisplay-VariableFont_wght.woff2") format("woff2");
}

@font-face {
  font-family: "Playfair Display";
  font-style: italic;
  font-optical-sizing: auto;
  font-weight: 400 900;
  font-display: swap;
  src: url("fonts/PlayfairDisplay-Italic-VariableFont_wght.woff2")
    format("woff2");
}

/* ============================================
   CSS CUSTOM PROPERTIES
   ============================================ */
:root {
  --green: hsl(123 46.2% 33.5%);
  --green-light: hsl(125, 100%, 75%);
  --green-dark: hsl(124, 35%, 16%);
  --white: #ffffff;
  --black: #1a1a1a;
  --gray: #777;

  --sans: "DM Sans", sans-serif;
  --serif: "Playfair Display", Georgia, serif;

  --body-font-size: 2rem;
  --nav-link-size: 1.1rem;
  --nav-cta-size: var(--nav-link-size);

  --max-width: 900px;
  --transition: 0.3s ease;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--sans);
  font-weight: 300;
  font-size: var(--body-font-size);
  line-height: 1.6;
  color: var(--black);
  background-color: var(--white);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

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

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

ul,
ol {
  list-style: none;
}

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1,
h2,
h3,
h4 {
  font-family: var(--sans);
  font-weight: 300;
  line-height: 1.4;
  letter-spacing: 0;
  text-transform: none;
}

p {
  margin-bottom: 1em;
  line-height: 1.7;
}

/* ============================================
   HEADER / NAVIGATION
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--white);
  border-bottom: 3px solid var(--green);
  box-shadow: 0 4px 14px rgba(0, 0, 0, 0.08);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  max-width: 1200px;
  margin: 0 auto;
  padding: 10px 12px;
  position: relative;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: var(--green);
  gap: 0;
}

.logo img {
  height: 120px;
  width: auto;
}

/* Nav */
.main-nav {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

@media (min-width: 769px) {
  .nav-links {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
  }
}

.nav-links a {
  font-family: var(--serif);
  font-size: var(--nav-link-size, 1.15rem);
  font-weight: 400;
  color: var(--black);
  text-decoration: none;
  transition: color var(--transition);
}

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

.nav-links a.active::after {
  content: "";
  position: absolute;
  bottom: -4px;
  left: 0;
  right: 0;
  height: 1px;
  background: var(--black);
}

.nav-cta {
  display: inline-block;
  font-size: var(--nav-cta-size, 1.05rem);
  font-weight: 400;
  color: var(--white);
  background-color: var(--green);
  padding: 10px 22px;
  border-radius: 4px;
  text-decoration: none;
  transition: background-color var(--transition);
}

.nav-cta:hover {
  background-color: var(--green-dark);
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  border: none;
  background: none;
  padding: 4px;
  z-index: 110;
}

.hamburger span {
  display: block;
  width: 26px;
  height: 2px;
  background: var(--black);
  transition: var(--transition);
}

/* ============================================
   HERO SECTION (Landing Page)
   ============================================ */
.wave {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  overflow: hidden;
  line-height: 0;
  z-index: 3;
  transform: rotate(180deg);
}

.wave svg {
  position: relative;
  display: block;
  width: calc(150% + 1.3px);
  height: 81px;
}

.wave .shape-fill {
  fill: var(--white);
}

.hero {
  position: relative;
  min-height: 400px;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  overflow: hidden;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-color: var(--green);
  opacity: 0.5;
  z-index: 1;
  pointer-events: none;
}

.hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: grayscale(20%) brightness(0.65);
}

.hero-content {
  position: relative;
  z-index: 2;
  color: var(--white);
  padding: 70px 24px;
}

.hero-content h1 {
  font-size: 2.5rem;
  font-weight: 100;
  margin-bottom: 0;
  line-height: 1.35;
  letter-spacing: 0.02em;
}

.hero-content h1 em {
  font-style: italic;
  text-decoration: none;
  font-weight: 150;
  position: relative;
  display: inline-block;
}

.hero-content h1 em::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-sweep 0.6s ease forwards;
}

.hero-cta {
  display: inline-block;
  margin-top: 24px;
  color: var(--white);
  font-family: var(--heading-font);
  font-size: var(--body-font-size);
  text-decoration: none;
  position: relative;
  transition: opacity var(--transition);
}

.hero-cta::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 4px;
  width: 100%;
  height: 1px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  animation: underline-sweep 0.6s ease forwards 0.2s;
}

@keyframes underline-sweep {
  to {
    transform: scaleX(1);
  }
}

.hero-cta:hover {
  opacity: 0.8;
}

/* ============================================
   TAGLINE SECTION
   ============================================ */
.tagline {
  text-align: center;
  padding: 60px 24px;
  background: var(--white);
}

.tagline h2 {
  color: var(--green);
  font-weight: 200;
  font-size: 1.8rem;
  margin-bottom: 4px;
}

/* ============================================
   FULL-WIDTH IMAGE BANNER
   ============================================ */
.image-banner {
  width: 100%;
  height: 300px;
  overflow: hidden;
}

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

/* ============================================
   SERVICES GRID (Landing Page)
   ============================================ */
.services-wrap {
  background-color: var(--green);
  width: 100%;
}

.services-section {
  padding: 50px 24px 60px;
  max-width: var(--max-width);
  margin: 0 auto;
  text-align: center;
  color: var(--white);
}

.services-section h2 {
  color: var(--white);
  font-weight: 400;
  margin-bottom: 32px;
  font-size: 2rem;
  font-style: italic;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px 36px;
  margin-bottom: 36px;
}

.service-card {
  text-align: center;
  padding: 0 8px;
}

.service-card h3 {
  font-weight: 400;
  font-family: var(--serif);
  margin-bottom: 10px;
  font-size: 1.15rem;
  color: var(--white);
}

.service-card p {
  font-size: 1rem;
  line-height: 1.55;
  color: var(--white);
  margin-bottom: 0;
}

.btn-primary {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 1rem;
  font-weight: 400;
  color: var(--black);
  background-color: var(--green-light);
  padding: 12px 28px;
  text-decoration: none;
  transition: background-color var(--transition);
  border: none;
  cursor: pointer;
  border-radius: 4px;
}

.btn-primary:hover {
  background-color: var(--white);
}

/* ============================================
   PAGE BANNER (About Us, Our Services)
   ============================================ */
.page-banner {
  background-color: var(--green);
  color: var(--white);
  text-align: center;
  padding: 36px 24px;
}

.page-banner h1 {
  font-weight: 100;
  letter-spacing: 0.02em;
}

/* ============================================
   ABOUT PAGE
   ============================================ */
.about-content {
  max-width: 720px;
  margin: 0 auto;
  padding: 50px 24px 80px;
  text-align: center;
}

.about-photo {
  width: 280px;
  height: auto;
  margin: 0 auto 28px;
  display: block;
}

.about-content h2 {
  font-family: var(--serif);
  font-weight: 300;
  color: var(--black);
  margin-bottom: 4px;
  font-size: 1.8rem;
}

.about-content h3 {
  font-weight: 300;
  color: var(--gray);
  margin-bottom: 28px;
  font-size: 1.15rem;
  font-family: var(--heading-font);
}

.about-bio {
  text-align: left;
}

.about-bio p {
  margin-bottom: 1.1em;
  font-size: 1rem;
  line-height: 1.7;
}

/* ============================================
   SERVICES PAGE
   ============================================ */
.services-nav {
  text-align: center;
  padding: 28px 24px 10px;
}

.services-nav a {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.5rem;
  font-weight: 200;
  color: var(--green);
  margin-bottom: 6px;
  text-decoration: underline;
  text-underline-offset: 3px;
  transition: color var(--transition);
}

.services-nav a:hover {
  color: var(--green-dark);
}

.service-detail {
  max-width: 1080px;
  margin: 0 auto;
  padding: 48px 24px;
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 36px;
  align-items: start;
  scroll-margin-top: 160px;
}

.service-detail + .service-detail {
  padding-top: 48px;
}

.service-detail-left h2 {
  font-weight: 300;
  font-size: 1.6rem;
  margin-bottom: 18px;
  color: var(--gray);
}

.service-detail-left img {
  width: 100%;
}

.service-detail-right p {
  margin-bottom: 14px;
  font-size: 1rem;
  line-height: 1.65;
}

.service-detail-right p em {
  font-style: italic;
}

.service-detail-right ul {
  list-style: disc;
  padding-left: 20px;
}

.service-detail-right li {
  margin-bottom: 10px;
  font-size: 1rem;
  line-height: 1.65;
}

/* ============================================
   CONTACT PAGE
   ============================================ */
.contact-content {
  max-width: 900px;
  margin: 0 auto;
  padding: 50px 24px 70px;
  display: grid;
  grid-template-columns: 1fr 1.3fr;
  gap: 50px;
  align-items: start;
}

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

.contact-info h2 {
  font-weight: 300;
  font-size: 3.2rem;
  line-height: 1.15;
  margin-bottom: 20px;
}

.contact-info .contact-link {
  display: block;
  font-family: var(--heading-font);
  font-size: 1.15rem;
  color: var(--green);
  text-decoration: underline;
  text-underline-offset: 3px;
  margin-bottom: 6px;
}

.contact-photo {
  width: 260px;
  margin: 20px auto;
  display: block;
}

.contact-social {
  margin-top: 12px;
}

.contact-social a {
  display: inline-flex;
  flex-direction: column;
  align-items: center;
  gap: 4px;
  color: var(--black);
  text-decoration: none;
  font-family: var(--heading-font);
  font-size: 0.85rem;
  transition: color var(--transition);
}

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

.linkedin-icon {
  width: 22px;
  height: 22px;
  border: 1.5px solid currentColor;
  border-radius: 3px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 13px;
  font-family: var(--heading-font);
  line-height: 1;
}

/* Contact Form */
.contact-form h3 {
  font-family: var(--heading-font);
  font-weight: 500;
  margin-bottom: 16px;
  font-size: 1rem;
  display: none;
}

.contact-form label {
  display: block;
  font-family: var(--heading-font);
  font-weight: 500;
  margin-bottom: 4px;
  font-size: 0.88rem;
}

.contact-form .label-hint {
  font-weight: 300;
  color: var(--gray);
  font-size: 0.82rem;
  margin-left: 4px;
}

.contact-form input[type="text"],
.contact-form input[type="email"],
.contact-form textarea {
  width: 100%;
  padding: 10px 12px;
  border: 1px solid #333;
  font-family: var(--body-font);
  font-size: 0.88rem;
  margin-bottom: 18px;
  background: var(--white);
  transition: border-color var(--transition);
}

.contact-form input[type="text"]:focus,
.contact-form input[type="email"]:focus,
.contact-form textarea:focus {
  outline: none;
  border-color: var(--green);
}

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

.name-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.form-group {
  margin-bottom: 0;
}

.checkbox-group {
  margin-bottom: 18px;
}

.checkbox-group .group-label {
  display: block;
  font-family: var(--heading-font);
  font-weight: 500;
  margin-bottom: 10px;
  font-size: 0.88rem;
}

.checkbox-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  margin-bottom: 6px;
}

.checkbox-row label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-weight: 300;
  font-size: 0.88rem;
  cursor: pointer;
  margin-bottom: 0;
}

.checkbox-row input[type="checkbox"] {
  width: 15px;
  height: 15px;
  accent-color: var(--green);
  cursor: pointer;
}

.btn-submit {
  display: inline-block;
  font-family: var(--heading-font);
  font-size: 0.88rem;
  font-weight: 500;
  color: var(--white);
  background-color: var(--green);
  padding: 10px 22px;
  border: 1px solid var(--green);
  cursor: pointer;
  transition: background-color var(--transition);
  border-radius: 4px;
}

.btn-submit:hover {
  background-color: var(--green-dark);
  border-color: var(--green-dark);
}

.btn-submit:disabled {
  opacity: 0.6;
  cursor: not-allowed;
}

.field-error {
  display: block;
  color: #c0392b;
  font-size: 0.82rem;
  margin-top: 4px;
  font-family: var(--sans);
}

/* Form success message */
.form-success {
  display: none;
  padding: 20px;
  background: var(--green-light);
  color: var(--green);
  text-align: center;
  font-family: var(--heading-font);
  font-size: 1rem;
  margin-top: 16px;
}

.form-success.show {
  display: block;
}

/* ============================================
   FOOTER
   ============================================ */
.site-footer {
  background-color: var(--green);
  color: var(--white);
  padding: 48px 24px;
}

.footer-inner {
  max-width: 960px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  text-align: center;
}

.footer-col h3 {
  font-weight: 300;
  color: var(--white);
  margin-bottom: 14px;
  font-size: 1.5rem;
  font-family: var(--heading-font);
}

.footer-col p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 4px;
}

.footer-col a {
  color: var(--white);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-col a:hover {
  opacity: 0.8;
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 768px) {
  .hamburger {
    display: flex;
  }

  .main-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: var(--white);
    flex-direction: column;
    padding: 20px 24px;
    border-bottom: 3px solid var(--green);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
    gap: 16px;
    font-family: var(--serif);
  }

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

  .nav-links {
    flex-direction: column;
    text-align: center;
    gap: 16px;
    margin: 0;
  }

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

  .service-detail {
    grid-template-columns: 1fr;
    scroll-margin-top: 100px;
  }

  .service-detail-left img {
    max-width: 300px;
    margin: 0 auto;
  }

  .contact-content {
    grid-template-columns: 1fr;
    gap: 40px;
  }

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

  .image-banner {
    height: 200px;
  }

  .name-row {
    grid-template-columns: 1fr;
  }

  .hero-content {
    padding: 50px 20px;
  }

  .logo img {
    height: 55px;
  }
}

@media (max-width: 480px) {
  .hero {
    min-height: 300px;
  }

  .tagline {
    padding: 40px 20px;
  }

  .services-section {
    padding: 36px 20px 44px;
  }

  .contact-photo {
    width: 220px;
  }
}
