
a {
  color: var(--accent-dark);
  text-decoration: none;
  overflow-wrap: anywhere;
}
a:hover {
  color: var(--accent);
}
.brand {
  display: flex;
  align-items: center;
  gap: 14px;
  font-weight: 800;
  letter-spacing: 0.02em;
}
.site-nav a {
  position: relative;
  padding-bottom: 4px;
}
.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: currentColor;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .25s ease;
}
.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after {
  transform: scaleX(1);
}
.brand__mark {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  color: white;
  font-size: 14px;
}
.kicker {
  display: inline-flex;
  padding: 8px 12px;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 800;
}
h1,
h2,
h3 {
  font-family: var(--font-heading);
  line-height: 1.08;
  margin: 0 0 16px;
}
h1 {
  font-size: clamp(40px, 7vw, 68px);
  max-width: 12ch;
}
h2 {
  font-size: clamp(28px, 4vw, 40px);
}
h3 {
  font-size: 22px;
}
.lead {
  font-size: 18px;
  line-height: 1.7;
  max-width: 60ch;
}
.actions,
.tag-row,
.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
.actions {
  margin-top: 24px;
}
.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  min-height: 48px;
  border-radius: 999px;
  font-weight: 800;
  border: 1px solid transparent;
  transition: transform .25s ease, box-shadow .25s ease, border-color .25s ease;
}
.btn:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 30px rgba(15, 23, 42, 0.16);
}
.panel {
  padding: 28px;
  min-width: 0;
}
.panel dl {
  margin: 0;
  display: grid;
  gap: 14px;
}
.panel dt {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-bottom: 4px;
  font-weight: 800;
}
.panel dd {
  margin: 0;
  font-size: 16px;
}
.card {
  border-radius: 18px;
  padding: 22px;
  min-width: 0;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.home-page .card {
  border-radius: 8px;
  min-height: 210px;
}
.home-page--classic-showcase .hero__visual .media-card--primary,
.home-page--local-office .hero__visual .media-card--primary,
.home-page--portfolio-led .hero__visual .media-card--primary {
  min-height: 320px;
}
.home-page--magazine-cover .hero__visual,
.home-page--newsroom-led .hero__visual,
.home-page--side-rail .hero__visual {
  grid-template-columns: 1fr;
}
.home-page--split-studio .hero__visual,
.home-page--consultant-ledger .hero__visual,
.home-page--bold-stripe .hero__visual {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}
.home-page--split-studio .hero__visual .media-card,
.home-page--consultant-ledger .hero__visual .media-card,
.home-page--bold-stripe .hero__visual .media-card {
  min-height: 100%;
}
.home-page--proof-led .metric-card strong,
.home-page--fitness-drive .metric-card strong,
.home-page--compact-professional .metric-card strong {
  font-size: clamp(24px, 3vw, 34px);
}
.home-page--contact-led .home-cta .cta-banner,
.home-page--hospitality-front .home-cta .cta-banner,
.home-page--retail-window .home-cta .cta-banner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
}
.home-page--calm-grid .card,
.home-page--calm-grid .metric-card,
.home-page--compact-professional .card,
.home-page--compact-professional .metric-card {
  box-shadow: none;
}
.content-card {
  border-radius: 8px;
  padding: 24px;
  min-width: 0;
  transition: transform .28s ease, box-shadow .28s ease, border-color .28s ease;
}
.card-hover,
.card:hover,
.content-card:hover {
  transform: translateY(-6px);
}
.service-card,
.case-card {
  min-height: 260px;
  display: grid;
  align-content: start;
}
.service-card--compact {
  min-height: 0;
}
.card-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 999px;
  margin-bottom: 28px;
  font-weight: 800;
}
.metric-card {
  padding: 20px;
  border-radius: 20px;
}
.metric-card strong {
  display: block;
  font-size: clamp(28px, 4vw, 42px);
  margin-bottom: 8px;
}
.media-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  border-radius: 24px;
}
.media-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.subhero__media img {
  min-height: 360px;
}
.media-card--tall {
  min-height: 100%;
}
.media-card__caption {
  position: absolute;
  left: 18px;
  right: 18px;
  bottom: 18px;
  padding: 14px 16px;
  border-radius: 16px;
  color: white;
  background: linear-gradient(180deg, rgba(15,23,42,0.05), rgba(15,23,42,0.74));
}
.photo-credits {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 16px;
  margin-top: 22px;
  font-size: 12px;
  opacity: .72;
}
.list-checks {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.list-checks li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}
.list-checks li::before {
  content: "\2022";
  color: var(--accent);
  font-size: 22px;
  line-height: 1;
}
.timeline__item {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 14px;
  align-items: start;
}
.timeline__step {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 18px;
  font-weight: 800;
}
.showcase-quote {
  padding: 28px;
  border-radius: 24px;
}
.showcase-quote p {
  font-size: 20px;
  line-height: 1.6;
}
.profile-list {
  display: grid;
  gap: 12px;
  list-style: none;
  padding: 0;
}
.profile-list li {
  padding-bottom: 12px;
  border-bottom: 1px solid var(--border);
}
.profile-list li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}
.faq-item {
  padding: 18px 0;
  border-top: 1px solid var(--border);
}
.faq-item:first-child {
  border-top: 0;
}
.tag-row {
  margin-top: 18px;
}
.tag-row--footer {
  margin-top: 0;
}
.tag {
  padding: 10px 12px;
  border-radius: 999px;
  font-size: 13px;
}
.cta-banner {
  margin: 32px 0 12px;
  border-radius: 26px;
  padding: 28px;
}
.shell.cta-banner {
  margin: 32px auto 12px;
}
.muted {
  color: var(--muted);
}
#cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  width: auto;
  max-width: 420px;
  margin-left: auto;
  z-index: 20;
}
.cookie-card {
  border-radius: 20px;
  padding: 18px;
}
.cookie-actions button {
  cursor: pointer;
  border: 0;
  border-radius: 999px;
  padding: 12px 14px;
  font-weight: 800;
}
.contact-form {
  display: grid;
  gap: 14px;
}
.contact-form label {
  display: grid;
  gap: 8px;
  font-weight: 800;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 13px 14px;
  font: inherit;
  color: var(--ink);
  background: rgba(255,255,255,0.88);
}
.contact-form textarea {
  resize: vertical;
}
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity .7s ease, transform .7s ease;
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
