/* ─── Reset & base ────────────────────────────── */

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Nunito', 'Avenir', -apple-system, sans-serif;
  font-size: 16px;
  line-height: 1.75;
  color: #2a2a2a;
  background: #ffffff;
}

h1, h2 {
  font-family: 'Ibarra Real Nova', Georgia, serif;
}

h3, h4, h5 {
  font-family: 'Nunito', 'Avenir', sans-serif;
  line-height: 1.15;
}

a { text-decoration: none; }
img { display: block; max-width: 100%; }

/* ─── Variables ───────────────────────────────── */

:root {
  --green:      #051A0C;
  --green-mid:  #0a3318;
  --gold:       #CF9940;
  --cream:      #F7F3ED;
  --text:       #2a2a2a;
  --muted:      #5e5e5e;
  --rule:       rgba(5, 26, 12, 0.12);
}

/* ─── Layout ──────────────────────────────────── */

.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 2rem;
}

.section {
  padding: 7rem 0;
}

/* ─── Buttons ─────────────────────────────────── */

.btn {
  display: inline-block;
  font-family: 'Nunito', sans-serif;
  font-weight: 700;
  font-size: 0.75rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  padding: 0.95rem 2.5rem;
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: background 0.22s, color 0.22s, border-color 0.22s;
  white-space: nowrap;
}

.btn-gold {
  background: var(--gold);
  color: var(--green);
  border-color: var(--gold);
}

.btn-gold:hover {
  background: transparent;
  color: var(--gold);
}

.btn-gold-outline {
  background: transparent;
  color: var(--gold);
  border-color: var(--gold);
}

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

.btn-green {
  background: var(--green);
  color: #ffffff;
  border-color: var(--green);
}

.btn-green:hover {
  background: var(--green-mid);
  border-color: var(--green-mid);
  color: #ffffff;
}

/* ─── Navigation ──────────────────────────────── */

.site-nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--green);
  border-bottom: 1px solid rgba(207,153,64,0.18);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.1rem 0;
}

.nav-brand {
  display: block;
  font-family: 'Ibarra Real Nova', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
}

.nav-brand small {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.56rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
  margin-top: 4px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
  list-style: none;
}

.nav-links a {
  font-family: 'Nunito', sans-serif;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.7);
  padding: 0.4rem 0.85rem;
  transition: color 0.2s;
}

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

.nav-links .nav-cta {
  background: var(--gold);
  color: var(--green);
  margin-left: 0.5rem;
}

.nav-links .nav-cta:hover {
  background: #daa84e;
  color: var(--green);
}

.hero-logo-mobile {
  display: none;
  width: 80%;
  max-width: 360px;
  height: auto;
  margin: 0 auto 2rem;
}

.nav-toggle {
  display: none;
  background: none;
  border: 1px solid rgba(207,153,64,0.4);
  color: var(--gold);
  font-size: 1.2rem;
  padding: 0.3rem 0.65rem;
  cursor: pointer;
}

/* ─── Hero ────────────────────────────────────── */

.hero {
  display: grid;
  grid-template-columns: 55% 45%;
  min-height: 100vh;
}

.hero-text {
  background: var(--cream);
  display: flex;
  align-items: center;
  padding: 8rem 4rem 6rem 2rem;
}

.hero-text .container {
  padding: 0;
  max-width: 520px;
  margin: 0 0 0 auto;
}

.hero-panel {
  background: url('../assets/images/background.jpg') center calc(50% - 300px) / cover no-repeat;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 4rem 3rem;
  position: relative;
}

.hero-panel::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(5, 26, 12, 0.75) 0%, rgba(5, 26, 12, 0.75) 25%, rgba(5, 26, 12, 1) 65%);
  z-index: 0;
}

.hero-panel img {
  position: relative;
  z-index: 1;
  width: 80%;
  height: 80%;
  object-fit: contain;
  display: block;
}


.hero-h1 {
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.08;
  margin-bottom: 1.75rem;
}

.hero-h1 em {
  color: var(--gold);
  font-style: italic;
}

.hero-lead {
  font-size: 1rem;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 2.5rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

/* ─── About ───────────────────────────────────── */

.about-section {
  background: var(--cream);
}

.about-statement {
  max-width: 760px;
  margin: 0 auto 3.5rem;
  text-align: center;
}

.about-statement h2 {
  font-size: clamp(1.9rem, 4vw, 3rem);
  font-weight: 600;
  color: var(--green);
}

.about-statement h2 em {
  color: var(--gold);
  font-style: italic;
}

.about-body {
  max-width: 620px;
  margin: 0 auto;
  text-align: center;
}

.about-body p {
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.9;
}

.about-body p + p {
  margin-top: 1.25rem;
}

.about-body .btn {
  margin-top: 2.25rem;
}

/* ─── Services ────────────────────────────────── */

.services-section {
  background: #ffffff;
}

.section-heading {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green);
  line-height: 1.08;
  letter-spacing: -0.01em;
  margin-bottom: 3.5rem;
}

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

.service-card {
  grid-column: span 2;
  background: #fff;
  border: 1px solid var(--rule);
  overflow: hidden;
}

.service-card:nth-child(4) { grid-column: 2 / span 2; }
.service-card:nth-child(5) { grid-column: 4 / span 2; }

.service-card-img img {
  width: 100%;
  display: block;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.service-card-img img[src*="placehold.co"] {
  filter: grayscale(100%);
}

.service-card-body {
  padding: 1.75rem 2rem;
}

.service-card-body h3 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--green);
  margin-bottom: 0.6rem;
}

.service-card-body p {
  font-size: 0.92rem;
  color: var(--muted);
  line-height: 1.7;
}

/* ─── Why Us ──────────────────────────────────── */

.why-section {
  background: var(--green);
}

.why-section .section-heading {
  color: #ffffff;
  margin-bottom: 3.5rem;
}

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

.why-item img {
  width: 100%;
  display: block;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  margin-bottom: 1.25rem;
}

.why-item img[src*="placehold.co"] {
  filter: grayscale(100%);
}

.why-item h4 {
  font-size: 1.1rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.6rem;
}

.why-item p {
  font-size: 0.9rem;
  color: rgba(255,255,255,0.65);
  line-height: 1.75;
}

/* ─── Testimonial ─────────────────────────────── */

.testimonial-section {
  background: var(--cream);
  text-align: center;
}

.testimonial-mark {
  font-family: 'Ibarra Real Nova', Georgia, serif;
  font-size: 5.5rem;
  line-height: 0.7;
  color: var(--gold);
  opacity: 0.25;
  display: block;
  margin-bottom: -1rem;
}

.testimonial-text {
  font-family: 'Ibarra Real Nova', Georgia, serif;
  font-size: clamp(1.3rem, 2.75vw, 1.85rem);
  font-style: italic;
  font-weight: 400;
  color: var(--green);
  line-height: 1.65;
  max-width: 800px;
  margin: 0 auto 1.75rem;
}

.testimonial-attr {
  font-family: 'Nunito', sans-serif;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

/* ─── Contact ─────────────────────────────────── */

.contact-section {
  background: #ffffff;
}

.contact-layout {
  display: grid;
  grid-template-columns: 2fr 3fr;
  gap: 5rem;
  align-items: start;
}

.contact-info h2 {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 700;
  color: var(--green);
  margin-bottom: 1rem;
}

.contact-info p {
  color: var(--muted);
  font-size: 1rem;
  margin-bottom: 2.5rem;
}

.contact-detail {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.contact-detail i {
  font-size: 1rem;
  color: var(--gold);
  margin-top: 0.2rem;
  flex-shrink: 0;
}

.contact-label {
  font-family: 'Nunito', sans-serif;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--muted);
  display: block;
  margin-bottom: 0.1rem;
}

.contact-value {
  color: var(--text);
  font-size: 1rem;
  font-weight: 600;
  transition: color 0.2s;
}

.contact-value:hover { color: var(--gold); }

/* Form */

.form-group { margin-bottom: 1.25rem; }

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}

.form-label {
  display: block;
  font-family: 'Nunito', sans-serif;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text);
  margin-bottom: 0.45rem;
}

.form-control {
  display: block;
  width: 100%;
  padding: 0.85rem 1rem;
  font-family: 'Nunito', sans-serif;
  font-size: 0.95rem;
  color: var(--text);
  background: #ffffff;
  border: 1px solid #d4cfc8;
  border-radius: 0;
  appearance: none;
  transition: border-color 0.2s;
}

.form-control:focus {
  outline: none;
  border-color: var(--gold);
}

textarea.form-control {
  resize: vertical;
  min-height: 130px;
}

.form-submit {
  margin-top: 0.5rem;
  width: 100%;
  padding: 1rem;
  display: flex;
  justify-content: center;
}

/* ─── Footer ──────────────────────────────────── */

.site-footer {
  background: var(--green);
  padding: 3.5rem 0 2rem;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 2rem;
  align-items: start;
  padding-bottom: 2.5rem;
  border-bottom: 1px solid rgba(207,153,64,0.15);
  margin-bottom: 1.5rem;
}

.footer-brand-name {
  font-family: 'Ibarra Real Nova', Georgia, serif;
  font-size: 1.55rem;
  font-weight: 700;
  color: #ffffff;
  line-height: 1;
  margin-bottom: 0.3rem;
}

.footer-brand-sub {
  font-family: 'Nunito', sans-serif;
  font-size: 0.56rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: var(--gold);
}

.footer-contact a {
  display: block;
  font-size: 0.9rem;
  color: rgba(255,255,255,0.55);
  line-height: 2.2;
  transition: color 0.2s;
}

.footer-contact a:hover { color: var(--gold); }

.footer-contact i {
  color: var(--gold);
  margin-right: 0.5rem;
  font-size: 0.8rem;
}

.footer-tagline {
  font-family: 'Ibarra Real Nova', Georgia, serif;
  font-style: italic;
  font-size: 1.75rem;
  color: rgba(255,255,255,0.4);
  text-align: left;
  line-height: 1.55;
}

.footer-copy {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.78rem;
  color: rgba(255,255,255,0.3);
}

.footer-copy .heart { color: var(--gold); }
.footer-copy a { color: var(--gold); text-decoration: none; }
.footer-copy a:hover { text-decoration: underline; }

/* ─── Responsive ──────────────────────────────── */

@media (max-width: 991px) {
  .hero { grid-template-columns: 1fr; }
  .hero-panel { display: none; }
  .hero-text { padding: 6rem 0 5rem; }
  .hero-text .container { max-width: none; margin: 0; }

  .hero-logo-mobile { display: block; }

  .nav-links { display: none; }
  .nav-links.open {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    background: var(--green);
    padding: 1.25rem 2rem 1.75rem;
    border-top: 1px solid rgba(207,153,64,0.2);
    z-index: 99;
  }
  .nav-links.open .nav-cta { margin-left: 0; margin-top: 0.5rem; }
  .nav-toggle { display: block; }
  .site-nav { position: relative; }

  .why-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem 3rem; }
  .contact-layout { grid-template-columns: 1fr; gap: 3rem; }
  .footer-inner { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 767px) {
  .section { padding: 5rem 0; }
  .hero { padding: 0; }
  .hero-text { padding: 3rem 1rem 4rem; }
  .hero-logo-mobile { width: 90%; }
  .services-grid { grid-template-columns: 1fr; }
  .service-card,
  .service-card:nth-child(4),
  .service-card:nth-child(5) { grid-column: span 1; }
  .why-grid { grid-template-columns: 1fr; gap: 2.25rem; }
  .form-row { grid-template-columns: 1fr; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-copy { flex-direction: column; gap: 0.4rem; text-align: center; }
}
