@import url('https://fonts.googleapis.com/css2?family=Cormorant+Garamond:ital,wght@0,300;0,400;0,600;1,300;1,400&family=Montserrat:wght@300;400;500;600;700&display=swap');

:root {
  --green: #062c27;
  --green-dark: #031d1a;
  --green-soft: #0b3a34;
  --gold: #c89b4f;
  --gold-light: #e0b96c;
  --concrete: #e6e3dc;
  --concrete-dark: #c9c5bd;
  --text-dark: #10221f;
  --text-light: #ffffff;
  --muted: #d5d0c7;
  --max-width: 1180px;
}

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

html { scroll-behavior: smooth; }

body {
  font-family: 'Montserrat', Arial, sans-serif;
  color: var(--text-dark);
  background: var(--concrete);
  line-height: 1.6;
}

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

.container {
  width: min(90%, var(--max-width));
  margin: 0 auto;
}

/* ── HEADER ── */
.site-header {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 20;
  background: rgba(3, 29, 26, 0.97);
  border-bottom: 1px solid rgba(200, 155, 79, 0.22);
  backdrop-filter: blur(6px);
}

.header-inner {
  min-height: 88px;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo img { width: auto; height: 52px; max-width: 260px; mix-blend-mode: screen; }
.footer-logo-img { mix-blend-mode: screen; }

.main-nav {
  display: flex;
  gap: 38px;
  align-items: center;
}

.main-nav a {
  color: var(--text-light);
  font-family: 'Montserrat', sans-serif;
  font-size: 12px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  position: relative;
  padding: 8px 0;
  transition: color 0.3s ease;
}

.main-nav a::after {
  content: "";
  position: absolute;
  left: 0; bottom: -4px;
  width: 0; height: 2px;
  background: var(--gold);
  transition: width 0.3s ease;
}

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

.main-nav a:hover::after,
.main-nav a.active::after { width: 100%; }

/* ── HERO ── */
.hero {
  min-height: 720px;
  padding-top: 88px;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--text-light);
  background:
    linear-gradient(
      90deg,
      rgba(3,29,26,0.96) 0%,
      rgba(6,44,39,0.86) 35%,
      rgba(6,44,39,0.30) 68%,
      rgba(6,44,39,0.12) 100%
    ),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.hero-content { position: relative; z-index: 2; max-width: 670px; }

.section-label {
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 3px;
  font-size: 12px;
  font-weight: 700;
  margin-bottom: 14px;
  font-family: 'Montserrat', sans-serif;
}

.center { text-align: center; }

.hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(52px, 8vw, 96px);
  line-height: 1.05;
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 28px;
}

.hero h1 span { color: var(--gold-light); }

.hero h1::after {
  content: "";
  display: block;
  width: 78px; height: 2px;
  background: var(--gold);
  margin-top: 28px;
}

.hero-text {
  max-width: 510px;
  color: #f4f1ec;
  font-size: 17px;
  font-weight: 300;
  margin-bottom: 38px;
  letter-spacing: 0.3px;
}

.hero-buttons { display: flex; gap: 18px; flex-wrap: wrap; }

/* ── BUTTONS ── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 32px;
  border: 1px solid transparent;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 12px;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  cursor: pointer;
  transition: all 0.3s ease;
}

.btn-primary {
  background: linear-gradient(135deg, var(--gold), var(--gold-light));
  color: #fff;
}
.btn-primary:hover { background: var(--gold-light); transform: translateY(-2px); }

.btn-outline { color: var(--text-light); border-color: var(--gold); }
.btn-outline:hover { background: var(--gold); color: #fff; }

.btn-outline-light { color: var(--gold-light); border-color: var(--gold); }
.btn-outline-light:hover { background: var(--gold); color: #fff; }

/* ── SECTIONS ── */
section { scroll-margin-top: 88px; }

.section-light {
  background:
    linear-gradient(rgba(230,227,220,0.92), rgba(230,227,220,0.92)),
    repeating-linear-gradient(45deg, #dedad2 0px, #dedad2 2px, #e9e6df 2px, #e9e6df 7px);
  padding: 78px 0;
}

.section-dark {
  background:
    radial-gradient(circle at top left, rgba(200,155,79,0.10), transparent 35%),
    linear-gradient(135deg, var(--green-dark), var(--green));
  color: var(--text-light);
  padding: 78px 0;
}

h2 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(36px, 5vw, 56px);
  font-weight: 300;
  text-align: center;
  color: inherit;
  line-height: 1.1;
  margin-bottom: 46px;
  letter-spacing: 2px;
}

.section-light h2 { color: var(--green); }

h2::after {
  content: "";
  display: block;
  width: 58px; height: 2px;
  background: var(--gold);
  margin: 18px auto 0;
}

/* ── SERVICES ── */
.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 22px;
}

.service-card {
  background: rgba(255,255,255,0.55);
  border: 1px solid rgba(6,44,39,0.08);
  padding: 42px 28px;
  text-align: center;
  min-height: 300px;
  transition: all 0.3s ease;
}

.service-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 18px 40px rgba(3,29,26,0.16);
}

.service-icon {
  width: 72px; height: 72px;
  margin: 0 auto 22px;
  border: 2px solid var(--gold);
  color: var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
}

.service-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: 20px;
  line-height: 1.25;
  text-transform: uppercase;
  margin-bottom: 16px;
  color: var(--green);
  letter-spacing: 1px;
}

.service-card p { font-size: 14px; color: #444; font-weight: 300; }

/* ── PROJECTS ── */
.projects-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.project-card { overflow: hidden; }

.project-image {
  min-height: 210px;
  background-size: cover;
  background-position: center;
  transition: transform 0.4s ease;
}

.project-card:hover .project-image { transform: scale(1.04); }

.project-card h3 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  color: #fff;
  font-size: 18px;
  text-transform: uppercase;
  letter-spacing: 1px;
  text-align: center;
  margin-top: 18px;
  font-weight: 400;
}

.image-1 { background-image: url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=900&q=80"); }
.image-2 { background-image: url("https://images.unsplash.com/photo-1600585154340-be6161a56a0c?auto=format&fit=crop&w=900&q=80"); }
.image-3 { background-image: url("https://images.unsplash.com/photo-1620626011761-996317b8d101?auto=format&fit=crop&w=900&q=80"); }
.image-4 { background-image: url("https://images.unsplash.com/photo-1600210492486-724fe5c67fb0?auto=format&fit=crop&w=900&q=80"); }

.button-space { margin-top: 42px; }

/* ── PARTNERS ── */
.partners-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 18px;
  align-items: center;
  margin-top: 20px;
}

.partners-grid span {
  min-height: 70px;
  border-left: 1px solid rgba(16,34,31,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #888;
  font-size: 15px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  text-align: center;
  filter: grayscale(1);
  font-family: 'Montserrat', sans-serif;
}

.partners-grid span:first-child { border-left: none; }

/* ── FOOTER ── */
.site-footer {
  background: var(--green-dark);
  color: #bdb7ae;
  border-top: 1px solid rgba(200,155,79,0.18);
}

.footer-main {
  display: grid;
  grid-template-columns: 2fr 1.5fr 1fr;
  gap: 40px;
  align-items: start;
  padding: 48px 0 40px;
}

.footer-logo-img {
  width: auto;
  height: 90px;
  max-width: 300px;
  margin-bottom: 22px;
  mix-blend-mode: screen;
}

.footer-about p {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  max-width: 300px;
  line-height: 1.7;
}

.footer-col-title {
  color: var(--gold);
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2.5px;
  font-family: 'Montserrat', sans-serif;
  margin-bottom: 20px;
}

.footer-contact-list { list-style: none; display: grid; gap: 14px; }
.footer-contact-list li { font-size: 13px; color: var(--muted); }
.footer-contact-list .lbl {
  display: block;
  color: var(--gold);
  font-size: 10px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 3px;
}
.footer-contact-list a { color: var(--muted); transition: color 0.3s; }
.footer-contact-list a:hover { color: var(--gold-light); }

.footer-nav-list { list-style: none; display: grid; gap: 10px; }
.footer-nav-list a {
  color: var(--muted);
  font-size: 13px;
  font-weight: 300;
  letter-spacing: 0.5px;
  transition: color 0.3s;
  display: flex;
  align-items: center;
  gap: 8px;
}
.footer-nav-list a::before {
  content: "";
  display: inline-block;
  width: 18px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0;
}
.footer-nav-list a:hover { color: var(--gold-light); }

.footer-bottom {
  border-top: 1px solid rgba(200,155,79,0.12);
  padding: 18px 0;
}
.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
  font-size: 11px;
  letter-spacing: 0.5px;
  color: #8a867e;
}

/* responsive footer */
@media (max-width: 1050px) {
  .footer-main { grid-template-columns: 1fr 1fr; gap: 40px; }
}
@media (max-width: 760px) {
  .footer-main { grid-template-columns: 1fr; gap: 32px; padding: 44px 0 36px; }
  .footer-bottom-inner { flex-direction: column; text-align: center; }
}

/* ── PAGE HERO (inner pages) ── */
.page-hero {
  min-height: 340px;
  padding-top: 88px;
  display: flex;
  align-items: center;
  color: var(--text-light);
  background:
    linear-gradient(rgba(3,29,26,0.88), rgba(3,29,26,0.88)),
    url("https://images.unsplash.com/photo-1600607687920-4e2a09cf159d?auto=format&fit=crop&w=1800&q=80");
  background-size: cover;
  background-position: center;
}

.page-hero h1 {
  font-family: 'Cormorant Garamond', Georgia, serif;
  font-size: clamp(42px, 6vw, 72px);
  font-weight: 300;
  letter-spacing: 3px;
  margin-bottom: 12px;
}

.page-hero h1::after {
  content: "";
  display: block;
  width: 58px; height: 2px;
  background: var(--gold);
  margin-top: 18px;
}

.page-hero p {
  color: #ccc;
  font-size: 15px;
  font-weight: 300;
  margin-top: 18px;
  letter-spacing: 0.5px;
}

/* ── RESPONSIVE ── */
@media (max-width: 1050px) {
  .services-grid,
  .projects-grid { grid-template-columns: repeat(2, 1fr); }
  .partners-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 760px) {
  .header-inner {
    flex-direction: column;
    gap: 14px;
    padding: 16px 0;
    min-height: auto;
  }
  .site-header { position: static; }
  .logo img { height: 40px; width: auto; max-width: 200px; mix-blend-mode: screen; }
  .main-nav { flex-wrap: wrap; justify-content: center; gap: 16px; }
  .main-nav a { font-size: 11px; }
  .hero { padding-top: 0; min-height: 580px; background-position: center right; }
  .hero h1 { font-size: 44px; }
  .hero-text { font-size: 15px; }
  .services-grid, .projects-grid, .partners-grid { grid-template-columns: 1fr; }
  .partners-grid span { border-left: none; border-bottom: 1px solid rgba(16,34,31,0.12); }
  .section-light, .section-dark { padding: 58px 0; }
  /* footer responsive handled above */
}
