.concept-page {
  --concept-plum: #291521;
  --concept-plum-soft: #3a2031;
  --concept-cream: #f6f1e9;
  --concept-paper: #fffdf9;
  --concept-gold: #c99742;
  --concept-gold-light: #e3c58c;
  --concept-ink: #21131d;
  --concept-muted: #6c6268;
  --concept-line: #ded2c3;
  background: var(--concept-cream);
  color: var(--concept-ink);
}

.concept-page h1,
.concept-page h2,
.concept-page h3,
.concept-page p { margin-top: 0; }

.concept-page h1,
.concept-page h2,
.concept-page h3 {
  font-family: var(--serif);
  font-weight: 500;
  letter-spacing: 0;
}

.concept-page h2 {
  margin-bottom: .65rem;
  font-size: clamp(2.45rem, 4vw, 4.25rem);
  line-height: .96;
}

.concept-page h3 { line-height: 1.05; }

.concept-page svg {
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.concept-shell {
  width: min(1380px, calc(100% - 48px));
  margin-inline: auto;
}

.concept-section { padding: clamp(4.5rem, 7vw, 7rem) 0; }

.concept-kicker,
.concept-eyebrow {
  margin-bottom: .85rem;
  color: var(--concept-gold);
  font-size: .73rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.concept-kicker::after,
.concept-eyebrow::after {
  content: "";
  display: block;
  width: 46px;
  height: 1px;
  margin-top: .7rem;
  background: currentColor;
}

.concept-centered-head {
  max-width: 760px;
  margin: 0 auto 2.5rem;
  text-align: center;
}

.concept-centered-head .concept-kicker::after { margin-inline: auto; }

.concept-centered-head > p:last-child {
  margin-bottom: 0;
  color: var(--concept-muted);
}

.concept-section-head {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 3rem;
  margin-bottom: 2.4rem;
}

.concept-section-head > p {
  max-width: 470px;
  margin-bottom: .35rem;
  color: var(--concept-muted);
}

.concept-text-link {
  display: inline-flex;
  align-items: center;
  gap: .65rem;
  padding-bottom: .25rem;
  border-bottom: 1px solid var(--concept-gold);
  color: var(--concept-ink);
  font-family: var(--serif);
  font-size: 1.15rem;
  font-weight: 500;
  transition: color 220ms var(--motion-ease), gap 220ms var(--motion-ease);
}

.concept-text-link:hover { gap: .9rem; color: var(--concept-gold); }

.concept-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 70;
  border-bottom: 1px solid rgba(255,255,255,.13);
  background: linear-gradient(180deg, rgba(25,13,21,.82), rgba(25,13,21,.62));
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  color: var(--concept-paper);
}

.concept-nav {
  width: min(1460px, calc(100% - 40px));
  min-height: 82px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  gap: clamp(1rem, 2vw, 2.5rem);
}

.concept-brand { flex: none; }
.concept-brand img { width: clamp(190px, 16vw, 238px); }

.concept-nav-links {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(1.1rem, 2vw, 2.2rem);
  margin-left: auto;
  font-family: var(--serif);
  font-size: .98rem;
}

.concept-nav-links a {
  position: relative;
  padding: .65rem 0;
  transition: color 200ms var(--motion-ease);
}

.concept-nav-links a::after {
  content: "";
  position: absolute;
  right: 0;
  bottom: .2rem;
  left: 0;
  height: 1px;
  background: var(--concept-gold-light);
  transform: scaleX(0);
  transition: transform 240ms var(--motion-ease);
}

.concept-nav-links a:hover { color: var(--concept-gold-light); }
.concept-nav-links a:hover::after { transform: scaleX(1); }

.concept-search-button {
  width: 42px;
  height: 42px;
  display: grid;
  flex: none;
  place-items: center;
  border: 1px solid rgba(255,255,255,.3);
  border-radius: 50%;
  background: rgba(255,255,255,.03);
  color: var(--concept-paper);
  cursor: pointer;
  transition: border-color 220ms var(--motion-ease), background 220ms var(--motion-ease);
}

.concept-search-button:hover {
  border-color: var(--concept-gold);
  background: rgba(201,151,66,.12);
}

.concept-search-button svg { width: 20px; height: 20px; }

.concept-button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid transparent;
  border-radius: 3px;
  padding: .82rem 1.25rem;
  font: 700 .72rem/1 var(--sans);
  text-transform: uppercase;
  letter-spacing: .06em;
  cursor: pointer;
  transition: transform 220ms var(--motion-ease), background 220ms var(--motion-ease), color 220ms var(--motion-ease), box-shadow 220ms var(--motion-ease);
}

.concept-button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 26px rgba(26,13,21,.17);
}

.concept-button-gold {
  background: var(--concept-gold);
  color: #160f12;
}

.concept-button-gold:hover { background: var(--concept-gold-light); }

.concept-button-ghost {
  border-color: rgba(255,255,255,.68);
  background: rgba(31,17,27,.22);
  color: var(--concept-paper);
}

.concept-button-ghost:hover { background: rgba(255,255,255,.12); }

.concept-button-outline {
  border-color: var(--concept-gold);
  background: transparent;
  color: var(--concept-ink);
}

.concept-button-outline:hover {
  background: var(--concept-gold);
  color: #160f12;
}

.concept-header-cta {
  min-width: 188px;
  flex: none;
}

.concept-hero {
  position: relative;
  width: 100%;
  height: min(44.43vw, 910px);
  min-height: 560px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--concept-plum);
  color: var(--concept-paper);
}

.concept-hero-image,
.concept-hero-overlay {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.concept-hero-image { object-fit: cover; object-position: center; }

.concept-hero-overlay {
  background:
    linear-gradient(90deg, rgba(28,14,24,.96) 0%, rgba(28,14,24,.85) 24%, rgba(28,14,24,.34) 56%, rgba(28,14,24,.06) 100%),
    linear-gradient(0deg, rgba(22,11,19,.3), transparent 55%);
}

.concept-hero-content {
  position: relative;
  z-index: 2;
  padding-top: 8rem;
  padding-bottom: 4rem;
}

.concept-hero-content > * { max-width: 610px; }

.concept-hero h1 {
  max-width: 840px;
  margin-bottom: 1.3rem;
  color: var(--concept-paper);
  font-size: clamp(2.8rem, 3.8vw, 4.35rem);
  line-height: .92;
}

.concept-hero h1 span {
  display: block;
  white-space: nowrap;
}

.concept-hero-lead {
  max-width: 530px;
  margin-bottom: 1.8rem;
  color: rgba(255,253,249,.88);
  font-family: var(--serif);
  font-size: clamp(.92rem, 1.3vw, 1.13rem);
  line-height: 1.5;
}

.concept-hero .concept-eyebrow { font-size: .57rem; }
.concept-hero .concept-button { font-size: .56rem; }

.concept-hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: .8rem;
}

.concept-trust-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem 2rem;
  margin: 2.2rem 0 0;
  padding: 1.2rem 0 0;
  border-top: 1px solid rgba(255,255,255,.22);
  list-style: none;
  color: rgba(255,253,249,.84);
  font-size: .62rem;
}

.concept-trust-list span {
  width: 21px;
  height: 21px;
  display: inline-grid;
  place-items: center;
  margin-right: .45rem;
  border: 1px solid var(--concept-gold);
  border-radius: 50%;
  color: var(--concept-gold-light);
  font-size: .7rem;
}

.concept-audience { background: var(--concept-paper); }

.concept-audience-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.concept-audience-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--concept-line);
  border-radius: 6px;
  padding: 2rem;
  background: #fbf8f3;
  transition: transform 260ms var(--motion-ease), box-shadow 260ms var(--motion-ease), border-color 260ms var(--motion-ease);
}

.concept-audience-card:hover {
  z-index: 1;
  transform: translateY(-5px);
  border-color: var(--concept-gold);
  box-shadow: 0 20px 42px rgba(42,22,38,.1);
}

.concept-audience-card.is-professional { background: #f2ebed; }
.concept-audience-card.is-leadership { background: var(--concept-plum); color: var(--concept-paper); }

.concept-card-icon {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  margin-bottom: 1.1rem;
  border: 1px solid var(--concept-gold);
  border-radius: 50%;
  color: var(--concept-gold);
}

.concept-card-icon svg { width: 30px; height: 30px; }

.concept-card-label {
  margin-bottom: .55rem;
  color: var(--concept-gold);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.concept-audience-card h3 {
  margin-bottom: .8rem;
  font-size: clamp(1.8rem, 2.5vw, 2.45rem);
}

.concept-audience-card > p:not(.concept-card-label) {
  color: var(--concept-muted);
  font-size: .9rem;
}

.concept-audience-card.is-leadership > p:not(.concept-card-label) { color: rgba(255,253,249,.72); }

.concept-audience-card ul {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin: auto 0 1.35rem;
  padding: 0;
  list-style: none;
}

.concept-audience-card li {
  border: 1px solid var(--concept-line);
  border-radius: 999px;
  padding: .25rem .58rem;
  font-size: .68rem;
}

.concept-audience-card.is-leadership li { border-color: rgba(255,255,255,.25); }

.concept-audience-card strong {
  font-size: .75rem;
  text-transform: uppercase;
}

.concept-search-band {
  border-top: 1px solid var(--concept-line);
  border-bottom: 1px solid var(--concept-line);
  background: var(--concept-cream);
}

.concept-search-layout {
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  gap: clamp(2rem, 6vw, 7rem);
  align-items: center;
}

.concept-search-layout h2 { font-size: clamp(2.5rem, 4vw, 4.4rem); }

.concept-search-layout > div:first-child > p:last-child {
  max-width: 450px;
  color: var(--concept-muted);
}

.concept-search-form {
  height: 62px;
  display: grid;
  grid-template-columns: 1fr 62px;
  border: 1px solid var(--concept-line);
  border-radius: 5px;
  overflow: hidden;
  background: var(--concept-paper);
  box-shadow: 0 12px 35px rgba(42,22,38,.07);
}

.concept-search-form input {
  min-width: 0;
  border: 0;
  padding: 0 1.25rem;
  background: transparent;
  color: var(--concept-ink);
  font: 500 .92rem var(--sans);
}

.concept-search-form input:focus { outline: 0; }

.concept-search-form button {
  border: 0;
  background: var(--concept-gold);
  color: var(--concept-paper);
  cursor: pointer;
}

.concept-search-form button svg { width: 24px; height: 24px; }

.concept-quick-links {
  display: flex;
  flex-wrap: wrap;
  gap: .45rem;
  margin-top: .9rem;
  font-size: .7rem;
}

.concept-quick-links span {
  width: 100%;
  color: var(--concept-muted);
  font-weight: 700;
}

.concept-quick-links a {
  border: 1px solid var(--concept-line);
  border-radius: 999px;
  padding: .32rem .7rem;
  background: rgba(255,255,255,.65);
  transition: border-color 200ms var(--motion-ease), color 200ms var(--motion-ease);
}

.concept-quick-links a:hover { border-color: var(--concept-gold); color: var(--concept-gold); }

.concept-hotel-section {
  padding: clamp(4.5rem, 7vw, 7rem) 0 0;
  overflow: hidden;
  background: #eee6da;
}

.concept-hotel-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
  margin-bottom: 2rem;
}

.concept-hotel-heading > div { max-width: 680px; }
.concept-hotel-heading > div > p:last-child { color: var(--concept-muted); }

.concept-hotel-visual {
  position: relative;
  width: min(1460px, calc(100% - 32px));
  margin: 0 auto;
  overflow: hidden;
  border-radius: 6px 6px 0 0;
  background: var(--concept-plum);
}

.concept-hotel-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,.2);
}

.concept-hotel-visual > img {
  width: 100%;
  height: clamp(580px, 52vw, 770px);
  object-fit: cover;
  object-position: center 49%;
}

.concept-hotel-hotspots { position: absolute; inset: 0; z-index: 2; }

.concept-hotel-hotspots a {
  position: absolute;
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  border: 1px solid rgba(225,190,124,.85);
  border-radius: 4px;
  padding: .5rem .72rem .5rem .5rem;
  background: rgba(42,22,38,.93);
  color: var(--concept-paper);
  font-family: var(--serif);
  font-size: .9rem;
  line-height: 1;
  box-shadow: 0 9px 24px rgba(18,10,15,.28);
  transition: transform 220ms var(--motion-ease), background 220ms var(--motion-ease);
}

.concept-hotel-hotspots a:hover { transform: scale(1.03); background: var(--concept-plum-soft); }

.concept-hotel-hotspots span {
  width: 24px;
  height: 24px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--concept-gold);
  color: var(--concept-paper);
  font-family: var(--sans);
}

.concept-hotel-hotspots .is-events { top: 27%; left: 39%; }
.concept-hotel-hotspots .is-wellness { top: 22%; left: 75%; }
.concept-hotel-hotspots .is-housekeeping { top: 57%; left: 12%; }
.concept-hotel-hotspots .is-service { top: 58%; left: 46%; }
.concept-hotel-hotspots .is-frontoffice { top: 80%; left: 42%; }
.concept-hotel-hotspots .is-reservation { top: 79%; left: 8%; }
.concept-hotel-hotspots .is-kitchen { top: 57%; left: 77%; }
.concept-hotel-hotspots .is-technical { top: 80%; left: 67%; }

.concept-support { background: var(--concept-paper); }

.concept-support-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: .75rem;
}

.concept-support-grid a {
  min-height: 230px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  border: 1px solid var(--concept-line);
  border-radius: 5px;
  padding: 1.25rem;
  background: #fffefa;
  transition: transform 220ms var(--motion-ease), border-color 220ms var(--motion-ease), box-shadow 220ms var(--motion-ease);
}

.concept-support-grid a:hover {
  transform: translateY(-4px);
  border-color: var(--concept-gold);
  box-shadow: 0 14px 30px rgba(42,22,38,.08);
}

.concept-support-grid span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  margin-bottom: 1.2rem;
  border: 1px solid var(--concept-gold);
  border-radius: 50%;
  color: var(--concept-gold);
  font-family: var(--serif);
}

.concept-support-grid h3 { margin-bottom: 1rem; font-size: 1.25rem; }

.concept-support-grid strong {
  margin-top: auto;
  color: var(--concept-gold);
  font-size: .68rem;
  text-transform: uppercase;
}

.concept-tools { background: var(--concept-paper); }

.concept-tools-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.concept-tools-grid > a {
  min-width: 0;
  min-height: 285px;
  display: grid;
  grid-template-columns: 70px 1fr;
  gap: 1.2rem;
  border: 1px solid var(--concept-line);
  border-radius: 5px;
  padding: 1.6rem;
  transition: transform 220ms var(--motion-ease), border-color 220ms var(--motion-ease), box-shadow 220ms var(--motion-ease);
}

.concept-tools-grid > a > div { min-width: 0; }

.concept-tools-grid > a:hover {
  transform: translateY(-4px);
  border-color: var(--concept-gold);
  box-shadow: 0 16px 34px rgba(42,22,38,.08);
}

.concept-tool-icon {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  color: var(--concept-plum);
}

.concept-tool-icon svg { width: 52px; height: 52px; stroke-width: 1; }

.concept-tools-grid p {
  margin-bottom: .3rem;
  color: var(--concept-gold);
  font-size: .68rem;
  font-weight: 700;
  text-transform: uppercase;
}

.concept-tools-grid h3 {
  margin-bottom: .7rem;
  overflow-wrap: anywhere;
  font-size: 1.45rem;
}
.concept-tools-grid div > span { display: block; color: var(--concept-muted); font-size: .85rem; }
.concept-tools-grid strong { display: inline-block; margin-top: 1.1rem; color: var(--concept-gold); font-size: .7rem; text-transform: uppercase; }

.concept-tools-footer {
  display: flex;
  justify-content: flex-end;
  margin-top: 1.4rem;
}

.concept-journal { background: #ece7df; }

.concept-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.concept-journal-grid > a {
  overflow: hidden;
  border-radius: 5px;
  background: var(--concept-plum);
  color: var(--concept-paper);
  transition: transform 240ms var(--motion-ease), box-shadow 240ms var(--motion-ease);
}

.concept-journal-grid > a:hover {
  transform: translateY(-5px);
  box-shadow: 0 20px 40px rgba(42,22,38,.19);
}

.concept-journal-grid img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.concept-journal-grid div { padding: 1.35rem; }
.concept-journal-grid p { margin-bottom: .35rem; color: var(--concept-gold-light); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.concept-journal-grid h3 { margin-bottom: 1rem; font-size: 1.7rem; }
.concept-journal-grid small { color: rgba(255,255,255,.62); }

.concept-career { background: var(--concept-paper); }

.concept-career-layout {
  display: grid;
  grid-template-columns: .7fr 1.3fr;
  gap: clamp(2rem, 5vw, 6rem);
  align-items: center;
}

.concept-career-layout > div > p:not(.concept-kicker) { color: var(--concept-muted); }

.concept-career-path {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  margin: 0;
  padding: 0;
  list-style: none;
}

.concept-career-path li {
  position: relative;
  display: grid;
  justify-items: center;
  gap: .7rem;
  text-align: center;
}

.concept-career-path li:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 31px;
  left: 66%;
  width: 68%;
  height: 1px;
  background: var(--concept-gold);
}

.concept-career-path span {
  width: 62px;
  height: 62px;
  display: grid;
  z-index: 1;
  place-items: center;
  border: 1px solid var(--concept-gold);
  border-radius: 50%;
  background: var(--concept-paper);
  color: var(--concept-gold);
  font-family: var(--serif);
  font-size: 1.1rem;
}

.concept-career-path strong { font-size: .72rem; }

.concept-final-cta {
  padding: clamp(4rem, 6vw, 6rem) 0;
  background: var(--concept-plum);
  color: var(--concept-paper);
  text-align: center;
}

.concept-final-cta h2 { color: var(--concept-paper); }
.concept-final-cta .concept-kicker::after { margin-inline: auto; }

.concept-final-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  margin-top: 2.5rem;
  text-align: left;
}

.concept-final-grid a {
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: .9rem 1rem;
  align-items: center;
  border: 1px solid rgba(255,255,255,.22);
  border-radius: 5px;
  padding: 1.25rem;
  background: rgba(255,255,255,.055);
  transition: transform 220ms var(--motion-ease), border-color 220ms var(--motion-ease), background 220ms var(--motion-ease);
}

.concept-final-grid a:hover {
  transform: translateY(-3px);
  border-color: var(--concept-gold);
  background: rgba(201,151,66,.1);
}

.concept-final-grid span {
  width: 42px;
  height: 42px;
  display: grid;
  grid-row: 1 / 3;
  place-items: center;
  border: 1px solid var(--concept-gold);
  border-radius: 50%;
  color: var(--concept-gold-light);
  font-family: var(--serif);
}

.concept-final-grid strong { font: 500 1.3rem var(--serif); }
.concept-final-grid small { color: var(--concept-gold-light); }

.concept-footer {
  padding: 3.6rem 0 1.5rem;
  background: #160d14;
  color: rgba(255,255,255,.78);
}

.concept-footer-grid {
  display: grid;
  grid-template-columns: 1.5fr repeat(4, 1fr);
  gap: 2rem;
}

.concept-footer-brand img { width: 235px; }

.concept-footer-grid > div {
  display: grid;
  align-content: start;
  gap: .35rem;
}

.concept-footer-grid strong {
  margin-bottom: .4rem;
  color: var(--concept-gold-light);
  font-family: var(--serif);
  font-size: 1.05rem;
}

.concept-footer-grid a:not(.concept-footer-brand) {
  font-size: .75rem;
  transition: color 200ms var(--motion-ease);
}

.concept-footer-grid a:hover { color: var(--concept-gold-light); }

.concept-footer-bottom {
  display: flex;
  justify-content: space-between;
  margin-top: 2.4rem;
  padding-top: 1.1rem;
  border-top: 1px solid rgba(255,255,255,.12);
  color: rgba(255,255,255,.44);
  font-size: .68rem;
}

.concept-visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

@media (max-width: 1120px) {
  .concept-nav-links { display: none; }
  .concept-search-button { margin-left: auto; }
  .concept-audience-grid,
  .concept-tools-grid,
  .concept-journal-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .concept-support-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
  .concept-footer-grid { grid-template-columns: 1.4fr repeat(2, 1fr); }
}

@media (max-width: 820px) {
  .concept-shell { width: min(100% - 32px, 1380px); }
  .concept-header-cta { min-width: 0; padding-inline: 1rem; }
  .concept-hero { min-height: 720px; }
  .concept-hero-overlay { background: linear-gradient(90deg, rgba(28,14,24,.92), rgba(28,14,24,.5)); }
  .concept-audience-grid,
  .concept-tools-grid,
  .concept-journal-grid { grid-template-columns: 1fr; }
  .concept-audience-card { min-height: 360px; }
  .concept-search-layout,
  .concept-career-layout { grid-template-columns: 1fr; }
  .concept-hotel-heading,
  .concept-section-head { display: block; }
  .concept-hotel-heading .concept-text-link,
  .concept-section-head .concept-text-link { margin-top: 1rem; }
  .concept-hotel-visual { width: 100%; border-radius: 0; overflow-x: auto; }
  .concept-hotel-visual > img { width: 1050px; max-width: none; aspect-ratio: 16 / 8.4; }
  .concept-hotel-hotspots { width: 1050px; }
  .concept-career-path { overflow-x: auto; grid-template-columns: repeat(5, 145px); padding-bottom: 1rem; }
  .concept-final-grid { grid-template-columns: 1fr; }
}

@media (max-width: 600px) {
  .concept-section { padding: 4rem 0; }
  .concept-nav { width: calc(100% - 24px); min-height: 70px; }
  .concept-brand img { width: 178px; }
  .concept-search-button { width: 38px; height: 38px; }
  .concept-header-cta { display: none; }
  .concept-hero { min-height: 690px; align-items: end; }
  .concept-hero-image { object-position: 59% center; }
  .concept-hero-overlay { background: linear-gradient(0deg, rgba(28,14,24,.98) 0%, rgba(28,14,24,.8) 45%, rgba(28,14,24,.18) 100%); }
  .concept-hero-content { padding-top: 7rem; padding-bottom: 2.4rem; }
  .concept-hero h1 {
    font-size: clamp(1.7rem, 7vw, 2.45rem);
    line-height: .98;
  }
  .concept-hero-actions { display: grid; }
  .concept-trust-list { display: grid; gap: .65rem; }
  .concept-audience-card { min-height: 0; padding: 1.5rem; }
  .concept-search-form { height: 56px; grid-template-columns: 1fr 56px; }
  .concept-search-form input { padding-inline: .8rem; font-size: .78rem; }
  .concept-support-grid { grid-template-columns: 1fr 1fr; }
  .concept-support-grid a { min-height: 205px; padding: 1rem; }
  .concept-support-grid h3 { font-size: 1.15rem; }
  .concept-journal-grid img { height: 230px; }
  .concept-tools-grid > a { grid-template-columns: 54px 1fr; padding: 1.25rem; }
  .concept-tool-icon { width: 50px; height: 50px; }
  .concept-tool-icon svg { width: 42px; height: 42px; }
  .concept-footer-grid { grid-template-columns: 1fr 1fr; }
  .concept-footer-brand { grid-column: 1 / -1; }
  .concept-footer-bottom { display: grid; gap: .25rem; }
}

@media (prefers-reduced-motion: reduce) {
  .concept-page *,
  .concept-page *::before,
  .concept-page *::after {
    scroll-behavior: auto !important;
    transition-duration: .01ms !important;
    animation-duration: .01ms !important;
    animation-iteration-count: 1 !important;
  }
}
