@import url('https://fonts.googleapis.com/css2?family=Playfair+Display:wght@400;600;700;800;900&family=DM+Sans:wght@300;400;500;600;700&display=swap');

:root {
  --forest:   #0f3d1e;
  --deep:     #071a0c;
  --ink:      #050e08;
  --gold:     #b8913c;
  --gold-lt:  #d4a94e;
  --gold-pale:#f0d98a;
  --cream:    #f8f5ee;
  --text:     #1a1a1a;
  --muted:    rgba(26,26,26,.68);
  --border:   rgba(26,26,26,.10);
  --border-g: rgba(184,145,60,.25);
  --shadow:   0 12px 40px rgba(0,0,0,.10);
  --radius:   12px;
}

*, *::before, *::after { box-sizing: border-box; }
html, body { margin: 0; padding: 0; }
body {
  font-family: 'DM Sans', system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: #fff;
}

/* ─── UTILITIES ─────────────────────────────── */
.container {
  width: min(1160px, calc(100% - 48px));
  margin: 0 auto;
}
.hidden  { display: none; }
.center  { text-align: center; }
.tiny    { font-size: 12px; }
.muted   { color: var(--muted); }
.dot     { margin: 0 10px; opacity: .55; }

/* ─── TOPBAR ─────────────────────────────────── */
.topbar {
  background: var(--ink);
  color: #d4c9a8;
  font-size: 13px;
  letter-spacing: .01em;
  font-family: 'DM Sans', sans-serif;
}
.topbar-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 0;
}
.pill {
  background: rgba(184,145,60,.22);
  border: 1px solid rgba(184,145,60,.45);
  color: var(--gold-lt);
  padding: 4px 12px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 12px;
  letter-spacing: .04em;
}
.topbar-right { color: rgba(212,201,168,.75); }

/* ─── HEADER ─────────────────────────────────── */
.header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}
.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 0;
  gap: 20px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  text-decoration: none;
  color: inherit;
}
.brand-logo {
  width: 46px;
  height: 46px;
  object-fit: contain;
  border-radius: 50%;
}
.brand-name {
  font-family: 'Playfair Display', serif;
  font-weight: 800;
  font-size: 18px;
  color: var(--forest);
  letter-spacing: -.01em;
  line-height: 1.1;
}
.brand-tag {
  font-size: 11px;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: .06em;
  text-transform: uppercase;
}
.nav {
  display: flex;
  gap: 20px;
  align-items: center;
}
.nav a {
  text-decoration: none;
  color: rgba(26,26,26,.72);
  font-weight: 500;
  font-size: 14px;
  letter-spacing: .01em;
  transition: color .2s;
}
.nav a:hover { color: var(--forest); }

/* ─── BUTTONS ────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-radius: 999px;
  padding: 10px 20px;
  font-weight: 600;
  font-size: 14px;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  user-select: none;
  transition: filter .2s, background .2s;
  font-family: 'DM Sans', sans-serif;
  letter-spacing: .01em;
}
.btn-lg   { padding: 13px 24px; font-size: 15px; }
.btn-full { width: 100%; }

.btn-primary {
  background: var(--forest);
  color: #fff;
}
.btn-primary:hover { filter: brightness(1.12); }

.btn-gold {
  background: var(--gold);
  color: #fff;
}
.btn-gold:hover { filter: brightness(1.1); }

.btn-outline {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,.5);
}
.btn-outline:hover { background: rgba(255,255,255,.12); }

.btn-dark {
  background: var(--ink);
  color: #e8dfc4;
  border-color: rgba(184,145,60,.35);
}
.btn-dark:hover { filter: brightness(1.12); }

/* ─── SECTION HEAD ───────────────────────────── */
.section-head {
  margin-bottom: 40px;
}
.section-head h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 10px;
  font-size: clamp(28px, 3vw, 40px);
  letter-spacing: -.02em;
  color: var(--forest);
  font-weight: 800;
}
.section-head p {
  margin: 0;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
  max-width: 560px;
}

/* ─── HERO ───────────────────────────────────── */
.hero {
  position: relative;
  min-height: 580px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(160deg, rgba(7,26,12,.88) 0%, rgba(5,14,8,.72) 100%),
    url("hero.jpg") center / cover no-repeat;
}
.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 900px 500px at 15% 50%, rgba(184,145,60,.08), transparent 70%);
  pointer-events: none;
}
.hero-content {
  position: relative;
  z-index: 2;
  padding: 90px 0;
}
.hero-left { max-width: 780px; }

.hero h1 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 6px;
  color: #fff;
  font-size: clamp(36px, 4.5vw, 64px);
  line-height: 1.05;
  letter-spacing: -.03em;
  font-weight: 900;
}
.hero-tagline {
  display: inline-block;
  color: var(--gold-lt);
  font-family: 'Playfair Display', serif;
  font-size: clamp(18px, 2vw, 26px);
  font-style: italic;
  font-weight: 400;
  margin: 0 0 20px;
  letter-spacing: .01em;
}
.hero-sub {
  margin: 0 0 28px;
  color: rgba(255,255,255,.82);
  font-size: 17px;
  line-height: 1.65;
  max-width: 680px;
}
.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}
.hero-foot {
  margin-top: 24px;
  color: rgba(255,255,255,.60);
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 0;
  flex-wrap: wrap;
}
.hero-foot .gold-accent { color: var(--gold-lt); font-weight: 600; }

/* ─── DIVIDER ────────────────────────────────── */
.gold-divider {
  width: 60px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
  margin: 0 0 18px;
}

/* ─── TILES ──────────────────────────────────── */
.tiles { padding: 60px 0 24px; background: var(--cream); }
.tiles-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.tile {
  position: relative;
  display: block;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  aspect-ratio: 1 / 1;
  text-decoration: none;
  border: 1px solid var(--border-g);
}
.tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.03);
  transition: transform .4s ease;
}
.tile-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,14,8,.2), rgba(5,14,8,.72));
}
.tile-text {
  position: absolute;
  left: 20px;
  bottom: 20px;
  color: #fff;
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(18px, 2vw, 26px);
  letter-spacing: .01em;
}
.tile-sub {
  position: absolute;
  left: 20px;
  bottom: 48px;
  color: var(--gold-lt);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.tile:hover img { transform: scale(1.09); }
.tile-accent {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}

/* ─── SERVICES ───────────────────────────────── */
.services { padding: 80px 0; }
.cards-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: 0 4px 24px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
  transition: box-shadow .25s, border-color .25s;
}
.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.card:hover {
  box-shadow: 0 8px 40px rgba(0,0,0,.12);
  border-color: var(--border-g);
}
.card-icon {
  width: 40px;
  height: 40px;
  background: rgba(15,61,30,.08);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
  font-size: 20px;
}
.card h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 10px;
  font-size: 18px;
  color: var(--forest);
  font-weight: 700;
}
.card p {
  margin: 0 0 12px;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}
.list {
  margin: 0;
  padding-left: 18px;
  color: rgba(26,26,26,.78);
  line-height: 1.65;
  font-size: 14px;
}
.list.compact { padding-left: 16px; }
.list li { margin: 5px 0; }

/* ─── CAPABILITIES ───────────────────────────── */
.capabilities {
  padding: 80px 0;
  background: var(--cream);
  border-top: 1px solid rgba(15,61,30,.08);
  border-bottom: 1px solid rgba(15,61,30,.08);
}
.cap-inner {
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 40px;
  align-items: start;
}
.cap-left h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--forest);
  font-weight: 800;
  letter-spacing: -.02em;
}
.cap-lead {
  margin: 10px 0 20px;
  color: var(--muted);
  line-height: 1.65;
  font-size: 16px;
}
.cap-bullets {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.cap-pill {
  padding: 9px 14px;
  border-radius: 999px;
  border: 1px solid var(--border-g);
  background: #fff;
  font-weight: 600;
  font-size: 13px;
  color: var(--forest);
  transition: background .2s;
}
.cap-pill:hover { background: rgba(184,145,60,.08); }
.cap-box {
  border: 1px solid var(--border-g);
  background: #fff;
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  margin-bottom: 16px;
  position: relative;
  overflow: hidden;
}
.cap-box::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.cap-box h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 12px;
  font-size: 16px;
  color: var(--forest);
  font-weight: 700;
}

/* ─── MISSION ────────────────────────────────── */
.mission { padding: 80px 0; }
.mission-inner h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 8px;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--forest);
  letter-spacing: -.02em;
  font-weight: 800;
}
.mission-lead {
  margin: 0 0 36px;
  font-size: 18px;
  line-height: 1.65;
  color: var(--muted);
  max-width: 860px;
}
.mission-points {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.mission-card {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px;
  background: #fff;
  box-shadow: 0 4px 20px rgba(0,0,0,.06);
  position: relative;
  overflow: hidden;
}
.mission-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), transparent);
}
.mission-card h3 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 8px;
  font-size: 17px;
  color: var(--forest);
  font-weight: 700;
}
.mission-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.6;
  font-size: 14px;
}

/* ─── TEAM STRIP ─────────────────────────────── */
.team {
  padding: 60px 0;
  background: var(--ink);
  color: #e8dfc4;
}
.team h2 {
  font-family: 'Playfair Display', serif;
  font-size: clamp(24px, 3vw, 36px);
  font-weight: 800;
  margin: 0 0 6px;
  color: #fff;
}
.team-lead {
  margin: 0 0 32px;
  color: rgba(212,201,168,.72);
  font-size: 15px;
}
.team-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 20px;
}
.team-card {
  border: 1px solid rgba(184,145,60,.22);
  border-radius: var(--radius);
  padding: 22px;
  background: rgba(255,255,255,.04);
}
.team-name {
  font-family: 'Playfair Display', serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--gold-lt);
  margin: 0 0 4px;
}
.team-title {
  font-size: 12px;
  color: rgba(212,201,168,.6);
  letter-spacing: .06em;
  text-transform: uppercase;
  font-weight: 600;
  margin: 0 0 12px;
}
.team-email {
  font-size: 14px;
  color: rgba(212,201,168,.85);
}
.team-email a {
  color: var(--gold-lt);
  text-decoration: none;
}
.team-email a:hover { text-decoration: underline; }

/* ─── CONTACT ────────────────────────────────── */
.contact {
  padding: 80px 0;
  background: #fff;
  border-top: 1px solid rgba(15,61,30,.06);
}
.contact-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: start;
}
.contact-left h2 {
  font-family: 'Playfair Display', serif;
  margin: 0 0 8px;
  font-size: clamp(26px, 3vw, 38px);
  color: var(--forest);
  font-weight: 800;
}
.contact-lead {
  margin: 10px 0 20px;
  color: var(--muted);
  line-height: 1.65;
}
.contact-info {
  border: 1px solid var(--border-g);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--cream);
  box-shadow: var(--shadow);
  line-height: 2;
}
.contact-info a { color: var(--forest); }
.form {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 24px;
  background: #fff;
  box-shadow: var(--shadow);
}
.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 14px;
}
.form label {
  font-weight: 600;
  font-size: 13px;
  color: var(--forest);
  letter-spacing: .01em;
}
.form input, .form select, .form textarea {
  width: 100%;
  border: 1px solid rgba(26,26,26,.16);
  border-radius: 10px;
  padding: 11px 14px;
  font-family: 'DM Sans', sans-serif;
  font-size: 14px;
  outline: none;
  color: var(--text);
  background: #fafaf8;
  transition: border-color .2s, box-shadow .2s;
}
.form input:focus, .form select:focus, .form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,145,60,.15);
  background: #fff;
}

/* ─── BRAND CLOSE ────────────────────────────── */
.brand-close {
  position: relative;
  padding: 90px 0;
  background: radial-gradient(ellipse 1100px 600px at 50% 30%, rgba(15,61,30,.35), var(--ink) 70%);
  overflow: hidden;
}
.brand-close::before {
  content: '';
  position: absolute;
  inset: 0;
  background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23b8913c' fill-opacity='0.04'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}
.brand-close-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent, rgba(5,14,8,.5));
}
.brand-close-inner {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  gap: 16px;
}
.brand-close-logo {
  width: min(440px, 75vw);
  height: auto;
  filter: drop-shadow(0 20px 60px rgba(0,0,0,.6));
  border-radius: 50%;
}
.brand-close-tag {
  margin: 0;
  color: var(--gold-lt);
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  font-size: clamp(16px, 2vw, 22px);
  font-style: italic;
  letter-spacing: .01em;
}
.brand-close-name {
  color: rgba(255,255,255,.6);
  font-size: 13px;
  letter-spacing: .1em;
  text-transform: uppercase;
  font-weight: 500;
}

/* ─── FOOTER ─────────────────────────────────── */
.footer {
  background: var(--ink);
  color: #d4c9a8;
  padding: 22px 0;
  border-top: 1px solid rgba(184,145,60,.2);
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}
.footer-name {
  font-family: 'Playfair Display', serif;
  font-weight: 700;
  color: var(--gold-lt);
}

/* ─── RESPONSIVE ─────────────────────────────── */
@media (max-width: 980px) {
  .nav { display: none; }
  .tiles-grid { grid-template-columns: 1fr; }
  .cards-grid { grid-template-columns: 1fr; }
  .mission-points { grid-template-columns: 1fr; }
  .cap-inner { grid-template-columns: 1fr; }
  .contact-inner { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  .topbar-right { display: none; }
  .hero-actions { flex-direction: column; }
}
