:root {
  --green: #2b6f4e;
  --green-dark: #213f33;
  --gold: #f4c76f;
  --dark: #182424;
  --light: #f7f7f5;
  --white: #ffffff;
  --accent: #d97706;
  --danger: #e11d48;
}

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

body {
  margin: 0;
  font-family: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  background: var(--light);
  color: #222;
  line-height: 1.6;
}

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

.container {
  width: min(1100px, 100%);
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* HEADER / NAV ------------------------------------------------------------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(24, 36, 36, 0.92);
  backdrop-filter: blur(6px);
  color: #fff;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.logo {
  position: relative;
  display: flex;
  align-items: center;
}

.logo img {
  height: 162px;  /* triple original size */
  width: auto;
  display: block;
  transform: translateY(0.5in);  /* visually drop logo without affecting nav */
}

.logo span {
  font-size: 1.3rem;
  font-weight: 600;
  letter-spacing: 0.05em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 1.2rem;
  margin-left: auto;
}

.nav a {
  color: #fff;
  text-decoration: none;
  font-weight: 500;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.nav a:hover,
.nav a:focus {
  color: var(--gold);
}

.btn-small {
  padding: 0.45rem 0.95rem;
  background: var(--gold);
  border-radius: 999px;
  color: #000 !important;
  font-weight: 600;
  display: inline-block;
}

/* HERO --------------------------------------------------------------------- */
.hero {
  position: relative;
  background-image: linear-gradient(120deg, rgba(33, 63, 51, 0.9), rgba(24, 36, 36, 0.7)), url("https://images.unsplash.com/photo-1599806112316-1de4df9096f5?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
  min-height: 72vh;
  display: flex;
  align-items: center;
  color: #fff;
}

.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-content {
  position: relative;
  z-index: 10;
  max-width: 34rem;
}

.hero h1 {
  font-size: clamp(2.4rem, 3.7vw, 3.2rem);
  margin-bottom: 1rem;
  text-shadow: 0 4px 18px rgba(0, 0, 0, 0.4);
}

.hero p {
  font-size: 1.05rem;
  margin-bottom: 1.5rem;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 700;
  color: var(--gold);
  text-shadow:
    0 3px 12px rgba(0, 0, 0, 0.45),
    0 6px 24px rgba(0, 0, 0, 0.35);
  line-height: 1.2;
}

.btn-primary,
.btn-secondary {
  display: inline-block;
  padding: 0.75rem 1.3rem;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  margin-right: 0.5rem;
}

.btn-primary {
  background: var(--gold);
  color: #000;
}

.btn-secondary {
  border: 1px solid rgba(255, 255, 255, 0.7);
  color: #fff;
}

.hero-phone {
  margin-top: 1rem;
  font-size: 0.95rem;
}

.hero-phone a {
  color: #fff;
  font-weight: 600;
  text-decoration: underline;
}

section[id] {
  scroll-margin-top: clamp(7rem, 12vw, 10rem);
}

/* SECTIONS ----------------------------------------------------------------- */
.section {
  padding: clamp(3rem, 5vw, 4rem) 0;
}

.about {
  background: #fff;
}

.split {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2.5rem;
  align-items: flex-start;
}

.card {
  background: var(--light);
  border-radius: 1rem;
  padding: 1.5rem 1.5rem 1rem;
  border: 1px solid rgba(0,0,0,0.05);
  box-shadow: 0 10px 30px rgba(0,0,0,0.03);
}

.card h3 {
  margin-top: 0;
}

.card ul {
  padding-left: 1rem;
  margin: 0;
}

/* WHY SECTION -------------------------------------------------------------- */
.why {
  background: #123027;
  color: #fff;
  text-align: center;
}

.why h2 {
  margin-bottom: 1.5rem;
}

.features {
  margin-top: 2rem;
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.feature {
  background: rgba(255,255,255,0.045);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 1rem;
  padding: 1.5rem;
  text-align: left;
}

/* LETTER SECTION ----------------------------------------------------------- */
.letter {
  background: #fffdf8;
}

/* FORMS -------------------------------------------------------------------- */
.form {
  max-width: 720px;
  margin-top: 1.5rem;
  display: grid;
  gap: 1rem;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form input,
.form select,
.form textarea {
  padding: 0.65rem 0.75rem;
  border-radius: 0.5rem;
  border: 1px solid rgba(0,0,0,0.15);
  font-size: 1rem;
  background: #fff;
}

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

.required {
  color: var(--danger);
}

.small-text {
  font-size: 0.8rem;
  color: rgba(0,0,0,0.5);
}

/* CONTACT SECTION ---------------------------------------------------------- */
.contact {
  background: #f3f7f4;
}

/* FOOTER ------------------------------------------------------------------- */
.site-footer {
  background: #101717;
  color: rgba(255,255,255,0.7);
  padding: 1.5rem 0;
  text-align: center;
}

.site-footer a {
  color: rgba(255,255,255,0.9);
}

/* RESPONSIVE --------------------------------------------------------------- */
@media (max-width: 980px) {
  .header-inner {
    justify-content: space-between;
    height: auto;
    min-height: 72px;
  }

  .logo {
    position: static;
  }

  .nav {
    gap: 0.85rem;
    flex-wrap: wrap;
  }
}

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

  .hero {
    min-height: 62vh;
    padding-top: 2rem;
    padding-bottom: 2.5rem;
  }

  .hero-content {
    max-width: 100%;
  }

  .nav {
    font-size: 0.9rem;
  }
}

@media (max-width: 540px) {
  .nav {
    overflow-x: auto;
    scrollbar-width: thin;
  }

  .btn-small {
    white-space: nowrap;
  }

  .hero h1 {
    font-size: 2.25rem;
  }
}
