:root {
  --paper: #080706;
  --cream: #fff7e8;
  --ink: #100d09;
  --soft-ink: #15110c;
  --muted: #b5a58c;
  --line: rgba(239, 199, 112, 0.2);
  --gold: #d7ad51;
  --gold-bright: #ffe08a;
  --gold-deep: #8f5f18;
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Inter", Arial, sans-serif;
  --max: 1240px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--cream);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.55;
}

body.nav-open {
  overflow: hidden;
}

body.has-entry-gate {
  overflow: hidden;
}

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

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

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

.entry-gate {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(3, 3, 2, 0.88), rgba(3, 3, 2, 0.48), rgba(3, 3, 2, 0.88)),
    radial-gradient(circle at 50% 38%, rgba(255, 224, 138, 0.12), transparent 30%),
    url("../bdg-luxury-logo.png") center / min(1180px, 105vw) auto no-repeat,
    #030302;
  color: var(--cream);
  transition: opacity 700ms ease, visibility 700ms ease;
}

.entry-gate[hidden] {
  display: none;
}

.entry-gate::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 2, 0.24), rgba(3, 3, 2, 0.74)),
    radial-gradient(circle at 50% 100%, rgba(215, 173, 81, 0.18), transparent 30%);
  pointer-events: none;
}

.gate-door {
  position: absolute;
  top: 0;
  bottom: 0;
  width: 50.2%;
  background:
    linear-gradient(90deg, rgba(255, 224, 138, 0.04), transparent 18% 82%, rgba(255, 224, 138, 0.04)),
    linear-gradient(135deg, rgba(12, 9, 6, 0.86), rgba(26, 19, 11, 0.8) 48%, rgba(6, 5, 4, 0.9));
  box-shadow: inset 0 0 90px rgba(0, 0, 0, 0.72);
  transition: transform 1200ms cubic-bezier(0.78, 0, 0.18, 1);
}

.gate-door::before {
  content: "";
  position: absolute;
  inset: 7% 6%;
  border: 1px solid rgba(255, 224, 138, 0.18);
  box-shadow: inset 0 0 35px rgba(255, 224, 138, 0.04);
}

.gate-left {
  left: 0;
  transform-origin: left center;
  border-right: 1px solid rgba(255, 224, 138, 0.42);
}

.gate-right {
  right: 0;
  transform-origin: right center;
  border-left: 1px solid rgba(255, 224, 138, 0.42);
}

.gate-content {
  position: relative;
  z-index: 2;
  width: min(920px, calc(100% - 44px));
  display: grid;
  justify-items: center;
  text-align: center;
}

.gate-content img {
  display: none;
}

.gate-content p {
  margin: 0 0 34px;
  color: rgba(255, 249, 239, 0.9);
  font-family: var(--serif);
  font-size: clamp(44px, 8vw, 108px);
  font-weight: 600;
  line-height: 0.9;
  letter-spacing: 0;
  text-transform: uppercase;
}

.gate-content button {
  min-height: 46px;
  border: 1px solid rgba(255, 249, 239, 0.58);
  background: rgba(3, 3, 2, 0.18);
  color: var(--cream);
  padding: 0 30px;
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  cursor: pointer;
  box-shadow: none;
}

body.entry-open .gate-left {
  transform: perspective(1200px) rotateY(-72deg) translateX(-16%);
}

body.entry-open .gate-right {
  transform: perspective(1200px) rotateY(72deg) translateX(16%);
}

body.entry-open .entry-gate {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition-delay: 800ms;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 40;
  min-height: 86px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: minmax(210px, auto) minmax(0, 1fr) auto;
  align-items: center;
  gap: 28px;
  color: var(--cream);
  background: linear-gradient(180deg, rgba(8, 7, 6, 0.92), rgba(8, 7, 6, 0.12));
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease;
}

.site-header.is-scrolled,
body.nav-open .site-header {
  background: rgba(8, 7, 6, 0.94);
  color: var(--cream);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(18px);
}

.brand {
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 600;
  line-height: 1;
  white-space: nowrap;
  color: var(--gold-bright);
  text-shadow: 0 0 24px rgba(215, 173, 81, 0.28);
}

.main-nav,
.site-tabs {
  display: flex;
  align-items: center;
}

.main-nav {
  justify-content: center;
  gap: clamp(14px, 2vw, 26px);
  font-size: 12px;
  font-weight: 800;
  text-transform: lowercase;
  min-width: 0;
}

.main-nav a {
  opacity: 0.88;
  white-space: nowrap;
  border-bottom: 1px solid transparent;
}

.main-nav a:hover,
.main-nav a.active {
  opacity: 1;
  color: var(--gold-bright);
  border-bottom-color: currentColor;
}

.site-tabs {
  justify-content: flex-end;
  gap: 0;
  min-width: max-content;
  border: 1px solid rgba(239, 199, 112, 0.32);
  background: rgba(8, 7, 6, 0.42);
  backdrop-filter: blur(14px);
  box-shadow: inset 0 0 18px rgba(215, 173, 81, 0.08);
}

.site-tabs::before {
  content: "Sites";
  min-height: 40px;
  padding: 0 11px;
  display: inline-flex;
  align-items: center;
  color: rgba(255, 249, 239, 0.66);
  font-size: 10px;
  font-weight: 900;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  border-right: 1px solid rgba(239, 199, 112, 0.22);
}

.site-tabs a {
  min-height: 40px;
  padding: 11px 12px;
  border-right: 1px solid rgba(239, 199, 112, 0.22);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 10px;
  font-weight: 800;
  text-transform: uppercase;
  white-space: nowrap;
  letter-spacing: 0.04em;
}

.site-tabs a:last-child {
  border-right: 0;
}

.site-tabs a:hover,
.site-tabs a.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  color: var(--ink);
  box-shadow: 0 0 28px rgba(215, 173, 81, 0.32);
}

.site-header.is-scrolled .site-tabs,
body.nav-open .site-tabs {
  border-color: var(--line);
  background: rgba(12, 10, 8, 0.86);
}

.site-header.is-scrolled .site-tabs a,
body.nav-open .site-tabs a {
  border-color: var(--line);
}

.site-header.is-scrolled .site-tabs a:hover,
.site-header.is-scrolled .site-tabs a.active,
body.nav-open .site-tabs a:hover,
body.nav-open .site-tabs a.active {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  color: var(--ink);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid currentColor;
  background: transparent;
  color: inherit;
  place-items: center;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
  content: "";
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  transition: transform 180ms ease;
}

.menu-toggle span::before {
  transform: translateY(-7px);
}

.menu-toggle span::after {
  transform: translateY(5px);
}

body.nav-open .menu-toggle span {
  transform: rotate(45deg);
}

body.nav-open .menu-toggle span::before {
  transform: rotate(90deg);
}

body.nav-open .menu-toggle span::after {
  transform: translateY(-2px) scaleX(0);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background:
    linear-gradient(90deg, rgba(3, 3, 2, 0.98), rgba(8, 7, 6, 0.78), rgba(3, 3, 2, 0.98)),
    radial-gradient(circle at 50% 42%, rgba(255, 224, 138, 0.2), transparent 30%),
    #030302;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(3, 3, 2, 0.08), rgba(3, 3, 2, 0.78)),
    radial-gradient(circle at 50% 100%, rgba(215, 173, 81, 0.16), transparent 32%);
  pointer-events: none;
}

.hero-image {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-image {
  z-index: 0;
  filter: saturate(0.72) contrast(1.08) brightness(0.5);
}

.hero-background-sign {
  position: absolute;
  z-index: 1;
  top: 46%;
  left: 50%;
  width: min(1280px, 112vw);
  max-width: none;
  transform: translate(-50%, -50%);
  opacity: 0.62;
  mix-blend-mode: screen;
  filter: contrast(1.06) saturate(0.96) drop-shadow(0 0 38px rgba(255, 210, 105, 0.16));
  pointer-events: none;
}

.hero-copy {
  position: relative;
  z-index: 2;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 178px;
  display: grid;
  justify-items: center;
  text-align: center;
}

.hero-copy p,
.statement p,
.studio-heading p,
.available-heading p,
.difference p,
.inquire p {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.hero-copy h1 {
  max-width: 1000px;
  margin: 0 0 20px;
  font-family: var(--serif);
  font-size: clamp(72px, 9.4vw, 150px);
  font-weight: 600;
  line-height: 0.82;
  color: var(--cream);
  text-shadow: 0 0 34px rgba(0, 0, 0, 0.55);
}

.hero-copy span {
  max-width: 590px;
  margin-bottom: 26px;
  display: block;
  color: rgba(255, 250, 241, 0.82);
  font-size: 18px;
}

.hero-logo {
  width: min(720px, 92vw);
  margin: 0 auto 22px;
  opacity: 0.92;
  mix-blend-mode: screen;
  filter: contrast(1.08) saturate(0.92) drop-shadow(0 0 28px rgba(255, 210, 105, 0.22));
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 14px;
}

.hero-copy a,
.statement a,
.available-heading a,
.difference a,
.work-card span,
.home-list a {
  color: inherit;
  font-size: 12px;
  font-weight: 800;
  text-transform: lowercase;
  border-bottom: 1px solid currentColor;
}

.hero-actions a {
  min-height: 48px;
  padding: 13px 20px;
  border: 1px solid rgba(255, 224, 138, 0.56);
  background: rgba(8, 7, 6, 0.38);
  color: var(--gold-bright);
  box-shadow: inset 0 0 24px rgba(215, 173, 81, 0.08), 0 0 26px rgba(215, 173, 81, 0.12);
}

.hero-actions a:first-child {
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  color: var(--ink);
}

.home-entry-tabs {
  position: relative;
  z-index: 5;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 42px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
}

.home-entry-tabs a {
  min-height: 48px;
  padding: 0 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 224, 138, 0.42);
  background: rgba(8, 7, 6, 0.52);
  color: var(--cream);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
  backdrop-filter: blur(16px);
  box-shadow: inset 0 0 22px rgba(215, 173, 81, 0.08), 0 12px 34px rgba(0, 0, 0, 0.24);
}

.home-entry-tabs a:hover {
  border-color: rgba(255, 224, 138, 0.78);
  background: rgba(215, 173, 81, 0.16);
  color: var(--gold-bright);
}

.hero-index {
  position: absolute;
  z-index: 2;
  right: max(20px, calc((100vw - var(--max)) / 2));
  bottom: 0;
  left: max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(239, 199, 112, 0.32);
}

.hero-index a {
  min-height: 92px;
  padding: 22px;
  display: grid;
  align-content: center;
  gap: 4px;
  border-right: 1px solid rgba(239, 199, 112, 0.2);
  background: rgba(8, 7, 6, 0.48);
  backdrop-filter: blur(14px);
}

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

.hero-index span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.hero-index strong {
  font-family: var(--serif);
  font-size: 26px;
  font-weight: 600;
  line-height: 1;
  text-transform: lowercase;
}

.statement {
  width: min(1060px, calc(100% - 40px));
  margin: 0 auto;
  padding: 156px 0 128px;
  text-align: center;
}

.brand-film {
  padding: 0 max(20px, calc((100vw - var(--max)) / 2)) 132px;
  display: grid;
  grid-template-columns: 0.52fr 1fr;
  gap: 34px;
  align-items: end;
}

.brand-film-copy p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.brand-film-copy h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(38px, 4.8vw, 72px);
  font-weight: 600;
  line-height: 0.98;
}

.brand-film video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(255, 224, 138, 0.28);
  background: #030302;
  box-shadow: 0 32px 90px rgba(0, 0, 0, 0.52), 0 0 42px rgba(215, 173, 81, 0.12);
}

.statement h2 {
  margin: 0 0 28px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.6vw, 96px);
  font-weight: 600;
  line-height: 0.98;
  color: var(--cream);
}

.prestige-band {
  padding: 0 max(20px, calc((100vw - var(--max)) / 2)) 128px;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 1px;
}

.prestige-band article {
  min-height: 150px;
  padding: 24px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(255, 224, 138, 0.08), rgba(255, 224, 138, 0.02)),
    rgba(255, 249, 239, 0.04);
  border: 1px solid rgba(239, 199, 112, 0.22);
}

.prestige-band span {
  color: var(--gold);
  font-size: 11px;
  font-weight: 800;
}

.prestige-band strong {
  margin-top: 10px;
  font-family: var(--serif);
  color: var(--cream);
  font-size: 27px;
  font-weight: 600;
  line-height: 1;
}

.work-strip {
  width: 100%;
  margin: 0 auto;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}

.work-card {
  position: relative;
  min-height: 72vh;
  display: grid;
  align-content: end;
  overflow: hidden;
  color: var(--cream);
}

.work-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 650ms ease;
}

.work-card::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(4, 3, 2, 0.88), rgba(4, 3, 2, 0.12) 68%),
    radial-gradient(circle at 50% 100%, rgba(215, 173, 81, 0.18), transparent 34%);
}

.work-card:hover img {
  transform: scale(1.05);
}

.work-card strong {
  position: relative;
  z-index: 1;
  padding: 0 26px 34px;
  display: block;
  font-family: var(--serif);
  font-size: clamp(28px, 3vw, 44px);
  font-weight: 600;
  line-height: 0.98;
}

.work-card span {
  position: relative;
  z-index: 1;
  width: max-content;
  margin: 0 26px 12px;
  color: var(--gold);
}

.studio {
  padding: 138px max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 70px;
  background:
    linear-gradient(135deg, rgba(255, 224, 138, 0.08), transparent 34%),
    var(--soft-ink);
  color: var(--cream);
}

.studio-heading h2,
.available-heading h2,
.difference h2,
.inquire h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(52px, 6.2vw, 96px);
  font-weight: 600;
  line-height: 0.98;
}

.studio-heading a {
  margin-top: 30px;
  display: inline-flex;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: lowercase;
  border-bottom: 1px solid currentColor;
}

.studio-services {
  display: grid;
  border-top: 1px solid rgba(255, 250, 241, 0.18);
}

.studio-services article {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 72px 0.7fr 1fr;
  gap: 22px;
  border-bottom: 1px solid rgba(255, 250, 241, 0.18);
}

.studio-services span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
}

.studio-services h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 600;
  line-height: 1;
  text-transform: lowercase;
}

.studio-services p {
  margin: 0;
  color: rgba(255, 250, 241, 0.72);
}

.available {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 146px 0;
}

.available-intro {
  min-height: 72vh;
  width: min(1040px, calc(100% - 40px));
  margin: 0 auto;
  padding: 168px 0 72px;
  display: grid;
  align-content: end;
  text-align: center;
}

.available-intro p,
.property-detail-copy span,
.property-tile span {
  margin: 0 0 14px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.available-intro h1 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(48px, 6.4vw, 94px);
  font-weight: 600;
  line-height: 0.98;
}

.property-selector {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0 118px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.property-tile {
  position: relative;
  min-height: 620px;
  padding: 34px;
  display: grid;
  align-content: end;
  overflow: hidden;
  border: 1px solid rgba(239, 199, 112, 0.22);
  background: #090806;
  color: var(--cream);
}

.property-tile img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82) contrast(1.04);
  transition: transform 700ms ease, filter 700ms ease;
}

.property-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, rgba(5, 4, 3, 0.92), rgba(5, 4, 3, 0.2) 68%),
    linear-gradient(90deg, rgba(5, 4, 3, 0.28), transparent);
}

.property-tile:hover img {
  transform: scale(1.035);
  filter: saturate(0.95) contrast(1.04);
}

.property-tile span,
.property-tile h2 {
  position: relative;
  z-index: 1;
}

.property-tile h2 {
  max-width: 560px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 76px);
  font-weight: 600;
  line-height: 0.94;
}

.property-detail {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 118px 0 78px;
  display: grid;
  grid-template-columns: minmax(0, 1fr) 360px;
  gap: 72px;
  border-top: 1px solid rgba(239, 199, 112, 0.22);
  scroll-margin-top: 98px;
}

.property-hero-photo {
  width: min(var(--max), calc(100% - 40px));
  margin: -18px auto 0;
  padding-bottom: 80px;
}

.property-hero-photo img {
  display: block;
  width: 100%;
  height: auto;
  border: 1px solid rgba(239, 199, 112, 0.24);
  filter: saturate(0.94) contrast(1.02);
}

.property-detail.compact-detail {
  padding-bottom: 112px;
  grid-template-columns: minmax(0, 760px);
}

.property-detail-copy h2 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: clamp(48px, 6.2vw, 90px);
  font-weight: 600;
  line-height: 0.94;
}

.property-detail-copy p {
  max-width: 820px;
  margin: 0 0 18px;
  color: rgba(255, 249, 239, 0.76);
  font-size: 17px;
}

.property-stats {
  margin: 0;
  padding: 0;
  align-self: start;
  display: grid;
  border-top: 1px solid rgba(239, 199, 112, 0.24);
}

.property-stats div {
  min-height: 92px;
  padding: 22px 0;
  display: grid;
  gap: 6px;
  border-bottom: 1px solid rgba(239, 199, 112, 0.24);
}

.property-stats dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.property-stats dd {
  margin: 0;
  font-family: var(--serif);
  color: var(--cream);
  font-size: 34px;
  font-weight: 600;
  line-height: 1;
}

.property-gallery {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 118px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.property-gallery img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(239, 199, 112, 0.2);
  filter: saturate(0.92) contrast(1.02);
}

.listings-hero {
  position: relative;
  min-height: 92vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  color: var(--cream);
  background: var(--soft-ink);
}

.listings-hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 50% 42%, rgba(255, 224, 138, 0.18), transparent 26%),
    linear-gradient(90deg, rgba(4, 3, 2, 0.92), rgba(4, 3, 2, 0.55) 58%, rgba(4, 3, 2, 0.22)),
    linear-gradient(0deg, rgba(4, 3, 2, 0.9), rgba(4, 3, 2, 0.1) 66%);
}

.listings-hero > img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.72) brightness(0.5);
}

.listings-hero > div {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 150px 0 96px;
}

.listing-logo {
  width: min(480px, 88vw);
  margin-bottom: 24px;
  filter: drop-shadow(0 0 34px rgba(255, 210, 105, 0.34));
}

.listings-hero p,
.listing-toolbar span,
.purchase-card span {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.listings-hero h1 {
  max-width: 880px;
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(68px, 9vw, 142px);
  font-weight: 600;
  line-height: 0.86;
}

.listings-hero div > span {
  max-width: 620px;
  display: block;
  color: rgba(255, 249, 239, 0.78);
  font-size: 18px;
}

.listing-toolbar {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 42px 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
}

.listing-toolbar article {
  padding: 24px;
  border: 1px solid rgba(239, 199, 112, 0.22);
  background: rgba(255, 249, 239, 0.04);
}

.listing-toolbar strong {
  display: block;
  font-family: var(--serif);
  font-size: 30px;
  font-weight: 600;
  line-height: 1;
}

.purchase-listings {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 40px 0 132px;
  display: grid;
  gap: 24px;
}

.purchase-listings.secondary-listings {
  padding-top: 0;
}

.purchase-card {
  min-height: 560px;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  border: 1px solid rgba(239, 199, 112, 0.24);
  background:
    linear-gradient(135deg, rgba(255, 224, 138, 0.08), transparent 40%),
    rgba(255, 249, 239, 0.04);
  overflow: hidden;
}

.purchase-card:nth-child(even) {
  grid-template-columns: 0.92fr 1.08fr;
}

.purchase-card:nth-child(even) img {
  order: 2;
}

.purchase-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: saturate(0.82);
}

.purchase-card div {
  padding: clamp(30px, 5vw, 70px);
  align-self: end;
}

.purchase-card h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 74px);
  font-weight: 600;
  line-height: 0.94;
}

.purchase-card p {
  max-width: 560px;
  color: rgba(255, 249, 239, 0.74);
}

.purchase-card dl {
  margin: 28px 0;
  display: grid;
  gap: 12px;
}

.purchase-card dl div {
  padding: 0;
  display: flex;
  justify-content: space-between;
  gap: 18px;
  border-bottom: 1px solid rgba(239, 199, 112, 0.2);
}

.purchase-card dt {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.purchase-card dd {
  margin: 0;
  color: rgba(255, 249, 239, 0.78);
  text-align: right;
}

.purchase-card a {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.listing-detail {
  width: min(var(--max), calc(100% - 40px));
  margin: -72px auto 0;
  padding: 72px 0 64px;
  display: grid;
  grid-template-columns: 0.74fr 1.26fr;
  gap: 58px;
  border-top: 1px solid rgba(239, 199, 112, 0.22);
}

.listing-detail p:first-child {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.listing-detail h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(42px, 5.4vw, 78px);
  font-weight: 600;
  line-height: 0.96;
}

.listing-copy {
  display: grid;
  gap: 18px;
}

.listing-copy p {
  margin: 0;
  color: rgba(255, 249, 239, 0.74);
  font-size: 17px;
}

.listing-photo-strip {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 96px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.listing-photo-strip img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(239, 199, 112, 0.2);
  filter: saturate(0.9) contrast(1.02);
}

.property-contact {
  margin-top: 28px;
  display: grid;
  gap: 10px;
}

.property-contact a {
  width: max-content;
  max-width: 100%;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
  overflow-wrap: anywhere;
}

.available-heading {
  margin-bottom: 34px;
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: end;
  gap: 28px;
}

.available-heading span {
  max-width: 340px;
  color: var(--muted);
}

.home-list {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 0;
  border: 1px solid var(--line);
}

.home-list article {
  position: relative;
  display: grid;
  min-height: 620px;
  overflow: hidden;
  color: var(--cream);
  background: var(--soft-ink);
  border-right: 1px solid rgba(255, 250, 241, 0.2);
}

.home-list img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.home-list article::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(12, 11, 10, 0.88), rgba(12, 11, 10, 0.12) 65%);
}

.home-list div {
  position: relative;
  z-index: 1;
  padding: 34px;
  align-self: end;
}

.home-list span {
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.home-list h3 {
  margin: 12px 0 14px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.home-list p {
  color: rgba(255, 250, 241, 0.74);
}

.difference {
  min-height: 86vh;
  padding: 118px max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  gap: 54px;
  align-items: center;
  background:
    linear-gradient(90deg, rgba(8, 7, 6, 0.96), rgba(8, 7, 6, 0.76)),
    #16110b;
  color: var(--cream);
}

.difference img {
  width: 100%;
  height: 68vh;
  object-fit: cover;
}

.difference h2 {
  margin-bottom: 28px;
}

.inquire {
  padding: 96px max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 60px;
  background:
    radial-gradient(circle at 18% 0%, rgba(215, 173, 81, 0.18), transparent 28%),
    var(--paper);
}

.inquire form {
  display: grid;
  grid-template-columns: repeat(4, 1fr) auto;
  gap: 12px;
  align-items: end;
}

.inquire label {
  display: grid;
  gap: 8px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.inquire input,
.inquire select,
.inquire textarea {
  min-height: 48px;
  border: 1px solid var(--line);
  background: rgba(255, 249, 239, 0.06);
  color: var(--cream);
  padding: 12px 14px;
}

.inquire textarea {
  min-height: 140px;
  resize: vertical;
}

.inquire label.wide {
  grid-column: 1 / -1;
}

.form-honeypot {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.inquire .form-message {
  grid-column: 1 / -1;
  min-height: 18px;
  margin: 0;
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: none;
}

.inquire select option {
  color: var(--ink);
}

.inquire button {
  min-height: 48px;
  border: 0;
  background: linear-gradient(135deg, var(--gold-bright), var(--gold), var(--gold-deep));
  color: var(--ink);
  padding: 0 24px;
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.site-footer {
  padding: 46px max(20px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 44px;
  background: #030302;
  color: var(--cream);
}

.site-footer div {
  display: grid;
  gap: 6px;
}

.site-footer nav {
  display: grid;
  gap: 8px;
}

.site-footer span,
.site-footer a {
  color: rgba(255, 250, 241, 0.68);
  font-size: 13px;
}

@media (max-width: 1220px) {
  .site-header {
    grid-template-columns: auto auto;
  }

  .main-nav {
    display: none;
  }
}

@media (max-width: 1220px) {
  .site-header {
    display: flex;
  }

  .menu-toggle {
    display: grid;
    margin-left: auto;
  }

  .main-nav,
  .site-tabs {
    position: fixed;
    left: 0;
    right: 0;
    display: none;
    background: rgba(8, 7, 6, 0.97);
    color: var(--cream);
    backdrop-filter: blur(18px);
  }

  .main-nav {
    top: 82px;
    padding: 28px 20px 18px;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    border-top: 1px solid var(--line);
  }

  .main-nav a {
    min-height: 46px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid rgba(239, 199, 112, 0.16);
  }

  .site-tabs {
    top: auto;
    margin: 0;
    padding: 18px 20px 28px;
    flex-direction: column;
    align-items: stretch;
    border: 0;
    box-shadow: none;
    display: none !important;
  }

  .site-tabs::before {
    width: 100%;
    justify-content: center;
    border: 0;
    color: var(--gold);
  }

  .site-tabs a {
    width: 100%;
    border: 1px solid rgba(239, 199, 112, 0.22);
    border-bottom: 0;
  }

  .site-tabs a:last-child {
    border-bottom: 1px solid var(--line);
  }

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

  .work-strip,
  .studio,
  .brand-film,
  .available-heading,
  .home-list,
  .difference,
  .inquire,
  .site-footer {
    grid-template-columns: 1fr;
  }

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

  .listing-toolbar,
  .purchase-card,
  .purchase-card:nth-child(even),
  .listing-detail,
  .property-selector,
  .property-detail,
  .property-detail.compact-detail {
    grid-template-columns: 1fr;
  }

  .purchase-card:nth-child(even) img {
    order: 0;
  }

  .hero-copy {
    padding-bottom: 250px;
  }

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

  .hero-index a {
    min-height: 76px;
    padding: 16px;
  }

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

  .studio-services article,
  .home-list article {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 640px) {
  .site-header {
    min-height: 72px;
    padding: 0 20px;
  }

  .brand {
    font-size: 23px;
  }

  .main-nav {
    top: 72px;
  }

  .site-tabs {
    top: auto;
  }

  .hero-copy {
    padding: 128px 0 270px;
  }

  .hero-logo {
    width: min(420px, 94vw);
  }

  .listing-logo {
    width: min(360px, 92vw);
  }

  .gate-content p {
    letter-spacing: 0.14em;
  }

  .hero-copy h1 {
    font-size: 58px;
  }

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

  .hero-index a {
    min-height: 54px;
    padding: 10px 14px;
  }

  .hero-index strong {
    font-size: 20px;
  }

  .statement,
  .available {
    padding: 78px 0;
  }

  .prestige-band {
    grid-template-columns: 1fr;
    padding-bottom: 78px;
  }

  .listing-toolbar {
    grid-template-columns: 1fr;
  }

  .purchase-listings {
    padding-bottom: 78px;
  }

  .listing-detail {
    margin-top: -38px;
    padding: 54px 0;
    gap: 28px;
  }

  .listing-photo-strip {
    grid-template-columns: 1fr;
    padding-bottom: 72px;
  }

  .available-intro {
    min-height: 64vh;
    padding-top: 126px;
  }

  .property-selector {
    padding-bottom: 78px;
  }

  .property-tile {
    min-height: 480px;
    padding: 24px;
  }

  .property-detail {
    padding: 74px 0 52px;
    gap: 34px;
  }

  .property-hero-photo {
    margin-top: -12px;
    padding-bottom: 52px;
  }

  .property-stats dd {
    font-size: 28px;
  }

  .property-gallery {
    grid-template-columns: 1fr;
    padding-bottom: 76px;
  }

  .purchase-card {
    min-height: auto;
  }

  .purchase-card img {
    min-height: 260px;
  }

  .work-strip {
    grid-template-columns: 1fr;
    padding-bottom: 78px;
  }

  .studio,
  .difference,
  .inquire {
    padding-top: 74px;
    padding-bottom: 74px;
  }

  .home-list img {
    min-height: 260px;
  }

  .site-footer {
    gap: 26px;
  }
}

body.minimal-home .gate-content img {
  width: min(560px, 90vw);
}

body.minimal-home .site-header {
  background: linear-gradient(180deg, rgba(3, 3, 2, 0.72), rgba(3, 3, 2, 0));
}

body.minimal-home .site-header .main-nav {
  display: none;
}

body.minimal-home .hero {
  min-height: 100vh;
}

body.minimal-home .hero::after {
  background:
    linear-gradient(90deg, rgba(3, 3, 2, 0.76), rgba(3, 3, 2, 0.24) 48%, rgba(3, 3, 2, 0.76)),
    linear-gradient(0deg, rgba(3, 3, 2, 0.82), rgba(3, 3, 2, 0.04) 64%);
}

body.minimal-home .hero-image {
  filter: saturate(0.86) contrast(1.02) brightness(0.74);
}

body.minimal-home .hero-background-sign {
  top: 43%;
  left: 50%;
  width: min(1180px, 106vw);
  opacity: 0.82;
}

body.minimal-home .hero-copy {
  padding: 148px 0 160px;
  justify-items: start;
  text-align: left;
  max-width: 900px;
}

body.minimal-home .hero-logo {
  display: none;
}

body.minimal-home .hero-copy h1 {
  max-width: 820px;
  font-size: clamp(60px, 8.4vw, 128px);
  line-height: 0.87;
}

body.minimal-home .hero-copy span {
  max-width: 520px;
  font-size: 17px;
}

body.minimal-home .hero-actions {
  justify-content: flex-start;
}

body.minimal-home .hero-actions a {
  background: transparent;
  box-shadow: none;
}

body.minimal-home .hero-actions a:first-child {
  background: var(--cream);
  color: var(--ink);
}

body.minimal-home .hero-index a {
  min-height: 76px;
  background: rgba(4, 3, 2, 0.18);
}

body.minimal-home .hero-index strong {
  font-size: 22px;
}

body.minimal-home .statement {
  width: min(920px, calc(100% - 40px));
  padding: 132px 0;
}

body.minimal-home .statement h2 {
  font-size: clamp(42px, 5.4vw, 78px);
}

body.minimal-home .work-strip {
  width: min(var(--max), calc(100% - 40px));
  padding: 0 0 118px;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

body.minimal-home .work-card {
  min-height: 66vh;
}

body.minimal-home .available {
  width: min(980px, calc(100% - 40px));
  padding: 18px 0 122px;
}

body.minimal-home .available-heading {
  grid-template-columns: 1fr;
  text-align: center;
  justify-items: center;
}

body.minimal-home .home-list {
  grid-template-columns: 1fr;
  border: 0;
}

body.minimal-home .home-list article {
  min-height: 560px;
}

body.minimal-home .inquire {
  padding-top: 104px;
  padding-bottom: 104px;
  background: #050403;
}

.inner-page {
  background:
    radial-gradient(circle at 50% 0%, rgba(215, 173, 81, 0.14), transparent 26%),
    #050403;
}

.inner-header {
  background: rgba(5, 4, 3, 0.9);
}

.simple-page-hero {
  min-height: 58vh;
  padding: 150px max(20px, calc((100vw - var(--max)) / 2)) 70px;
  display: grid;
  align-content: end;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.34), rgba(5, 4, 3, 0.92)),
    url("../bdg-luxury-logo.png") center 42% / min(980px, 100vw) auto no-repeat;
}

.projects-page .simple-page-hero {
  min-height: 42vh;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0.22), rgba(5, 4, 3, 0.88));
}

.project-detail-page .simple-page-hero {
  min-height: auto;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 148px 0 26px;
  align-content: start;
  background: none;
}

.project-detail-page .simple-page-hero.project-detail-heading {
  padding-top: 148px;
  padding-bottom: 28px;
}

.project-detail-page .simple-page-hero p {
  margin-bottom: 14px;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.project-detail-page .simple-page-hero h1 {
  max-width: 760px;
  font-family: var(--serif);
  font-size: clamp(42px, 6vw, 82px);
  line-height: 0.98;
}

.simple-page-hero p,
.project-gallery span,
.process-steps-page span,
.team-grid span,
.contact-panel span {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.simple-page-hero h1 {
  max-width: 980px;
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(58px, 8vw, 120px);
  font-weight: 600;
  line-height: 0.88;
}

.story-body {
  width: min(920px, calc(100% - 40px));
  margin: 0 auto;
  padding: 88px 0 120px;
}

.story-body.center {
  text-align: center;
}

.story-body p {
  color: rgba(255, 249, 239, 0.78);
  font-family: var(--serif);
  font-size: clamp(30px, 4vw, 52px);
  line-height: 1.08;
}

.luxury-link,
.contact-panel a {
  color: var(--gold-bright);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
  border-bottom: 1px solid currentColor;
}

.project-gallery,
.process-steps-page,
.team-grid,
.awards-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 120px;
  display: grid;
  gap: 18px;
}

.featured-project {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 22px;
  display: grid;
  grid-template-columns: 0.7fr 1.3fr;
  gap: 34px;
  align-items: end;
}

.featured-project-copy p {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.featured-project-copy h2 {
  margin: 0 0 18px;
  font-family: var(--serif);
  font-size: clamp(42px, 5vw, 78px);
  font-weight: 600;
  line-height: 0.94;
}

.featured-project-copy span {
  display: block;
  color: rgba(255, 249, 239, 0.72);
}

.featured-project video,
.featured-project-image {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(239, 199, 112, 0.24);
  background: #030302;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.project-detail-page .featured-project {
  padding: 0 0 28px;
  grid-template-columns: minmax(260px, 0.58fr) minmax(0, 1.42fr);
  gap: 42px;
  align-items: start;
}

.project-detail-page .featured-project-copy {
  display: grid;
  gap: 16px;
  align-content: start;
}

.project-detail-page .featured-project-copy p {
  margin: 0;
  font-size: 11px;
  letter-spacing: 0.08em;
}

.project-detail-page .featured-project-copy h2 {
  margin: 0;
  font-family: var(--sans);
  font-size: clamp(18px, 2vw, 25px);
  font-weight: 600;
  line-height: 1.3;
}

.project-detail-page .featured-project-copy span {
  max-width: 620px;
  font-size: 14px;
  line-height: 1.8;
}

.project-detail-page .featured-project video,
.project-detail-page .featured-project-image,
.project-detail-page .project-video-hero video {
  aspect-ratio: auto;
  max-height: 78vh;
  object-fit: contain;
}

.project-video-hero {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 74px 0 32px;
}

.project-detail-page .project-video-hero {
  padding: 140px 0 28px;
}

.project-video-hero video {
  width: 100%;
  aspect-ratio: 16 / 9;
  display: block;
  object-fit: cover;
  border: 1px solid rgba(239, 199, 112, 0.24);
  background: #030302;
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.36);
}

.project-detail-heading {
  padding-top: 36px;
  padding-bottom: 46px;
}

.project-description-end {
  padding-top: 18px;
  padding-bottom: 120px;
}

.project-detail-page .project-description-end {
  padding-top: 48px;
  padding-bottom: 112px;
  border-top: 1px solid rgba(239, 199, 112, 0.16);
}

.project-photo-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 10px 0 92px;
  column-count: 3;
  column-gap: 16px;
}

.project-photo-grid img {
  width: 100%;
  height: auto;
  display: block;
  margin: 0 0 16px;
  break-inside: avoid;
  border: 1px solid rgba(239, 199, 112, 0.18);
  filter: saturate(0.92) contrast(1.02);
}

.project-video-grid {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 4px 0 28px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 12px;
}

.project-video-grid video {
  width: 100%;
  aspect-ratio: 16 / 9;
  object-fit: cover;
  border: 1px solid rgba(239, 199, 112, 0.2);
  background: #030302;
}

.project-detail-page .project-video-grid {
  grid-template-columns: 1fr;
  gap: 18px;
}

.project-detail-page .project-video-grid video {
  aspect-ratio: auto;
  max-height: 78vh;
  object-fit: contain;
}

.project-gallery {
  grid-template-columns: repeat(2, 1fr);
  gap: 46px 28px;
  padding-top: 82px;
}

.project-gallery article,
.project-gallery a {
  min-height: 0;
  display: block;
  overflow: visible;
  border: 0;
  color: var(--cream);
}

.project-gallery img {
  position: static;
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(239, 199, 112, 0.18);
  filter: saturate(0.9);
  transition: transform 700ms ease, filter 700ms ease;
}

.project-gallery .project-placeholder-image {
  object-fit: contain;
  padding: 84px;
  background: linear-gradient(135deg, #111111, #2a241a);
}

.project-gallery article::after,
.project-gallery a::after {
  display: none;
}

.project-gallery article:hover img,
.project-gallery a:hover img {
  transform: scale(1.035);
  filter: saturate(0.96) contrast(1.03);
}

.project-gallery div {
  padding: 14px 0 0;
}

.process-steps-page h2,
.team-grid h2,
.contact-panel strong {
  margin: 0 0 12px;
  font-family: var(--serif);
  font-size: 38px;
  font-weight: 600;
  line-height: 1;
}

.project-gallery h2 {
  margin: 0;
  color: rgba(255, 249, 239, 0.82);
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1.2;
  text-transform: uppercase;
}

.project-gallery p,
.process-steps-page p,
.team-grid p {
  color: rgba(255, 249, 239, 0.72);
}

.process-steps-page {
  grid-template-columns: 1fr;
}

.process-steps-page article {
  padding: 30px 0;
  display: grid;
  grid-template-columns: 80px 0.7fr 1fr;
  gap: 28px;
  border-bottom: 1px solid rgba(239, 199, 112, 0.2);
}

.team-grid {
  grid-template-columns: repeat(4, 1fr);
}

.awards-page .simple-page-hero {
  min-height: 46vh;
  background:
    radial-gradient(circle at 28% 8%, rgba(215, 173, 81, 0.14), transparent 34%),
    linear-gradient(180deg, rgba(5, 4, 3, 0.18), rgba(5, 4, 3, 0.9));
}

.awards-grid {
  grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
  align-items: stretch;
  gap: 20px;
  padding-top: 34px;
}

.awards-grid article {
  min-height: 360px;
  padding: 34px;
  display: grid;
  align-content: end;
  border: 1px solid rgba(239, 199, 112, 0.12);
  background:
    linear-gradient(145deg, rgba(255, 249, 239, 0.07), rgba(255, 249, 239, 0.018)),
    rgba(5, 4, 3, 0.44);
  box-shadow: inset 0 1px 0 rgba(255, 249, 239, 0.04);
}

.awards-grid .award-card-with-image {
  align-content: stretch;
  gap: 24px;
}

.awards-grid .award-card-featured {
  grid-row: span 2;
  padding: clamp(28px, 4vw, 52px);
}

.award-media {
  min-height: 280px;
  display: grid;
  place-items: center;
  background:
    radial-gradient(circle at 50% 45%, rgba(215, 173, 81, 0.16), transparent 52%),
    linear-gradient(180deg, rgba(255, 249, 239, 0.035), rgba(255, 249, 239, 0));
  border: 1px solid rgba(239, 199, 112, 0.1);
}

.award-media-light {
  min-height: 190px;
  background:
    radial-gradient(circle at 50% 45%, rgba(255, 255, 255, 0.12), transparent 48%),
    rgba(255, 249, 239, 0.035);
}

.award-plaque {
  width: min(100%, 430px);
  max-height: 520px;
  justify-self: center;
  object-fit: contain;
  mix-blend-mode: lighten;
  opacity: 0.92;
  filter: saturate(0.88) contrast(1.03) drop-shadow(0 28px 38px rgba(0, 0, 0, 0.34));
}

.award-logo {
  width: min(100%, 220px);
  max-height: 145px;
  padding: 0;
  justify-self: center;
  object-fit: contain;
  opacity: 0.9;
  filter: saturate(0.9) contrast(0.98) drop-shadow(0 16px 24px rgba(0, 0, 0, 0.22));
}

.awards-grid span {
  margin: 0 0 12px;
  color: var(--gold);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.awards-grid h2 {
  margin: 0 0 16px;
  font-family: var(--serif);
  font-size: clamp(34px, 3.8vw, 58px);
  font-weight: 600;
  line-height: 0.98;
}

.awards-grid p {
  max-width: 620px;
  color: rgba(255, 249, 239, 0.72);
}

.team-grid article {
  padding: 14px 14px 24px;
  border: 1px solid rgba(239, 199, 112, 0.16);
  background:
    linear-gradient(180deg, rgba(255, 249, 239, 0.045), rgba(255, 249, 239, 0.018)),
    rgba(5, 4, 3, 0.62);
}

.team-photo-frame {
  position: relative;
  width: 100%;
  min-height: 420px;
  height: 420px;
  margin-bottom: 24px;
  overflow: hidden;
  display: grid;
  place-items: end center;
  border: 1px solid rgba(239, 199, 112, 0.14);
  background:
    radial-gradient(circle at 50% 18%, rgba(239, 199, 112, 0.16), transparent 28%),
    linear-gradient(180deg, rgba(46, 38, 27, 0.78), rgba(8, 7, 6, 0.98)),
    #080706;
}

.team-photo-frame::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0.02), rgba(5, 4, 3, 0.56)),
    radial-gradient(circle at 50% 48%, transparent 30%, rgba(5, 4, 3, 0.34) 78%);
  pointer-events: none;
  z-index: 1;
}

.team-photo-frame::after {
  content: "";
  position: absolute;
  inset: auto 18px 18px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(239, 199, 112, 0.45), transparent);
  z-index: 2;
}

.team-photo {
  position: relative;
  z-index: 0;
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center top;
  border: 0;
  background: transparent;
  filter: grayscale(1) contrast(1.08) brightness(0.88);
  mix-blend-mode: luminosity;
}

.contact-panel {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 70px 0 20px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}

.contact-panel a {
  padding: 34px;
  border: 1px solid rgba(239, 199, 112, 0.22);
  background: rgba(255, 249, 239, 0.04);
}

.contact-panel strong {
  display: block;
  color: var(--cream);
  word-break: break-word;
}

.contact-panel a[href^="mailto:"] strong {
  text-transform: none;
  letter-spacing: 0;
}

.inquire.compact {
  padding-top: 50px;
}

@media (max-width: 1040px) {
  body.minimal-home .work-strip {
    grid-template-columns: 1fr;
  }

  .project-gallery,
  .featured-project,
  .project-video-grid,
  .awards-grid,
  .team-grid,
  .contact-panel {
    grid-template-columns: 1fr;
  }

  .awards-grid .award-card-featured {
    grid-row: auto;
  }

  .award-media {
    min-height: 220px;
  }

  .project-photo-grid {
    column-count: 2;
  }

  .project-detail-page .featured-project {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .project-detail-page .simple-page-hero,
  .project-detail-page .simple-page-hero.project-detail-heading {
    padding-top: 122px;
  }

  .team-photo-frame {
    height: min(620px, 120vw);
  }

  .process-steps-page article {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 640px) {
  .project-photo-grid {
    column-count: 1;
  }

  .project-detail-page .simple-page-hero,
  .project-detail-page .simple-page-hero.project-detail-heading {
    padding-top: 108px;
  }

  .project-detail-page .simple-page-hero h1 {
    font-size: 42px;
  }

  .home-entry-tabs {
    width: min(420px, calc(100% - 28px));
    padding-bottom: 26px;
    display: grid;
    grid-template-columns: 1fr;
  }

  .home-entry-tabs a {
    min-height: 44px;
    padding: 0 14px;
    font-size: 11px;
  }

  body.minimal-home .hero-copy {
    padding: 128px 0 260px;
    justify-items: center;
    text-align: center;
  }

  body.minimal-home .hero-background-sign {
    top: 38%;
    left: 50%;
    width: 112vw;
    opacity: 0.78;
  }

  body.minimal-home .hero-logo {
    width: min(390px, 92vw);
    margin-left: auto;
    margin-right: auto;
  }

  body.minimal-home .hero-copy h1 {
    font-size: 54px;
  }

  body.minimal-home .hero-actions {
    justify-content: center;
  }

  body.minimal-home .statement,
  body.minimal-home .available,
  body.minimal-home .inquire {
    padding-top: 72px;
    padding-bottom: 72px;
  }
}

/* Refined type scale for a calmer, more editorial feel. */
.hero-copy h1,
body.minimal-home .hero-copy h1,
.simple-page-hero h1,
.listings-hero h1,
.available-intro h1 {
  font-size: clamp(42px, 6.4vw, 96px);
  line-height: 1;
  font-weight: 500;
  letter-spacing: 0;
}

.statement h2,
.studio-heading h2,
.available-heading h2,
.difference h2,
.inquire h2,
.property-detail-copy h2,
.purchase-card h2,
.listing-detail h2,
.featured-project-copy h2 {
  font-size: clamp(34px, 4.4vw, 68px);
  line-height: 1.07;
  font-weight: 500;
  letter-spacing: 0;
}

.property-tile h2 {
  font-size: clamp(30px, 3.8vw, 54px);
  line-height: 1.04;
  font-weight: 500;
  letter-spacing: 0;
}

.work-card strong {
  font-size: clamp(24px, 2.3vw, 34px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.awards-grid h2 {
  font-size: clamp(28px, 3vw, 44px);
  line-height: 1.08;
  font-weight: 500;
}

.process-steps-page h2,
.team-grid h2,
.contact-panel strong,
.home-list h2,
.listing-toolbar strong {
  font-size: clamp(27px, 3vw, 34px);
  line-height: 1.08;
  font-weight: 500;
  letter-spacing: 0;
}

.story-body p {
  font-size: clamp(22px, 2.5vw, 34px);
  line-height: 1.5;
  font-weight: 400;
}

.property-detail-copy p,
.listing-detail p,
.project-gallery p,
.process-steps-page p,
.team-grid p,
.awards-grid p,
.studio-services p,
.featured-project-copy p,
.inquire label,
.inquire textarea,
.inquire input,
.inquire select {
  font-size: 15px;
  line-height: 1.75;
  font-weight: 400;
}

.simple-page-hero p,
.project-gallery span,
.process-steps-page span,
.team-grid span,
.contact-panel span,
.featured-project-copy span,
.awards-grid span,
.available-intro p,
.property-detail-copy span,
.property-tile span,
.listings-hero p,
.listing-toolbar span,
.purchase-card span,
.studio-services span,
.prestige-band span,
.work-card span {
  font-size: 11px;
  line-height: 1.45;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.project-gallery h2 {
  font-size: 12px;
  line-height: 1.4;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.project-detail-page .simple-page-hero h1 {
  font-size: clamp(36px, 5vw, 64px);
  line-height: 1.04;
  font-weight: 500;
}

.project-detail-page .featured-project-copy h2 {
  font-size: clamp(17px, 1.7vw, 22px);
  line-height: 1.45;
  font-weight: 500;
}

.project-detail-page .featured-project-copy span {
  font-size: 15px;
  line-height: 1.85;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

@media (max-width: 640px) {
  .hero-copy h1,
  body.minimal-home .hero-copy h1,
  .simple-page-hero h1,
  .listings-hero h1,
  .available-intro h1 {
    font-size: 44px;
    line-height: 1.03;
  }

  .statement h2,
  .studio-heading h2,
  .available-heading h2,
  .difference h2,
  .inquire h2,
  .property-detail-copy h2,
  .purchase-card h2,
  .listing-detail h2,
  .featured-project-copy h2 {
    font-size: 34px;
    line-height: 1.1;
  }

  .story-body p {
    font-size: 21px;
    line-height: 1.58;
  }

  .property-tile h2,
  .process-steps-page h2,
  .team-grid h2,
  .contact-panel strong {
    font-size: 28px;
  }

  .project-detail-page .simple-page-hero h1 {
    font-size: 38px;
  }
}

/* Page polish requested after project review. */
.project-video-grid .video-alt-treatment {
  padding: clamp(10px, 1.8vw, 22px);
  background:
    radial-gradient(circle at 76% 20%, rgba(239, 199, 112, 0.18), transparent 34%),
    linear-gradient(135deg, rgba(42, 33, 22, 0.84), rgba(5, 4, 3, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 249, 239, 0.05),
    0 30px 70px rgba(0, 0, 0, 0.3);
}

.project-photo-grid-synchronized {
  column-count: auto;
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.project-photo-grid-synchronized img {
  height: clamp(300px, 34vw, 520px);
  margin: 0;
  object-fit: cover;
}

.project-photo-grid-synchronized img:nth-child(3n + 1) {
  grid-row: span 2;
  height: 100%;
  min-height: clamp(480px, 56vw, 760px);
}

.project-media-section {
  width: min(980px, calc(100% - 40px));
  margin: 0 auto;
  padding: 58px 0 18px;
}

.project-media-section .section-kicker {
  margin-bottom: 14px;
  color: var(--gold);
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.project-media-section h2 {
  max-width: 720px;
  margin: 0;
  color: rgba(255, 249, 239, 0.82);
  font-family: var(--serif);
  font-size: clamp(26px, 3vw, 44px);
  line-height: 1.12;
  font-weight: 400;
}

.project-video-grid-luxury {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  padding-bottom: 24px;
}

.project-detail-page .project-video-grid-luxury {
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.project-video-grid-luxury video {
  aspect-ratio: 9 / 16;
  max-height: 720px;
  object-fit: cover;
}

.project-photo-grid-curated {
  column-count: 2;
  column-gap: 18px;
  padding-top: 16px;
}

.project-photo-grid-curated img {
  height: auto;
  object-fit: contain;
  margin-bottom: 18px;
  background: rgba(255, 249, 239, 0.035);
}

.project-photo-grid-after {
  padding-bottom: 36px;
}

.project-media-section-before {
  padding-top: 42px;
  border-top: 1px solid rgba(239, 199, 112, 0.14);
}

.project-video-grid-before {
  padding-bottom: 16px;
}

.project-detail-page .project-video-grid-before {
  grid-template-columns: minmax(0, 0.72fr);
}

.project-photo-grid-before {
  column-count: 2;
  padding-top: 8px;
  padding-bottom: 110px;
}

.project-intro-details {
  padding-bottom: 6px;
}

.project-intro-details .featured-project-copy {
  max-width: 820px;
}

.project-detail-page .project-intro-details {
  grid-template-columns: 1fr;
}

.project-detail-page .project-video-hero {
  padding-top: 32px;
}

.awards-luxury-wall {
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 24px;
}

.awards-luxury-wall article {
  border-color: rgba(239, 199, 112, 0.18);
  background:
    linear-gradient(145deg, rgba(255, 249, 239, 0.08), rgba(255, 249, 239, 0.018)),
    radial-gradient(circle at 18% 14%, rgba(239, 199, 112, 0.11), transparent 34%),
    rgba(9, 8, 7, 0.8);
  box-shadow:
    inset 0 1px 0 rgba(255, 249, 239, 0.05),
    0 26px 70px rgba(0, 0, 0, 0.24);
}

.award-plaque-stage {
  min-height: clamp(420px, 52vw, 660px);
  padding: clamp(18px, 3vw, 40px);
  background:
    radial-gradient(circle at 50% 42%, rgba(239, 199, 112, 0.18), transparent 44%),
    linear-gradient(145deg, rgba(255, 249, 239, 0.08), rgba(255, 249, 239, 0.015)),
    #070605;
}

.award-plaque-stage .award-plaque {
  width: min(100%, 460px);
  max-height: 600px;
  mix-blend-mode: normal;
  opacity: 0.96;
  filter: saturate(0.94) contrast(1.02) drop-shadow(0 26px 44px rgba(0, 0, 0, 0.4));
}

.award-year-card {
  min-height: 300px;
  align-content: center;
}

.team-photo-frame {
  place-items: center;
  background:
    radial-gradient(circle at 50% 14%, rgba(239, 199, 112, 0.14), transparent 30%),
    linear-gradient(180deg, rgba(36, 30, 24, 0.8), rgba(12, 10, 8, 0.96)),
    #100d0a;
}

.team-photo-frame::before {
  background:
    linear-gradient(180deg, rgba(5, 4, 3, 0), rgba(5, 4, 3, 0.2)),
    radial-gradient(circle at 50% 48%, transparent 44%, rgba(5, 4, 3, 0.2) 88%);
}

.team-photo {
  width: auto;
  max-width: 100%;
  object-fit: contain;
  filter: saturate(0.98) contrast(1.02) brightness(1.04);
  mix-blend-mode: normal;
}

@media (max-width: 780px) {
  .project-photo-grid-synchronized {
    grid-template-columns: 1fr;
  }

  .project-photo-grid-synchronized img,
  .project-photo-grid-synchronized img:nth-child(3n + 1) {
    height: auto;
    min-height: 0;
  }

  .project-photo-grid-curated {
    column-count: 1;
  }

  .project-detail-page .project-video-grid-luxury,
  .project-video-grid-luxury,
  .project-detail-page .project-video-grid-before {
    grid-template-columns: 1fr;
  }

  .project-video-grid-luxury video {
    aspect-ratio: auto;
    max-height: none;
    object-fit: contain;
  }

  .project-photo-grid-before {
    column-count: 1;
  }

  .awards-luxury-wall {
    grid-template-columns: 1fr;
  }
}

/* Smaller, quieter project lettering for a more luxurious portfolio feel. */
.projects-page .simple-page-hero {
  min-height: 36vh;
  padding-bottom: 44px;
}

.projects-page .simple-page-hero p,
.project-detail-page .simple-page-hero p,
.featured-project-copy p {
  font-size: 10px;
  line-height: 1.6;
  font-weight: 500;
  letter-spacing: 0.16em;
}

.projects-page .simple-page-hero h1 {
  max-width: 760px;
  font-size: clamp(30px, 4.4vw, 62px);
  line-height: 1.08;
  font-weight: 400;
}

.project-gallery {
  gap: clamp(14px, 2vw, 26px);
}

.project-gallery div {
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, rgba(5, 4, 3, 0), rgba(5, 4, 3, 0.72));
}

.project-gallery h2 {
  font-family: var(--sans);
  font-size: clamp(10px, 0.9vw, 12px);
  line-height: 1.5;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: rgba(255, 249, 239, 0.88);
}

.project-detail-page .simple-page-hero h1 {
  max-width: 620px;
  font-size: clamp(30px, 4vw, 54px);
  line-height: 1.1;
  font-weight: 400;
}

.project-detail-page .featured-project-copy h2 {
  max-width: 720px;
  font-size: clamp(15px, 1.35vw, 19px);
  line-height: 1.6;
  font-weight: 400;
}

.project-detail-page .featured-project-copy span {
  max-width: 760px;
  font-size: 14px;
  line-height: 1.9;
  color: rgba(255, 249, 239, 0.68);
}

.luxury-link {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.14em;
}

@media (max-width: 640px) {
  .projects-page .simple-page-hero h1,
  .project-detail-page .simple-page-hero h1 {
    font-size: 32px;
  }

  .project-gallery h2 {
    font-size: 10px;
  }
}
