/* Gommans & Co — editorial public site */
:root {
  --ed-ink: #141414;
  --ed-muted: #5c564f;
  --ed-paper: #f4efe6;
  --ed-cream: #fbf8f2;
  --ed-line: rgba(20, 20, 20, 0.12);
  --ed-orange: #e85d04;
  --ed-ntw: #9f1d1d;
  --ed-serif: "Cormorant Garamond", Georgia, "Times New Roman", serif;
  --ed-sans: Outfit, Lexend, system-ui, sans-serif;
}

*,
*::before,
*::after { box-sizing: border-box; }

html { scroll-padding-top: 84px; }

body {
  margin: 0;
  font-family: var(--ed-sans);
  color: var(--ed-ink);
  background: var(--ed-paper);
  line-height: 1.65;
  font-weight: 400;
}
body.nav-open { overflow: hidden; }

img { max-width: 100%; display: block; }

a { color: inherit; }

.gc-lang { display: none; }

.gc-header {
  background: rgba(251, 248, 242, 0.94);
  backdrop-filter: blur(12px);
  padding: 0 6%;
  min-height: 76px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  position: sticky;
  top: 0;
  z-index: 1000;
  border-bottom: 1px solid var(--ed-line);
  box-shadow: none;
}
.gc-brand { display: flex; align-items: center; min-height: 60px; }
.gc-brand img {
  height: 48px;
  width: auto;
  max-width: 200px;
  object-fit: contain;
}
.gc-menu-btn {
  display: none;
  background: none;
  border: 0;
  font-size: 1.6rem;
  cursor: pointer;
  width: 48px;
  height: 48px;
  color: var(--ed-ink);
}
.gc-nav {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 0;
}
.gc-nav a {
  text-decoration: none;
  color: var(--ed-ink);
  font-weight: 500;
  margin-left: 1.6rem;
  font-size: 0.92rem;
  letter-spacing: 0.01em;
  text-transform: none;
  padding: 8px 0;
  position: relative;
}
.gc-nav a::after { display: none; }
.gc-nav a:hover,
.gc-nav a[aria-current="page"] { color: var(--ed-orange); }
.gc-nav-cta {
  border: 0 !important;
  padding: 8px 0 !important;
  color: var(--ed-ink) !important;
  margin-left: 1.6rem;
  border-radius: 0;
}
.gc-nav-cta:hover { background: transparent; color: var(--ed-orange) !important; }
.ed-langs {
  display: inline-flex;
  gap: 0.35rem;
  margin-left: 1.75rem;
  padding-left: 1.25rem;
  border-left: 1px solid var(--ed-line);
  font-size: 0.72rem;
  letter-spacing: 0.08em;
}
.ed-langs a {
  margin-left: 0 !important;
  opacity: 0.45;
  font-size: 0.72rem !important;
  font-weight: 600;
  letter-spacing: 0.06em;
}
.ed-langs a.active,
.ed-langs a:hover { opacity: 1; color: var(--ed-ink) !important; }

.ed-kicker {
  margin: 0 0 0.85rem;
  font-size: 0.72rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--ed-muted);
}
.ed-display {
  font-family: var(--ed-serif);
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 0.95;
  margin: 0;
}
.ed-lead {
  font-size: 1.12rem;
  color: var(--ed-muted);
  max-width: 38rem;
  margin: 1.25rem 0 0;
}
.ed-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem 1.25rem;
  align-items: center;
  margin-top: 1.75rem;
}
.ed-btn {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.8rem 1.35rem;
  background: var(--ed-ink);
  color: #fff;
  text-decoration: none;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}
.ed-btn:hover { color: #fff; filter: brightness(1.08); }
.ed-btn-ntw { background: var(--ed-ntw); }
.ed-btn-ghost {
  background: transparent;
  color: var(--ed-ink);
  border: 1px solid var(--ed-ink);
}
.ed-btn-ghost:hover { color: var(--ed-ink); background: #fff; }
.ed-btn-light {
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,.55);
}
.ed-btn-light:hover { color: #fff; background: rgba(255,255,255,.08); }
.ed-textlink {
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 0.12rem;
}

.ed-hero {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  min-height: calc(100svh - 76px);
  background: var(--ed-paper);
  position: relative;
}
.ed-hero-copy {
  padding: 8vh 8% 7vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.ed-hero h1 {
  font-size: clamp(3.1rem, 8vw, 6.1rem);
}
.ed-hero-photos {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: 1.15fr 0.85fr;
  gap: 8px;
  padding: 8px 8px 8px 0;
  min-height: 100%;
}
.ed-hero-photos img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  background: #ddd;
}
.ed-hero-photos a {
  display: block;
  min-height: 0;
  overflow: hidden;
  height: 100%;
}
.ed-hero-photos a:first-child {
  grid-row: 1 / 3;
}

.ed-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem 1.5rem;
  justify-content: space-between;
  padding: 1.1rem 6%;
  border-top: 1px solid var(--ed-line);
  border-bottom: 1px solid var(--ed-line);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
  color: var(--ed-muted);
  background: var(--ed-cream);
}
.ed-proof strong { color: var(--ed-ink); font-weight: 600; }

.ed-chapter {
  padding: 5.5rem 6%;
}
.ed-chapter-inner {
  max-width: 1180px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 0.95fr 1.05fr;
  gap: 3.5rem 4rem;
  align-items: start;
}
.ed-chapter h2 {
  font-family: var(--ed-serif);
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
  font-weight: 500;
  line-height: 1.05;
  margin: 0 0 1rem;
}
.ed-chapter p { margin: 0 0 1rem; color: var(--ed-muted); }
.ed-ntw { background: var(--ed-cream); }
.ed-gco {
  background: #141414;
  color: #f4efe6;
}
.ed-gco p,
.ed-gco .ed-kicker { color: rgba(244, 239, 230, 0.72); }
.ed-gco h2 { color: #fff; }
.ed-gco .ed-textlink { color: #fff; }
.ed-origins {
  display: grid;
  gap: 0;
  margin: 1.5rem 0 2rem;
}
.ed-origins span {
  font-family: var(--ed-serif);
  font-size: clamp(2.4rem, 5vw, 4rem);
  line-height: 1;
  letter-spacing: -0.03em;
  border-top: 1px solid rgba(255,255,255,.14);
  padding: 0.45rem 0;
}
.ed-origins span:last-child { border-bottom: 1px solid rgba(255,255,255,.14); }

.ed-media img,
.ed-media video {
  width: 100%;
  height: auto;
  object-fit: cover;
  max-height: 520px;
}

.ed-family { background: var(--ed-paper); }
.ed-family-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  margin-top: 2.5rem;
}
.ed-family-grid h3 {
  font-family: var(--ed-serif);
  font-size: 1.8rem;
  font-weight: 500;
  margin: 0 0 0.25rem;
}
.ed-family-grid .role {
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ed-orange);
  margin-bottom: 0.7rem;
}
.ed-family-grid a { color: var(--ed-ink); font-weight: 600; text-decoration: none; border-bottom: 1px solid var(--ed-line); }
.ed-quote {
  font-family: var(--ed-serif);
  font-style: italic;
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  line-height: 1.25;
  margin: 0 0 1.5rem;
  max-width: 40rem;
}

.ed-apps {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 1rem;
  padding: 1.6rem 6%;
  background: #1b1b1b;
  color: #f4efe6;
}
.ed-apps p { margin: 0; max-width: 44rem; color: rgba(244,239,230,.78); }
.ed-apps strong { color: #fff; }

.ed-agenda {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ed-agenda li {
  display: grid;
  grid-template-columns: minmax(9rem, 0.7fr) 1fr;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--ed-line);
}
.ed-agenda li:last-child { border-bottom: 1px solid var(--ed-line); }
.ed-agenda time {
  font-size: 0.82rem;
  color: var(--ed-muted);
}
.ed-agenda strong { display: block; font-size: 1.02rem; }
.ed-agenda span { display: block; color: var(--ed-muted); font-size: 0.9rem; margin-top: 0.15rem; }
.ed-gco .ed-agenda li { border-color: rgba(255,255,255,.14); }
.ntw-empty { color: var(--ed-muted); margin: 0; }
.ntw-more { margin-top: 1.1rem; }
.ntw-more a { font-weight: 600; }

.ed-page-hero {
  padding: 3.5rem 6% 2.25rem;
  max-width: 980px;
}
.ed-page-hero h1 {
  font-family: var(--ed-serif);
  font-size: clamp(2.6rem, 6vw, 4.4rem);
  font-weight: 500;
  line-height: 0.98;
  margin: 0.2rem 0 0.9rem;
}
.ed-page-hero .lead {
  margin: 0;
  max-width: 38rem;
  color: var(--ed-muted);
  font-size: 1.12rem;
}
.ed-page-hero .cta-row,
.ed-page-hero .ed-actions { margin-top: 1.5rem; }
.ed-bleed {
  margin: 0;
  height: min(42vh, 420px);
  overflow: hidden;
}
.ed-bleed img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.ed-main {
  max-width: 980px;
  margin: 0 auto;
  padding: 2.75rem 6% 5rem;
}
.ed-main > .ed-lead,
.silo-lead {
  font-size: 1.15rem;
  color: var(--ed-muted);
  max-width: 40rem;
  margin: 0 0 2rem;
}
.ed-lines {
  list-style: none;
  margin: 0;
  padding: 0;
}
.ed-lines li {
  display: grid;
  grid-template-columns: 4.2rem 1fr;
  gap: 1.25rem;
  padding: 1.6rem 0;
  border-top: 1px solid var(--ed-line);
}
.ed-lines li:last-child { border-bottom: 1px solid var(--ed-line); }
.ed-num {
  font-family: var(--ed-serif);
  font-size: 1.35rem;
  color: #a2978c;
}
.ed-lines h2,
.ed-lines h3 {
  margin: 0 0 0.35rem;
  font-size: 1.2rem;
  font-weight: 600;
}
.ed-lines p { margin: 0; color: var(--ed-muted); }
.ed-lines a { font-weight: 600; }

.ed-footcta {
  margin-top: 2.75rem;
  padding-top: 1.75rem;
  border-top: 1px solid var(--ed-ink);
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  justify-content: space-between;
  align-items: center;
}
.ed-footcta p { margin: 0; max-width: 28rem; color: var(--ed-muted); }
.ed-footcta strong { display: block; color: var(--ed-ink); margin-bottom: 0.2rem; }

.gco-breadcrumbs { margin: 0 0 1.1rem; font-size: 0.82rem; }
.gco-breadcrumbs ol {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 0.2rem;
  margin: 0;
  padding: 0;
}
.gco-breadcrumbs li { display: inline-flex; align-items: center; color: var(--ed-muted); }
.gco-breadcrumbs li + li::before {
  content: "/";
  margin: 0 0.45rem 0 0.2rem;
  color: #b0a89e;
}
.gco-breadcrumbs a { text-decoration: none; font-weight: 600; }
.gco-breadcrumbs span[aria-current="page"] { font-weight: 600; color: var(--ed-ink); }

.story-hero {
  background: var(--ed-paper) !important;
  color: var(--ed-ink) !important;
  text-align: left;
  padding: 3.5rem 6% 1.5rem !important;
  max-width: 980px;
  margin: 0 auto;
}
.story-hero::after { display: none !important; }
.story-hero h1 {
  font-family: var(--ed-serif);
  font-size: clamp(2.6rem, 6vw, 4.3rem);
  font-weight: 500;
  line-height: 0.98;
}
.story-hero p { margin-left: 0 !important; max-width: 38rem; color: var(--ed-muted); opacity: 1 !important; }
.story-nav-years { justify-content: flex-start !important; margin-left: 0 !important; }
.story-nav-years a {
  background: transparent !important;
  color: var(--ed-ink) !important;
  border-color: var(--ed-line) !important;
}
.story-wrap {
  max-width: 980px !important;
  margin: 0 auto 4rem !important;
  padding: 1rem 6% 3rem !important;
  background: transparent !important;
  box-shadow: none !important;
  border-radius: 0 !important;
}

.silo-hero {
  background: var(--ed-paper) !important;
  color: var(--ed-ink);
  padding: 3.5rem 6% 1.5rem;
  min-height: 0;
}
.silo-hero::after { display: none; }
.silo-hero-inner { max-width: 980px; }
.silo-hero h1 {
  font-family: var(--ed-serif);
  font-size: clamp(2.6rem, 6vw, 4.3rem);
  font-weight: 500;
  line-height: 0.98;
  text-shadow: none;
}
.silo-hero p.lead { color: var(--ed-muted); opacity: 1; }
.silo-hero .payoff { display: none; }
.silo-hero .eyebrow { color: var(--ed-muted); letter-spacing: 0.22em; text-transform: uppercase; font-size: 0.72rem; font-weight: 600; }
.silo-hero .gco-breadcrumbs a,
.silo-hero .gco-breadcrumbs span { color: var(--ed-muted); }
.silo-hero .gco-breadcrumbs span[aria-current="page"] { color: var(--ed-ink); }
.silo-cta {
  display: inline-flex;
  align-items: center;
  min-height: 48px;
  padding: 0.75rem 1.2rem;
  text-decoration: none;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.75rem;
}
.silo-cta.primary { background: var(--ed-ink); color: #fff; }
.silo-cta.ghost { border: 1px solid var(--ed-ink); color: var(--ed-ink); }
.silo-wrap {
  max-width: 980px;
  margin: 0 auto 4rem;
  padding: 1.25rem 6% 3.5rem;
  background: transparent;
  box-shadow: none;
  border-radius: 0;
}
.silo-grid,
.silo-card,
.home-deck,
.pillar-card { /* leftover classes shouldn't look like cards if reused */ }

.gc-footer {
  background: #111;
  color: rgba(255,255,255,0.68);
  padding: 3.25rem 6% 1.5rem;
}
.gc-footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
  max-width: 1180px;
  margin: 0 auto;
}
.gc-footer h3 {
  color: #fff;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  margin: 0 0 0.85rem;
  font-weight: 600;
}
.gc-footer ul { list-style: none; margin: 0; padding: 0; }
.gc-footer li { margin: 0 0 0.45rem; }
.gc-footer a { color: rgba(255,255,255,0.68); text-decoration: none; }
.gc-footer a:hover { color: #fff; }
.gc-footer-logos { display: flex; flex-wrap: wrap; gap: 12px; align-items: center; margin-bottom: 0.85rem; }
.gc-footer-logos img { max-height: 44px; max-width: 140px; width: auto; object-fit: contain; }
.gc-footer-tag { font-family: var(--ed-serif); font-style: italic; color: #fff; margin: 0 0 0.5rem; font-size: 1.15rem; }
.gc-footer-brand p { margin: 0; font-size: 0.92rem; }
.gc-footer-apps { margin-top: 1rem; font-size: 0.82rem; }
.gc-footer-social { display: flex; gap: 0.6rem; margin-top: 0.75rem; }
.gc-footer-bottom {
  text-align: center;
  margin-top: 2.25rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255,255,255,0.1);
  font-size: 0.88rem;
}
#gco-status-badge { display: flex; justify-content: center; margin-bottom: 0.65rem; }

.whatsapp-float {
  position: fixed;
  right: 18px;
  bottom: calc(18px + env(safe-area-inset-bottom));
  z-index: 40;
  background: #111;
  color: #fff;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  padding: 0.7rem 0.95rem;
  border-radius: 0;
  text-decoration: none;
  font-weight: 600;
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.whatsapp-float:hover { color: #fff; }

.silo-form label { font-size: .85rem; font-weight: 600; margin-bottom: .35rem; display: block; }
.silo-form .form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem 1.25rem; }
.silo-form .full { grid-column: 1 / -1; }
.silo-form .field,
.silo-form .form-control {
  border-radius: 0;
  padding: .75rem .9rem;
  border: 1px solid #cfc8be;
  width: 100%;
  font: inherit;
  background: #fff;
}
.silo-form .alert-ok { background: #ecfdf5; color: #065f46; border: 1px solid #a7f3d0; padding: .9rem 1rem; }
.silo-form .alert-err { background: #fef2f2; color: #991b1b; border: 1px solid #fecaca; padding: .9rem 1rem; }
.silo-form .field-error { color: #c62828; font-size: .8rem; margin-top: .25rem; }
.silo-form .radio-group { display: flex; gap: 1.5rem; flex-wrap: wrap; }

.contact-page {
  max-width: 1100px !important;
  margin: 0 auto 4rem !important;
  padding: 0 6% 3rem !important;
  background: transparent !important;
  box-shadow: none !important;
}
.contact-shell {
  background: #fff;
  border: 1px solid var(--ed-line);
  border-radius: 0 !important;
  box-shadow: none !important;
}
.contact-aside {
  background: #141414 !important;
}

@media (max-width: 980px) {
  .ed-hero,
  .ed-chapter-inner,
  .ed-family-grid { grid-template-columns: 1fr; }
  .ed-hero { min-height: 0; }
  .ed-hero-photos {
    padding: 0;
    min-height: 52vw;
    grid-template-rows: 220px 160px;
  }
  .gc-footer-grid { grid-template-columns: 1fr 1fr; }
  .ed-agenda li { grid-template-columns: 1fr; gap: 0.25rem; }
}
@media (max-width: 900px) {
  .gc-menu-btn { display: inline-flex; align-items: center; justify-content: center; }
  .gc-header { padding: 8px 4%; }
  .gc-nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    background: var(--ed-cream);
    flex-direction: column;
    align-items: stretch;
    padding: 8px 0 16px;
    box-shadow: 0 14px 28px rgba(0,0,0,0.08);
  }
  .gc-nav.active { display: flex; }
  .gc-nav a,
  .gc-nav a.gc-nav-cta {
    margin: 0;
    padding: 14px 20px;
    width: 100%;
    border-bottom: 1px solid var(--ed-line);
  }
  .ed-langs {
    margin: 12px 20px 4px;
    padding: 0;
    border: 0;
  }
  .ed-chapter, .ed-hero-copy, .ed-proof, .ed-apps { padding-left: 5%; padding-right: 5%; }
}
@media (max-width: 700px) {
  .gc-footer-grid { grid-template-columns: 1fr; }
  .whatsapp-float span { display: none; }
  .silo-form .form-grid { grid-template-columns: 1fr; }
  .ed-hero h1 { font-size: 3rem; }
}
