:root {
  --black: #050505;
  --black-soft: #111111;
  --white: #f7f3ed;
  --white-muted: #c9c2b7;
  --orange: #ff7a00;
  --orange-dark: #d65d00;
  --line: rgba(247, 243, 237, 0.16);
  --max: 1240px;
  --text-sm: 14px;
  --text-base: 16px;
  --text-lg: 18px;
  --heading-md: clamp(34px, 4.4vw, 58px);
  --heading-lg: clamp(42px, 7vw, 92px);
  --nav-hover-bg: var(--orange);
  --nav-hover-text: #050505;
}

:root[data-theme="light"] {
  --black: #fcead9;
  --black-soft: #ffe1bf;
  --white: #0b0b0b;
  --white-muted: #3f2a18;
  --line: rgba(5, 5, 5, 0.36);
  --nav-hover-bg: #050505;
  --nav-hover-text: var(--orange);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  overflow-x: hidden;
  transition: background 220ms ease, color 220ms ease;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  background-image:
    linear-gradient(rgba(247, 243, 237, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(247, 243, 237, 0.035) 1px, transparent 1px);
  background-size: 88px 88px;
  mask-image: linear-gradient(to bottom, black, transparent 82%);
  z-index: -1;
}

:root[data-theme="light"] body::before {
  background-image:
    linear-gradient(rgba(5, 5, 5, 0.055) 1px, transparent 1px),
    linear-gradient(90deg, rgba(5, 5, 5, 0.055) 1px, transparent 1px);
}

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

img,
iframe {
  display: block;
}

.cursor-dot {
  position: fixed;
  width: 18px;
  height: 18px;
  border: 2px solid var(--orange);
  border-radius: 999px;
  pointer-events: none;
  transform: translate(-50%, -50%);
  transition: width 160ms ease, height 160ms ease, opacity 160ms ease;
  z-index: 1000;
}

.cursor-dot.is-hovering {
  width: 48px;
  height: 48px;
  opacity: 0.85;
}

.site-header {
  position: sticky;
  top: 14px;
  z-index: 20;
  width: min(calc(100% - 32px), var(--max));
  margin: 14px auto 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
}

.header-bar {
  min-height: 64px;
  flex: 1;
  padding: 10px 10px 10px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  border-radius: 8px;
}

:root[data-theme="light"] .header-bar {
  border-color: #050505;
  background: rgba(255, 225, 191, 0.9);
  box-shadow: 0 14px 40px rgba(72, 38, 8, 0.12);
}

:root[data-theme="light"] .nav-links {
  color: #4d321d;
}

:root[data-theme="light"] .brand img {
  border-color: #050505;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: max-content;
  font-size: 14px;
  font-weight: 700;
}

.brand img {
  width: 38px;
  height: 38px;
  object-fit: cover;
  border-radius: 50%;
  border: 2px solid var(--orange);
}

.menu-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: transparent;
  color: var(--white);
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.is-open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: clamp(12px, 2.2vw, 28px);
  color: var(--white-muted);
  font-size: 13px;
}

.nav-links a {
  position: relative;
  isolation: isolate;
  padding: 8px 10px;
  border-radius: 8px;
  overflow: hidden;
  transition: color 180ms ease, transform 180ms ease;
}

.nav-links a::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  border-radius: inherit;
  background: var(--nav-hover-bg);
  opacity: 0;
  transform: scale(0.86);
  transition: opacity 180ms ease, transform 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--nav-hover-text);
  transform: translateY(-1px);
  outline: 0;
}

.nav-links a:hover::before,
.nav-links a:focus-visible::before {
  opacity: 1;
  transform: scale(1);
}

.nav-cta,
.button,
.contact-links a,
.theme-toggle,
.view-toggle button {
  border-radius: 8px;
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: max-content;
  padding: 13px 16px;
  background: var(--orange);
  color: #111;
  font-size: 13px;
  font-weight: 800;
}

:root[data-theme="light"] .nav-cta {
  background: var(--orange);
  color: #050505;
}

.theme-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  min-width: 44px;
  height: 44px;
  min-height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(5, 5, 5, 0.82);
  backdrop-filter: blur(18px);
  color: var(--white);
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

:root[data-theme="light"] .theme-toggle {
  border-color: #050505;
  background: rgba(255, 225, 191, 0.9);
  box-shadow: 0 14px 40px rgba(72, 38, 8, 0.12);
}

.theme-toggle img {
  width: 20px;
  height: 20px;
  object-fit: contain;
}

.theme-toggle:hover {
  background: var(--orange);
  color: #050505;
  border-color: var(--orange);
}

:root[data-theme="light"] .theme-toggle:hover {
  background: #050505;
  border-color: #050505;
}

:root[data-theme="light"] .edit-card {
  background: rgba(255, 225, 191, 0.38);
  border-color: #050505;
}

:root[data-theme="light"] .video-frame,
:root[data-theme="light"] .reel-block,
:root[data-theme="light"] .behind-media {
  border-color: var(--orange);
}

:root[data-theme="light"] .contact-links a,
:root[data-theme="light"] .tools-strip span {
  background: rgba(255, 225, 191, 0.35);
  border-color: #050505;
}

:root[data-theme="light"] .services-list,
:root[data-theme="light"] .services-list div,
:root[data-theme="light"] .site-footer,
:root[data-theme="light"] .calendly-frame,
:root[data-theme="light"] .view-toggle {
  border-color: #050505;
}

:root[data-theme="light"] .brand img {
  border-color: var(--orange);
}

.section-shell {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: clamp(72px, 10vw, 140px) 0;
}

.home-section {
  min-height: calc(100vh - 94px);
  display: flex;
  align-items: center;
  padding-top: clamp(54px, 7vw, 96px);
}

.home-copy {
  position: relative;
  width: 100%;
  text-align: left;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--orange);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-kicker {
  position: static;
  margin: 0;
  color: var(--orange);
  font-size: clamp(24px, 4.5vw, 64px);
  font-weight: 900;
  line-height: 0.56;
  letter-spacing: 0;
  text-transform: uppercase;
  text-align: left;
  transform: translateY(clamp(14px, 1.9vw, 26px));
}

.hero-lockup {
  display: grid;
  grid-template-columns: minmax(0, 1fr) clamp(280px, 31vw, 440px);
  align-items: center;
  gap: clamp(8px, 2vw, 28px);
}

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

.hero-name {
  margin: 0;
  font-size: clamp(78px, 13vw, 170px);
  line-height: 0.82;
  letter-spacing: 0;
  text-transform: uppercase;
}

.hero-name span {
  display: block;
  transform-origin: left center;
}

.hero-photo {
  position: relative;
  overflow: hidden;
  aspect-ratio: 3 / 4;
  border: 2px solid var(--orange);
  border-radius: 8px;
  background: var(--black-soft);
  transform: rotate(2deg);
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: saturate(0.9) contrast(1.05);
}

.hero-intro {
  width: min(100%, 680px);
  margin: clamp(10px, 1.2vw, 16px) 0 0;
  color: var(--white);
  font-size: clamp(17px, 1.28vw, 20px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 50px;
  padding: 0 20px;
  font-size: var(--text-sm);
  font-weight: 800;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease;
}

.button-primary {
  background: var(--orange);
  color: #111;
}

.button-secondary {
  border: 1px solid var(--line);
  color: var(--white);
}

.button:hover,
.nav-cta:hover {
  background: var(--orange);
  color: #050505;
  border-color: var(--orange);
}

:root[data-theme="light"] .button:hover,
:root[data-theme="light"] .nav-cta:hover {
  background: #050505;
  color: var(--orange);
  border-color: #050505;
}

.button:hover,
.nav-cta:hover,
.theme-toggle:hover {
  transform: translateY(-2px);
}

.section-heading {
  display: grid;
  grid-template-columns: 170px minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
  margin-bottom: clamp(28px, 4vw, 48px);
}

.section-heading:not(.section-heading-center) .eyebrow {
  font-size: clamp(20px, 2.4vw, 34px);
  line-height: 1;
}

.section-heading h2 {
  margin: 0;
  max-width: 820px;
  font-size: var(--heading-md);
  line-height: 1.08;
  letter-spacing: 0;
  text-wrap: balance;
}

.edits-heading,
.services-section .section-heading,
.booking-section .section-heading,
.contact-section .section-heading {
  text-align: left;
}

.services-section .section-heading,
.booking-section .section-heading,
.contact-section .section-heading {
  display: block;
}

.edits-heading h2,
.services-section .section-heading h2,
.booking-section .section-heading h2,
.contact-section .section-heading h2 {
  max-width: 620px;
  font-size: clamp(24px, 3vw, 42px);
  line-height: 1.12;
}

.section-heading-center {
  display: block;
  text-align: center;
}

.section-heading-center h2 {
  max-width: none;
  margin-inline: auto;
}

.reel-heading h2 {
  font-size: clamp(42px, 6vw, 78px);
  line-height: 1.02;
}

.reel-heading p {
  width: min(100%, 620px);
  margin: 14px auto 0;
  color: var(--white-muted);
  font-size: clamp(18px, 1.6vw, 22px);
  line-height: 1.45;
  text-wrap: balance;
}

.reel-block {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid var(--orange);
  background: #0b0b0b;
  border-radius: 8px;
}

.before-after-heading {
  margin-bottom: clamp(22px, 3vw, 34px);
}

.before-after-heading .eyebrow {
  margin-bottom: 14px;
}

.before-after-heading h2 {
  font-size: clamp(30px, 4.5vw, 64px);
}

.before-after-block {
  width: min(100%, 980px);
  margin-inline: auto;
  padding: clamp(10px, 1.4vw, 16px);
  border: 1px solid var(--orange);
  background: #0b0b0b;
  border-radius: 8px;
}

.video-frame {
  position: relative;
  overflow: hidden;
  min-height: 280px;
  aspect-ratio: 16 / 10;
  background: var(--black-soft);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.video-frame iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: 0;
}

.video-frame-wide {
  min-height: 460px;
  aspect-ratio: 16 / 9;
}

.edits-heading {
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: end;
}

.view-toggle {
  display: inline-flex;
  padding: 4px;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.view-toggle button {
  border: 0;
  background: transparent;
  color: var(--white-muted);
  padding: 9px 13px;
  cursor: pointer;
}

.view-toggle button.is-active {
  background: var(--white);
  color: var(--black);
}

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

.edit-card {
  padding: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  border-radius: 8px;
  transition: transform 220ms ease, border-color 220ms ease;
}

.edit-card:hover {
  transform: translateY(-6px);
  border-color: var(--orange);
}

:root[data-theme="light"] .edit-card:hover {
  background: #050505;
  border-color: #050505;
  color: var(--orange);
}

:root[data-theme="light"] .edit-card:hover p {
  color: var(--orange);
}

.tools-strip span {
  transition: background 180ms ease, color 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.tools-strip span:hover {
  background: var(--orange);
  border-color: var(--orange);
  color: #050505;
  transform: translateY(-2px);
}

:root[data-theme="light"] .tools-strip span:hover {
  background: #050505;
  border-color: #050505;
  color: var(--orange);
}

.edit-card h3 {
  margin: 14px 0 5px;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.15;
}

.edit-card p {
  margin: 0 0 4px;
  color: var(--white-muted);
  font-size: 14px;
  line-height: 1.4;
}

.edits-grid.is-list {
  grid-template-columns: 1fr;
}

.edits-grid.is-list .edit-card {
  display: grid;
  grid-template-columns: minmax(240px, 420px) 1fr;
  gap: 18px;
  align-items: center;
}

.edits-grid.is-list .video-frame {
  min-height: 220px;
}

.services-list {
  display: grid;
  border-top: 1px solid var(--line);
}

.services-list div {
  display: grid;
  grid-template-columns: 90px minmax(0, 1fr);
  align-items: center;
  gap: 24px;
  min-height: 86px;
  border-bottom: 1px solid var(--line);
}

.services-list span {
  color: var(--orange);
  font-weight: 900;
}

.services-list h3 {
  margin: 0;
  font-size: clamp(22px, 2.8vw, 38px);
  line-height: 1.08;
}

.behind-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.85fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 72px);
  align-items: center;
}

.behind-media {
  overflow: hidden;
  border-radius: 8px;
  border: 2px solid var(--orange);
  background: var(--black-soft);
}

.behind-media img {
  width: 100%;
  height: min(68vw, 620px);
  object-fit: cover;
  object-position: center;
  filter: saturate(0.9) contrast(1.04);
}

.behind-copy h2 {
  margin: 0 0 28px;
  font-size: var(--heading-lg);
  line-height: 1;
}

.behind-copy p:not(.eyebrow) {
  margin: 0 0 18px;
  color: var(--white-muted);
  font-size: clamp(16px, 1.2vw, 18px);
  line-height: 1.55;
}

.tools-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}

.tools-strip span {
  padding: 10px 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  color: var(--white);
  font-size: 13px;
}

.calendly-frame {
  overflow: hidden;
  height: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--white);
}

.calendly-frame iframe {
  width: 100%;
  height: 100%;
  border: 0;
}

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

.contact-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 78px;
  border: 1px solid var(--line);
  color: var(--white);
  font-weight: 900;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

.contact-links a:hover {
  background: var(--orange);
  color: #050505;
  transform: translateY(-3px);
}

:root[data-theme="light"] .contact-links a:hover {
  background: #050505;
  color: var(--orange);
}

.site-footer {
  width: min(calc(100% - 32px), var(--max));
  margin: 0 auto;
  padding: 28px 0 42px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: var(--white-muted);
  border-top: 1px solid var(--line);
  font-size: 14px;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 650ms ease, transform 650ms ease;
}

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

.reveal-delay-1 {
  transition-delay: 80ms;
}

.reveal-delay-2 {
  transition-delay: 160ms;
}

.reveal-delay-3 {
  transition-delay: 240ms;
}

@media (max-width: 900px) {
  .site-header {
    align-items: flex-start;
    flex-wrap: wrap;
  }

  .header-bar {
    flex-wrap: wrap;
  }

  .nav-links {
    order: 3;
    width: 100%;
    justify-content: space-between;
    overflow-x: auto;
    padding: 4px 0 2px;
  }

  .section-heading,
  .behind-section {
    grid-template-columns: 1fr;
  }

  .home-section {
    min-height: auto;
    align-items: start;
  }

  .section-heading {
    gap: 0;
  }

  .edits-heading {
    grid-template-columns: 1fr;
  }

  .edits-heading .view-toggle {
    width: max-content;
  }

  .section-heading:not(.section-heading-center) .eyebrow {
    font-size: clamp(18px, 5vw, 28px);
  }

  .edits-grid {
    grid-template-columns: 1fr;
  }

  .edits-grid.is-list .edit-card {
    grid-template-columns: 1fr;
  }

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

@media (max-width: 620px) {
  .cursor-dot {
    display: none;
  }

  .site-header {
    top: 8px;
    width: min(calc(100% - 20px), var(--max));
    margin-top: 8px;
    align-items: flex-start;
  }

  .header-bar {
    width: calc(100% - 54px);
    flex: 1 1 calc(100% - 54px);
    min-height: 54px;
    padding: 8px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto auto;
    align-items: center;
    gap: 8px;
  }

  .brand span {
    max-width: 128px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
  }

  .brand img {
    width: 34px;
    height: 34px;
  }

  .theme-toggle {
    flex: 0 0 44px;
    width: 44px;
    height: 44px;
  }

  .menu-toggle {
    display: inline-flex;
    order: 2;
  }

  .nav-cta {
    order: 1;
    padding: 0 12px;
    min-height: 40px;
    font-size: 12px;
    justify-self: end;
    line-height: 1;
    text-align: center;
  }

  .nav-links {
    order: 3;
    grid-column: 1 / -1;
    display: none;
    width: 100%;
    margin-top: 4px;
    padding: 8px;
    overflow: visible;
    border-top: 1px solid var(--line);
  }

  .nav-links.is-open {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .nav-links a {
    display: block;
    padding: 12px;
    font-size: 15px;
  }

  :root[data-theme="light"] .nav-links {
    border-color: #050505;
  }

  .section-shell {
    width: min(calc(100% - 24px), var(--max));
    padding: 48px 0;
  }

  .home-section {
    padding-top: 34px;
  }

  .hero-name {
    font-size: clamp(54px, 17vw, 82px);
    line-height: 0.88;
  }

  .hero-kicker {
    font-size: clamp(24px, 8vw, 34px);
    line-height: 0.9;
    transform: translateY(4px);
  }

  .hero-lockup {
    grid-template-columns: 1fr;
    gap: 22px;
  }

  .hero-photo {
    width: min(88vw, 330px);
    justify-self: center;
    transform: rotate(0deg);
  }

  .hero-intro {
    width: min(100%, 38rem);
    margin-top: 12px;
    font-size: 16px;
    line-height: 1.55;
  }

  .hero-actions {
    flex-direction: column;
    width: 100%;
    margin-top: 16px;
  }

  .button {
    width: 100%;
  }

  .section-heading:not(.section-heading-center) {
    margin-bottom: 18px;
  }

  .section-heading:not(.section-heading-center) .eyebrow {
    font-size: 24px;
  }

  .section-heading-center {
    margin-bottom: 20px;
  }

  .video-frame,
  .video-frame-wide {
    min-height: 0;
    aspect-ratio: 16 / 9;
  }

  .reel-block,
  .before-after-block {
    padding: 8px;
  }

  .reel-heading h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .reel-heading p {
    font-size: 16px;
    line-height: 1.45;
  }

  .before-after-heading h2 {
    width: min(100%, 330px);
    font-size: clamp(28px, 8.5vw, 38px);
    margin-inline: auto;
    line-height: 1.08;
  }

  .edits-heading {
    display: block;
  }

  .edits-heading .view-toggle {
    display: none;
  }

  .edit-card {
    padding: 8px;
  }

  .edit-card h3 {
    font-size: 18px;
  }

  .edit-card p {
    font-size: 13px;
  }

  .services-list div {
    grid-template-columns: 52px minmax(0, 1fr);
    min-height: 62px;
    gap: 12px;
  }

  .services-list h3 {
    font-size: clamp(20px, 6vw, 26px);
    line-height: 1.14;
  }

  .behind-media img {
    height: min(112vw, 440px);
  }

  .behind-copy h2 {
    font-size: clamp(40px, 12vw, 58px);
    margin-bottom: 18px;
  }

  .behind-copy p:not(.eyebrow) {
    font-size: 16px;
    line-height: 1.6;
  }

  .calendly-frame {
    height: 600px;
  }

  .contact-links {
    grid-template-columns: 1fr;
  }

  .contact-links a {
    min-height: 58px;
  }

  .site-footer {
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}
