:root {
  --color-ink: #16130f;
  --color-ink-soft: #2a241e;
  --color-paper: #f5f0e8;
  --color-paper-alt: #ece3d6;
  --color-white: #ffffff;
  --color-gold: #af8b57;
  --color-gold-deep: #88683e;
  --color-muted: #6f665d;
  --color-line: rgba(22, 19, 15, 0.1);
  --shadow-soft: 0 22px 55px rgba(27, 20, 13, 0.08);
  --shadow-card: 0 26px 48px rgba(27, 20, 13, 0.14);
  --radius-lg: 26px;
  --radius-md: 18px;
  --radius-sm: 10px;
  --transition: all 0.45s ease;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  color: var(--color-ink);
  background:
    radial-gradient(circle at top left, rgba(175, 139, 87, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f5f0e8 42%, #f1e8dc 100%);
  line-height: 1.7;
  overflow-x: hidden;
}

::selection {
  color: var(--color-white);
  background: var(--color-gold-deep);
}

h1,
h2,
h3,
h4,
h5,
h6,
.display-font {
  font-family: "Cormorant Garamond", serif;
  letter-spacing: 0.02em;
  line-height: 1.1;
}

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

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

section,
.section-space {
  padding: 110px 0;
  position: relative;
}

.hero-slider,
.page-hero {
  padding: 0;
}

.section-sm {
  padding: 80px 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.24em;
  color: var(--color-gold-deep);
  font-weight: 800;
}

.eyebrow::before {
  content: "";
  width: 48px;
  height: 1px;
  background: rgba(184, 148, 95, 0.55);
}

.section-title {
  font-size: 45px;
  margin: 18px 0 20px; 
}

.section-text,
.text-muted-custom {
  color: var(--color-muted);
}

.container-wide {
  width: min(100% - 40px, 1320px);
  margin: 0 auto;
}

.navbar-shell {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1050;
  padding: 0;
  background: #1f1f1f;
  border-bottom: 1px solid rgba(255, 255, 255, 0.04);
  transition: var(--transition);
}

.navbar-shell.scrolled {
  background: rgba(20, 20, 20, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.2);
}

.premium-nav {
  min-height: 66px;
  padding: 0;
  flex-wrap: nowrap;
  transition: var(--transition);
}

.navbar-shell.scrolled .premium-nav {
  min-height: 62px;
}

.navbar-brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  margin-right: 0;
  color: var(--color-white);
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-size: 1.55rem;
  line-height: 0.9;
}

.logo-brand {
  flex: 0 0 auto;
  min-width: 0;
  gap: 0;
}

.logo-brand span {
  display: block;
  line-height: 0;
}

.logo-brand img {
  width: clamp(190px, 17vw, 250px);
  height: auto;
  max-height: 52px;
  object-fit: contain;
}

.brand-mark {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  border: 7px solid #9d9826;
  border-right-color: transparent;
  background: transparent;
  color: transparent;
  font-family: "Cormorant Garamond", serif;
  font-size: 0;
  box-shadow: none;
}

.navbar-shell.scrolled .navbar-brand,
.navbar-shell.scrolled .navbar .dropdown-toggle.show {
  color: var(--color-white);
}

.navbar-shell.scrolled .brand-mark {
  border-color: #9d9826;
  border-right-color: transparent;
}

.nav-actions {
  display: inline-flex;
  align-items: center;
  flex: 0 0 auto;
  flex-wrap: nowrap;
  gap: 28px;
  margin-left: auto;
}

.theme-toggle,
.menu-trigger {
  display: inline-flex;
  align-items: center;
  border: 0;
  background: transparent;
  color: var(--color-white);
  font-size: 1rem;
  line-height: 1;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-weight: 500;
}

.theme-toggle {
  gap: 12px;
  padding: 10px 0;
}

.theme-toggle-switch {
  position: relative;
  width: 40px;
  height: 18px;
  border-radius: 999px;
  background: #4f4f4f;
}

.theme-toggle-switch span {
  position: absolute;
  top: 3px;
  left: 4px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: #9d9826;
  transition: transform 0.25s ease;
}

body[data-theme="dark"] .theme-toggle-switch span {
  transform: translateX(20px);
}

.menu-trigger {
  gap: 18px;
  padding: 10px 0;
}

.menu-trigger-lines {
  display: grid;
  gap: 7px;
  width: 30px;
}

.menu-trigger-lines span {
  display: block;
  height: 1px;
  background: #9d9826;
  transition: transform 0.28s ease, opacity 0.28s ease;
}

body.menu-open .menu-trigger-lines span:first-child {
  transform: translateY(4px) rotate(45deg);
}

body.menu-open .menu-trigger-lines span:last-child {
  transform: translateY(-4px) rotate(-45deg);
}

.site-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 1055;
  background: rgba(0, 0, 0, 0.54);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.site-menu-drawer {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 1060;
  width: min(420px, 92vw);
  height: 100vh;
  padding: 30px;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  overscroll-behavior: contain;
  background: #1f1f1f;
  color: var(--color-white);
  box-shadow: -28px 0 60px rgba(0, 0, 0, 0.28);
  transform: translateX(100%);
  visibility: hidden;
  transition: transform 0.45s cubic-bezier(0.77, 0, 0.18, 1), visibility 0.45s ease;
}

body.menu-open {
  overflow: hidden;
}

body.menu-open .site-menu-overlay {
  opacity: 1;
  visibility: visible;
}

body.menu-open .site-menu-drawer {
  transform: translateX(0);
  visibility: visible;
}

.site-menu-close {
  width: 42px;
  height: 42px;
  margin-left: auto;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
}

.site-menu-brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  margin: 18px 0 48px;
  font-size: 1.2rem;
  line-height: 1;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  font-weight: 700;
}

.site-menu-brand img {
  width: min(235px, 68vw);
  height: auto;
  max-height: 54px;
  object-fit: contain;
}

.site-menu-nav {
  display: grid;
  gap: 4px;
}

.site-menu-nav a {
  display: flex;
  align-items: baseline;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  color: rgba(255, 255, 255, 0.76);
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 6vw, 3.2rem);
  line-height: 1;
  opacity: 0;
  transform: translateX(26px);
  transition: color 0.25s ease, opacity 0.35s ease, transform 0.35s ease;
  transition-delay: var(--menu-item-delay, 0s);
}

body.menu-open .site-menu-nav a {
  opacity: 1;
  transform: translateX(0);
}

.site-menu-nav a span {
  min-width: 28px;
  color: #9d9826;
  font-family: "Manrope", sans-serif;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
}

.site-menu-nav a:hover,
.site-menu-nav a.active,
body[data-page="home"] .site-menu-nav a[data-nav-key="home"],
body[data-page="about"] .site-menu-nav a[data-nav-key="about"],
body[data-page="projects"] .site-menu-nav a[data-nav-key="projects"],
body[data-page="life"] .site-menu-nav a[data-nav-key="life"],
body[data-page="careers"] .site-menu-nav a[data-nav-key="careers"],
body[data-page="news"] .site-menu-nav a[data-nav-key="news"],
body[data-page="contact"] .site-menu-nav a[data-nav-key="contact"],
body[data-page="privacy"] .site-menu-nav a[data-nav-key="privacy"] {
  color: var(--color-white);
}

.site-menu-cta {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  width: fit-content;
  margin-top: auto;
  color: var(--color-white);
  font-size: 0.82rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 800;
}

.premium-btn,
.premium-btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  padding: 14px 26px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-size: 0.75rem;
  transition: var(--transition);
}

.premium-btn {
  color: var(--color-white);
  background: linear-gradient(135deg, #262019, #3a2d1e);
  box-shadow: 0 16px 32px rgba(27, 20, 13, 0.18);
}

.premium-btn:hover {
  transform: translateY(-3px);
  color: var(--color-white);
  box-shadow: 0 20px 38px rgba(27, 20, 13, 0.24);
}

.premium-btn-outline {
  color: var(--color-ink);
  border: 1px solid rgba(22, 19, 15, 0.14);
  background: rgba(255, 255, 255, 0.5);
}

.premium-btn-outline:hover {
  transform: translateY(-3px);
  color: var(--color-white);
  background: #1d1813;
  border-color: #1d1813;
}

.hero-slider,
.page-hero {
  min-height: 100vh;
  position: relative;
  display: flex;
  align-items: center;
  color: var(--color-white);
  overflow: hidden;
}

.page-hero {
  min-height: 68vh;
}

.about-page-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.about-page-hero-carousel .carousel-inner,
.about-page-hero-carousel .carousel-item {
  height: 100%;
}

.hero-slide,
.page-hero .hero-bg {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
}

.page-hero .hero-bg {
  transform: scale(1.03);
  transition: transform 6.5s ease;
}

.about-page-hero-carousel .carousel-item.active .hero-bg.about-hero-bg {
  animation: aboutHeroZoom 6.5s ease forwards;
}

@keyframes aboutHeroZoom {
  from {
    transform: scale(1.03);
  }
  to {
    transform: scale(1.1);
  }
}

.hero-slide::after,
.page-hero .hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(10, 9, 8, 0.18) 0%, rgba(10, 9, 8, 0.72) 82%),
    linear-gradient(90deg, rgba(14, 12, 10, 0.82) 0%, rgba(14, 12, 10, 0.3) 52%, rgba(14, 12, 10, 0.6) 100%);
}

.hero-content {
  position: relative;
  z-index: 2;
  padding-top: 124px;
}

.page-hero-copy,
.about-hero-copy {
  display: grid;
  gap: 0;
}

.page-hero-animate,
.about-hero-animate {
  opacity: 0;
  transform: translateY(26px);
  filter: blur(10px);
}

.page-hero-copy.is-animated .page-hero-animate,
.about-hero-copy.is-animated .about-hero-animate {
  animation: aboutHeroTextReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) forwards;
  animation-delay: var(--page-hero-delay, var(--about-hero-delay, 0s));
}

@keyframes aboutHeroTextReveal {
  from {
    opacity: 0;
    transform: translateY(26px);
    filter: blur(10px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
  }
}

.hero-kicker {
  font-size: 0.74rem;
  letter-spacing: 0.42em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.72);
  font-weight: 700;
}

.hero-title {
  font-size: clamp(4rem, 8vw, 7.6rem);
  margin: 20px 0 28px;
  line-height: 0.96;
}

.hero-subtitle {
  color: rgba(255, 255, 255, 0.78);
  font-size: 1rem;
  line-height: 1.9;
}

.hero-stats {
  margin-top: 54px;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0;
  max-width: 720px;
  border-top: 1px solid rgba(255, 255, 255, 0.18);
  border-bottom: 1px solid rgba(255, 255, 255, 0.18);
}

.hero-stat {
  padding: 24px 22px 20px;
  background: transparent;
  border-right: 1px solid rgba(255, 255, 255, 0.18);
  backdrop-filter: blur(8px);
}

.hero-stat:last-child {
  border-right: 0;
}

.hero-stat strong {
  display: block;
  font-size: 2.6rem;
  font-family: "Cormorant Garamond", serif;
  margin-bottom: 4px;
}

.floating-panel,
.content-card,
.filter-box,
.contact-card,
.job-card,
.news-card,
.project-card,
.stat-card,
.testimonial-card,
.benefit-card {
  border-radius: var(--radius-lg);
  background: rgba(255, 252, 246, 0.9);
  backdrop-filter: blur(6px);
  box-shadow: var(--shadow-soft);
  border: 1px solid rgba(123, 98, 68, 0.12);
}

.floating-panel {
  padding: 34px 30px;
  position: relative;
}

.floating-panel::before {
  content: "";
  position: absolute;
  left: 30px;
  right: 30px;
  top: 0;
  height: 3px;
  border-radius: 999px;
  background: linear-gradient(90deg, rgba(175, 139, 87, 0.92), rgba(175, 139, 87, 0));
}

.culture-card-section {
  overflow: hidden;
}

.culture-card-reveal {
  perspective: 900px;
}

.culture-scroll-card {
  transform: translateY(38px) scale(0.96);
  opacity: 0;
  filter: blur(8px);
  transition:
    opacity 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    transform 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    filter 0.85s cubic-bezier(0.22, 1, 0.36, 1),
    border-color 0.35s ease,
    box-shadow 0.35s ease;
  transition-delay: var(--reveal-delay, 0s);
}

.culture-card-reveal.is-visible .culture-scroll-card {
  opacity: 1;
  filter: blur(0);
  transform: translateY(0) scale(1);
}

.culture-scroll-card:hover {
  transform: translateY(-8px) scale(1.01);
  border-color: rgba(175, 139, 87, 0.34) !important;
  box-shadow: 0 30px 70px rgba(0, 0, 0, 0.22);
  transition-delay: 0s;
}

.life-testimonial-section {
  padding: 92px 0 110px;
  background: transparent;
  color: var(--color-white);
}

.life-testimonial {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(0, 1fr) 72px;
  align-items: center;
  gap: 42px;
}

.life-testimonial-content {
  text-align: center;
  transition: opacity 0.22s ease, transform 0.22s ease;
}

.life-testimonial-content.is-changing {
  opacity: 0;
  transform: translateY(10px);
}

.life-testimonial-quote {
  height: 48px;
  color: var(--color-white);
  font-family: "Cormorant Garamond", serif;
  font-size: 5.2rem;
  font-weight: 700;
  line-height: 0.7;
}

.life-testimonial-content p {
  max-width: 880px;
  margin: 20px auto 54px;
  color: rgba(255, 255, 255, 0.92);
  font-size: clamp(1.1rem, 1.35vw, 1.35rem);
  line-height: 1.65;
  font-weight: 600;
}

.life-testimonial-author {
  position: relative;
  width: min(100%, 640px);
  margin: 0 auto;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.life-testimonial-author::before {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.18);
  transform: translateY(-50%);
}

.life-testimonial-author > span:last-child {
  position: relative;
  z-index: 1;
  min-width: 190px;
  min-height: 68px;
  padding: 12px 24px 12px 68px;
  display: grid;
  align-content: center;
  text-align: left;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: #151311;
}

.life-testimonial-avatar {
  position: absolute;
  z-index: 2;
  left: calc(50% - 78px);
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: linear-gradient(135deg, #f0d7a2, #c58b39);
  color: #ffffff;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.life-testimonial-author strong {
  color: var(--color-white);
  font-size: 0.98rem;
  line-height: 1.2;
}

.life-testimonial-author small {
  margin-top: 4px;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.9rem;
}

.life-testimonial-nav {
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: #b17a42;
  font-size: 1.25rem;
  transition: transform 0.3s ease, background 0.3s ease;
}

.life-testimonial-nav:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.14);
}

.intro-grid {
  margin-top: -70px;
  position: relative;
  z-index: 4;
}

.content-card,
.project-card,
.news-card,
.testimonial-card,
.benefit-card,
.job-card,
.stat-card,
.contact-card {
  overflow: hidden;
  height: 100%;
}

.card-body-spaced {
  padding: 30px;
}

.visual-stack {
  position: relative;
  overflow: visible;
}

.visual-stack img {
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-card);
  transform: scale(1.02);
  transform-origin: center;
  animation: visualStackZoom 8s ease-in-out infinite;
  will-change: transform;
}

.visual-stack .secondary-image {
  width: 58%;
  position: absolute;
  right: -4%;
  bottom: -12%;
  border: 10px solid rgba(248, 245, 239, 0.92);
  animation-delay: 0.9s;
}

@keyframes visualStackZoom {
  0% {
    transform: scale(1.02);
  }
  50% {
    transform: scale(1.08);
  }
  100% {
    transform: scale(1.02);
  }
}

.value-band,
.cta-band,
.dark-panel,
.footer-shell {
  background:
    radial-gradient(circle at top right, rgba(175, 139, 87, 0.15), transparent 28%),
    linear-gradient(180deg, #14110f 0%, #1d1814 100%);
  color: var(--color-white);
}

.value-band .section-text,
.dark-panel .section-text,
.footer-shell p,
.footer-shell a {
  color: rgba(255, 255, 255, 0.72);
}

.feature-item {
  padding: 18px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.feature-item:first-child {
  border-top: 0;
}

.icon-badge {
  width: 58px;
  height: 58px;
  display: inline-grid;
  place-items: center;
  border-radius: 16px;
  background: linear-gradient(135deg, rgba(175, 139, 87, 0.2), rgba(255, 255, 255, 0.76));
  color: var(--color-gold-deep);
  font-size: 1.2rem;
}

.filter-tabs,
.project-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.filter-chip,
.filter-btn {
  border: 1px solid rgba(22, 19, 15, 0.12);
  background: rgba(255, 252, 246, 0.82);
  color: var(--color-ink);
  padding: 13px 20px;
  border-radius: 999px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  transition: var(--transition);
}

.filter-chip.active,
.filter-btn.active,
.filter-chip:hover,
.filter-btn:hover {
  background: var(--color-ink);
  color: var(--color-white);
  border-color: var(--color-ink);
}

.project-image,
.news-image,
.gallery-image {
  position: relative;
  overflow: hidden;
}

.project-image img,
.news-image img,
.gallery-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s ease;
}

.project-card:hover .project-image img,
.news-card:hover .news-image img,
.gallery-image:hover img {
  transform: scale(1.08);
}

.auto-zoom-image img {
  transform: scale(1.04);
  transform-origin: center;
  animation: galleryImageAutoZoom 6.5s ease-in-out infinite;
  will-change: transform;
}

.auto-zoom-image:nth-child(odd) img {
  animation-delay: -1.4s;
}

.culture-media {
  overflow: hidden;
  border-radius: 30px;
  box-shadow: var(--shadow-card);
}

.culture-media img {
  width: 100%;
  min-height: 420px;
  object-fit: cover;
}

@keyframes galleryImageAutoZoom {
  0%,
  100% {
    transform: scale(1.04);
  }

  50% {
    transform: scale(1.15);
  }
}

.project-image {
  height: 330px;
}

.news-image {
  height: 280px;
}

.project-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.08), rgba(12, 10, 8, 0.74));
}

.project-status {
  display: inline-flex;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 700;
  color: var(--color-white);
  background: #1f1a15;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.meta-list {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  color: var(--color-muted);
  font-size: 0.82rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.meta-list span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

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

.stat-card {
  padding: 40px 28px;
  text-align: left;
}

.stat-number {
  font-size: 4rem;
  color: var(--color-gold-deep);
  font-family: "Cormorant Garamond", serif;
  line-height: 0.95;
  margin-bottom: 14px;
}

.testimonial-card {
  padding: 32px;
}

.quote-mark {
  font-size: 3rem;
  line-height: 1;
  color: rgba(184, 148, 95, 0.7);
}

.page-header-spacer {
  padding-top: 66px;
}

.breadcrumb-premium .breadcrumb-item,
.breadcrumb-premium .breadcrumb-item a {
  color: rgba(255, 255, 255, 0.76);
}

.breadcrumb-premium .breadcrumb-item.active {
  color: var(--color-white);
}

body[data-page="projects"] .page-hero {
  min-height: min(760px, calc(100vh - 66px));
  display: flex;
  align-items: center;
}

body[data-page="projects"] .hero-content {
  padding-top: 80px;
  padding-bottom: 80px;
}

body[data-page="projects"] .hero-title {
  max-width: 940px;
  font-size: clamp(3rem, 5.4vw, 5.8rem);
  line-height: 1.02;
}

body[data-page="projects"] .hero-subtitle {
  max-width: 680px;
}

body[data-page="projects"] .filter-box {
  margin-top: 0;
  padding: 26px !important;
  border-radius: 20px;
}

body[data-page="projects"] .filter-box .row {
  align-items: center !important;
}

body[data-page="projects"] .filter-box .form-label {
  display: block;
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.88);
  font-size: 0.92rem;
  line-height: 1.2;
}

body[data-page="projects"] .project-filters {
  gap: 10px;
  flex-wrap: nowrap;
}

body[data-page="projects"] .filter-btn {
  min-height: 46px;
  padding: 12px 20px;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

body[data-page="projects"] .project-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

body[data-page="projects"] .project-card .card-body-spaced {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

body[data-page="projects"] .project-card .premium-btn-outline {
  margin-top: auto;
}

body:not([data-page="home"]) .page-hero {
  min-height: min(720px, calc(100vh - 66px));
  align-items: center;
}

body:not([data-page="home"]) .page-hero .hero-content {
  padding-top: 88px;
  padding-bottom: 88px;
}

body:not([data-page="home"]) .page-hero .hero-content .row > * {
  flex: 0 0 100%;
  max-width: min(100%, 1240px);
}

body:not([data-page="home"]) .breadcrumb-premium {
  margin-bottom: 24px;
}

body:not([data-page="home"]) .hero-kicker {
  display: inline-block;
  margin-bottom: 18px;
  color: rgba(255, 255, 255, 0.82);
}

body:not([data-page="home"]) .page-hero .hero-title {
  max-width: 1240px;
  margin: 0 0 26px;
  font-size: clamp(3.8rem, 5.2vw, 5.7rem);
  line-height: 1.06;
}

body:not([data-page="home"]) .page-hero .hero-subtitle {
  max-width: 720px;
  margin: 0;
  font-size: 1rem;
  line-height: 1.85;
}

.glass-strip {
  border-radius: var(--radius-lg);
  padding: 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(12px);
}

.timeline {
  position: relative;
  padding-left: 30px;
}

.timeline::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 8px;
  width: 1px;
  background: rgba(21, 21, 21, 0.14);
}

.timeline-item {
  position: relative;
  padding: 0 0 34px 28px;
}

.timeline-item::before {
  content: "";
  position: absolute;
  width: 16px;
  height: 16px;
  left: -1px;
  top: 8px;
  border-radius: 50%;
  background: var(--color-gold);
  box-shadow: 0 0 0 8px rgba(184, 148, 95, 0.14);
}

.team-scroll-section {
  overflow: hidden;
  background:
    radial-gradient(circle at 70% 50%, rgba(175, 139, 87, 0.08), transparent 28%),
    linear-gradient(180deg, #11100f 0%, #171411 100%);
  color: var(--color-white);
}

.team-scroll-section .eyebrow,
.team-scroll-section .timeline-item h3 {
  color: var(--color-white);
}

.team-scroll-section .eyebrow {
  color: #e1b56d;
}

.team-scroll-section .eyebrow::before {
  background: rgba(225, 181, 109, 0.45);
}

.team-scroll-section .section-title {
  max-width: 650px;
  color: var(--color-white);
}

.team-scroll-section .timeline::before {
  background: rgba(255, 255, 255, 0.1);
}

.team-scroll-section .timeline-item {
  opacity: 0;
  transform: translateX(-24px);
}

.team-scroll-section .reveal.is-visible .timeline-item {
  animation: teamTimelineReveal 0.8s cubic-bezier(0.22, 1, 0.36, 1) forwards;
}

.team-scroll-section .timeline-item:nth-child(1) {
  animation-delay: 0.18s;
}

.team-scroll-section .timeline-item:nth-child(2) {
  animation-delay: 0.34s;
}

.team-scroll-section .timeline-item:nth-child(3) {
  animation-delay: 0.5s;
}

.team-scroll-section .timeline-item::before {
  background: #c49a57;
  box-shadow: 0 0 0 10px rgba(196, 154, 87, 0.15);
}

.team-scroll-section .text-muted-custom {
  color: rgba(255, 255, 255, 0.68);
}

.team-scroll-media {
  position: relative;
  min-height: 430px;
  border-radius: 30px;
  overflow: hidden;
  background: #2a2927;
  box-shadow: 0 34px 80px rgba(0, 0, 0, 0.35);
  transform: translate3d(0, var(--scroll-shift, 0px), 0);
  transition: transform 0.18s linear;
}

.team-scroll-media::before,
.team-scroll-media::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.team-scroll-media::before {
  background: linear-gradient(180deg, rgba(17, 16, 15, 0.02), rgba(17, 16, 15, 0.28));
}

.team-scroll-media::after {
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: inherit;
}

.team-scroll-media img {
  width: 100%;
  height: 100%;
  min-height: inherit;
  object-fit: cover;
  filter: saturate(0.72) contrast(1.08);
  transform: scale(1.04);
  transform-origin: center;
  animation: teamImageAutoZoom 6s ease-in-out infinite;
  will-change: transform;
}

.reveal.is-visible .team-scroll-media {
  animation: teamMediaReveal 0.9s cubic-bezier(0.22, 1, 0.36, 1) both;
}

@keyframes teamMediaReveal {
  0% {
    opacity: 0;
    clip-path: inset(14% 0 14% 0 round 30px);
    transform: translate3d(44px, calc(var(--scroll-shift, 0px) + 18px), 0) scale(0.98);
  }

  100% {
    opacity: 1;
    clip-path: inset(0 0 0 0 round 30px);
    transform: translate3d(0, var(--scroll-shift, 0px), 0) scale(1);
  }
}

@keyframes teamImageAutoZoom {
  0% {
    transform: scale(1.04);
  }

  50% {
    transform: scale(1.16);
  }

  100% {
    transform: scale(1.04);
  }
}

@keyframes teamTimelineReveal {
  100% {
    opacity: 1;
    transform: translateX(0);
  }
}

.amenity-list,
.policy-list {
  display: grid;
  gap: 16px;
}

.amenity-item,
.policy-block {
  padding: 22px 24px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(22, 19, 15, 0.08);
}

.gallery-thumb-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.map-frame,
.embed-map iframe {
  border: 0;
  width: 100%;
  min-height: 360px;
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-soft);
}

.contact-inquiry-section .contact-inquiry-column {
  display: flex;
  flex-direction: column;
}

.contact-inquiry-section .contact-inquiry-column > .section-title {
  min-height: 112px;
}

.contact-inquiry-section .content-card,
.contact-inquiry-section .embed-map {
  flex: 1;
  min-height: 540px;
}

.contact-inquiry-section .content-card {
  display: flex;
  align-items: flex-start;
}

.contact-inquiry-section .content-card form {
  width: 100%;
}

.contact-inquiry-section .form-control,
.contact-inquiry-section .form-select,
body[data-theme="dark"] .contact-inquiry-section .form-control,
body[data-theme="dark"] .contact-inquiry-section .form-select {
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background-color: transparent;
  color: var(--color-white);
  font-weight: 600;
  box-shadow: none;
}

.contact-inquiry-section textarea.form-control {
  min-height: 152px;
  resize: vertical;
}

.contact-inquiry-section .form-control::placeholder,
body[data-theme="dark"] .contact-inquiry-section .form-control::placeholder {
  color: rgba(255, 255, 255, 0.52);
  opacity: 1;
}

.contact-inquiry-section .form-select,
body[data-theme="dark"] .contact-inquiry-section .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

.contact-inquiry-section .form-control:focus,
.contact-inquiry-section .form-select:focus,
body[data-theme="dark"] .contact-inquiry-section .form-control:focus,
body[data-theme="dark"] .contact-inquiry-section .form-select:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 154, 87, 0.9);
  color: var(--color-white);
  box-shadow: 0 0 0 0.2rem rgba(196, 154, 87, 0.16);
}

.contact-inquiry-section .premium-btn {
  margin-top: 4px;
  background: linear-gradient(135deg, #3b2c1c, #5a3d20);
}

.contact-inquiry-section .embed-map iframe {
  height: 100%;
  min-height: 540px;
}

.form-control,
.form-select {
  border-radius: 20px;
  padding: 15px 18px;
  border: 1px solid rgba(22, 19, 15, 0.1);
  background: rgba(255, 252, 246, 0.9);
}

.form-control:focus,
.form-select:focus {
  border-color: rgba(184, 148, 95, 0.5);
  box-shadow: 0 0 0 0.18rem rgba(184, 148, 95, 0.16);
}

body[data-page="careers"] #application .content-card {
  padding: 30px;
  border-radius: 24px;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(255, 255, 255, 0.12);
}

body[data-page="careers"] #application .form-control,
body[data-page="careers"] #application .form-select {
  min-height: 56px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background-color: rgba(255, 255, 255, 0.92);
  color: #17130f;
  font-weight: 600;
  box-shadow: none;
}

body[data-page="careers"] #application textarea.form-control {
  min-height: 150px;
  resize: vertical;
}

body[data-page="careers"] #application .form-control::placeholder {
  color: rgba(23, 19, 15, 0.58);
  opacity: 1;
}

body[data-page="careers"] #application .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2317130f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

body[data-page="careers"] #application .form-control:focus,
body[data-page="careers"] #application .form-select:focus {
  background-color: #ffffff;
  border-color: rgba(196, 154, 87, 0.9);
  color: #17130f;
  box-shadow: 0 0 0 0.2rem rgba(196, 154, 87, 0.18);
}

body[data-page="careers"] #application .premium-btn {
  margin-top: 4px;
  background: linear-gradient(135deg, #3b2c1c, #5a3d20);
}

.footer-shell {
  padding: 86px 0 34px;
}

.footer-brand {
}

.footer-title {
  color: var(--color-white);
  font-size: 1.3rem;
  margin-bottom: 18px;
}

.footer-links {
  display: grid;
  gap: 12px;
}

.footer-bottom {
  margin-top: 46px;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.55);
  justify-content: center !important;
  text-align: center;
}

.back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 1050;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  color: var(--color-white);
  background: linear-gradient(135deg, var(--color-gold), var(--color-gold-deep));
  box-shadow: 0 18px 28px rgba(21, 21, 21, 0.24);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px);
  transition: var(--transition);
}

.back-to-top.show {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0);
}

.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity 0.7s ease, transform 0.7s ease;
  transition-delay: var(--reveal-delay, 0s);
}

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

.reveal-left {
  transform: translateX(-72px);
}

.hidden-card {
  display: none;
}

.article-content p,
.article-content li {
  color: var(--color-muted);
  font-size: 1.02rem;
}

.article-content h2,
.article-content h3 {
  margin-top: 34px;
  margin-bottom: 16px;
}

.source-box {
  padding: 24px;
  border-radius: var(--radius-md);
  background: rgba(184, 148, 95, 0.1);
  border: 1px solid rgba(184, 148, 95, 0.18);
}

.standards-band {
  background: linear-gradient(180deg, rgba(175, 139, 87, 0.09) 0%, rgba(175, 139, 87, 0.03) 100%);
}

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

.logo-card {
  min-height: 100px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  background: rgba(255, 252, 246, 0.78);
  border: 1px solid rgba(22, 19, 15, 0.08);
  box-shadow: var(--shadow-soft);
  color: var(--color-ink-soft);
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-weight: 800;
  font-size: 0.8rem;
}

.business-tile {
  padding: 28px;
  border-radius: var(--radius-md);
  background: rgba(255, 252, 246, 0.82);
  border: 1px solid rgba(22, 19, 15, 0.08);
  box-shadow: var(--shadow-soft);
  height: 100%;
}

body[data-page="home"] .intro-grid .floating-panel,
body[data-page="home"] .project-card,
body[data-page="home"] .news-card,
body[data-page="home"] .testimonial-card,
body[data-page="home"] .stat-card {
  background:
    linear-gradient(180deg, rgba(255, 253, 249, 0.96), rgba(246, 238, 227, 0.88));
}

body[data-page="home"] .standards-band {
  position: relative;
  overflow: hidden;
}

body[data-page="home"] .standards-band::before {
  content: "";
  position: absolute;
  inset: auto -10% -40% auto;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(175, 139, 87, 0.18), transparent 70%);
}

body[data-page="home"] .dark-panel .feature-item h3,
body[data-page="home"] .project-card h3,
body[data-page="home"] .news-card h3,
body[data-page="home"] .testimonial-card h3,
body[data-page="home"] .stat-card h3 {
  font-size: 2rem;
  margin-bottom: 10px;
}

@media (max-width: 1199px) {
  .stats-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .hero-title {
    max-width: 100%;
  }
}

@media (max-width: 991px) {
  section,
  .section-space {
    padding: 88px 0;
  }

  .navbar-brand {
    font-size: 1.1rem;
  }

  .nav-actions {
    gap: 18px;
  }

  .hero-slider,
  .page-hero {
    min-height: 88vh;
  }

  .hero-stats {
    gap: 14px;
    max-width: 100%;
    border: 0;
  }

  .hero-stat {
    border-right: 0;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
  }

  .hero-stats,
  .stats-grid,
  .gallery-thumb-row,
  .logo-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .intro-grid {
    margin-top: -60px;
  }

  .visual-stack .secondary-image {
    position: static;
    width: 78%;
    margin: 20px auto 0;
  }
}

@media (max-width: 767px) {
  .page-header-spacer {
    padding-top: 62px;
  }

  body[data-page="projects"] .page-hero {
    min-height: auto;
  }

  body[data-page="projects"] .hero-content {
    padding-top: 76px;
    padding-bottom: 76px;
  }

  .hero-title {
    font-size: clamp(2.8rem, 14vw, 4.6rem);
  }

  body[data-page="projects"] .hero-title {
    font-size: clamp(2.8rem, 12vw, 4rem);
  }

  body:not([data-page="home"]) .page-hero .hero-content {
    padding-top: 72px;
    padding-bottom: 72px;
  }

  body:not([data-page="home"]) .page-hero .hero-title {
    font-size: clamp(2.85rem, 11vw, 4.15rem);
    line-height: 1.08;
  }

  body:not([data-page="home"]) .page-hero .hero-subtitle {
    font-size: 0.96rem;
    line-height: 1.75;
  }

  body[data-page="projects"] .filter-box {
    padding: 20px !important;
  }

  body[data-page="projects"] .project-filters {
    flex-wrap: wrap;
  }

  body[data-page="projects"] .filter-btn {
    flex: 1 1 auto;
    justify-content: center;
  }

  .section-title {
    font-size: clamp(2.2rem, 10vw, 3rem);
    max-width: 100%;
  }

  .hero-stats,
  .stats-grid,
  .gallery-thumb-row,
  .logo-grid {
    grid-template-columns: 1fr;
  }

  .project-image,
  .news-image {
    height: 240px;
  }

  .floating-panel,
  .card-body-spaced,
  .testimonial-card,
  .benefit-card,
  .job-card,
  .contact-card {
    padding: 22px;
  }
}

.nav-cta {
  align-items: center;
  justify-content: center;
  min-width: 126px;
  margin-left: 18px;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1d1813;
  color: var(--color-white);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  font-weight: 700;
}

.nav-cta:hover {
  color: var(--color-white);
}

.theme-toggle:hover {
  color: var(--color-white);
}

.light-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
}

.light-outline:hover {
  background: var(--color-white);
  color: var(--color-ink);
  border-color: var(--color-white);
}

.home-hero {
  position: relative;
  min-height: 100vh;
  padding: 0;
  color: var(--color-white);
  overflow: hidden;
  background: #110f0d;
}

.home-hero-carousel {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.home-hero-carousel .carousel-inner,
.home-hero-carousel .carousel-item {
  height: 100%;
}

.home-hero-media,
.home-hero-overlay {
  position: absolute;
  inset: 0;
}

.home-hero-media {
  background-size: cover;
  background-position: center;
  transform: scale(1.03);
  transition: transform 6.5s ease;
}

.home-hero-carousel .carousel-item.active .home-hero-media {
  transform: scale(1.1);
}

.home-hero-overlay {
  background:
    linear-gradient(90deg, rgba(12, 10, 8, 0.88) 0%, rgba(12, 10, 8, 0.42) 46%, rgba(12, 10, 8, 0.72) 100%),
    linear-gradient(180deg, rgba(12, 10, 8, 0.1) 0%, rgba(12, 10, 8, 0.86) 100%);
  z-index: 1;
}

.home-hero-inner {
  position: relative;
  z-index: 2;
  padding-top: 180px;
  padding-bottom: 260px;
}

.home-hero-indicators {
  z-index: 3;
  right: auto;
  left: 50%;
  bottom: 36px;
  width: auto;
  margin: 0;
  transform: translateX(-50%);
  gap: 10px;
}

.home-hero-indicators [data-bs-target] {
  width: 42px;
  height: 4px;
  margin: 0;
  border: 0;
  border-radius: 999px;
  background-color: rgba(255, 255, 255, 0.28);
  opacity: 1;
}

.home-hero-indicators .active {
  background-color: var(--color-white);
}

.home-hero-control {
  top: auto;
  bottom: 26px;
  z-index: 3;
  width: 56px;
  height: 56px;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  opacity: 1;
}

.home-hero-control.carousel-control-prev {
  left: 42px;
}

.home-hero-control.carousel-control-next {
  right: 42px;
}

.home-hero-control:hover {
  background: rgba(255, 255, 255, 0.16);
}

.home-hero-control .carousel-control-prev-icon,
.home-hero-control .carousel-control-next-icon {
  width: 1.1rem;
  height: 1.1rem;
}

.hero-copy {
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.hero-aside {
  position: relative;
  z-index: 2;
  padding: 34px 32px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(18px);
  border-radius: 28px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.16);
}

.aside-label {
  display: inline-block;
  margin-bottom: 16px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.72rem;
  letter-spacing: 0.24em;
  text-transform: uppercase;
}

.hero-aside h2 {
  font-size: clamp(2.1rem, 4vw, 3rem);
  margin-bottom: 18px;
}

.hero-aside p {
  color: rgba(255, 255, 255, 0.74);
  margin-bottom: 24px;
}

.hero-aside-meta {
  display: grid;
  gap: 18px;
  margin-bottom: 28px;
}

.hero-aside-meta strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.65rem;
  margin-bottom: 2px;
}

.hero-aside-meta span {
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.84rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-weight: 700;
}

.hero-bottom-strip {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(15, 12, 10, 0.42);
  backdrop-filter: blur(10px);
}

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

.hero-bottom-item {
  padding: 26px 28px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
}

.hero-bottom-item:last-child {
  border-right: 0;
}

.hero-bottom-item span {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-gold);
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
}

.hero-bottom-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.74);
}

.home-intro {
  position: relative;
  background: #f7f4ef;
  overflow: hidden;
}

.home-intro::before {
  display: none;
}

.home-intro::after {
  display: none;
}

.home-intro .section-title {
  line-height: 1.12;
  margin-bottom: 18px;
}

.intro-showcase {
  align-items: stretch;
}

.intro-showcase-media {
  height: 100%;
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.15fr);
  gap: 24px;
  align-items: stretch;
}

.intro-showcase-side {
  display: grid;
  grid-template-rows: minmax(0, 0.58fr) minmax(0, 1fr);
  gap: 24px;
}

.intro-showcase-image img,
.intro-showcase-main img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.intro-showcase-image {
  overflow: hidden;
  background: #ebe4d8;
}

.intro-image-effect {
  position: relative;
  isolation: isolate;
  transform: translate3d(var(--intro-shift-x, 0px), var(--intro-shift-y, 0px), 0) rotateX(var(--intro-rotate-x, 0deg)) rotateY(var(--intro-rotate-y, 0deg));
  transform-style: preserve-3d;
  will-change: transform;
  transition: transform 0.7s ease, box-shadow 0.7s ease, filter 0.7s ease;
}

.intro-image-effect::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(180deg, rgba(12, 10, 8, 0.04), rgba(12, 10, 8, 0.18));
  pointer-events: none;
}

.intro-image-effect::after {
  content: "";
  position: absolute;
  top: -15%;
  bottom: -15%;
  left: -120%;
  width: 42%;
  z-index: 2;
  transform: rotate(12deg);
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.22), transparent);
  opacity: 0;
  transition: left 0.9s ease, opacity 0.4s ease;
  pointer-events: none;
}

.intro-image-effect img {
  transition: transform 1.1s cubic-bezier(0.2, 0.8, 0.2, 1), filter 0.7s ease;
  filter: saturate(0.95) contrast(1.03);
}

.intro-showcase-media:hover .intro-image-effect::after {
  left: 140%;
  opacity: 1;
}

.intro-showcase-media:hover .intro-image-effect img {
  transform: scale(1.06);
  filter: saturate(1) contrast(1.06);
}

.intro-showcase-media:hover .intro-showcase-image {
  transform: translate3d(var(--intro-shift-x, 0px), calc(var(--intro-shift-y, 0px) - 6px), 0)
    rotateX(var(--intro-rotate-x, 0deg)) rotateY(var(--intro-rotate-y, 0deg));
  box-shadow: 0 22px 38px rgba(27, 20, 13, 0.12);
}

.intro-showcase-media:hover .intro-image-primary {
  transform: translate3d(var(--intro-shift-x, 0px), calc(var(--intro-shift-y, 0px) - 8px), 0)
    rotateX(var(--intro-rotate-x, 0deg)) rotateY(var(--intro-rotate-y, 0deg));
  box-shadow: 0 28px 52px rgba(27, 20, 13, 0.16);
}

.intro-showcase-image-sm {
  height: 180px;
  animation: introFloatSoft 6s ease-in-out infinite;
}

.intro-showcase-image-lg {
  height: 294px;
  animation: introFloatSoft 7.2s ease-in-out infinite reverse;
}

.intro-showcase-main {
  height: 100%;
  min-height: 560px;
  overflow: hidden;
  animation: introFloatSoftPrimary 8s ease-in-out infinite;
}

.intro-showcase-copy {
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-left: 28px;
}

.intro-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 20px;
  color: var(--color-ink);
  font-size: 0.8rem;
  letter-spacing: 0;
}

.intro-kicker::before {
  content: "";
  width: 24px;
  height: 1px;
  background: rgba(22, 19, 15, 0.55);
}

.intro-showcase-title {
}

.intro-showcase-text {
  font-size: 1rem;
  line-height: 1.85;
  margin-bottom: 34px;
}

.intro-advantage-box {
  padding-left: 48px;
  border-left: 1px solid rgba(22, 19, 15, 0.14);
}

.intro-advantage-box h3 {
  margin: 0 0 22px;
  font-size: clamp(1.9rem, 3vw, 2.5rem);
  font-style: italic;
}

.intro-advantage-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 16px;
}

.intro-advantage-list li {
  color: var(--color-ink);
}

.intro-cta-row {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 36px;
  flex-wrap: wrap;
}

.intro-cta-link {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 56px;
  padding: 10px 10px 10px 28px;
  border-radius: 999px;
  background: #efebe5;
  color: var(--color-ink);
  font-size: 1rem;
}

.intro-cta-link span {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: #bb8f5b;
  color: var(--color-white);
}

@keyframes introTitleRise {
  0% {
    opacity: 0;
    transform: translateY(38px);
    letter-spacing: 0.06em;
    filter: blur(5px);
  }

  100% {
    opacity: 1;
    transform: translateY(0);
    letter-spacing: 0.02em;
    filter: blur(0);
  }
}

@keyframes introTitleSweep {
  0% {
    left: -38%;
    opacity: 0;
  }

  20% {
    opacity: 1;
  }

  100% {
    left: 118%;
    opacity: 0;
  }
}

@keyframes introFloatSoft {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes introFloatSoftPrimary {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes introCardFloat {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-10px);
  }
}

@keyframes introImagePulse {
  0% {
    transform: translate3d(0, var(--scroll-shift, 0px), 0) scale(1);
  }

  100% {
    transform: translate3d(0, var(--scroll-shift, 0px), 0) scale(1.035);
  }
}

@keyframes introImagePulseSmall {
  0% {
    transform: scale(1);
  }

  100% {
    transform: scale(1.045);
  }
}

@keyframes introCardPulse {
  0% {
    transform: translate3d(0, var(--scroll-shift, 0px), 0) scale(1);
  }

  100% {
    transform: translate3d(0, var(--scroll-shift, 0px), 0) scale(1.02);
  }
}

@media (prefers-reduced-motion: reduce) {
  .intro-showcase .reveal,
  .intro-showcase img,
  .intro-showcase-image-sm,
  .intro-showcase-image-lg,
  .intro-showcase-main,
  .intro-image-effect {
    animation: none;
    transition: none;
    transform: none;
  }

  .team-scroll-media,
  .team-scroll-media img,
  .auto-zoom-image img,
  .culture-scroll-card,
  .life-testimonial,
  .team-scroll-section .timeline-item,
  .reveal.is-visible .team-scroll-media {
    animation: none;
    transition: none;
    transform: none;
    opacity: 1;
    clip-path: none;
  }
}

.signature-band {
  position: relative;
  background: #f7f4ef;
  color: var(--color-ink);
}

.signature-band .section-text,
.signature-band .section-title {
  color: var(--color-ink);
}

.signature-band::before {
  content: "";
  position: absolute;
  inset: 44px auto auto 0;
  width: 130px;
  height: 260px;
  background:
    linear-gradient(180deg, rgba(22, 19, 15, 0.08), rgba(22, 19, 15, 0)),
    radial-gradient(circle at left top, rgba(22, 19, 15, 0.08), transparent 70%);
  opacity: 0.4;
  pointer-events: none;
}

.signature-header {
  margin: 0 auto 58px;
}

.signature-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-ink);
  font-size: 0.82rem;
  margin-bottom: 16px;
}

.signature-kicker::before {
  content: "";
  width: 22px;
  height: 1px;
  background: rgba(22, 19, 15, 0.5);
}

.signature-title {
  margin: 0 auto;
}

[data-word-reveal] {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 0.18em;
}

.signature-title[data-word-reveal] {
  justify-content: center;
}

.hero-title[data-word-reveal],
.section-title[data-word-reveal],
.story-word-reveal[data-word-reveal] {
  justify-content: flex-start;
}

.signature-title[data-word-reveal] {
  display: inline-flex;
  flex-wrap: wrap;
}

.signature-title-word {
  display: inline-block;
  opacity: 0;
  transform: translateY(22px);
  filter: blur(6px);
  transition:
    opacity 0.55s ease,
    transform 0.55s ease,
    filter 0.55s ease;
  transition-delay: var(--word-delay, 0s);
  will-change: opacity, transform, filter;
}

.signature-header.is-visible .signature-title-word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.reveal.is-visible [data-word-reveal] .signature-title-word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.page-hero-copy.is-animated [data-word-reveal] .signature-title-word,
.about-hero-copy.is-animated [data-word-reveal] .signature-title-word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

.page-hero [data-word-reveal] .signature-title-word {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}

@media (prefers-reduced-motion: reduce) {
  .signature-title-word {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
}

.service-circle-card {
  width: min(100%, 320px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  margin: 0 auto;
  padding: 36px 28px;
  border-radius: 50%;
  border: 1px solid rgba(22, 19, 15, 0.08);
  background: rgba(255, 255, 255, 0.42);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  box-shadow: 0 18px 40px rgba(27, 20, 13, 0.05);
  transition: transform 0.45s ease, box-shadow 0.45s ease, border-color 0.45s ease;
}

.service-circle-card:hover {
  transform: translateY(-8px);
  box-shadow: 0 26px 52px rgba(27, 20, 13, 0.1);
  border-color: rgba(187, 143, 91, 0.24);
}

.service-icon {
  width: 72px;
  height: 72px;
  display: inline-grid;
  place-items: center;
  margin-bottom: 22px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  color: var(--color-ink);
  font-size: 2rem;
}

.service-circle-card h3 {
  font-size: 1.3rem;
  line-height: 1.35;
  margin-bottom: 14px;
}

.service-circle-card p {
  margin: 0;
  color: var(--color-muted);
  line-height: 1.6;
  font-size: 0.98rem;
}

.project-curation {
  overflow: hidden;
  background:
    radial-gradient(circle at top center, rgba(194, 173, 143, 0.16), transparent 24%),
    linear-gradient(180deg, #fbf8f2 0%, #f6f1e9 100%);
}

.portfolio-slider-header {
  position: relative;
  max-width: 760px;
  margin: 0 0 42px;
}

.portfolio-slider-header .section-title {
  max-width: 720px;
  margin: 0;
  font-size: clamp(2.85rem, 5vw, 5rem);
  line-height: 0.95;
  color: #181511;
}

.portfolio-heading-eyebrow {
  color: #181511;
  margin-bottom: 18px;
}

.portfolio-heading-eyebrow::before {
  background: rgba(24, 21, 17, 0.82);
}

.portfolio-full-bleed {
  width: 100%;
  max-width: 100%;
}

.portfolio-video-slider {
  position: relative;
  width: 100%;
  cursor: grab;
  user-select: none;
}

.portfolio-video-stage {
  position: relative;
  width: 100%;
  min-height: 540px;
}

.portfolio-video-slider.is-dragging {
  cursor: grabbing;
}

.portfolio-video-card {
  position: absolute;
  top: 0;
  width: min(32.5vw, 620px);
  aspect-ratio: 0.84;
  border: 0;
  background: transparent;
  padding: 0;
  cursor: pointer;
  opacity: 0;
  pointer-events: none;
  transition:
    transform 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    opacity 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    filter 1.05s cubic-bezier(0.22, 1, 0.36, 1),
    box-shadow 1.05s cubic-bezier(0.22, 1, 0.36, 1);
  will-change: transform, opacity;
}

.portfolio-video-card.is-active,
.portfolio-video-card.is-prev,
.portfolio-video-card.is-next {
  opacity: 1;
  pointer-events: auto;
}

.portfolio-video-card.is-active {
  left: 50%;
  z-index: 3;
  transform: translateX(-50%) translateY(0) scale(1);
}

.portfolio-video-card.is-prev {
  left: 0;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(2%) translateY(0) scale(1);
}

.portfolio-video-card.is-next {
  left: 100%;
  z-index: 2;
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-102%) translateY(0) scale(1);
}

.portfolio-video-media {
  position: relative;
  width: 100%;
  height: 100%;
  overflow: hidden;
  border-radius: 0;
  background: #ddd3c5;
  box-shadow: none;
}

.portfolio-video-media::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 11, 6, 0.03), rgba(17, 11, 6, 0.16));
  pointer-events: none;
}

.portfolio-video-media img,
.portfolio-video-media video {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.portfolio-video-media img {
  transform: scale(1.03);
  transition: transform 0.9s ease;
  will-change: transform;
}

.portfolio-video-media video {
  opacity: 1;
  transform: scale(1.03);
  transition: transform 0.9s ease;
  will-change: transform;
}

.portfolio-video-card.is-active .portfolio-video-media img,
.portfolio-video-card.is-active .portfolio-video-media video {
  animation: portfolioMediaPulse 6s ease-in-out infinite;
}

.portfolio-video-card.is-prev .portfolio-video-media img,
.portfolio-video-card.is-prev .portfolio-video-media video,
.portfolio-video-card.is-next .portfolio-video-media img,
.portfolio-video-card.is-next .portfolio-video-media video {
  animation: none;
  transform: scale(1.03);
}

@keyframes portfolioMediaPulse {
  0% {
    transform: scale(1.03);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
    transform: scale(1.03);
  }
}

@media (prefers-reduced-motion: reduce) {
  .visual-stack img {
    animation: none;
    transform: none;
  }

  .page-hero-animate,
  .page-hero-copy.is-animated .page-hero-animate,
  .about-hero-animate,
  .about-hero-copy.is-animated .about-hero-animate {
    opacity: 1;
    transform: none;
    filter: none;
    animation: none;
  }

  .portfolio-video-media img,
  .portfolio-video-media video,
  .portfolio-video-card.is-active .portfolio-video-media img,
  .portfolio-video-card.is-active .portfolio-video-media video,
  .portfolio-video-card.is-prev .portfolio-video-media img,
  .portfolio-video-card.is-prev .portfolio-video-media video,
  .portfolio-video-card.is-next .portfolio-video-media img,
  .portfolio-video-card.is-next .portfolio-video-media video {
    animation: none;
    transform: none;
    transition: none;
  }
}

.portfolio-video-label {
  margin: 0;
  font-size: clamp(1.8rem, 2.4vw, 2.7rem);
  line-height: 1;
  color: #181511;
  font-style: italic;
  white-space: nowrap;
}

.portfolio-video-card.is-prev .portfolio-video-label,
.portfolio-video-card.is-next .portfolio-video-label {
  font-size: clamp(1.8rem, 2.3vw, 2.6rem);
}

.portfolio-card-info {
  position: absolute;
  left: 0;
  bottom: 0;
  width: min(84%, 370px);
  min-height: 70px;
  padding: 18px 26px;
  background: rgba(255, 252, 247, 0.98);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  box-shadow: 0 20px 34px rgba(40, 27, 12, 0.06);
}

.portfolio-card-link {
  flex: 0 0 auto;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid rgba(193, 154, 106, 0.36);
  color: #b17a42;
  display: inline-grid;
  place-items: center;
  font-size: 1.1rem;
}

.portfolio-video-meta {
  display: flex;
  justify-content: center;
  margin-top: 28px;
}

.portfolio-video-controls {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}

.portfolio-nav-btn {
  width: 58px;
  height: 58px;
  border: 1px solid rgba(24, 21, 17, 0.12);
  border-radius: 50%;
  background: rgba(255, 252, 247, 0.96);
  color: #181511;
  display: inline-grid;
  place-items: center;
  font-size: 1.35rem;
  transition: transform 0.3s ease, background 0.3s ease, border-color 0.3s ease;
}

.portfolio-nav-btn:hover {
  transform: translateY(-2px);
  background: #ffffff;
  border-color: rgba(177, 122, 66, 0.34);
}

.story-panel {
  background: #fcfaf6;
}

.story-visual img {
  width: 100%;
  height: 640px;
  object-fit: cover;
  border-radius: 34px;
  box-shadow: var(--shadow-card);
}

.story-feature-list {
  display: grid;
  gap: 18px;
  margin-top: 32px;
}

.story-feature-item {
  padding: 22px 0;
  border-top: 1px solid rgba(22, 19, 15, 0.1);
}

.story-feature-item strong {
  display: block;
  margin-bottom: 6px;
  font-family: "Cormorant Garamond", serif;
  font-size: 1.7rem;
}

.story-feature-item span {
  color: var(--color-muted);
}

.figures-section {
  background: linear-gradient(180deg, #f2eadf 0%, #f8f3ec 100%);
}

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

.figure-card {
  min-height: 240px;
  padding: 32px 28px;
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.88);
  box-shadow: var(--shadow-soft);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.figure-card h3 {
  font-size: 1.8rem;
  margin: 0;
}

.journal-section {
  background: #fcfaf6;
}

.journal-feature {
  height: 100%;
  border-radius: 30px;
  overflow: hidden;
  background: rgba(255, 252, 246, 0.96);
  box-shadow: var(--shadow-soft);
}

.journal-feature img {
  width: 100%;
  height: 520px;
  object-fit: cover;
}

.journal-feature-body {
  padding: 28px;
}

.journal-meta {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--color-gold-deep);
  font-size: 0.74rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  font-weight: 800;
}

.journal-feature h3,
.journal-item h3 {
  font-size: 2rem;
  margin-bottom: 12px;
}

.journal-list {
  display: grid;
  gap: 18px;
}

.journal-item {
  padding: 28px 30px;
  border-radius: 28px;
  background: rgba(255, 252, 246, 0.92);
  box-shadow: var(--shadow-soft);
}

.journal-item p {
  margin: 0;
  color: var(--color-muted);
}

.cta-shell {
  padding: 54px 56px;
  border-radius: 34px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(255, 255, 255, 0.04);
}

.footer-top {
  padding-bottom: 42px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-brand-lockup {
  color: var(--color-white);
}

.footer-brand-lockup.logo-brand img {
  width: min(220px, 74vw);
  max-height: 50px;
}

.footer-shell .brand-mark {
  border-color: rgba(255, 255, 255, 0.16);
}

@media (max-width: 1199px) {
  .home-hero-inner {
    padding-top: 170px;
    padding-bottom: 230px;
  }

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

  .intro-showcase-media {
    grid-template-columns: 1fr;
    height: auto;
  }

  .intro-showcase-copy {
    padding-left: 0;
  }

  .service-circle-card {
    width: min(100%, 300px);
  }
}

@media (max-width: 991px) {
  .navbar-brand {
    font-size: 1.1rem;
  }

  .nav-actions {
    gap: 18px;
  }

  .home-hero-inner {
    padding-top: 130px;
    padding-bottom: 40px;
  }

  .hero-aside {
    margin-top: 8px;
  }

  .hero-bottom-strip {
    position: static;
  }

  .home-hero-indicators {
    bottom: 26px;
  }

  .home-hero-control {
    display: none;
  }

  .hero-bottom-grid,
  .figures-grid {
    grid-template-columns: 1fr;
  }

  .hero-bottom-item {
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  }

  .hero-bottom-item:last-child {
    border-bottom: 0;
  }

  .intro-showcase-media {
    grid-template-columns: 1fr;
  }

  .intro-showcase-main {
    height: 420px;
    min-height: 0;
  }

  .intro-showcase-copy {
    padding-left: 0;
    height: auto;
  }

  .intro-advantage-box {
    padding-left: 28px;
  }

  .service-circle-card {
    border-radius: 28px;
    padding: 30px 22px;
    max-width: 100%;
    width: 100%;
    aspect-ratio: auto;
  }

  .story-visual img,
  .journal-feature img {
    height: 420px;
  }

  .life-testimonial {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .life-testimonial-nav {
    display: none;
  }

  .portfolio-video-stage {
    min-height: 560px;
  }

  .portfolio-video-card {
    width: min(31.5vw, 420px);
  }

  .portfolio-video-card.is-prev {
    transform: translateX(0) translateY(0) scale(1);
  }

  .portfolio-video-card.is-next {
    transform: translateX(-100%) translateY(0) scale(1);
  }

  .portfolio-video-meta {
    margin-top: 22px;
  }

  .cta-shell {
    padding: 40px 28px;
  }
}

@media (max-width: 767px) {
  .container-wide {
    width: min(100% - 24px, 1320px);
  }

  .premium-nav {
    min-height: 62px;
  }

  .navbar-brand:not(.logo-brand) > span:last-child {
    display: none;
  }

  .logo-brand img {
    width: clamp(132px, 40vw, 190px);
    max-height: 46px;
  }

  .brand-mark {
    width: 42px;
    height: 42px;
  }

  .nav-actions {
    gap: 14px;
  }

  .theme-toggle,
  .menu-trigger {
    font-size: 0.88rem;
  }

  .theme-toggle {
    gap: 9px;
  }

  .menu-trigger {
    gap: 12px;
  }

  .site-menu-drawer {
    padding: 24px;
  }

  .home-hero {
    min-height: auto;
  }

  .home-hero-inner {
    padding-top: 118px;
    padding-bottom: 28px;
  }

  .home-hero .hero-title {
    max-width: 100%;
    font-size: clamp(3rem, 13vw, 4.6rem);
  }

  .home-intro .section-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    line-height: 1.08;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .hero-actions a,
  .nav-cta,
  .theme-toggle {
    justify-content: center;
  }

  .home-hero-indicators {
    gap: 8px;
  }

  .home-hero-indicators [data-bs-target] {
    width: 28px;
  }

  .hero-aside {
    padding: 26px 22px;
  }

  .intro-signature-grid {
    grid-template-columns: 1fr;
  }

  .intro-showcase-media {
    gap: 18px;
  }

  .project-showcase-image img,
  .story-visual img,
  .journal-feature img {
    height: 320px;
  }

  .life-testimonial-section {
    padding: 72px 0 84px;
  }

  .life-testimonial-content p {
    margin-bottom: 38px;
  }

  .life-testimonial-author {
    width: 100%;
  }

  .contact-inquiry-section .contact-inquiry-column > .section-title {
    min-height: 0;
  }

  .contact-inquiry-section .content-card,
  .contact-inquiry-section .embed-map,
  .contact-inquiry-section .embed-map iframe {
    min-height: 420px;
  }

  .portfolio-slider-header {
    margin-bottom: 30px;
  }

  .portfolio-video-stage {
    min-height: 0;
    display: grid;
    gap: 18px;
  }

  .portfolio-video-card,
  .portfolio-video-card.is-active,
  .portfolio-video-card.is-prev,
  .portfolio-video-card.is-next {
    position: relative;
    top: auto;
    left: auto;
    width: 100%;
    opacity: 1;
    filter: none;
    transform: none;
  }

  .portfolio-video-card:not(.is-active) {
    display: none;
  }

  .portfolio-video-media {
    border-radius: 24px;
  }

  .portfolio-card-info {
    position: static;
    width: 100%;
    margin-top: -2px;
    border-bottom-left-radius: 24px;
    border-bottom-right-radius: 24px;
    box-shadow: 0 18px 40px rgba(40, 27, 12, 0.08);
  }

  .portfolio-video-label,
  .portfolio-video-card.is-prev .portfolio-video-label,
  .portfolio-video-card.is-next .portfolio-video-label {
    font-size: clamp(1.7rem, 8vw, 2.4rem);
  }

  .portfolio-video-meta {
    margin-top: 24px;
    justify-content: center;
  }

  .intro-showcase-side {
    gap: 18px;
  }

  .intro-showcase-main {
    height: 320px;
  }

  .intro-showcase-image-sm,
  .intro-showcase-image-lg {
    height: 220px;
  }

  .home-intro .section-title {
    font-size: clamp(2.5rem, 10vw, 3.5rem);
    max-width: 100%;
  }

  .intro-advantage-box {
    padding-left: 0;
    border-left: 0;
    border-top: 1px solid rgba(22, 19, 15, 0.14);
    padding-top: 24px;
  }

  .intro-cta-row {
    align-items: flex-start;
    gap: 24px;
  }

  .intro-cta-link {
    width: 100%;
    justify-content: space-between;
  }

  .service-icon {
    width: 64px;
    height: 64px;
    font-size: 1.7rem;
  }

  .project-showcase-body,
  .journal-feature-body,
  .journal-item,
  .figure-card,
  .signature-card {
    padding: 22px;
  }

  .cta-shell {
    padding: 32px 22px;
  }
}

@media (max-width: 575px) {
  .logo-brand img {
    width: clamp(112px, 34vw, 150px);
    max-height: 40px;
  }

  .nav-actions {
    gap: 12px;
  }

  .theme-toggle,
  .menu-trigger {
    font-size: 0.78rem;
  }

  .theme-toggle {
    gap: 8px;
  }

  .theme-toggle > span:first-child {
    display: none;
  }

  .menu-trigger {
    gap: 10px;
  }

  .menu-trigger-lines {
    width: 26px;
  }
}

body[data-theme="dark"] {
  --color-ink: #f3ede4;
  --color-ink-soft: #e6d9ca;
  --color-paper: #11100f;
  --color-paper-alt: #191715;
  --color-muted: #b7aea3;
  --color-line: rgba(255, 255, 255, 0.12);
  --shadow-soft: 0 22px 55px rgba(0, 0, 0, 0.28);
  --shadow-card: 0 26px 48px rgba(0, 0, 0, 0.3);
  background:
    radial-gradient(circle at top left, rgba(175, 139, 87, 0.12), transparent 28%),
    linear-gradient(180deg, #121110 0%, #171513 48%, #0f0e0d 100%);
}

body[data-theme="dark"] ::selection {
  color: #11100f;
  background: #f0d6ab;
}

body[data-theme="dark"] .section-text,
body[data-theme="dark"] .text-muted-custom,
body[data-theme="dark"] .meta-list,
body[data-theme="dark"] .article-content p,
body[data-theme="dark"] .article-content li,
body[data-theme="dark"] .story-feature-item span,
body[data-theme="dark"] .project-location,
body[data-theme="dark"] .intro-gallery-copy p,
body[data-theme="dark"] .journal-item p,
body[data-theme="dark"] .footer-bottom,
body[data-theme="dark"] .logo-card,
body[data-theme="dark"] .business-tile,
body[data-theme="dark"] .timeline::before {
  color: var(--color-muted);
}

body[data-theme="dark"] .floating-panel,
body[data-theme="dark"] .content-card,
body[data-theme="dark"] .filter-box,
body[data-theme="dark"] .contact-card,
body[data-theme="dark"] .job-card,
body[data-theme="dark"] .news-card,
body[data-theme="dark"] .project-card,
body[data-theme="dark"] .stat-card,
body[data-theme="dark"] .testimonial-card,
body[data-theme="dark"] .benefit-card,
body[data-theme="dark"] .amenity-item,
body[data-theme="dark"] .policy-block,
body[data-theme="dark"] .logo-card,
body[data-theme="dark"] .business-tile,
body[data-theme="dark"] .project-showcase-card,
body[data-theme="dark"] .figure-card,
body[data-theme="dark"] .journal-feature,
body[data-theme="dark"] .journal-item,
body[data-theme="dark"] .intro-gallery-card,
body[data-theme="dark"] .source-box,
body[data-theme="dark"] .form-control,
body[data-theme="dark"] .form-select {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.08);
  color: var(--color-ink);
  box-shadow: var(--shadow-soft);
}

body[data-theme="dark"] .source-box {
  background: rgba(175, 139, 87, 0.1);
  border-color: rgba(175, 139, 87, 0.22);
}

body[data-theme="dark"] .premium-btn-outline {
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.06);
}

body[data-theme="dark"] .premium-btn-outline:hover {
  color: #13110f;
  background: var(--color-white);
  border-color: var(--color-white);
}

body[data-theme="dark"] .filter-chip,
body[data-theme="dark"] .filter-btn {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.06);
  color: var(--color-white);
}

body[data-theme="dark"] .filter-chip.active,
body[data-theme="dark"] .filter-btn.active,
body[data-theme="dark"] .filter-chip:hover,
body[data-theme="dark"] .filter-btn:hover {
  background: var(--color-white);
  color: #151310;
  border-color: var(--color-white);
}

body[data-theme="dark"] .navbar-shell.scrolled {
  background: rgba(8, 8, 8, 0.9);
}

body[data-theme="dark"] .navbar-shell.scrolled .navbar-brand,
body[data-theme="dark"] .navbar-shell.scrolled .navbar .dropdown-toggle.show {
  color: var(--color-white) !important;
}

body[data-theme="dark"] .home-intro,
body[data-theme="dark"] .project-curation,
body[data-theme="dark"] .story-panel,
body[data-theme="dark"] .figures-section,
body[data-theme="dark"] .journal-section,
body[data-theme="dark"] .standards-band {
  background:
    radial-gradient(circle at top right, rgba(175, 139, 87, 0.12), transparent 30%),
    linear-gradient(180deg, #141210 0%, #191715 100%);
}

body[data-theme="dark"] .portfolio-video-media {
  background: #080808;
}

body[data-theme="dark"] .portfolio-slider-header .section-title,
body[data-theme="dark"] .portfolio-heading-eyebrow {
  color: #f6f0e9;
}

body[data-theme="dark"] .portfolio-heading-eyebrow::before {
  background: rgba(246, 240, 233, 0.85);
}

body[data-theme="dark"] .portfolio-card-info {
  background: rgba(26, 22, 18, 0.96);
}

body[data-theme="dark"] .portfolio-video-label {
  color: #f6f0e9;
}

body[data-theme="dark"] .portfolio-nav-btn {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.05);
  color: #f6f0e9;
}

body[data-theme="dark"] .portfolio-nav-btn:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.24);
}

body[data-theme="dark"] .signature-band,
body[data-theme="dark"] .value-band,
body[data-theme="dark"] .cta-band,
body[data-theme="dark"] .dark-panel,
body[data-theme="dark"] .footer-shell {
  background:
    radial-gradient(circle at top right, rgba(175, 139, 87, 0.12), transparent 28%),
    linear-gradient(180deg, #0f0e0d 0%, #161412 100%);
}

body[data-theme="dark"] .hero-bottom-strip,
body[data-theme="dark"] .glass-strip,
body[data-theme="dark"] .hero-aside,
body[data-theme="dark"] .cta-shell {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(255, 255, 255, 0.1);
}

body[data-theme="dark"] .project-status,
body[data-theme="dark"] .nav-cta {
  background: rgba(255, 255, 255, 0.92);
  color: #121110;
  border-color: rgba(255, 255, 255, 0.92);
}

body[data-theme="dark"] .nav-cta:hover {
  color: #121110;
}

body[data-theme="dark"] .icon-badge {
  background: linear-gradient(135deg, rgba(175, 139, 87, 0.26), rgba(255, 255, 255, 0.08));
  color: #f2d7a8;
}

body[data-theme="dark"] .intro-gallery-copy span,
body[data-theme="dark"] .journal-meta,
body[data-theme="dark"] .eyebrow,
body[data-theme="dark"] .stat-number,
body[data-theme="dark"] .quote-mark,
body[data-theme="dark"] .hero-bottom-item span {
  color: #e2b56f;
}

body[data-theme="dark"] .eyebrow::before,
body[data-theme="dark"] .light-eyebrow::before {
  background: rgba(226, 181, 111, 0.38);
}

body[data-theme="dark"] .visual-stack .secondary-image {
  border-color: rgba(26, 24, 22, 0.96);
}

body[data-theme="dark"] .map-frame,
body[data-theme="dark"] .embed-map iframe {
  box-shadow: var(--shadow-soft);
}

body[data-theme="dark"] .intro-kicker,
body[data-theme="dark"] .intro-kicker::before {
  color: #e2b56f;
}

body[data-theme="dark"] .intro-kicker::before {
  background: rgba(226, 181, 111, 0.42);
}

body[data-theme="dark"] .intro-showcase-text,
body[data-theme="dark"] .intro-signature span {
  color: var(--color-muted);
}

body[data-theme="dark"] .intro-showcase-image,
body[data-theme="dark"] .intro-showcase-main {
  background: rgba(255, 255, 255, 0.04);
}

body[data-theme="dark"] .intro-advantage-box {
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-theme="dark"] .intro-advantage-list li,
body[data-theme="dark"] .intro-signature strong {
  color: var(--color-ink);
}

body[data-theme="dark"] .intro-cta-link {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
}

body[data-theme="dark"] .intro-cta-link span {
  background: #bb8f5b;
  color: var(--color-white);
}

body[data-theme="dark"] .signature-band {
  background: #11100f;
}

body[data-theme="dark"] .signature-band .section-title,
body[data-theme="dark"] .signature-kicker,
body[data-theme="dark"] .service-circle-card h3,
body[data-theme="dark"] .service-circle-card p,
body[data-theme="dark"] .service-icon {
  color: var(--color-ink);
}

body[data-theme="dark"] .signature-kicker::before {
  background: rgba(226, 181, 111, 0.4);
}

body[data-theme="dark"] .service-circle-card {
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: var(--shadow-soft);
}

body[data-theme="dark"] .service-icon {
  background: rgba(255, 255, 255, 0.08);
}

body[data-page="careers"] #application .eyebrow {
  color: #e2b56f;
}

body[data-page="careers"] #application .section-title {
  color: var(--color-white);
}

body[data-page="careers"] #application .section-text {
  color: rgba(255, 255, 255, 0.78);
}

body[data-page="careers"] #application .content-card {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

body[data-page="careers"] #application .form-control,
body[data-page="careers"] #application .form-select,
body[data-theme="dark"][data-page="careers"] #application .form-control,
body[data-theme="dark"][data-page="careers"] #application .form-select {
  background-color: transparent;
  border-color: rgba(255, 255, 255, 0.18);
  color: var(--color-white);
}

body[data-page="careers"] #application .form-control::placeholder,
body[data-theme="dark"][data-page="careers"] #application .form-control::placeholder {
  color: rgba(255, 255, 255, 0.52);
  opacity: 1;
}

body[data-page="careers"] #application .form-select,
body[data-theme="dark"][data-page="careers"] #application .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%23ffffff' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

body[data-page="careers"] #application .form-control:focus,
body[data-page="careers"] #application .form-select:focus,
body[data-theme="dark"][data-page="careers"] #application .form-control:focus,
body[data-theme="dark"][data-page="careers"] #application .form-select:focus {
  background-color: rgba(255, 255, 255, 0.06);
  border-color: rgba(196, 154, 87, 0.9);
  color: var(--color-white);
}

/* Theme normalization: keep custom dark sections/forms readable in both modes. */
body[data-theme="light"] {
  --color-ink: #16130f;
  --color-ink-soft: #2a241e;
  --color-paper: #f5f0e8;
  --color-paper-alt: #ece3d6;
  --color-muted: #6f665d;
  --color-line: rgba(22, 19, 15, 0.1);
  --shadow-soft: 0 22px 55px rgba(27, 20, 13, 0.08);
  --shadow-card: 0 26px 48px rgba(27, 20, 13, 0.14);
  background:
    radial-gradient(circle at top left, rgba(175, 139, 87, 0.08), transparent 28%),
    linear-gradient(180deg, #fbf8f2 0%, #f5f0e8 42%, #f1e8dc 100%);
  color: var(--color-ink);
}

body[data-theme="light"] .dark-panel,
body[data-theme="light"] .team-scroll-section,
body[data-theme="light"] .life-testimonial-section,
body[data-theme="light"] .signature-band,
body[data-theme="light"] .value-band,
body[data-theme="light"] .cta-band {
  background:
    radial-gradient(circle at top right, rgba(175, 139, 87, 0.09), transparent 30%),
    linear-gradient(180deg, #fbf8f2 0%, #f1e8dc 100%);
  color: var(--color-ink);
}

body[data-theme="light"] .dark-panel .section-text,
body[data-theme="light"] .team-scroll-section .text-muted-custom,
body[data-theme="light"] .life-testimonial-content p,
body[data-theme="light"] .footer-shell p,
body[data-theme="light"] .footer-shell a {
  color: var(--color-muted);
}

body[data-theme="light"] .team-scroll-section .eyebrow,
body[data-theme="light"] .team-scroll-section .section-title,
body[data-theme="light"] .team-scroll-section .timeline-item h3,
body[data-theme="light"] .life-testimonial-quote,
body[data-theme="light"] .life-testimonial-author strong {
  color: var(--color-ink);
}

body[data-theme="light"] .team-scroll-section .timeline::before,
body[data-theme="light"] .life-testimonial-author::before {
  background: rgba(22, 19, 15, 0.14);
}

body[data-theme="light"] .life-testimonial-author > span:last-child {
  background: #ffffff;
  border-color: rgba(22, 19, 15, 0.1);
}

body[data-theme="light"] .life-testimonial-author small {
  color: var(--color-muted);
}

body[data-theme="light"] .life-testimonial-nav {
  background: rgba(22, 19, 15, 0.06);
}

body[data-theme="light"] .life-testimonial-nav:hover {
  background: rgba(22, 19, 15, 0.1);
}

body[data-theme="light"] .floating-panel,
body[data-theme="light"] .content-card,
body[data-theme="light"] .contact-card,
body[data-theme="light"] .job-card,
body[data-theme="light"] .news-card,
body[data-theme="light"] .project-card,
body[data-theme="light"] .stat-card,
body[data-theme="light"] .testimonial-card,
body[data-theme="light"] .benefit-card,
body[data-theme="light"] .amenity-item,
body[data-theme="light"] .policy-block,
body[data-theme="light"] .logo-card,
body[data-theme="light"] .business-tile,
body[data-theme="light"] .project-showcase-card,
body[data-theme="light"] .figure-card,
body[data-theme="light"] .journal-feature,
body[data-theme="light"] .journal-item,
body[data-theme="light"] .intro-gallery-card,
body[data-theme="light"] .source-box {
  background: rgba(255, 252, 246, 0.92);
  border-color: rgba(123, 98, 68, 0.12);
  color: var(--color-ink);
}

body[data-theme="light"] .floating-panel.text-white,
body[data-theme="light"] .floating-panel.text-white h3,
body[data-theme="light"] .floating-panel.text-white .section-text {
  color: var(--color-ink) !important;
}

body[data-theme="light"] .floating-panel.text-white .text-muted-custom {
  color: var(--color-muted) !important;
}

body[data-theme="light"] .form-control,
body[data-theme="light"] .form-select {
  background-color: rgba(255, 252, 246, 0.92);
  border-color: rgba(22, 19, 15, 0.12);
  color: var(--color-ink);
}

body[data-theme="light"] .form-control::placeholder {
  color: rgba(22, 19, 15, 0.48);
  opacity: 1;
}

body[data-theme="light"] .form-select {
  --bs-form-select-bg-img: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'%3e%3cpath fill='none' stroke='%2316130f' stroke-linecap='round' stroke-linejoin='round' stroke-width='2' d='m2 5 6 6 6-6'/%3e%3c/svg%3e");
}

body[data-theme="light"] .form-control:focus,
body[data-theme="light"] .form-select:focus {
  background-color: #ffffff;
  color: var(--color-ink);
  border-color: rgba(184, 148, 95, 0.56);
}

body[data-theme="light"] .contact-inquiry-section .form-control,
body[data-theme="light"] .contact-inquiry-section .form-select,
body[data-theme="light"][data-page="careers"] #application .form-control,
body[data-theme="light"][data-page="careers"] #application .form-select {
  background-color: rgba(255, 252, 246, 0.9);
  border-color: rgba(22, 19, 15, 0.12);
  color: var(--color-ink);
}

body[data-theme="light"] .contact-inquiry-section .form-control::placeholder,
body[data-theme="light"][data-page="careers"] #application .form-control::placeholder {
  color: rgba(22, 19, 15, 0.48);
}

body[data-theme="light"] .contact-inquiry-section .form-control:focus,
body[data-theme="light"] .contact-inquiry-section .form-select:focus,
body[data-theme="light"][data-page="careers"] #application .form-control:focus,
body[data-theme="light"][data-page="careers"] #application .form-select:focus {
  background-color: #ffffff;
  color: var(--color-ink);
}

body[data-theme="light"][data-page="careers"] #application .eyebrow {
  color: var(--color-gold-deep);
}

body[data-theme="light"][data-page="careers"] #application .section-title {
  color: var(--color-ink);
}

body[data-theme="light"][data-page="careers"] #application .section-text {
  color: var(--color-muted);
}

body[data-theme="light"][data-page="careers"] #application .content-card {
  background: rgba(255, 252, 246, 0.92);
  border-color: rgba(123, 98, 68, 0.12);
}

body[data-theme="dark"] .form-control::placeholder {
  color: rgba(255, 255, 255, 0.48);
  opacity: 1;
}

body[data-theme="dark"] .form-select option {
  background: #171513;
  color: #f3ede4;
}

.page-hero .page-hero-animate,
.page-hero .about-hero-animate {
  opacity: 1;
  transform: translateY(0);
  filter: blur(0);
}
