:root {
  --bg: #0a0a0b;
  --bg-soft: #111214;
  --panel: rgba(17, 18, 20, 0.62);
  --panel-strong: rgba(17, 18, 20, 0.82);
  --line: rgba(255, 255, 255, 0.09);
  --line-strong: rgba(255, 255, 255, 0.14);
  --text: #f5f1ea;
  --text-soft: rgba(245, 241, 234, 0.82);
  --text-muted: rgba(245, 241, 234, 0.68);
  --accent: #d1ad78;
  --accent-strong: #e1bd87;
  --shadow-soft: 0 20px 64px rgba(0, 0, 0, 0.18);
  --shadow-medium: 0 28px 80px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--text);
  background:
    radial-gradient(circle at top left, rgba(209, 173, 120, 0.06), transparent 26%),
    linear-gradient(180deg, #060607 0%, #0a0a0b 100%);
  font-family: "Manrope", Arial, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
}

body.is-locked,
body.cookies-open {
  overflow: hidden;
}

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

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

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

.page-width {
  width: min(1360px, calc(100% - 32px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 80;
  background: rgba(7, 7, 8, 0.78);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.site-header::after {
  content: "";
  position: absolute;
  inset: auto 0 -1px 0;
  height: 1px;
  background: linear-gradient(
    90deg,
    rgba(209, 173, 120, 0) 0%,
    rgba(209, 173, 120, 0.22) 18%,
    rgba(209, 173, 120, 0.05) 50%,
    rgba(209, 173, 120, 0.22) 82%,
    rgba(209, 173, 120, 0) 100%
  );
}

.header-inner {
  min-height: 68px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand-mark {
  width: 44px;
  height: 44px;
  flex: 0 0 44px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.brand-mark img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0.98;
  filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
  animation: logoFloat 5.6s ease-in-out infinite;
  transform-origin: center;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 28px;
}

.main-nav a,
.footer-nav a {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(255, 248, 238, 0.92);
  position: relative;
  transition: color 0.22s ease, opacity 0.22s ease, transform 0.22s ease;
}

.main-nav a:hover,
.main-nav a:focus-visible,
.main-nav a.is-active,
.footer-nav a:hover,
.footer-nav a:focus-visible {
  color: var(--text);
  transform: translateY(-1px);
}

.main-nav a::after,
.footer-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 0;
  height: 1px;
  background: var(--accent);
  transition: width 0.24s ease, opacity 0.24s ease;
  opacity: 0;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after,
.main-nav a.is-active::after,
.footer-nav a:hover::after,
.footer-nav a:focus-visible::after {
  width: 100%;
  opacity: 1;
}

.main-nav a.is-active {
  text-shadow: 0 0 12px rgba(209, 173, 120, 0.18);
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 22px;
  height: 1px;
  margin: 5px auto;
  background: var(--text);
  transition: transform 0.25s ease, opacity 0.25s ease;
}

.hero {
  position: relative;
  min-height: clamp(700px, 79svh, 860px);
  display: flex;
  align-items: center;
  padding: 18px 0 86px;
  overflow: hidden;
  perspective: 1200px;
}

.hero-slideshow,
.hero-slide,
.hero-overlay {
  position: absolute;
  inset: 0;
}

.hero-slideshow {
  transform: translate3d(0, 0, 0) scale(1.02);
  transition: transform 180ms ease-out;
}

.hero-slide {
  opacity: 0;
  background-position: center center;
  background-size: cover;
  transform: scale(1.03);
  transition: opacity 1.1s ease, transform 5.5s ease;
}

.hero-slide.is-active {
  opacity: 1;
  transform: scale(1);
}

.hero-overlay {
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.34) 0%, rgba(0, 0, 0, 0.56) 58%, rgba(8, 8, 9, 0.92) 100%),
    linear-gradient(90deg, rgba(0, 0, 0, 0.68) 0%, rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.42) 100%);
  transition: transform 180ms ease-out, opacity 180ms ease-out;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: 100%;
  transition: transform 180ms ease-out;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 410px) 1fr;
  align-items: start;
  justify-items: start;
  padding-left: 10px;
  padding-top: 12px;
}

.hero-panel,
.hero-panel-editorial {
  width: 410px;
  max-width: 410px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 0;
  padding: 34px 22px 18px;
  border-radius: 24px;
  text-align: center;
  background:
    linear-gradient(180deg, rgba(8, 10, 14, 0.58), rgba(8, 10, 14, 0.34)),
    radial-gradient(circle at top left, rgba(209, 173, 120, 0.05), transparent 38%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
  box-shadow:
    0 34px 110px rgba(0, 0, 0, 0.22),
    inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  transition: transform 180ms ease-out, box-shadow 220ms ease-out, border-color 220ms ease-out;
}

.hero-panel::before,
.hero-panel-editorial::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.035), rgba(255, 255, 255, 0) 38%),
    radial-gradient(circle at top, rgba(209, 173, 120, 0.04), transparent 30%);
  pointer-events: none;
}

.hero-panel:hover,
.hero-panel-editorial:hover {
  transform: translateY(-2px);
  box-shadow: 0 34px 100px rgba(0, 0, 0, 0.3);
}

.hero-logo-full {
  width: 200px;
  max-width: 62%;
  margin: 0 auto 14px;
  animation: heroLogoGlow 5.6s ease-in-out infinite;
  transform-origin: center;
  filter: drop-shadow(0 0 16px rgba(255, 255, 255, 0.05));
}

.hero-intro,
.eyebrow {
  color: var(--accent);
  text-transform: uppercase;
}

.hero-intro {
  max-width: 320px;
  margin: 0 auto 10px;
  text-align: center;
  font-size: 0.66rem;
  letter-spacing: 0.2em;
  line-height: 1.5;
}

.eyebrow {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 16px;
  width: fit-content;
  min-height: 44px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid rgba(209, 173, 120, 0.16);
  background: linear-gradient(180deg, rgba(209, 173, 120, 0.085), rgba(209, 173, 120, 0.02));
  color: #e0bf90;
  letter-spacing: 0.22em;
  box-shadow:
    inset 0 0 0 1px rgba(209, 173, 120, 0.08),
    0 8px 24px rgba(0, 0, 0, 0.08);
  animation: eyebrowGlow 5.4s ease-in-out infinite;
}

.eyebrow::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px rgba(209, 173, 120, 0.24);
}

.eyebrow::after {
  content: "";
  display: block;
  width: 112px;
  height: 1px;
  background: linear-gradient(90deg, rgba(209, 173, 120, 0.75), rgba(209, 173, 120, 0));
}

h1,
h2,
h3 {
  margin: 0;
  font-family: "Cormorant Garamond", Georgia, serif;
  font-weight: 500;
  letter-spacing: 0.02em;
  line-height: 0.98;
  text-wrap: balance;
}

h1 {
  max-width: 9.8ch;
  margin: 0 auto;
  font-size: clamp(1.42rem, 2.15vw, 2.5rem);
  line-height: 0.92;
  letter-spacing: 0;
  text-transform: uppercase;
}

h2 {
  font-size: clamp(2.1rem, 3.4vw, 3.45rem);
  text-transform: uppercase;
  line-height: 0.94;
}

h3 {
  font-size: clamp(1.8rem, 2.2vw, 2.5rem);
}

p {
  margin: 0;
  color: var(--text-soft);
}

.hero-text {
  max-width: 300px;
  margin: 16px auto 0;
  text-align: center;
  font-size: calc(0.82rem + 1px);
  line-height: 1.56;
  color: rgba(245, 241, 234, 0.88);
}

.hero-actions,
.portfolio-actions,
.cookie-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero-actions {
  justify-content: center;
  margin-top: 18px;
  margin-bottom: 0;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 40px;
  padding-inline: 14px;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition:
    transform 0.2s ease,
    background-color 0.2s ease,
    border-color 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-1px);
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.18);
}

.button-primary {
  background: var(--accent);
  color: #131313;
  box-shadow: 0 12px 28px rgba(209, 173, 120, 0.14);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--accent-strong);
}

.button-secondary {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.2);
  background: rgba(255, 255, 255, 0.03);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: rgba(255, 255, 255, 0.09);
  border-color: rgba(255, 255, 255, 0.3);
}

.scroll-cue {
  position: absolute;
  left: 50%;
  bottom: 8px;
  transform: translateX(-50%);
  z-index: 9;
  display: grid;
  justify-items: center;
  gap: 10px;
  color: rgba(255, 248, 238, 0.82);
  text-align: center;
}

.scroll-cue span:first-child {
  display: block;
  font-size: 0.68rem;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  animation: cuePulseText 1.9s ease-in-out infinite;
}

.scroll-cue-line {
  width: 1px;
  height: 28px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.18) 0%, var(--accent) 100%);
  animation: scrollLine 1.8s ease-in-out infinite;
}

.section {
  padding: 56px 0;
  scroll-margin-top: 88px;
}

.about-section {
  padding-top: 36px;
  padding-bottom: 52px;
}

.portfolio-section,
.offer-section,
.contact-section {
  padding-top: 52px;
  padding-bottom: 52px;
}

.about-section,
.offer-section,
.contact-section {
  background: linear-gradient(180deg, #080809 0%, #101114 100%);
}

.portfolio-section {
  background: #080809;
}

.section-heading {
  display: grid;
  gap: 18px;
  max-width: 820px;
  position: relative;
}

.section-heading-accent {
  padding-top: 10px;
  border-top: 1px solid rgba(209, 173, 120, 0.24);
}

.section-heading-accent::before {
  content: "";
  position: absolute;
  top: -1px;
  left: 0;
  width: 116px;
  height: 1px;
  background: linear-gradient(90deg, var(--accent) 0%, rgba(209, 173, 120, 0) 100%);
}

.section-heading h2 {
  position: relative;
  display: inline-block;
}

.section-heading h2::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -16px;
  width: clamp(120px, 18vw, 190px);
  height: 1px;
  background: linear-gradient(90deg, rgba(209, 173, 120, 0.8) 0%, rgba(209, 173, 120, 0) 100%);
}

.body-copy,
.offer-card,
.price-card,
.timeline-card,
.contact-copy {
  display: grid;
  gap: 18px;
}

.body-copy p,
.about-copy p,
.offer-copy-group p,
.timeline-summary,
.portfolio-note,
.contact-lead {
  line-height: 1.82;
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(280px, 0.95fr) minmax(340px, 1fr) 250px;
  gap: 18px;
  align-items: start;
}

.about-copy {
  max-width: 680px;
  margin-top: 1.4em;
}

.about-portrait-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(180deg, rgba(14, 14, 16, 0.9), rgba(14, 14, 16, 0.68));
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.18);
}

.about-portrait {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.card-glass {
  position: relative;
  overflow: hidden;
  padding: 30px;
  border-radius: 22px;
  background: linear-gradient(180deg, rgba(20, 20, 22, 0.88), rgba(17, 17, 19, 0.76));
  border: 1px solid var(--line);
  box-shadow: var(--shadow-soft);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease, background 0.28s ease;
}

.card-glass::after {
  content: "";
  position: absolute;
  inset: auto -20% -40% auto;
  width: 220px;
  height: 220px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(209, 173, 120, 0.08), rgba(209, 173, 120, 0));
  pointer-events: none;
  opacity: 0;
  transition: opacity 0.28s ease;
}

.card-glass:hover,
.card-glass:focus-within,
.contact-shell:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-medium);
  border-color: rgba(209, 173, 120, 0.22);
}

.card-glass:hover::after,
.card-glass:focus-within::after {
  opacity: 1;
}

.offer-card-featured {
  background: linear-gradient(180deg, rgba(31, 24, 17, 0.98), rgba(20, 18, 16, 0.88));
  border-color: rgba(209, 173, 120, 0.18);
}

.offer-card-featured::before {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at top left, rgba(209, 173, 120, 0.14), transparent 38%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.02), rgba(255, 255, 255, 0));
  pointer-events: none;
}

.offer-copy-group {
  display: grid;
  gap: 28px;
  margin-top: 8px;
}

.offer-copy-group p {
  font-size: 1.12rem;
  color: rgba(245, 241, 234, 0.92);
}

.offer-grid {
  display: grid;
  grid-template-columns: 1.08fr 0.96fr 0.92fr;
  gap: 22px;
  margin-top: 28px;
  align-items: stretch;
}

.card-header {
  display: grid;
  gap: 12px;
  margin-bottom: 8px;
}

.card-topline {
  color: var(--accent);
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
}

.price-table,
.timeline-list {
  display: grid;
  gap: 16px;
}

.price-row,
.timeline-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 18px;
  align-items: center;
  padding: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  background: rgba(255, 255, 255, 0.02);
  transition: transform 0.22s ease, border-color 0.22s ease, background-color 0.22s ease, box-shadow 0.22s ease;
}

.price-row:hover,
.price-row:focus-within,
.timeline-item:hover,
.timeline-item:focus-within {
  transform: translateY(-2px);
  border-color: rgba(209, 173, 120, 0.42);
  background: linear-gradient(180deg, rgba(209, 173, 120, 0.09), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.22);
}

.price-row strong,
.timeline-item strong {
  color: var(--text);
  font-weight: 600;
  font-size: 1.1rem;
}

.price-row span,
.timeline-item span {
  display: block;
  color: rgba(245, 241, 234, 0.7);
  font-size: 0.96rem;
}

.price-row b {
  font-size: 1.35rem;
  color: var(--text);
  white-space: nowrap;
  align-self: center;
  text-align: right;
}

.price-row b small {
  display: block;
  font-size: 0.82rem;
  font-weight: 600;
  color: rgba(245, 241, 234, 0.66);
  margin-top: 4px;
}

.note {
  padding: 14px 16px;
  border-radius: 12px;
  background: rgba(209, 173, 120, 0.08);
  color: rgba(245, 241, 234, 0.88);
}

.pricing-tax-note {
  margin-top: -4px;
  font-size: 0.82rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(245, 241, 234, 0.64);
}

.timeline-item-accent {
  border-color: rgba(209, 173, 120, 0.28);
  background: linear-gradient(180deg, rgba(209, 173, 120, 0.1), rgba(255, 255, 255, 0.03));
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  margin-top: 28px;
}

.portfolio-item {
  position: relative;
  overflow: hidden;
  border-radius: 4px;
  border: 1px solid rgba(255, 255, 255, 0.07);
  background: #141416;
  cursor: zoom-in;
  aspect-ratio: 3 / 2;
  padding: 0;
  transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.portfolio-item::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0) 45%, rgba(0, 0, 0, 0.15) 100%);
  pointer-events: none;
}

.portfolio-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.45s ease, opacity 0.35s ease;
}

.portfolio-item:hover,
.portfolio-item:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(209, 173, 120, 0.28);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.2);
}

.portfolio-item:hover img,
.portfolio-item:focus-visible img {
  transform: scale(1.03);
}

.portfolio-actions {
  margin-top: 18px;
  padding-top: 0;
}

.portfolio-note {
  margin-top: 8px;
  color: rgba(245, 241, 234, 0.74);
  font-size: 0.98rem;
}

.load-more {
  min-width: 240px;
  border-color: rgba(209, 173, 120, 0.7);
  background: rgba(209, 173, 120, 0.18);
  color: rgba(255, 248, 238, 0.96);
  box-shadow:
    0 0 0 1px rgba(209, 173, 120, 0.28),
    0 0 34px rgba(209, 173, 120, 0.24),
    0 0 56px rgba(209, 173, 120, 0.1);
  animation: vzLoadMoreGlowStrong 1.8s ease-in-out infinite;
}

.load-more:hover,
.load-more:focus-visible {
  border-color: rgba(209, 173, 120, 0.88);
  background: rgba(209, 173, 120, 0.24);
  box-shadow:
    0 0 0 1px rgba(209, 173, 120, 0.36),
    0 0 42px rgba(209, 173, 120, 0.32),
    0 0 72px rgba(209, 173, 120, 0.14);
}

.contact-shell {
  display: grid;
  grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
  gap: clamp(28px, 4vw, 56px);
  align-items: stretch;
  margin-top: 6px;
  padding: clamp(26px, 3vw, 38px);
  border-radius: 18px;
  background:
    linear-gradient(180deg, rgba(11, 11, 13, 0.78), rgba(11, 11, 13, 0.58)),
    radial-gradient(circle at top left, rgba(209, 173, 120, 0.04), transparent 34%);
  backdrop-filter: blur(10px);
  border: 1px solid var(--line);
  transition: transform 0.28s ease, box-shadow 0.28s ease, border-color 0.28s ease;
}

.contact-portrait-wrap {
  max-width: 360px;
  height: 100%;
}

.contact-portrait {
  width: 100%;
  height: 100%;
  min-height: 420px;
  aspect-ratio: 2 / 3;
  object-fit: cover;
  border-radius: 14px;
}

.contact-copy {
  align-content: center;
  gap: 22px;
}

.contact-topline {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: clamp(2.3rem, 3vw, 3.1rem);
  line-height: 0.98;
}

.contact-lead {
  max-width: 720px;
  font-size: 1.08rem;
  color: rgba(245, 241, 234, 0.88);
}

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

.contact-card {
  padding: 18px 20px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.045), rgba(255, 255, 255, 0.02));
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background-color 0.24s ease;
}

.contact-card:hover,
.contact-card:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(209, 173, 120, 0.42);
  background: linear-gradient(180deg, rgba(209, 173, 120, 0.08), rgba(255, 255, 255, 0.03));
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.contact-card-label {
  display: block;
  margin-bottom: 6px;
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18em;
  color: var(--accent);
}

.contact-card strong {
  font-size: 1.12rem;
  font-weight: 600;
}

.contact-meta,
.contact-response {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  width: 100%;
}

.contact-meta {
  justify-content: flex-start;
  gap: 16px;
}

.contact-response {
  gap: 10px;
}

.contact-response-time {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(209, 173, 120, 0.08);
  border: 1px solid rgba(209, 173, 120, 0.18);
  color: rgba(245, 241, 234, 0.88);
  font-size: 0.92rem;
  width: fit-content;
}

.contact-response-time::before {
  content: "";
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 10px rgba(209, 173, 120, 0.35);
}

.contact-social {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-top: 0;
}

.social-icon {
  width: 40px;
  height: 40px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 10px;
  border: 1px solid rgba(255, 248, 238, 0.28);
  background: rgba(255, 255, 255, 0.02);
  color: rgba(255, 248, 238, 0.96);
  transition: transform 0.26s ease, background-color 0.26s ease, border-color 0.26s ease, box-shadow 0.26s ease;
}

.social-icon svg {
  width: 18px;
  height: 18px;
  display: block;
  fill: currentColor;
  opacity: 0.9;
  transition: opacity 0.2s ease;
}

.social-icon:hover,
.social-icon:focus-visible {
  transform: translateY(-1px);
  border-color: rgba(209, 173, 120, 0.62);
  background: rgba(255, 255, 255, 0.04);
  box-shadow:
    0 0 0 1px rgba(209, 173, 120, 0.18),
    0 0 20px rgba(209, 173, 120, 0.18),
    0 0 36px rgba(209, 173, 120, 0.1);
}

.social-icon:hover svg,
.social-icon:focus-visible svg {
  opacity: 1;
}

.site-footer {
  border-top: 1px solid var(--line);
  background: #09090a;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto auto;
  gap: 24px;
  align-items: center;
  padding: 28px 0 34px;
}

.footer-brand-block {
  display: grid;
  gap: 6px;
}

.footer-brand {
  color: var(--text);
  font-family: "Cormorant Garamond", Georgia, serif;
  font-size: 1.52rem;
}

.footer-copy {
  font-size: 0.95rem;
}

.footer-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: center;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-cookie-link {
  color: rgba(255, 248, 238, 0.86);
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.16);
  padding: 10px 16px;
  border-radius: 999px;
  cursor: pointer;
}

.lightbox {
  position: fixed;
  inset: 0;
  display: none;
  align-items: center;
  justify-content: center;
  background: radial-gradient(circle at center, rgba(18, 18, 20, 0.64), rgba(4, 4, 5, 0.98) 72%);
  z-index: 140;
  animation: softFadeUp 0.28s ease;
}

.lightbox.is-open {
  display: flex;
}

.lightbox-stage {
  position: relative;
  width: min(96vw, 1600px);
  max-width: 1600px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding-top: 56px;
  padding-bottom: 78px;
}

.lightbox-image {
  max-width: min(74vw, 1120px);
  width: auto;
  max-height: 84vh;
  object-fit: contain;
  border-radius: 10px;
  box-shadow: 0 28px 80px rgba(0, 0, 0, 0.4);
  animation: softFadeUp 0.28s ease;
}

.lightbox-close,
.lightbox-nav,
.lightbox-preview {
  position: absolute;
  border: 0;
  color: white;
  cursor: pointer;
}

.lightbox-close,
.lightbox-nav {
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.9), rgba(18, 18, 20, 0.58));
  backdrop-filter: blur(12px);
  box-shadow: 0 16px 38px rgba(0, 0, 0, 0.22);
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease;
}

.lightbox-close:hover,
.lightbox-nav:hover,
.lightbox-close:focus-visible,
.lightbox-nav:focus-visible {
  transform: translateY(-1px);
  background: linear-gradient(180deg, rgba(209, 173, 120, 0.22), rgba(18, 18, 20, 0.78));
  border-color: rgba(209, 173, 120, 0.34);
}

.lightbox-close {
  top: 18px;
  right: 18px;
  width: 48px;
  height: 48px;
  border-radius: 50%;
  font-size: 2rem;
  z-index: 5;
}

.lightbox-nav {
  display: none;
}

.lightbox-counter {
  position: absolute;
  top: -4px;
  left: 50%;
  transform: translateX(-50%);
  padding: 8px 14px;
  border-radius: 999px;
  background: rgba(12, 12, 14, 0.72);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 248, 238, 0.92);
  font-size: 0.88rem;
  letter-spacing: 0.08em;
  backdrop-filter: blur(8px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 5;
}

.lightbox-caption {
  position: absolute;
  left: 50%;
  bottom: 4px;
  transform: translateX(-50%);
  min-width: min(72vw, 540px);
  max-width: min(86vw, 760px);
  padding: 12px 18px;
  border-radius: 14px;
  background: rgba(12, 12, 14, 0.74);
  border: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(245, 241, 234, 0.88);
  font-size: 0.95rem;
  text-align: center;
  backdrop-filter: blur(10px);
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.22);
  z-index: 5;
}

.lightbox-preview {
  top: 50%;
  transform: translateY(-50%);
  width: 128px;
  padding: 12px;
  border-radius: 18px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(18, 18, 20, 0.82), rgba(18, 18, 20, 0.56));
  backdrop-filter: blur(12px);
  transition: transform 0.24s ease, border-color 0.24s ease, background-color 0.24s ease, opacity 0.24s ease;
  z-index: 4;
}

.lightbox-preview:hover,
.lightbox-preview:focus-visible {
  transform: translateY(-50%) translateY(-2px);
  border-color: rgba(209, 173, 120, 0.34);
  background: linear-gradient(180deg, rgba(209, 173, 120, 0.14), rgba(18, 18, 20, 0.74));
}

.lightbox-preview img {
  width: 100%;
  aspect-ratio: 3 / 2;
  object-fit: cover;
  border-radius: 10px;
}

.lightbox-preview-label {
  display: block;
  margin-bottom: 8px;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: rgba(245, 241, 234, 0.8);
}

.lightbox-preview-prev {
  left: max(22px, calc(50% - min(74vw, 1120px) / 2 - 166px));
}

.lightbox-preview-next {
  right: max(22px, calc(50% - min(74vw, 1120px) / 2 - 166px));
}

.cookie-banner {
  position: fixed;
  inset: auto 16px 16px 16px;
  z-index: 160;
}

.cookie-panel {
  position: relative;
  max-width: 1180px;
  margin: 0 auto;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(18, 18, 20, 0.96);
  box-shadow: 0 24px 70px rgba(0, 0, 0, 0.34);
}

.cookie-close {
  position: absolute;
  top: 12px;
  right: 12px;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: 0;
  background: rgba(255, 255, 255, 0.07);
  color: var(--text);
  cursor: pointer;
}

.cookie-title {
  color: var(--text);
  font-weight: 700;
  margin-bottom: 8px;
}

.cookie-options {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin: 20px 0;
}

.cookie-option {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(255, 255, 255, 0.03);
}

.cookie-option.checked {
  border-color: rgba(209, 173, 120, 0.4);
}

.cookie-option.locked {
  opacity: 0.9;
}

.cookie-option input {
  accent-color: var(--accent);
}

.reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.7s ease, transform 0.7s ease;
}

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

.delay-1 {
  transition-delay: 0.08s;
}

.delay-2 {
  transition-delay: 0.14s;
}

.delay-3 {
  transition-delay: 0.2s;
}

@keyframes logoFloat {
  0%,
  100% {
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
  }
  50% {
    transform: translateY(-2px) scale(1.015);
    filter: drop-shadow(0 0 14px rgba(209, 173, 120, 0.18));
  }
}

@keyframes heroLogoGlow {
  0%,
  100% {
    opacity: 0.98;
    transform: translateY(0) scale(1);
    filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.08));
  }
  50% {
    opacity: 1;
    transform: translateY(-2px) scale(1.015);
    filter: drop-shadow(0 0 16px rgba(209, 173, 120, 0.16));
  }
}

@keyframes scrollLine {
  0%,
  100% {
    transform: scaleY(0.72);
    opacity: 0.7;
  }
  50% {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes cuePulseText {
  0%,
  100% {
    opacity: 0.76;
    text-shadow: 0 0 0 rgba(209, 173, 120, 0);
  }
  50% {
    opacity: 1;
    text-shadow: 0 0 12px rgba(209, 173, 120, 0.18);
  }
}

@keyframes eyebrowGlow {
  0%,
  100% {
    box-shadow:
      inset 0 0 0 1px rgba(209, 173, 120, 0.08),
      0 0 0 rgba(209, 173, 120, 0);
    transform: translateY(0);
  }
  50% {
    box-shadow:
      inset 0 0 0 1px rgba(209, 173, 120, 0.18),
      0 0 18px rgba(209, 173, 120, 0.08);
    transform: translateY(-1px);
  }
}

@keyframes softFadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes vzLoadMoreGlowStrong {
  0%,
  100% {
    transform: translateY(0) scale(1);
    background: rgba(209, 173, 120, 0.16);
    box-shadow:
      0 0 0 1px rgba(209, 173, 120, 0.24),
      0 0 24px rgba(209, 173, 120, 0.16),
      0 0 42px rgba(209, 173, 120, 0.08);
  }
  50% {
    transform: translateY(-1px) scale(1.025);
    background: rgba(209, 173, 120, 0.28);
    box-shadow:
      0 0 0 1px rgba(209, 173, 120, 0.42),
      0 0 42px rgba(209, 173, 120, 0.34),
      0 0 84px rgba(209, 173, 120, 0.18);
  }
}

@media (max-width: 1180px) {
  .hero-grid {
    padding-left: 8px;
    grid-template-columns: minmax(0, 395px) 1fr;
  }

  .hero-panel,
  .hero-panel-editorial {
    width: 395px;
    max-width: 395px;
  }

  h1 {
    max-width: 9.6ch;
    font-size: clamp(1.38rem, 2vw, 2.3rem);
  }

  .about-layout {
    grid-template-columns: 1fr 1fr 220px;
    gap: 16px;
  }

  .lightbox-preview {
    display: none;
  }

  .lightbox-stage {
    padding-top: 52px;
    padding-bottom: 72px;
  }

  .lightbox-counter {
    top: -2px;
  }

  .lightbox-caption {
    bottom: 4px;
  }

  .lightbox-image {
    max-width: min(82vw, 1120px);
  }
}

@media (max-width: 920px) {
  .main-nav {
    position: absolute;
    top: calc(100% + 1px);
    left: 16px;
    right: 16px;
    padding: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    background: rgba(10, 10, 11, 0.97);
    border: 1px solid var(--line);
    border-radius: 14px;
  }

  .main-nav.is-open {
    display: flex;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    min-height: 74svh;
    padding-bottom: 78px;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    padding-left: 8px;
  }

  .hero-panel,
  .hero-panel-editorial {
    width: min(390px, calc(100vw - 16px));
    max-width: min(390px, calc(100vw - 16px));
    padding: 30px 18px 16px;
  }

  .hero-logo-full {
    width: 185px;
  }

  h1 {
    max-width: 9.4ch;
    font-size: clamp(1.5rem, 5.2vw, 2.25rem);
  }

  .hero-text {
    max-width: 285px;
    font-size: 0.8rem;
  }

  .section {
    padding: 48px 0;
  }

  .about-section,
  .portfolio-section,
  .offer-section,
  .contact-section {
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .section-heading h2 {
    font-size: clamp(2.55rem, 8vw, 4rem);
  }

  .eyebrow::after {
    width: 68px;
  }

  .about-layout,
  .offer-grid,
  .contact-shell,
  .footer-inner {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  .about-copy {
    max-width: 100%;
    margin-top: 1.1em;
  }

  .about-portrait-card {
    max-width: 340px;
    justify-self: start;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }

  .contact-social {
    margin-top: 0;
  }
}

@media (max-width: 640px) {
  .page-width {
    width: min(1360px, calc(100% - 20px));
  }

  .hero {
    min-height: 78svh;
    padding-bottom: 70px;
  }

  .hero-grid {
    padding-left: 6px;
  }

  .hero-panel,
  .hero-panel-editorial {
    width: calc(100vw - 12px);
    max-width: calc(100vw - 12px);
    padding: 26px 14px 14px;
    border-radius: 22px;
  }

  .hero-logo-full {
    width: 160px;
    margin-bottom: 10px;
  }

  .hero-intro {
    max-width: 300px;
    font-size: 0.58rem;
    letter-spacing: 0.16em;
  }

  h1 {
    max-width: 9.3ch;
    font-size: clamp(1.42rem, 7.8vw, 2rem);
  }

  .hero-text {
    max-width: 260px;
    font-size: 0.78rem;
  }

  .button,
  .footer-cookie-link {
    width: 100%;
  }

  .hero-actions {
    width: 100%;
  }

  .scroll-cue {
    display: none;
  }

  .section {
    padding: 40px 0;
  }

  .about-section,
  .portfolio-section,
  .offer-section,
  .contact-section {
    padding-top: 34px;
    padding-bottom: 34px;
  }

  .section-heading h2 {
    font-size: clamp(2rem, 9.4vw, 3rem);
  }

  .eyebrow {
    padding: 10px 14px;
    font-size: 0.8rem;
    letter-spacing: 0.18em;
  }

  .eyebrow::after {
    width: 42px;
  }

  .portfolio-grid,
  .contact-cards {
    grid-template-columns: 1fr;
  }

  .price-row,
  .timeline-item {
    grid-template-columns: 1fr;
  }

  .price-row b {
    text-align: left;
  }

  .contact-portrait {
    min-height: auto;
  }

  .cookie-banner {
    inset: auto 10px 10px 10px;
  }

  .cookie-panel {
    padding: 20px;
  }

  .cookie-actions {
    flex-direction: column;
  }

  .lightbox-stage {
    padding-top: 46px;
    padding-bottom: 66px;
  }

  .lightbox-counter {
    top: -4px;
    font-size: 0.82rem;
  }

  .lightbox-caption {
    bottom: 0;
    min-width: auto;
    width: calc(100% - 24px);
    font-size: 0.88rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }

  .hero-slideshow,
  .hero-overlay,
  .hero-content,
  .hero-panel,
  .hero-panel-editorial {
    transform: none !important;
  }
}


/* cinematic hero light adaptation */
.hero {
  --hero-focus-x: 52%;
  --hero-focus-y: 34%;
  --hero-highlight-x: 55%;
  --hero-highlight-y: 26%;
  --hero-vignette-shift-x: 50%;
  --hero-vignette-shift-y: 50%;
  --hero-highlight-drift-x: 0%;
  --hero-highlight-drift-y: 0%;
  --hero-overlay-shift-x: 0px;
  --hero-overlay-shift-y: 0px;
  --hero-shadow-opacity: 0.62;
  --hero-top-shadow: 0.28;
  --hero-side-shadow: 0.26;
  --hero-glow-alpha: 0.08;
  --hero-gold-alpha: 0.05;
  --hero-vignette-size: 78%;
  --hero-ambient-scale: 1.05;
}

.hero-slideshow {
  transform: translate3d(0, 0, 0) scale(var(--hero-ambient-scale, 1.05)) !important;
  transition: transform 1200ms ease-out !important;
}

.hero-slide {
  filter: saturate(1.02) contrast(1.04) brightness(0.96);
}

.hero-overlay {
  background:
    radial-gradient(
      circle at calc(var(--hero-highlight-x) + var(--hero-highlight-drift-x)) calc(var(--hero-highlight-y) + var(--hero-highlight-drift-y)),
      rgba(255, 255, 255, var(--hero-glow-alpha)) 0%,
      rgba(231, 192, 132, var(--hero-gold-alpha)) 14%,
      rgba(231, 192, 132, 0) 34%
    ),
    radial-gradient(
      circle at var(--hero-focus-x) var(--hero-focus-y),
      rgba(255, 255, 255, 0.04) 0%,
      rgba(255, 255, 255, 0) 32%
    ),
    radial-gradient(
      circle at var(--hero-vignette-shift-x) var(--hero-vignette-shift-y),
      rgba(0, 0, 0, 0) 42%,
      rgba(0, 0, 0, calc(var(--hero-shadow-opacity) * 0.45)) var(--hero-vignette-size),
      rgba(0, 0, 0, calc(var(--hero-shadow-opacity) + 0.1)) 100%
    ),
    linear-gradient(
      180deg,
      rgba(0, 0, 0, var(--hero-top-shadow)) 0%,
      rgba(0, 0, 0, calc(var(--hero-shadow-opacity) * 0.48)) 34%,
      rgba(0, 0, 0, calc(var(--hero-shadow-opacity) + 0.16)) 100%
    ),
    linear-gradient(
      90deg,
      rgba(0, 0, 0, calc(var(--hero-side-shadow) + 0.18)) 0%,
      rgba(0, 0, 0, calc(var(--hero-side-shadow) * 0.42)) 38%,
      rgba(0, 0, 0, calc(var(--hero-side-shadow) * 0.5)) 62%,
      rgba(0, 0, 0, calc(var(--hero-side-shadow) + 0.08)) 100%
    ) !important;
  mix-blend-mode: normal;
  transform: translate3d(var(--hero-overlay-shift-x), var(--hero-overlay-shift-y), 0) scale(1.04);
  transition:
    background 1200ms ease,
    transform 1200ms ease-out,
    opacity 1200ms ease-out !important;
}

.hero::before {
  content: "";
  position: absolute;
  inset: -3%;
  z-index: 1;
  pointer-events: none;
  background:
    radial-gradient(
      circle at calc(var(--hero-focus-x) - 12%) calc(var(--hero-focus-y) - 8%),
      rgba(214, 174, 114, calc(var(--hero-gold-alpha) * 0.55)) 0%,
      rgba(214, 174, 114, 0) 28%
    );
  transform: translate3d(calc(var(--hero-overlay-shift-x) * -0.35), calc(var(--hero-overlay-shift-y) * -0.35), 0) scale(1.02);
  transition: transform 1200ms ease-out, background 1200ms ease;
}

.hero-panel-editorial,
.hero-panel {
  background:
    linear-gradient(
      180deg,
      rgba(8, 10, 14, calc(var(--hero-panel-overlay, 0.62) + 0.06)),
      rgba(8, 10, 14, var(--hero-panel-overlay, 0.62))
    ),
    radial-gradient(circle at top left, rgba(209, 173, 120, 0.05), transparent 38%) !important;
}

@media (max-width: 920px) {
  .hero-overlay {
    transform: none !important;
  }

  .hero::before {
    transform: none !important;
  }

  .hero-slide {
    filter: saturate(1.01) contrast(1.03) brightness(0.95);
  }
}


/* final hero title fix */
.hero-panel-editorial h1,
.hero-panel h1 {
  display: block !important;
  width: 100% !important;
  max-width: 320px !important;
  margin: 0 auto !important;
  text-align: center !important;
  font-size: clamp(1.18rem, 1.75vw, 1.72rem) !important;
  line-height: 1.08 !important;
  letter-spacing: 0 !important;
  text-transform: uppercase !important;
  text-wrap: balance !important;
  word-break: normal !important;
  overflow-wrap: normal !important;
}

.hero-panel-editorial .hero-text,
.hero-panel .hero-text {
  max-width: 360px !important;
  margin: 14px auto 0 !important;
  text-align: center !important;
  font-size: 0.8rem !important;
  line-height: 1.52 !important;
}

@media (max-width: 920px) {
  .hero-panel-editorial h1,
  .hero-panel h1 {
    max-width: 310px !important;
    font-size: clamp(1.18rem, 4.25vw, 1.62rem) !important;
    line-height: 1.08 !important;
  }
}

@media (max-width: 640px) {
  .hero-panel-editorial h1,
  .hero-panel h1 {
    max-width: 280px !important;
    font-size: clamp(1.08rem, 6.6vw, 1.46rem) !important;
    line-height: 1.1 !important;
  }

  .hero-panel-editorial .hero-text,
  .hero-panel .hero-text {
    max-width: 270px !important;
    font-size: 0.74rem !important;
    line-height: 1.48 !important;
  }
}

