/* GSAAS — parent brand holding page
   Aesthetic: serious, architectural, quietly confident. A company that builds things to last.
   Deep slate + cool off-white + a single deliberate accent. Restrained. */

@import url('https://fonts.googleapis.com/css2?family=Fraunces:opsz,wght@9..144,400;9..144,500;9..144,600&family=Inter:wght@400;500;600&display=swap');

:root {
  --ink: #14181f;
  --ink-soft: #424a57;
  --ink-faint: #717a89;
  --bg: #f4f5f3;
  --card: #ffffff;
  --line: #e1e3df;
  --accent: #1f6f5c;       /* deep considered green — matches the brand logo (primary) */
  --accent-light: #2f8a73; /* lighter green — subtle accent */
  --accent-deep: #134336;  /* forest green — depth / shadow accent */
  --max: 760px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', system-ui, sans-serif;
  color: var(--ink); background: var(--bg);
  line-height: 1.65; font-size: 17px;
  -webkit-font-smoothing: antialiased;
}
.wrap { max-width: var(--max); margin: 0 auto; padding: 0 24px; }

.site-head {
  border-bottom: 1px solid var(--line);
  background: rgba(244,245,243,0.85); backdrop-filter: blur(8px);
  position: sticky; top: 0; z-index: 10;
}
.site-head .wrap {
  display: flex; align-items: center; justify-content: space-between;
  height: 66px; max-width: 1000px;
}
.brand {
  display: flex; align-items: center; gap: 11px;
}
.brand-mark { height: 34px; width: auto; display: block; }
.nav-links { display: flex; gap: 24px; }
.nav-links a { color: var(--ink-soft); text-decoration: none; font-size: 15px; font-weight: 500; }
.nav-links a:hover { color: var(--accent); }

.hero { padding: 104px 0 64px; position: relative; overflow: hidden; }
.hero::before {
  content: ""; position: absolute; top: -140px; right: -120px;
  width: 460px; height: 460px; border-radius: 50%;
  background: radial-gradient(circle, rgba(31,111,92,0.09), transparent 68%);
}
.hero .wrap { max-width: 820px; position: relative; }
.hero-logo { height: 64px; width: auto; margin-bottom: 28px; display: block; }
.eyebrow {
  display: inline-block; font-size: 13px; font-weight: 600;
  letter-spacing: 0.10em; text-transform: uppercase; color: var(--accent);
  margin-bottom: 22px;
}
.hero h1 {
  font-family: 'Fraunces', serif; font-weight: 600;
  font-size: clamp(38px, 5.5vw, 58px); line-height: 1.08;
  letter-spacing: -0.02em; margin-bottom: 24px; max-width: 18ch;
}
.hero .lede { font-size: 20px; color: var(--ink-soft); max-width: 56ch; }

.section { padding: 36px 0; }
.section .wrap { max-width: 820px; }
.section h2 {
  font-family: 'Fraunces', serif; font-weight: 600; font-size: 28px;
  letter-spacing: -0.015em; margin-bottom: 14px;
}
.section p { color: var(--ink-soft); margin-bottom: 16px; max-width: 60ch; }

.principles { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; margin-top: 12px; }
.principle {
  background: var(--card); border: 1px solid var(--line); border-radius: 12px; padding: 24px;
}
.principle .icon {
  width: 34px; height: 34px; border-radius: 8px; background: rgba(31,111,92,0.10);
  display: flex; align-items: center; justify-content: center; margin-bottom: 14px;
  color: var(--accent); font-family: 'Fraunces',serif; font-weight: 600; font-size: 17px;
}
.principle h3 { font-size: 16px; margin-bottom: 6px; letter-spacing: -0.01em; }
.principle p { font-size: 14.5px; color: var(--ink-soft); margin: 0; }

.band {
  margin: 56px 0; padding: 48px 0;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  background: var(--card);
}
.band .wrap { max-width: 820px; }
.band h2 { font-family:'Fraunces',serif; font-weight:600; font-size:26px; letter-spacing:-0.015em; margin-bottom:12px; }
.band p { font-size: 18px; color: var(--ink-soft); max-width: 60ch; margin: 0; }

.contact-row { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; margin-top: 8px; }
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--ink); color: #fff; text-decoration: none;
  font-weight: 600; font-size: 16px; padding: 13px 24px; border-radius: 10px;
  transition: background .15s ease, transform .15s ease;
}
.btn:hover { background: var(--accent); transform: translateY(-1px); }

.site-foot { border-top: 1px solid var(--line); padding: 32px 0; margin-top: 48px; font-size: 14px; color: var(--ink-faint); }
.site-foot .wrap { max-width: 1000px; display: flex; flex-wrap: wrap; gap: 8px 24px; align-items: center; justify-content: space-between; }
.site-foot a { color: var(--ink-soft); text-decoration: none; }
.site-foot a:hover { color: var(--accent); }

@media (max-width: 680px) {
  .principles { grid-template-columns: 1fr; }
  .hero { padding: 72px 0 48px; }
}
