:root {
  --navy: #071522;
  --navy-2: #0d2030;
  --ink: #15202a;
  --muted: #66717a;
  --paper: #f5f3ee;
  --white: #ffffff;
  --gold: #c7a86a;
  --gold-light: #e8d5aa;
  --line: rgba(7, 21, 34, .14);
  --shell: min(1180px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
}
a { color: inherit; }
.site-header {
  position: absolute;
  z-index: 10;
  top: 0;
  left: 50%;
  width: var(--shell);
  min-height: 92px;
  transform: translateX(-50%);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 32px;
  color: white;
  border-bottom: 1px solid rgba(255,255,255,.18);
}
.brand { display: inline-flex; align-items: center; gap: 13px; text-decoration: none; width: max-content; }
.brand-logo { display: block; width: 184px; height: auto; max-width: 100%; }
.brand-mark {
  display: grid;
  width: 35px;
  height: 35px;
  place-items: center;
  border: 1px solid rgba(232,213,170,.75);
  transform: rotate(45deg);
}
.brand-mark span { transform: rotate(-45deg); font-family: Manrope, sans-serif; color: var(--gold-light); font-size: 13px; }
.brand-copy { font-family: Manrope, sans-serif; font-size: 13px; letter-spacing: .21em; white-space: nowrap; }
.brand-copy b { font-weight: 700; }
nav { display: flex; gap: 36px; }
nav a { position: relative; text-decoration: none; font-size: 14px; color: rgba(255,255,255,.75); }
nav a::after { content: ""; position: absolute; left: 0; right: 100%; bottom: -8px; height: 1px; background: var(--gold); transition: right .25s ease; }
nav a:hover { color: white; }
nav a:hover::after { right: 0; }
.header-cta { justify-self: end; font-size: 14px; text-decoration: none; padding-bottom: 4px; border-bottom: 1px solid var(--gold); }

.hero {
  position: relative;
  min-height: 780px;
  height: min(900px, 100svh);
  color: white;
  overflow: hidden;
  background: var(--navy);
}
.hero-image { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; object-position: center; }
.hero-shade { position: absolute; inset: 0; background: linear-gradient(90deg, rgba(3,12,20,.96) 0%, rgba(3,12,20,.83) 31%, rgba(3,12,20,.32) 65%, rgba(3,12,20,.16) 100%), linear-gradient(0deg, rgba(3,12,20,.78), transparent 45%); }
.hero-content { position: absolute; z-index: 2; left: max(32px, calc((100vw - 1180px)/2)); top: 51%; transform: translateY(-46%); max-width: 700px; }
.eyebrow, .section-index { margin: 0 0 31px; font-family: Manrope, sans-serif; font-size: 12px; font-weight: 600; letter-spacing: .18em; text-transform: uppercase; }
.eyebrow { display: flex; align-items: center; gap: 12px; color: var(--gold-light); }
.eyebrow span { display: inline-block; width: 38px; height: 1px; background: var(--gold); }
h1, h2, h3, p { margin-top: 0; }
h1, h2 { font-family: Manrope, sans-serif; letter-spacing: -.04em; }
h1 { margin-bottom: 27px; font-size: clamp(54px, 6.2vw, 92px); font-weight: 600; line-height: .99; }
h1 em { color: var(--gold-light); font-family: Georgia, serif; font-weight: 400; }
.hero-intro { max-width: 620px; margin-bottom: 40px; font-size: 19px; color: rgba(255,255,255,.75); line-height: 1.65; }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; }
.button { display: inline-flex; align-items: center; justify-content: center; gap: 19px; min-height: 54px; padding: 0 24px; font-size: 14px; font-weight: 600; text-decoration: none; transition: transform .2s, background .2s, color .2s; }
.button:hover { transform: translateY(-2px); }
.button-primary { color: var(--navy); background: var(--gold-light); }
.button-primary:hover { background: white; }
.button-secondary { color: white; border: 1px solid rgba(255,255,255,.35); }
.button-secondary:hover { border-color: white; }
.hero-note { position: absolute; z-index: 2; bottom: 0; left: 50%; width: var(--shell); transform: translateX(-50%); display: grid; grid-template-columns: repeat(3,1fr); padding: 25px 0; border-top: 1px solid rgba(255,255,255,.18); color: rgba(255,255,255,.7); font-size: 13px; letter-spacing: .06em; }
.hero-note span::before { content: "+"; color: var(--gold); margin-right: 10px; }

.section-shell { width: var(--shell); margin: 0 auto; }
.statement { display: grid; grid-template-columns: 240px 1fr; gap: 70px; padding: 128px 0 138px; }
.section-index { color: #8b754a; }
.statement h2, .section-heading h2, .approach h2, .standards h2, .profile h2, .contact h2 { font-size: clamp(36px, 4.1vw, 60px); font-weight: 600; line-height: 1.13; }
.statement h2 { margin-bottom: 31px; }
.statement h2 span { color: #8f7a51; }
.statement > div > p { max-width: 670px; margin: 0; color: var(--muted); font-size: 18px; }

.expertise { padding-bottom: 140px; }
.section-heading { display: grid; grid-template-columns: 240px 1fr; gap: 70px; margin-bottom: 64px; }
.section-heading h2 { margin: 0; }
.expertise-grid { display: grid; grid-template-columns: 1.13fr 1fr 1fr; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.expertise-card { min-height: 670px; padding: 34px 30px 36px; display: flex; flex-direction: column; justify-content: space-between; border-right: 1px solid var(--line); overflow: hidden; }
.expertise-card:last-child { border-right: 0; }
.featured-card { background: var(--navy); color: white; margin-top: -20px; margin-bottom: -20px; padding: 54px 36px; }
.card-visual { position: relative; height: 205px; flex: 0 0 auto; margin: -34px -30px 34px; overflow: hidden; background: var(--navy-2); }
.featured-card .card-visual { margin: -54px -36px 38px; }
.card-visual::after { content: ""; position: absolute; inset: 0; pointer-events: none; background: linear-gradient(0deg, rgba(7,21,34,.28), transparent 55%); }
.card-visual img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .7s cubic-bezier(.2,.7,.2,1); }
.expertise-card:hover .card-visual img { transform: scale(1.035); }
.card-number { color: var(--gold); font-family: Manrope, sans-serif; font-size: 13px; letter-spacing: .16em; }
.card-kicker { margin-bottom: 8px; color: #8e7a53; font-size: 12px; font-weight: 600; letter-spacing: .15em; text-transform: uppercase; }
.expertise-card h3 { margin-bottom: 20px; font-family: Manrope, sans-serif; font-size: 25px; line-height: 1.25; }
.expertise-card p { color: var(--muted); }
.featured-card p { color: rgba(255,255,255,.65); }
.featured-card .card-kicker, .featured-card .card-number { color: var(--gold-light); }
.expertise-card ul { margin: 25px 0 0; padding: 0; list-style: none; }
.expertise-card li { padding: 10px 0; border-top: 1px solid var(--line); font-size: 14px; }
.featured-card li { border-color: rgba(255,255,255,.14); color: rgba(255,255,255,.78); }

.approach { background: var(--navy); color: white; }
.approach-inner { display: grid; grid-template-columns: .84fr 1.16fr; gap: 100px; padding: 132px 0; }
.section-index.light { color: var(--gold-light); }
.approach h2 { margin-bottom: 25px; }
.approach-copy > p:last-child { color: rgba(255,255,255,.62); font-size: 18px; }
.process-list { margin: 0; padding: 0; list-style: none; counter-reset: none; }
.process-list li { display: grid; grid-template-columns: 54px 1fr; gap: 18px; padding: 24px 0; border-bottom: 1px solid rgba(255,255,255,.15); }
.process-list li:first-child { border-top: 1px solid rgba(255,255,255,.15); }
.process-list span { color: var(--gold); font: 12px Manrope, sans-serif; letter-spacing: .12em; }
.process-list h3 { margin-bottom: 6px; font: 600 20px Manrope, sans-serif; }
.process-list p { margin: 0; color: rgba(255,255,255,.6); }

.standards { display: grid; grid-template-columns: 240px 1fr; gap: 70px; padding: 135px 0; }
.standards h2 { margin-bottom: 55px; }
.standards-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 0 44px; }
.standards-grid article { padding: 25px 0 32px; border-top: 1px solid var(--line); }
.standards-grid span { color: #9a8355; font: 12px Manrope, sans-serif; }
.standards-grid h3 { margin: 20px 0 10px; font: 600 20px Manrope, sans-serif; }
.standards-grid p { margin: 0; color: var(--muted); }

.profile { display: grid; grid-template-columns: 40% 1fr; min-height: 590px; margin-bottom: 130px; background: #e8e3d8; }
.profile-monogram { display: grid; place-items: center; overflow: hidden; color: rgba(7,21,34,.1); background: radial-gradient(circle at 30% 30%, #d7c7a5, transparent 35%), linear-gradient(145deg, #d9d2c4, #b7ad9c); font: 600 clamp(90px, 13vw, 180px) Manrope, sans-serif; letter-spacing: -.12em; }
.profile-copy { padding: 75px 70px; }
.profile h2 { margin-bottom: 8px; }
.profile-role { margin-bottom: 30px; color: #836e46; font-weight: 600; }
.profile-copy > p:not(.section-index):not(.profile-role) { max-width: 620px; color: #555f66; font-size: 18px; }
.profile-links { display: flex; gap: 28px; margin-top: 38px; }
.profile-links a { padding-bottom: 5px; border-bottom: 1px solid #9d8556; text-decoration: none; font-weight: 600; }

.contact { display: grid; grid-template-columns: 240px 1fr; gap: 70px; width: 100%; padding: 130px max(32px, calc((100vw - 1180px)/2)); background: #10283a; color: white; }
.contact h2 { margin-bottom: 25px; }
.contact div > p { max-width: 600px; margin-bottom: 35px; color: rgba(255,255,255,.65); font-size: 18px; }
footer { display: grid; grid-template-columns: auto 1fr auto; align-items: center; gap: 45px; padding: 50px max(32px, calc((100vw - 1180px)/2)); color: rgba(255,255,255,.56); background: #06111b; font-size: 13px; }
.footer-brand { color: white; }
footer p { margin: 0; }
.disclaimer { grid-column: 1 / -1; padding-top: 22px; border-top: 1px solid rgba(255,255,255,.12); }

@media (max-width: 900px) {
  :root { --shell: min(100% - 40px, 720px); }
  .site-header { grid-template-columns: 1fr auto; min-height: 78px; }
  nav { display: none; }
  .hero { min-height: 720px; }
  .hero-content { left: 20px; right: 20px; top: 47%; }
  .hero-note { grid-template-columns: 1fr; gap: 6px; }
  .statement, .section-heading, .standards, .contact { grid-template-columns: 1fr; gap: 20px; }
  .statement { padding: 90px 0; }
  .expertise-grid { grid-template-columns: 1fr; border: 0; gap: 18px; }
  .expertise-card, .featured-card { min-height: auto; margin: 0; border: 1px solid var(--line); padding: 34px 28px; gap: 34px; }
  .card-visual, .featured-card .card-visual { height: 260px; margin: -34px -28px 4px; }
  .approach-inner { grid-template-columns: 1fr; gap: 55px; padding: 90px 0; }
  .standards { padding: 90px 0; }
  .profile { grid-template-columns: 1fr; }
  .profile-monogram { min-height: 330px; }
  .profile-copy { padding: 52px 36px; }
  .contact { padding: 90px 20px; }
  footer { grid-template-columns: 1fr 1fr; }
  footer > p:nth-child(2) { display: none; }
}

@media (max-width: 560px) {
  .header-cta { display: none; }
  .site-header { grid-template-columns: 1fr; }
  .hero { height: 780px; }
  .hero-shade { background: linear-gradient(90deg, rgba(3,12,20,.94), rgba(3,12,20,.52)), linear-gradient(0deg, rgba(3,12,20,.88), transparent 60%); }
  .hero-image { object-position: 62% center; }
  h1 { font-size: 49px; }
  .hero-intro { font-size: 17px; }
  .hero-actions .button { width: 100%; }
  .hero-note span:nth-child(n+3) { display: none; }
  .statement h2, .section-heading h2, .approach h2, .standards h2, .profile h2, .contact h2 { font-size: 34px; }
  .expertise { padding-bottom: 90px; }
  .card-visual, .featured-card .card-visual { height: 220px; }
  .standards-grid { grid-template-columns: 1fr; }
  .profile { margin-bottom: 85px; }
  .profile-monogram { min-height: 260px; }
  .profile-copy { padding: 42px 24px; }
  .profile-links { flex-direction: column; align-items: flex-start; gap: 16px; }
  footer { grid-template-columns: 1fr; gap: 22px; padding: 42px 20px; }
}

/* Compact portfolio: introduction, expertise, contact. */
.hero { height: auto; min-height: 0; padding: 128px 0 44px; }
.hero-content { position: relative; left: auto; right: auto; top: auto; transform: none; width: var(--shell); margin-inline: auto; max-width: 1180px; }
h1 { font-size: clamp(2.375rem, 5vw, 4.25rem); line-height: 1.1; margin-bottom: 18px; }
.eyebrow { margin-bottom: 18px; }
.hero-intro { max-width: 560px; margin-bottom: 24px; font-size: 1.0625rem; }
.expertise { padding-block: 36px 40px; }
.section-heading { display: block; margin-bottom: 24px; }
.section-heading .section-index { margin-bottom: 8px; }
.section-heading h2 { font-size: clamp(1.625rem, 3vw, 2.125rem); }
.expertise-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 18px; border: 0; }
.expertise-card, .featured-card { min-height: 0; margin: 0; padding: 0; display: block; border: 1px solid var(--line); }
.card-visual, .featured-card .card-visual { height: auto; aspect-ratio: 2 / 1; margin: 0; }
.expertise-card > div { padding: 18px; }
.expertise-card h3 { font-size: 1.125rem; margin-bottom: 10px; }
.expertise-card > div > p:last-child { margin-bottom: 0; font-size: 1rem; }
.contact { padding-block: 30px; grid-template-columns: 180px 1fr; gap: 28px; }
.contact h2 { font-size: 1.875rem; margin-bottom: 12px; }
.contact div > p { font-size: 1rem; margin-bottom: 20px; }
.contact .button { margin: 0 8px 8px 0; }
footer { padding-block: 20px; gap: 18px; }
.disclaimer { padding-top: 14px; }
a:focus-visible { outline: 3px solid var(--gold); outline-offset: 4px; }
@media (max-width: 900px) {
  .hero { min-height: 0; height: auto; padding: 110px 0 32px; }
  .hero-content { left: auto; right: auto; top: auto; }
  .expertise-grid { grid-template-columns: 1fr; gap: 12px; }
  .expertise-card, .featured-card { display: grid; grid-template-columns: minmax(110px, 30%) minmax(0, 1fr); gap: 0; align-items: start; }
  .card-visual, .featured-card .card-visual { height: auto; aspect-ratio: 1; margin: 0; }
  .expertise-card > div { padding: 16px; }
  .contact { grid-template-columns: 1fr; gap: 8px; }
  .contact .section-index { margin-bottom: 0; }
}
@media (max-width: 560px) {
  .expertise { padding-block: 28px; }
  .expertise-card h3 { font-size: 1.0625rem; }
  .card-kicker { margin-bottom: 6px; font-size: .75rem; }
  .hero-actions .button { width: auto; }
  .eyebrow { font-size: .75rem; letter-spacing: .08em; }
  .eyebrow span { display: none; }
  .contact .button { width: auto; padding-inline: 16px; }
  footer { padding-block: 20px; }
}
@media (max-width: 380px) {
  .expertise-card, .featured-card { grid-template-columns: 1fr; }
  .card-visual, .featured-card .card-visual { aspect-ratio: 2.4 / 1; }
}
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition: none !important; }
}

/* Market insights */
.text-link { display: inline-flex; align-items: center; gap: 9px; color: #806a43; font-weight: 600; text-decoration: none; border-bottom: 1px solid rgba(128,106,67,.4); }
.text-link:hover { color: var(--navy); border-color: var(--navy); }
.insights-preview { padding: 34px 0 52px; }
.insights-preview .section-heading { align-items: end; }
.insights-preview .section-heading h2 { margin-bottom: 8px; }
.insight-card { display: grid; grid-template-columns: minmax(260px, .82fr) 1.18fr; overflow: hidden; background: white; border: 1px solid var(--line); }
.insight-card-image { min-height: 280px; overflow: hidden; background: var(--navy-2); }
.insight-card-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.insight-card:hover .insight-card-image img { transform: scale(1.025); }
.insight-card-copy { align-self: center; padding: 32px 38px; }
.insight-card-copy h3 { margin-bottom: 13px; font: 600 clamp(1.35rem, 2.4vw, 2rem)/1.25 Manrope, sans-serif; letter-spacing: -.025em; }
.insight-card-copy h3 a { text-decoration: none; }
.insight-card-copy > p:not(.card-kicker) { color: var(--muted); }

.site-header-solid { position: relative; left: auto; width: 100%; min-height: 0; transform: none; color: white; background: var(--navy); border: 0; }
.site-header-wrap { width: var(--shell); min-height: 86px; margin: 0 auto; display: grid; grid-template-columns: 1fr auto 1fr; align-items: center; gap: 32px; border-bottom: 1px solid rgba(255,255,255,.14); }
.site-header-solid nav a { color: rgba(255,255,255,.72); }
.site-header-solid nav a:hover, .site-header-solid nav a[aria-current="page"] { color: white; }

.blog-hero { padding: 90px 0 92px; color: white; background: radial-gradient(circle at 78% 20%, rgba(199,168,106,.14), transparent 32%), var(--navy); }
.blog-hero h1 { max-width: 850px; }
.blog-hero > div > p:last-child { max-width: 720px; margin: 0; color: rgba(255,255,255,.68); font-size: 1.125rem; }
.blog-list { padding: 76px 0 110px; }
.blog-card { display: grid; grid-template-columns: minmax(320px, .95fr) 1.05fr; gap: 48px; align-items: center; padding-bottom: 48px; border-bottom: 1px solid var(--line); }
.blog-card-image { display: block; aspect-ratio: 16 / 9; overflow: hidden; background: var(--navy-2); }
.blog-card-image img { display: block; width: 100%; height: 100%; object-fit: cover; transition: transform .6s ease; }
.blog-card:hover .blog-card-image img { transform: scale(1.025); }
.blog-card h2 { margin-bottom: 18px; font-size: clamp(1.6rem, 2.7vw, 2.35rem); line-height: 1.2; }
.blog-card h2 a { text-decoration: none; }
.blog-card > div > p:not(.card-kicker) { color: var(--muted); font-size: 1.05rem; }

.article-shell { padding-bottom: 100px; }
.article-header { width: min(960px, calc(100vw - 64px)); margin: 0 auto; padding: 86px 0 48px; text-align: center; }
.article-category { display: inline-block; margin-bottom: 20px; color: #806a43; font: 600 .78rem Manrope, sans-serif; letter-spacing: .15em; text-transform: uppercase; text-decoration: none; }
.article-header h1 { margin-bottom: 24px; color: var(--navy); font-size: clamp(2.45rem, 5.5vw, 4.7rem); line-height: 1.06; }
.article-deck { max-width: 800px; margin: 0 auto 26px; color: var(--muted); font-size: 1.16rem; }
.article-meta { display: flex; flex-wrap: wrap; justify-content: center; gap: 8px 20px; color: #7b858c; font-size: .88rem; }
.article-meta > * + *::before { content: "·"; margin-right: 20px; color: var(--gold); }
.article-hero { width: min(1180px, calc(100vw - 64px)); margin: 0 auto 58px; }
.article-hero img { display: block; width: 100%; aspect-ratio: 16 / 9; object-fit: cover; }
.article-hero figcaption { margin-top: 10px; color: #7b858c; font-size: .82rem; }
.article-body { width: min(760px, calc(100vw - 64px)); margin: 0 auto; color: #29343d; font-size: 1.075rem; line-height: 1.82; }
.article-lead { color: var(--navy); font-size: 1.22rem; }
.article-body h2 { margin: 52px 0 18px; color: var(--navy); font-size: clamp(1.55rem, 3vw, 2.05rem); line-height: 1.25; letter-spacing: -.025em; }
.article-body ol { padding-left: 1.35rem; }
.article-body li { margin-bottom: 14px; padding-left: 8px; }
.article-callout { margin: 48px 0; padding: 30px 34px 28px; color: white; background: var(--navy); border-left: 4px solid var(--gold); }
.article-callout p:last-child { margin-bottom: 0; font-size: 1.12rem; }
.article-callout .card-kicker { color: var(--gold-light); }
.article-sources { margin-top: 54px; padding-top: 2px; border-top: 1px solid var(--line); }
.article-sources h2 { margin-top: 32px; font-size: 1.35rem; }
.article-sources ul { padding-left: 1.15rem; }
.source-link { color: #66552f; text-underline-offset: 3px; }
.article-disclaimer { margin: 40px 0; padding: 20px 23px; color: #59636b; background: #eae6dc; font-size: .92rem; line-height: 1.65; }
.article-cta { margin-top: 42px; padding: 32px; text-align: center; color: white; background: #10283a; }
.article-cta p { margin-bottom: 18px; font: 600 1.25rem Manrope, sans-serif; }

@media (max-width: 900px) {
  .site-header-wrap { grid-template-columns: 1fr auto; min-height: 78px; }
  .site-header-wrap nav { display: none; }
  .insight-card, .blog-card { grid-template-columns: 1fr; gap: 0; }
  .insight-card-image { min-height: 0; aspect-ratio: 16 / 8; }
  .blog-card > div { padding-top: 26px; }
  .blog-hero { padding: 66px 0 70px; }
  .blog-list { padding: 58px 0 82px; }
}

@media (max-width: 560px) {
  .site-header-wrap { grid-template-columns: 1fr; }
  .insights-preview { padding: 24px 0 36px; }
  .insight-card-copy { padding: 24px 22px; }
  .article-header { width: calc(100vw - 40px); padding: 58px 0 34px; text-align: left; }
  .article-header h1 { font-size: 2.35rem; }
  .article-meta { justify-content: flex-start; }
  .article-meta > * + *::before { display: none; }
  .article-hero, .article-body { width: calc(100vw - 40px); }
  .article-hero { margin-bottom: 38px; }
  .article-body { font-size: 1rem; }
  .article-lead { font-size: 1.1rem; }
  .article-callout, .article-cta { padding: 24px 22px; }
}


/* Public tools — On Time */
.tools-showcase { padding: 34px 0 52px; }
.tools-intro { max-width: 700px; margin: 12px 0 0; color: var(--muted); font-size: 1.0625rem; }
.on-time-card { display: grid; grid-template-columns: 1.08fr .92fr; min-height: 470px; overflow: hidden; color: white; background: var(--navy); }
.on-time-copy { align-self: center; padding: clamp(34px, 5vw, 66px); }
.on-time-copy .card-kicker { color: var(--gold-light); }
.on-time-copy h3 { margin-bottom: 18px; font: 600 clamp(2.4rem, 5vw, 4.7rem)/1 Manrope, sans-serif; letter-spacing: -.045em; }
.on-time-copy > p:not(.card-kicker) { max-width: 620px; color: rgba(255,255,255,.68); font-size: 1.0625rem; }
.tool-features { display: grid; grid-template-columns: 1fr 1fr; gap: 9px 26px; margin: 26px 0 32px; padding: 0; list-style: none; color: rgba(255,255,255,.83); font-size: .9375rem; }
.tool-features li { position: relative; padding-left: 18px; }
.tool-features li::before { content: ""; position: absolute; left: 0; top: .72em; width: 6px; height: 6px; border-radius: 50%; background: var(--gold); }
.tool-actions { display: flex; align-items: center; flex-wrap: wrap; gap: 24px; }
.light-link { color: var(--gold-light); border-color: rgba(232,213,170,.42); }
.light-link:hover { color: white; border-color: white; }
.on-time-preview { display: grid; align-content: center; gap: 10px; padding: clamp(28px, 4vw, 50px); background: radial-gradient(circle at 80% 10%, rgba(199,168,106,.20), transparent 28%), #10283a; }
.preview-topline { display: flex; justify-content: space-between; margin-bottom: 4px; color: var(--gold-light); font: 600 .72rem Manrope, sans-serif; letter-spacing: .15em; }
.preview-search { padding: 14px 16px; color: rgba(255,255,255,.55); background: rgba(255,255,255,.07); border: 1px solid rgba(255,255,255,.15); font-size: .875rem; }
.preview-city { display: grid; grid-template-columns: 1fr auto; align-items: center; min-height: 86px; padding: 15px 17px; border: 1px solid rgba(255,255,255,.12); }
.preview-city span { font-weight: 600; }
.preview-city strong { grid-row: span 2; font: 600 1.8rem Manrope, sans-serif; letter-spacing: -.03em; }
.preview-city small { color: rgba(255,255,255,.60); }
.preview-day { background: linear-gradient(120deg, rgba(54,139,201,.62), rgba(60,153,199,.24)); }
.preview-dusk { background: linear-gradient(120deg, rgba(31,100,154,.56), rgba(26,77,115,.28)); }
.preview-night { background: linear-gradient(120deg, rgba(9,34,56,.9), rgba(17,48,73,.7)); }

/* On Time detail page */
.tool-hero { padding: 88px 0 78px; color: white; background: radial-gradient(circle at 76% 12%, rgba(199,168,106,.18), transparent 28%), var(--navy); }
.tool-hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: 72px; align-items: center; }
.tool-hero h1 { margin-bottom: 20px; font-size: clamp(3.25rem, 7vw, 6rem); }
.tool-hero-copy > p:not(.eyebrow) { max-width: 650px; margin-bottom: 30px; color: rgba(255,255,255,.70); font-size: 1.15rem; }
.tool-page-main { padding: 76px 0 96px; }
.tool-page-grid { display: grid; grid-template-columns: .85fr 1.15fr; gap: 70px; }
.tool-page-grid h2 { font-size: clamp(2rem, 4vw, 3.3rem); }
.tool-page-grid > div > p { color: var(--muted); font-size: 1.0625rem; }
.tool-feature-list { margin: 0; padding: 0; list-style: none; border-top: 1px solid var(--line); }
.tool-feature-list li { display: grid; grid-template-columns: 42px 1fr; gap: 16px; padding: 22px 0; border-bottom: 1px solid var(--line); }
.tool-feature-list span { color: #8b754a; font: 600 .78rem Manrope, sans-serif; letter-spacing: .1em; }
.tool-feature-list strong { display: block; margin-bottom: 5px; font: 600 1.05rem Manrope, sans-serif; }
.tool-feature-list p { margin: 0; color: var(--muted); }
.tool-page-cta { padding: 44px max(32px, calc((100vw - 1180px)/2)); text-align: center; color: white; background: #10283a; }
.tool-page-cta h2 { margin-bottom: 12px; font-size: clamp(1.8rem, 3.5vw, 2.8rem); }
.tool-page-cta p { margin-bottom: 24px; color: rgba(255,255,255,.65); }

@media (max-width: 900px) {
  .on-time-card, .tool-hero-grid, .tool-page-grid { grid-template-columns: 1fr; }
  .on-time-preview { min-height: 390px; }
  .tool-hero-grid { gap: 44px; }
  .tool-page-grid { gap: 38px; }
}
@media (max-width: 560px) {
  .tools-showcase { padding: 24px 0 36px; }
  .on-time-copy { padding: 30px 22px; }
  .on-time-copy h3 { font-size: 2.7rem; }
  .tool-features { grid-template-columns: 1fr; }
  .on-time-preview { min-height: 350px; padding: 24px 20px; }
  .preview-city { min-height: 78px; }
  .tool-hero { padding: 58px 0 56px; }
  .tool-hero h1 { font-size: 3.4rem; }
  .tool-page-main { padding: 54px 0 70px; }
  .tool-page-cta { padding: 48px 20px; }
}


/* One Discovery social network links */
.social-links {
  grid-column: 2 / -1;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  align-items: center;
  gap: 10px 20px;
}
.social-links span {
  color: var(--gold-light);
  font: 600 0.72rem Manrope, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.social-links a {
  color: rgba(255,255,255,.82);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232,213,170,.35);
}
.social-links a:hover,
.social-links a:focus-visible {
  color: white;
  border-color: var(--gold-light);
}
@media (max-width: 900px) {
  .social-links { grid-column: 1 / -1; justify-content: flex-start; }
}
@media (max-width: 560px) {
  .social-links { gap: 10px 16px; }
  .social-links span { flex-basis: 100%; }
}


/* Visible social links below the homepage hero actions */
.hero-social {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 10px 18px;
  margin-top: 22px;
  font-size: 0.875rem;
}
.hero-social span {
  color: var(--gold-light);
  font: 600 0.72rem Manrope, sans-serif;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.hero-social a {
  color: rgba(255,255,255,.82);
  font-weight: 600;
  text-decoration: none;
  border-bottom: 1px solid rgba(232,213,170,.42);
}
.hero-social a:hover,
.hero-social a:focus-visible { color: white; border-color: var(--gold-light); }
@media (max-width: 560px) {
  .hero-social { gap: 10px 16px; }
  .hero-social span { flex-basis: 100%; }
}


/* Social network logo buttons */
.social-icons { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; }
.social-icon {
  display: inline-grid !important;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  color: rgba(255,255,255,.86) !important;
  background: rgba(255,255,255,.055);
  border: 1px solid rgba(232,213,170,.38) !important;
  border-radius: 50%;
  text-decoration: none;
  transition: color .2s ease, background .2s ease, border-color .2s ease, transform .2s ease;
}
.social-icon svg { width: 19px; height: 19px; fill: currentColor; }
.social-icon:hover,
.social-icon:focus-visible {
  color: var(--navy) !important;
  background: var(--gold-light);
  border-color: var(--gold-light) !important;
  transform: translateY(-2px);
}
.social-links { flex-direction: column; justify-content: flex-start; align-items: flex-start; }
.social-links .social-heading { flex-basis: auto !important; }
.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0,0,0,0);
  white-space: nowrap;
  border: 0;
}
