:root {
  --bg-base: #F7F5F2;
  --bg-alt: #EEEBE6;
  --bg-glass: rgba(255, 255, 255, 0.55);
  --border-glass: rgba(255, 255, 255, 0.75);
  --shadow-glass: rgba(180, 165, 145, 0.18);
  --ink: #1A1714;
  --ink-secondary: #5C5549;
  --ink-muted: #9C9087;
  --gold: #B8976A;
  --gold-light: #D4B896;
  --white: #FFFFFF;
  --overlay-dark: rgba(26, 23, 20, 0.45);
  --page-gutter: clamp(20px, 5vw, 64px);
  --container: min(1100px, calc(100vw - (var(--page-gutter) * 2)));
  --nav-height: 78px;
  --ease-luxury: cubic-bezier(0.22, 1, 0.36, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: "Jost", sans-serif;
  font-weight: 300;
  background: var(--bg-base);
  color: var(--ink);
  line-height: 1.75;
  overflow-x: hidden;
  cursor: none;
}

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

button,
a,
input,
textarea,
select {
  cursor: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
}

.cursor-ring,
.cursor-dot {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 12000;
  pointer-events: none;
  opacity: 0;
}

.cursor-ring {
  width: 58px;
  height: 58px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(184, 151, 106, 0.78);
  border-radius: 999px;
  color: rgba(247, 245, 242, 0.95);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  mix-blend-mode: difference;
  transition: opacity 0.24s ease, width 0.25s ease, height 0.25s ease, border-color 0.25s ease;
}

.cursor-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  box-shadow: 0 0 16px rgba(184, 151, 106, 0.45);
}

body.cursor-ready .cursor-ring,
body.cursor-ready .cursor-dot {
  opacity: 1;
}

body.cursor-hover .cursor-ring {
  width: 74px;
  height: 74px;
  border-color: rgba(247, 245, 242, 0.95);
}

.glass {
  background: var(--bg-glass);
  backdrop-filter: blur(18px) saturate(160%);
  -webkit-backdrop-filter: blur(18px) saturate(160%);
  border: 1px solid var(--border-glass);
  border-radius: 12px;
  box-shadow: 0 8px 32px var(--shadow-glass);
}

.page-shell {
  min-height: 100dvh;
  padding-top: calc(var(--nav-height) + 38px);
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 999;
  padding: 14px 0;
  transition: padding 0.4s ease;
}

.site-header.is-scrolled {
  padding: 10px 0;
}

.nav-shell {
  width: min(1320px, calc(100vw - (clamp(16px, 3vw, 32px) * 2)));
  margin: 0 auto;
  min-height: var(--nav-height);
  padding: 0 clamp(16px, 3vw, 26px);
  display: grid;
  grid-template-columns: minmax(74px, 120px) minmax(0, 1fr) minmax(74px, 120px);
  align-items: center;
  column-gap: clamp(14px, 3vw, 34px);
  border-bottom: 1px solid var(--gold);
  border-radius: 12px;
  background: rgba(26, 23, 20, 0.66);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  box-shadow: 0 10px 36px rgba(10, 8, 7, 0.08);
  overflow: hidden;
  transition: background 0.4s ease, box-shadow 0.4s ease, min-height 0.4s ease;
}

.site-header.is-scrolled .nav-shell {
  background: rgba(26, 23, 20, 0.84);
  box-shadow: 0 16px 34px rgba(26, 23, 20, 0.1);
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--white);
  justify-self: start;
  min-width: 0;
}

.brand-logo {
  width: clamp(74px, 6vw, 94px);
  height: auto;
  max-height: 72px;
  aspect-ratio: auto;
  object-fit: contain;
  flex-shrink: 0;
}

.page-title,
.card-title,
.quote-block,
.cta-title {
  font-family: "Cormorant Garamond", serif;
}

.nav-links {
  display: flex;
  gap: clamp(18px, 2.8vw, 34px);
  align-items: center;
  justify-content: center;
  list-style: none;
  justify-self: center;
  min-width: 0;
}

.nav-toggle {
  display: none;
  justify-self: end;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  padding: 0;
  transition: transform 0.3s var(--ease-luxury);
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  outline: none;
}

.nav-toggle:active {
  transform: scale(0.97);
}

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after {
  display: block;
  width: 22px;
  height: 1px;
  background: currentColor;
  position: relative;
  transition: transform 0.3s ease, opacity 0.3s ease;
}

.nav-toggle span::before,
.nav-toggle span::after {
  content: "";
  position: absolute;
  left: 0;
}

.nav-toggle span::before {
  top: -7px;
}

.nav-toggle span::after {
  top: 7px;
}

.nav-toggle.is-active span {
  background: transparent;
}

.nav-toggle.is-active span::before {
  top: 0;
  background: var(--white);
  transform: rotate(45deg);
}

.nav-toggle.is-active span::after {
  top: 0;
  background: var(--white);
  transform: rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 998;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(26, 23, 20, 0.72);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.mobile-menu.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.mobile-nav {
  width: min(420px, calc(100vw - 48px));
  display: grid;
  gap: 18px;
  padding: 34px 28px;
  text-align: center;
  color: var(--white);
  background: rgba(26, 23, 20, 0.46);
  border: 1px solid rgba(212, 184, 150, 0.28);
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.mobile-nav a {
  position: relative;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  width: 100%;
  color: var(--white);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

body.nav-lock {
  overflow: hidden;
}

.page-crumbs {
  width: var(--container);
  margin: 0 auto;
  padding: 4px 0 14px;
  color: var(--ink-muted);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.page-crumbs span {
  opacity: 0.7;
  margin: 0 8px;
}

.nav-links a,
.back-link,
.mini-link,
.footer-links a {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 44px;
}

.nav-links a::after,
.mobile-nav a::after,
.back-link::after,
.mini-link::after,
.footer-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 100%;
  height: 1px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.35s ease;
}

.nav-links a:hover::after,
.mobile-nav a:hover::after,
.back-link:hover::after,
.mini-link:hover::after,
.footer-links a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-links a {
  color: rgba(255, 255, 255, 0.94);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-shadow: 0 1px 18px rgba(0, 0, 0, 0.14);
}

.hero-panel {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(24px, 4vw, 38px) 0 clamp(18px, 3vw, 26px);
}

.hero-card {
  position: relative;
  overflow: hidden;
  min-height: 460px;
  border-radius: 8px;
  box-shadow: 0 26px 42px rgba(26, 23, 20, 0.1);
  background-size: cover;
  background-position: center;
}

.hero-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(to bottom, rgba(26, 23, 20, 0.22) 0%, rgba(26, 23, 20, 0.55) 65%, rgba(26, 23, 20, 0.72) 100%);
}

.hero-content {
  position: relative;
  z-index: 1;
  min-height: 460px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: clamp(30px, 5vw, 48px);
  color: var(--white);
}

.eyebrow {
  display: inline-block;
  margin-bottom: 14px;
  color: var(--gold-light);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 11px;
}

.page-title {
  font-size: clamp(42px, 7vw, 72px);
  font-weight: 300;
  line-height: 0.96;
  letter-spacing: -0.02em;
  max-width: 760px;
}

.hero-subtitle {
  max-width: 620px;
  margin-top: 16px;
  color: rgba(255, 255, 255, 0.82);
  font-size: 17px;
}

.content {
  width: var(--container);
  margin: 0 auto;
  padding: clamp(34px, 5vw, 58px) 0 clamp(84px, 10vw, 116px);
}

.content > * + * {
  margin-top: clamp(22px, 4vw, 32px);
}

.meta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 14px;
  margin-bottom: 30px;
  color: var(--ink-muted);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.grid {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(22px, 4vw, 34px);
  align-items: start;
}

.section-stack {
  display: grid;
  gap: clamp(16px, 2vw, 22px);
}

.section-heading {
  max-width: 700px;
}

.section-heading h2 {
  font-family: "Cormorant Garamond", serif;
  font-size: clamp(34px, 5vw, 52px);
  font-weight: 300;
  line-height: 0.98;
  letter-spacing: -0.02em;
}

.section-heading p {
  margin-top: 12px;
  color: var(--ink-secondary);
}

.service-subnav {
  width: var(--container);
  margin: 0 auto;
  padding: 4px 0 8px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.subnav-pill,
.filter-pill {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 42px;
  max-width: 100%;
  padding: 11px 16px;
  line-height: 1.1;
  text-align: center;
  border-radius: 999px;
  background: var(--bg-glass);
  border: 1px solid var(--border-glass);
  box-shadow: 0 8px 24px var(--shadow-glass);
  color: var(--ink-secondary);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  transition: transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
}

.subnav-pill:hover,
.subnav-pill.is-active,
.filter-pill:hover,
.filter-pill.is-active {
  transform: translateY(-1px);
  background: rgba(184, 151, 106, 0.14);
  border-color: rgba(184, 151, 106, 0.32);
  color: var(--ink);
}

.reveal {
  opacity: 0;
  transform: translateY(34px);
  transition:
    opacity 0.8s var(--ease-luxury),
    transform 0.8s var(--ease-luxury);
  transition-delay: calc(var(--i, 0) * 0.1s);
}

.reveal.reveal-image {
  transform: translateY(24px) scale(0.97);
  transition-duration: 1s;
}

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

.panel {
  padding: 28px;
}

.panel h2,
.panel h3 {
  font-family: "Cormorant Garamond", serif;
  font-weight: 300;
  line-height: 1;
  letter-spacing: -0.02em;
}

.panel h2 {
  font-size: clamp(34px, 4vw, 50px);
  margin-bottom: 16px;
}

.panel h3 {
  font-size: 30px;
  margin-bottom: 12px;
}

.panel p + p,
.panel ul + p,
.panel p + ul,
.panel h2 + p,
.panel h3 + p {
  margin-top: 14px;
}

.panel p,
.panel li {
  color: var(--ink-secondary);
}

.panel ul {
  padding-left: 20px;
}

.service-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 34px);
}

.service-gallery-item {
  position: relative;
  overflow: hidden;
  min-height: 300px;
  border-radius: 8px;
  box-shadow: 0 20px 38px rgba(26, 23, 20, 0.12);
  background: var(--bg-alt);
}

.service-gallery-item:nth-child(2) {
  min-height: 360px;
}

.service-gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-luxury), filter 0.5s ease;
}

.service-gallery-item::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(26, 23, 20, 0.66) 0%, rgba(26, 23, 20, 0.18) 55%, rgba(26, 23, 20, 0) 100%);
  opacity: 0.94;
  transition: opacity 0.4s ease;
}

.service-gallery-item:hover img {
  transform: scale(1.04);
  filter: saturate(1.05);
}

.service-gallery-caption {
  position: absolute;
  left: 20px;
  right: 20px;
  bottom: 18px;
  z-index: 1;
  color: var(--white);
}

.service-gallery-caption strong {
  display: block;
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
}

.service-gallery-caption span {
  display: inline-block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 11px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.feature-image {
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(26, 23, 20, 0.08);
}

.feature-image img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.wide-image img {
  aspect-ratio: 16 / 9;
}

.pull-quote {
  margin: 26px 0;
  padding: 24px 26px;
  border-left: 1px solid rgba(184, 151, 106, 0.55);
  background: rgba(255, 255, 255, 0.45);
}

.quote-block {
  font-size: clamp(28px, 4vw, 42px);
  font-style: italic;
  font-weight: 300;
  line-height: 1.08;
  color: var(--ink);
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 34px);
}

.info-card {
  padding: 22px;
}

.card-title {
  font-size: 30px;
  font-weight: 300;
  line-height: 1.02;
  margin-bottom: 10px;
}

.cta-band {
  margin-top: clamp(28px, 5vw, 38px);
  padding: clamp(22px, 4vw, 30px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.cta-title {
  font-size: clamp(34px, 4vw, 50px);
  font-weight: 300;
  line-height: 1;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  min-height: 48px;
  max-width: 100%;
  padding: 15px 22px;
  line-height: 1.1;
  text-align: center;
  white-space: normal;
  border-radius: 999px;
  border: 1px solid rgba(184, 151, 106, 0.44);
  background: rgba(255, 255, 255, 0.55);
  color: var(--ink);
  box-shadow: 0 14px 28px rgba(26, 23, 20, 0.08);
  transition: transform 0.35s var(--ease-luxury), background 0.35s ease;
}

.button:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.75);
}

.button:focus-visible,
.filter-pill:focus-visible,
.subnav-pill:focus-visible,
.portfolio-tile:focus-visible,
.lightbox-close-btn:focus-visible,
.lightbox-nav-btn:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 4px;
}

.button:active,
.filter-pill:active,
.portfolio-tile:active {
  transform: translateY(1px) scale(0.99);
}

.back-link,
.mini-link {
  color: var(--gold);
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.split-gallery {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.split-gallery img {
  aspect-ratio: 4 / 3.3;
  object-fit: cover;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(26, 23, 20, 0.08);
}

.related-services {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(16px, 2vw, 22px);
}

.related-card {
  position: relative;
  overflow: hidden;
  min-height: 260px;
  border-radius: 14px;
  color: var(--white);
  background-size: cover;
  background-position: center;
  box-shadow: 0 18px 36px rgba(26, 23, 20, 0.12);
}

.related-card::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(26, 23, 20, 0.12), rgba(26, 23, 20, 0.78));
}

.related-card-content {
  position: relative;
  z-index: 1;
  min-height: 260px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 24px;
}

.related-card .eyebrow {
  color: rgba(255, 255, 255, 0.72);
  margin-bottom: 10px;
}

.related-card h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 0.98;
}

.related-card p {
  margin-top: 10px;
  max-width: 38ch;
  color: rgba(255, 255, 255, 0.82);
}

.related-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-top: 18px;
  color: var(--gold-light);
  font-size: 12px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.portfolio-filters {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 10px 0 22px;
}

.portfolio-gallery {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: clamp(24px, 2.6vw, 34px);
}

.portfolio-tile {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  box-shadow: 0 18px 34px rgba(26, 23, 20, 0.08);
  min-height: 330px;
  background: linear-gradient(135deg, rgba(184, 151, 106, 0.14), rgba(255, 255, 255, 0.72));
  cursor: pointer;
  transition: transform 0.35s var(--ease-luxury), opacity 0.35s ease;
}

.portfolio-tile:hover {
  transform: translateY(-3px);
}

.portfolio-tile.hidden {
  display: none;
}

.portfolio-tile img {
  width: 100%;
  aspect-ratio: 4 / 4.6;
  min-height: 330px;
  object-fit: cover;
  transition: transform 0.7s var(--ease-luxury);
}

.portfolio-placeholder {
  display: grid;
  place-items: end start;
  padding: 22px;
}

.portfolio-placeholder::before {
  content: "";
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(184, 151, 106, 0.26);
  border-radius: 4px;
}

.portfolio-placeholder .portfolio-tile-overlay,
.portfolio-tile:not(:has(img)) .portfolio-tile-overlay {
  position: relative;
  inset: auto;
  padding: 0;
  background: none;
  color: var(--ink);
}

.portfolio-placeholder .portfolio-tile-overlay p,
.portfolio-tile:not(:has(img)) .portfolio-tile-overlay p {
  color: var(--ink-secondary);
}

.portfolio-status {
  grid-column: 1 / -1;
  padding: 28px;
  color: var(--ink-secondary);
  background: rgba(255, 255, 255, 0.42);
  border: 1px solid rgba(184, 151, 106, 0.18);
  border-radius: 6px;
  text-align: center;
}

.portfolio-tile:hover img {
  transform: scale(1.03);
}

.portfolio-tile-overlay {
  position: absolute;
  inset: auto 0 0;
  padding: 18px 18px 16px;
  background: linear-gradient(180deg, transparent 0%, rgba(26, 23, 20, 0.82) 100%);
  color: var(--white);
}

.portfolio-tile-overlay h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 28px;
  font-weight: 300;
  line-height: 1;
  margin-bottom: 4px;
}

.portfolio-tile-overlay p {
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.76);
}

.portfolio-lightbox {
  position: fixed;
  inset: 0;
  z-index: 120;
  padding: 28px;
  display: grid;
  place-items: center;
  background: rgba(26, 23, 20, 0.94);
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.35s ease, visibility 0.35s ease;
}

.portfolio-lightbox.is-open {
  opacity: 1;
  visibility: visible;
}

.portfolio-lightbox img {
  max-width: 90vw;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 6px;
}

.lightbox-close-btn,
.lightbox-nav-btn {
  position: absolute;
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 999px;
  background: rgba(255,255,255,0.18);
  border: 1px solid rgba(184,151,106,0.4);
  color: var(--gold-light);
  font-size: 22px;
  cursor: pointer;
}

.lightbox-close-btn {
  top: 24px;
  right: 24px;
}

.lightbox-nav-btn.prev {
  left: 24px;
}

.lightbox-nav-btn.next {
  right: 24px;
}

.lightbox-nav-btn,
.lightbox-close-btn {
  top: 50%;
  transform: translateY(-50%);
}

.lightbox-close-btn {
  top: 26px;
  transform: none;
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 24px;
  transform: translateX(-50%);
  width: min(800px, calc(100vw - 80px));
  text-align: center;
  color: rgba(255,255,255,0.84);
}

.lightbox-caption h3 {
  font-family: "Cormorant Garamond", serif;
  font-size: 34px;
  font-weight: 300;
  line-height: 1;
}

.lightbox-caption p {
  margin-top: 6px;
  font-size: 11px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.site-footer,
.footer {
  margin-top: 0;
  padding: clamp(58px, 7vw, 88px) var(--page-gutter);
  background: #15130F;
  color: rgba(247, 245, 242, 0.76);
}

.footer-line {
  display: none;
}

.footer-inner {
  width: min(1240px, 100%);
  margin: 0 auto;
  padding-top: 0;
  display: grid;
  grid-template-columns: minmax(180px, 1fr) minmax(180px, 0.72fr) minmax(260px, 1fr);
  align-items: start;
  gap: clamp(46px, 9vw, 150px);
}

.footer-brand {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  min-height: 132px;
}

.footer-logo {
  width: clamp(86px, 8vw, 118px);
  height: auto;
  object-fit: contain;
  aspect-ratio: auto;
  filter: drop-shadow(0 12px 28px rgba(0, 0, 0, 0.3));
}

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

.footer-heading {
  margin: 0;
  color: var(--gold);
  font-size: 10px;
  font-weight: 500;
  letter-spacing: 0.22em;
  line-height: 1.5;
  text-transform: uppercase;
}

.footer-links,
.footer-social {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-links a,
.footer-social a,
.footer-social span {
  display: inline-flex;
  width: fit-content;
  color: rgba(247, 245, 242, 0.78);
  font-size: 13px;
  font-weight: 400;
  letter-spacing: 0.16em;
  line-height: 1.5;
  text-transform: uppercase;
  transition: color 0.25s ease, transform 0.25s var(--ease-luxury);
}

.footer-links a:hover,
.footer-links a:focus-visible,
.footer-social a:hover,
.footer-social a:focus-visible {
  color: var(--white);
  transform: translateX(3px);
}

@media (max-width: 1024px) {
  :root {
    --page-gutter: clamp(22px, 4vw, 44px);
  }

  .nav-shell {
    grid-template-columns: minmax(72px, 104px) minmax(0, 1fr) minmax(72px, 104px);
  }

  .nav-links {
    gap: clamp(14px, 2vw, 22px);
    font-size: 11px;
    letter-spacing: 0.12em;
  }

  .cards,
  .portfolio-gallery,
  .service-gallery {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 860px) {
  :root {
    --page-gutter: clamp(20px, 5vw, 32px);
    --nav-height: 72px;
  }

  body,
  button,
  a,
  input,
  textarea,
  select {
    cursor: auto;
  }

  .cursor-ring,
  .cursor-dot {
    display: none;
  }

  .nav-shell {
    grid-template-columns: minmax(64px, auto) minmax(0, 1fr) 52px;
    width: calc(100vw - 20px);
    padding: 0 clamp(14px, 4vw, 24px);
  }

  .grid,
  .cards,
  .split-gallery,
  .portfolio-gallery,
  .service-gallery,
  .related-services {
    grid-template-columns: 1fr;
  }

  .service-gallery-item,
  .service-gallery-item:nth-child(2) {
    min-height: 280px;
  }

  .hero-content {
    padding: clamp(24px, 7vw, 32px);
    min-height: 380px;
  }

  .hero-card {
    min-height: 380px;
  }

  .cta-band {
    flex-direction: column;
    align-items: flex-start;
  }

  .button {
    width: 100%;
  }

  .footer-inner {
    grid-template-columns: 1fr;
    justify-items: start;
    gap: 38px;
  }

  .footer-brand {
    justify-content: flex-start;
    min-height: 0;
  }

  .footer-logo {
    width: 86px;
  }

  .nav-links {
    display: none;
  }

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

@media (max-width: 480px) {
  :root {
    --page-gutter: 20px;
  }

  .nav-shell {
    width: calc(100vw - 20px);
    min-height: 72px;
    padding: 0 14px;
  }

  .brand-logo {
    width: 62px;
    height: auto;
    max-height: 58px;
  }

  .page-title {
    font-size: clamp(36px, 12vw, 52px);
  }

  .hero-card,
  .hero-content {
    min-height: 340px;
  }

  .panel {
    padding: 22px;
  }
}
