/* Century Built Homes — shared */
:root {
  --bg: #141414;
  --bg-deep: #0d0d0d;
  --gold: #c5a059;
  --gold-dim: #a6854a;
  --text: #f5f5f5;
  --muted: #a8a8a8;
  --nav-h: 88px;
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; min-width: 1100px; }
body {
  font-family: "Segoe UI", "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
  background: var(--bg);
  color: var(--text);
  line-height: 1.65;
  overflow-x: hidden;
}

.serif-sc { font-family: Georgia, "PingFang SC", "Times New Roman", serif; }
.serif-en { font-family: Georgia, "Times New Roman", serif; }

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 clamp(1.25rem, 4vw, 3.5rem);
  background: linear-gradient(180deg, rgba(0,0,0,0.65) 0%, rgba(0,0,0,0.15) 70%, transparent 100%);
  transition: background 0.45s ease, backdrop-filter 0.45s ease;
}
.site-header.is-scrolled {
  background: rgba(13, 13, 13, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.85rem;
  text-decoration: none;
  color: var(--gold);
}
.brand img {
  height: 46px;
  width: auto;
  display: block;
  object-fit: contain;
}
.brand-text {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 600;
  font-size: clamp(1.05rem, 2vw, 1.28rem);
  letter-spacing: 0.08em;
}

.nav-main {
  display: flex;
  align-items: center;
  gap: clamp(0.35rem, 1.5vw, 1.35rem);
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav-item {
  position: relative;
  display: flex;
  align-items: stretch;
}
.nav-parent {
  color: rgba(255,255,255,0.92);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 400;
  letter-spacing: 0.06em;
  transition: color 0.25s ease;
  display: inline-flex;
  align-items: center;
  gap: 0.35rem;
  padding: 0.5rem 0.35rem;
  white-space: nowrap;
  background: none;
  border: none;
  cursor: pointer;
  font-family: inherit;
}
.nav-parent:hover,
.nav-item:hover .nav-parent { color: var(--gold); }
.nav-caret {
  display: inline-block;
  width: 0;
  height: 0;
  border-left: 4px solid transparent;
  border-right: 4px solid transparent;
  border-top: 5px solid currentColor;
  opacity: 0.65;
  margin-top: 2px;
  transition: transform 0.25s ease;
}
.nav-item:hover .nav-caret,
.nav-item:focus-within .nav-caret { transform: rotate(180deg); }

.nav-dropdown {
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  min-width: 248px;
  max-width: min(320px, calc(100vw - 2rem));
  padding: 0.65rem 0;
  background: rgba(14, 14, 14, 0.97);
  border: 1px solid rgba(197,160,89,0.22);
  box-shadow: 0 20px 50px rgba(0,0,0,0.55);
  opacity: 0;
  visibility: hidden;
  transform: translateY(6px);
  transition: opacity 0.28s ease, visibility 0.28s ease, transform 0.28s ease;
  z-index: 120;
  pointer-events: none;
}
.nav-dropdown::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: -8px;
  height: 8px;
}
.nav-item:hover .nav-dropdown,
.nav-item:focus-within .nav-dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
  pointer-events: auto;
}

.nav-dropdown a {
  display: block;
  padding: 0.55rem 1.15rem;
  color: rgba(255,255,255,0.82);
  text-decoration: none;
  font-size: 0.82rem;
  font-weight: 400;
  letter-spacing: 0.04em;
  line-height: 1.45;
  transition: color 0.2s ease, background 0.2s ease;
}
.nav-dropdown a:hover {
  color: var(--gold);
  background: rgba(197,160,89,0.08);
}
.nav-dropdown a .nav-dd-desc {
  display: block;
  font-size: 0.72rem;
  color: rgba(168,168,168,0.95);
  font-weight: 300;
  margin-top: 0.2rem;
  letter-spacing: 0.02em;
}
.nav-dropdown a:hover .nav-dd-desc { color: rgba(255,255,255,0.45); }

.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
}

.hero__parallax-wrap {
  position: absolute;
  inset: 0;
  will-change: transform;
}

.hero__kenburns {
  position: absolute;
  left: -8%;
  top: -8%;
  width: 116%;
  height: 116%;
  background-size: cover;
  background-position: center center;
  will-change: transform;
  animation: heroKenBurns 32s ease-in-out infinite alternate;
}

@keyframes heroKenBurns {
  0%   { transform: scale(1); }
  100% { transform: scale(1.12); }
}

.hero__veil {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    180deg,
    rgba(8,8,10,0.25) 0%,
    rgba(8,8,10,0.35) 35%,
    rgba(8,8,10,0.75) 85%,
    rgba(10,10,12,0.95) 100%
  );
  pointer-events: none;
}

.hero__content {
  position: relative;
  z-index: 2;
  padding: calc(var(--nav-h) + 2rem) clamp(1.25rem, 5vw, 4rem) 4.5rem;
  max-width: 920px;
}

.hero__tagline {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2rem, 5.5vw, 3.75rem);
  font-weight: 400;
  color: #fff;
  line-height: 1.15;
  letter-spacing: 0.02em;
  text-shadow: 0 4px 40px rgba(0,0,0,0.5);
  opacity: 0;
  transform: translateY(28px);
  animation: heroFadeUp 1.2s ease 0.2s forwards;
}
.hero__sub {
  margin-top: 1.25rem;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
  color: rgba(255,255,255,0.82);
  max-width: 36rem;
  font-weight: 300;
  letter-spacing: 0.04em;
  opacity: 0;
  transform: translateY(20px);
  animation: heroFadeUp 1.1s ease 0.55s forwards;
}

@keyframes heroFadeUp {
  to { opacity: 1; transform: translateY(0); }
}

.hero__scroll-hint {
  position: absolute;
  bottom: 1.75rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.35rem;
  color: rgba(255,255,255,0.45);
  font-size: 0.65rem;
  letter-spacing: 0.35em;
  text-transform: uppercase;
  animation: hintPulse 2.8s ease-in-out infinite;
}
.hero__scroll-hint::after {
  content: "";
  width: 1px;
  height: 36px;
  background: linear-gradient(180deg, var(--gold), transparent);
  opacity: 0.6;
}
@keyframes hintPulse {
  0%, 100% { opacity: 0.5; }
  50% { opacity: 1; }
}

/* —— Homepage hero: layered FX (blueprint / light / survey) —— */
.hero--home .hero__veil--home {
  background: linear-gradient(
    195deg,
    rgba(6, 8, 12, 0.2) 0%,
    rgba(8, 10, 14, 0.28) 28%,
    rgba(10, 12, 16, 0.62) 62%,
    rgba(12, 12, 14, 0.92) 100%
  );
  z-index: 1;
}

.hero__fx {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  overflow: hidden;
}

.hero__fx-vignette {
  position: absolute;
  inset: -5%;
  background: radial-gradient(ellipse 70% 55% at 50% 88%, transparent 0%, rgba(0, 0, 0, 0.15) 55%, rgba(0, 0, 0, 0.45) 100%);
  opacity: 0.85;
}

.hero__fx-mode {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 1.35s cubic-bezier(0.45, 0, 0.2, 1), visibility 1.35s step-end;
}

.hero--home[data-hero-fx="blueprint"] .hero__fx-mode--blueprint,
.hero--home[data-hero-fx="light"] .hero__fx-mode--light,
.hero--home[data-hero-fx="survey"] .hero__fx-mode--survey {
  opacity: 1;
  visibility: visible;
  transition: opacity 1.35s cubic-bezier(0.45, 0, 0.2, 1), visibility 0s step-start;
}

.hero__fx-svg {
  width: 100%;
  height: 100%;
  display: block;
}

.hero__fx-grid {
  animation: cbhGridDrift 48s linear infinite;
  transform-origin: center bottom;
}

@keyframes cbhGridDrift {
  0% { transform: translate(0, 0); }
  100% { transform: translate(-48px, -24px); }
}

.hero__fx-path {
  stroke-dasharray: 14 10;
  animation: cbhBlueprintFlow 18s linear infinite;
}

.hero__fx-path--roof {
  animation-duration: 22s;
  stroke-dasharray: 18 12;
}

.hero__fx-path--base {
  animation-duration: 16s;
  animation-direction: reverse;
}

.hero__fx-path--door {
  stroke-dasharray: 6 8;
  animation-duration: 11s;
}

.hero__fx-path--dim {
  stroke-dasharray: 4 14;
  animation-duration: 24s;
}

@keyframes cbhBlueprintFlow {
  to { stroke-dashoffset: -240; }
}

.hero__fx-structure {
  animation: cbhSvgSway 14s ease-in-out infinite alternate;
}

@keyframes cbhSvgSway {
  from { transform: translateY(0); }
  to { transform: translateY(-6px); }
}

.hero__fx-rect-pulse {
  animation: cbhRectBreath 8s ease-in-out infinite;
}

@keyframes cbhRectBreath {
  0%, 100% { opacity: 0.35; transform: scale(1); }
  50% { opacity: 0.7; transform: scale(1.02); }
}

.hero__fx-mode--light .hero__fx-sunray {
  position: absolute;
  inset: -30% -20%;
  background: conic-gradient(
    from 210deg at 70% 18%,
    transparent 0deg,
    rgba(255, 220, 160, 0.07) 38deg,
    transparent 76deg,
    rgba(197, 160, 89, 0.06) 120deg,
    transparent 200deg,
    rgba(255, 245, 220, 0.05) 280deg,
    transparent 360deg
  );
  animation: cbhSunraySpin 72s linear infinite;
  mix-blend-mode: screen;
}

@keyframes cbhSunraySpin {
  to { transform: rotate(360deg); }
}

.hero__fx-shimmer {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    105deg,
    transparent 0%,
    transparent 38%,
    rgba(255, 255, 255, 0.06) 49%,
    rgba(197, 160, 89, 0.12) 50.5%,
    rgba(255, 255, 255, 0.05) 52%,
    transparent 65%
  );
  background-size: 200% 200%;
  animation: cbhShimmerMove 11s ease-in-out infinite;
  mix-blend-mode: overlay;
}

@keyframes cbhShimmerMove {
  0%, 100% { background-position: 0% 50%; opacity: 0.5; }
  50% { background-position: 100% 50%; opacity: 0.95; }
}

.hero__fx-heat {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 80% 50% at 50% 100%, rgba(197, 160, 89, 0.09), transparent 55%);
  animation: cbhHeatPulse 6s ease-in-out infinite;
}

@keyframes cbhHeatPulse {
  0%, 100% { opacity: 0.4; transform: scale(1); }
  50% { opacity: 0.85; transform: scale(1.04); }
}

.hero__fx-contours {
  position: absolute;
  inset: -5%;
  background-image: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 18px,
    rgba(197, 160, 89, 0.06) 18px,
    rgba(197, 160, 89, 0.06) 19px
  );
  mask-image: linear-gradient(180deg, transparent 0%, black 35%, black 75%, transparent 100%);
  animation: cbhContourSlide 20s linear infinite;
  opacity: 0.7;
}

@keyframes cbhContourSlide {
  from { transform: translateY(0); }
  to { transform: translateY(38px); }
}

.hero__fx-stakes {
  position: absolute;
  inset: 0;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  padding: 12% 10% 18%;
  box-sizing: border-box;
}

.hero__fx-stake {
  display: block;
  width: 3px;
  height: clamp(48px, 12vh, 100px);
  background: linear-gradient(180deg, rgba(197, 160, 89, 0.95), rgba(197, 160, 89, 0.15));
  border-radius: 1px;
  position: relative;
  animation: cbhStakeGlow 3.2s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(197, 160, 89, 0.25);
}

.hero__fx-stake::after {
  content: "";
  position: absolute;
  top: -6px;
  left: 50%;
  transform: translateX(-50%);
  width: 10px;
  height: 10px;
  border: 1px solid rgba(197, 160, 89, 0.7);
  border-radius: 50%;
  background: rgba(197, 160, 89, 0.12);
}

.hero__fx-stake:nth-child(1) { animation-delay: 0s; height: 56px; }
.hero__fx-stake:nth-child(2) { animation-delay: 0.4s; height: 72px; }
.hero__fx-stake:nth-child(3) { animation-delay: 0.8s; height: 64px; }
.hero__fx-stake:nth-child(4) { animation-delay: 1.2s; height: 80px; }
.hero__fx-stake:nth-child(5) { animation-delay: 1.6s; height: 58px; }

@keyframes cbhStakeGlow {
  0%, 100% { opacity: 0.45; filter: brightness(0.9); }
  50% { opacity: 1; filter: brightness(1.25); }
}

.hero__fx-level {
  position: absolute;
  left: 8%;
  right: 8%;
  bottom: 22%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(197, 160, 89, 0.35) 15%, rgba(197, 160, 89, 0.55) 50%, rgba(197, 160, 89, 0.35) 85%, transparent);
  animation: cbhLevelBob 5s ease-in-out infinite;
  box-shadow: 0 0 24px rgba(197, 160, 89, 0.2);
}

@keyframes cbhLevelBob {
  0%, 100% { transform: translateY(0) scaleX(1); opacity: 0.5; }
  50% { transform: translateY(-4px) scaleX(1.02); opacity: 0.9; }
}

.hero__fx--static .hero__fx-mode--blueprint {
  opacity: 1 !important;
  visibility: visible !important;
}

.hero__fx--static .hero__fx-mode--light,
.hero__fx--static .hero__fx-mode--survey {
  display: none;
}

.hero__fx--static .hero__fx-grid,
.hero__fx--static .hero__fx-path,
.hero__fx--static .hero__fx-structure,
.hero__fx--static .hero__fx-rect-pulse,
.hero__fx--static .hero__fx-stake,
.hero__fx--static .hero__fx-level {
  animation: none !important;
}

body.page-home .hero__content {
  z-index: 2;
}

body.page-home .hero__kicker {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  font-size: 0.72rem;
  letter-spacing: 0.28em;
  text-transform: uppercase;
  color: rgba(197, 160, 89, 0.92);
  margin-bottom: 1rem;
  opacity: 0;
  transform: translateY(12px);
  animation: homeKickerIn 1s cubic-bezier(0.22, 1, 0.36, 1) 0.05s forwards;
}

.hero__kicker-line {
  display: inline-block;
  width: 2.5rem;
  height: 1px;
  background: linear-gradient(90deg, var(--gold), transparent);
  animation: homeKickerLine 2.4s ease-in-out infinite;
}

@keyframes homeKickerIn {
  to { opacity: 1; transform: translateY(0); }
}

@keyframes homeKickerLine {
  0%, 100% { opacity: 0.35; transform: scaleX(0.85); }
  50% { opacity: 1; transform: scaleX(1); }
}

body.page-home .hero__scroll-hint {
  animation: hintPulse 2.8s ease-in-out infinite, homeScrollNudge 4s ease-in-out infinite;
}

@keyframes homeScrollNudge {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(6px); }
}

@media (prefers-reduced-motion: reduce) {
  .hero__fx-mode,
  .hero__fx-grid,
  .hero__fx-path,
  .hero__fx-structure,
  .hero__fx-rect-pulse,
  .hero__fx-sunray,
  .hero__fx-shimmer,
  .hero__fx-heat,
  .hero__fx-contours,
  .hero__fx-stake,
  .hero__fx-level,
  .hero__kicker-line,
  body.page-home .hero__scroll-hint,
  body.page-home .home-bento__copy h2::after,
  body.page-home .home-cta-row .btn-oval {
    animation: none !important;
  }
  body.page-home .hero__kicker {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.page-shell {
  padding: clamp(2.5rem, 6vw, 4rem) clamp(1.25rem, 4vw, 3.5rem) clamp(4rem, 8vw, 6rem);
  max-width: 900px;
  margin: 0 auto;
}
.page-placeholder {
  color: var(--muted);
  font-size: 0.95rem;
  font-weight: 300;
  letter-spacing: 0.02em;
}

.section { padding: clamp(4rem, 10vw, 7rem) clamp(1.25rem, 4vw, 3.5rem); }
.section--about { position: relative; background: var(--bg); }

.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.95fr 0.85fr;
  gap: clamp(2rem, 4vw, 3.5rem);
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}

.about-intro { position: relative; }
.about-watermark {
  position: absolute;
  left: -4%;
  top: -12%;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(4.5rem, 14vw, 9rem);
  font-weight: 400;
  color: rgba(255,255,255,0.03);
  letter-spacing: 0.08em;
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

.section-title {
  font-family: Georgia, "PingFang SC", serif;
  font-size: clamp(1.85rem, 3.2vw, 2.65rem);
  color: var(--gold);
  font-weight: 400;
  margin-bottom: 1.75rem;
  letter-spacing: 0.06em;
}

.about-intro p {
  color: rgba(245,245,245,0.88);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1.1rem;
  letter-spacing: 0.02em;
}

.service-list { list-style: none; }
.service-list li {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.35rem 0;
  border-bottom: 1px solid rgba(197,160,89,0.18);
}
.service-list li:first-child { padding-top: 0; }
.service-icon {
  flex-shrink: 0;
  width: 44px;
  height: 44px;
  color: var(--gold);
}
.service-list h3 {
  font-family: Georgia, "PingFang SC", serif;
  font-size: 1.05rem;
  color: var(--gold);
  font-weight: 600;
  margin-bottom: 0.35rem;
  letter-spacing: 0.06em;
}
.service-list p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}

.about-photo {
  position: relative;
  border-radius: 2px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0,0,0,0.45);
}
.about-photo img {
  width: 100%;
  height: auto;
  min-height: 420px;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  transition: transform 8s ease;
}
.about-photo:hover img { transform: scale(1.08); }

.cta-wrap {
  text-align: center;
  margin-top: 3rem;
}
.btn-oval {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 2.6rem;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4b06e, var(--gold) 45%, #a68447);
  color: #1a1208;
  font-size: 0.88rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  box-shadow: 0 8px 32px rgba(197,160,89,0.25);
}
.btn-oval:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 40px rgba(197,160,89,0.35);
}

@media (max-width: 960px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-photo img { min-height: 320px; }
}

.section--process {
  background: linear-gradient(180deg, var(--bg) 0%, #101010 50%, var(--bg-deep) 100%);
}
.process-head {
  text-align: center;
  margin-bottom: clamp(2.5rem, 5vw, 4rem);
}
.process-head .section-title { margin-bottom: 0; }

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(1.5rem, 3vw, 2.5rem);
  max-width: 1180px;
  margin: 0 auto;
}

.process-card {
  padding: 1.75rem 1.25rem 2rem;
  border: 1px solid rgba(197,160,89,0.12);
  background: rgba(255,255,255,0.02);
  transition: border-color 0.35s ease, background 0.35s ease;
}
.process-card:hover {
  border-color: rgba(197,160,89,0.35);
  background: rgba(197,160,89,0.04);
}
.process-num {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(2.5rem, 4vw, 3.25rem);
  color: var(--gold);
  line-height: 1;
  margin-bottom: 0.65rem;
  opacity: 0.95;
}
.process-card h3 {
  font-size: 1rem;
  color: #fff;
  font-weight: 600;
  margin-bottom: 0.75rem;
  letter-spacing: 0.08em;
}
.process-card p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.6;
}

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr; max-width: 520px; }
}

.section--standards {
  background: #121212;
  border-top: 1px solid rgba(197,160,89,0.1);
  border-bottom: 1px solid rgba(197,160,89,0.1);
}
.standards-inner {
  max-width: 900px;
  margin: 0 auto;
}
.standards-inner p {
  color: rgba(245,245,245,0.86);
  font-size: 0.92rem;
  font-weight: 300;
  margin-bottom: 1rem;
}

.reveal {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.reveal-stagger .reveal-child {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.75s ease, transform 0.75s ease;
}
.reveal-stagger.is-visible .reveal-child {
  opacity: 1;
  transform: translateY(0);
}

.site-footer {
  background: var(--bg-deep);
  padding: clamp(3rem, 6vw, 4.5rem) clamp(1.25rem, 4vw, 3.5rem) 2rem;
  border-top: 1px solid rgba(197,160,89,0.12);
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr 0.9fr 1.2fr;
  gap: clamp(2rem, 4vw, 3rem);
  max-width: 1200px;
  margin: 0 auto 2.5rem;
}
.footer-brand .monogram {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid var(--gold);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: Georgia, serif;
  font-size: 1.05rem;
  color: var(--gold);
  margin-bottom: 1rem;
  letter-spacing: 0.02em;
}
.footer-brand .footer-logo-img {
  max-height: 48px;
  width: auto;
  margin-bottom: 0.75rem;
  display: block;
  opacity: 0.92;
}
.footer-brand h2 {
  font-family: Georgia, serif;
  font-size: 1.15rem;
  color: var(--gold);
  letter-spacing: 0.14em;
  margin-bottom: 0.35rem;
}
.footer-brand .sub {
  font-size: 0.8rem;
  color: var(--muted);
  margin-bottom: 1rem;
}
.footer-brand .copy {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-col h4 {
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-bottom: 1.1rem;
  font-weight: 600;
}
.footer-col ul { list-style: none; }
.footer-col li { margin-bottom: 0.55rem; }
.footer-col a {
  color: rgba(255,255,255,0.72);
  text-decoration: none;
  font-size: 0.86rem;
  transition: color 0.2s;
}
.footer-col a:hover { color: var(--gold); }

.footer-contact p {
  font-size: 0.86rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 0.5rem;
  font-weight: 300;
}
.footer-legal {
  max-width: 1200px;
  margin: 0 auto;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(197,160,89,0.12);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}
.footer-legal-links {
  display: flex;
  gap: 1.5rem;
  flex-wrap: wrap;
}
.footer-legal a {
  color: rgba(255,255,255,0.55);
  text-decoration: none;
  font-size: 0.8rem;
  letter-spacing: 0.06em;
}
.footer-legal a:hover { color: var(--gold); }
.footer-legal .domain {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.04em;
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 520px) {
  .footer-grid { grid-template-columns: 1fr; }
}

.policy-body {
  padding: calc(var(--nav-h) + 2.5rem) clamp(1.25rem, 4vw, 3rem) 4rem;
  max-width: 820px;
  margin: 0 auto;
}
.policy-body h1 {
  font-family: Georgia, serif;
  color: var(--gold);
  font-weight: 400;
  font-size: 1.85rem;
  margin-bottom: 0.5rem;
}
.policy-body .meta { color: var(--muted); font-size: 0.85rem; margin-bottom: 2rem; }
.policy-body h2 {
  font-size: 1.05rem;
  color: var(--gold);
  margin: 1.75rem 0 0.65rem;
  font-weight: 600;
}
.policy-body p, .policy-body ul { margin-bottom: 1rem; color: rgba(240,240,240,0.88); }
.policy-body ul { padding-left: 1.25rem; }
.policy-back { display: inline-block; margin-bottom: 2rem; font-size: 0.9rem; letter-spacing: 0.06em; color: var(--gold); text-decoration: none; }
.policy-back:hover { text-decoration: underline; }
.policy-body a { color: var(--gold); }

/* —— Homepage premium layout —— */
body.page-home .hero__tagline {
  animation: homeTitleIn 1.35s cubic-bezier(0.22, 1, 0.36, 1) 0.15s both;
}
@keyframes homeTitleIn {
  from { opacity: 0; transform: translateY(40px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}
.home-bento {
  max-width: 1280px;
  margin: 0 auto;
  padding: clamp(3rem, 8vw, 5rem) clamp(1.25rem, 4vw, 3rem);
  display: grid;
  grid-template-columns: 1.15fr 1fr;
  gap: clamp(1.5rem, 3vw, 2.5rem);
  align-items: stretch;
}
.home-bento__visual {
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  min-height: 420px;
  border: 1px solid rgba(197,160,89,0.2);
  box-shadow: 0 30px 80px rgba(0,0,0,0.45);
}
.home-bento__visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  animation: homeImgDrift 18s ease-in-out infinite alternate;
}
@keyframes homeImgDrift {
  from { transform: scale(1.03) translate(0, 0); }
  to { transform: scale(1.08) translate(-1.5%, 1%); }
}
.home-bento__accent {
  position: absolute;
  inset: auto 8% 8% auto;
  width: 120px;
  height: 120px;
  border: 1px solid rgba(197,160,89,0.45);
  border-radius: 50%;
  pointer-events: none;
  animation: homeRing 12s linear infinite;
}
@keyframes homeRing {
  to { transform: rotate(360deg); }
}
.home-bento__copy h2 {
  font-family: Georgia, "PingFang SC", serif;
  color: var(--gold);
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  margin-bottom: 1.25rem;
  letter-spacing: 0.06em;
  position: relative;
  padding-bottom: 0.45rem;
}
body.page-home .home-bento__copy h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(10rem, 55%);
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(197, 160, 89, 0));
  transform-origin: left center;
  animation: homeBentoGoldLine 4s ease-in-out infinite alternate;
}
@keyframes homeBentoGoldLine {
  from { transform: scaleX(0.45); opacity: 0.45; }
  to { transform: scaleX(1); opacity: 1; }
}
.home-bento__copy p {
  color: rgba(245,245,245,0.88);
  font-size: 0.95rem;
  font-weight: 300;
  margin-bottom: 1rem;
  line-height: 1.75;
}
.home-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 clamp(1.25rem, 4vw, 3rem) clamp(4rem, 8vw, 6rem);
}
.home-strip__cell {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(197,160,89,0.15);
  min-height: 220px;
  background: #161616;
}
.home-strip__cell img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
  transition: transform 1.2s ease, opacity 0.4s ease;
}
.home-strip__cell:hover img {
  transform: scale(1.06);
  opacity: 1;
}
.home-strip__label {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 1rem 1.1rem;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,0.88));
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  color: rgba(255,255,255,0.92);
}
.home-cta-row {
  text-align: center;
  padding-bottom: clamp(3rem, 6vw, 5rem);
}
.home-cta-row .btn-oval { margin: 0 0.5rem; }
.home-cta-row .btn-ghost {
  display: inline-flex;
  align-items: center;
  padding: 0.85rem 2rem;
  border-radius: 999px;
  border: 1px solid rgba(197,160,89,0.5);
  color: var(--gold);
  text-decoration: none;
  font-size: 0.85rem;
  letter-spacing: 0.14em;
  transition: background 0.3s ease, color 0.3s ease;
}
.home-cta-row .btn-ghost:hover {
  background: rgba(197,160,89,0.12);
  color: #fff;
}

body.page-home .home-cta-row .btn-oval {
  transition: transform 0.35s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.4s ease;
  animation: homeCtaPrimaryGlow 5s ease-in-out infinite;
}
body.page-home .home-cta-row .btn-oval:hover {
  transform: translateY(-2px);
  box-shadow: 0 0 0 1px rgba(197, 160, 89, 0.45), 0 18px 48px rgba(0, 0, 0, 0.4);
  animation: none;
}
@keyframes homeCtaPrimaryGlow {
  0%, 100% { box-shadow: 0 0 0 0 rgba(197, 160, 89, 0); }
  50% { box-shadow: 0 0 28px rgba(197, 160, 89, 0.22); }
}
body.page-home .home-cta-row .btn-ghost {
  transition: transform 0.3s ease, border-color 0.3s ease, background 0.3s ease;
}
body.page-home .home-cta-row .btn-ghost:hover {
  transform: translateY(-2px);
}

/* —— Content grids —— */
.insights-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 3rem;
}
.insight-tile {
  display: grid;
  grid-template-columns: 140px 1fr;
  gap: 1.1rem;
  align-items: stretch;
  padding: 1.1rem;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(197,160,89,0.15);
  border-radius: 4px;
  text-decoration: none;
  color: inherit;
  transition: border-color 0.3s ease, background 0.3s ease;
}
.insight-tile:hover {
  border-color: rgba(197,160,89,0.45);
  background: rgba(197,160,89,0.06);
}
.insight-tile__img {
  border-radius: 2px;
  overflow: hidden;
  min-height: 100px;
}
.insight-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}
.insight-tile h3 {
  font-family: Georgia, "PingFang SC", serif;
  color: var(--gold);
  font-size: 1rem;
  margin-bottom: 0.45rem;
  letter-spacing: 0.04em;
}
.insight-tile p {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 300;
  line-height: 1.55;
}

.projects-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: clamp(1.25rem, 2.5vw, 2rem);
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 0 3rem;
}
.project-tile {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(197,160,89,0.15);
  border-radius: 4px;
  overflow: hidden;
  background: #141414;
  transition: border-color 0.3s ease, transform 0.35s ease;
}
.project-tile:hover {
  border-color: rgba(197,160,89,0.4);
  transform: translateY(-4px);
}
.project-tile__img {
  height: 200px;
  overflow: hidden;
}
.project-tile__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.project-tile__body { padding: 1.15rem 1.25rem 1.35rem; }
.project-tile h3 {
  font-family: Georgia, "PingFang SC", serif;
  color: var(--gold);
  font-size: 1.05rem;
  margin-bottom: 0.4rem;
}
.project-tile p {
  font-size: 0.82rem;
  color: var(--muted);
  line-height: 1.55;
}

/* —— Long-form article —— */
.prose-long {
  max-width: 820px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vw, 6rem);
}
.prose-long h2 {
  font-family: Georgia, "PingFang SC", serif;
  color: var(--gold);
  font-size: 1.2rem;
  margin: 2rem 0 0.85rem;
  letter-spacing: 0.04em;
}
.prose-long h2:first-child { margin-top: 0; }
.prose-long p {
  font-size: 0.95rem;
  color: rgba(245,245,245,0.88);
  font-weight: 300;
  line-height: 1.85;
  margin-bottom: 1.1rem;
  text-align: justify;
}
.prose-long ul {
  margin: 0.5rem 0 1.25rem 1.25rem;
  color: rgba(245,245,245,0.82);
  font-size: 0.92rem;
  line-height: 1.7;
}
.prose-long .figure-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin: 1.75rem 0;
}
.prose-long .figure-row img {
  width: 100%;
  border-radius: 3px;
  border: 1px solid rgba(197,160,89,0.2);
}
.prose-long figcaption {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.35rem;
}

/* —— Quote form —— */
.quote-layout {
  max-width: 960px;
  margin: 0 auto;
  padding: clamp(2rem, 5vw, 3.5rem) clamp(1.25rem, 4vw, 2rem) clamp(4rem, 8vw, 6rem);
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(2rem, 4vw, 3rem);
  align-items: start;
}
.quote-intro h2 {
  font-family: Georgia, "PingFang SC", serif;
  color: var(--gold);
  font-size: 1.35rem;
  margin-bottom: 1rem;
}
.quote-intro p {
  font-size: 0.92rem;
  color: rgba(245,245,245,0.85);
  line-height: 1.75;
  margin-bottom: 1rem;
  font-weight: 300;
}
.quote-intro ol {
  margin-left: 1.2rem;
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.75;
}
.form-quote {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(197,160,89,0.22);
  border-radius: 4px;
  padding: 1.75rem 1.5rem 2rem;
}
.form-quote label {
  display: block;
  font-size: 0.78rem;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin-bottom: 0.35rem;
  margin-top: 1rem;
}
.form-quote label:first-of-type { margin-top: 0; }
.form-quote input,
.form-quote select,
.form-quote textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.12);
  background: rgba(0,0,0,0.35);
  color: var(--text);
  font-family: inherit;
  font-size: 0.9rem;
  border-radius: 2px;
}
.form-quote textarea { min-height: 140px; resize: vertical; }
.form-quote .form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}
.form-quote .check {
  display: flex;
  align-items: flex-start;
  gap: 0.5rem;
  margin-top: 1.25rem;
  font-size: 0.8rem;
  color: var(--muted);
  line-height: 1.5;
}
.form-quote .check input { width: auto; margin-top: 0.2rem; }
.form-quote button[type="submit"] {
  margin-top: 1.5rem;
  width: 100%;
  padding: 0.9rem;
  border: none;
  border-radius: 999px;
  background: linear-gradient(135deg, #d4b06e, var(--gold) 45%, #a68447);
  color: #1a1208;
  font-weight: 600;
  letter-spacing: 0.15em;
  cursor: pointer;
  font-size: 0.85rem;
}
.form-quote .form-note {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.45);
  margin-top: 0.75rem;
  line-height: 1.5;
}

@media (max-width: 1180px) {
  html { min-width: 0; }
  .home-bento {
    grid-template-columns: 1fr;
  }
  .home-bento__visual { min-height: 320px; }
  .home-strip {
    grid-template-columns: 1fr;
  }
  .insights-grid,
  .projects-grid {
    grid-template-columns: 1fr;
  }
  .insight-tile {
    grid-template-columns: 1fr;
  }
  .insight-tile__img { min-height: 160px; }
  .quote-layout {
    grid-template-columns: 1fr;
  }
  .form-quote .form-row {
    grid-template-columns: 1fr;
  }
  .prose-long .figure-row {
    grid-template-columns: 1fr;
  }
}

/* —— Services / portfolio-type pages: long-form prose layout —— */
.page-shell--enriched {
  max-width: 920px;
  margin-left: auto;
  margin-right: auto;
}
.prose-long--enriched {
  padding-top: 2rem;
  padding-bottom: clamp(3rem, 7vw, 5.5rem);
}
.svc-lede {
  font-size: 1.03rem;
  line-height: 1.88;
  color: rgba(248, 248, 248, 0.93);
  border-left: 3px solid var(--gold);
  padding: 1rem 1.15rem 1rem 1.35rem;
  margin: 0 0 2.25rem;
  background: linear-gradient(90deg, rgba(197, 160, 89, 0.07), transparent 55%);
  border-radius: 0 4px 4px 0;
}
.svc-pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: clamp(0.85rem, 2vw, 1.15rem);
  margin-bottom: 2.75rem;
}
.svc-pillar {
  border: 1px solid rgba(197, 160, 89, 0.22);
  border-radius: 4px;
  padding: 1.15rem 1.2rem 1.25rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.03), rgba(0, 0, 0, 0.12));
  transition: border-color 0.3s ease, box-shadow 0.3s ease;
}
.svc-pillar:hover {
  border-color: rgba(197, 160, 89, 0.38);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.25);
}
.svc-pillar h3 {
  font-family: Georgia, "PingFang SC", serif;
  color: var(--gold);
  font-size: 0.98rem;
  font-weight: 400;
  margin: 0 0 0.55rem;
  letter-spacing: 0.07em;
}
.svc-pillar p {
  font-size: 0.84rem;
  color: rgba(200, 200, 200, 0.92);
  line-height: 1.62;
  margin: 0;
  font-weight: 300;
}
.svc-callout {
  border: 1px solid rgba(197, 160, 89, 0.3);
  border-radius: 4px;
  padding: 1.35rem 1.45rem;
  margin: 2.25rem 0;
  background: linear-gradient(125deg, rgba(197, 160, 89, 0.07), rgba(0, 0, 0, 0.15));
}
.svc-callout strong {
  color: var(--gold);
  font-weight: 600;
}
.svc-crossnav {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.5rem 1.35rem;
  padding-top: 1.75rem;
  margin-top: 2.25rem;
  border-top: 1px solid rgba(197, 160, 89, 0.14);
}
.svc-crossnav span {
  font-size: 0.72rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.35);
  width: 100%;
  margin-bottom: 0.25rem;
}
.svc-crossnav a {
  color: var(--gold);
  text-decoration: none;
  font-size: 0.84rem;
  letter-spacing: 0.05em;
  font-weight: 300;
}
.svc-crossnav a:hover {
  text-decoration: underline;
  color: #e8d4a8;
}
.prose-long--enriched .svc-note {
  font-size: 0.85rem;
  color: var(--muted);
  margin-top: 1.75rem;
  line-height: 1.65;
}
.prose-long--enriched h2 {
  margin-top: 2.35rem;
}
@media (max-width: 820px) {
  .svc-pillars {
    grid-template-columns: 1fr;
  }
}

/* —— Site-wide reveals / inner heroes / FAQ / inline enquiry / work strips —— */
html.reduce-motion .reveal,
html.reduce-motion .reveal-stagger,
html.reduce-motion .reveal-section,
html.reduce-motion .block-fade {
  opacity: 1 !important;
  transform: none !important;
  transition: none !important;
}
.reveal-section {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1), transform 0.85s cubic-bezier(0.22, 1, 0.36, 1);
}
.reveal-section.is-visible {
  opacity: 1;
  transform: translateY(0);
}
.block-fade {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}
.block-fade.is-visible {
  opacity: 1;
  transform: translateY(0);
}

body:not(.page-home) .hero__content {
  animation: cbhHeroFade 1.05s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  opacity: 0;
}
@keyframes cbhHeroFade {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
html.reduce-motion body:not(.page-home) .hero__content {
  animation: none;
  opacity: 1;
  transform: none;
}

.faq-block {
  margin: 2.75rem 0 0;
  padding: 1.75rem 0 0;
  border-top: 1px solid rgba(197, 160, 89, 0.16);
}
.faq-block__title {
  font-family: Georgia, "PingFang SC", serif;
  font-size: 1.05rem;
  font-weight: 400;
  color: var(--gold);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  margin: 0 0 1.25rem;
}
.faq-item {
  border: 1px solid rgba(197, 160, 89, 0.2);
  border-radius: 4px;
  margin-bottom: 0.65rem;
  background: linear-gradient(165deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.1));
  overflow: hidden;
}
.faq-item summary {
  cursor: pointer;
  list-style: none;
  padding: 0.95rem 1.15rem;
  font-size: 0.9rem;
  font-weight: 500;
  color: rgba(248, 248, 248, 0.95);
  letter-spacing: 0.04em;
  position: relative;
  padding-right: 2.5rem;
}
.faq-item summary::-webkit-details-marker {
  display: none;
}
.faq-item summary::after {
  content: "";
  position: absolute;
  right: 1.1rem;
  top: 50%;
  width: 8px;
  height: 8px;
  border-right: 1.5px solid var(--gold);
  border-bottom: 1.5px solid var(--gold);
  transform: translateY(-65%) rotate(45deg);
  transition: transform 0.25s ease;
}
.faq-item[open] summary::after {
  transform: translateY(-25%) rotate(-135deg);
}
.faq-item__body {
  padding: 0 1.15rem 1.15rem;
  font-size: 0.86rem;
  line-height: 1.75;
  color: rgba(200, 200, 200, 0.93);
  font-weight: 300;
  border-top: 1px solid rgba(197, 160, 89, 0.08);
  padding-top: 0.85rem;
  margin: 0 1.15rem;
  margin-top: 0;
  padding-left: 0;
  padding-right: 0;
}
.faq-item__body p {
  margin: 0 0 0.65rem;
}
.faq-item__body p:last-child {
  margin-bottom: 0;
}

.inline-inquiry {
  margin: 2.5rem 0 0;
}
.inline-inquiry__inner {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(1.25rem, 3vw, 2.25rem);
  align-items: start;
  padding: clamp(1.35rem, 3vw, 1.85rem);
  border: 1px solid rgba(197, 160, 89, 0.26);
  border-radius: 4px;
  background: linear-gradient(130deg, rgba(197, 160, 89, 0.06), rgba(0, 0, 0, 0.2));
}
.inline-inquiry__text h2 {
  font-family: Georgia, "PingFang SC", serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.65rem;
  font-weight: 400;
}
.inline-inquiry__text p {
  font-size: 0.86rem;
  color: rgba(200, 200, 200, 0.9);
  line-height: 1.72;
  margin: 0;
  font-weight: 300;
}
.inline-inquiry__form label {
  display: block;
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.45);
  margin-bottom: 0.35rem;
  margin-top: 0.75rem;
}
.inline-inquiry__form label:first-of-type {
  margin-top: 0;
}
.inline-inquiry__form input,
.inline-inquiry__form select,
.inline-inquiry__form textarea {
  width: 100%;
  padding: 0.55rem 0.65rem;
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(197, 160, 89, 0.2);
  color: var(--text);
  font-family: inherit;
  font-size: 0.88rem;
}
.inline-inquiry__form textarea {
  min-height: 88px;
  resize: vertical;
}
.inline-inquiry__form button {
  margin-top: 1rem;
  padding: 0.65rem 1.35rem;
  background: transparent;
  border: 1px solid var(--gold);
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transition: background 0.25s ease, color 0.25s ease;
}
.inline-inquiry__form button:hover {
  background: rgba(197, 160, 89, 0.15);
  color: #e8d4a8;
}
.inline-inquiry__hint {
  font-size: 0.75rem;
  color: var(--muted);
  margin-top: 0.65rem;
  line-height: 1.55;
}
@media (max-width: 900px) {
  .inline-inquiry__inner {
    grid-template-columns: 1fr;
  }
}

.work-showcase {
  margin: 2.5rem 0 0;
}
.work-showcase__title {
  font-family: Georgia, "PingFang SC", serif;
  font-size: 1rem;
  color: var(--gold);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin: 0 0 0.45rem;
  font-weight: 400;
}
.work-showcase__intro {
  font-size: 0.84rem;
  color: var(--muted);
  margin: 0 0 1.25rem;
  font-weight: 300;
  line-height: 1.65;
  max-width: 52rem;
}
.work-showcase__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}
@media (max-width: 960px) {
  .work-showcase__grid {
    grid-template-columns: 1fr;
  }
}
.work-card {
  display: block;
  text-decoration: none;
  color: inherit;
  border: 1px solid rgba(197, 160, 89, 0.18);
  border-radius: 4px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(0, 0, 0, 0.15));
  transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.35s ease;
}
.work-card:hover {
  border-color: rgba(197, 160, 89, 0.4);
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.35);
  transform: translateY(-3px);
}
.work-card__img {
  aspect-ratio: 16 / 10;
  overflow: hidden;
  background: #0a0a0a;
}
.work-card__img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.5s ease;
}
.work-card:hover .work-card__img img {
  transform: scale(1.04);
}
html.reduce-motion .work-card:hover {
  transform: none;
}
html.reduce-motion .work-card:hover .work-card__img img {
  transform: none;
}
.work-card__body {
  padding: 1rem 1.05rem 1.15rem;
}
.work-card__body h3 {
  font-size: 0.92rem;
  font-weight: 500;
  color: rgba(248, 248, 248, 0.95);
  margin: 0 0 0.4rem;
  letter-spacing: 0.04em;
}
.work-card__body p {
  font-size: 0.78rem;
  color: rgba(180, 180, 180, 0.88);
  line-height: 1.55;
  margin: 0;
  font-weight: 300;
}

.quote-layout.reveal-section,
.page-shell.reveal-section {
  padding-left: clamp(1rem, 3vw, 1.5rem);
  padding-right: clamp(1rem, 3vw, 1.5rem);
}
