:root {
  --bg: #0b0a09;
  --bg-elevated: #141210;
  --bg-card: #1a1714;
  --ink: #f6f1e8;
  --muted: #b8aea0;
  --gold: #f0cc4a;
  --gold-bright: #fff6c8;
  --gold-deep: #8a6410;
  --gold-dim: rgba(255, 246, 200, 0.2);
  --gold-metal: linear-gradient(115deg, #7a5810 0%, #e8c547 12%, #fff6c8 24%, #ffffff 38%, #f5d76e 50%, #fffef5 62%, #e0b83a 76%, #fff1b0 88%, #b8860b 100%);
  --gold-button: var(--gold);
  --line: rgba(246, 241, 232, 0.1);
  --danger: #c45c4a;
  --shadow: 0 24px 80px rgba(0, 0, 0, 0.45);
  --radius: 18px;
  --header-h: 96px;
  --max: 1180px;
  --font-display: "Syne", system-ui, sans-serif;
  --font-brand: "Cinzel", "Syne", serif;
  --font-body: "Outfit", system-ui, sans-serif;
}

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

html {
  scroll-behavior: smooth;
}

body {
  font-family: var(--font-body);
  background: var(--bg);
  color: var(--ink);
  line-height: 1.65;
  min-height: 100vh;
  overflow-x: hidden;
  animation: pageEnter 0.5s ease both;
}

html::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 10000;
  pointer-events: none;
  background: var(--bg);
  border-bottom: 1px solid rgba(240, 204, 74, 0.55);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.35);
  transform: translateY(0);
  animation: veilReveal 0.5s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

html.is-leaving {
  cursor: wait;
}

html.is-leaving::before {
  pointer-events: auto;
  animation: veilCover 0.45s cubic-bezier(0.76, 0, 0.24, 1) forwards;
}

html.is-leaving body {
  animation: pageLeave 0.4s ease forwards;
}

@keyframes pageEnter {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

@keyframes pageLeave {
  to {
    opacity: 0.35;
  }
}

@keyframes veilReveal {
  from {
    transform: translateY(0);
  }
  to {
    transform: translateY(-101%);
  }
}

@keyframes veilCover {
  from {
    transform: translateY(101%);
  }
  to {
    transform: translateY(0);
  }
}

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

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

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

ul {
  list-style: none;
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  background: var(--gold);
  color: #111;
  padding: 0.6rem 1rem;
  z-index: 100;
}

.skip-link:focus {
  top: 1rem;
}

.container {
  width: min(var(--max), calc(100% - 2.4rem));
  margin-inline: auto;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.7rem;
  color: var(--gold);
  letter-spacing: 0.28em;
  text-transform: uppercase;
  font-size: 0.72rem;
  font-weight: 500;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 1px;
  background: var(--gold);
}

h1,
h2,
h3,
.display {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.08;
  letter-spacing: -0.045em;
}

h1 {
  font-size: clamp(2.6rem, 6vw, 5.2rem);
}

h2 {
  font-size: clamp(2rem, 4vw, 3.4rem);
}

h3 {
  font-size: 1.45rem;
}

.lede {
  color: var(--muted);
  font-size: 1.08rem;
  max-width: 42rem;
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  height: var(--header-h);
  display: flex;
  align-items: center;
  background: rgba(11, 10, 9, 0.72);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: min(1280px, calc(100% - 2.4rem));
  margin-inline: auto;
}

.brand {
  display: flex;
  align-items: center;
  gap: 0.9rem;
}

.brand img,
.brand-logo {
  width: 70px;
  height: 70px;
  border-radius: 22px;
  object-fit: contain;
  border: none;
  filter: drop-shadow(0 0 14px rgba(240, 204, 74, 0.4));
  background: transparent;
  animation: logoGlow 2.8s ease-in-out infinite;
}

@keyframes logoGlow {
  0%, 100% { filter: drop-shadow(0 0 8px rgba(240, 204, 74, 0.28)); }
  50% { filter: drop-shadow(0 0 18px rgba(240, 204, 74, 0.65)); }
}

@media (prefers-reduced-motion: reduce) {
  .brand img,
  .brand-logo {
    animation: none;
  }

  html::before {
    animation: none;
    transform: translateY(-101%);
  }

  body,
  html.is-leaving body {
    animation: none;
    opacity: 1;
  }

  html.is-leaving::before {
    animation: none;
    transform: translateY(-101%);
  }
}

.brand-text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.brand-text strong {
  font-family: var(--font-brand);
  font-size: clamp(1.2rem, 2vw, 1.5rem);
  font-weight: 500;
  letter-spacing: 0.06em;
  line-height: 1.2;
  color: var(--gold);
}

.brand-text span {
  margin-top: 0.1rem;
  font-family: var(--font-display);
  font-size: 0.62rem;
  letter-spacing: 0.32em;
  text-transform: uppercase;
  font-weight: 600;
  color: var(--gold);
}

.nav-toggle {
  display: none;
}

.nav-toggle-label {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 10px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
}

.nav-toggle-label span {
  display: block;
  width: 18px;
  height: 1.5px;
  background: var(--ink);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 1.6rem;
}

.site-nav a {
  font-size: 0.88rem;
  color: var(--muted);
  position: relative;
}

.site-nav a:hover,
.site-nav a.active {
  color: var(--ink);
}

.site-nav a.active:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -8px;
  width: 100%;
  height: 1px;
  background: var(--gold);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: 1px solid transparent;
  cursor: pointer;
  transition: 0.25s ease;
  font-size: 0.88rem;
  letter-spacing: 0.04em;
  position: relative;
  overflow: hidden;
  z-index: 0;
}

.btn-gold {
  background: var(--gold);
  color: #111;
  -webkit-text-fill-color: #111;
  font-weight: 700;
  border-color: var(--gold);
  box-shadow: none;
}

.btn-gold:hover {
  transform: translateY(-1px);
  background: #e4c043;
  border-color: #e4c043;
  filter: none;
  box-shadow: none;
}

@keyframes metalShift {
  0%, 100% { background-position: 0% 40%; }
  50% { background-position: 100% 60%; }
}

.btn-ghost {
  border-color: var(--line);
  color: var(--ink);
  background: transparent;
}

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

.hero {
  position: relative;
  min-height: calc(100vh - var(--header-h));
  display: grid;
  place-items: center;
  overflow: hidden;
  isolation: isolate;
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(180deg, rgba(11, 10, 9, 0.35) 0%, rgba(11, 10, 9, 0.55) 45%, rgba(11, 10, 9, 0.92) 100%),
    radial-gradient(ellipse at 20% 20%, rgba(255, 241, 176, 0.18), transparent 45%);
}

.hero-content {
  text-align: center;
  padding: 5rem 0 4rem;
}

.hero-content h1 {
  max-width: 16ch;
  margin: 1rem auto 1.1rem;
}

.hero-content .lede {
  margin-inline: auto;
}

.hero-actions {
  display: flex;
  justify-content: center;
  gap: 0.8rem;
  flex-wrap: wrap;
  margin-top: 2rem;
}

.hero-meta {
  display: flex;
  justify-content: center;
  gap: 2.4rem;
  margin-top: 3.2rem;
  color: var(--muted);
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-meta strong {
  display: block;
  color: var(--gold-bright);
  font-family: var(--font-display);
  font-size: 1.7rem;
  letter-spacing: -0.04em;
  text-transform: none;
  font-weight: 700;
}

.page-hero {
  position: relative;
  min-height: 52vh;
  display: grid;
  place-items: end start;
  isolation: isolate;
  overflow: hidden;
}

.page-hero .hero-media,
.page-hero::after {
  position: absolute;
  inset: 0;
}

.page-hero .hero-media {
  z-index: -2;
}

.page-hero .hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.page-hero::after {
  content: "";
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.2), rgba(11, 10, 9, 0.92));
}

.page-hero .container {
  padding: 6rem 0 3rem;
}

section {
  padding: 5.5rem 0;
}

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

.pillars {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.2rem;
}

.pillar {
  position: relative;
  min-height: 420px;
  border-radius: var(--radius);
  overflow: hidden;
  isolation: isolate;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  padding: 1.6rem;
  box-shadow: var(--shadow);
}

.pillar img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
  transition: 0.6s ease;
}

.pillar::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: linear-gradient(180deg, rgba(11, 10, 9, 0.05), rgba(11, 10, 9, 0.88));
}

.pillar:hover img {
  transform: scale(1.06);
}

.pillar h3 {
  font-size: 2rem;
  margin: 0.35rem 0 0.4rem;
}

.pillar p {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-grid,
.reason-grid,
.card-grid,
.team-grid,
.testimonial-grid,
.faq-list {
  display: grid;
  gap: 1.1rem;
}

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

.card,
.service-card,
.reason,
.team-card,
.testimonial,
.faq-item,
.contact-card {
  background: linear-gradient(180deg, #1c1916, #141210);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.4rem;
}

.service-card .icon {
  width: 44px;
  height: 44px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--gold-dim);
  color: var(--gold);
  margin-bottom: 1rem;
}

.service-card h3 {
  margin-bottom: 0.45rem;
}

.service-card p,
.reason p,
.team-card p {
  color: var(--muted);
}

.featured {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  gap: 1rem;
}

.shot {
  position: relative;
  overflow: hidden;
  border-radius: var(--radius);
  min-height: 280px;
}

.shot img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  min-height: 280px;
}

.shot figcaption {
  position: absolute;
  inset: auto 0 0 0;
  padding: 1.1rem 1.2rem;
  background: linear-gradient(transparent, rgba(11, 10, 9, 0.9));
}

.shot figcaption span {
  color: var(--gold);
  font-size: 0.75rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.cta-band {
  position: relative;
  isolation: isolate;
  overflow: hidden;
  border-radius: 28px;
  padding: 3.4rem 2rem;
  text-align: center;
}

.cta-band img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: -2;
}

.cta-band::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background: rgba(11, 10, 9, 0.72);
}

.cta-band h2 {
  margin: 0.6rem auto 0.8rem;
}

.cta-band .lede {
  margin-inline: auto;
}

.cta-band .hero-actions {
  margin-top: 1.5rem;
}

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

.testimonial img,
.team-card img {
  width: 72px;
  height: 72px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--gold-dim);
  margin-bottom: 1rem;
}

.testimonial blockquote {
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 500;
  letter-spacing: -0.03em;
  line-height: 1.45;
  margin-bottom: 1rem;
}

.testimonial cite {
  color: var(--muted);
  font-style: normal;
  font-size: 0.9rem;
}

.team-grid,
.reason-grid {
  grid-template-columns: repeat(4, 1fr);
}

.team-card img {
  width: 100%;
  height: 260px;
  border-radius: 14px;
  margin-bottom: 1rem;
}

.team-card span {
  color: var(--gold);
  font-size: 0.78rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.split img {
  width: 100%;
  height: 460px;
  object-fit: cover;
  border-radius: 24px;
}

.story-list {
  margin-top: 1.4rem;
  display: grid;
  gap: 1.4rem;
}

.story-list li {
  padding-left: 1rem;
  border-left: 2px solid var(--gold);
  line-height: 1.65;
}

.story-list strong {
  display: block;
  color: var(--gold);
  font-size: 0.82rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.filters {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem;
  margin-bottom: 1.6rem;
}

.filters input {
  display: none;
}

.filters label {
  padding: 0.5rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 999px;
  cursor: pointer;
  color: var(--muted);
  font-size: 0.85rem;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

.gallery article {
  display: none;
  border-radius: var(--radius);
  overflow: hidden;
  background: var(--bg-card);
  border: 1px solid var(--line);
}

.gallery article img {
  width: 100%;
  height: 240px;
  object-fit: cover;
}

.gallery article div {
  padding: 1rem 1.1rem 1.2rem;
}

.gallery article p {
  color: var(--muted);
  font-size: 0.92rem;
}

#f-all:checked ~ .gallery article,
#f-wedding:checked ~ .gallery article[data-cat="wedding"],
#f-photo:checked ~ .gallery article[data-cat="photo"],
#f-music:checked ~ .gallery article[data-cat="music"],
#f-cinema:checked ~ .gallery article[data-cat="cinema"] {
  display: block;
}

#f-all:checked ~ .filters label[for="f-all"],
#f-wedding:checked ~ .filters label[for="f-wedding"],
#f-photo:checked ~ .filters label[for="f-photo"],
#f-music:checked ~ .filters label[for="f-music"],
#f-cinema:checked ~ .filters label[for="f-cinema"] {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 1.4rem;
}

form {
  display: grid;
  gap: 0.9rem;
}

label span {
  display: block;
  margin-bottom: 0.35rem;
  font-size: 0.86rem;
  color: var(--muted);
}

input,
textarea,
select {
  width: 100%;
  background: #100e0c;
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 0.85rem 0.95rem;
}

input:focus,
textarea:focus,
select:focus {
  outline: 1px solid var(--gold);
}

textarea {
  min-height: 140px;
  resize: vertical;
}

.form-success {
  display: none;
  padding: 0.9rem 1rem;
  border-radius: 12px;
  background: rgba(90, 160, 110, 0.15);
  border: 1px solid rgba(90, 160, 110, 0.4);
}

.form-success.show {
  display: block;
}

.contact-details {
  display: grid;
  gap: 0.9rem;
}

.contact-card h3 {
  margin-bottom: 0.3rem;
}

.contact-card p,
.contact-card a {
  color: var(--muted);
}

.socials {
  display: flex;
  gap: 0.6rem;
  flex-wrap: wrap;
}

.socials a {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  color: var(--gold);
}

.socials a svg {
  width: 18px;
  height: 18px;
  display: block;
}

.socials a:hover {
  background: var(--gold);
  color: #111;
  border-color: var(--gold);
}

.map-embed {
  margin-top: 1.2rem;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  min-height: 240px;
}

.map-embed iframe {
  width: 100%;
  height: 240px;
  border: 0;
  filter: grayscale(1) contrast(1.1);
}

.faq-item {
  padding: 0;
}

.faq-item details {
  padding: 1.1rem 1.2rem;
}

.faq-item summary {
  cursor: pointer;
  font-weight: 500;
  list-style: none;
}

.faq-item summary::-webkit-details-marker {
  display: none;
}

.faq-item p {
  color: var(--muted);
  margin-top: 0.7rem;
}

.legal {
  color: var(--muted);
  display: grid;
  gap: 1rem;
  max-width: 48rem;
}

.site-footer {
  border-top: 1px solid var(--line);
  padding: 3rem 0 1.6rem;
  background: #090807;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 2rem;
}

.site-footer h3 {
  font-size: 1.1rem;
  margin-bottom: 0.8rem;
}

.site-footer a,
.site-footer p {
  color: var(--muted);
}

.site-footer li + li {
  margin-top: 0.4rem;
}

.copyright {
  margin-top: 2.4rem;
  padding-top: 1.2rem;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 0.86rem;
}

@media (max-width: 980px) {
  .pillars,
  .service-grid,
  .testimonial-grid,
  .gallery,
  .featured,
  .split,
  .contact-layout,
  .footer-grid,
  .team-grid,
  .reason-grid {
    grid-template-columns: 1fr 1fr;
  }

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

  .site-nav {
    position: absolute;
    top: var(--header-h);
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: #120f0d;
    border-bottom: 1px solid var(--line);
    padding: 0.6rem 1.2rem 1.2rem;
  }

  .site-nav a,
  .site-nav .btn {
    padding: 0.75rem 0;
  }

  .nav-toggle:checked ~ .site-nav {
    display: flex;
  }

  .hero-meta {
    gap: 1.2rem;
  }
}

@media (max-width: 680px) {
  .brand-text strong {
    font-size: 1.12rem;
    letter-spacing: 0.04em;
  }

  .brand-text span {
    letter-spacing: 0.22em;
    font-size: 0.58rem;
  }

  .brand img,
  .brand-logo {
    width: 56px;
    height: 56px;
    border-radius: 18px;
  }

  .pillars,
  .service-grid,
  .testimonial-grid,
  .gallery,
  .featured,
  .split,
  .contact-layout,
  .footer-grid,
  .team-grid,
  .reason-grid {
    grid-template-columns: 1fr;
  }

  .hero-meta {
    flex-direction: column;
    gap: 1rem;
  }

  .shot,
  .shot img,
  .split img {
    min-height: 220px;
    height: 260px;
  }

  .pillar {
    min-height: 340px;
  }
}
