/* ============ GlobalRock Limited ============ */
:root {
  --ink: #1c1a17;
  --ink-soft: #4c463f;
  --paper: #faf8f4;
  --paper-tint: #f1ece3;
  --dark: #201d19;
  --dark-2: #2a2621;
  --gold: #d9a441;
  --gold-deep: #b8842a;
  --line: #e2dbcf;
  --radius: 14px;
  --font-display: "Sora", "Avenir Next", sans-serif;
  --font-body: "Inter", "Helvetica Neue", sans-serif;
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--paper);
  line-height: 1.65;
  font-size: 1.0625rem;
}

.container { max-width: 1100px; margin: 0 auto; padding: 0 1.5rem; }

h1, h2, h3 { font-family: var(--font-display); line-height: 1.15; }
h1 { font-size: clamp(2.2rem, 5vw, 3.4rem); font-weight: 800; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.3rem); font-weight: 700; margin-bottom: 1rem; }
h3 { font-size: 1.15rem; font-weight: 600; margin-bottom: .5rem; }
p + p { margin-top: 1rem; }

.eyebrow {
  font-family: var(--font-display);
  text-transform: uppercase;
  letter-spacing: .18em;
  font-size: .78rem;
  font-weight: 600;
  color: var(--gold-deep);
  margin-bottom: .75rem;
}

/* ============ Header ============ */
.site-header {
  position: sticky; top: 0; z-index: 50;
  background: rgba(32, 29, 25, .96);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(217, 164, 65, .25);
}
.nav-wrap { display: flex; align-items: center; justify-content: space-between; height: 64px; }
.brand { display: flex; align-items: center; gap: .6rem; text-decoration: none; }
.brand-mark {
  width: 22px; height: 22px;
  background: var(--gold);
  clip-path: polygon(50% 0, 100% 100%, 0 100%);
}
.brand-text {
  font-family: var(--font-display);
  font-weight: 800; letter-spacing: .06em;
  color: #fff; font-size: 1.05rem;
}
.brand-text em { font-style: normal; color: var(--gold); }
.site-nav { display: flex; align-items: center; gap: 1.4rem; }
.site-nav a {
  color: #d8d2c8; text-decoration: none; font-size: .92rem; font-weight: 500;
}
.site-nav a:hover { color: var(--gold); }
.nav-cta {
  background: var(--gold); color: var(--dark) !important;
  padding: .45rem 1rem; border-radius: 999px; font-weight: 600;
}
.nav-cta:hover { background: #e6b558; }
.nav-toggle {
  display: none; background: none; border: none; cursor: pointer;
  color: var(--gold); font-size: 1.7rem; line-height: 1; padding: .3rem .5rem;
}

/* ============ Hero ============ */
.hero {
  background:
    radial-gradient(1200px 500px at 80% -10%, rgba(217,164,65,.18), transparent 60%),
    linear-gradient(160deg, var(--dark) 0%, var(--dark-2) 55%, #35302a 100%);
  color: #f4efe6;
  padding: 7rem 0 6rem;
  position: relative;
  overflow: hidden;
}
.hero::after {
  content: "";
  position: absolute; inset: auto 0 0 0; height: 120px;
  background: linear-gradient(175deg, transparent 48%, var(--paper) 49%);
}
.hero-inner { max-width: 760px; position: relative; z-index: 1; }
.hero .eyebrow { color: var(--gold); }
.hero .lede { margin-top: 1.25rem; font-size: 1.15rem; color: #cfc8bb; }
.hero-actions { margin-top: 2.25rem; display: flex; gap: 1rem; flex-wrap: wrap; }

.btn {
  display: inline-block; text-decoration: none; font-weight: 600;
  font-family: var(--font-display); font-size: .95rem;
  padding: .8rem 1.6rem; border-radius: 999px;
  transition: transform .15s ease, background .15s ease;
  border: none; cursor: pointer;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary { background: var(--gold); color: var(--dark); }
.btn-primary:hover { background: #e6b558; }
.btn-ghost { color: #f4efe6; border: 1.5px solid rgba(244,239,230,.4); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* ============ Sections ============ */
.section { padding: 5rem 0; }
.section-tint { background: var(--paper-tint); }
.section-dark { background: var(--dark); color: #ece6da; }
.section-dark h2 { color: #fff; }
.section-dark .eyebrow { color: var(--gold); }
.section-intro { max-width: 640px; margin-bottom: 1.75rem; color: var(--ink-soft); }

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

/* ============ Fact card ============ */
.fact-card {
  background: var(--dark); color: #ece6da;
  border-radius: var(--radius); padding: 1.75rem;
  border: 1px solid var(--line);
  border-top: 4px solid var(--gold);
}
.fact-card h3 { color: var(--gold); margin-bottom: 1rem; }
.fact-card dl div {
  display: flex; justify-content: space-between; gap: 1rem;
  padding: .55rem 0; border-bottom: 1px solid rgba(255,255,255,.08);
}
.fact-card dl div:last-child { border-bottom: none; }
.fact-card dt { color: #a89f90; font-size: .85rem; }
.fact-card dd { text-align: right; font-weight: 500; font-size: .9rem; }

/* ============ Mission / Vision ============ */
.mv-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; }
.mv-card {
  background: var(--dark-2); border-radius: var(--radius);
  padding: 1.75rem; border-top: 3px solid var(--gold);
}
.mv-card h3 { color: var(--gold); }
.mv-card p { color: #c9c2b5; font-size: .97rem; }

/* ============ Services ============ */
.card-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 1.5rem; margin-top: 2rem;
}
.service-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 2rem;
  transition: box-shadow .2s ease, transform .2s ease;
}
.service-card:hover {
  box-shadow: 0 12px 30px rgba(28,26,23,.09); border-color: var(--gold-deep);
  transform: translateY(-3px);
}
.service-icon {
  width: 48px; height: 48px; display: grid; place-items: center;
  font-size: 1.4rem; border-radius: 12px;
  background: linear-gradient(140deg, var(--gold), var(--gold-deep));
  margin-bottom: 1.1rem;
}
.service-card p { color: var(--ink-soft); font-size: .97rem; }

/* ============ Chips ============ */
.chip-list { list-style: none; display: flex; flex-wrap: wrap; gap: .8rem; }
.chip-list li {
  background: linear-gradient(140deg, rgba(217,164,65,.20), rgba(184,132,42,.08));
  border: 1.5px solid var(--gold-deep);
  color: #8a6218;
  padding: .6rem 1.35rem; border-radius: 999px;
  font-family: var(--font-display); font-weight: 700; font-size: .95rem;
  letter-spacing: .02em;
  box-shadow: 0 0 14px rgba(217,164,65,.12);
  transition: transform .15s ease, box-shadow .15s ease, border-color .15s ease;
}
.chip-list li:hover {
  transform: translateY(-2px);
  border-color: var(--gold);
  box-shadow: 0 4px 22px rgba(217,164,65,.28);
}

/* ============ Approach ============ */
.approach-grid {
  display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem 3rem; margin-top: 2rem;
}
.approach-item h3 { color: var(--gold-deep); }
.approach-item p { color: var(--ink-soft); font-size: .97rem; }

/* ============ Team ============ */
.team-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.5rem; margin-top: 2rem;
}
.team-card {
  background: #fff; border: 1px solid var(--line);
  border-radius: var(--radius); padding: 1.75rem;
  transition: box-shadow .2s ease, transform .2s ease;
}
.team-card:hover {
  box-shadow: 0 12px 30px rgba(28,26,23,.09); border-color: var(--gold-deep);
  transform: translateY(-3px);
}
.team-lead { border-top: 4px solid var(--gold); }
.team-avatar {
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center; font-size: 1.6rem;
  background: linear-gradient(140deg, var(--paper-tint), var(--line));
  border: 2px solid var(--gold);
  margin-bottom: 1rem;
}
.team-role {
  font-family: var(--font-display); font-size: .78rem; font-weight: 600;
  text-transform: uppercase; letter-spacing: .14em;
  color: var(--gold-deep); margin-bottom: .6rem;
}
.team-group-title {
  font-size: 1.35rem; margin: 2.5rem 0 0;
  padding-bottom: .5rem; border-bottom: 1px solid var(--line);
}
.team-group-title:first-of-type { margin-top: 1.5rem; }
.team-card > p:not(.team-role):not(.team-placeholder) {
  color: var(--ink-soft); font-size: .93rem;
}
.team-placeholder {
  margin-top: 1rem; font-size: .8rem; font-style: italic; color: #a89f90;
}

/* ============ Contact ============ */
.contact-details { font-style: normal; margin-top: 1.5rem; color: #c9c2b5; }
.contact-details a { color: var(--gold); text-decoration: none; }
.contact-details a:hover { text-decoration: underline; }
.contact-form {
  background: var(--dark-2); border-radius: var(--radius); padding: 2rem;
  display: grid; gap: 1rem; border-top: 4px solid var(--gold);
}
.contact-form label {
  display: grid; gap: .35rem;
  font-size: .85rem; font-weight: 600; color: #a89f90;
}
.contact-form input, .contact-form textarea {
  font: inherit; color: #fff;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 8px; padding: .65rem .8rem;
}
.contact-form input:focus, .contact-form textarea:focus {
  outline: 2px solid var(--gold); border-color: transparent;
}
.contact-form button { justify-self: start; margin-top: .5rem; }

/* ============ Footer ============ */
.site-footer {
  background: #16140f; color: #8d857a; font-size: .85rem;
  padding: 1.5rem 0;
}
.footer-wrap { display: flex; justify-content: space-between; flex-wrap: wrap; gap: .5rem; }
.site-footer a { color: var(--gold); text-decoration: none; }

/* ============ Responsive ============ */
@media (max-width: 860px) {
  .split, .mv-grid, .card-grid, .approach-grid { grid-template-columns: 1fr; }
  .team-grid { grid-template-columns: 1fr 1fr; }
  .hero { padding: 5rem 0 4.5rem; }

  /* dropdown menu */
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute; top: 64px; left: 0; right: 0;
    flex-direction: column; align-items: stretch; gap: 0;
    background: rgba(32, 29, 25, .98);
    border-bottom: 1px solid rgba(217, 164, 65, .25);
    padding: .5rem 0 1rem;
    box-shadow: 0 16px 30px rgba(0, 0, 0, .35);
  }
  .site-header.nav-open .site-nav { display: flex; }
  .site-nav a {
    padding: .85rem 1.5rem; font-size: 1rem;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
  }
  .site-nav a:last-child { border-bottom: none; }
  .nav-cta {
    margin: .75rem 1.5rem 0; border-radius: 999px; text-align: center;
  }
}

@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
  .hero-actions .btn { width: 100%; text-align: center; }
  .footer-wrap { flex-direction: column; }
}
