:root {
  --bg: #ffffff;
  --bg-soft: #fbf8f4;
  --surface: #ffffff;
  --surface-alt: #f8f2e8;
  --ink: #151515;
  --muted: #5c5c5c;
  --muted-strong: #323232;
  --line: #ead8af;
  --line-soft: #f2e7cd;
  --accent: #bd2026;
  --accent-bright: #da3d34;
  --accent-deep: #8f1217;
  --secondary: #c79c33;
  --secondary-bright: #e1bf68;
  --secondary-deep: #8b6412;
  --signal: #2da56a;
  --navy: #211717;
  --navy-soft: #3a2323;
  --radius: 22px;
  --radius-sm: 14px;
  --shadow-strong: 0 36px 68px -48px rgba(70, 24, 12, 0.34);
  --shadow-card: 0 22px 44px -34px rgba(88, 55, 24, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

html,
body {
  margin: 0;
  padding: 0;
}

body {
  position: relative;
  min-height: 100%;
  font-family: "Plus Jakarta Sans", sans-serif;
  color: var(--ink);
  line-height: 1.68;
  background:
    radial-gradient(circle at 96% -4%, rgba(218, 61, 52, 0.1) 0%, rgba(218, 61, 52, 0) 34%),
    radial-gradient(circle at -6% 26%, rgba(225, 191, 104, 0.2) 0%, rgba(225, 191, 104, 0) 48%),
    linear-gradient(180deg, #ffffff 0%, #fdfbf7 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(120deg, rgba(21, 21, 21, 0.035) 1px, transparent 1px);
  background-size: 56px 56px;
  opacity: 0.4;
  z-index: -2;
  animation: gridDrift 40s linear infinite;
}

body::after {
  content: "";
  position: fixed;
  inset: auto -14rem -20rem auto;
  width: 42rem;
  height: 42rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 32, 38, 0.14), rgba(189, 32, 38, 0));
  filter: blur(6px);
  pointer-events: none;
  z-index: -1;
  animation: ambientShift 22s ease-in-out infinite alternate;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

h1,
h2,
h3,
h4 {
  margin: 0;
  line-height: 1.14;
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.012em;
}

p {
  margin: 0;
}

.container {
  width: min(1220px, 93vw);
  margin: 0 auto;
}

.scroll-progress {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 3px;
  transform-origin: left;
  transform: scaleX(0);
  background: linear-gradient(90deg, var(--accent), var(--secondary-bright), var(--accent-bright));
  z-index: 100;
  box-shadow: 0 0 14px rgba(189, 32, 38, 0.28);
}

.top-strip {
  border-bottom: 1px solid rgba(225, 191, 104, 0.3);
  background: linear-gradient(125deg, #631115 0%, #8f1217 55%, #bb2524 100%);
  color: rgba(255, 251, 245, 0.94);
  font-size: 0.92rem;
}

.top-strip a {
  color: #fff2cf;
  font-weight: 700;
  transition: color 0.2s ease;
}

.top-strip a:hover {
  color: #ffffff;
}

.top-strip .container {
  display: flex;
  justify-content: space-between;
  gap: 1.2rem;
  flex-wrap: wrap;
  padding: 0.65rem 0;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  -webkit-backdrop-filter: blur(14px);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid rgba(225, 191, 104, 0.36);
  box-shadow: 0 18px 32px -30px rgba(21, 21, 21, 0.3);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: linear-gradient(90deg, rgba(225, 191, 104, 0), rgba(225, 191, 104, 0.85), rgba(225, 191, 104, 0));
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.1rem;
  padding: 0.95rem 0;
}

.brand {
  display: inline-flex;
  align-items: center;
}

.brand-logo {
  width: auto;
  height: 3.12rem;
  object-fit: contain;
  filter: drop-shadow(0 8px 18px rgba(58, 35, 35, 0.2));
}

.site-footer .brand-logo {
  height: 2.7rem;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.nav-link {
  position: relative;
  color: var(--muted-strong);
  font-weight: 600;
  font-size: 0.95rem;
  border-radius: 999px;
  padding: 0.48rem 0.82rem;
  transition: color 0.2s ease, background 0.2s ease, transform 0.2s ease;
}

.nav-link::after {
  content: "";
  position: absolute;
  left: 0.8rem;
  right: 0.8rem;
  bottom: 0.34rem;
  height: 1px;
  border-radius: 999px;
  background: rgba(189, 32, 38, 0.9);
  transform: scaleX(0);
  transform-origin: center;
  transition: transform 0.22s ease;
}

.nav-link:hover,
.nav-link.active {
  background: linear-gradient(180deg, rgba(189, 32, 38, 0.08), rgba(225, 191, 104, 0.18));
  color: var(--accent-deep);
  transform: translateY(-1px);
}

.nav-link:hover::after,
.nav-link.active::after {
  transform: scaleX(1);
}

.menu-toggle {
  display: none;
  border: 1px solid rgba(189, 32, 38, 0.22);
  background: rgba(189, 32, 38, 0.06);
  color: var(--accent-deep);
  border-radius: 10px;
  padding: 0.46rem 0.8rem;
  font: inherit;
  font-weight: 700;
  cursor: pointer;
  transition: background 0.2s ease;
}

.menu-toggle:hover {
  background: rgba(189, 32, 38, 0.1);
}

.cta-phone {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  border: 1px solid rgba(189, 32, 38, 0.2);
  background: linear-gradient(145deg, var(--accent) 0%, var(--accent-bright) 100%);
  color: #ffffff;
  padding: 0.48rem 0.82rem;
  font-size: 0.9rem;
  font-weight: 700;
  transition: background 0.2s ease, transform 0.2s ease;
}

.cta-phone:hover {
  background: linear-gradient(145deg, #a9161d 0%, #c62828 100%);
  transform: translateY(-1px);
}

main {
  overflow-x: clip;
}

.hero {
  position: relative;
  padding: clamp(3.5rem, 5vw, 4.8rem) 0 1.35rem;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 12% 20%, rgba(225, 191, 104, 0.18) 0%, rgba(225, 191, 104, 0) 42%),
    radial-gradient(circle at 88% 16%, rgba(189, 32, 38, 0.12) 0%, rgba(189, 32, 38, 0) 48%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.22), rgba(255, 255, 255, 0));
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: "";
  position: absolute;
  right: -6rem;
  bottom: -5rem;
  width: 22rem;
  height: 22rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(189, 32, 38, 0.18), rgba(189, 32, 38, 0));
  filter: blur(6px);
  pointer-events: none;
  opacity: 0.7;
  z-index: 0;
}

.hero-shell {
  position: relative;
  overflow: hidden;
  min-height: clamp(29rem, 64vh, 38rem);
  border-radius: calc(var(--radius) + 4px);
  border: 1px solid rgba(225, 191, 104, 0.4);
  box-shadow: var(--shadow-strong);
  background: #221818;
  isolation: isolate;
  z-index: 1;
}

.hero-shell::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(
      118deg,
      rgba(34, 24, 24, 0.94) 0%,
      rgba(34, 24, 24, 0.84) 34%,
      rgba(34, 24, 24, 0.44) 64%,
      rgba(34, 24, 24, 0.72) 100%
    ),
    radial-gradient(circle at 84% 18%, rgba(189, 32, 38, 0.26), rgba(189, 32, 38, 0) 44%);
  z-index: -1;
}

.hero-shell::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  box-shadow: inset 0 0 0 1px rgba(255, 244, 220, 0.16);
  pointer-events: none;
  z-index: 2;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 38%;
  filter: saturate(1.03) contrast(1.05);
  animation: imageFloat 9s ease-in-out infinite;
  z-index: -2;
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: inherit;
  padding: clamp(1.35rem, 3.1vw, 2.7rem);
  display: flex;
  align-items: flex-end;
}

.hero-copy {
  position: relative;
  max-width: 56rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  padding: 0.4rem 0.84rem;
  border-radius: 999px;
  border: 1px solid rgba(225, 191, 104, 0.52);
  background: rgba(34, 24, 24, 0.56);
  color: #f7ddb2;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-size: 0.72rem;
  font-weight: 800;
  backdrop-filter: blur(4px);
}

.hero-copy h1 {
  margin-top: 1rem;
  font-size: clamp(2.35rem, 4.4vw, 4.25rem);
  line-height: 1.05;
  color: #fffaf4;
  max-width: 16ch;
  text-wrap: balance;
}

.text-accent {
  display: inline;
  color: var(--secondary-bright);
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .text-accent {
    background: linear-gradient(145deg, #f9e6be 0%, #fff9ee 38%, #d53f35 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.hero-copy > p {
  margin-top: 1rem;
  max-width: 58ch;
  color: rgba(255, 248, 239, 0.88);
  font-size: 1.03rem;
  text-shadow: 0 3px 16px rgba(24, 14, 14, 0.34);
}

.hero-tags {
  margin-top: 1.05rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.52rem;
}

.hero-tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  border: 1px solid rgba(225, 191, 104, 0.42);
  background: rgba(34, 24, 24, 0.56);
  padding: 0.32rem 0.68rem;
  color: rgba(255, 248, 239, 0.92);
  font-size: 0.77rem;
  font-weight: 700;
  letter-spacing: 0.02em;
}

.hero-actions {
  margin-top: 1.8rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.82rem;
}

.hero-detail-section {
  padding-top: 0.45rem;
  padding-bottom: 2.6rem;
}

.hero-facts {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.7rem;
  max-width: none;
}

.hero-fact {
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffefb 0%, #f8f1e4 100%);
  padding: 1rem 1.08rem;
  box-shadow: var(--shadow-card);
}

.hero-fact strong {
  display: block;
  color: var(--accent-deep);
  font-size: 0.92rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-fact span {
  display: block;
  margin-top: 0.26rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-stage {
  margin-top: 0.82rem;
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(0, 1.2fr);
  gap: 0.82rem;
  align-items: stretch;
}

.hero-live-card {
  position: relative;
  z-index: 1;
  max-width: none;
  border: 1px solid rgba(225, 191, 104, 0.38);
  border-radius: var(--radius-sm);
  background: linear-gradient(165deg, rgba(33, 23, 23, 0.96) 0%, rgba(73, 20, 22, 0.9) 100%);
  -webkit-backdrop-filter: blur(6px);
  backdrop-filter: blur(6px);
  padding: 1rem 1.05rem;
  box-shadow: 0 16px 26px -22px rgba(0, 0, 0, 0.72);
}

.live-indicator {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  border: 1px solid rgba(225, 191, 104, 0.3);
  border-radius: 999px;
  padding: 0.24rem 0.58rem;
  color: #f9e5b8;
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  background: rgba(31, 22, 22, 0.5);
}

.live-indicator span {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--signal);
  box-shadow: 0 0 0 0 rgba(114, 242, 186, 0.62);
  animation: pulseLive 1.8s ease-out infinite;
}

.hero-live-card p {
  margin-top: 0.5rem;
  color: rgba(243, 237, 229, 0.8);
  font-size: 0.92rem;
  line-height: 1.45;
}

.hero-side-cards {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.82rem;
}

.hero-side-card {
  height: 100%;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffefb 0%, #f8f1e4 100%);
  color: var(--ink);
  padding: 1rem 1.08rem;
  box-shadow: var(--shadow-card);
}

.hero-side-card h3 {
  font-size: 1.24rem;
  letter-spacing: 0.012em;
  color: var(--ink);
}

.hero-side-card p {
  margin-top: 0.3rem;
  color: var(--muted);
  font-size: 0.92rem;
  line-height: 1.52;
}

.hero-side-card-accent {
  background: linear-gradient(155deg, #fff5df 0%, #f4dda5 52%, #c79c33 100%);
  color: #2f1b1b;
  border-color: rgba(139, 100, 18, 0.34);
}

.hero-side-card-accent p {
  color: #544132;
}

.hero-side-card-accent a {
  color: var(--accent-deep);
  font-weight: 700;
  border-bottom: 1px solid rgba(143, 18, 23, 0.35);
}

.hero-side-card-accent a:hover {
  border-bottom-color: rgba(143, 18, 23, 0.82);
}
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.8rem 1.28rem;
  border: 1px solid transparent;
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 0.9rem;
  font-weight: 700;
  letter-spacing: 0.012em;
  cursor: pointer;
  transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn-primary {
  position: relative;
  overflow: hidden;
  color: #fffaf4;
  background: linear-gradient(145deg, #991419 0%, #bd2026 52%, #d64335 100%);
  border-color: rgba(143, 18, 23, 0.92);
  box-shadow: 0 18px 28px -24px rgba(143, 18, 23, 0.48);
}

.btn-primary::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(110deg, transparent 28%, rgba(255, 255, 255, 0.36) 48%, transparent 68%);
  transform: translateX(-130%);
  animation: sheenMove 3.8s linear infinite;
}

.btn-secondary {
  color: var(--accent-deep);
  background: linear-gradient(180deg, #ffffff 0%, #fbf3df 100%);
  border-color: #e4c17a;
}

.btn-secondary:hover {
  background: linear-gradient(180deg, #fff8ec 0%, #f7e6bf 100%);
  border-color: #c79c33;
  box-shadow: 0 14px 24px -18px rgba(143, 18, 23, 0.16);
}

.section {
  position: relative;
  padding: 4.2rem 0;
}

.section::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.2), rgba(255, 255, 255, 0));
  opacity: 0.32;
  pointer-events: none;
}

.section-tight {
  padding-top: 3.2rem;
  padding-bottom: 3.2rem;
}

.coverage-rail {
  overflow: hidden;
  border: 1px solid rgba(199, 156, 51, 0.34);
  border-radius: 999px;
  background: linear-gradient(180deg, #ffffff, #fbf5e7);
  box-shadow: 0 14px 28px -24px rgba(89, 56, 20, 0.24);
}

.rail-track {
  display: flex;
  align-items: center;
  gap: 1.8rem;
  width: max-content;
  padding: 0.58rem 1rem;
  animation: railMove 28s linear infinite;
}

.coverage-rail:hover .rail-track {
  animation-play-state: paused;
}

.rail-track span {
  position: relative;
  color: var(--muted-strong);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  white-space: nowrap;
}

.rail-track span::before {
  content: "";
  display: inline-block;
  width: 0.42rem;
  height: 0.42rem;
  margin-right: 0.5rem;
  margin-bottom: 0.08rem;
  border-radius: 999px;
  background: linear-gradient(180deg, var(--secondary-bright), var(--secondary));
}

.metrics-strip {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0.8rem;
}

.metric-card {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 1rem 1rem 0.95rem;
  background: linear-gradient(180deg, #ffffff, #fbf5e8);
  box-shadow: 0 18px 30px -30px rgba(70, 24, 12, 0.22);
}

.metric-value {
  color: var(--ink);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.9rem, 3vw, 2.35rem);
  line-height: 1;
  letter-spacing: 0.02em;
}

@supports ((-webkit-background-clip: text) or (background-clip: text)) {
  .metric-value {
    background: linear-gradient(145deg, #1b1b1b, #b01b21 62%, #c79c33);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
  }
}

.metric-label {
  margin-top: 0.38rem;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.025em;
  text-transform: uppercase;
}

.section-heading {
  position: relative;
  max-width: 42rem;
}

.section-heading h2 {
  margin-top: 0.72rem;
  font-size: clamp(2rem, 3.2vw, 3rem);
}

.section-heading p {
  margin-top: 0.84rem;
  color: var(--muted);
}

.grid {
  display: grid;
  gap: 1rem;
}

.grid-3 {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.grid-2 {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.card {
  position: relative;
  overflow: hidden;
  background: linear-gradient(180deg, #fffefb 0%, #f8f1e4 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1.28rem;
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
  display: flex;
  flex-direction: column;
}

.card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, rgba(189, 32, 38, 0), rgba(189, 32, 38, 0.72), rgba(225, 191, 104, 0.7));
}

.card::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 90% 0, rgba(225, 191, 104, 0.18), rgba(225, 191, 104, 0));
  opacity: 0;
  transition: opacity 0.25s ease;
  pointer-events: none;
}

.card:hover {
  transform: translateY(-3px);
  border-color: #d2aa51;
  box-shadow: 0 28px 46px -34px rgba(143, 18, 23, 0.18);
}

.card:hover::after {
  opacity: 1;
}

.card h3 {
  font-size: 1.42rem;
}

.card p {
  margin-top: 0.5rem;
  color: var(--muted);
}

.card-image,
.panel-image,
.service-thumb,
.profile-photo {
  width: 100%;
  object-fit: cover;
  border-radius: 12px;
  border: 1px solid var(--line-soft);
  margin-bottom: 0.95rem;
}

.service-thumb {
  aspect-ratio: 16 / 10;
}

.panel-image {
  aspect-ratio: 16 / 9;
}

.profile-card {
  padding-top: 0.95rem;
}

.profile-photo {
  aspect-ratio: 1 / 1;
}

.media-grid {
  gap: 1rem;
}

.media-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: linear-gradient(180deg, #fffefb 0%, #f8f0e2 100%);
  box-shadow: var(--shadow-card);
  transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.media-card:hover {
  transform: translateY(-3px);
  border-color: #d2aa51;
  box-shadow: 0 28px 46px -34px rgba(143, 18, 23, 0.18);
}

.media-img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  transition: transform 0.35s ease;
}

.media-card:hover .media-img {
  transform: scale(1.045);
}

.media-body {
  padding: 1rem 1.1rem 1.2rem;
}

.media-body h3 {
  font-size: 1.42rem;
}

.media-body p {
  margin-top: 0.45rem;
  color: var(--muted);
}

.image-banner {
  margin: 0 auto;
  max-width: 900px;
  border-radius: var(--radius);
  overflow: hidden;
  border: 1px solid var(--line);
  box-shadow: var(--shadow-card);
}

.image-banner img {
  width: 100%;
  height: auto;
  object-fit: cover;
  transition: transform 0.45s ease;
}

.image-banner:hover img {
  transform: scale(1.025);
}

.icon-dot {
  width: 0.96rem;
  height: 0.96rem;
  border-radius: 999px;
  margin-bottom: 0.9rem;
  background: radial-gradient(circle at 30% 30%, #fff3d4, #c79c33 58%, #97161a);
  box-shadow: 0 0 0 7px rgba(225, 191, 104, 0.22);
}

.muted-panel {
  background:
    radial-gradient(circle at 96% 12%, rgba(189, 32, 38, 0.08), rgba(189, 32, 38, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #fbf5e8 100%);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.42rem;
  box-shadow: var(--shadow-card);
}

.split {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 1.8rem;
}

.points {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0.78rem;
}

.points li {
  display: flex;
  align-items: flex-start;
  gap: 0.62rem;
}

.points li::before {
  content: "";
  width: 0.72rem;
  height: 0.72rem;
  margin-top: 0.36rem;
  border-radius: 999px;
  flex: 0 0 auto;
  background: linear-gradient(180deg, var(--secondary-bright), var(--secondary));
  box-shadow: 0 0 0 4px rgba(225, 191, 104, 0.18);
}

.chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.58rem;
}

.chip {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.38rem 0.76rem;
  border: 1px solid #e1c88f;
  background: linear-gradient(180deg, #fffefb, #f9efd8);
  color: #4d4d4d;
  font-size: 0.88rem;
  font-weight: 700;
}

.quote {
  position: relative;
}

.quote::before {
  content: "\201C";
  position: absolute;
  top: 0.2rem;
  left: 0;
  font-size: 3.05rem;
  line-height: 1;
  color: rgba(189, 32, 38, 0.24);
  font-family: "Cormorant Garamond", serif;
}

.quote p {
  padding-left: 1.35rem;
}

.quote small {
  display: block;
  margin-top: 0.95rem;
  padding-left: 1.35rem;
  color: var(--muted);
  font-weight: 700;
}

.quote-media::before {
  display: none;
}

.quote-media p,
.quote-media small {
  padding-left: 0;
}

.cta-block {
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #421315 0%, #71161b 52%, #bd2026 100%);
  border: 1px solid rgba(225, 191, 104, 0.36);
  border-radius: var(--radius);
  padding: 1.95rem;
  color: #fff9f3;
  display: grid;
  gap: 1rem;
  align-items: center;
  grid-template-columns: 1fr auto;
  box-shadow: var(--shadow-strong);
}

.cta-block::before {
  content: "";
  position: absolute;
  inset: -10% auto auto -6%;
  width: 16rem;
  height: 16rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 191, 104, 0.24), rgba(225, 191, 104, 0));
  pointer-events: none;
}

.cta-block p {
  color: rgba(255, 244, 231, 0.84);
  max-width: 62ch;
}

.page-hero {
  position: relative;
  padding: 4.6rem 0 2.8rem;
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.32), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.page-hero h1 {
  margin-top: 0.85rem;
  font-size: clamp(2rem, 3.5vw, 3.2rem);
}

.page-hero p {
  margin-top: 0.86rem;
  max-width: 66ch;
  color: var(--muted);
}

.feature-band {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: 1.35rem;
  background:
    radial-gradient(circle at 100% 0, rgba(189, 32, 38, 0.08), rgba(189, 32, 38, 0) 34%),
    linear-gradient(180deg, #fffefb 0%, #f8f1e4 100%);
  box-shadow: var(--shadow-card);
}

.feature-band::after {
  content: "";
  position: absolute;
  inset: auto -10% -30% auto;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 191, 104, 0.16), rgba(225, 191, 104, 0));
  pointer-events: none;
}

.feature-band-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
  align-items: end;
  margin-bottom: 1rem;
}

.feature-band-head h2 {
  margin-top: 0.72rem;
  font-size: clamp(1.95rem, 3.2vw, 3rem);
}

.feature-band-head p {
  color: var(--muted);
  margin: 0;
}

.home-brief-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
  gap: 1rem;
  align-items: end;
}

.editorial-card,
.story-card,
.mini-panel,
.sector-card,
.process-card {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: linear-gradient(180deg, #fffefb 0%, #f8f1e4 100%);
  box-shadow: var(--shadow-card);
}

.editorial-card,
.story-card,
.mini-panel,
.sector-card {
  padding: 1.18rem;
}

.editorial-kicker,
.mini-panel-label,
.service-panel-label {
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.editorial-card h3,
.story-card h3,
.mini-panel h3,
.sector-card h3 {
  margin-top: 0.6rem;
}

.compact-points {
  margin-top: 1rem;
  gap: 0.62rem;
}

.compact-points li {
  font-size: 0.92rem;
  line-height: 1.5;
}

.spotlight-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: minmax(0, 1.16fr) minmax(0, 0.84fr);
  gap: 1rem;
}

.spotlight-main {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffefb 0%, #f8f1e4 100%);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
}

.spotlight-image {
  width: 100%;
  height: 100%;
  min-height: 100%;
  object-fit: cover;
}

.spotlight-body {
  padding: 1.35rem;
  display: flex;
  flex-direction: column;
}

.spotlight-body h3 {
  margin-top: 0.6rem;
  font-size: clamp(1.8rem, 3vw, 2.45rem);
}

.spotlight-body p:last-of-type {
  margin-top: 0.65rem;
}

.spotlight-tags {
  margin-top: 1rem;
}

.spotlight-list,
.story-card-stack,
.capability-grid {
  display: grid;
  gap: 1rem;
  align-content: start;
}

.capability-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.process-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.process-card {
  padding: 1.18rem;
}

.process-index {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 999px;
  background: linear-gradient(145deg, #991419 0%, #bd2026 52%, #d64335 100%);
  color: #fff8f2;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.process-card h3 {
  margin-top: 0.9rem;
}

.sector-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 1rem;
  align-items: start;
}

.sector-grid {
  margin-top: 1.2rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.quote-panel {
  position: relative;
  overflow: hidden;
  border: 1px solid rgba(225, 191, 104, 0.36);
  border-radius: var(--radius);
  padding: 1.5rem;
  background: linear-gradient(135deg, #421315 0%, #71161b 52%, #bd2026 100%);
  color: #fff9f3;
  box-shadow: var(--shadow-strong);
}

.quote-panel::before {
  content: "";
  position: absolute;
  inset: auto -15% -20% auto;
  width: 14rem;
  height: 14rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 191, 104, 0.24), rgba(225, 191, 104, 0));
  pointer-events: none;
}

.quote-panel h3 {
  margin-top: 1rem;
  font-size: clamp(1.8rem, 3vw, 2.55rem);
  line-height: 1.08;
  max-width: 14ch;
}

.quote-panel p {
  margin-top: 0.95rem;
  color: rgba(255, 244, 231, 0.84);
}

.quote-panel small {
  display: block;
  margin-top: 1rem;
  color: #ffe3ab;
  font-weight: 700;
}

.page-hero-shell {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 4px);
  padding: clamp(1.45rem, 3vw, 2rem);
  background:
    radial-gradient(circle at 100% 0, rgba(189, 32, 38, 0.08), rgba(189, 32, 38, 0) 35%),
    linear-gradient(135deg, #fffefb 0%, #fbf3df 52%, #ffffff 100%);
  box-shadow: var(--shadow-card);
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  gap: 1rem;
}

.page-hero-shell::before {
  content: "";
  position: absolute;
  inset: auto auto -40% -12%;
  width: 18rem;
  height: 18rem;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(225, 191, 104, 0.16), rgba(225, 191, 104, 0));
  pointer-events: none;
}

.page-hero-copy h1 {
  margin-top: 0.9rem;
}

.page-hero-lead {
  max-width: 34ch;
  font-size: 1.06rem;
}

.page-hero-actions {
  margin-top: 1.35rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.page-hero-aside {
  display: grid;
  gap: 0.85rem;
  align-content: start;
}

.page-hero-highlight {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  padding: 1rem 1.05rem;
  background: rgba(255, 255, 255, 0.72);
  box-shadow: var(--shadow-card);
}

.page-hero-highlight strong {
  display: block;
  color: var(--accent-deep);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.page-hero-highlight span {
  display: block;
  margin-top: 0.38rem;
  color: var(--muted);
}

.story-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.04fr) minmax(0, 0.96fr);
  gap: 1rem;
}

.story-panel {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  padding: 1.35rem;
  background:
    radial-gradient(circle at 96% 10%, rgba(189, 32, 38, 0.08), rgba(189, 32, 38, 0) 42%),
    linear-gradient(180deg, #ffffff 0%, #fbf5e8 100%);
  box-shadow: var(--shadow-card);
}

.story-panel-dark {
  border-color: rgba(225, 191, 104, 0.32);
  background:
    radial-gradient(circle at 96% 10%, rgba(225, 191, 104, 0.12), rgba(225, 191, 104, 0) 42%),
    linear-gradient(135deg, #261919 0%, #4b1416 52%, #7a161a 100%);
  color: #fff9f3;
}

.story-panel-dark p,
.story-panel-dark li {
  color: rgba(255, 244, 231, 0.82);
}

.story-panel-dark .points li::before {
  box-shadow: 0 0 0 4px rgba(225, 191, 104, 0.14);
}

.story-panel-media {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
  border-radius: 12px;
  margin-bottom: 1rem;
  border: 1px solid rgba(225, 191, 104, 0.25);
}

.story-panel h2 {
  margin-top: 0.8rem;
}

.story-panel p {
  margin-top: 0.75rem;
}

.principle-grid {
  margin-top: 1.3rem;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
}

.team-grid {
  margin-top: 1.3rem;
}

.profile-role {
  margin-top: 0.15rem;
  color: var(--accent-deep);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.profile-copy {
  font-size: 0.92rem;
}

.standards-row {
  margin-top: 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.62rem;
}

.standard-pill {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 0.46rem 0.78rem;
  border: 1px solid rgba(189, 32, 38, 0.18);
  background: rgba(255, 255, 255, 0.8);
  color: var(--accent-deep);
  font-size: 0.84rem;
  font-weight: 700;
}

.panel-title {
  margin-top: 0.8rem;
}

.panel-copy {
  margin-top: 0.78rem;
  color: var(--muted);
}

.service-layout {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-panel {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: linear-gradient(180deg, #fffefb 0%, #f8f1e4 100%);
  box-shadow: var(--shadow-card);
}

.service-panel-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
}

.service-panel-body {
  padding: 1.2rem;
}

.service-panel-body h3 {
  margin-top: 0.7rem;
  font-size: 1.52rem;
}

.service-panel-body > p:last-of-type {
  margin-top: 0.55rem;
}

.form-grid {
  display: grid;
  gap: 0.84rem;
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.form-grid .full {
  grid-column: 1 / -1;
}

label {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--muted-strong);
  font-weight: 700;
  font-size: 0.88rem;
}

input,
select,
textarea {
  width: 100%;
  border: 1px solid #dfc896;
  border-radius: 10px;
  background: #fffefc;
  color: var(--ink);
  font: inherit;
  padding: 0.72rem 0.82rem;
  transition: border-color 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
}

select {
  cursor: pointer;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #c79c33;
}

textarea {
  min-height: 152px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  border-color: var(--accent);
  box-shadow: 0 0 0 4px rgba(189, 32, 38, 0.12);
  background: #ffffff;
}

.form-note {
  margin-top: 0.58rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.success-msg {
  display: none;
  margin-top: 0.8rem;
  border: 1px solid #8dd3ad;
  border-radius: 10px;
  background: #eefaf2;
  color: #1d6d4b;
  padding: 0.65rem 0.92rem;
  font-weight: 700;
}

.success-msg.show {
  display: block;
}

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

.contact-card h3 {
  margin-bottom: 0.35rem;
  font-size: 1.3rem;
}

.contact-card a {
  color: var(--accent-deep);
  font-weight: 600;
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s ease;
}

.contact-card a:hover {
  border-bottom-color: var(--accent-deep);
}

.site-footer {
  margin-top: 4.2rem;
  background: linear-gradient(180deg, #211717 0%, #311b1b 55%, #4b1416 100%);
  color: rgba(255, 244, 231, 0.78);
  border-top: 1px solid rgba(225, 191, 104, 0.32);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.3fr 1fr 1fr;
  gap: 1.5rem;
  padding: 3.2rem 0;
}

.site-footer h4 {
  margin-bottom: 0.68rem;
  color: #f8e4bb;
  font-size: 1.2rem;
}

.footer-links {
  display: grid;
  gap: 0.45rem;
}

.footer-links a {
  color: rgba(255, 244, 231, 0.78);
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: #ffe3ab;
}

.footer-bottom {
  border-top: 1px solid rgba(225, 191, 104, 0.2);
  padding: 0.95rem 0 1.3rem;
  color: rgba(255, 244, 231, 0.58);
  font-size: 0.88rem;
}

.js-ready .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.64s ease, transform 0.64s ease;
}

.js-ready .reveal.in-view {
  opacity: 1;
  transform: translateY(0);
}

.skip-link {
  position: absolute;
  left: -999rem;
  top: 0;
  z-index: 200;
  padding: 0.6rem 1.2rem;
  background: var(--accent);
  color: #fff8f2;
  font-weight: 700;
  border-radius: 0 0 var(--radius-sm) var(--radius-sm);
}

.skip-link:focus {
  left: 50%;
  transform: translateX(-50%);
}

::selection {
  background: rgba(225, 191, 104, 0.42);
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
.btn:focus-visible,
input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 1080px) {
  .split,
  .grid-3,
  .grid-2,
  .contact-cards,
  .footer-grid,
  .metrics-strip,
  .cta-block,
  .home-brief-grid,
  .spotlight-grid,
  .sector-layout,
  .story-grid,
  .principle-grid,
  .service-layout,
  .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .spotlight-main,
  .capability-grid,
  .process-grid {
    grid-template-columns: 1fr 1fr;
  }

  .feature-band-head {
    grid-template-columns: 1fr;
  }

  .hero-facts {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-copy h1 {
    max-width: 17ch;
  }

  .cta-block {
    gap: 1.1rem;
  }
}

@media (max-width: 960px) {
  .site-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 0;
    right: 0;
    padding: 0.8rem 4vw 1rem;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(251, 248, 244, 0.98));
    border-bottom: 1px solid rgba(225, 191, 104, 0.32);
    display: none;
    flex-direction: column;
    align-items: flex-start;
  }

  body.nav-open .site-nav {
    display: flex;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .cta-phone {
    display: none;
  }

  .hero {
    padding-top: 4.8rem;
  }

  .hero-shell {
    min-height: 28rem;
  }
}

@media (max-width: 700px) {
  .brand-logo {
    height: 2.42rem;
  }

  .hero-copy h1 {
    font-size: clamp(1.95rem, 10vw, 2.85rem);
    max-width: 100%;
  }

  .section,
  .section-tight {
    padding-top: 3.35rem;
    padding-bottom: 3.35rem;
  }

  .hero-detail-section {
    padding-top: 0.45rem;
    padding-bottom: 2.3rem;
  }

  .top-strip .container {
    font-size: 0.84rem;
  }

  .btn {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .hero-facts {
    grid-template-columns: 1fr;
  }

  .hero-stage {
    grid-template-columns: 1fr;
  }

  .hero-side-cards {
    grid-template-columns: 1fr;
  }

  .spotlight-main,
  .process-grid,
  .sector-grid,
  .capability-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell {
    min-height: 25.5rem;
  }

  .hero-content {
    padding: 1.05rem;
  }

  .hero-image {
    object-position: center 30%;
  }

  .rail-track {
    animation-duration: 20s;
  }

  .grid-3,
  .grid-2,
  .contact-cards,
  .metrics-strip,
  .cta-block,
  .service-layout,
  .principle-grid,
  .page-hero-shell {
    grid-template-columns: 1fr;
  }

  .cta-block {
    text-align: center;
    justify-items: center;
  }

  .page-hero-actions,
  .spotlight-body .page-hero-actions {
    width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  body::before,
  body::after,
  .hero::after,
  .js-ready .reveal,
  .btn,
  .card,
  .btn-primary::after,
  .hero-image,
  .live-indicator span,
  .rail-track,
  .nav-link {
    transition: none !important;
    animation: none !important;
  }
}

@keyframes gridDrift {
  from {
    background-position: 0 0;
  }
  to {
    background-position: 56px 56px;
  }
}

@keyframes ambientShift {
  0% {
    transform: translate3d(0, 0, 0) scale(1);
    opacity: 0.95;
  }
  100% {
    transform: translate3d(-24px, -16px, 0) scale(1.12);
    opacity: 0.72;
  }
}

@keyframes railMove {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

@keyframes pulseLive {
  0% {
    box-shadow: 0 0 0 0 rgba(114, 242, 186, 0.7);
  }
  70% {
    box-shadow: 0 0 0 8px rgba(114, 242, 186, 0);
  }
  100% {
    box-shadow: 0 0 0 0 rgba(114, 242, 186, 0);
  }
}

@keyframes imageFloat {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(-6px);
  }
}

@keyframes sheenMove {
  0% {
    transform: translateX(-130%);
  }
  60%,
  100% {
    transform: translateX(130%);
  }
}
