/* TGB Management Services — Launch tier static site
   Sharp & corporate, navy & steel, Archivo, structured grid. */

@import url("https://fonts.googleapis.com/css2?family=Archivo:wght@400;500;600;700;800&display=swap");

:root {
  --navy: #051b3d;
  --navy-mid: #092349;
  --steel: #3d6a9e;
  --steel-bright: #4a7cba;
  --steel-dark: #2f5580;
  --grey-bg: #eef1f5;
  --white: #ffffff;
  --ink: #111827;
  --muted: #5a6478;
  --line: #d8dee8;
  --maxw: 1140px;
  --radius: 4px;
  --font: "Archivo", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --header-pad-y: 10px;
  --header-logo-h: 108px;
}

* { box-sizing: border-box; }

html {
  -webkit-text-size-adjust: 100%;
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font);
  color: var(--ink);
  background: var(--white);
  line-height: 1.65;
  font-size: 16px;
}

img { max-width: 100%; height: auto; display: block; }

a { color: var(--steel-bright); }

.container {
  width: 100%;
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--navy);
  color: #fff;
  padding: 10px 16px;
  z-index: 100;
}

.skip-link:focus {
  left: 8px;
  top: 8px;
}

.eyebrow {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--muted);
  margin: 0 0 12px;
}

/* Header */
.site-header {
  background: var(--navy);
  color: #fff;
  position: sticky;
  top: 0;
  z-index: 50;
}

.site-header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: calc(var(--header-logo-h) + (2 * var(--header-pad-y)));
  padding-top: var(--header-pad-y);
  padding-bottom: var(--header-pad-y);
}

.brand {
  display: flex;
  align-items: center;
  text-decoration: none;
  color: #fff;
  line-height: 1.15;
  flex-shrink: 0;
}

.brand-logo {
  display: block;
  height: var(--header-logo-h);
  width: auto;
  max-width: min(560px, 82vw);
  background-color: var(--navy);
}

.brand-name {
  display: block;
  font-size: 0.95rem;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.brand-tag {
  display: block;
  font-size: 0.62rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  margin-top: 2px;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 20px;
}

.nav-panel {
  display: flex;
  align-items: center;
  gap: 20px;
}

.nav-panel nav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 4px 20px;
}

.nav-panel nav a {
  text-decoration: none;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.88rem;
  font-weight: 500;
  padding: 6px 0;
}

.nav-panel nav a:hover { color: #fff; }

.nav-toggle {
  display: none;
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.35);
  color: #fff;
  padding: 8px 12px;
  border-radius: var(--radius);
  font-family: var(--font);
  font-weight: 600;
  cursor: pointer;
}

/* Buttons */
.btn {
  display: inline-block;
  background: var(--steel-bright);
  color: #fff;
  text-decoration: none;
  padding: 13px 24px;
  border-radius: var(--radius);
  font-weight: 700;
  font-size: 0.78rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  border: 2px solid transparent;
  cursor: pointer;
  font-family: var(--font);
  transition: background 0.15s ease;
}

.btn:hover { background: var(--steel-dark); }

.btn-navy {
  background: var(--navy);
  color: #fff;
}

.btn-navy:hover { background: var(--navy-mid); }

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

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

.btn-outline-light {
  background: transparent;
  color: #fff;
  border-color: rgba(255, 255, 255, 0.55);
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: #fff;
}

.btn-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 28px;
}

/* Hero */
.hero {
  background: var(--white);
  padding: 56px 0 64px;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}

.hero h1 {
  font-size: clamp(2rem, 4.5vw, 2.85rem);
  line-height: 1.08;
  font-weight: 800;
  letter-spacing: -0.02em;
  text-transform: uppercase;
  margin: 0 0 20px;
}

.hero h1 .accent { color: var(--steel-bright); }

.hero-lead {
  font-size: 1.05rem;
  color: var(--muted);
  max-width: 44ch;
  margin: 0;
}

.hero-image {
  border-radius: var(--radius);
  overflow: hidden;
  aspect-ratio: 4 / 3;
  background: var(--grey-bg);
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

/* Stats bar */
.stats-bar {
  background: var(--navy);
  color: #fff;
  padding: 36px 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  text-align: center;
}

.stat-value {
  display: block;
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 4px;
}

.stat-label {
  font-size: 0.82rem;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 500;
}

/* Sections */
section { padding: 72px 0; }

section h2 {
  font-size: clamp(1.5rem, 3vw, 2rem);
  font-weight: 800;
  letter-spacing: -0.02em;
  margin: 0 0 16px;
  color: var(--ink);
}

.section-lead {
  font-size: 1.02rem;
  color: var(--muted);
  max-width: 52ch;
  margin: 0;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 48px;
  align-items: center;
}

.about-portrait {
  aspect-ratio: 4 / 5;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--grey-bg);
}

.about-portrait img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
}

.about-copy p {
  color: var(--muted);
  margin: 0 0 14px;
}

.about-copy p:last-child { margin-bottom: 0; }

/* Services */
.services-section {
  background: var(--grey-bg);
}

.services-head {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: baseline;
  gap: 16px;
  margin-bottom: 36px;
}

.services-head h2 { margin: 0; }

.services-head .hint {
  font-size: 0.95rem;
  color: var(--muted);
  margin: 0;
}

.service-cards {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
}

@media (max-width: 1100px) {
  .service-cards {
    grid-template-columns: repeat(2, 1fr);
  }
}

.service-card {
  background: var(--white);
  border-radius: var(--radius);
  padding: 28px 24px 32px;
  border: 1px solid var(--line);
}

.service-card.featured {
  background: var(--navy);
  color: #fff;
  border-color: var(--navy);
}

.service-card .num {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--steel-bright);
  margin-bottom: 12px;
}

.service-card.featured .num { color: rgba(255, 255, 255, 0.65); }

.service-card h3 {
  font-size: 1.15rem;
  font-weight: 800;
  margin: 0 0 12px;
}

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

.service-card.featured p { color: rgba(255, 255, 255, 0.78); }

/* Pricing */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  margin-top: 36px;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 28px 24px;
}

.pricing-card.featured {
  border-color: var(--steel-bright);
  box-shadow: 0 8px 32px rgba(61, 106, 158, 0.12);
}

.pricing-card h3 {
  margin: 0 0 8px;
  font-size: 1.1rem;
  font-weight: 800;
}

.pricing-card .price {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--navy);
  margin: 0 0 4px;
}

.pricing-card .price-note {
  font-size: 0.82rem;
  color: var(--muted);
  margin: 0 0 16px;
}

.pricing-card ul {
  margin: 0 0 24px;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.92rem;
}

.pricing-card li { margin-bottom: 6px; }

/* Testimonial */
.testimonial {
  text-align: center;
  max-width: 720px;
  margin: 0 auto;
}

.quote-mark {
  font-size: 4rem;
  line-height: 0.6;
  color: var(--steel-bright);
  font-weight: 800;
  margin-bottom: 8px;
}

.testimonial blockquote {
  margin: 0 0 20px;
  font-size: clamp(1.15rem, 2.5vw, 1.45rem);
  font-weight: 500;
  line-height: 1.55;
  color: var(--ink);
  border: none;
  padding: 0;
}

.testimonial cite {
  font-style: normal;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--steel-bright);
}

/* CTA band */
.cta-band {
  background: var(--navy);
  color: #fff;
  padding: 0;
}

.cta-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  min-height: 340px;
}

.cta-copy {
  padding: 56px 24px 56px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.cta-band .container-wide {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}

.cta-band h2 {
  color: #fff;
  font-size: clamp(2rem, 4vw, 2.6rem);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  margin: 0 0 14px;
}

.cta-band p {
  color: rgba(255, 255, 255, 0.78);
  max-width: 38ch;
  margin: 0 0 28px;
}

.cta-image {
  margin-right: calc(-1 * ((100vw - min(100vw, var(--maxw))) / 2 + 24px));
  min-height: 280px;
}

.cta-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.site-footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.65);
  padding: 20px 0 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.82rem;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
}

.footer-links {
  display: flex;
  gap: 20px;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-weight: 600;
}

.footer-links a:hover { color: #fff; }

.footer-studio {
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  padding: 14px 0 18px;
}

.footer-studio .container {
  display: flex;
  justify-content: center;
}

.studio-credit {
  display: inline-block;
  color: rgba(255, 255, 255, 0.55);
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.02em;
  text-align: center;
}

.studio-credit:hover {
  color: rgba(255, 255, 255, 0.85);
}

.studio-credit-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  line-height: 1.35;
}

.studio-credit-brand-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.studio-credit-brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  color: #fff;
}

.studio-credit:hover .studio-credit-brand {
  color: #fff;
}

.studio-credit-brand-row img {
  width: 24px;
  height: 24px;
  border-radius: 6px;
  flex-shrink: 0;
}

/* Contact page */
.page-head {
  background: var(--navy);
  color: #fff;
  padding: 48px 0;
}

.page-head h1 {
  margin: 0 0 8px;
  font-size: clamp(1.8rem, 4vw, 2.4rem);
  font-weight: 800;
  text-transform: uppercase;
}

.page-head p {
  margin: 0;
  color: rgba(255, 255, 255, 0.78);
  max-width: 52ch;
}

.contact-form {
  max-width: 520px;
  margin: 0 auto;
}

.form-group { margin-bottom: 18px; }

.form-group label {
  display: block;
  font-weight: 600;
  font-size: 0.88rem;
  margin-bottom: 6px;
}

.form-group input,
.form-group textarea {
  width: 100%;
  padding: 12px 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: 1rem;
}

.form-group textarea { min-height: 140px; resize: vertical; }

.honeypot {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  overflow: hidden;
}

.privacy-body {
  max-width: 680px;
  margin: 0 auto;
}

.privacy-body h2 {
  font-size: 1.2rem;
  margin-top: 32px;
}

/* Mobile nav */
@media (max-width: 900px) {
  .hero-grid,
  .about-grid,
  .cta-grid {
    grid-template-columns: 1fr;
  }

  .service-cards,
  .pricing-grid,
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .stats-grid { gap: 28px; }

  .cta-copy { padding: 48px 0 32px; }

  .cta-image {
    margin-right: 0;
    min-height: 220px;
  }

  .nav-toggle { display: block; }

  .nav-panel {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: flex-start;
    padding-bottom: 16px;
  }

  .nav-panel.is-open { display: flex; }

  .site-header .container {
    flex-wrap: wrap;
    --header-pad-y: 8px;
    --header-logo-h: 76px;
  }

  .brand-logo {
    max-width: min(420px, 78vw);
  }
}

@media (min-width: 901px) {
  .nav-panel { display: flex !important; align-items: center; gap: 20px; }
}

@media (max-width: 600px) {
  section { padding: 52px 0; }
  .hero { padding-top: 40px; }
}
