/* Global Park — interface editorial */
:root {
  --ink: #102228;
  --ink-soft: #3d4f55;
  --paper: #f3efe6;
  --paper-2: #e8e2d6;
  --teal: #163a44;
  --teal-deep: #0c242c;
  --gold: #c4a15a;
  --white: #fbfaf6;
  --gutter: clamp(20px, 5vw, 40px);
  --wrap: 1120px;
  --header: 72px;
  --serif: "Cormorant Garamond", "Times New Roman", serif;
  --sans: "Outfit", "Segoe UI", sans-serif;
}

*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header) + 10px);
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.6;
  overflow-x: clip;
}

img { max-width: 100%; height: auto; display: block; }
h1, h2, h3 { font-family: var(--serif); font-weight: 600; letter-spacing: -0.02em; line-height: 1.15; }

a:focus-visible,
.btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.skip-link {
  position: absolute;
  left: 16px;
  top: -80px;
  z-index: 40;
  background: var(--white);
  color: var(--teal-deep);
  padding: 10px 14px;
  font-weight: 600;
  text-decoration: none;
}
.skip-link:focus { top: 12px; }

.wrap { width: min(var(--wrap), 100% - var(--gutter) * 2); margin-inline: auto; }

.eyebrow {
  margin: 0 0 10px;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
}
.eyebrow.light { color: #d7b56a; }

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 20;
  background: #fff;
  border-bottom: 1px solid rgba(16, 34, 40, 0.08);
  padding-top: env(safe-area-inset-top, 0);
}
.header-inner {
  width: min(var(--wrap), 100% - var(--gutter) * 2);
  margin: 0 auto;
  min-height: var(--header);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
.logo-link { display: flex; align-items: center; min-height: 44px; flex: 0 0 auto; }
.logo-img { height: 38px; width: auto; }
.nav { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 2px; }
.nav a {
  color: var(--teal);
  text-decoration: none;
  font-size: 0.84rem;
  font-weight: 600;
  letter-spacing: 0.04em;
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  padding: 0 10px;
}
.nav a:hover { color: var(--gold); }

/* Hero */
.hero {
  position: relative;
  isolation: isolate;
  min-height: min(78svh, 640px);
  display: grid;
  align-items: end;
  padding: 56px var(--gutter) 64px;
  color: var(--white);
  background: var(--teal-deep);
}
.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 62% 28%;
  z-index: -2;
  filter: saturate(0.85) contrast(1.05);
}
.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(12, 36, 44, 0.82) 0%, rgba(12, 36, 44, 0.35) 58%, rgba(12, 36, 44, 0.2) 100%),
    linear-gradient(180deg, rgba(12, 36, 44, 0.15) 0%, rgba(12, 36, 44, 0.55) 100%);
}
.hero-inner { width: min(640px, 100%); }
.hero h1 {
  margin: 0 0 16px;
  font-size: clamp(2.4rem, 8vw, 4.4rem);
  font-weight: 700;
}
.hero-lead {
  margin: 0 0 28px;
  font-size: clamp(1.02rem, 2.2vw, 1.2rem);
  max-width: 34rem;
  color: rgba(251, 250, 246, 0.88);
}
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  font-family: var(--sans);
  font-size: 0.92rem;
  font-weight: 600;
  text-decoration: none;
}
.btn-solid { background: var(--gold); color: var(--teal-deep); }
.btn-solid:hover { filter: brightness(1.06); }
.btn-ghost { background: transparent; color: var(--white); border: 1px solid rgba(251, 250, 246, 0.45); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); }

/* Ticker */
.ticker {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
  gap: 8px 14px;
  padding: 14px var(--gutter);
  background: #132f37;
  color: rgba(251, 250, 246, 0.72);
  font-size: 0.82rem;
  letter-spacing: 0.04em;
}
.ticker a { color: var(--white); text-decoration: none; min-height: 44px; display: inline-flex; align-items: center; }
.ticker a:hover { color: var(--gold); }

/* Sections */
.section { padding: clamp(56px, 10vw, 104px) 0; }
.section-ink { background: var(--teal-deep); color: var(--white); }
.section-ink h2, .section-ink h3 { color: var(--white); }
.section-ink p { color: rgba(251, 250, 246, 0.72); }
.section-head { max-width: 36rem; margin-bottom: clamp(32px, 5vw, 48px); }
.section-head h2, .split-copy h2, .section-contact h2 {
  margin: 0 0 14px;
  font-size: clamp(2rem, 5vw, 3.1rem);
}
.section-lead { margin: 0; font-size: 1.05rem; color: var(--ink-soft); }
.section-lead.light { color: rgba(251, 250, 246, 0.72); }

.split {
  display: grid;
  gap: 36px;
  align-items: center;
  margin-bottom: clamp(36px, 6vw, 56px);
}
.split-photo {
  margin: 0;
  border-radius: 4px;
  overflow: hidden;
}
.split-photo img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: saturate(0.9) contrast(1.04);
}
.split-copy h2 { max-width: 14ch; }
.split-copy p { margin: 0 0 14px; color: var(--ink-soft); }

.pillars {
  list-style: none;
  margin: 0;
  padding: 28px 0 0;
  border-top: 1px solid rgba(16, 34, 40, 0.12);
  display: grid;
  gap: 28px;
}
.pillars h3 {
  margin: 0 0 8px;
  font-size: 1.55rem;
}
.pillars p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }

.service-list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(251, 250, 246, 0.12);
}
.service-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 16px;
  padding: 22px 0;
  border-bottom: 1px solid rgba(251, 250, 246, 0.12);
}
.idx {
  font-family: var(--serif);
  font-size: 1.2rem;
  color: var(--gold);
  padding-top: 4px;
}
.service-list h3 { margin: 0 0 6px; font-size: 1.45rem; }
.service-list p { margin: 0; }

.band {
  margin: 0;
  position: relative;
  background: var(--teal-deep);
}
.band img {
  width: 100%;
  height: min(52vw, 420px);
  object-fit: cover;
  object-position: center 35%;
  filter: saturate(0.8) contrast(1.05);
}
.band figcaption {
  position: absolute;
  left: var(--gutter);
  bottom: 20px;
  right: var(--gutter);
  max-width: 28rem;
  margin: 0;
  color: var(--white);
  font-size: 0.9rem;
  text-shadow: 0 1px 12px rgba(0, 0, 0, 0.45);
}

.mosaic {
  display: grid;
  gap: 14px;
}
.mosaic-card {
  background: var(--white);
  padding: 24px 22px 26px;
  border-radius: 4px;
  border-top: 2px solid var(--gold);
}
.mosaic-card h3 { margin: 0 0 8px; font-size: 1.45rem; }
.mosaic-card p { margin: 0; color: var(--ink-soft); font-size: 0.95rem; }
.mosaic-card-photo { padding: 0; overflow: hidden; display: flex; flex-direction: column; }
.mosaic-card-photo img {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  filter: saturate(0.85);
}
.mosaic-card-photo > div { padding: 22px; }

.section-contact {
  background: var(--teal);
  color: var(--white);
}
.section-contact h2 { color: var(--white); }
.contact-grid { display: grid; gap: 40px; }
.work-note { margin: 22px 0 0; color: rgba(251, 250, 246, 0.62); font-size: 0.95rem; }

.contact-panel {
  list-style: none;
  margin: 0;
  padding: 0;
  border-top: 1px solid rgba(251, 250, 246, 0.14);
}
.contact-panel a {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 4px;
  min-height: 72px;
  padding: 16px 0;
  color: var(--white);
  text-decoration: none;
  border-bottom: 1px solid rgba(251, 250, 246, 0.14);
  font-size: 1.05rem;
  font-weight: 500;
}
.contact-panel a span {
  font-size: 0.7rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
}
.contact-panel a:hover { color: var(--gold); }

.footer {
  background: var(--teal-deep);
  color: rgba(251, 250, 246, 0.5);
  padding: 22px 0 calc(22px + env(safe-area-inset-bottom, 0px));
  font-size: 0.8rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}
.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}
.footer p { margin: 0; }

@media (min-width: 720px) {
  .logo-img { height: 44px; }
  .nav a { padding: 0 14px; font-size: 0.9rem; }
  .pillars { grid-template-columns: repeat(3, 1fr); gap: 32px; }
  .service-list { grid-template-columns: 1fr 1fr; column-gap: 48px; }
  .service-list li { grid-template-columns: 56px 1fr; }
  .mosaic { grid-template-columns: 1fr 1fr; }
}

@media (min-width: 960px) {
  .split { grid-template-columns: 1.05fr 0.95fr; gap: 72px; }
  .contact-grid { grid-template-columns: 1fr 1fr; gap: 80px; align-items: end; }
  .mosaic { grid-template-columns: repeat(3, 1fr); }
  .mosaic-card-photo { grid-row: span 2; }
  .mosaic-card-photo img { aspect-ratio: 4 / 5; flex: 1; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
}
