:root {
  --bg: #050505;
  --panel: rgba(255, 255, 255, 0.045);
  --panel-strong: rgba(255, 255, 255, 0.08);
  --line: rgba(255, 255, 255, 0.12);
  --text: #f4f1eb;
  --muted: #b8b0a4;
  --accent: #d1aa6f;
  --accent-soft: rgba(209, 170, 111, 0.16);
  --shadow: 0 30px 90px rgba(0, 0, 0, 0.45);
  --max: 1220px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Manrope", sans-serif;
  background:
    radial-gradient(circle at top, rgba(209, 170, 111, 0.12), transparent 24%),
    linear-gradient(180deg, #090909 0%, #050505 24%, #040404 100%);
  color: var(--text);
}

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

.site-shell {
  min-height: 100vh;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
  padding: 1.1rem 2rem;
  background: rgba(5, 5, 5, 0.84);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.brand-mark {
  font-family: "Cormorant Garamond", serif;
  font-size: 2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.brand-mark span {
  color: var(--accent);
}

.brand-inline {
  display: inline-block;
  white-space: nowrap;
}

.brand-accent {
  color: var(--accent);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1.2rem;
  font-size: 0.96rem;
  color: var(--muted);
}

.main-nav a:hover,
.header-cta:hover,
.footer-heading + a:hover {
  color: var(--text);
}

.menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 0.32rem;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.menu-toggle span,
.mobile-menu-close span {
  display: block;
  width: 1.1rem;
  height: 1px;
  background: var(--text);
}

.mobile-menu-overlay {
  position: fixed;
  inset: 0;
  z-index: 29;
  background: rgba(0, 0, 0, 0.52);
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.22s ease;
}

.mobile-menu {
  position: fixed;
  top: 0;
  right: 0;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  width: min(24rem, calc(100vw - 1.2rem));
  height: 100vh;
  padding: 1.25rem 1rem 1.4rem;
  background:
    linear-gradient(180deg, rgba(9, 9, 9, 0.98), rgba(5, 5, 5, 0.99)),
    radial-gradient(circle at top left, rgba(209, 170, 111, 0.1), transparent 28%);
  border-left: 1px solid var(--line);
  box-shadow: -30px 0 80px rgba(0, 0, 0, 0.45);
  transform: translateX(104%);
  transition: transform 0.24s ease;
}

.mobile-menu-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.mobile-menu-title {
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
}

.mobile-menu-close {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  position: relative;
  width: 3rem;
  height: 3rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.02);
  cursor: pointer;
}

.mobile-menu-close span:first-child {
  position: absolute;
  transform: rotate(45deg);
}

.mobile-menu-close span:last-child {
  position: absolute;
  transform: rotate(-45deg);
}

.mobile-menu-nav {
  display: grid;
  gap: 0.35rem;
}

.mobile-menu-nav a,
.mobile-menu-cta {
  display: flex;
  align-items: center;
  min-height: 3.4rem;
  padding: 0.95rem 1rem;
  border: 1px solid var(--line);
  border-radius: 18px;
}

.mobile-menu-nav a {
  color: var(--text);
  background: rgba(255, 255, 255, 0.03);
}

.mobile-menu-cta {
  justify-content: center;
  margin-top: auto;
  background: linear-gradient(135deg, #e0b778 0%, #b9853f 100%);
  color: #111;
  font-weight: 800;
}

body.mobile-menu-open {
  overflow: hidden;
}

body.mobile-menu-open .mobile-menu-overlay {
  opacity: 1;
  pointer-events: auto;
}

body.mobile-menu-open .mobile-menu {
  transform: translateX(0);
}

.header-cta,
.button,
.button-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 999px;
  padding: 0.92rem 1.35rem;
  font-size: 0.95rem;
  font-weight: 700;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.header-cta,
.button {
  background: linear-gradient(135deg, #e0b778 0%, #b9853f 100%);
  color: #111;
  box-shadow: 0 18px 40px rgba(209, 170, 111, 0.26);
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--text);
  background: rgba(255, 255, 255, 0.02);
}

.header-cta:hover,
.button:hover,
.button-secondary:hover {
  transform: translateY(-1px);
}

#app {
  width: 100%;
  margin: 0;
  padding: 0 0 4rem;
}

.hero {
  position: relative;
  overflow: hidden;
  min-height: 86vh;
  padding: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.72) 42%, rgba(5, 5, 5, 0.28) 100%),
    radial-gradient(circle at top right, rgba(209, 170, 111, 0.12), transparent 35%),
    #070707;
  box-shadow: var(--shadow);
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.5)),
    url("./assets/images/hero-luxury-interior.webp?v=7") center/cover no-repeat;
  opacity: 0.34;
  transform: scale(1.04);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  height: 34%;
  background: linear-gradient(180deg, transparent, rgba(5, 5, 5, 0.92));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  gap: 2rem;
  min-height: 86vh;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  padding: 4.8rem 0 2.2rem;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.eyebrow::before {
  content: "";
  width: 2.2rem;
  height: 1px;
  background: currentColor;
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", serif;
  line-height: 0.96;
  letter-spacing: -0.02em;
}

h1 {
  font-size: clamp(3.2rem, 6vw, 6.2rem);
  margin-top: 1rem;
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

h3 {
  font-size: 1.65rem;
}

.lead {
  font-size: 1.12rem;
  line-height: 1.75;
  color: var(--muted);
  max-width: 62ch;
}

.hero-actions,
.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 1.9rem;
}

.hero-copy {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 2rem;
}

.hero-copy-top {
  max-width: 46rem;
}

.hero-copy-top h1 {
  max-width: 14ch;
  font-size: clamp(2.9rem, 4.9vw, 5.1rem);
  line-height: 0.98;
}

.hero-kicker {
  margin-top: 1rem;
  max-width: 46rem;
  font-size: 1.05rem;
  line-height: 1.8;
  color: #ddd4c7;
}

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

.hero-proof {
  padding: 1.1rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.03);
}

.hero-proof strong {
  display: block;
  margin-bottom: 0.25rem;
  color: var(--text);
  font-size: 1rem;
}

.hero-proof span {
  color: var(--muted);
  font-size: 0.88rem;
  line-height: 1.6;
}

.stat-grid,
.card-grid,
.city-grid,
.testimonial-grid,
.campaign-grid {
  display: grid;
  gap: 1.2rem;
}

.stat-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  margin-top: 2rem;
}

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

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

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

.stat,
.panel,
.service-card,
.city-card,
.testimonial-card,
.campaign-card,
.quote-panel,
.process-card,
.gallery-card {
  border: 1px solid var(--line);
  border-radius: 22px;
  background: var(--panel);
  backdrop-filter: blur(10px);
}

.project-gallery-shell {
  position: relative;
}

.photo-gallery-grid {
  display: grid;
  gap: 0.95rem;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
}

.photo-gallery-grid-full {
  align-items: start;
}

.album-gallery-stack {
  display: grid;
  gap: 1.4rem;
}

.album-gallery-card {
  padding: 1.4rem;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: var(--panel);
  backdrop-filter: blur(10px);
}

.album-gallery-head {
  display: flex;
  flex-wrap: wrap;
  align-items: flex-end;
  justify-content: space-between;
  gap: 0.9rem;
  margin-bottom: 0.9rem;
}

.album-gallery-head h2 {
  margin: 0.3rem 0 0;
}

.album-gallery-count {
  padding: 0.45rem 0.8rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(4, 4, 4, 0.42);
  color: #f0d7ad;
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.album-photo-gallery-grid {
  margin-top: 1rem;
}

.photo-tile {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 0;
  aspect-ratio: 4 / 3;
  background: #0d0d0d;
  cursor: pointer;
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
  content-visibility: auto;
  contain-intrinsic-size: 240px;
}

.photo-tile:hover {
  transform: translateY(-3px);
  border-color: rgba(209, 170, 111, 0.38);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.34);
}

.photo-tile img,
.photo-tile-overlay {
  position: absolute;
  inset: 0;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.photo-tile-overlay {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 0.85rem;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.02), rgba(0, 0, 0, 0.7)),
    linear-gradient(145deg, rgba(209, 170, 111, 0.16), transparent 42%);
}

.photo-tile-project {
  width: fit-content;
  max-width: 100%;
  padding: 0.34rem 0.58rem;
  border-radius: 999px;
  background: rgba(4, 4, 4, 0.56);
  border: 1px solid rgba(255, 255, 255, 0.14);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.photo-tile-project {
  color: #f0d7ad;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.project-gallery-grid {
  display: grid;
  gap: 1.15rem;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  grid-auto-rows: 190px;
}

.project-shot {
  position: relative;
  display: block;
  grid-column: span 4;
  grid-row: span 1;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  padding: 0;
  background: #0d0d0d;
  cursor: pointer;
  text-align: left;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease;
}

.project-shot:nth-child(1) {
  grid-column: span 8;
  grid-row: span 2;
}

.project-shot:nth-child(2) {
  grid-column: span 4;
  grid-row: span 1;
}

.project-shot:nth-child(3),
.project-shot:nth-child(4),
.project-shot:nth-child(5) {
  grid-column: span 4;
  grid-row: span 1;
}

.project-shot:nth-child(6) {
  grid-column: span 8;
  grid-row: span 1;
}

.project-shot:hover {
  transform: translateY(-4px);
  border-color: rgba(209, 170, 111, 0.42);
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.42);
}

.project-shot-media,
.project-shot-media::after {
  position: absolute;
  inset: 0;
}

.project-shot-media::after {
  content: "";
}

.project-shot-media {
  overflow: hidden;
}

.project-shot-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transform: scale(1.02);
  filter: saturate(0.96) contrast(1.02);
}

.project-shot-media::after {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.7)),
    linear-gradient(145deg, rgba(209, 170, 111, 0.18), transparent 42%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.1), transparent 26%);
}

.project-shot-overlay {
  position: relative;
  z-index: 1;
  display: flex;
  height: 100%;
  flex-direction: column;
  justify-content: flex-end;
  gap: 0.35rem;
  padding: 1.15rem;
}

.project-shot-panel .project-shot-media img {
  opacity: 0.16;
  filter: grayscale(0.1) saturate(0.7) contrast(0.96);
}

.project-shot-panel .project-shot-media::after {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.01)),
    linear-gradient(145deg, rgba(209, 170, 111, 0.22), transparent 42%),
    radial-gradient(circle at top right, rgba(255, 255, 255, 0.08), transparent 24%),
    repeating-linear-gradient(
      135deg,
      rgba(255, 255, 255, 0.02) 0,
      rgba(255, 255, 255, 0.02) 1px,
      transparent 1px,
      transparent 14px
    );
}

.project-shot-meta {
  display: inline-flex;
  width: fit-content;
  max-width: 100%;
  padding: 0.38rem 0.72rem;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.32);
  color: #f0d7ad;
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.project-shot strong {
  display: block;
  max-width: 100%;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(1.2rem, 1.7vw, 1.95rem);
  line-height: 0.92;
  letter-spacing: -0.02em;
  color: var(--text);
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.project-shot-text {
  display: block;
  max-width: 100%;
  color: rgba(232, 226, 218, 0.86);
  font-size: 0.88rem;
  line-height: 1.4;
  overflow: hidden;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
}

.project-shot:nth-child(1) strong,
.project-shot:nth-child(6) strong {
  max-width: 100%;
  font-size: clamp(1.5rem, 2vw, 2.3rem);
}

.project-shot:nth-child(2) strong,
.project-shot:nth-child(3) strong,
.project-shot:nth-child(4) strong,
.project-shot:nth-child(5) strong {
  max-width: 100%;
  font-size: clamp(1.05rem, 1.35vw, 1.55rem);
  -webkit-line-clamp: 3;
}

.project-shot:nth-child(2) .project-shot-text,
.project-shot:nth-child(3) .project-shot-text,
.project-shot:nth-child(4) .project-shot-text,
.project-shot:nth-child(5) .project-shot-text {
  display: block;
}

.project-shot:nth-child(1) .project-shot-text,
.project-shot:nth-child(6) .project-shot-text {
  max-width: 100%;
  font-size: 0.88rem;
  line-height: 1.35;
  -webkit-line-clamp: 3;
}

.gallery-modal[hidden] {
  display: none;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 80;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.82);
  backdrop-filter: blur(18px);
}

.gallery-modal-dialog {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(1120px, calc(100% - 2rem));
  height: min(880px, calc(100vh - 2rem));
  margin: 1rem auto;
  grid-template-columns: minmax(0, 1.45fr) minmax(320px, 0.72fr);
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 28px;
  background: #0b0b0b;
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.52);
}

.gallery-modal-media {
  position: relative;
  height: 100%;
  min-height: 0;
  background: #050505;
}

.gallery-modal-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.gallery-modal-copy {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  gap: 0.9rem;
  padding: 5.25rem 2rem 2rem;
  min-height: 0;
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01)),
    radial-gradient(circle at top left, rgba(209, 170, 111, 0.16), transparent 30%),
    #0a0a0a;
}

.gallery-modal-copy h3 {
  font-size: clamp(2.2rem, 3vw, 3.8rem);
  line-height: 0.95;
  margin: 0;
  max-width: 10ch;
}

.gallery-modal-meta {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  margin-top: 0.25rem;
  min-height: 0;
  flex: 1 1 auto;
}

.gallery-counter {
  font-size: 0.8rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: #d9b16f;
}

.gallery-thumb-row {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 0.75rem;
  min-height: 0;
  max-height: 34rem;
  overflow-x: hidden;
  overflow-y: auto;
  padding-bottom: 0.35rem;
  scrollbar-width: thin;
  scrollbar-color: rgba(209, 170, 111, 0.36) rgba(255, 255, 255, 0.05);
}

.gallery-thumb-row::-webkit-scrollbar {
  width: 8px;
}

.gallery-thumb-row::-webkit-scrollbar-track {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 999px;
}

.gallery-thumb-row::-webkit-scrollbar-thumb {
  background: rgba(209, 170, 111, 0.38);
  border-radius: 999px;
}

.gallery-thumb {
  width: 100%;
  aspect-ratio: 1 / 1;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.38)),
    var(--gallery-thumb-image) var(--gallery-thumb-focus) / cover no-repeat;
  cursor: pointer;
  transition: border-color 0.18s ease, transform 0.18s ease, box-shadow 0.18s ease;
}

.gallery-thumb:hover,
.gallery-thumb.is-active {
  border-color: rgba(209, 170, 111, 0.48);
  transform: translateY(-1px);
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.24);
}

.gallery-nav {
  position: absolute;
  top: 50%;
  z-index: 2;
  min-width: 5.4rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.46);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
  transform: translateY(-50%);
}

.gallery-nav-prev {
  left: 1rem;
}

.gallery-nav-next {
  right: 1rem;
}

.gallery-modal-close {
  position: absolute;
  top: 1rem;
  right: 1rem;
  z-index: 2;
  display: inline-flex;
  width: 3rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  cursor: pointer;
}

.gallery-fullscreen-toggle {
  position: absolute;
  top: 1rem;
  right: 4.75rem;
  z-index: 2;
  display: inline-flex;
  min-width: 8.25rem;
  height: 3rem;
  align-items: center;
  justify-content: center;
  padding: 0 1rem;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.42);
  color: var(--text);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  cursor: pointer;
}

.gallery-modal-copy .lead {
  max-width: 34ch;
  margin: 0;
  flex: 0 0 auto;
}

.gallery-modal-dialog:fullscreen {
  width: 100vw;
  height: 100vh;
  max-width: none;
  max-height: none;
  margin: 0;
  border-radius: 0;
  border: 0;
}

.gallery-modal-dialog:fullscreen .gallery-modal-media {
  aspect-ratio: auto;
}

.gallery-modal-close span {
  position: absolute;
  width: 1.15rem;
  height: 1px;
  background: #f5f0e8;
}

.gallery-modal-close span:first-child {
  transform: rotate(45deg);
}

.gallery-modal-close span:last-child {
  transform: rotate(-45deg);
}

body.gallery-open {
  overflow: hidden;
}

.stat {
  padding: 1.4rem;
}

.stat strong {
  display: block;
  font-size: 2rem;
  color: var(--text);
}

.stat span {
  color: var(--muted);
  font-size: 0.92rem;
}

.hero-visual {
  display: flex;
  align-items: flex-end;
  justify-content: flex-end;
}

.visual-stack {
  display: grid;
  gap: 1rem;
  width: min(100%, 30rem);
}

.visual-frame,
.gallery-card {
  min-height: 220px;
  overflow: hidden;
  position: relative;
  padding: 1.4rem;
}

.visual-frame::before,
.gallery-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.01)),
    radial-gradient(circle at top left, rgba(209, 170, 111, 0.22), transparent 33%);
}

.visual-frame.luxury-panel {
  min-height: 300px;
}

.visual-frame.luxury-panel::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.02)),
    linear-gradient(145deg, rgba(209, 170, 111, 0.24), transparent 42%),
    radial-gradient(circle at top right, rgba(255,255,255,0.12), transparent 34%);
}

.visual-frame.dark-panel::before {
  background:
    linear-gradient(180deg, rgba(255,255,255,0.04), rgba(255,255,255,0.01)),
    radial-gradient(circle at bottom left, rgba(209, 170, 111, 0.16), transparent 38%);
}

.visual-copy,
.gallery-copy {
  position: relative;
  z-index: 1;
}

.section {
  margin-top: 2rem;
  width: min(var(--max), calc(100% - 2.5rem));
  margin-left: auto;
  margin-right: auto;
  padding: 2.3rem;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.018);
}

.bottom-location-strip {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 2.8rem auto 0;
  padding: 1.6rem 0 0;
  border-top: 1px solid var(--line);
}

.bottom-location-inner {
  display: grid;
  gap: 1rem;
}

.bottom-location-label {
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
}

.location-link-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
}

.location-link-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 2.8rem;
  padding: 0.78rem 1.05rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.location-link-chip:hover {
  transform: translateY(-1px);
  border-color: rgba(209, 170, 111, 0.4);
  background: rgba(209, 170, 111, 0.08);
}

.hero-signature {
  margin-top: 1.25rem;
  font-size: 0.88rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--muted);
}

.page-hero {
  position: relative;
  overflow: hidden;
  min-height: 48vh;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background:
    linear-gradient(90deg, rgba(5, 5, 5, 0.92) 0%, rgba(5, 5, 5, 0.7) 44%, rgba(5, 5, 5, 0.3) 100%),
    radial-gradient(circle at top right, rgba(209, 170, 111, 0.1), transparent 36%),
    #060606;
  box-shadow: var(--shadow);
}

.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.18), rgba(0, 0, 0, 0.58)),
    url("./assets/images/page-hero-architectural.webp") center/cover no-repeat;
  opacity: 0.2;
  transform: scale(1.03);
}

.page-hero-inner {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto;
  min-height: 48vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 0.9rem;
  padding: 3.4rem 0 1.8rem;
}

.page-hero-copy {
  max-width: 44rem;
}

.page-hero-copy h1 {
  max-width: 11ch;
  margin-top: 0.7rem;
  font-size: clamp(2.6rem, 4.7vw, 4.9rem);
  line-height: 0.98;
}

.page-hero-wide .page-hero-copy {
  max-width: 58rem;
}

.page-hero-wide .page-hero-copy h1 {
  max-width: 16ch;
  font-size: clamp(2.7rem, 4.2vw, 4.5rem);
}

.page-hero-wide .page-hero-copy .lead {
  max-width: 48rem;
}

.page-hero-copy .lead {
  max-width: 42rem;
  margin-top: 0.9rem;
}

.section-head {
  display: flex;
  flex-wrap: wrap;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.6rem;
}

.service-card,
.city-card,
.testimonial-card,
.campaign-card,
.process-card {
  padding: 1.5rem;
}

.service-card p,
.city-card p,
.testimonial-card p,
.campaign-card p,
.process-card p,
.panel p,
.section p,
li {
  color: var(--muted);
  line-height: 1.7;
}

.service-card ul,
.campaign-card ul,
.process-card ul,
.quote-list {
  margin: 1rem 0 0;
  padding-left: 1rem;
}

.service-card li,
.campaign-card li,
.process-card li,
.quote-list li {
  margin-bottom: 0.5rem;
}

.service-card .tag,
.city-card .tag {
  display: inline-block;
  margin-bottom: 0.9rem;
  font-size: 0.75rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
}

.quote-panel {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.2rem;
  padding: 1.5rem;
}

.quote-box {
  padding: 1.3rem;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(0, 0, 0, 0.18);
}

.google-review-card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  text-decoration: none;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease;
}

.google-review-card:hover {
  transform: translateY(-2px);
  border-color: rgba(209, 170, 111, 0.34);
  background: rgba(255, 255, 255, 0.05);
}

.google-review-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
}

.google-review-label {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--accent);
}

.google-mark {
  font-size: 0.92rem;
  font-weight: 700;
  color: #e8e1d7;
}

.google-stars {
  color: #fbbc05;
  letter-spacing: 0.16em;
  font-size: 0.9rem;
}

.site-footer {
  width: min(var(--max), calc(100% - 2.5rem));
  margin: 0 auto 2.5rem;
  padding: 2rem 0 0;
  border-top: 1px solid var(--line);
  display: grid;
  gap: 1.8rem;
  grid-template-columns: 1.5fr 0.9fr 0.9fr 1fr;
  color: var(--muted);
}

.footer-brand,
.footer-column {
  min-width: 0;
}

.footer-kicker {
  margin-bottom: 0.8rem;
  font-size: 0.76rem;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
}

.footer-title,
.footer-heading {
  color: var(--text);
}

.footer-title {
  max-width: 18ch;
  margin-bottom: 0.9rem;
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 0.94;
  letter-spacing: -0.02em;
}

.footer-heading {
  margin-bottom: 0.95rem;
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: #dfd7cb;
}

.site-footer p,
.footer-column a,
.footer-phone,
.footer-small {
  display: block;
}

.site-footer p {
  margin: 0;
  max-width: 40ch;
  line-height: 1.75;
}

.footer-column a {
  margin-bottom: 0.72rem;
  color: var(--muted);
  transition: color 0.18s ease, transform 0.18s ease;
}

.footer-column a:hover,
.footer-phone:hover {
  color: var(--text);
}

.footer-column a:hover {
  transform: translateX(2px);
}

.footer-contact {
  padding-left: 0.4rem;
}

.footer-phone {
  margin-bottom: 0.9rem;
  font-size: 1.2rem;
  font-weight: 800;
  color: var(--text);
}

.footer-small {
  margin-top: 0.95rem;
  font-size: 0.88rem;
  line-height: 1.7;
  color: #9f978b;
}

.small-note {
  font-size: 0.9rem;
  color: var(--muted);
}

@media (max-width: 1080px) {
  .hero,
  .hero-inner,
  .quote-panel,
  .site-footer,
  .card-grid,
  .city-grid,
  .testimonial-grid,
  .campaign-grid,
  .stat-grid {
    grid-template-columns: 1fr;
  }

  .main-nav {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .header-cta {
    display: none;
  }

  .footer-contact {
    padding-left: 0;
  }

  .project-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 180px;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .album-gallery-card {
    padding: 1.1rem;
  }

  .project-shot,
  .project-shot:nth-child(1),
  .project-shot:nth-child(2),
  .project-shot:nth-child(3),
  .project-shot:nth-child(4),
  .project-shot:nth-child(5),
  .project-shot:nth-child(6) {
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-modal-dialog {
    grid-template-columns: 1fr;
    height: min(980px, calc(100vh - 2rem));
  }

  .gallery-modal-media {
    height: 42vh;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding: 1rem 1rem;
  }

  #app {
    width: 100%;
  }

  .hero,
  .section {
    padding: 1.4rem;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    min-height: auto;
    width: min(var(--max), calc(100% - 1.2rem));
    padding: 4rem 0 1.6rem;
  }

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

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

  .page-hero-inner {
    width: min(var(--max), calc(100% - 1.2rem));
    min-height: auto;
    padding: 4rem 0 1.6rem;
  }

  .brand-mark {
    font-size: 1.55rem;
  }

  .header-cta {
    padding: 0.8rem 1rem;
  }

  .project-gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 260px;
  }

  .photo-gallery-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 0.7rem;
  }

  .album-gallery-head {
    align-items: flex-start;
  }

  .photo-tile {
    aspect-ratio: 1 / 1;
  }

  .project-shot strong {
    max-width: 10ch;
    font-size: clamp(1.8rem, 9vw, 2.6rem);
    -webkit-line-clamp: 3;
  }

  .gallery-modal-copy {
    padding: 5.2rem 1.35rem 1.35rem;
  }

  .gallery-fullscreen-toggle {
    right: 1rem;
    top: 4.5rem;
    min-width: 7.4rem;
  }

  .gallery-thumb-row {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    max-height: 18rem;
  }
}
