:root {
  --void: #080808;
  --deep: #0f0f0f;
  --surface: #161616;
  --lift: #1e1e1e;
  --border: rgba(255, 255, 255, .07);
  --border2: rgba(255, 255, 255, .12);
  --bone: #f0ece4;
  --gold: #c9a96e;
  --gold2: #e8c98a;
  --muted: rgba(240, 236, 228, .45);
  --muted2: rgba(240, 236, 228, .65);
  --red: #b5361e;
  --ease: cubic-bezier(.4, 0, .2, 1);
}

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

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

body {
  font-family: 'Syne', sans-serif;
  background: var(--void);
  color: var(--bone);
  overflow-x: hidden
}

body.menu-open {
  overflow: hidden
}

body::before {
  content: '';
  position: fixed;
  inset: 0;
  z-index: 9999;
  pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
  opacity: .55;
  mix-blend-mode: overlay
}

.label {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem
}

.label-line {
  width: 32px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0
}

.label-text {
  font-family: 'Syne Mono', monospace;
  font-size: .65rem;
  letter-spacing: .25em;
  text-transform: uppercase;
  color: var(--gold)
}

.section-h {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.5rem, 4vw, 4rem);
  font-weight: 300;
  line-height: 1.1;
  letter-spacing: -.01em;
  margin-bottom: 2rem;
  color: var(--bone)
}

.section-h em {
  font-style: italic;
  color: var(--gold)
}

.body-text {
  font-size: .9rem;
  line-height: 1.9;
  color: var(--muted);
  margin-bottom: 1.25rem
}

.divider {
  height: 1px;
  background: var(--border);
  margin: 2.5rem 0
}

.pricing-label-center {
  justify-content: center
}

.pricing-title-offset {
  margin-top: 1rem
}

.btn-gld,
.btn-outline-w {
  display: inline-flex;
  align-items: center;
  gap: .75rem;
  padding: .9rem 2rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-decoration: none;
  cursor: pointer;
  font-family: 'Syne', sans-serif
}

.btn-gld {
  background: var(--gold);
  color: var(--void);
  border: none;
  transition: background .3s, gap .3s
}

.btn-gld:hover {
  background: var(--gold2);
  gap: 1.1rem
}

.btn-outline-w {
  background: transparent;
  color: var(--bone);
  border: 1px solid rgba(240, 236, 228, .22);
  transition: border-color .3s, color .3s
}

.btn-outline-w:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.will-animate.reveal {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal.visible {
  opacity: 1 !important;
  transform: none !important
}

.will-animate.reveal-x {
  opacity: 0;
  transform: translateX(-36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal-x.visible {
  opacity: 1 !important;
  transform: none !important
}

.will-animate.reveal-xr {
  opacity: 0;
  transform: translateX(36px);
  transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal-xr.visible {
  opacity: 1 !important;
  transform: none !important
}

nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.75rem 3rem;
  transition: all .5s ease
}

nav.scrolled {
  padding: 1rem 3rem;
  background: rgba(8, 8, 8, .9);
  backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border)
}

.logo,
.f-logo {
  text-decoration: none;
  display: flex;
  flex-direction: column;
  line-height: 1
}

.logo {
  gap: .1rem
}

.f-logo {
  gap: .15rem;
  margin-bottom: 1.25rem;
  display: inline-flex
}

.logo-top,
.f-logo .logo-top {
  font-family: 'Cormorant Garamond', serif;
  font-weight: 700;
  letter-spacing: .04em;
  color: var(--bone);
  display: block
}

.logo-top {
  font-size: 1.35rem
}

.f-logo .logo-top {
  font-size: 1.75rem
}

.logo-top em,
.f-logo .logo-top em {
  font-style: italic;
  color: var(--gold)
}

.logo-bottom,
.f-logo .logo-bottom {
  font-family: 'Syne Mono', monospace;
  font-size: .48rem;
  letter-spacing: .35em;
  text-transform: uppercase;
  color: var(--muted)
}

.logo-bottom {
  display: block;
  padding-left: .08em
}

.f-logo .logo-bottom {
  display: block
}

.nav-links {
  display: flex;
  gap: 2.5rem;
  list-style: none
}

.nav-links a {
  font-size: .7rem;
  font-weight: 600;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--muted);
  text-decoration: none;
  transition: color .3s
}

.nav-links a:hover {
  color: var(--bone)
}

.nav-book {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  padding: .7rem 1.2rem;
  border: none;
  cursor: pointer;
  font-family: 'Syne', sans-serif;
  white-space: nowrap;
  transition: background .3s
}

.nav-book:hover {
  background: var(--gold2)
}

.hamburger {
  display: none;
  position: relative;
  z-index: 520;
  width: 44px;
  height: 44px;
  cursor: pointer;
  background: none;
  border: none;
  padding: 0;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background .3s
}

.hamburger:hover {
  background: rgba(240, 236, 228, .06)
}

.hamburger span {
  position: absolute;
  width: 24px;
  height: 1.5px;
  background: var(--bone);
  display: block;
  transition: transform .32s var(--ease), opacity .2s var(--ease), background .3s
}

.hamburger span:nth-child(1) {
  transform: translateY(-6px)
}

.hamburger span:nth-child(2) {
  transform: translateY(0)
}

.hamburger span:nth-child(3) {
  transform: translateY(6px)
}

.hamburger.is-active span:nth-child(1) {
  transform: rotate(45deg)
}

.hamburger.is-active span:nth-child(2) {
  opacity: 0
}

.hamburger.is-active span:nth-child(3) {
  transform: rotate(-45deg)
}

.mobile-menu {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 490;
  background: rgba(8, 8, 8, .96);
  backdrop-filter: blur(16px);
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 1.25rem;
  padding: 6.5rem 1.5rem 2rem;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transform: translateY(-12px);
  transition: opacity .35s var(--ease), transform .35s var(--ease), visibility .35s;
  overflow-y: auto
}

.mobile-menu a {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.35rem, 11vw, 3.5rem);
  font-weight: 300;
  font-style: italic;
  color: var(--bone);
  text-decoration: none;
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .38s var(--ease), transform .38s var(--ease), color .3s
}

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

.mobile-menu.open a {
  opacity: 1;
  transform: none
}

.mobile-menu a:nth-child(1) {
  transition-delay: .05s
}

.mobile-menu a:nth-child(2) {
  transition-delay: .1s
}

.mobile-menu a:nth-child(3) {
  transition-delay: .15s
}

.mobile-menu a:nth-child(4) {
  transition-delay: .2s
}

.mobile-menu a:nth-child(5) {
  transition-delay: .25s
}

.mobile-menu a:nth-child(6) {
  transition-delay: .3s
}

.mobile-menu-contact {
  color: var(--gold) !important
}

.mobile-menu a:hover {
  color: var(--gold)
}

.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  overflow: hidden
}

.hero-bg {
  position: absolute;
  inset: 0;
  background: url('https://i.postimg.cc/QNPMhWc7/test.jpg') center/cover no-repeat;
  transform: translate3d(0, 0, 0) scale(1.04);
  will-change: transform
}

.hero-vignette {
  position: absolute;
  inset: 0;
  background: linear-gradient(to bottom, rgba(8, 8, 8, .55) 0%, rgba(8, 8, 8, 0) 35%, rgba(8, 8, 8, 0) 50%, rgba(8, 8, 8, .98) 100%), linear-gradient(to right, rgba(8, 8, 8, .45) 0%, transparent 60%)
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(100%, 800px);
  padding: clamp(5.75rem, 10vh, 7.5rem) 3rem 2rem
}

.hero-headline-block {
  max-width: 760px;
  opacity: 0;
  animation: fadeUp .9s .4s forwards
}

.hero-kicker {
  display: flex;
  align-items: center;
  gap: 1rem;
  margin-bottom: 2rem
}

.hero-kicker-line {
  width: 36px;
  height: 1px;
  background: var(--gold);
  flex-shrink: 0
}

.hero-kicker span {
  font-family: 'Syne Mono', monospace;
  font-size: .62rem;
  letter-spacing: .28em;
  text-transform: uppercase;
  color: var(--gold)
}

.hero-h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(3.35rem, 9vw, 8rem);
  font-weight: 300;
  line-height: .9;
  letter-spacing: -.025em;
  display: inline-block
}

.hero-h1 .italic {
  font-style: italic;
  color: var(--gold)
}

.hero-h1 .outline {
  -webkit-text-stroke: 1px var(--bone);
  color: transparent
}

.hero-actions {
  display: flex;
  gap: .875rem;
  flex-wrap: wrap;
  margin-top: 2.6rem;
  opacity: 0;
  animation: fadeUp .8s .75s forwards
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(36px)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.about-section {
  display: grid;
  grid-template-columns: minmax(300px, 420px) minmax(0, 1fr);
  min-height: 68vh;
  align-items: stretch
}

.about-img-col {
  position: relative;
  overflow: hidden;
  order: 1;
  width: 100%;
  max-width: 420px;
  min-height: 500px;
  justify-self: stretch;
  background: var(--surface)
}

.about-img-col img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 68% top;
  filter: grayscale(20%) contrast(1.05);
  transition: transform .8s ease, filter .5s
}

.about-img-col:hover img {
  transform: scale(1.04);
  filter: grayscale(0%) contrast(1)
}

.about-img-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(8, 8, 8, .5) 0%, transparent 60%)
}

.about-year {
  position: absolute;
  top: 2rem;
  right: 1.5rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.2rem;
  font-weight: 700;
  line-height: 1;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, .3);
  pointer-events: none
}

.about-content-col {
  background: var(--deep);
  padding: 4.75rem 4rem 4.75rem 2.75rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
  position: relative;
  order: 2
}

.about-content-col::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  bottom: 0;
  width: 1px;
  background: linear-gradient(to bottom, transparent, var(--gold), transparent)
}

.about-title-inline {
  font-size: clamp(2rem, 3.2vw, 3rem);
  line-height: 1.05
}

.about-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .9rem;
  max-width: 620px
}

.about-num {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.75rem;
  font-weight: 600;
  color: var(--gold);
  line-height: 1
}

.about-lbl {
  font-size: .65rem;
  letter-spacing: .15em;
  text-transform: uppercase;
  color: var(--muted);
  margin-top: .4rem
}

.about-cta {
  margin-top: 2.5rem
}

.services-section,
.pricing-section,
.contact-section {
  padding: 9rem 3rem;
  position: relative;
  overflow: hidden
}

.services-section {
  background: var(--void)
}

.services-section::before {
  content: 'CRAFT';
  position: absolute;
  right: -2rem;
  top: 50%;
  transform: translateY(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(8rem, 18vw, 16rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, .04);
  pointer-events: none;
  line-height: 1
}

.services-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 5rem;
  position: relative;
  z-index: 2;
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto
}

.services-list {
  position: relative;
  z-index: 2;
  border-top: 1px solid var(--border);
  max-width: 1120px;
  margin: 0 auto
}

.svc-row {
  display: grid;
  grid-template-columns: 3.5rem 1fr auto;
  align-items: center;
  gap: 0 2.5rem;
  padding: 2rem 0;
  border-bottom: 1px solid var(--border);
  cursor: pointer;
  position: relative;
  overflow: hidden;
  transition: padding .4s ease
}

.svc-row::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(201, 169, 110, .05) 0%, transparent 70%);
  transform: translateX(-100%);
  transition: transform .5s ease
}

.svc-row:hover::before {
  transform: translateX(0)
}

.svc-row:hover {
  padding: 2rem 1rem
}

.svc-num {
  font-family: 'Syne Mono', monospace;
  font-size: .65rem;
  letter-spacing: .15em;
  color: var(--gold);
  opacity: .5;
  transition: opacity .3s;
  flex-shrink: 0
}

.svc-row:hover .svc-num {
  opacity: 1
}

.svc-body {
  display: flex;
  flex-direction: column
}

.svc-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.5rem, 3.5vw, 2.25rem);
  font-weight: 400;
  color: var(--bone);
  line-height: 1.1;
  transition: color .3s
}

.svc-row:hover .svc-name {
  color: var(--gold)
}

.svc-desc {
  font-size: .82rem;
  line-height: 1.75;
  color: var(--muted);
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  margin-top: 0;
  transition: max-height .4s ease, margin-top .4s ease, opacity .3s
}

.svc-row:hover .svc-desc {
  max-height: 4rem;
  opacity: 1;
  margin-top: .6rem
}

.svc-right {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  flex-shrink: 0
}

.svc-tag {
  font-family: 'Syne Mono', monospace;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  display: none
}

.svc-row:hover .svc-tag {
  display: block;
  color: var(--gold)
}

.svc-icon-wrap {
  width: 44px;
  height: 44px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.1rem;
  flex-shrink: 0;
  transition: border-color .3s, background .3s, transform .3s
}

.svc-row:hover .svc-icon-wrap {
  border-color: var(--gold);
  background: rgba(201, 169, 110, .08);
  transform: rotate(45deg)
}

.svc-row:hover .svc-icon-wrap span {
  transform: rotate(-45deg);
  display: inline-block
}

.portfolio-section,
.testimonials-section {
  padding: 9rem 3rem;
  background: var(--deep)
}

.portfolio-top,
.t-header {
  max-width: 1120px;
  margin-left: auto;
  margin-right: auto
}

.portfolio-top {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 3rem
}

.portfolio-filter {
  display: flex;
  gap: .375rem;
  flex-wrap: wrap
}

.filter-btn {
  font-size: .62rem;
  letter-spacing: .16em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--muted);
  background: none;
  border: 1px solid var(--border);
  min-height: 44px;
  padding: .7rem 1.2rem;
  cursor: pointer;
  transform: translateY(0);
  transition: background .3s, color .3s, border-color .3s, transform .35s var(--ease), box-shadow .35s var(--ease);
  font-family: 'Syne', sans-serif
}

.filter-btn.active,
.filter-btn:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold);
  transform: translateY(-2px);
  box-shadow: 0 14px 32px rgba(201, 169, 110, .18)
}

.portfolio-count {
  font-family: 'Syne Mono', monospace;
  font-size: .62rem;
  letter-spacing: .15em;
  color: var(--muted);
  margin: 0 auto 2rem;
  max-width: 1120px
}

.portfolio-count span {
  color: var(--gold)
}

.gallery-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-auto-rows: 200px;
  gap: 8px;
  max-width: 1120px;
  margin: 0 auto
}

.g-item {
  position: relative;
  overflow: hidden;
  background: var(--surface);
  cursor: pointer;
  transition: opacity .5s var(--ease), transform .5s var(--ease)
}

.gallery-grid.is-filtering {
  pointer-events: none
}

.gallery-grid.is-filtering .g-item:not(.is-hidden) {
  opacity: 0;
  transform: translateY(16px) scale(.985)
}

.g-item.is-entering {
  animation: gallerySwap .45s var(--ease)
}

.g-item.span2h {
  grid-column: span 2
}

.g-item.span2v {
  grid-row: span 2
}

.g-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  filter: grayscale(20%) brightness(.88) contrast(1.05);
  transition: transform .8s var(--ease), filter .6s
}

.g-item:hover img {
  transform: scale(1.06);
  filter: grayscale(0%) brightness(1) contrast(1)
}

.g-caption {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.35rem 1.15rem 1rem;
  background: linear-gradient(to top, rgba(8, 8, 8, .92) 0%, rgba(8, 8, 8, .5) 55%, transparent 100%);
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  pointer-events: none
}

.g-tag {
  font-family: 'Syne Mono', monospace;
  font-size: .52rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .3rem
}

.g-title {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.1rem;
  font-weight: 500;
  color: var(--bone);
  line-height: 1.15
}

.g-arrow {
  width: 34px;
  height: 34px;
  border: 1px solid rgba(255, 255, 255, .18);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--bone);
  font-size: .85rem;
  flex-shrink: 0;
  opacity: 0;
  transform: translateY(6px);
  transition: opacity .35s, transform .35s, border-color .3s
}

.g-item:hover .g-arrow {
  opacity: 1;
  transform: none;
  border-color: var(--gold);
  color: var(--gold)
}

.g-item::after {
  content: '';
  position: absolute;
  left: 0;
  bottom: 0;
  width: 100%;
  height: 2px;
  background: var(--gold);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .55s var(--ease)
}

.g-item:hover::after {
  transform: scaleX(1)
}

.g-item.is-hidden {
  display: none
}

@keyframes gallerySwap {
  from {
    opacity: 0;
    transform: translateY(18px) scale(.985)
  }

  to {
    opacity: 1;
    transform: none
  }
}

.portfolio-cta {
  text-align: center;
  margin: 3.5rem auto 0;
  max-width: 1120px
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 800;
  background: rgba(8, 8, 8, .97);
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  pointer-events: none;
  transition: opacity .35s var(--ease);
  backdrop-filter: blur(12px)
}

.lightbox.open {
  opacity: 1;
  pointer-events: auto
}

.lb-inner {
  position: relative;
  max-width: 90vw;
  max-height: 88vh;
  display: flex;
  flex-direction: column;
  align-items: center
}

.lb-img {
  max-width: 100%;
  max-height: 80vh;
  object-fit: contain;
  display: block;
  transform: scale(.96);
  opacity: 0;
  transition: transform .4s var(--ease), opacity .4s
}

.lightbox.open .lb-img {
  transform: scale(1);
  opacity: 1
}

.lb-caption {
  margin-top: 1.25rem;
  text-align: center
}

.lb-cat {
  font-family: 'Syne Mono', monospace;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--gold);
  display: block;
  margin-bottom: .35rem
}

.lb-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.4rem;
  font-weight: 400;
  color: var(--bone)
}

.lb-close,
.lb-nav-btn {
  position: fixed;
  z-index: 3;
  border: 1px solid var(--border2);
  background: rgba(22, 22, 22, .8);
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: border-color .3s, color .3s
}

.lb-close {
  top: 2rem;
  right: 2.5rem;
  width: 48px;
  height: 48px;
  font-size: 1.1rem
}

.lb-nav-btn {
  top: 50%;
  transform: translateY(-50%);
  width: 48px;
  height: 48px;
  font-size: 1.1rem
}

.lb-close:hover,
.lb-nav-btn:hover {
  border-color: var(--gold);
  color: var(--gold)
}

.lb-prev {
  left: 2rem
}

.lb-next {
  right: 2rem
}

.lb-counter {
  font-family: 'Syne Mono', monospace;
  font-size: .6rem;
  letter-spacing: .15em;
  color: var(--muted);
  margin-top: .75rem
}

.pricing-section {
  background: var(--void)
}

.pricing-section::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 700px;
  height: 700px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201, 169, 110, .04) 0%, transparent 70%);
  pointer-events: none
}

.pricing-top {
  text-align: center;
  margin-bottom: 4rem
}

.pricing-sub {
  font-size: .875rem;
  color: var(--muted);
  max-width: 420px;
  margin: 1rem auto 0;
  line-height: 1.8
}

.pricing-cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1080px;
  margin: 3rem auto 0;
  position: relative;
  z-index: 2
}

.p-card {
  background: var(--deep);
  padding: 3rem 2.5rem;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: background .4s
}

.p-card.featured {
  background: var(--surface)
}

.p-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold), transparent);
  opacity: 0;
  transition: opacity .4s
}

.p-card.featured::before,
.p-card:hover::before {
  opacity: 1
}

.p-badge {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: 'Syne Mono', monospace;
  font-size: .58rem;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--void);
  background: var(--gold);
  padding: .3rem .85rem;
  margin-bottom: 2rem;
  align-self: flex-start
}

.p-card:not(.featured) .p-badge {
  display: none
}

.plan-name {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.75rem;
  font-weight: 600;
  color: var(--bone);
  margin-bottom: .2rem
}

.plan-type {
  font-size: .62rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 2rem
}

.plan-price-wrap {
  margin-bottom: .5rem
}

.plan-price {
  font-family: 'Cormorant Garamond', serif;
  font-size: 4.5rem;
  font-weight: 700;
  color: var(--bone);
  line-height: 1;
  display: inline-flex;
  align-items: flex-start;
  gap: .15rem
}

.plan-price sup {
  font-size: 1.5rem;
  vertical-align: super;
  color: var(--gold);
  font-weight: 400;
  margin-top: .5rem
}

.plan-price .cents {
  font-size: 1.5rem;
  color: var(--muted);
  align-self: flex-end;
  margin-bottom: .4rem
}

.plan-per {
  font-size: .72rem;
  color: var(--muted);
  margin-bottom: 2.5rem
}

.plan-features {
  list-style: none;
  margin-bottom: 2.5rem;
  display: flex;
  flex-direction: column;
  gap: .875rem;
  flex: 1
}

.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: var(--muted2);
  line-height: 1.5
}

.plan-features li::before {
  content: '\2192';
  color: var(--gold);
  flex-shrink: 0;
  font-size: .75rem;
  margin-top: .15rem
}

.plan-features li.highlight {
  color: var(--bone);
  font-weight: 600
}

.plan-features li.highlight::before {
  content: '\2605';
  font-size: .65rem
}

.plan-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  align-self: stretch;
  width: 100%;
  padding: 1rem;
  font-family: 'Syne', sans-serif;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  text-align: center;
  text-decoration: none;
  line-height: 1;
  white-space: nowrap;
  border: none;
  cursor: pointer;
  transition: all .3s;
  margin-top: auto
}

.plan-btn-outline {
  background: transparent;
  color: var(--bone);
  border: 1px solid var(--border2)
}

.plan-btn-outline:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold)
}

.plan-btn-gold {
  background: var(--gold);
  color: var(--void)
}

.plan-btn-gold:hover {
  background: var(--gold2)
}

.t-header {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: end;
  margin-bottom: 5rem
}

.t-aggregate {
  display: flex;
  align-items: center;
  gap: 1.5rem;
  padding: 1.5rem 0;
  border-top: 1px solid var(--border)
}

.t-agg-score {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: var(--gold);
  line-height: 1
}

.t-agg-stars {
  display: flex;
  gap: 3px;
  margin-bottom: .4rem
}

.t-agg-stars span {
  color: var(--gold);
  font-size: .85rem
}

.t-agg-label {
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .08em
}

.t-header-right {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  align-items: flex-start
}

.t-header-right p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 380px
}

.t-controls {
  display: flex;
  gap: .75rem
}

.t-btn {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  background: none;
  color: var(--bone);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  cursor: pointer;
  transition: all .3s
}

.t-btn:hover {
  background: var(--gold);
  color: var(--void);
  border-color: var(--gold)
}

.t-showcase {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, .92fr);
  gap: 1px;
  background: var(--border);
  max-width: 1120px;
  margin: 0 auto
}

.t-featured-quote {
  background: var(--surface);
  padding: 3.5rem;
  position: relative;
  overflow: hidden;
  transition: opacity .25s, transform .25s
}

.t-featured-quote::before {
  content: '\201C';
  position: absolute;
  top: -.5rem;
  left: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: 10rem;
  font-weight: 700;
  line-height: 1;
  color: var(--gold);
  opacity: .07;
  pointer-events: none
}

.t-featured-text {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-style: italic;
  font-weight: 300;
  line-height: 1.7;
  color: var(--bone);
  margin-bottom: 2.5rem;
  position: relative;
  z-index: 1
}

.t-author {
  display: flex;
  align-items: center;
  gap: 1rem
}

.t-avatar {
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold), var(--red));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.t-name {
  font-size: .875rem;
  font-weight: 600;
  color: var(--bone)
}

.t-role {
  font-size: .68rem;
  color: var(--muted);
  margin-top: .2rem;
  letter-spacing: .04em
}

.t-stars-small {
  display: flex;
  gap: 2px;
  margin-bottom: 1.25rem
}

.t-stars-small span {
  color: var(--gold);
  font-size: .7rem
}

.t-featured-quote.is-switching {
  opacity: 0;
  transform: translateY(14px)
}

.t-side-list {
  display: grid;
  grid-template-rows: repeat(2, minmax(0, 1fr));
  gap: 1px;
  background: var(--border)
}

.t-mini-card {
  background: var(--lift);
  border: none;
  color: inherit;
  text-align: left;
  padding: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 1.5rem;
  min-height: 235px;
  cursor: pointer;
  transition: background .3s, transform .3s
}

.t-mini-card:hover,
.t-mini-card.active {
  background: #1b1b1b;
  transform: translateY(-4px)
}

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

.t-mini-index {
  font-family: 'Syne Mono', monospace;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold)
}

.t-mini-stars {
  margin-bottom: 0
}

.t-mini-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1rem;
  font-style: italic;
  line-height: 1.7;
  color: var(--muted2);
  flex: 1
}

.t-mini-author {
  display: flex;
  align-items: center;
  gap: .75rem
}

.t-mini-avatar {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, rgba(201, 169, 110, .5), rgba(181, 54, 30, .5));
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: 'Cormorant Garamond', serif;
  font-size: .85rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0
}

.t-mini-name {
  font-size: .8rem
}

.t-progress {
  display: flex;
  gap: .5rem;
  align-items: center;
  justify-content: center;
  margin: 2.5rem auto 0;
  max-width: 1120px
}

.t-dot {
  width: 44px;
  height: 44px;
  border-radius: 999px;
  background: transparent;
  transition: transform .35s;
  cursor: pointer;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center
}

.t-dot::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--border2);
  transition: width .35s, border-radius .35s, background .35s
}

.t-dot.active::before {
  width: 24px;
  border-radius: 3px;
  background: var(--gold)
}

.contact-section {
  background: var(--void)
}

.contact-section::before {
  content: 'INQUIRE';
  position: absolute;
  right: -2rem;
  top: 2rem;
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(7rem, 16vw, 13rem);
  font-weight: 700;
  color: transparent;
  -webkit-text-stroke: 1px rgba(201, 169, 110, .05);
  pointer-events: none
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr);
  gap: 1px;
  background: var(--border);
  max-width: 1120px;
  margin: 0 auto;
  position: relative;
  z-index: 2
}

.contact-copy {
  background: var(--deep);
  padding: 3.5rem
}

.contact-copy p {
  font-size: .95rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 420px
}

.contact-points {
  display: grid;
  gap: 1.25rem;
  margin-top: 2.5rem
}

.contact-point {
  padding-top: 1.25rem;
  border-top: 1px solid var(--border)
}

.contact-point-label {
  display: block;
  margin-bottom: .45rem;
  font-family: 'Syne Mono', monospace;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold)
}

.contact-point a,
.contact-point span {
  font-size: 1rem;
  color: var(--bone);
  text-decoration: none
}

.contact-form-wrap {
  background: var(--surface);
  padding: 3.5rem
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem
}

.contact-field {
  display: flex;
  flex-direction: column;
  gap: .65rem
}

.contact-field.full,
.contact-form-footer,
.contact-status {
  grid-column: 1/-1
}

.contact-field label {
  font-family: 'Syne Mono', monospace;
  font-size: .58rem;
  letter-spacing: .18em;
  text-transform: uppercase;
  color: var(--gold)
}

.contact-field input,
.contact-field select,
.contact-field textarea {
  width: 100%;
  background: transparent;
  border: 1px solid var(--border2);
  color: var(--bone);
  caret-color: var(--bone);
  padding: 1rem 1.1rem;
  font: inherit;
  font-size: .92rem
}

.contact-field input::placeholder,
.contact-field textarea::placeholder {
  color: rgba(240, 236, 228, .72);
  opacity: 1
}

.contact-field input:-webkit-autofill,
.contact-field input:-webkit-autofill:hover,
.contact-field input:-webkit-autofill:focus,
.contact-field textarea:-webkit-autofill,
.contact-field textarea:-webkit-autofill:hover,
.contact-field textarea:-webkit-autofill:focus,
.contact-field select:-webkit-autofill,
.contact-field select:-webkit-autofill:hover,
.contact-field select:-webkit-autofill:focus {
  -webkit-text-fill-color: var(--bone);
  box-shadow: 0 0 0 1000px var(--surface) inset;
  transition: background-color 9999s ease-out 0s
}

.contact-field textarea {
  min-height: 170px;
  resize: vertical
}

.contact-field input:focus,
.contact-field select:focus,
.contact-field textarea:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 1px rgba(201, 169, 110, .28)
}

.contact-field select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-color: transparent;
  color: var(--bone);
  padding-right: 3rem;
  background-image:
    linear-gradient(45deg, transparent 50%, var(--gold) 50%),
    linear-gradient(135deg, var(--gold) 50%, transparent 50%);
  background-position:
    calc(100% - 21px) calc(50% - 2px),
    calc(100% - 15px) calc(50% - 2px);
  background-size: 6px 6px;
  background-repeat: no-repeat;
  cursor: pointer;
  color-scheme: dark
}

.contact-field select option {
  background: #111;
  color: var(--bone)
}

.contact-form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  margin-top: .5rem
}

.contact-note {
  font-size: .78rem;
  line-height: 1.7;
  color: var(--muted);
  max-width: 360px
}

.contact-status {
  display: none;
  padding: 1rem 1.1rem;
  border: 1px solid rgba(201, 169, 110, .28);
  background: rgba(201, 169, 110, .08);
  color: var(--bone);
  font-size: .84rem;
  line-height: 1.6
}

.contact-status.visible {
  display: block
}

footer {
  background: var(--void);
  border-top: 1px solid var(--border)
}

.footer-main {
  display: grid;
  grid-template-columns: 2.5fr 1fr 1fr 1fr;
  gap: 4rem;
  padding: 5rem 3rem 4rem
}

.f-desc {
  font-size: .875rem;
  line-height: 1.8;
  color: var(--muted);
  max-width: 280px;
  margin-bottom: 2rem
}

.f-socials {
  display: flex;
  gap: .75rem
}

.f-soc {
  width: 48px;
  height: 48px;
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .7rem;
  color: var(--muted);
  text-decoration: none;
  transition: all .3s;
  cursor: pointer;
  font-weight: 600
}

.f-soc svg {
  width: 16px;
  height: 16px;
  display: block;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.f-soc svg path {
  fill: currentColor;
  stroke: none
}

.f-soc:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(201, 169, 110, .07)
}

.f-col h3 {
  font-family: 'Syne Mono', monospace;
  font-size: .65rem;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 1.75rem
}

.f-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: .875rem
}

.f-col ul li a {
  display: inline-flex;
  align-items: center;
  min-height: 44px;
  font-size: .875rem;
  color: var(--muted);
  text-decoration: none;
  transition: color .25s
}

.f-col ul li a:hover {
  color: var(--bone)
}

.footer-bottom {
  border-top: 1px solid var(--border);
  padding: 1.5rem 3rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: .7rem;
  color: var(--muted);
  letter-spacing: .05em
}

.footer-bottom a {
  color: var(--gold);
  text-decoration: none
}

@media(max-width:1100px) {
  .about-section {
    grid-template-columns: 1fr
  }

  .about-img-col {
    order: 1;
    width: 100%;
    max-width: none;
    min-height: 44vw;
    justify-self: stretch
  }

  .about-content-col {
    padding: 3.5rem 2.5rem;
    order: 2
  }

  .about-content-col::before {
    top: 0;
    left: 0;
    right: 0;
    bottom: auto;
    height: 1px;
    width: auto;
    background: linear-gradient(to right, transparent, var(--gold), transparent)
  }

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

  .g-item.span2h {
    grid-column: span 2
  }

  .g-item.span2v {
    grid-row: span 2
  }

  .pricing-cards {
    grid-template-columns: 1fr;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
    background: none;
    gap: .75rem
  }

  .p-card {
    border: 1px solid var(--border)
  }

  .t-header {
    grid-template-columns: 1fr
  }

  .t-showcase {
    grid-template-columns: 1fr
  }

  .t-side-list {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-template-rows: none
  }

  .contact-shell {
    grid-template-columns: 1fr
  }

  .footer-main {
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem
  }
}

@media(max-width:768px) {
  nav {
    padding: 1rem 1.5rem
  }

  .nav-links,
  .nav-book {
    display: none
  }

  .hamburger {
    display: flex
  }

  .mobile-menu {
    display: flex
  }

  .hero-content {
    padding: 4.75rem 1.5rem 1.75rem
  }

  .hero-kicker {
    margin-bottom: 1.25rem
  }

  .services-section,
  .portfolio-section,
  .pricing-section,
  .testimonials-section,
  .contact-section {
    padding: 5rem 1.5rem
  }

  .services-top,
  .portfolio-top {
    flex-direction: column;
    align-items: flex-start;
    gap: 1.5rem
  }

  .svc-row {
    grid-template-columns: 2.5rem 1fr auto;
    gap: 0 1rem
  }

  .svc-tag {
    display: none !important
  }

  .gallery-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 58vw;
    gap: 6px
  }

  .g-item.span2h,
  .g-item.span2v {
    grid-column: span 1;
    grid-row: span 1
  }

  .g-arrow {
    opacity: 1;
    transform: none
  }

  .t-header {
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 3rem
  }

  .t-featured-quote {
    padding: 2.25rem 1.75rem
  }

  .t-side-list {
    grid-template-columns: 1fr
  }

  .contact-copy,
  .contact-form-wrap {
    padding: 2.25rem 1.75rem
  }

  .contact-form {
    grid-template-columns: 1fr
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 2rem;
    padding: 3rem 1.5rem
  }

  .footer-bottom {
    flex-direction: column;
    gap: .5rem;
    text-align: center;
    padding: 1.25rem 1.5rem
  }

  .about-section {
    grid-template-columns: 1fr
  }

  .lb-nav-btn {
    top: auto;
    bottom: 1.25rem;
    transform: none;
    width: 48px;
    height: 48px;
    background: rgba(10, 10, 10, .92);
    border-color: rgba(240, 236, 228, .2);
    box-shadow: 0 12px 30px rgba(0, 0, 0, .35)
  }

  .lb-prev {
    left: 1rem
  }

  .lb-next {
    right: 1rem
  }
}

@media(max-width:480px) {
  .hero-actions {
    margin-top: 2.15rem
  }

  .hero-h1 {
    font-size: clamp(2.85rem, 13.5vw, 4.8rem)
  }

  .hero-actions {
    flex-direction: column;
    align-items: flex-start
  }

  .hero-actions .btn-gld,
  .hero-actions .btn-outline-w {
    width: 100%;
    justify-content: center
  }

  .svc-row {
    padding: 1.5rem 0
  }

  .svc-row:hover {
    padding: 1.5rem .5rem
  }

  .t-featured-text {
    font-size: 1.05rem
  }
}
