/*
Theme Name: DOJA Developments
Theme URI: https://dojadevelopments.com/
Author: DOJA Developments
Description: Premium multi-page WordPress theme for DOJA Developments.
Version: 3.0.0
Requires at least: 6.0
Tested up to: 6.5
Requires PHP: 7.4
Text Domain: doja-developments
*/

:root {
  --ivory: #eae7de;
  --warm-ivory: #f4efe5;
  --charcoal: #11100e;
  --charcoal-2: #191714;
  --bronze: #c9792f;
  --bronze-dark: #8f4c1f;
  --black: #000000;
  --soft-ink: rgba(0, 0, 0, 0.64);
  --muted: rgba(0, 0, 0, 0.48);
  --line: rgba(0, 0, 0, 0.12);
  --line-light: rgba(234, 231, 222, 0.22);
  --white-soft: rgba(234, 231, 222, 0.84);
  --max: 1180px;
  --wide: 1480px;
  --radius: 28px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--black);
  background: var(--ivory);
  font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
  line-height: 1.5;
  text-rendering: optimizeLegibility;
}

body.menu-open {
  overflow: hidden;
}

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

.screen-reader-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
}

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

button,
input,
select,
textarea {
  font: inherit;
}

h1,
h2,
h3,
p,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3 {
  letter-spacing: -0.055em;
  line-height: 0.96;
}

p {
  color: var(--soft-ink);
}

.site-header {
  position: fixed;
  inset: 18px 16px auto;
  z-index: 50;
}

.nav {
  position: relative;
  min-height: 118px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  width: min(100%, var(--wide));
  margin-inline: auto;
  padding: 18px 20px 18px 34px;
  border: 1px solid rgba(234, 231, 222, 0.28);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.1);
  backdrop-filter: blur(30px) saturate(140%);
  box-shadow:
    0 24px 90px rgba(0, 0, 0, 0.28),
    inset 0 1px 0 rgba(234, 231, 222, 0.18),
    inset 0 -1px 0 rgba(234, 231, 222, 0.08);
}

.nav::after {
  content: none;
}

.brand img {
  width: 310px;
  height: 96px;
  object-fit: contain;
  object-position: left center;
}

.menu-toggle {
  position: relative;
  width: 66px;
  height: 66px;
  border: 1px solid rgba(234, 231, 222, 0.3);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--black);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(234, 231, 222, 0.62), 0 12px 36px rgba(0, 0, 0, 0.22);
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.menu-toggle:hover,
.menu-toggle:focus-visible {
  transform: scale(1.04);
  outline: 0;
}

.menu-toggle span {
  position: absolute;
  left: 50%;
  top: 50%;
  width: 22px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transform: translate(-50%, -50%);
  transition: transform 220ms var(--ease);
}

.menu-toggle span:first-child {
  transform: translate(-50%, calc(-50% - 5px));
}

.menu-toggle span:last-child {
  transform: translate(-50%, calc(-50% + 5px));
}

.menu-open .menu-toggle span:first-child {
  transform: translate(-50%, -50%) rotate(45deg);
}

.menu-open .menu-toggle span:last-child {
  transform: translate(-50%, -50%) rotate(-45deg);
}

.nav-panel {
  position: fixed;
  inset: 104px 18px auto;
  display: none;
  padding: 24px;
  border-radius: 28px;
  border: 1px solid rgba(234, 231, 222, 0.16);
  background: rgba(0, 0, 0, 0.92);
  color: var(--ivory);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.nav-panel.is-open {
  display: grid;
  gap: 16px;
}

.primary-menu,
.footer-menu {
  margin: 0;
  padding: 0;
  list-style: none;
}

.primary-menu {
  display: grid;
  gap: 16px;
}

.primary-menu li,
.footer-menu li {
  margin: 0;
  padding: 0;
  list-style: none;
}

.nav-panel a {
  color: var(--ivory);
  font-size: 14px;
  font-weight: 200;
  letter-spacing: 0.02em;
  opacity: 0.78;
  transition: opacity 200ms var(--ease), transform 200ms var(--ease);
}

.nav-panel a:hover,
.nav-panel a:focus-visible {
  opacity: 1;
  transform: translateY(-1px);
  outline: 0;
}

.nav-button,
.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: fit-content;
  padding: 0 20px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  transition: transform 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease);
}

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

.nav-button,
.button-light {
  background: var(--ivory);
  color: var(--black) !important;
}

.nav-button {
  min-height: 50px;
  padding-inline: 22px;
  opacity: 1 !important;
}

.button-dark {
  border: 1px solid var(--black);
  background: var(--black);
  color: var(--ivory);
}

.button-outline-light {
  border: 1px solid var(--line-light);
  color: var(--ivory);
}

.hero,
.cinematic-section {
  position: relative;
  overflow: hidden;
  color: var(--ivory);
  background: var(--black);
}

.hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 132px 22px 76px;
}

.hero-image,
.hero-video,
.cinematic-section > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image,
.cinematic-section > img {
  object-fit: cover;
  opacity: 0.72;
}

.hero-video {
  overflow: hidden;
  background: var(--black);
  opacity: 0.72;
}

.hero-video iframe {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100vw;
  height: 177.78vw;
  min-width: 56.25svh;
  min-height: 100svh;
  border: 0;
  pointer-events: none;
  transform: translate(-50%, -50%);
}

.hero-shade,
.cinematic-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.25) 56%, rgba(0, 0, 0, 0.08)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.04) 56%);
}

.hero-inner,
.cinematic-section > div {
  position: relative;
  z-index: 1;
  width: min(100%, var(--wide));
  margin-inline: auto;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: currentColor;
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(54px, 12vw, 152px);
  font-weight: 850;
}

.hero p {
  max-width: 720px;
  color: var(--white-soft);
  font-size: clamp(18px, 2.2vw, 28px);
}

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

.section {
  padding: 84px 22px;
}

.section-grid,
.section-heading,
.project-grid,
.contact-layout,
.page-content,
.detail-grid,
.footer-inner {
  width: min(100%, var(--max));
  margin-inline: auto;
}

.section-grid {
  display: grid;
  gap: 30px;
}

.section-label {
  color: var(--muted);
}

.section-copy h2,
.section-heading h2,
.page-hero h1,
.contact-cta h2,
.investment-cta h2 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(42px, 7vw, 92px);
  font-weight: 820;
}

.section-copy p,
.section-heading p,
.page-hero p {
  max-width: 760px;
  font-size: clamp(18px, 1.7vw, 23px);
}

.intro-section {
  background: var(--ivory);
}

.foundation-section {
  min-height: 100svh;
  display: grid;
  align-content: space-between;
  gap: 72px;
  padding: 72px 22px 82px;
  border-top: 1px solid rgba(0, 0, 0, 0.06);
  background: var(--ivory);
}

.foundation-head {
  width: min(100%, var(--wide));
  margin-inline: auto;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 24px;
}

.foundation-head span,
.foundation-section::after {
  color: var(--black);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: -0.02em;
  text-transform: uppercase;
}

.foundation-section > h2 {
  width: min(100%, var(--wide));
  max-width: 930px;
  margin: 0 auto;
  justify-self: start;
  font-size: clamp(46px, 7vw, 86px);
  font-weight: 820;
  line-height: 1.02;
  letter-spacing: -0.055em;
}

.foundation-grid {
  width: min(100%, var(--wide));
  margin-inline: auto;
  display: grid;
  gap: 24px;
}

.foundation-card {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 34px;
  border-radius: 22px;
  background: rgba(234, 231, 222, 0.54);
  color: var(--black);
}

.foundation-card:first-child {
  background: rgba(0, 0, 0, 0.06);
}

.foundation-card-dark {
  background: var(--black);
  color: var(--ivory);
}

.foundation-card h3 {
  margin-bottom: 30px;
  font-size: clamp(28px, 3vw, 42px);
  font-weight: 820;
}

.foundation-card p {
  max-width: 560px;
  margin: 0;
  color: currentColor;
  font-size: clamp(22px, 2.3vw, 33px);
  font-weight: 800;
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.projects-section,
.why-section,
.partners-section {
  border-top: 1px solid var(--line);
}

.projects-section {
  background: var(--black);
  color: var(--ivory);
  border-top-color: var(--black);
}

.projects-section .section-heading h2,
.projects-section .section-heading .eyebrow {
  color: var(--ivory);
}

.project-carousel {
  position: relative;
}

.project-grid {
  display: flex;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.project-grid::-webkit-scrollbar {
  display: none;
}

.project-card {
  flex: 0 0 min(86vw, 540px);
  aspect-ratio: 1 / 1;
  min-height: 0;
  overflow: hidden;
  border-radius: 28px;
  background: var(--black);
  color: var(--ivory);
  scroll-snap-align: start;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.22);
}

.project-card a {
  position: relative;
  display: block;
  height: 100%;
}

.project-card figure {
  position: absolute;
  inset: 0;
  margin: 0;
  height: 100%;
  overflow: hidden;
}

.project-card figure::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 58%;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.72) 54%, var(--black) 100%);
  pointer-events: none;
  z-index: 2;
}

.project-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transform: scale(1.02);
  transition: transform 900ms var(--ease), opacity 900ms var(--ease);
}

.project-card img.is-active {
  opacity: 0.9;
  z-index: 1;
}

.project-card:hover img.is-active {
  transform: scale(1.045);
  opacity: 1;
}

.project-price-badge,
.project-counter {
  display: none;
  position: absolute;
  z-index: 4;
  border: 1px solid rgba(234, 231, 222, 0.28);
  background: rgba(234, 231, 222, 0.14);
  color: var(--ivory);
  backdrop-filter: blur(18px) saturate(140%);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.project-price-badge {
  top: 18px;
  left: 18px;
  gap: 2px;
  padding: 12px 14px;
  border-radius: 18px;
}

.project-price-badge small {
  color: rgba(234, 231, 222, 0.76);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-price-badge strong {
  font-size: 17px;
  line-height: 1;
}

.project-counter {
  top: 18px;
  right: 18px;
  min-width: 48px;
  min-height: 36px;
  display: grid;
  place-items: center;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 850;
}

.project-info {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  padding: 32px 86px 30px 28px;
  background: linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.82) 28%, var(--black) 100%);
}

.project-info h3 {
  margin-bottom: 6px;
  font-size: clamp(34px, 6vw, 56px);
  text-transform: uppercase;
}

.project-info small {
  display: block;
  color: rgba(234, 231, 222, 0.68);
  font-size: 15px;
}

.project-card-arrow {
  position: absolute;
  right: 22px;
  bottom: 26px;
  z-index: 4;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 231, 222, 0.34);
  border-radius: 50%;
  background: rgba(234, 231, 222, 0.14);
  color: var(--ivory);
  font-size: 24px;
  backdrop-filter: blur(16px);
  transition: transform 240ms var(--ease), background 240ms var(--ease);
}

.project-card:hover .project-card-arrow,
.project-card a:focus-visible .project-card-arrow {
  transform: translate(4px, -4px);
  background: var(--ivory);
  color: var(--black);
}

.project-card a:focus-visible {
  outline: 2px solid var(--ivory);
  outline-offset: -6px;
  border-radius: inherit;
}

.carousel-control {
  position: absolute;
  top: 50%;
  z-index: 3;
  width: 54px;
  height: 54px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(234, 231, 222, 0.34);
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.78);
  color: var(--ivory);
  cursor: pointer;
  font-size: 22px;
  transform: translateY(-50%);
  transition: transform 220ms var(--ease), background 220ms var(--ease);
}

.carousel-control:hover,
.carousel-control:focus-visible {
  background: var(--black);
  transform: translateY(-50%) scale(1.06);
  outline: 0;
}

.carousel-control:disabled {
  opacity: 0.28;
  cursor: default;
  pointer-events: none;
}

.carousel-control-prev {
  left: 16px;
}

.carousel-control-next {
  right: 16px;
}

.principle-grid,
.logo-wall,
.location-grid,
.insight-grid,
.learn-card-grid.compact {
  display: grid;
  gap: 12px;
}

.principle-grid article,
.location-grid article,
.insight-grid article,
.learn-card-grid.compact article,
.logo-wall span {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: rgba(234, 231, 222, 0.26);
}

.principle-grid span,
.insight-grid span {
  color: var(--muted);
  font-size: 12px;
  font-weight: 850;
}

.principle-grid h3,
.insight-grid h3 {
  margin-bottom: 0;
  font-size: 26px;
}

.leadership-section {
  padding-top: 96px;
}

.team-grid {
  width: min(100%, var(--max));
  margin: 34px auto 0;
  display: grid;
  gap: 26px;
}

.team-card {
  position: relative;
  min-height: 760px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--black);
  color: var(--ivory);
}

.team-card::after {
  content: "\2197";
  position: absolute;
  top: 18px;
  right: 18px;
  z-index: 3;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--ivory);
  color: var(--black);
  font-size: 31px;
  font-weight: 850;
}

.team-card figure {
  height: 100%;
  margin: 0;
}

.team-card img {
  width: 100%;
  height: 100%;
  min-height: 760px;
  object-fit: cover;
  object-position: center top;
}

.team-card div {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 2;
  padding: 38px 28px 30px;
  background: linear-gradient(180deg, transparent, rgba(0, 0, 0, 0.78));
  text-align: center;
}

.team-card h3 {
  margin-bottom: 8px;
  font-size: clamp(34px, 6vw, 54px);
}

.team-card p {
  margin: 0;
  color: rgba(234, 231, 222, 0.82);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

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

.logo-wall span {
  min-height: 112px;
  align-items: center;
  justify-content: center;
  color: var(--black);
  font-weight: 850;
  text-align: center;
}

.partner-carousel {
  position: relative;
}

.partner-carousel .logo-wall {
  display: flex;
  grid-template-columns: none;
  gap: 18px;
  overflow-x: auto;
  overflow-y: hidden;
  padding: 0 0 18px;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.partner-carousel .logo-wall::-webkit-scrollbar {
  display: none;
}

.partner-carousel .logo-wall span {
  flex: 0 0 min(72vw, 320px);
  min-height: 168px;
  position: relative;
  overflow: hidden;
  border-radius: 28px;
  background:
    linear-gradient(145deg, rgba(234, 231, 222, 0.92), rgba(234, 231, 222, 0.48)),
    rgba(0, 0, 0, 0.04);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.42);
  scroll-snap-align: start;
  transition: transform 260ms var(--ease), background 260ms var(--ease), color 260ms var(--ease);
}

.partner-carousel .logo-wall span::before {
  content: "Partner";
  margin-bottom: 18px;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.partner-carousel .logo-wall span:hover {
  transform: translateY(-4px);
  background: var(--black);
  color: var(--ivory);
}

.partner-carousel .logo-wall span:hover::before {
  color: rgba(234, 231, 222, 0.54);
}

.community-role {
  width: min(100%, var(--max));
  margin: clamp(34px, 5vw, 64px) auto 0;
  padding: clamp(28px, 5vw, 56px);
  border: 1px solid rgba(201, 121, 47, 0.28);
  border-radius: 30px;
  background:
    radial-gradient(circle at 100% 0, rgba(201, 121, 47, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(17, 16, 14, 0.96), rgba(25, 23, 20, 0.92));
  color: var(--ivory);
  box-shadow: 0 28px 90px rgba(0, 0, 0, 0.22);
}

.community-role h3 {
  max-width: 820px;
  margin-bottom: 20px;
  color: var(--ivory);
  font-size: clamp(34px, 5vw, 72px);
}

.community-role p:not(.eyebrow) {
  max-width: 920px;
  margin: 0;
  color: rgba(234, 231, 222, 0.74);
  font-size: clamp(17px, 1.7vw, 23px);
}

.investment-cta {
  width: min(calc(100% - 44px), var(--wide));
  min-height: 620px;
  display: grid;
  align-items: end;
  margin: 20px auto 90px;
  padding: 44px 28px;
  border-radius: var(--radius);
}

.investment-cta ul {
  display: grid;
  gap: 10px;
  max-width: 620px;
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
}

.investment-cta li {
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line-light);
  color: rgba(234, 231, 222, 0.78);
  font-weight: 750;
}

.contact-cta {
  width: min(calc(100% - 44px), var(--max));
  margin: 0 auto 90px;
  display: grid;
  gap: 24px;
  padding: 34px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: rgba(234, 231, 222, 0.34);
}

.page-hero {
  padding: 152px 22px 72px;
  border-bottom: 1px solid var(--line);
}

.page-hero > * {
  width: min(100%, var(--max));
  margin-left: auto;
  margin-right: auto;
}

.detail-media {
  width: min(calc(100% - 44px), var(--wide));
  margin: 36px auto 0;
  overflow: hidden;
  border-radius: var(--radius);
}

.detail-media img {
  width: 100%;
  max-height: 720px;
  object-fit: cover;
}

.contact-layout {
  display: grid;
  gap: 28px;
}

.contact-details {
  display: grid;
  gap: 12px;
  align-content: start;
  font-size: 22px;
}

.contact-details p {
  font-size: 18px;
}

.contact-form {
  display: grid;
  gap: 14px;
}

.contact-form label {
  display: grid;
  gap: 8px;
}

.contact-form span {
  color: var(--muted);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(234, 231, 222, 0.46);
  color: var(--black);
  outline: none;
  padding: 15px 16px;
}

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

.instagram-feed {
  padding: clamp(74px, 9vw, 118px) 6%;
  text-align: center;
  background:
    radial-gradient(circle at 50% 0%, rgba(255, 255, 255, 0.74), transparent 46%),
    #f7f3ec;
}

.doja-instagram-section {
  padding: 110px 20px;
  background: #f5f1e9;
  color: #111;
}

.doja-container {
  max-width: 1180px;
  margin: 0 auto;
  text-align: center;
}

.doja-eyebrow {
  margin-bottom: 16px;
  color: #6e6a63;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 8px;
  text-transform: uppercase;
}

.doja-instagram-section h2 {
  margin: 0;
  color: #050505;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.95;
}

.doja-subtitle {
  max-width: 760px;
  margin: 28px auto 54px;
  color: #4d4a45;
  font-size: clamp(18px, 2vw, 28px);
  line-height: 1.4;
}

.doja-instagram-feed {
  margin-top: 40px;
}

.doja-instagram-feed img,
.doja-instagram-feed video {
  border-radius: 24px;
}

.doja-instagram-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-top: 44px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #d97932;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 250ms var(--ease), background 250ms var(--ease), color 250ms var(--ease);
}

.doja-instagram-btn:hover,
.doja-instagram-btn:focus-visible {
  transform: translateY(-2px);
  background: #b95f22;
  color: #fff;
  outline: 0;
}

.instagram-feed-head {
  width: min(100%, 800px);
  margin: 0 auto clamp(34px, 5vw, 56px);
}

.ig-kicker {
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.58);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.42em;
  text-transform: uppercase;
}

.instagram-feed h2 {
  margin-bottom: 18px;
  color: var(--black);
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(46px, 6.2vw, 86px);
  font-weight: 400;
  line-height: 1;
  letter-spacing: -0.05em;
}

.ig-subtitle {
  width: min(100%, 640px);
  margin: 0 auto;
  color: rgba(0, 0, 0, 0.68);
  font-size: clamp(17px, 1.5vw, 22px);
}

.ig-grid {
  width: min(100%, var(--wide));
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr;
  gap: 22px;
}

.ig-dynamic-feed {
  width: min(100%, var(--wide));
  margin: 0 auto;
}

.ig-dynamic-feed .sbi,
.ig-dynamic-feed .spotlight-instagram-feed,
.ig-dynamic-feed [class*="spotlight"] {
  width: 100%;
}

.ig-dynamic-feed #sbi_images,
.ig-dynamic-feed .sbi_images,
.ig-dynamic-feed [class*="spotlight"] [class*="grid"] {
  display: grid !important;
  grid-template-columns: 1fr !important;
  gap: 22px !important;
}

.ig-dynamic-feed .sbi_item,
.ig-dynamic-feed [class*="spotlight"] article,
.ig-dynamic-feed [class*="spotlight"] a {
  overflow: hidden;
  border-radius: 18px !important;
  background: #fff;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
}

.ig-fallback-note {
  width: min(100%, 760px);
  margin: 0 auto 24px;
  padding: 16px 20px;
  border: 1px solid rgba(201, 121, 47, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.66);
  color: rgba(0, 0, 0, 0.62);
  font-size: 14px;
}

.ig-card {
  overflow: hidden;
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 18px;
  background: #ffffff;
  text-align: left;
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.08);
  transition: transform 260ms var(--ease), box-shadow 260ms var(--ease);
}

.ig-card:hover,
.ig-card:focus-within {
  transform: translateY(-4px);
  box-shadow: 0 22px 54px rgba(0, 0, 0, 0.12);
}

.ig-card a {
  display: block;
  height: 100%;
}

.ig-card figure {
  position: relative;
  height: 280px;
  margin: 0;
  overflow: hidden;
  background: var(--black);
}

.ig-card figure::after {
  content: "IG";
  position: absolute;
  top: 14px;
  right: 14px;
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.88);
  color: var(--black);
  font-size: 10px;
  font-weight: 850;
}

.ig-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 700ms var(--ease), opacity 700ms var(--ease);
}

.ig-card:hover img,
.ig-card:focus-within img {
  opacity: 0.94;
  transform: scale(1.045);
}

.ig-content {
  padding: 18px 20px 22px;
}

.ig-meta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  margin-bottom: 16px;
}

.ig-meta strong {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--black);
  font-size: 14px;
}

.ig-meta strong span,
.ig-button span:first-child {
  width: 24px;
  height: 24px;
  display: inline-grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-size: 9px;
  font-weight: 850;
}

.ig-meta time {
  color: var(--muted);
  font-size: 13px;
}

.ig-content p {
  margin-bottom: 8px;
  color: rgba(0, 0, 0, 0.72);
}

.ig-content small {
  color: var(--black);
  font-size: 14px;
  font-weight: 700;
}

.ig-button {
  width: fit-content;
  min-height: 62px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: clamp(34px, 4.4vw, 52px);
  padding: 0 32px;
  border-radius: 6px;
  background: var(--black);
  color: var(--ivory);
  font-weight: 800;
  box-shadow: 0 16px 44px rgba(0, 0, 0, 0.18);
  transition: transform 260ms var(--ease), background 260ms var(--ease);
}

.ig-button:hover,
.ig-button:focus-visible {
  transform: translateY(-2px);
  background: rgba(0, 0, 0, 0.88);
  outline: 0;
}

.doja-instagram-section h2 {
  margin: 0;
  color: #050505;
  font-family: inherit;
  font-size: clamp(42px, 6vw, 82px);
  font-weight: 600;
  line-height: 0.95;
  letter-spacing: 0;
}

.doja-instagram-section .doja-instagram-btn {
  min-height: auto;
  margin-top: 44px;
  padding: 16px 28px;
  border-radius: 999px;
  background: #d97932;
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  box-shadow: none;
}

.doja-instagram-section .doja-instagram-btn:hover,
.doja-instagram-section .doja-instagram-btn:focus-visible {
  transform: translateY(-2px);
  background: #b95f22;
  color: #fff;
}

.footer {
  padding: 58px 22px 112px;
  color: var(--ivory);
  background: var(--black);
}

.footer-inner {
  display: grid;
  gap: 22px;
}

.footer-brand {
  width: fit-content;
}

.footer-brand img {
  width: 150px;
  height: auto;
}

.footer p {
  max-width: 520px;
  color: rgba(234, 231, 222, 0.72);
}

.doja-socials {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 10px;
}

.doja-socials h3 {
  flex: 0 0 100%;
  margin: 0 0 4px;
  color: var(--ivory);
  font-size: 13px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.doja-socials a {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  color: rgba(234, 231, 222, 0.68);
  border: 1px solid rgba(234, 231, 222, 0.18);
  border-radius: 50%;
  transition: color 220ms var(--ease), border-color 220ms var(--ease), transform 220ms var(--ease);
}

.doja-socials a:hover,
.doja-socials a:focus-visible {
  color: var(--ivory);
  border-color: rgba(234, 231, 222, 0.54);
  transform: translateY(-2px);
  outline: 0;
}

.doja-socials span {
  color: currentColor;
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.04em;
}

.footer-links {
  display: block;
}

.footer-menu {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a,
.footer small {
  color: rgba(234, 231, 222, 0.62);
  font-size: 13px;
}

.mobile-cta {
  position: fixed;
  left: 12px;
  right: 12px;
  bottom: 12px;
  z-index: 55;
  min-height: 58px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(234, 231, 222, 0.94);
  backdrop-filter: blur(18px);
  box-shadow: 0 18px 46px rgba(0, 0, 0, 0.22);
}

.mobile-cta a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  border-right: 1px solid var(--line);
  color: var(--black);
  font-size: 13px;
  font-weight: 850;
}

.mobile-cta a:last-child {
  border-right: 0;
}

.mobile-cta img {
  width: 19px;
  height: 19px;
}

.doja-whatsapp-chat {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 9999;
  width: 72px;
  height: 72px;
  display: flex;
  align-items: center;
  justify-content: center;
  place-items: center;
  border: 0;
  border-radius: 50%;
  background: #111;
  color: #fff;
  text-decoration: none;
  box-shadow: 0 0 0 2px #333, 0 14px 35px rgba(0, 0, 0, 0.35);
  animation: whatsappPulse 2s infinite;
  transition: transform 240ms var(--ease), box-shadow 240ms var(--ease), background 240ms var(--ease);
}

.doja-whatsapp-chat::before {
  content: "";
  position: absolute;
  inset: -10px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 50%;
  animation: whatsappRing 2s infinite;
}

.doja-whatsapp-chat img {
  position: relative;
  z-index: 1;
  width: 36px;
  height: 36px;
  object-fit: contain;
  filter: invert(1);
  transition: transform 240ms var(--ease);
}

.doja-whatsapp-chat:hover,
.doja-whatsapp-chat:focus-visible {
  transform: scale(1.08);
  background: #25d366;
  box-shadow: 0 0 0 2px rgba(37, 211, 102, 0.36), 0 18px 44px rgba(0, 0, 0, 0.36);
  outline: 0;
}

.doja-whatsapp-chat:hover img,
.doja-whatsapp-chat:focus-visible img {
  transform: rotate(-8deg) scale(1.06);
}

@keyframes whatsappPulse {
  0%,
  100% {
    transform: scale(1);
  }

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

@keyframes whatsappRing {
  0% {
    opacity: 0.8;
    transform: scale(0.85);
  }

  100% {
    opacity: 0;
    transform: scale(1.35);
  }
}

.doja-chatbot[hidden] {
  display: none !important;
}

.doja-chatbot {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 70;
}

.doja-chatbot-toggle {
  position: relative;
  width: 74px;
  height: 74px;
  display: grid;
  place-items: center;
  padding: 0;
  border: 1px solid rgba(0, 0, 0, 0.18);
  border-radius: 50%;
  background: var(--ivory);
  color: var(--black);
  cursor: pointer;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3), inset 0 0 0 8px rgba(0, 0, 0, 0.04);
  animation: dojaAssistantFloat 4.8s var(--ease) infinite;
  transition: transform 240ms var(--ease), background 240ms var(--ease), color 240ms var(--ease), box-shadow 240ms var(--ease);
}

.doja-chatbot-toggle::before {
  content: "";
  position: absolute;
  inset: -8px;
  border: 1px solid rgba(234, 231, 222, 0.42);
  border-radius: inherit;
  opacity: 0;
  transform: scale(0.82);
  animation: dojaAssistantPulse 3.2s var(--ease) infinite;
}

.doja-chatbot-toggle:hover,
.doja-chatbot-toggle:focus-visible {
  animation-play-state: paused;
  transform: translateY(-5px) scale(1.04);
  box-shadow: 0 26px 70px rgba(0, 0, 0, 0.36), inset 0 0 0 8px rgba(0, 0, 0, 0.06);
  outline: 0;
}

.doja-chatbot-toggle img {
  width: 34px;
  height: 34px;
  object-fit: contain;
  transition: transform 260ms var(--ease);
}

.doja-chatbot-toggle:hover img,
.doja-chatbot-toggle:focus-visible img {
  transform: rotate(-8deg) scale(1.08);
}

.doja-chatbot.is-open .doja-chatbot-toggle {
  animation-play-state: paused;
  transform: scale(0.96);
}

.doja-chatbot-panel {
  position: absolute;
  right: 0;
  bottom: 88px;
  width: min(370px, calc(100vw - 36px));
  overflow: hidden;
  border: 1px solid rgba(234, 231, 222, 0.18);
  border-radius: 28px;
  background: var(--black);
  color: var(--ivory);
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.34);
  opacity: 0;
  pointer-events: none;
  transform: translateY(12px) scale(0.98);
  transition: opacity 240ms var(--ease), transform 240ms var(--ease);
}

.doja-chatbot.is-open .doja-chatbot-panel {
  opacity: 1;
  pointer-events: auto;
  transform: translateY(0) scale(1);
}

.doja-chatbot-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px;
  border-bottom: 1px solid rgba(234, 231, 222, 0.16);
}

.doja-chatbot-head strong,
.doja-chatbot-head small {
  display: block;
}

.doja-chatbot-head strong {
  font-size: 16px;
}

.doja-chatbot-head small {
  margin-top: 3px;
  color: rgba(234, 231, 222, 0.62);
  font-size: 12px;
}

.doja-chatbot-close {
  width: 38px;
  height: 38px;
  border: 1px solid rgba(234, 231, 222, 0.18);
  border-radius: 50%;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-size: 24px;
  line-height: 1;
}

.doja-chatbot-messages {
  display: grid;
  gap: 10px;
  max-height: 300px;
  overflow-y: auto;
  padding: 18px 20px;
}

.doja-chatbot .bot-message,
.doja-chatbot .user-message {
  width: fit-content;
  max-width: 92%;
  margin: 0;
  padding: 12px 14px;
  border-radius: 18px;
  font-size: 14px;
  line-height: 1.42;
}

.doja-chatbot .bot-message {
  background: rgba(234, 231, 222, 0.1);
  color: rgba(234, 231, 222, 0.84);
}

.doja-chatbot .user-message {
  justify-self: end;
  background: var(--ivory);
  color: var(--black);
}

.doja-chatbot-prompts {
  display: grid;
  gap: 8px;
  padding: 0 20px 20px;
}

.doja-chatbot-prompts button {
  min-height: 44px;
  border: 1px solid rgba(234, 231, 222, 0.2);
  border-radius: 999px;
  background: transparent;
  color: var(--ivory);
  cursor: pointer;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.02em;
  transition: background 220ms var(--ease), color 220ms var(--ease);
}

.doja-chatbot-prompts button:hover,
.doja-chatbot-prompts button:focus-visible {
  background: var(--ivory);
  color: var(--black);
  outline: 0;
}

.reveal-item {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 780ms var(--ease), transform 780ms var(--ease);
}

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

@media (min-width: 760px) {
  .site-header {
    inset: 18px 24px auto;
  }

  .nav {
    min-height: 76px;
    padding-inline: 24px 10px;
  }

  .brand img {
    width: 220px;
    height: 64px;
  }

  .menu-toggle {
    display: none;
  }

  .nav-panel {
    position: static;
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 0;
    background: transparent;
    border: 0;
    box-shadow: none;
  }

  .primary-menu {
    display: flex;
    align-items: center;
    gap: 6px;
  }

  .primary-menu li {
    display: flex;
  }

  .nav-panel a {
    min-height: 42px;
    display: inline-flex;
    align-items: center;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 11px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
  }

  .nav-panel a:not(.nav-button):hover,
  .nav-panel a:not(.nav-button):focus-visible {
    background: rgba(234, 231, 222, 0.1);
    transform: none;
  }

  .section {
    padding: 120px 32px;
  }

  .hero {
    padding: 148px 32px 96px;
  }

  .section-grid,
  .detail-grid,
  .contact-layout {
    grid-template-columns: 0.35fr 1fr;
    align-items: start;
  }

  .foundation-section {
    padding: 82px 46px 88px;
  }

  .foundation-section > h2 {
    margin-left: max(0px, calc((100vw - var(--wide)) / 2));
  }

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

  .foundation-card {
    min-height: 390px;
    padding: 46px;
    border-radius: 24px;
  }

  .project-card {
    flex-basis: min(46vw, 560px);
  }

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

  .ig-dynamic-feed #sbi_images,
  .ig-dynamic-feed .sbi_images,
  .ig-dynamic-feed [class*="spotlight"] [class*="grid"] {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .principle-grid {
    grid-template-columns: repeat(5, 1fr);
  }

  .logo-wall {
    grid-template-columns: repeat(6, 1fr);
  }

  .partner-carousel .logo-wall {
    display: flex;
  }

  .partner-carousel .logo-wall span {
    flex-basis: min(30vw, 360px);
  }

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

  .team-card {
    min-height: 840px;
  }

  .team-card img {
    min-height: 840px;
  }

  .investment-cta {
    padding: 64px;
  }

  .contact-cta {
    grid-template-columns: 1fr auto;
    align-items: end;
    padding: 54px;
  }

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

  .footer {
    padding-bottom: 58px;
  }

  .footer-inner {
    grid-template-columns: 0.46fr 0.82fr 0.48fr auto;
    align-items: start;
  }

  .footer small {
    grid-column: 2 / -1;
  }

  .mobile-cta {
    display: none;
  }

  .doja-chatbot {
    right: 24px;
    bottom: 24px;
  }
}

@media (min-width: 1100px) {
  .ig-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .ig-dynamic-feed #sbi_images,
  .ig-dynamic-feed .sbi_images,
  .ig-dynamic-feed [class*="spotlight"] [class*="grid"] {
    grid-template-columns: repeat(3, minmax(0, 1fr)) !important;
  }
}

@media (max-width: 759px) {
  .site-header {
    inset: 14px 4px auto;
  }

  .nav {
    min-height: 104px;
    gap: 6px;
    padding: 14px 8px 14px 16px;
    background: rgba(0, 0, 0, 0.1);
  }

  .brand {
    flex: 0 0 300px;
  }

  .brand img {
    width: 300px;
    max-width: none;
    height: 72px;
  }

  .menu-toggle {
    width: 50px;
    height: 50px;
    flex: 0 0 50px;
  }

  .button,
  .nav-button {
    width: 100%;
  }

  .nav-panel .nav-button {
    margin-top: 6px;
  }

  .project-card {
    flex-basis: min(86vw, 390px);
  }

  .carousel-control {
    width: 40px;
    height: 40px;
    font-size: 17px;
    top: 43%;
    background: rgba(0, 0, 0, 0.58);
  }

  .project-info {
    padding: 28px 78px 24px 22px;
  }

  .project-price-badge {
    top: 14px;
    left: 14px;
    padding: 10px 12px;
  }

  .project-counter {
    top: 14px;
    right: 14px;
  }

  .project-card-arrow {
    right: 18px;
    bottom: 24px;
    width: 48px;
    height: 48px;
  }

  .carousel-control-prev {
    left: 8px;
  }

  .carousel-control-next {
    right: 8px;
  }

  .instagram-feed {
    padding-inline: 22px;
  }

  .doja-instagram-section {
    padding: 72px 18px;
  }

  .doja-eyebrow {
    font-size: 11px;
    letter-spacing: 5px;
  }

  .doja-subtitle {
    margin-bottom: 34px;
    font-size: 18px;
  }

  .ig-card figure {
    height: 240px;
  }

  .ig-button {
    width: 100%;
    min-height: 58px;
    padding: 0 18px;
  }

  .doja-instagram-btn {
    width: 100%;
    max-width: 320px;
  }

  .principle-grid article {
    min-height: 120px;
  }

  .doja-whatsapp-chat {
    right: 18px;
    bottom: 96px;
    width: 52px;
    height: 52px;
    box-shadow: 0 0 0 2px #333, 0 14px 35px rgba(0, 0, 0, 0.35);
  }

  .doja-whatsapp-chat img {
    width: 28px;
    height: 28px;
  }

  .doja-chatbot {
    display: none;
  }

  .doja-chatbot-toggle {
    width: 62px !important;
    min-width: 62px;
    max-width: 62px;
    height: 62px !important;
    min-height: 62px;
    padding: 0;
    border-radius: 50%;
  }

  .doja-chatbot-panel {
    bottom: 74px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

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

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

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

@keyframes dojaAssistantPulse {
  0% {
    opacity: 0;
    transform: scale(0.82);
  }

  42% {
    opacity: 0.5;
  }

  100% {
    opacity: 0;
    transform: scale(1.2);
  }
}

/* DOJA 3.0 premium Elementor-ready experience */
body {
  background: var(--warm-ivory);
}

.elementor-section {
  position: relative;
}

.button-bronze {
  border: 1px solid #000;
  background: #000;
  color: var(--ivory);
  box-shadow: 0 16px 46px rgba(0, 0, 0, 0.28);
}

.button-bronze:hover,
.button-bronze:focus-visible {
  color: var(--ivory);
  background: #111;
  outline: 0;
}

.nav {
  background: rgba(17, 16, 14, 0.62);
  border-color: rgba(244, 239, 229, 0.2);
}

.hero-premium {
  background: var(--charcoal);
}

.hero-premium .hero-shade {
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.9), rgba(17, 16, 14, 0.28) 60%, rgba(17, 16, 14, 0.08)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.72), rgba(17, 16, 14, 0.04) 56%);
}

.projects-section {
  background: #000;
  color: var(--ivory);
}

.projects-section .section-heading p {
  color: rgba(234, 231, 222, 0.72);
}

.project-card {
  background: var(--charcoal);
  box-shadow: 0 28px 100px rgba(0, 0, 0, 0.36);
}

.project-chip {
  position: absolute;
  top: 18px;
  left: 18px;
  z-index: 4;
  max-width: calc(100% - 36px);
  padding: 10px 13px;
  border: 1px solid rgba(244, 239, 229, 0.22);
  border-radius: 999px;
  background: rgba(17, 16, 14, 0.4);
  color: rgba(244, 239, 229, 0.9);
  backdrop-filter: blur(16px);
  font-size: 10px;
  font-weight: 850;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.project-info {
  background: linear-gradient(180deg, rgba(17, 16, 14, 0), rgba(17, 16, 14, 0.78) 30%, var(--charcoal) 100%);
}

.project-info span {
  display: block;
  margin-top: 12px;
  color: var(--bronze);
  font-size: 12px;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.project-price-badge,
.project-counter {
  display: none !important;
}

.signature-spotlight {
  width: min(calc(100% - 44px), var(--wide));
  min-height: 720px;
  display: grid;
  align-items: end;
  margin: 0 auto 96px;
  overflow: hidden;
  border-radius: 34px;
  background: var(--charcoal);
  color: var(--ivory);
}

.signature-spotlight figure {
  position: absolute;
  inset: 0;
  margin: 0;
}

.signature-spotlight figure::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(17, 16, 14, 0.92), rgba(17, 16, 14, 0.18)),
    linear-gradient(0deg, rgba(17, 16, 14, 0.78), transparent 60%);
}

.signature-spotlight img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.78;
}

.spotlight-copy {
  position: relative;
  z-index: 2;
  width: min(100%, 780px);
  padding: clamp(30px, 6vw, 72px);
}

.spotlight-copy h2 {
  margin-bottom: 20px;
  font-size: clamp(58px, 10vw, 132px);
}

.spotlight-copy p {
  color: rgba(234, 231, 222, 0.78);
  font-size: clamp(18px, 2vw, 26px);
}

.spotlight-actions,
.contact-methods {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}

.journey-section {
  background: var(--warm-ivory);
}

.journey-steps,
.quick-facts,
.facility-grid,
.landmark-list {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 14px;
}

.journey-steps article,
.quick-facts article,
.facility-grid article,
.landmark-list span {
  min-height: 150px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 24px;
  border: 1px solid rgba(17, 16, 14, 0.12);
  border-radius: 24px;
  background: rgba(234, 231, 222, 0.52);
}

.journey-steps span,
.quick-facts span {
  color: var(--bronze-dark);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-steps h3,
.quick-facts strong {
  margin: 0;
  color: var(--charcoal);
  font-size: clamp(24px, 3vw, 36px);
  line-height: 1;
}

.contact-panel {
  width: min(calc(100% - 44px), var(--wide));
  display: grid;
  gap: 26px;
  margin: 0 auto 96px;
  padding: clamp(28px, 5vw, 64px);
  border-radius: 34px;
  background:
    radial-gradient(circle at 100% 0, rgba(201, 121, 47, 0.22), transparent 38%),
    var(--charcoal);
  color: var(--ivory);
}

.contact-panel-copy h2,
.lead-form-head h2 {
  max-width: 780px;
  font-size: clamp(42px, 7vw, 96px);
}

.contact-panel-copy p,
.lead-form-head p {
  max-width: 680px;
  color: rgba(234, 231, 222, 0.72);
  font-size: clamp(17px, 1.8vw, 22px);
}

.contact-methods a {
  color: var(--ivory);
  border-bottom: 1px solid rgba(201, 121, 47, 0.72);
  font-weight: 850;
}

.lead-form {
  display: grid;
  gap: 14px;
  padding: clamp(20px, 4vw, 34px);
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 28px;
  background: rgba(244, 239, 229, 0.08);
  backdrop-filter: blur(18px);
}

.lead-form label {
  display: grid;
  gap: 8px;
}

.lead-form span {
  color: rgba(234, 231, 222, 0.62);
  font-size: 11px;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.lead-form input,
.lead-form textarea {
  width: 100%;
  border: 1px solid rgba(244, 239, 229, 0.14);
  border-radius: 18px;
  background: rgba(244, 239, 229, 0.1);
  color: var(--ivory);
  outline: none;
  padding: 15px 16px;
}

.lead-form input:focus,
.lead-form textarea:focus {
  border-color: rgba(201, 121, 47, 0.9);
}

.project-detail-hero {
  min-height: 100svh;
  display: grid;
  align-items: end;
  padding: 150px 22px 72px;
}

.project-detail-copy {
  position: relative;
  z-index: 2;
  width: min(100%, var(--wide));
  margin-inline: auto;
}

.project-detail-copy h1 {
  max-width: 980px;
  font-size: clamp(64px, 12vw, 160px);
}

.project-detail-copy p {
  color: rgba(234, 231, 222, 0.8);
  font-size: clamp(18px, 2.2vw, 28px);
}

.quick-facts {
  padding-top: 80px;
}

.detail-gallery {
  width: min(100%, var(--wide));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.detail-gallery figure {
  min-height: 320px;
  overflow: hidden;
  margin: 0;
  border-radius: 28px;
  background: var(--charcoal);
}

.detail-gallery img {
  width: 100%;
  height: 100%;
  min-height: 320px;
  object-fit: cover;
}

.master-plan-section {
  background: var(--charcoal);
  color: var(--ivory);
}

.master-plan-section .section-label,
.master-plan-section .section-copy h2 {
  color: var(--ivory);
}

.location-layout {
  width: min(100%, var(--max));
  margin: 0 auto;
  display: grid;
  gap: 18px;
}

.map-card {
  overflow: hidden;
  min-height: 420px;
  border-radius: 30px;
  background: var(--charcoal);
}

.map-card iframe {
  width: 100%;
  height: 100%;
  min-height: 420px;
  border: 0;
  filter: grayscale(1) contrast(1.04);
}

.facility-grid article,
.landmark-list span {
  min-height: 96px;
  color: var(--charcoal);
  font-size: 18px;
  font-weight: 800;
}

.page-hero-dark {
  background: var(--charcoal);
  color: var(--ivory);
}

.page-hero-dark p {
  color: rgba(234, 231, 222, 0.74);
}

@media (min-width: 760px) {
  .journey-steps,
  .quick-facts,
  .facility-grid,
  .landmark-list {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .contact-panel {
    grid-template-columns: 0.9fr 1fr;
    align-items: start;
  }

  .detail-gallery {
    grid-template-columns: 1.2fr 0.8fr;
  }

  .detail-gallery figure:first-child {
    grid-row: span 2;
  }

  .location-layout {
    grid-template-columns: 1.2fr 0.8fr;
  }
}

@media (max-width: 759px) {
  .project-chip {
    top: 14px;
    left: 14px;
    font-size: 9px;
  }

  .signature-spotlight {
    width: calc(100% - 28px);
    min-height: 620px;
    margin-bottom: 66px;
    border-radius: 28px;
  }

  .contact-panel {
    width: calc(100% - 28px);
    margin-bottom: 74px;
  }
}
