:root {
  --black: #050505;
  --ink: #121212;
  --charcoal: #1b1c1e;
  --steel: #64686d;
  --line: #d8d9da;
  --fog: #f1f2f2;
  --paper: #f4f3ef;
  --white: #ffffff;
  --red: #c8102e;
  --red-deep: #971027;
  --font: "Montserrat", "Arial Narrow", Arial, Helvetica, sans-serif;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { margin: 0; background: var(--white); color: var(--ink); font-family: var(--font); -webkit-font-smoothing: antialiased; }
a { color: inherit; text-decoration: none; }
img { display: block; width: 100%; }
h1, h2, h3, h4, p { margin-top: 0; }
button, summary { font: inherit; }

.skip-link { position: absolute; left: -9999px; top: 10px; z-index: 9999; background: var(--white); color: var(--black); padding: 10px 14px; }
.skip-link:focus { left: 10px; }

.shell { width: min(1180px, calc(100% - 48px)); margin: 0 auto; }

/* ---- real site chrome (matches every other rebuilt page) ---- */
.utility-bar { background: var(--black); color: rgba(255,255,255,.68); font-size: 10px; font-weight: 700; letter-spacing: .14em; text-transform: uppercase; }
.utility-inner { min-height: 34px; display: flex; align-items: center; justify-content: space-between; }
.utility-inner a { color: #fff; }

.site-header { background: var(--black); border-bottom: 1px solid rgba(255,255,255,.08); position: sticky; top: 0; z-index: 50; }
.header-inner { min-height: 84px; display: flex; align-items: center; gap: 30px; }
.brand { display: inline-flex; align-items: center; flex: 0 0 auto; }
.brand img { width: 176px; height: auto; object-fit: contain; }
.desktop-nav { margin-left: auto; display: flex; align-items: stretch; align-self: stretch; gap: 16px; }
.desktop-nav a { text-decoration: none; color: #dfe1e4; font-size: 10.5px; font-weight: 700; letter-spacing: .03em; text-transform: uppercase; display: flex; align-items: center; white-space: nowrap; }
.desktop-nav a:hover, .desktop-nav a:focus-visible { color: var(--red); }
.desktop-nav a.current { color: var(--red); }
.header-cta { background: var(--red); color: #fff; font-size: 10px; font-weight: 800; letter-spacing: .08em; padding: 15px 18px; text-transform: uppercase; }
.header-cta:hover, .header-cta:focus-visible { background: var(--red-deep); }
.mobile-nav { display: none; margin-left: auto; position: relative; }
.mobile-nav summary { cursor: pointer; font-weight: 700; list-style: none; color: #dfe1e4; font-size: 11px; letter-spacing: .04em; text-transform: uppercase; }
.mobile-nav summary::-webkit-details-marker { display: none; }
.mobile-nav-panel { position: absolute; top: 52px; right: 0; min-width: 240px; padding: 14px; background: var(--white); box-shadow: 0 20px 60px rgba(5,5,5,.16); border: 1px solid var(--line); z-index: 60; }
.mobile-nav-panel { max-height: 80vh; overflow-y: auto; }
.mobile-nav-panel a { display: block; padding: 10px 8px; text-decoration: none; font-weight: 600; color: var(--ink); font-size: 13px; }
.mobile-nav-panel a:hover, .mobile-nav-panel a:focus-visible { color: var(--red); }
.mobile-nav-panel a.current { color: var(--red); }
.mobile-nav-panel a.mobile-nav-sub { padding: 7px 8px 7px 20px; font-size: 12px; font-weight: 500; color: var(--steel); border-left: 2px solid var(--line); margin-left: 8px; }
.mobile-nav-panel a.mobile-nav-sub:hover, .mobile-nav-panel a.mobile-nav-sub:focus-visible { color: var(--red); }

/* dropdown (Services) */
.has-dropdown { position: relative; display: flex; align-items: center; align-self: stretch; }
.has-dropdown > a { display: flex; align-items: center; height: 100%; }
.has-dropdown > a::after { content: "\25BE"; margin-left: 5px; font-size: 9px; position: relative; top: -1px; }
.nav-dropdown { position: absolute; top: 100%; left: 0; min-width: 268px; margin: 0; padding: 8px 0; list-style: none; background: var(--black); border: 1px solid rgba(255,255,255,.12); border-top: 2px solid var(--red); opacity: 0; visibility: hidden; transform: translateY(6px); transition: opacity .15s ease, transform .15s ease, visibility .15s; max-height: 70vh; overflow-y: auto; }
.has-dropdown:hover .nav-dropdown,
.has-dropdown:focus-within .nav-dropdown { opacity: 1; visibility: visible; transform: translateY(0); }
.nav-dropdown li { margin: 0; }
.nav-dropdown a { display: block; padding: 11px 18px; font-size: 11px; white-space: nowrap; color: #dfe1e4; }
.nav-dropdown a:hover, .nav-dropdown a:focus-visible { background: rgba(255,255,255,.06); color: var(--red); }
.nav-dropdown a.current { color: var(--red); }
.nav-new-tag { display: inline-block; margin-left: 8px; padding: 2px 6px; background: var(--red); color: #fff; font-size: 8.5px; font-weight: 800; letter-spacing: .06em; border-radius: 2px; vertical-align: middle; }

.breadcrumb-bar { background: var(--fog); border-bottom: 1px solid var(--line); }
.breadcrumb-bar .shell { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; gap: 10px; min-height: 46px; }
.breadcrumb { font-size: 12px; color: var(--steel); }
.breadcrumb a { color: var(--steel); text-decoration: none; }
.breadcrumb a:hover, .breadcrumb a:focus-visible { color: var(--red); }
.concept-badge { display: inline-flex; align-items: center; gap: 6px; padding: 5px 10px; background: var(--charcoal); color: #fff; font-size: 9.5px; font-weight: 800; letter-spacing: .08em; text-transform: uppercase; border-radius: 3px; }
.concept-badge::before { content: ""; width: 6px; height: 6px; border-radius: 50%; background: var(--red); }

.site-footer { background: var(--black); border-top: 1px solid rgba(255,255,255,.1); color: #fff; padding: 34px 0; }
.footer-inner { align-items: center; display: grid; gap: 40px; grid-template-columns: auto 1fr auto; }
.footer-inner img { width: 150px; height: auto; }
.footer-inner p { color: rgba(255,255,255,.46); font-size: 10px; margin: 0; }
.footer-inner > span { color: rgba(255,255,255,.32); font-size: 8px; }
.section { padding: 64px 0; }
.section-fog { background: var(--fog); }

/* ---- page-specific: Design Services ---- */
.page-kicker { color: var(--red); font-size: 12px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; margin-bottom: 14px; }

.ds-hero { position: relative; min-height: 420px; display: flex; align-items: center; overflow: hidden; padding: 0; }
.ds-hero-media { position: absolute; inset: 0; }
.ds-hero-media img { width: 100%; height: 100%; object-fit: cover; }
.ds-hero-shade { position: absolute; inset: 0; background: linear-gradient(100deg, rgba(5,5,5,.92) 32%, rgba(5,5,5,.45) 100%); }
.ds-hero-inner { position: relative; color: #fff; padding: 64px 0; }
.ds-hero h1 { font-size: clamp(30px, 3.6vw, 46px); line-height: 1.1; letter-spacing: -.02em; font-weight: 900; max-width: 640px; margin-bottom: 18px; }
.ds-hero .page-hero-lead { max-width: 640px; font-size: 16px; line-height: 1.65; color: rgba(255,255,255,.86); }

.ds-section-head { max-width: 760px; margin: 0 auto 34px; text-align: center; }
.ds-section-head h2 { font-size: clamp(22px, 2.6vw, 30px); font-weight: 900; margin-bottom: 12px; }
.ds-essay-lead { font-size: 15px; line-height: 1.65; color: var(--steel); margin: 0; }

.ds-intro-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 44px; align-items: center; }
.ds-intro-copy h2 { font-size: 22px; font-weight: 900; margin-bottom: 14px; }
.ds-intro-copy > p { font-size: 14.5px; line-height: 1.7; color: var(--steel); margin: 0 0 20px; }
.ds-intro-figure { margin: 0; }
.ds-intro-figure img { border-radius: 4px; }
.ds-intro-figure figcaption { font-size: 12.5px; color: var(--steel); margin-top: 10px; line-height: 1.5; }

.check-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 14px; }
.check-list li { position: relative; padding-left: 30px; font-size: 14.5px; line-height: 1.65; color: var(--steel); }
.check-list li::before { content: "\2713"; position: absolute; left: 0; top: 0; color: var(--red); font-weight: 900; }

.ds-card-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 26px; }
.ds-card { background: var(--white); border: 1px solid var(--line); border-radius: 4px; overflow: hidden; }
.ds-card img { width: 100%; aspect-ratio: 16/10; object-fit: cover; }
.ds-card h3 { font-size: 17px; font-weight: 800; margin: 20px 22px 10px; }
.ds-card > p { font-size: 13.5px; line-height: 1.65; color: var(--steel); margin: 0 22px 16px; }
.ds-card .check-list { margin: 0 22px 22px; gap: 10px; }
.ds-card .check-list li { font-size: 13px; }

.ds-essay-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 26px; margin-bottom: 30px; }
.ds-essay-grid h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 10px; }
.ds-essay-grid p { font-size: 13.5px; line-height: 1.65; color: var(--steel); margin: 0; }
.ds-related-link { text-align: center; font-size: 14px; color: var(--steel); border-top: 1px solid var(--line); padding-top: 26px; }
.ds-related-link a { color: var(--red-deep); font-weight: 700; text-decoration: underline; }

.ds-related-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 22px; }
.ds-related-card { display: block; background: var(--white); border: 1px solid var(--line); border-radius: 4px; padding: 26px; transition: border-color .15s ease, transform .15s ease; }
.ds-related-card:hover, .ds-related-card:focus-visible { border-color: var(--red); transform: translateY(-2px); }
.ds-related-tag { display: inline-block; font-size: 9.5px; font-weight: 800; letter-spacing: .1em; text-transform: uppercase; color: var(--red); margin-bottom: 10px; }
.ds-related-card h3 { font-size: 15.5px; font-weight: 800; margin-bottom: 8px; color: var(--ink); }
.ds-related-card p { font-size: 13px; line-height: 1.6; color: var(--steel); margin: 0; }

.final-cta { background: var(--black); color: #fff; padding: 64px 0; border-top: 8px solid var(--red); text-align: center; }
.final-cta h2 { font-size: clamp(24px, 3vw, 34px); font-weight: 900; margin-bottom: 14px; }
.final-cta p { color: rgba(255,255,255,.7); max-width: 620px; margin: 0 auto 26px; font-size: 15px; }
.final-btn { display: inline-flex; background: var(--red); color: #fff; font-weight: 800; font-size: 13px; letter-spacing: .03em; padding: 16px 30px; border-radius: 2px; }
.final-btn:hover { background: var(--red-deep); }

@media (max-width: 900px) {
  .ds-intro-grid { grid-template-columns: 1fr; }
  .ds-card-grid { grid-template-columns: 1fr; }
  .ds-essay-grid { grid-template-columns: 1fr 1fr; }
  .ds-related-grid { grid-template-columns: 1fr; }
}
@media (max-width: 640px) {
  .ds-essay-grid { grid-template-columns: 1fr; }
}

@media (max-width: 1080px) {
  .desktop-nav { display: none; }
  .mobile-nav { display: block; }
}
@media (max-width: 640px) {
  .header-cta { display: none; }
  .brand img { width: 130px; }
  .footer-inner { grid-template-columns: 1fr; gap: 14px; text-align: center; }
  .footer-inner img { margin: 0 auto; }
}

.reg-mark { font-size: .58em; vertical-align: super; line-height: 0; }

.video-embed { position: relative; padding-top: 56.25%; height: 0; overflow: hidden; border-radius: 4px; background: #111; }
.video-embed iframe { position: absolute; top: 0; left: 0; width: 100%; height: 100%; border: 0; }
