:root {
  --navy: #b85000;
  --gold: #d4af37;
  --brand-green: #174b25;
  --brand-green-deep: #073417;
  --brand-orange: #ef5b13;
  --white: #ffffff;
  --cream: #f8f3e7;
  --ink: #111111;
  --heading: "Montserrat", "Helvetica Neue", sans-serif;
  --subheading: "Cormorant Garamond", Georgia, serif;
  --muted: rgba(17, 17, 17, 0.68);
  --line: rgba(184, 80, 0, 0.12);
  --shadow: 0 24px 80px rgba(184, 80, 0, 0.16);
  --radius-xl: 32px;
  --radius-lg: 24px;
  --radius-md: 18px;
  --header-offset: 124px;
  color-scheme: light;
}

:root[data-theme="dark"] {
  --navy: #fbeee2;
  --cream: #302014;
  --ink: #fdf8f5;
  --muted: rgba(253, 248, 245, 0.68);
  --line: rgba(255, 255, 255, 0.12);
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
  color-scheme: dark;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: var(--header-offset);
}

html.is-programmatic-scrolling {
  scroll-behavior: auto;
}

html.has-js:not(.loader-complete),
html.has-js:not(.loader-complete) body {
  overflow: hidden;
}

body {
  margin: 0;
  min-height: 100vh;
  color: var(--ink);
  font-family: "Manrope", "Helvetica Neue", sans-serif;
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.18), transparent 30%),
    radial-gradient(circle at right 20%, rgba(184, 80, 0, 0.08), transparent 26%),
    linear-gradient(180deg, #fffdfa 0%, #fbf7ef 100%);
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image: linear-gradient(rgba(184, 80, 0, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(184, 80, 0, 0.03) 1px, transparent 1px);
  background-size: 64px 64px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.35), transparent 80%);
}

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

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

.site-loader {
  display: none;
}

.has-js .site-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: grid;
  place-items: center;
  padding: 24px;
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.16), transparent 28%),
    linear-gradient(145deg, #fffdf8, #f8f3e7);
  opacity: 1;
  visibility: visible;
  transition: opacity 520ms ease, visibility 520ms ease;
}

.has-js .site-loader.is-hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.site-loader__content {
  display: grid;
  justify-items: center;
  text-align: center;
}

.site-loader__mark {
  position: relative;
  display: grid;
  place-items: center;
  width: 112px;
  height: 112px;
  margin-bottom: 22px;
}

.site-loader__mark img {
  position: relative;
  z-index: 1;
  width: 86px;
  height: 86px;
  padding: 8px;
  object-fit: contain;
  border: 1px solid rgba(184, 80, 0, 0.08);
  border-radius: 24px;
  background: #fff;
  box-shadow: 0 18px 50px rgba(184, 80, 0, 0.16);
  animation: loader-logo 1.25s ease-in-out infinite;
}

.site-loader__ring {
  position: absolute;
  inset: 4px;
  border: 2px solid rgba(212, 175, 55, 0.42);
  border-radius: 32px;
  animation: loader-ring 1.25s ease-out infinite;
}

.site-loader__content strong {
  font-family: var(--heading);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--brand-orange);
  background: linear-gradient(100deg, var(--brand-orange), var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.site-loader__content > span:not(.site-loader__progress) {
  margin-top: 5px;
  color: var(--brand-green);
  font-size: 0.86rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.site-loader__progress {
  position: relative;
  width: 136px;
  height: 3px;
  margin-top: 20px;
  overflow: hidden;
  border-radius: 999px;
  background: rgba(184, 80, 0, 0.09);
}

.site-loader__progress::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--brand-green), var(--gold), var(--brand-orange));
  transform: translateX(-100%);
  animation: loader-progress 1.1s ease-in-out infinite;
}

[data-theme="dark"] .site-loader__content > span:not(.site-loader__progress) {
  color: #8fc58e;
}

@keyframes loader-logo {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.06); }
}

@keyframes loader-ring {
  from {
    opacity: 0.75;
    transform: scale(0.76);
  }
  to {
    opacity: 0;
    transform: scale(1.16);
  }
}

@keyframes loader-progress {
  0% { transform: translateX(-100%); }
  55%, 100% { transform: translateX(100%); }
}

.backdrop {
  position: fixed;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.55;
  pointer-events: none;
  z-index: -1;
}

.backdrop-1 {
  width: 18rem;
  height: 18rem;
  top: -4rem;
  right: -2rem;
  background: rgba(212, 175, 55, 0.14);
}

.backdrop-2 {
  width: 24rem;
  height: 24rem;
  bottom: -8rem;
  left: -10rem;
  background: rgba(184, 80, 0, 0.1);
}

.topbar,
.section,
.footer {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 16px;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 14px 18px;
  margin-top: 16px;
  border: 1px solid rgba(184, 80, 0, 0.08);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.8);
  backdrop-filter: blur(20px);
  box-shadow: 0 10px 40px rgba(184, 80, 0, 0.08);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
}

.brand-logo {
  width: 56px;
  height: 56px;
  object-fit: contain;
  border-radius: 16px;
  background: #fff;
  box-shadow: inset 0 0 0 1px rgba(184, 80, 0, 0.08);
  padding: 5px;
}

.brand-copy {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.brand-copy strong {
  font-size: 0.98rem;
  letter-spacing: 0.02em;
  color: var(--brand-orange);
  background: linear-gradient(100deg, var(--brand-orange), #d79d12 72%, var(--gold));
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.brand-copy span {
  color: var(--brand-green);
  font-size: 0.82rem;
  font-weight: 700;
}

[data-theme="dark"] .brand-copy span {
  color: #96c995;
}

.nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 0.95rem;
  color: var(--muted);
}

.menu-toggle {
  display: none;
}

.topbar__controls {
  display: flex;
  align-items: center;
  order: 2;
}

.nav {
  order: 1;
}

.topbar > .button {
  order: 3;
}

.theme-toggle {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border: 1px solid rgba(184, 80, 0, 0.12);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.72);
  color: var(--ink);
  cursor: pointer;
  transition: transform 180ms ease, border-color 180ms ease, background 180ms ease;
}

.theme-toggle:hover {
  transform: translateY(-2px);
  border-color: rgba(212, 175, 55, 0.55);
}

.theme-toggle:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
}

.theme-toggle svg {
  position: absolute;
  width: 19px;
  height: 19px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: opacity 180ms ease, transform 240ms ease;
}

.theme-toggle__sun {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.theme-toggle__moon {
  opacity: 0;
  transform: rotate(-30deg) scale(0.7);
}

[data-theme="dark"] .theme-toggle__sun {
  opacity: 0;
  transform: rotate(30deg) scale(0.7);
}

[data-theme="dark"] .theme-toggle__moon {
  opacity: 1;
  transform: rotate(0) scale(1);
}

.nav a {
  position: relative;
  padding: 6px 0;
  transition: color 180ms ease, transform 180ms ease;
}

.nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 1px;
  width: 100%;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 240ms cubic-bezier(0.2, 0.8, 0.2, 1);
  background: var(--gold);
}

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

.nav a:hover,
.nav a.is-active {
  color: var(--navy);
}

.nav a.is-clicked {
  animation: nav-click 360ms ease;
}

.nav a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
  border-radius: 4px;
}

.section {
  padding: 40px 0;
  scroll-margin-top: var(--header-offset);
}

.nav-target-enter {
  animation: nav-target-enter 560ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes nav-click {
  0%, 100% { transform: translateY(0); }
  45% { transform: translateY(-3px); }
}

@keyframes nav-target-enter {
  from {
    opacity: 0.72;
    transform: translateY(14px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 28px;
  align-items: center;
  padding-top: 36px;
}

.hero__content,
.contact-panel,
.card,
.process-step,
.portfolio-card,
.showcase-card {
  border: 1px solid rgba(184, 80, 0, 0.1);
  box-shadow: var(--shadow);
}

.hero__content {
  padding: 30px;
  border-radius: var(--radius-xl);
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(8px);
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 0.82rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: var(--heading);
  font-weight: 600;
  line-height: 1.04;
  letter-spacing: -0.035em;
}

h1 {
  font-size: clamp(3rem, 5.3vw, 5.15rem);
  max-width: 11ch;
}

h2 {
  font-size: clamp(2rem, 3.4vw, 3.25rem);
}

h3 {
  font-size: clamp(1.35rem, 2.1vw, 1.85rem);
}

.lede,
.section-copy,
.card p,
.process-step p,
.portfolio-card p,
.contact-panel p,
.showcase-card p {
  color: var(--muted);
  line-height: 1.75;
  font-size: 1rem;
}

.lede {
  max-width: 58ch;
  margin: 24px 0 0;
}

.hero__actions,
.contact-panel__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 28px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border-radius: 999px;
  background: var(--navy);
  color: var(--white);
  font-size: 0.95rem;
  font-weight: 600;
  border: 1px solid transparent;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
  box-shadow: 0 12px 28px rgba(184, 80, 0, 0.18);
}

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

.button--secondary {
  background: transparent;
  color: var(--ink);
  border-color: rgba(184, 80, 0, 0.16);
  box-shadow: none;
}

.button--ghost {
  background: transparent;
  color: var(--ink);
  border-color: rgba(184, 80, 0, 0.12);
  box-shadow: none;
}

.stats {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  margin-top: 32px;
}

.stats div,
.mini-grid div {
  padding: 18px 18px 16px;
  border-radius: 20px;
  background: linear-gradient(180deg, rgba(184, 80, 0, 0.03), rgba(184, 80, 0, 0.01));
  border: 1px solid rgba(184, 80, 0, 0.08);
}

.stats strong {
  display: block;
  margin-bottom: 6px;
  font-size: 1.5rem;
  font-weight: 600;
  color: var(--ink);
}

.stats--trust strong {
  font-size: 1rem;
  line-height: 1.35;
}

.stats span,
.mini-grid span,
.card__icon,
.portfolio-card__meta,
.process-step span,
.palette-label,
.year {
  color: var(--muted);
  font-size: 0.84rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero__showcase {
  display: grid;
  gap: 18px;
  border: 0;
  box-shadow: none;
  background: transparent;
}

.photo-carousel {
  position: relative;
  min-width: 0;
  height: 100%;
  min-height: 620px;
  overflow: hidden;
  border: 1px solid rgba(184, 80, 0, 0.1);
  border-radius: var(--radius-xl);
  background: var(--navy);
  box-shadow: var(--shadow);
}

.photo-carousel__track {
  display: flex;
  width: 400%;
  height: 100%;
  animation: carousel-slide 10s cubic-bezier(0.72, 0, 0.28, 1) infinite;
}

.photo-carousel__slide {
  position: relative;
  flex: 0 0 25%;
  height: 100%;
  margin: 0;
}

.photo-carousel__slide::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(184, 80, 0, 0.02) 35%, rgba(184, 80, 0, 0.78) 100%);
}

.photo-carousel__slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.photo-carousel__slide figcaption {
  position: absolute;
  right: 28px;
  bottom: 112px;
  z-index: 1;
  padding: 8px 13px;
  border: 1px solid rgba(255, 255, 255, 0.28);
  border-radius: 999px;
  background: rgba(184, 80, 0, 0.42);
  color: #fff;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  backdrop-filter: blur(10px);
}

.photo-carousel__label {
  position: absolute;
  right: 28px;
  bottom: 28px;
  left: 28px;
  z-index: 2;
  color: #fff;
}

.photo-carousel__label span {
  display: block;
  margin-bottom: 6px;
  color: #ffe7a3;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.photo-carousel__label strong {
  display: block;
  max-width: 19ch;
  font-family: var(--heading);
  font-size: clamp(1.35rem, 2vw, 2rem);
  line-height: 1.12;
}

@keyframes carousel-slide {
  0%, 27% { transform: translateX(0); }
  33%, 60% { transform: translateX(-25%); }
  66%, 93% { transform: translateX(-50%); }
  100% { transform: translateX(-75%); }
}

.showcase-card {
  position: relative;
  overflow: hidden;
  padding: 28px;
  border-radius: var(--radius-xl);
}

.showcase-card--dark {
  color: var(--white);
  background:
    linear-gradient(145deg, rgba(184, 80, 0, 0.98), rgba(184, 80, 0, 0.88)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.3), transparent 28%);
}

.showcase-card--dark h2,
.showcase-card--dark .mini-grid strong,
.showcase-card--dark p,
.showcase-card--dark .year {
  color: #fefcf8;
}

.showcase-card--dark::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 0;
  border-radius: 24px;
  pointer-events: none;
}

.showcase-card--dark::after {
  content: "";
  position: absolute;
  right: -16px;
  top: -16px;
  width: 180px;
  height: 180px;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.24), transparent 60%);
  pointer-events: none;
}

.showcase-card__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  margin-bottom: 18px;
}

.promise-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  gap: 22px;
  align-items: start;
}

.promise-layout__main h2 {
  max-width: 13ch;
  margin-bottom: 16px;
}

.promise-layout__main p {
  max-width: 48ch;
  margin: 0;
}

.promise-layout__side {
  display: grid;
  gap: 12px;
  padding: 0;
  border-radius: 0;
  background: transparent;
  border: 0;
  backdrop-filter: none;
}

.promise-layout__side div {
  padding: 15px 16px;
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.05);
}

.promise-layout__side span {
  display: block;
  margin-bottom: 5px;
  color: rgba(255, 253, 248, 0.62);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.promise-layout__side strong {
  display: block;
  color: #fffdf8;
  font-size: 0.94rem;
  font-weight: 600;
  letter-spacing: -0.01em;
  line-height: 1.4;
}

.showcase-card--dark .badge {
  background: rgba(212, 175, 55, 0.2);
  color: #ffe7a3;
}

.showcase-card--dark .year {
  color: rgba(255, 253, 248, 0.82);
}

.badge {
  display: inline-flex;
  align-items: center;
  min-height: 32px;
  padding: 0 12px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: #f7e5a0;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.showcase-card h2 {
  margin-bottom: 10px;
  font-size: clamp(2rem, 2.7vw, 2.75rem);
}

.showcase-card p {
  margin: 0;
}

.mini-grid {
  position: relative;
  z-index: 1;
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.showcase-card--dark .mini-grid {
  display: none;
}

.mini-grid strong {
  display: block;
  margin-top: 6px;
  font-size: 0.98rem;
  letter-spacing: 0;
  text-transform: none;
}

.showcase-card--light {
  background: rgba(255, 255, 255, 0.9);
  padding-top: 24px;
}

.showcase-card--light p {
  margin-top: 18px;
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.about-card {
  padding: 28px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
  border: 1px solid rgba(184, 80, 0, 0.08);
  box-shadow: var(--shadow);
}

.about-card p {
  margin: 14px 0 0;
  color: var(--muted);
  line-height: 1.75;
}

.palette {
  display: flex;
  gap: 12px;
  margin-top: 18px;
}

.palette span {
  width: 58px;
  height: 58px;
  border-radius: 18px;
  background: var(--swatch);
  border: 1px solid rgba(184, 80, 0, 0.08);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.4);
}

.section-heading {
  display: grid;
  gap: 12px;
  max-width: 780px;
  margin-bottom: 24px;
}

.section-heading--split {
  grid-template-columns: 1.1fr 0.9fr;
  gap: 24px;
  align-items: end;
  max-width: none;
}

.section-copy {
  margin: 0;
}

.section--dense {
  padding-top: 16px;
}

.card-grid {
  display: grid;
  gap: 18px;
}

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

.card-grid--services-eight {
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.card {
  min-height: 180px;
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 8px;
  overflow: hidden;
  padding: 0 0 24px;
}

.service-card__image {
  width: 100%;
  height: 170px;
  margin-bottom: 14px;
  object-fit: cover;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.service-card:hover .service-card__image {
  transform: scale(1.04);
}

.service-card h3,
.service-card p,
.service-card .service-link {
  margin-right: 24px;
  margin-left: 24px;
}

.service-link {
  margin-top: auto;
  color: var(--gold);
  font-weight: 600;
  letter-spacing: 0.02em;
}

.service-link::after {
  content: " ->";
}

.chip-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 12px;
}

.chip-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 56px;
  padding: 0 14px;
  border-radius: 999px;
  border: 1px solid rgba(184, 80, 0, 0.14);
  background: rgba(255, 255, 255, 0.86);
  font-weight: 600;
}

.why-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
}

.why-item {
  padding: 16px 18px;
  border-radius: 16px;
  border: 1px solid rgba(184, 80, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
  font-weight: 500;
}

.why-item::before {
  content: "\2713";
  margin-right: 8px;
  color: var(--gold);
}

.why-showcase {
  padding: 38px;
}

.why-showcase .section-heading {
  position: relative;
  z-index: 1;
  margin-bottom: 28px;
}

.why-showcase .section-copy {
  color: rgba(255, 253, 248, 0.74);
}

.why-showcase .why-grid {
  position: relative;
  z-index: 1;
}

.why-showcase .why-item {
  border-color: rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: #fffdf8;
}

.transparency-panel {
  display: grid;
  grid-template-columns: 0.88fr 1.12fr;
  gap: 42px;
  align-items: center;
  padding: 44px;
  overflow: hidden;
  border: 1px solid rgba(184, 80, 0, 0.1);
  border-radius: var(--radius-xl);
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.16), transparent 30%),
    rgba(255, 255, 255, 0.9);
  box-shadow: var(--shadow);
}

.transparency-copy > p:not(.eyebrow):not(.transparency-promise) {
  color: var(--muted);
  line-height: 1.75;
}

.transparency-benefits {
  display: grid;
  gap: 14px;
  margin: 26px 0;
  padding: 0;
  list-style: none;
}

.transparency-benefits li {
  position: relative;
  display: grid;
  gap: 3px;
  padding-left: 30px;
}

.transparency-benefits li::before {
  content: "\2713";
  position: absolute;
  top: 0;
  left: 0;
  display: grid;
  place-items: center;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 800;
}

.transparency-benefits span {
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.55;
}

.transparency-promise {
  margin: 0;
  padding: 16px 18px;
  border-left: 3px solid var(--gold);
  border-radius: 0 12px 12px 0;
  background: rgba(212, 175, 55, 0.1);
  font-family: var(--subheading);
  font-size: 1.12rem;
  font-weight: 600;
  line-height: 1.45;
}

.task-dashboard {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 24px;
  background: var(--navy);
  color: #fff;
  box-shadow: 0 28px 70px rgba(184, 80, 0, 0.28);
}

.task-dashboard__top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
}

.task-dashboard__top > div {
  display: grid;
  gap: 5px;
}

.task-dashboard__label {
  color: rgba(255, 255, 255, 0.56);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.readiness-score {
  padding: 8px 11px;
  border-radius: 999px;
  background: rgba(212, 175, 55, 0.16);
  color: #f2d578;
  font-size: 0.75rem;
  font-weight: 700;
  white-space: nowrap;
}

.readiness-bar {
  height: 6px;
  margin-top: 18px;
  overflow: hidden;
  border-radius: 99px;
  background: rgba(255, 255, 255, 0.09);
}

.readiness-bar span {
  display: block;
  width: 86%;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--gold), #f2d578);
}

.task-summary {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 8px;
  margin: 18px 0;
}

.task-summary div {
  display: grid;
  gap: 2px;
  padding: 12px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.055);
}

.task-summary strong {
  color: #f2d578;
  font-size: 1.15rem;
}

.task-summary span {
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.7rem;
}

.task-list {
  display: grid;
  gap: 8px;
}

.task-row {
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  gap: 11px;
  align-items: center;
  padding: 12px;
  border-radius: 13px;
  background: rgba(255, 255, 255, 0.06);
}

.task-row > div {
  display: grid;
  gap: 3px;
  min-width: 0;
}

.task-row strong {
  overflow: hidden;
  font-size: 0.82rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-row > div span {
  overflow: hidden;
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.66rem;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.task-check {
  display: grid;
  place-items: center;
  width: 25px;
  height: 25px;
  border-radius: 8px;
  font-size: 0.72rem;
  font-weight: 800;
}

.task-check--approved {
  background: rgba(83, 207, 140, 0.16);
  color: #70dda2;
}

.task-check--review {
  background: rgba(212, 175, 55, 0.16);
  color: #f2d578;
}

.task-check--pending {
  background: rgba(184, 80, 0, 0.16);
  color: #ffb37a;
}

.task-status {
  padding: 6px 8px;
  border-radius: 99px;
  font-size: 0.61rem;
  font-weight: 700;
  white-space: nowrap;
}

.task-status--approved {
  background: rgba(83, 207, 140, 0.13);
  color: #70dda2;
}

.task-status--review {
  background: rgba(212, 175, 55, 0.13);
  color: #f2d578;
}

.task-status--pending {
  background: rgba(184, 80, 0, 0.13);
  color: #ffb37a;
}

.approval-gate {
  display: flex;
  gap: 11px;
  align-items: center;
  margin-top: 14px;
  padding: 13px;
  border: 1px solid rgba(212, 175, 55, 0.22);
  border-radius: 13px;
  background: rgba(212, 175, 55, 0.08);
}

.approval-gate > span {
  display: grid;
  flex: 0 0 auto;
  place-items: center;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--ink);
  font-weight: 800;
}

.approval-gate p {
  margin: 0;
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.7rem;
  line-height: 1.45;
}

.approval-gate strong {
  display: block;
  color: #fff;
  font-size: 0.75rem;
}

.card__icon {
  display: inline-flex;
  margin-bottom: 42px;
  color: var(--gold);
  font-weight: 800;
}

.card h3,
.process-step h3,
.portfolio-card h3 {
  margin-bottom: 12px;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.portfolio-grid--deck {
  grid-auto-rows: minmax(220px, auto);
}

.portfolio-card {
  position: relative;
  overflow: hidden;
  min-height: 220px;
  padding: 24px;
  border-radius: var(--radius-lg);
  background:
    linear-gradient(155deg, rgba(184, 80, 0, 0.98), rgba(184, 80, 0, 0.84)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.22), transparent 28%);
  color: var(--white);
}

.portfolio-card--image {
  display: flex;
  align-items: flex-end;
  min-height: 300px;
  padding: 0;
  isolation: isolate;
}

.portfolio-card--image > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.portfolio-card--image::before {
  inset: 0;
  z-index: -1;
  border: 0;
  border-radius: 0;
  background: linear-gradient(180deg, rgba(184, 80, 0, 0.04) 22%, rgba(184, 80, 0, 0.92) 100%);
}

.portfolio-card--image::after {
  right: -35px;
  bottom: -45px;
  z-index: -1;
  width: 180px;
  height: 180px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(212, 175, 55, 0.35), transparent 66%);
}

.portfolio-card--image:hover > img {
  transform: scale(1.06);
}

.portfolio-card__content {
  width: 100%;
  padding: 26px;
}

.portfolio-card--image .portfolio-card__meta {
  color: #ffe7a3;
}

.portfolio-card--image h3 {
  margin-top: 8px;
  margin-bottom: 0;
}

.portfolio-card--light-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.98), rgba(248, 243, 231, 0.98));
  color: var(--ink);
}

.portfolio-card--light-card::before {
  border-color: rgba(184, 80, 0, 0.12);
}

.portfolio-card--light-card p {
  color: var(--muted);
}

.portfolio-card::before {
  content: "";
  position: absolute;
  inset: 16px;
  border: 1px solid rgba(212, 175, 55, 0.28);
  border-radius: 20px;
}

.portfolio-card::after {
  content: "";
  position: absolute;
  right: -18px;
  bottom: -28px;
  width: 160px;
  height: 160px;
  background: linear-gradient(135deg, rgba(212, 175, 55, 0.14), transparent 60%);
  transform: rotate(18deg);
}

.portfolio-card h3,
.portfolio-card__meta,
.portfolio-card p {
  position: relative;
  z-index: 1;
}

.portfolio-card h3 {
  max-width: 12ch;
  margin-top: 18px;
  color: #fffdf8;
}

.portfolio-card p {
  max-width: 34ch;
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.76);
}

.portfolio-card--large {
  grid-column: span 2;
  min-height: 280px;
}

.portfolio-card--wide {
  grid-column: span 3;
  min-height: 180px;
  background:
    linear-gradient(110deg, rgba(247, 243, 235, 0.98), rgba(255, 255, 255, 0.94)),
    radial-gradient(circle at left, rgba(212, 175, 55, 0.16), transparent 30%);
  color: var(--ink);
}

.portfolio-card--wide::before {
  border-color: rgba(212, 175, 55, 0.2);
}

.portfolio-card--wide::after {
  background: radial-gradient(circle, rgba(212, 175, 55, 0.14), transparent 58%);
}

.portfolio-card--wide h3,
.portfolio-card--wide p {
  color: var(--ink);
}

.portfolio-card--span3 {
  grid-column: span 3;
  min-height: 180px;
}

.process {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.timeline {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 0;
  border-top: 1px solid rgba(184, 80, 0, 0.12);
  border-bottom: 1px solid rgba(184, 80, 0, 0.12);
  background: rgba(255, 255, 255, 0.84);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.timeline li {
  padding: 18px 20px;
  border-top: 1px solid rgba(184, 80, 0, 0.08);
  display: flex;
  align-items: center;
  gap: 12px;
}

.timeline li:first-child {
  border-top: 0;
}

.timeline li::before {
  content: "";
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: var(--gold);
  flex: 0 0 auto;
}

.timeline strong {
  font-size: 1rem;
}

.founders-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.founder-card {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 80, 0, 0.12);
  background: rgba(255, 255, 255, 0.88);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, box-shadow 240ms ease;
}

.founder-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 30px 90px rgba(184, 80, 0, 0.2);
}

.founder-card__photo {
  position: relative;
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: var(--cream);
}

.founder-card__photo::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 34%;
  pointer-events: none;
  background: linear-gradient(180deg, transparent, rgba(184, 80, 0, 0.16));
}

.founder-card__photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center 27%;
  transition: transform 500ms cubic-bezier(0.2, 0.8, 0.2, 1);
}

.founder-card:nth-child(2) .founder-card__photo img {
  object-position: center 29%;
}

.founder-card:hover .founder-card__photo img {
  transform: scale(1.025);
}

.founder-card__body {
  padding: 26px 28px 28px;
}

.founder-role {
  margin: 8px 0 12px;
  color: var(--gold);
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.8rem;
}

.founder-card p {
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.process-step {
  padding: 26px;
  border-radius: var(--radius-lg);
  background: rgba(255, 255, 255, 0.88);
}

.process-step span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(212, 175, 55, 0.15);
  color: var(--gold);
  font-weight: 800;
}

.contact-panel {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 34px 36px;
  border-radius: var(--radius-xl);
  background: linear-gradient(135deg, rgba(184, 80, 0, 0.98), rgba(184, 80, 0, 0.9));
  color: var(--white);
}

.contact-panel h2,
.contact-panel p {
  color: #fffdf8;
}

.contact-panel p {
  max-width: 56ch;
}

.contact-panel__actions .button--secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.24);
}

.footer {
  padding: 12px 0 32px;
  color: var(--muted);
  font-size: 0.95rem;
  text-align: center;
}

.footer--rich {
  width: min(1180px, calc(100% - 32px));
  margin: 0 auto 24px;
  padding: 28px;
  border-radius: var(--radius-lg);
  border: 1px solid rgba(184, 80, 0, 0.12);
  background: rgba(255, 255, 255, 0.9);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr 1fr;
  gap: 20px;
  text-align: left;
}

.footer-grid h3,
.footer-grid h4 {
  margin-bottom: 8px;
  font-size: 1.05rem;
}

.footer-grid p {
  margin: 0 0 8px;
  line-height: 1.6;
}

.footer-copy {
  margin: 12px 0 0;
  padding-top: 14px;
  border-top: 1px solid rgba(184, 80, 0, 0.1);
}

.reveal {
  opacity: 1;
  transform: none;
}

.js-enabled .reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 700ms ease, transform 700ms ease;
}

.js-enabled .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

[data-theme="dark"] body {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.12), transparent 30%),
    radial-gradient(circle at right 20%, rgba(184, 80, 0, 0.13), transparent 28%),
    linear-gradient(180deg, #1f1207 0%, #2b180a 100%);
}

[data-theme="dark"] body::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.025) 1px, transparent 1px);
}

[data-theme="dark"] .has-js .site-loader {
  background:
    radial-gradient(circle at center, rgba(212, 175, 55, 0.12), transparent 30%),
    linear-gradient(145deg, #2b180a, #3b2212);
}

[data-theme="dark"] .site-loader__mark img,
[data-theme="dark"] .brand-logo {
  background: #fdfcf8;
}

[data-theme="dark"] .site-loader__progress {
  background: rgba(255, 255, 255, 0.1);
}

[data-theme="dark"] .backdrop-1 {
  background: rgba(212, 175, 55, 0.11);
}

[data-theme="dark"] .backdrop-2 {
  background: rgba(184, 80, 0, 0.15);
}

[data-theme="dark"] .topbar {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(36, 20, 9, 0.82);
  box-shadow: 0 10px 40px rgba(0, 0, 0, 0.24);
}

[data-theme="dark"] .theme-toggle,
[data-theme="dark"] .menu-toggle {
  border-color: rgba(255, 255, 255, 0.13);
  background: rgba(255, 255, 255, 0.06);
  color: #fdf8f5;
}

[data-theme="dark"] .hero__content,
[data-theme="dark"] .about-card,
[data-theme="dark"] .card,
[data-theme="dark"] .process-step,
[data-theme="dark"] .founder-card,
[data-theme="dark"] .footer--rich {
  border-color: rgba(255, 255, 255, 0.09);
  background: rgba(59, 34, 18, 0.82);
}

[data-theme="dark"] .photo-carousel {
  border-color: rgba(255, 255, 255, 0.09);
  background: #b85000;
}

[data-theme="dark"] .hero__content {
  backdrop-filter: blur(12px);
}

[data-theme="dark"] .button {
  background: var(--gold);
  color: #b85000;
}

[data-theme="dark"] .button--secondary,
[data-theme="dark"] .button--ghost {
  border-color: rgba(255, 255, 255, 0.18);
  background: transparent;
  color: #fdf8f5;
}

[data-theme="dark"] .stats {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.035);
}

[data-theme="dark"] .stats div {
  border-color: rgba(255, 255, 255, 0.08);
}

[data-theme="dark"] .why-showcase,
[data-theme="dark"] .task-dashboard,
[data-theme="dark"] .contact-panel {
  background:
    linear-gradient(145deg, rgba(51, 32, 15, 0.99), rgba(36, 20, 9, 0.98)),
    radial-gradient(circle at top right, rgba(212, 175, 55, 0.14), transparent 32%);
}

[data-theme="dark"] .transparency-panel {
  border-color: rgba(255, 255, 255, 0.09);
  background:
    radial-gradient(circle at 90% 10%, rgba(212, 175, 55, 0.12), transparent 30%),
    rgba(59, 34, 18, 0.86);
}

[data-theme="dark"] .transparency-promise {
  background: rgba(212, 175, 55, 0.09);
}

[data-theme="dark"] .timeline {
  border-color: rgba(255, 255, 255, 0.1);
  background: rgba(59, 34, 18, 0.82);
}

[data-theme="dark"] .timeline li {
  border-color: rgba(255, 255, 255, 0.075);
}

[data-theme="dark"] .portfolio-card,
[data-theme="dark"] .portfolio-card--image {
  border-color: rgba(255, 255, 255, 0.09);
}

[data-theme="dark"] .portfolio-card--light-card,
[data-theme="dark"] .portfolio-card--wide {
  background:
    linear-gradient(135deg, rgba(63, 39, 22, 0.98), rgba(51, 32, 15, 0.98)),
    radial-gradient(circle at left, rgba(212, 175, 55, 0.12), transparent 30%);
  color: #fdf8f5;
}

[data-theme="dark"] .portfolio-card--light-card h3,
[data-theme="dark"] .portfolio-card--light-card p,
[data-theme="dark"] .portfolio-card--wide h3,
[data-theme="dark"] .portfolio-card--wide p {
  color: #fdf8f5;
}

[data-theme="dark"] .founder-card__photo {
  background: #3b2212;
}

[data-theme="dark"] .footer-copy {
  border-color: rgba(255, 255, 255, 0.1);
}

@media (max-width: 1080px) {
  .hero,
  .section-heading--split,
  .contact-panel,
  .about-grid {
    grid-template-columns: 1fr;
    flex-direction: column;
    align-items: flex-start;
  }

  .card-grid--services,
  .card-grid--services-eight,
  .portfolio-grid,
  .process,
  .chip-grid,
  .why-grid,
  .stats {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

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

  .promise-layout {
    grid-template-columns: 1fr;
  }

  .transparency-panel {
    grid-template-columns: 1fr;
  }

  .portfolio-card--large,
  .portfolio-card--wide {
    grid-column: span 2;
  }

  .portfolio-card--span3 {
    grid-column: span 2;
  }
}

@media (max-width: 760px) {
  .topbar {
    position: relative;
    top: auto;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto;
    gap: 0 12px;
    padding: 10px 12px;
    border-radius: 22px;
  }

  .topbar__controls {
    display: flex;
    align-items: center;
    gap: 8px;
    order: 1;
  }

  .nav {
    order: 2;
  }

  .theme-toggle,
  .menu-toggle {
    width: 42px;
    height: 42px;
    border-radius: 13px;
  }

  .brand {
    gap: 10px;
  }

  .brand-logo {
    width: 44px;
    height: 44px;
    border-radius: 13px;
  }

  .brand-copy strong {
    font-size: 0.94rem;
  }

  .brand-copy span {
    font-size: 0.7rem;
    white-space: nowrap;
  }

  .topbar > .button {
    display: none;
  }

  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    padding: 0;
    border: 1px solid rgba(184, 80, 0, 0.12);
    border-radius: 13px;
    background: rgba(255, 255, 255, 0.76);
    color: var(--ink);
    cursor: pointer;
  }

  .menu-toggle span {
    display: block;
    width: 19px;
    height: 2px;
    border-radius: 999px;
    background: currentColor;
    transition: transform 220ms ease, opacity 180ms ease;
  }

  .menu-toggle:focus-visible {
    outline: 2px solid var(--gold);
    outline-offset: 3px;
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(2) {
    opacity: 0;
  }

  .topbar.is-menu-open .menu-toggle span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .nav {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    width: 100%;
    max-height: 0;
    margin-top: 0;
    padding: 0;
    overflow: hidden;
    visibility: hidden;
    opacity: 0;
    transform: translateY(-6px);
    transition:
      max-height 300ms ease,
      margin-top 300ms ease,
      padding 300ms ease,
      opacity 200ms ease,
      transform 300ms ease,
      visibility 300ms ease;
  }

  .topbar.is-menu-open .nav {
    max-height: 320px;
    margin-top: 10px;
    padding: 10px 0 4px;
    border-top: 1px solid rgba(184, 80, 0, 0.09);
    visibility: visible;
    opacity: 1;
    transform: translateY(0);
  }

  .nav a {
    padding: 10px 12px;
    border-radius: 12px;
    text-align: center;
  }

  .nav a::after {
    right: 20%;
    left: 20%;
    width: auto;
  }

  .nav a:hover,
  .nav a.is-active {
    background: rgba(212, 175, 55, 0.09);
  }

  .hero__content,
  .showcase-card,
  .card,
  .process-step,
  .contact-panel,
  .transparency-panel {
    padding: 24px;
  }

  .card.service-card {
    padding: 0 0 24px;
  }

  .photo-carousel {
    min-height: 460px;
  }

  .promise-layout__side {
    padding: 12px;
  }

  .hero,
  .section {
    width: min(1180px, calc(100% - 20px));
  }

  .stats,
  .card-grid--services,
  .card-grid--services-eight,
  .portfolio-grid,
  .process,
  .about-grid,
  .why-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .chip-grid span {
    min-height: 44px;
    padding: 8px 10px;
    border-radius: 14px;
    font-size: 0.82rem;
    line-height: 1.2;
    text-align: center;
  }

  .portfolio-card--large,
  .portfolio-card--wide {
    grid-column: auto;
  }

  .portfolio-card--span3 {
    grid-column: auto;
  }

  .task-dashboard {
    padding: 16px;
  }

  .task-status {
    display: none;
  }

  .task-summary div {
    padding: 10px 8px;
  }

  .hero {
    padding-top: 28px;
  }

  h1 {
    max-width: 100%;
    font-size: clamp(2.55rem, 12vw, 3.25rem);
    line-height: 1.06;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .nav a,
  .nav a::after,
  .reveal,
  .nav-target-enter,
  .site-loader,
  .site-loader__mark img,
  .site-loader__ring,
  .site-loader__progress::after {
    animation: none !important;
    transition: none !important;
  }

  .photo-carousel__track {
    animation: none !important;
  }
}

/* Editorial brand theme inspired by the Spark N Rise visual reference. */
body {
  background:
    radial-gradient(circle at top left, rgba(212, 175, 55, 0.2), transparent 29%),
    radial-gradient(circle at right 18%, rgba(239, 91, 19, 0.1), transparent 25%),
    linear-gradient(180deg, #fffefa 0%, #f8f0df 100%);
}

.hero__content {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  background:
    radial-gradient(circle at 105% -8%, rgba(239, 91, 19, 0.16), transparent 31%),
    linear-gradient(145deg, rgba(255, 255, 255, 0.97), rgba(255, 250, 239, 0.94));
}

.hero__content::before,
.hero__content::after {
  content: "";
  position: absolute;
  z-index: -1;
  border: 1px solid rgba(212, 175, 55, 0.5);
  border-radius: 50%;
  pointer-events: none;
}

.hero__content::before {
  width: 430px;
  height: 430px;
  top: -280px;
  right: -120px;
  box-shadow: 0 0 0 8px rgba(212, 175, 55, 0.06), 0 0 0 16px rgba(239, 91, 19, 0.035);
}

.hero__content::after {
  width: 260px;
  height: 260px;
  bottom: -220px;
  left: -80px;
  box-shadow: 0 0 0 7px rgba(23, 75, 37, 0.06);
}

.hero h1 {
  font-family: var(--subheading);
  font-weight: 600;
  color: #a66b08;
  background: linear-gradient(105deg, #945400 0%, #e8b62d 46%, #9d6109 100%);
  background-clip: text;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.hero__signature {
  display: flex;
  align-items: center;
  gap: 11px;
  margin: 20px 0 0;
  color: var(--brand-green);
  font-family: var(--subheading);
  font-size: 1.08rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero__signature span:not(:last-child)::after {
  content: "◆";
  margin-left: 11px;
  color: var(--gold);
  font-size: 0.48em;
  vertical-align: middle;
}

.button:not(.button--secondary):not(.button--ghost) {
  background: linear-gradient(135deg, var(--brand-green), var(--brand-green-deep));
  box-shadow: 0 12px 28px rgba(7, 52, 23, 0.22);
}

.photo-carousel {
  border-color: rgba(212, 175, 55, 0.52);
  border-radius: 220px 32px 220px 32px;
  box-shadow: 0 24px 80px rgba(7, 52, 23, 0.22);
}

.photo-carousel__slide::after {
  background: linear-gradient(180deg, rgba(7, 52, 23, 0.02) 35%, rgba(7, 52, 23, 0.9) 100%);
}

.showcase-card--dark {
  background:
    radial-gradient(circle at top right, rgba(239, 91, 19, 0.28), transparent 30%),
    linear-gradient(145deg, rgba(7, 52, 23, 0.99), rgba(23, 75, 37, 0.96));
}

#services {
  position: relative;
  isolation: isolate;
  margin-top: 24px;
  padding: 48px 34px;
  overflow: hidden;
  border: 1px solid rgba(212, 175, 55, 0.35);
  border-radius: 44px;
  background:
    radial-gradient(circle at 100% 0%, rgba(239, 91, 19, 0.32), transparent 26%),
    linear-gradient(145deg, #0a3b1b, #062b14);
  box-shadow: 0 28px 90px rgba(7, 52, 23, 0.25);
}

#services::before {
  content: "";
  position: absolute;
  z-index: -1;
  width: 520px;
  height: 520px;
  top: -390px;
  right: -110px;
  border: 2px solid rgba(255, 217, 105, 0.55);
  border-radius: 50%;
  box-shadow: 0 0 0 10px rgba(255, 255, 255, 0.04), 0 0 0 20px rgba(239, 91, 19, 0.08);
}

#services .section-heading h2,
#services .section-copy {
  color: #fffdf6;
}

#services .eyebrow {
  color: #f2c75e;
}

#services .service-card {
  border-color: rgba(255, 224, 141, 0.24);
  background: rgba(255, 253, 246, 0.97);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.2);
}

#services .card-grid--services-eight {
  grid-template-columns: repeat(4, minmax(190px, 230px));
  justify-content: center;
  align-items: stretch;
  gap: 16px;
}

#services .service-card {
  width: 100%;
  height: 390px;
  padding-bottom: 18px;
}

#services .service-card h3 {
  min-height: 3.36em;
  margin-bottom: 0;
  color: #172018;
  font-size: clamp(1.2rem, 1.65vw, 1.55rem);
  line-height: 1.12;
}

#services .service-card p {
  display: -webkit-box;
  min-height: 6em;
  margin-top: 4px;
  margin-bottom: 8px;
  overflow: hidden;
  color: rgba(23, 32, 24, 0.72);
  line-height: 1.5;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 4;
}

#services .service-card .service-link {
  margin-top: 6px;
  color: #a97805;
}

#services .service-card h3,
#services .service-card p,
#services .service-card .service-link {
  margin-right: 20px;
  margin-left: 20px;
}

#services .service-card__image {
  height: 125px;
  margin-bottom: 10px;
  border-bottom: 3px solid #d7aa39;
}

[data-theme="dark"] .hero__content {
  background:
    radial-gradient(circle at 105% -8%, rgba(239, 91, 19, 0.16), transparent 31%),
    linear-gradient(145deg, rgba(50, 32, 20, 0.98), rgba(38, 25, 15, 0.98));
}

[data-theme="dark"] .hero__signature {
  color: #a8d5a7;
}

@media (max-width: 1080px) {
  #services .card-grid--services-eight {
    grid-template-columns: repeat(2, minmax(220px, 1fr));
  }
}

@media (max-width: 760px) {
  .photo-carousel {
    border-radius: 120px 24px 120px 24px;
  }

  #services {
    width: calc(100% - 20px);
    padding: 34px 14px;
    border-radius: 28px;
  }

  #services .card-grid--services-eight {
    grid-template-columns: minmax(0, 420px);
  }

  #services .service-card {
    height: auto;
    min-height: 390px;
  }

  .hero__signature {
    flex-wrap: wrap;
    gap: 8px;
    font-size: 0.98rem;
  }
}
