:root {
  --ink: #171211;
  --paper: #f8f2eb;
  --panel: #fffaf5;
  --soft: #e7dcd3;
  --muted: #736762;
  --gold: #b88a44;
  --rose: #a94e5f;
  --wine: #5b202e;
  --teal: #1f746f;
  --shadow: 0 24px 70px rgba(31, 19, 15, 0.16);
}

* {
  box-sizing: border-box;
  min-width: 0;
}
html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
  width: 100%;
}

body.nav-open { overflow: hidden; }
a { color: inherit; text-decoration: none; }
button { font: inherit; }
img, video { max-width: 100%; }

.site-header {
  position: fixed;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  width: min(1180px, calc(100% - 32px));
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 10px 12px;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(23, 18, 17, 0.78);
  color: #fff;
  backdrop-filter: blur(18px);
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 900;
}

.brand img {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  object-fit: cover;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 4px;
}

.site-nav a {
  padding: 10px 12px;
  border-radius: 8px;
  color: #e9ded7;
  font-size: 0.94rem;
}

.site-nav a:hover {
  background: rgba(255,255,255,0.1);
  color: #fff;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 8px;
  background: transparent;
  color: #fff;
}

.hero {
  position: relative;
  height: 100vh;
  min-height: 680px;
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  align-items: stretch;
  overflow: hidden;
  background: #171211;
  color: #fff;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(18, 13, 11, 0.96) 0%, rgba(18, 13, 11, 0.78) 42%, rgba(18, 13, 11, 0.12) 100%),
    radial-gradient(circle at 18% 24%, rgba(169, 78, 95, 0.26), transparent 34%);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(100px, 10vw, 150px) clamp(28px, 7vw, 92px) 70px;
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

h1, h2, h3, p { margin-top: 0; }

h1 {
  margin-bottom: 18px;
  font-size: clamp(3.7rem, 8vw, 8.4rem);
  line-height: 0.9;
}

h2 {
  font-size: clamp(2.1rem, 4vw, 4.5rem);
  line-height: 1;
  margin-bottom: 14px;
}

h1,
h2,
h3,
p,
a,
strong,
span,
button {
  overflow-wrap: anywhere;
}

h3 {
  font-size: 1.3rem;
  margin-bottom: 10px;
}

p {
  color: var(--muted);
  line-height: 1.65;
}

.hero-line {
  max-width: 620px;
  color: #e5d7ce;
  font-size: clamp(1.05rem, 1.6vw, 1.35rem);
}

.hero-actions,
.filters {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.primary,
.secondary,
.filters button {
  min-height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border-radius: 8px;
  border: 1px solid var(--soft);
  cursor: pointer;
}

.primary,
.filters button.active {
  background: #fff;
  color: #171211;
  border-color: #fff;
  font-weight: 900;
}

.secondary {
  color: #fff;
  border-color: rgba(255,255,255,0.34);
  background: rgba(255,255,255,0.08);
}

.hero-image {
  position: relative;
  z-index: 0;
  height: 100%;
  min-height: 0;
  overflow: hidden;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 52% center;
  display: block;
  transform: scale(1.02);
}

.service-grid span,
.contact-form span,
.celeb-tile span,
.reel-grid b,
.tile span {
  display: block;
  color: var(--gold);
  font-size: 0.76rem;
  font-weight: 900;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-peek {
  position: relative;
  z-index: 4;
  padding: 18px clamp(18px, 4vw, 54px);
  background: #fffaf5;
  border-bottom: 1px solid var(--soft);
}

.service-toggle {
  width: fit-content;
  min-height: 46px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0 18px;
  border: 1px solid var(--soft);
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.service-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-height: 0;
  overflow: hidden;
  opacity: 0;
  transform: translateY(-6px);
  transition: max-height 260ms ease, opacity 220ms ease, transform 220ms ease, margin 220ms ease;
}

.service-peek.is-open .service-pills {
  max-height: 180px;
  margin-top: 14px;
  opacity: 1;
  transform: translateY(0);
}

@media (hover: hover) and (pointer: fine) {
  .service-peek:hover .service-pills {
    max-height: 180px;
    margin-top: 14px;
    opacity: 1;
    transform: translateY(0);
  }
}

.service-pills span {
  padding: 10px 14px;
  border: 1px solid var(--soft);
  border-radius: 999px;
  font-weight: 800;
  background: var(--panel);
}

.section {
  padding: clamp(54px, 7vw, 100px) clamp(18px, 4vw, 54px);
}

.section-heading {
  max-width: 780px;
  margin-bottom: 26px;
}

.filters {
  margin-bottom: 18px;
}

.filters button {
  background: var(--panel);
  color: var(--ink);
}

.gallery {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 10px;
}

.tile,
.celeb-tile {
  position: relative;
  border: 0;
  padding: 0;
  min-height: 220px;
  border-radius: 8px;
  overflow: hidden;
  background: #211;
  cursor: zoom-in;
}

.tile.large {
  grid-column: span 2;
  grid-row: span 2;
  min-height: 450px;
}

.tile img,
.celeb-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 420ms ease;
}

.tile:hover img,
.celeb-tile:hover img {
  transform: scale(1.055);
}

.tile span,
.celeb-tile span {
  position: absolute;
  left: 12px;
  bottom: 12px;
  padding: 7px 10px;
  border-radius: 999px;
  background: rgba(18, 13, 11, 0.74);
  color: #fff;
}

.dark-section {
  background: #171211;
  color: #fff;
}

.dark-section p { color: #d6c8bf; }

.reel-grid {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 12px;
}

.reel-grid article {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  background: #050403;
  min-height: 330px;
}

.reel-grid video {
  width: 100%;
  height: 100%;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  display: block;
  filter: saturate(1.03) contrast(1.03);
}

.reel-grid b {
  position: absolute;
  left: 12px;
  right: 12px;
  bottom: 12px;
  color: #fff;
  padding: 8px 10px;
  border-radius: 8px;
  background: rgba(18, 13, 11, 0.72);
}

.celebrity-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  grid-auto-rows: 230px;
  gap: 10px;
}

.celeb-tile.wide { grid-column: span 2; }
.celeb-tile.tall { grid-row: span 2; }

.services {
  background: #fffaf5;
}

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

.service-grid article,
.contact {
  border: 1px solid var(--soft);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 16px 44px rgba(34, 20, 16, 0.08);
}

.service-grid article {
  padding: 22px;
}

.service-grid article:hover {
  transform: translateY(-4px);
  transition: transform 220ms ease;
}

.about {
  display: grid;
  grid-template-columns: minmax(320px, 0.92fr) minmax(320px, 1.08fr);
  gap: clamp(24px, 5vw, 70px);
  align-items: center;
  padding: clamp(54px, 7vw, 100px) clamp(18px, 4vw, 54px);
}

.about-media {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 12px;
  align-items: end;
}

.about-media img {
  width: 100%;
  border-radius: 8px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.about-media img:first-child {
  aspect-ratio: 4 / 5;
}

.about-media img:last-child {
  aspect-ratio: 3 / 4;
  transform: translateY(34px);
}

.contact {
  margin: clamp(32px, 5vw, 70px) clamp(18px, 4vw, 54px) clamp(54px, 7vw, 100px);
  padding: clamp(26px, 5vw, 60px);
  display: grid;
  grid-template-columns: minmax(260px, 0.75fr) minmax(320px, 1.25fr);
  gap: 24px;
  align-items: center;
}

.contact-form {
  display: grid;
  gap: 12px;
}

.contact-form label {
  display: grid;
  gap: 7px;
}

.contact-form > input[type="hidden"] {
  display: none;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--soft);
  border-radius: 8px;
  padding: 14px 15px;
  background: #fff;
  color: var(--ink);
  outline: none;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 4px rgba(184, 138, 68, 0.14);
}

.contact-form button {
  min-height: 48px;
  border: 0;
  border-radius: 8px;
  background: var(--ink);
  color: #fff;
  font-weight: 900;
  cursor: pointer;
}

.contact-form button:disabled {
  opacity: 0.64;
  cursor: wait;
}

.form-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.92rem;
}

.success-panel {
  border: 1px solid rgba(31, 116, 111, 0.22);
  border-radius: 8px;
  padding: 16px;
  background: rgba(31, 116, 111, 0.08);
}

.success-panel strong {
  display: block;
  margin-bottom: 6px;
  color: var(--teal);
}

.success-panel p {
  margin-bottom: 12px;
}

.success-panel a,
.direct-contact a {
  display: inline-flex;
  align-items: center;
  min-height: 40px;
  border-radius: 8px;
  font-weight: 900;
}

.success-panel a {
  padding: 0 14px;
  background: var(--ink);
  color: #fff;
}

.direct-contact {
  display: grid;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px solid var(--soft);
}

.direct-contact p {
  margin: 0;
  color: var(--muted);
}

.direct-contact a {
  color: var(--ink);
  text-decoration: underline;
  text-underline-offset: 4px;
  overflow-wrap: anywhere;
}

dialog {
  width: min(92vw, 920px);
  border: 0;
  border-radius: 8px;
  padding: 0;
  background: transparent;
}

dialog::backdrop { background: rgba(10, 7, 6, 0.84); }

dialog img {
  width: 100%;
  max-height: 88vh;
  object-fit: contain;
  border-radius: 8px;
  background: #111;
}

#videoLightbox {
  width: min(92vw, 430px);
}

#videoLightbox video {
  width: 100%;
  max-height: 88vh;
  display: block;
  border-radius: 8px;
  background: #050403;
}

#closeLightbox,
#closeVideoLightbox {
  position: absolute;
  right: -10px;
  top: -14px;
  width: 42px;
  height: 42px;
  border: 0;
  border-radius: 50%;
  background: #fff;
  color: #111;
  font-size: 1.5rem;
  cursor: pointer;
}

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

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

@media (max-width: 1180px) {
  .gallery { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .reel-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
  .service-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .celebrity-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 840px) {
  .menu-button { display: inline-grid; place-items: center; }
  .site-nav {
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 12px;
    border-radius: 8px;
    background: rgba(23, 18, 17, 0.96);
  }
  body.nav-open .site-nav { display: flex; }

  .hero,
  .about,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    height: auto;
    min-height: 0;
    display: block;
  }

  .hero::before {
    background: linear-gradient(180deg, rgba(18, 13, 11, 0.95) 0%, rgba(18, 13, 11, 0.58) 48%, rgba(18, 13, 11, 0.08) 100%);
  }

  .hero-image {
    min-height: 0;
    height: clamp(520px, 74vh, 720px);
  }

  .hero-copy {
    position: absolute;
    inset: 0;
    min-height: 0;
    padding: 104px 24px 132px;
    justify-content: flex-end;
  }

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

  .celebrity-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: 220px;
  }

  .celeb-tile.wide,
  .celeb-tile.tall {
    grid-column: span 1;
    grid-row: span 1;
  }
}

@media (max-width: 560px) {
  h1 { font-size: clamp(2.9rem, 17vw, 4.4rem); }
  h2 {
    font-size: clamp(1.55rem, 6.4vw, 1.95rem);
    line-height: 1.08;
  }
  .site-header { top: 10px; width: calc(100% - 20px); }
  .brand span { font-size: 0.92rem; }

  .site-nav {
    max-height: calc(100vh - 92px);
    overflow-y: auto;
  }

  .hero-image {
    height: 76vh;
  }

  .hero-image img {
    object-position: 58% center;
  }

  .hero-copy {
    padding: 102px 18px 138px;
  }

  .hero-line {
    font-size: 1rem;
    max-width: 320px;
  }

  .section,
  .about {
    padding: 46px 14px;
  }

  .contact {
    margin: 24px 14px 52px;
    padding: 22px 16px;
  }

  .service-peek {
    padding: 14px;
  }

  .service-toggle {
    width: 100%;
  }

  .service-pills {
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .service-peek.is-open .service-pills {
    max-height: 320px;
  }

  .service-pills span {
    width: 100%;
    text-align: center;
    padding: 9px 8px;
    font-size: 0.86rem;
  }

  .hero-actions {
    display: grid;
    grid-template-columns: 1fr;
    width: 100%;
  }

  .hero-actions a {
    width: 100%;
    padding: 0 10px;
    white-space: normal;
  }

  .filters button {
    flex: 1 1 auto;
  }

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

  .filters button {
    width: 100%;
    padding: 0 10px;
  }

  .section-heading {
    max-width: 100%;
  }

  .section-heading h2 {
    max-width: 13ch;
  }

  .tile,
  .tile.large,
  .celeb-tile {
    grid-column: span 1;
    grid-row: span 1;
    min-height: 0;
    aspect-ratio: 4 / 5;
    width: 100%;
  }

  .gallery,
  .service-grid,
  .celebrity-grid {
    grid-template-columns: 1fr;
    width: 100%;
  }

  .celebrity-grid {
    grid-auto-rows: auto;
    gap: 16px;
  }

  .gallery {
    gap: 12px;
  }

  .tile img {
    object-position: center top;
  }

  .celeb-tile {
    aspect-ratio: auto;
    background: #171211;
    box-shadow: 0 16px 36px rgba(34, 20, 16, 0.12);
  }

  .celeb-tile img {
    height: auto;
    object-fit: contain;
    object-position: center;
    background: #171211;
  }

  .celeb-tile span {
    position: static;
    border-radius: 0;
    padding: 10px 12px;
    background: #171211;
    color: #fff;
    text-align: left;
  }

  .reel-grid {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .reel-grid article {
    min-height: 0;
    width: min(100%, 360px);
    margin: 0 auto;
    aspect-ratio: 9 / 16;
  }

  .about-media {
    grid-template-columns: 1fr;
  }

  .about-media img:last-child {
    transform: none;
  }

  .reveal {
    opacity: 1;
    transform: none;
    transition: none;
  }
}
