:root {
  --bg: #0b0b0b;
  --surface: #161616;
  --text: #f3eee6;
  --muted: #c8bcaa;
  --accent: #d0a95b;
  --accent-dark: #a88546;
  --border: #2b2b2b;
  --anchor-offset: 180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scrollbar-width: thin;
  scrollbar-color: #b58e4a #0a0b0f;
}

section[id] {
  scroll-margin-top: var(--anchor-offset);
}

body {
  margin: 0;
  background: #08090c;
  color: var(--text);
  font-family: "Manrope", sans-serif;
  line-height: 1.6;
}

html::-webkit-scrollbar,
body::-webkit-scrollbar {
  width: 10px;
}

html::-webkit-scrollbar-track,
body::-webkit-scrollbar-track {
  background: #0a0b0f;
}

html::-webkit-scrollbar-thumb,
body::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d0a95b 0%, #8f6f3d 100%);
  border-radius: 999px;
  border: 2px solid #0a0b0f;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0;
  z-index: 1200;
  background: linear-gradient(90deg, #f4d38f 0%, #b5863e 100%);
  box-shadow: 0 0 12px rgba(212, 177, 108, 0.55);
}

img {
  max-width: 100%;
  display: block;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.section {
  padding: 5rem 0;
}

.reveal-on-scroll {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  will-change: opacity, transform;
}

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

@media (prefers-reduced-motion: reduce) {
  .reveal-on-scroll {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: rgba(10, 11, 15, 0.18);
  border-bottom: 1px solid rgba(201, 159, 86, 0.22);
  backdrop-filter: blur(3px);
}

.masthead {
  padding: 0.95rem 0 0.75rem;
  position: relative;
}

.brand-mark {
  position: absolute;
  left: 0;
  top: 1.5rem;
  color: #86b7d8;
  font-size: 1.1rem;
  font-weight: 700;
  text-decoration: none;
  letter-spacing: 0.02em;
}

.brand-mark span {
  color: var(--accent);
  text-transform: uppercase;
  font-size: 0.75rem;
  margin-left: 0.3rem;
}

.brand-center {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.brand-script {
  display: inline-block;
  text-decoration: none;
  color: #d3ad62;
  font-family: "Parisienne", cursive;
  font-size: clamp(2.3rem, 6vw, 4.2rem);
  line-height: 1;
}

.brand-sub {
  margin: 0.15rem 0 1.05rem;
  color: #e0be7c;
  font-family: "Manrope", sans-serif;
  letter-spacing: 0.28em;
  font-size: clamp(0.72rem, 1.45vw, 0.92rem);
  font-weight: 700;
  text-transform: uppercase;
  line-height: 1;
}

.nav {
  display: flex;
  justify-content: center;
}

.nav-links {
  display: flex;
  gap: clamp(1rem, 3vw, 2.2rem);
  list-style: none;
  padding: 0;
  margin: 0;
}

.nav-links a {
  color: #c59c53;
  text-decoration: none;
  letter-spacing: 0.01em;
  font-size: clamp(1rem, 2.3vw, 1.2rem);
}

.nav-links a:hover {
  color: #ebc77f;
}

.nav-toggle {
  display: none;
  background: transparent;
  color: #cba15c;
  border: 1px solid #8f6f3d;
  padding: 0.4rem 0.7rem;
}

.hero {
  position: relative;
  background: #0a0b0f;
  padding: 0;
}

.hero-stage {
  width: 100%;
  margin: 0 auto;
}

.hero-banner {
  position: relative;
  margin: 0;
}

.hero-banner img {
  width: 100%;
  height: auto;
}

.hero-banner-copy {
  position: absolute;
  left: clamp(1rem, 3vw, 2rem);
  bottom: clamp(8rem, 14vw, 10.6rem);
  z-index: 1;
  max-width: min(42rem, 70%);
  text-shadow: 0 1px 8px rgba(0, 0, 0, 0.45);
}

.hero-banner-kicker,
.hero-banner-subline {
  margin: 0;
  color: rgba(250, 245, 236, 0.92);
  opacity: 0;
  transform: translateY(10px);
}

.hero-banner-copy.is-animated .hero-banner-kicker,
.hero-banner-copy.is-animated .hero-banner-subline {
  animation: hero-copy-fade 1.6s ease-out forwards;
}

.hero-banner-kicker {
  font-family: "Manrope", sans-serif;
  font-size: 13pt;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  line-height: 1.2;
  animation-delay: 0.2s;
}

.hero-banner-subline {
  margin-top: 0.2rem;
  font-family: "Parisienne", cursive;
  font-size: 13pt;
  font-style: normal;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 1.25;
  animation-delay: 0.45s;
}

@keyframes hero-copy-fade {
  from {
    opacity: 0;
    transform: translateY(10px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (prefers-reduced-motion: reduce) {
  .hero-banner-kicker,
  .hero-banner-subline {
    opacity: 1;
    transform: none;
    animation: none;
  }
}

.hero-info {
  margin-top: 1rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0;
  border-top: 1px solid #3b3120;
  border-bottom: 1px solid #3b3120;
}

.hero-copy {
  padding: 1.2rem 1rem 1.25rem;
  color: #c9a96a;
}

.hero-copy:first-child {
  border-right: 1px solid #3b3120;
}

.hero-copy h2 {
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.6rem, 3vw, 2rem);
  color: #c8a05a;
  margin-bottom: 0.7rem;
}

.hero-copy p,
.offer-list li {
  color: #b99a64;
  font-size: clamp(0.95rem, 1.6vw, 1.07rem);
  margin: 0;
  line-height: 1.55;
}

.offer-list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 0.85rem;
}

.offer-list li::before {
  content: "* ";
}

.hero-contact {
  display: flex;
  justify-content: center;
  gap: 2rem;
  border-bottom: 1px solid #3b3120;
  padding: 0.65rem 0;
}

.hero-contact a {
  color: #cba15c;
  text-decoration: none;
  font-size: clamp(0.95rem, 1.8vw, 1.1rem);
}

.eyebrow {
  color: var(--accent);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  font-size: 0.75rem;
  font-weight: 700;
}

h1,
h2,
h3 {
  font-family: "Cormorant Garamond", serif;
  line-height: 1.15;
  margin: 0 0 0.8rem;
}

h1 {
  font-size: clamp(2.2rem, 5vw, 4rem);
}

h2 {
  font-size: clamp(1.8rem, 4vw, 3rem);
}

h3 {
  font-size: clamp(1.4rem, 3vw, 1.8rem);
  margin-top: 2.5rem;
}

.btn {
  display: inline-block;
  padding: 0.75rem 1.25rem;
  background: #b79256;
  color: #fff;
  font-weight: 700;
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 0.25s ease;
}

.btn:hover {
  background: #9e7f4a;
}

.about {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: 2.5rem;
  align-items: stretch;
}

.about-image-wrap {
  border: 1px solid rgba(208, 169, 91, 0.24);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.04), rgba(255, 255, 255, 0.02));
  padding: 1rem;
  border-radius: 1.4rem;
  box-shadow: 0 28px 60px rgba(0, 0, 0, 0.28);
}

.about-image-wrap img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border-radius: 1rem;
}

.about-text {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 1rem;
  padding: 1.5rem 1.75rem;
  border: 1px solid rgba(208, 169, 91, 0.18);
  border-radius: 1.4rem;
  background:
    radial-gradient(circle at top right, rgba(208, 169, 91, 0.12), transparent 36%),
    linear-gradient(180deg, rgba(24, 24, 24, 0.96), rgba(13, 13, 13, 0.96));
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.2);
}

.about-text .eyebrow,
.about-text h2 {
  text-align: left;
}

.about-heading h2 {
  margin: 0;
}

.about-role {
  margin: 0.3rem 0 0;
  color: var(--accent);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.88rem;
}

.about-lead {
  margin: 0;
  font-size: 1.08rem;
  line-height: 1.8;
  color: #f5efe6;
}

.about-highlights {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
}

.about-highlights span {
  padding: 0.45rem 0.85rem;
  border-radius: 999px;
  border: 1px solid rgba(208, 169, 91, 0.28);
  background: rgba(208, 169, 91, 0.08);
  color: #f2ddba;
  font-size: 0.9rem;
  letter-spacing: 0.02em;
}

.about-text p:not(.eyebrow):not(.about-role):not(.about-lead) {
  margin: 0;
  color: var(--muted);
  text-align: left;
  text-wrap: pretty;
}

.portfolio {
  background: #121212;
}

.gallery-carousel {
  width: min(1120px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 0.65rem;
}

.gallery-viewport {
  overflow: hidden;
}

.gallery-grid {
  width: 100%;
  margin: 0;
  display: flex;
  flex-wrap: nowrap;
  gap: 0.75rem;
  transition: transform 0.35s ease;
  will-change: transform;
}

.gallery-tile {
  position: relative;
  overflow: hidden;
  flex: 0 0 calc((100% - 2.25rem) / 4);
  border: 1px solid #2b2318;
  background: #0d0f15;
  transition: transform 0.28s ease, opacity 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform, opacity;
}

.gallery-tile-action {
  cursor: pointer;
  border-color: #6f5935;
  box-shadow: inset 0 0 0 1px rgba(200, 160, 90, 0.18);
}

.gallery-grid:hover .gallery-tile {
  opacity: 0.55;
  transform: scale(0.95);
}

.gallery-grid .gallery-tile:hover,
.gallery-grid .gallery-tile:focus-within {
  opacity: 1;
  transform: translateY(-6px) scale(1.045);
  border-color: #c8a05a;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.42);
  z-index: 3;
}

.gallery-tile-action:focus-visible {
  border-color: #c8a05a;
  outline: none;
}

.gallery-tile-action.is-active {
  opacity: 1;
  transform: translateY(-6px) scale(1.03);
  border-color: #e1bc7b;
  box-shadow: 0 18px 28px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(225, 188, 123, 0.35);
  z-index: 4;
}

.gallery-tile::before {
  content: "See More";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.08), rgba(10, 12, 18, 0.62));
  color: #f4d38f;
  font-family: "Manrope", sans-serif;
  font-size: 0.95rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.gallery-tile:hover::before {
  opacity: 1;
}

.gallery-tile img {
  width: 100%;
  height: 380px;
  object-fit: cover;
}

.gallery-tile h3 {
  margin: 0;
  padding: 0.6rem 0.75rem 0.65rem;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 4.2rem;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.05rem, 1.7vw, 1.25rem);
  font-weight: 500;
  color: #f2eee6;
  background: #2a241b;
}

.gallery-tile-title {
  display: block;
  flex: 1;
  text-align: center;
  line-height: 1.1;
}

.gallery-tile-icon {
  display: inline-flex;
  flex: 0 0 auto;
  align-items: center;
  justify-content: center;
  width: 1.8rem;
  height: 1.8rem;
  border: 1px solid rgba(215, 176, 106, 0.45);
  border-radius: 999px;
  color: #d7b06a;
  background: rgba(14, 16, 22, 0.55);
  font-size: 0.92rem;
  transition: transform 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.gallery-tile-action:hover .gallery-tile-icon,
.gallery-tile-action:focus-within .gallery-tile-icon,
.gallery-tile-action.is-active .gallery-tile-icon {
  transform: translateX(2px) scale(1.05);
  background: rgba(215, 176, 106, 0.14);
  border-color: rgba(225, 188, 123, 0.78);
  color: #f4d38f;
}

.gallery-nav-btn {
  width: 2.25rem;
  height: 3rem;
  border: 1px solid #8f6f3d;
  background: rgba(13, 15, 22, 0.85);
  color: #d4b16c;
  font-size: 1.65rem;
  line-height: 1;
  cursor: pointer;
  transition: background 0.2s ease, border-color 0.2s ease, opacity 0.2s ease;
}

.gallery-nav-btn:hover {
  background: rgba(27, 31, 44, 0.95);
  border-color: #c9a25f;
}

.gallery-nav-btn:disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

.sub-gallery {
  width: min(980px, 100%);
  margin: 1rem auto 0;
  padding: 0.9rem;
  border: 1px solid #3b3120;
  background: linear-gradient(180deg, rgba(17, 19, 25, 0.95), rgba(10, 12, 18, 0.95));
}

.sub-gallery-summary {
  margin: 0 auto 0.95rem;
  padding: 0 0 0.8rem;
  border-bottom: 1px solid rgba(201, 159, 86, 0.28);
  text-align: center;
}

.sub-gallery-summary h3 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1.15rem, 2.1vw, 1.4rem);
  font-weight: 600;
  letter-spacing: 0.01em;
  color: #c8a05a;
}

.sub-gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}

.sub-gallery.is-hidden {
  display: none;
}

.sub-gallery-tile {
  position: relative;
  overflow: hidden;
  margin: 0;
  border: 1px solid #2b2318;
  background: #0d0f15;
  cursor: pointer;
  transition: opacity 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform, opacity;
}

.sub-gallery-grid:hover .sub-gallery-tile {
  opacity: 0.72;
}

.sub-gallery-grid .sub-gallery-tile:hover,
.sub-gallery-grid .sub-gallery-tile:focus-within {
  opacity: 1;
  border-color: #c8a05a;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
  animation: sub-gallery-vibrate 0.42s ease-in-out infinite alternate;
  z-index: 3;
}

.sub-gallery-tile::before {
  content: "\f06e";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.08), rgba(10, 12, 18, 0.62));
  color: #f4d38f;
  font-family: "Font Awesome 6 Free";
  font-size: 1.35rem;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.sub-gallery-tile:hover::before,
.sub-gallery-tile:focus-within::before {
  opacity: 1;
}

@keyframes sub-gallery-vibrate {
  from {
    transform: translate3d(-1px, 0, 0);
  }

  to {
    transform: translate3d(1px, -1px, 0);
  }
}

.sub-gallery-tile img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.sub-gallery-tile h4 {
  margin: 0;
  padding: 0.6rem 0.75rem 0.65rem;
  text-align: center;
  font-family: "Manrope", sans-serif;
  font-size: clamp(1rem, 1.6vw, 1.15rem);
  font-weight: 500;
  color: #c8a05a;
  background: #2a241b;
  line-height: 1.2;
}

.sub-title-main {
  display: block;
}

.sub-title-sub {
  display: block;
  margin-top: 0.2rem;
  font-size: 1em;
  font-weight: 400;
  font-style: italic;
  font-family: "Parisienne", cursive;
  letter-spacing: 0.02em;
  color: #e9d5ad;
}

.gallery-modal {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.gallery-modal.is-hidden {
  display: none;
}

.gallery-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.7);
}

.gallery-modal-dialog {
  position: relative;
  width: min(1320px, 96vw);
  max-height: 90vh;
  overflow: auto;
  background: #0c0e14;
  border: 1px solid #3b3120;
  padding: 1rem 1rem 1.1rem;
  scroll-behavior: smooth;
  overscroll-behavior: contain;
  scrollbar-width: thin;
  scrollbar-color: #8f6f3d #141821;
}

.gallery-modal-dialog::-webkit-scrollbar {
  width: 10px;
}

.gallery-modal-dialog::-webkit-scrollbar-track {
  background: #141821;
  border-left: 1px solid #2b2318;
}

.gallery-modal-dialog::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d0a95b, #8f6f3d);
  border-radius: 999px;
  border: 2px solid #141821;
}

.gallery-modal-close {
  position: sticky;
  top: 0.4rem;
  z-index: 2;
  margin-left: auto;
  margin-bottom: 0.35rem;
  width: 2.25rem;
  height: 2.25rem;
  border: 1px solid rgba(208, 169, 91, 0.7);
  border-radius: 999px;
  background: radial-gradient(circle at 30% 30%, #1e2330, #11151e 72%);
  color: #e7c684;
  font-size: 1rem;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 6px 16px rgba(0, 0, 0, 0.35);
  transition: transform 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.gallery-modal-close:hover {
  transform: rotate(90deg) scale(1.05);
  border-color: #f0ce89;
  color: #f6db9f;
}

.gallery-modal-dialog h3 {
  margin: 0 2.2rem 0.5rem 0;
  color: #d4b16c;
  font-size: 32px;
}

.gallery-modal-top {
  display: grid;
  grid-template-columns: 7fr 3fr;
  gap: 1.25rem;
  margin-bottom: 1rem;
  align-items: stretch;
  height: min(70vh, 720px);
}

.gallery-modal-hero {
  position: relative;
  margin: 0;
  border: 1px solid #2b2318;
  background: #0a0b0f;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  min-height: 0;
  transition: opacity 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform, opacity;
}

.gallery-modal-hero:hover,
.gallery-modal-hero:focus-within {
  border-color: #c8a05a;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
  animation: sub-gallery-vibrate 0.42s ease-in-out infinite alternate;
}

.gallery-modal-hero::before {
  content: "\f06e";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.08), rgba(10, 12, 18, 0.62));
  color: #f4d38f;
  font-family: "Font Awesome 6 Free";
  font-size: 1.6rem;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.gallery-modal-hero:hover::before,
.gallery-modal-hero:focus-within::before {
  opacity: 1;
}

#gallery-modal-hero-image {
  width: 100%;
  height: 100%;
  object-fit: contain;
  cursor: zoom-in;
}

.gallery-modal-meta {
  display: flex;
  flex-direction: column;
  height: 100%;
  min-height: 0;
  padding: 1.1rem;
  border: 1px solid rgba(208, 169, 91, 0.16);
  background: linear-gradient(180deg, rgba(26, 29, 38, 0.96), rgba(14, 16, 22, 0.98));
  overflow: hidden;
}

.gallery-modal-description {
  color: #c6ab79;
  margin: 0;
  font-size: 18px;
  white-space: pre-line;
  overflow-y: auto;
  flex: 1 1 auto;
  min-height: 0;
  padding-right: 0.5rem;
  scrollbar-width: thin;
  scrollbar-color: #8f6f3d #141821;
}

.gallery-modal-description::-webkit-scrollbar {
  width: 10px;
}

.gallery-modal-description::-webkit-scrollbar-track {
  background: #141821;
}

.gallery-modal-description::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #d0a95b, #8f6f3d);
  border-radius: 999px;
  border: 2px solid #141821;
}

.gallery-modal-grid {
  column-count: 3;
  column-gap: 0.75rem;
}

.gallery-modal-item {
  position: relative;
  overflow: hidden;
  break-inside: avoid;
  margin: 0 0 0.75rem;
  border: 1px solid #2b2318;
  background: #0a0b0f;
  transition: opacity 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
  will-change: transform, opacity;
}

.gallery-modal-grid:hover .gallery-modal-item {
  opacity: 0.72;
}

.gallery-modal-grid .gallery-modal-item:hover,
.gallery-modal-grid .gallery-modal-item:focus-within {
  opacity: 1;
  border-color: #c8a05a;
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.24);
  animation: sub-gallery-vibrate 0.42s ease-in-out infinite alternate;
  z-index: 2;
}

.gallery-modal-item::before {
  content: "\f06e";
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(180deg, rgba(10, 12, 18, 0.08), rgba(10, 12, 18, 0.62));
  color: #f4d38f;
  font-family: "Font Awesome 6 Free";
  font-size: 1.35rem;
  font-weight: 900;
  opacity: 0;
  transition: opacity 0.28s ease;
  pointer-events: none;
}

.gallery-modal-item:hover::before,
.gallery-modal-item:focus-within::before {
  opacity: 1;
}

.gallery-modal-grid img {
  width: 100%;
  height: auto;
  object-fit: contain;
  background: #0a0b0f;
  cursor: zoom-in;
}

.image-viewer {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 1rem;
}

.image-viewer.is-hidden {
  display: none;
}

.image-viewer-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.9);
}

.image-viewer-stage {
  position: relative;
  z-index: 1;
  width: min(1400px, 96vw);
  height: min(92vh, 920px);
  display: flex;
  align-items: center;
  justify-content: center;
}

#image-viewer-image {
  max-width: 100%;
  max-height: 100%;
  width: auto;
  height: auto;
  object-fit: contain;
  border: 1px solid #3b3120;
  background: #0b0c10;
}

.image-viewer-nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 2.4rem;
  height: 3rem;
  border: 1px solid #8f6f3d;
  background: rgba(13, 15, 22, 0.85);
  color: #d4b16c;
  font-size: 1.8rem;
  line-height: 1;
  cursor: pointer;
}

.image-viewer-prev {
  left: 0.6rem;
}

.image-viewer-next {
  right: 0.6rem;
}

.image-viewer-close {
  position: absolute;
  top: 0.4rem;
  right: 0.4rem;
  width: 2rem;
  height: 2rem;
  border: 1px solid #8f6f3d;
  background: rgba(13, 15, 22, 0.9);
  color: #d4b16c;
  cursor: pointer;
}

.gallery {
  margin-top: 1.1rem;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
}

.shoot-section {
  margin-top: 2.5rem;
  border: 1px solid var(--border);
  background: linear-gradient(140deg, rgba(255, 255, 255, 0.03), rgba(255, 255, 255, 0.01));
  padding: 1.25rem;
}

.shoot-layout {
  display: grid;
  grid-template-columns: 1.1fr 1fr;
  gap: 1.75rem;
  align-items: center;
}

.shoot-layout.reverse .shoot-collage {
  order: 2;
}

.shoot-layout.reverse .shoot-info {
  order: 1;
}

.shoot-collage {
  position: relative;
  min-height: 460px;
}

.photo-frame {
  position: absolute;
  width: clamp(190px, 30vw, 290px);
  padding: 0.7rem;
  border: 1px solid rgba(255, 255, 255, 0.28);
  background: rgba(230, 230, 230, 0.1);
  backdrop-filter: blur(7px);
  box-shadow: 0 20px 35px rgba(0, 0, 0, 0.34);
  margin: 0;
  transition: transform 0.35s ease, box-shadow 0.35s ease;
}

.photo-frame:nth-child(1) {
  left: 7%;
  top: 19%;
  transform: rotate(-7deg);
  z-index: 1;
}

.photo-frame:nth-child(2) {
  left: 43%;
  top: 18%;
  transform: rotate(6deg);
  z-index: 1;
}

.photo-frame:nth-child(3) {
  left: 24%;
  top: 6%;
  transform: rotate(-1deg);
  z-index: 4;
}

.photo-frame:nth-child(4) {
  left: 45%;
  top: 44%;
  transform: rotate(7deg);
  z-index: 1;
}

.photo-frame:nth-child(5) {
  left: 4%;
  top: 25%;
  transform: rotate(-8deg);
  z-index: 2;
}

.photo-frame:hover {
  transform: scale(1.03) rotate(0deg);
  box-shadow: 0 24px 40px rgba(0, 0, 0, 0.42);
  z-index: 5;
}

.photo-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.shoot-collage.expanded {
  min-height: auto;
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  gap: 0.75rem;
}

.shoot-collage.expanded .photo-frame {
  position: relative;
  left: auto;
  top: auto;
  transform: rotate(0deg);
  width: calc(50% - 0.4rem);
}

.shoot-description {
  max-width: 72ch;
  color: var(--muted);
  margin-bottom: 1rem;
}

.photo-frame.is-hidden {
  display: none;
}

.btn-secondary {
  margin-top: 1rem;
  position: relative;
  padding-right: 2.8rem;
  background: linear-gradient(135deg, rgba(208, 169, 91, 0.14), rgba(208, 169, 91, 0.03));
  border: 1px solid rgba(208, 169, 91, 0.6);
  border-radius: 999px;
  color: #e6c88f;
  letter-spacing: 0.02em;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.25);
  transition: transform 0.2s ease, background 0.2s ease, border-color 0.2s ease;
}

.btn-secondary:hover {
  background: linear-gradient(135deg, rgba(208, 169, 91, 0.24), rgba(208, 169, 91, 0.09));
  border-color: rgba(208, 169, 91, 0.85);
  transform: translateY(-1px);
}

.btn-secondary::before {
  content: "";
  position: absolute;
  right: 0.55rem;
  top: 50%;
  width: 1.65rem;
  height: 1.65rem;
  border-radius: 999px;
  border: 1px solid rgba(208, 169, 91, 0.65);
  transform: translateY(-50%);
}

.btn-secondary::after {
  content: ">";
  position: absolute;
  right: 1.08rem;
  top: 50%;
  font-weight: 700;
  color: #f1dfbe;
  transform: translateY(-52%);
  transition: transform 0.2s ease;
}

.btn-secondary.is-expanded::after {
  content: "^";
  right: 1.04rem;
}

.service-grid {
  margin-top: 1.4rem;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.service-grid article {
  background: var(--surface);
  border: 1px solid var(--border);
  padding: 1rem;
}

.service-grid article p {
  margin: 0 0 0.8rem;
}

.service-grid article p:last-child {
  margin-bottom: 0;
}

.contact {
  background: linear-gradient(to bottom, #111, #090909);
}

.contact-wrap {
  max-width: 880px;
  text-align: center;
}

.contact-links {
  display: flex;
  justify-content: center;
  gap: 0.9rem;
  margin-top: 1rem;
}

.contact-content .eyebrow {
  text-align: center;
}

.contact-content h2 {
  margin-bottom: 0.6rem;
}

.contact-lead {
  margin: 0 auto 1.35rem;
  max-width: 62ch;
  color: #d7d1c6;
  font-size: clamp(1rem, 2.2vw, 1.15rem);
}

.contact-cta {
  display: block;
  width: min(520px, 100%);
  margin: 0 auto;
  padding: 0.75rem 1rem;
  background: rgba(203, 161, 92, 0.78);
  border: 1px solid rgba(231, 206, 162, 0.5);
  color: #0f1013;
  text-decoration: none;
  font-size: clamp(1.25rem, 2.5vw, 1.65rem);
  font-weight: 600;
  letter-spacing: 0.02em;
  transition: background 0.2s ease, transform 0.2s ease;
}

.contact-cta:hover {
  background: rgba(219, 179, 112, 0.9);
  transform: translateY(-1px);
}

.contact-icon {
  width: 46px;
  height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--text);
  text-decoration: none;
  background: rgba(15, 16, 20, 0.86);
  border: 1px solid rgba(201, 159, 86, 0.35);
  border-radius: 999px;
  transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
}

.contact-icon:hover {
  border-color: #e4c184;
  background: rgba(30, 32, 39, 0.92);
  transform: translateY(-2px);
}

.icon {
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
}

.contact-icon-symbol {
  color: #d2a75f;
  font-size: 1.08rem;
  line-height: 1;
}

.contact-icon:hover .contact-icon-symbol {
  color: #f0cf93;
}

.site-footer {
  border-top: 1px solid var(--border);
  padding: 1rem 0 2rem;
  text-align: center;
  color: var(--muted);
}

.back-to-top {
  position: fixed;
  right: 1.5rem;
  bottom: 1.5rem;
  width: 3.15rem;
  height: 3.15rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(212, 177, 108, 0.42);
  border-radius: 999px;
  background: rgba(12, 14, 20, 0.9);
  color: #d7b06a;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.34);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: opacity 0.22s ease, visibility 0.22s ease, transform 0.22s ease, border-color 0.22s ease, background 0.22s ease, color 0.22s ease;
  z-index: 980;
}

.back-to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover,
.back-to-top:focus-visible {
  border-color: rgba(240, 207, 147, 0.9);
  background: rgba(22, 25, 34, 0.98);
  color: #f0cf93;
}

.back-to-top:focus-visible {
  outline: none;
}

.cursor-trail {
  position: fixed;
  top: 0;
  left: 0;
  width: 14px;
  height: 14px;
  margin-left: -7px;
  margin-top: -7px;
  border-radius: 999px;
  pointer-events: none;
  z-index: 9999;
  background: radial-gradient(circle at 30% 30%, #ffe3b6, #d9a65e 58%, rgba(217, 166, 94, 0));
  box-shadow: 0 0 16px rgba(217, 166, 94, 0.5);
}

@keyframes fadeup {
  from {
    opacity: 0;
    transform: translateY(16px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@media (max-width: 900px) {
  .gallery-tile {
    flex-basis: calc((100% - 0.75rem) / 2);
  }

  .gallery-tile img {
    height: 330px;
  }

  .gallery-modal-top {
    grid-template-columns: 1fr;
    height: auto;
  }

  .gallery-modal-hero {
    min-height: 230px;
  }

  .gallery-modal-meta {
    padding: 0;
    border: 0;
    background: transparent;
  }

  .gallery-modal-description {
    max-height: 36vh;
  }

  .gallery-modal-grid {
    column-count: 2;
  }

  .hero-info {
    grid-template-columns: 1fr;
  }

  .shoot-layout {
    grid-template-columns: 1fr;
  }

  .shoot-collage {
    min-height: 390px;
  }

  .service-grid,
  .contact-wrap {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 760px) {
  .hero-banner-copy {
    left: 0.85rem;
    right: 0.85rem;
    bottom: 7.2rem;
    max-width: none;
  }

  .hero-banner-kicker {
    font-size: 8pt;
    letter-spacing: 0.06em;
  }

  .hero-banner-subline {
    font-size: 9pt;
  }

  .gallery-carousel {
    gap: 0.45rem;
  }

  .gallery-nav-btn {
    width: 2rem;
    height: 2.8rem;
  }

  .gallery-tile {
    flex-basis: 100%;
  }

  .gallery-tile img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .sub-gallery-grid {
    grid-template-columns: 1fr;
  }

  .sub-gallery-tile img {
    height: auto;
    aspect-ratio: 4 / 5;
  }

  .gallery-modal-grid {
    column-count: 1;
  }

  .brand-mark {
    position: static;
    display: block;
    text-align: center;
    margin-bottom: 0.7rem;
  }

  .brand-sub {
    margin-bottom: 0.9rem;
  }

  .hero-copy:first-child {
    border-right: 0;
    border-bottom: 1px solid #3b3120;
  }

  .hero-contact {
    flex-direction: column;
    align-items: center;
    gap: 0.3rem;
  }

  .photo-frame {
    width: min(72vw, 270px);
  }

  .shoot-collage.expanded .photo-frame {
    width: 100%;
  }

  .about {
    grid-template-columns: 1fr;
  }

  .about-text {
    padding: 1.25rem;
  }

  .about-text .eyebrow,
  .about-text h2,
  .about-role,
  .about-lead,
  .about-text p:not(.eyebrow):not(.about-role):not(.about-lead) {
    text-align: center;
  }

  .about-highlights {
    justify-content: center;
  }

  .nav-toggle {
    display: block;
    margin: 0 auto;
  }

  .nav-links {
    margin-top: 0.8rem;
    width: min(280px, 90vw);
    background: #11131a;
    border: 1px solid #3b3120;
    padding: 1rem;
    flex-direction: column;
    display: none;
  }

  .nav-links.open {
    display: flex;
  }

  .back-to-top {
    right: 1rem;
    bottom: 1rem;
    width: 2.9rem;
    height: 2.9rem;
  }
}
