/* ────────────────────────────────────────────
   CUSTOM PROPERTIES
──────────────────────────────────────────── */
:root {
  --green:         #4b5b1c;   /* logo green */
  --green-dark:    #2e3d0e;
  --green-darkest: #1e2a08;
  --green-mid:     #5d7022;
  --green-light:   #8fa040;
  --gold:          #c8a030;
  --gold-dark:     #a07a18;
  --cream:         #f6f2e8;
  --cream-dark:    #ede7d4;
  --stone:         #cdc7b0;
  --white:         #ffffff;
  --text:          #1c1c0e;
  --text-mid:      #5a5a42;
  --text-light:    #8a8a72;

  --banner-h: 82px;
  --max-w:    1160px;
  --ease:     0.25s ease;

  --f-head:    'Oswald', sans-serif;
  --f-body:    'Inter', sans-serif;
}

/* ────────────────────────────────────────────
   RESET
──────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; scroll-padding-top: var(--banner-h); font-size: 16px; }
body { font-family: var(--f-body); background: var(--cream); color: var(--text); line-height: 1.65; -webkit-font-smoothing: antialiased; }
img  { display: block; max-width: 100%; }
a    { color: inherit; text-decoration: none; }
ul   { list-style: none; }

.wrap { width: 100%; max-width: var(--max-w); margin-inline: auto; padding-inline: 2rem; }

/* ────────────────────────────────────────────
   BUTTONS
──────────────────────────────────────────── */
.btn {
  display: inline-block;
  padding: 0.875rem 2rem;
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  border: 2px solid transparent;
  border-radius: 3px;
  cursor: pointer;
  transition: background var(--ease), color var(--ease), border-color var(--ease), transform var(--ease), box-shadow var(--ease);
}
.btn:hover { transform: translateY(-2px); }

.btn-gold {
  background: var(--gold);
  color: var(--green-darkest);
  border-color: var(--gold);
}
.btn-gold:hover {
  background: var(--gold-dark);
  border-color: var(--gold-dark);
  box-shadow: 0 6px 22px rgba(200,160,48,0.38);
}

.btn-outline {
  background: transparent;
  color: var(--white);
  border-color: rgba(255,255,255,0.55);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.1);
  border-color: var(--white);
}

.btn-full { width: 100%; text-align: center; }

/* ────────────────────────────────────────────
   FIXED BANNER
──────────────────────────────────────────── */
.banner {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 200;
  height: var(--banner-h);
  background: var(--green);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-inline: 2rem;
  box-shadow: 0 3px 24px rgba(0,0,0,0.35);
}

.banner-logo {
  height: 64px;
  width: auto;
  flex-shrink: 0;
}

.banner-nav {
  display: flex;
  align-items: center;
  gap: 2.75rem;
}

.banner-nav a {
  font-family: var(--f-head);
  font-size: 0.92rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.85);
  transition: color var(--ease);
}
.banner-nav a:hover { color: var(--white); }

.banner-cta {
  background: var(--gold) !important;
  color: var(--green-darkest) !important;
  padding: 0.5rem 1.4rem;
  border-radius: 3px;
  font-weight: 700 !important;
  transition: background var(--ease) !important, color var(--ease) !important;
}
.banner-cta:hover {
  background: var(--gold-dark) !important;
  color: var(--white) !important;
}

/* Hamburger */
.banner-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px; height: 40px;
  background: none; border: none;
  cursor: pointer; padding: 4px;
}
.banner-toggle span {
  display: block; width: 100%; height: 2px;
  background: var(--white); border-radius: 2px;
  transition: transform var(--ease), opacity var(--ease);
}
.banner-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.banner-toggle.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.banner-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }


/* ────────────────────────────────────────────
   HERO
──────────────────────────────────────────── */
@keyframes heroFadeUp {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
@keyframes heroFadeUpSoft {
  from {
    opacity: 0;
    transform: translateY(28px);
  }
  to {
    opacity: 0.9;
    transform: translateY(0);
  }
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: url('images/hero image.jpg') center 15% / cover no-repeat;
  color: var(--white);
  padding-top: var(--banner-h);
  overflow: hidden;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(
    150deg,
    rgba(18,28,4,0.84) 0%,
    rgba(18,28,4,0.36) 55%,
    rgba(18,28,4,0.55) 100%
  );
}

.hero-content {
  position: relative;
  z-index: 1;
  padding: 6rem 2rem;
  max-width: 680px;
  margin-inline-start: max(2rem, calc((100vw - var(--max-w)) / 2 + 2rem));
}

.hero-tag {
  display: inline-block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.25rem;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.15s forwards;
}
.hero-title {
  font-family: var(--f-head);
  font-size: clamp(2.8rem, 8vw, 5.8rem);
  line-height: 1.08;
  letter-spacing: 0.02em;
  margin-bottom: 1.5rem;
  text-shadow: 0 2px 24px rgba(0,0,0,0.45);
  opacity: 0;
  animation: heroFadeUp 0.8s cubic-bezier(0.22, 0.61, 0.36, 1) 0.35s forwards;
}
.hero-sub {
  font-size: clamp(1rem, 2.2vw, 1.12rem);
  font-weight: 300;
  opacity: 0;
  line-height: 1.72;
  max-width: 500px;
  margin-bottom: 2rem;
  animation: heroFadeUpSoft 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.55s forwards;
}
.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  opacity: 0;
  animation: heroFadeUp 0.7s cubic-bezier(0.22, 0.61, 0.36, 1) 0.75s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .hero-tag,
  .hero-title,
  .hero-sub,
  .hero-btns {
    opacity: 1;
    animation: none;
  }
  .hero-sub { opacity: 0.9; }
}

/* scroll hint */
.scroll-hint {
  position: absolute;
  bottom: 2rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  color: rgba(255,255,255,0.45);
  font-size: 0.6rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  opacity: 0;
  animation: heroFadeUp 0.6s cubic-bezier(0.22, 0.61, 0.36, 1) 1.1s forwards;
}
@media (prefers-reduced-motion: reduce) {
  .scroll-hint { opacity: 1; animation: none; }
}
.scroll-hint-line {
  width: 1px;
  height: 42px;
  background: rgba(255,255,255,0.4);
  animation: scrollHintPulse 2.2s ease-in-out infinite;
  transform-origin: top;
}
@keyframes scrollHintPulse {
  0%, 100% { transform: scaleY(0.25); opacity: 0.35; }
  50%      { transform: scaleY(1);    opacity: 1;   }
}


/* ────────────────────────────────────────────
   TAGLINE STRIP
──────────────────────────────────────────── */
.strip {
  background: var(--green-dark);
  padding-block: 3.5rem;
  text-align: center;
}
.strip-text {
  font-family: var(--f-head);
  font-size: clamp(1.1rem, 2.8vw, 1.55rem);
  color: var(--white);
  max-width: 680px;
  margin-inline: auto;
  line-height: 1.55;
  margin-bottom: 1.75rem;
}


/* ────────────────────────────────────────────
   SERVICES
──────────────────────────────────────────── */
.services {
  padding-block: 6rem;
  background: var(--cream);
}

.sec-label {
  display: block;
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--green-mid);
  margin-bottom: 0.5rem;
}
.sec-title {
  font-family: var(--f-head);
  font-size: clamp(1.75rem, 4vw, 2.8rem);
  color: var(--text);
  line-height: 1.2;
  letter-spacing: 0.02em;
}
.sec-title--light { color: var(--white); }
.sec-label--light { color: var(--green-light); }

.sec-header {
  text-align: center;
  margin-bottom: 4rem;
}

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

.card {
  background: var(--white);
  border-radius: 10px;
  overflow: hidden;
  box-shadow: 0 2px 14px rgba(0,0,0,0.07);
  transition: transform var(--ease), box-shadow var(--ease);
}
.card:hover {
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.12);
}

.card-img {
  height: 250px;
  overflow: hidden;
}
.card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.card-body {
  padding: 1.6rem 1.7rem 1.9rem;
}
.card-body h3 {
  font-family: var(--f-head);
  font-size: 1.1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--green-dark);
  margin-bottom: 0.7rem;
}
.card-body p {
  font-size: 0.91rem;
  color: var(--text-mid);
  line-height: 1.72;
}


/* ────────────────────────────────────────────
   ABOUT
──────────────────────────────────────────── */
.about {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 640px;
}

.about-photo {
  overflow: hidden;
}
.about-photo img {
  width: 100%; height: 100%;
  object-fit: cover;
  object-position: center 30%;
}

.about-copy {
  background: var(--cream-dark);
  padding: 6rem 4rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.about-copy .sec-title { margin: 0.4rem 0 1rem; }
.about-copy p {
  color: var(--text-mid);
  line-height: 1.78;
  margin-bottom: 0.85rem;
}
.about-quote {
  font-style: italic;
  color: var(--green-dark) !important;
  font-size: 1.02rem;
  margin-top: 0.5rem !important;
}

.badges {
  display: flex;
  gap: 1rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.badge {
  flex: 1;
  min-width: 110px;
  background: var(--white);
  border-left: 4px solid var(--green);
  border-radius: 0 4px 4px 0;
  padding: 0.8rem 1rem;
  display: flex; flex-direction: column; gap: 0.2rem;
}
.badge strong {
  font-family: var(--f-head);
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  color: var(--green-dark);
}
.badge span {
  font-size: 0.76rem;
  color: var(--text-mid);
  line-height: 1.4;
}


/* ────────────────────────────────────────────
   CONTACT
──────────────────────────────────────────── */
.contact {
  background: var(--green-dark);
  padding-block: 6rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.4fr;
  gap: 6rem;
  align-items: start;
}

.contact-info .sec-title { margin: 0.4rem 0 1rem; }
.contact-info > p {
  color: rgba(255,255,255,0.72);
  font-size: 1.02rem;
  line-height: 1.78;
}

.details {
  margin-top: 2.5rem;
  display: flex; flex-direction: column; gap: 1.3rem;
}
.detail-label {
  display: block;
  font-family: var(--f-head);
  font-size: 0.68rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 0.2rem;
}
.detail-value,
.detail-value a {
  color: rgba(255,255,255,0.82);
  font-size: 1rem;
  line-height: 1.55;
  transition: color var(--ease);
}
.detail-value a:hover { color: var(--white); }

.socials {
  display: flex; flex-direction: column; gap: 0.55rem;
  margin-top: 0.25rem;
}
.social-a {
  display: inline-flex; align-items: center; gap: 0.45rem;
  color: rgba(255,255,255,0.82) !important;
  font-size: 0.92rem;
  transition: color var(--ease) !important;
}
.social-a:hover { color: var(--white) !important; }

/* Form */
.form-card {
  background: var(--white);
  border-radius: 16px;
  padding: 2.5rem;
}
.form {
  display: flex; flex-direction: column; gap: 1.15rem;
}
.form-row {
  display: grid; grid-template-columns: 1fr 1fr; gap: 1rem;
}
.field {
  display: flex; flex-direction: column; gap: 0.35rem;
}
.field label {
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--text-mid);
}
.opt { font-weight: 400; opacity: 0.6; text-transform: none; letter-spacing: 0; }
.field input,
.field textarea {
  padding: 0.75rem 1rem;
  font-family: var(--f-body);
  font-size: 0.95rem;
  border: 1.5px solid var(--stone);
  border-radius: 4px;
  background: var(--cream);
  color: var(--text);
  outline: none;
  width: 100%;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.field input:focus,
.field textarea:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(75,91,28,0.15);
}
.field textarea { resize: vertical; min-height: 112px; }
.sel-wrap { position: relative; }
.sel-wrap select {
  display: block; width: 100%;
  padding: 0.75rem 2.5rem 0.75rem 1rem;
  font-family: var(--f-body); font-size: 0.95rem;
  border: 1.5px solid var(--stone); border-radius: 4px;
  background: var(--cream); color: var(--text);
  outline: none; appearance: none; cursor: pointer;
  transition: border-color var(--ease), box-shadow var(--ease);
}
.sel-wrap select:focus {
  border-color: var(--green-mid);
  box-shadow: 0 0 0 3px rgba(75,91,28,0.15);
}
.sel-arrow {
  position: absolute; right: 1rem; top: 50%;
  transform: translateY(-50%);
  color: var(--text-mid); pointer-events: none;
}


/* ────────────────────────────────────────────
   FOOTER
──────────────────────────────────────────── */
.footer {
  background: var(--green-darkest);
  padding-block: 3.5rem 2rem;
}
.footer-inner {
  display: flex; flex-direction: column;
  align-items: center; gap: 1.5rem; text-align: center;
}
.footer-logo { height: 70px; width: auto; opacity: 0.9; }
.footer-tag {
  color: rgba(255,255,255,0.48);
  font-size: 0.9rem; line-height: 1.65;
}
.footer-links {
  display: flex; gap: 2rem;
}
.footer-links a {
  font-family: var(--f-head);
  font-size: 0.8rem; font-weight: 500;
  letter-spacing: 0.12em; text-transform: uppercase;
  color: rgba(255,255,255,0.48);
  transition: color var(--ease);
}
.footer-links a:hover { color: var(--gold); }
.footer-socials {
  display: flex; gap: 1.25rem;
}
.footer-socials a {
  color: rgba(255,255,255,0.4);
  transition: color var(--ease);
}
.footer-socials a:hover { color: var(--gold); }
.footer-copy {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  letter-spacing: 0.04em;
}


/* ────────────────────────────────────────────
   RESPONSIVE — tablet
──────────────────────────────────────────── */
@media (max-width: 960px) {
  .cards { grid-template-columns: 1fr 1fr; }
  .about { grid-template-columns: 1fr; }
  .about-photo { height: 380px; }
  .about-copy { padding: 3.5rem 2rem; }
  .contact-grid { grid-template-columns: 1fr; gap: 3rem; }
}

/* ────────────────────────────────────────────
   RESPONSIVE — mobile
──────────────────────────────────────────── */
@media (max-width: 680px) {
  :root { --banner-h: 68px; }

  .banner-toggle { display: flex; }

  .banner-nav {
    display: none;
    position: absolute;
    top: var(--banner-h); left: 0; right: 0;
    background: var(--green);
    flex-direction: column;
    align-items: stretch;
    padding-block: 0.5rem;
    gap: 0;
    box-shadow: 0 8px 28px rgba(0,0,0,0.4);
  }
  .banner-nav.open { display: flex; }
  .banner-nav a {
    display: block;
    padding: 0.9rem 2rem;
    border-radius: 0 !important;
  }
  .banner-cta {
    margin: 0.5rem 2rem !important;
    border-radius: 3px !important;
    text-align: center;
    padding: 0.9rem 2rem !important;
  }
  .banner-logo { height: 50px; }

  .hero-content { margin-inline-start: 0; max-width: 100%; }
  .hero-btns { flex-direction: column; }
  .hero-btns .btn { text-align: center; }

  .cards { grid-template-columns: 1fr; }
  .badges { flex-direction: column; }
  .form-row { grid-template-columns: 1fr; }
  .form-card { padding: 1.75rem; }
}
