:root {
  --night: #0a0f0c;
  --forest: #142019;
  --forest-soft: #243329;
  --paper: #f4f0e7;
  --paper-deep: #e9e1d3;
  --white: #fffdf8;
  --ink: #151a16;
  --muted: #687067;
  --gold: #c8a568;
  --gold-pale: #ead7ad;
  --line-dark: rgba(255, 255, 255, 0.16);
  --line-light: rgba(21, 26, 22, 0.16);
  --serif: "Cormorant Garamond", Georgia, serif;
  --sans: "Manrope", Arial, sans-serif;
  --shadow: 0 28px 75px rgba(9, 14, 11, 0.18);
}

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

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
  background: var(--night);
}

body {
  margin: 0;
  min-width: 280px;
  overflow-x: hidden;
  background: var(--paper);
  color: var(--ink);
  font: 16px/1.65 var(--sans);
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

a,
button {
  -webkit-tap-highlight-color: transparent;
}

button,
select {
  cursor: pointer;
}

:focus-visible {
  outline: 3px solid var(--gold);
  outline-offset: 4px;
}

.sr-only {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 12px;
  left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  background: var(--gold-pale);
  color: var(--night);
  font-size: 0.8rem;
  font-weight: 700;
  text-decoration: none;
}

.skip-link:focus {
  transform: none;
}

.button {
  display: inline-flex;
  min-height: 52px;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.055em;
  line-height: 1.2;
  text-align: center;
  text-decoration: none;
  transition: transform 240ms ease, background 240ms ease, color 240ms ease, border-color 240ms ease;
}

.button:hover {
  transform: translateY(-3px);
}

.button-gold {
  background: var(--gold);
  color: var(--night);
}

.button-gold:hover {
  background: var(--gold-pale);
}

.button-dark {
  background: var(--night);
  color: var(--white);
}

.button-outline-light {
  border-color: rgba(255, 255, 255, 0.46);
  background: transparent;
  color: var(--white);
}

.button-outline-light:hover {
  border-color: var(--gold);
  color: var(--gold-pale);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.045em;
  text-decoration: none;
}

.text-link span {
  color: var(--gold);
  font-size: 1.08rem;
  transition: transform 220ms ease;
}

.text-link:hover span {
  transform: translate(3px, -2px);
}

.text-link.light {
  color: var(--white);
}

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  display: grid;
  grid-template-columns: auto 1fr auto;
  min-height: 78px;
  align-items: center;
  gap: 42px;
  padding: 0 max(28px, calc((100vw - 1320px) / 2));
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 15, 12, 0.84);
  color: var(--white);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  transition: min-height 240ms ease, background 240ms ease;
}

.site-header.is-scrolled {
  min-height: 68px;
  background: rgba(10, 15, 12, 0.96);
}

.brand {
  display: inline-flex;
  align-items: center;
  width: max-content;
  color: inherit;
  text-decoration: none;
}

.brand-logo {
  width: 88px;
  height: auto;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  justify-content: center;
  gap: clamp(24px, 3vw, 44px);
}

.desktop-nav a {
  position: relative;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.69rem;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  transform: scaleX(0);
  transform-origin: right;
  background: var(--gold);
  content: "";
  transition: transform 220ms ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-height: 44px;
  padding-inline: 20px;
}

.menu-toggle {
  display: none;
  width: 46px;
  height: 46px;
  place-items: center;
  padding: 12px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  background: transparent;
  color: var(--white);
}

.menu-toggle > span:not(.sr-only) {
  display: block;
  width: 21px;
  height: 1px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 220ms ease;
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(2) {
  transform: translateY(2.5px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] > span:nth-of-type(3) {
  transform: translateY(-2.5px) rotate(-45deg);
}

.mobile-menu {
  position: fixed;
  z-index: 99;
  top: 66px;
  right: 0;
  left: 0;
  visibility: hidden;
  transform: translateY(-18px);
  padding: 26px 20px 32px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  background: rgba(10, 15, 12, 0.99);
  opacity: 0;
  transition: none;
}

.mobile-menu.is-open {
  visibility: visible;
  transform: none;
  opacity: 1;
}

.mobile-menu nav {
  display: grid;
  max-width: 520px;
  margin: auto;
}

.mobile-menu a {
  padding: 15px 2px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font: 600 1.25rem/1.2 var(--serif);
  text-decoration: none;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  min-height: 820px;
  padding-top: 78px;
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.hero-copy {
  position: relative;
  z-index: 2;
  display: flex;
  flex-direction: column;
  justify-content: center;
  min-width: 0;
  padding: 84px clamp(36px, 5.2vw, 92px) 68px max(28px, calc((100vw - 1320px) / 2));
}

.hero-copy::before {
  position: absolute;
  top: 19%;
  right: 1px;
  width: 1px;
  height: 62%;
  background: linear-gradient(transparent, var(--gold), transparent);
  content: "";
}

.eyebrow,
.section-label {
  margin: 0;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  line-height: 1.5;
  text-transform: uppercase;
}

.eyebrow {
  max-width: 520px;
  color: var(--gold-pale);
}

.hero h1 {
  margin: 28px 0 0;
  font: 600 clamp(4.4rem, 6.7vw, 7rem)/0.8 var(--serif);
  letter-spacing: -0.06em;
}

.hero h1 span,
.hero h1 em {
  display: block;
  white-space: nowrap;
}

.hero h1 em {
  color: var(--gold-pale);
  font-size: 0.72em;
  font-weight: 500;
  letter-spacing: -0.045em;
  line-height: 1.02;
}

.hero-lead {
  max-width: 570px;
  margin: 32px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 0.98rem;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 26px;
  margin-top: 32px;
}

.hero-services {
  display: grid;
  grid-template-columns: repeat(4, auto);
  justify-content: start;
  gap: 0;
  margin-top: 64px;
  border-top: 1px solid var(--line-dark);
}

.hero-services span {
  padding: 18px 22px 0 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.63rem;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.hero-services span + span {
  padding-left: 22px;
  border-left: 1px solid var(--line-dark);
}

.hero-visual {
  position: relative;
  min-width: 0;
  min-height: 742px;
  overflow: hidden;
  background: #171b16;
}

.hero-visual > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 58% center;
  filter: saturate(0.86) contrast(1.04);
  transition: transform 1.2s cubic-bezier(0.2, 0.7, 0.2, 1);
}

.hero-visual:hover > img {
  transform: scale(1.018);
}

.hero-shade {
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(10, 15, 12, 0.2), transparent 32%), linear-gradient(0deg, rgba(10, 15, 12, 0.58), transparent 38%);
}

.hero-visual::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background-image: radial-gradient(rgba(255, 255, 255, 0.13) 0.45px, transparent 0.7px);
  background-size: 4px 4px;
  content: "";
  mix-blend-mode: soft-light;
  opacity: 0.32;
}

.frame-corners {
  position: absolute;
  inset: 28px;
  z-index: 2;
  border: 1px solid rgba(255, 255, 255, 0.22);
  clip-path: polygon(0 0, 38px 0, 38px 1px, calc(100% - 38px) 1px, calc(100% - 38px) 0, 100% 0, 100% 38px, calc(100% - 1px) 38px, calc(100% - 1px) calc(100% - 38px), 100% calc(100% - 38px), 100% 100%, calc(100% - 38px) 100%, calc(100% - 38px) calc(100% - 1px), 38px calc(100% - 1px), 38px 100%, 0 100%, 0 calc(100% - 38px), 1px calc(100% - 38px), 1px 38px, 0 38px);
}

.hero-badge {
  position: absolute;
  z-index: 3;
  top: 47px;
  right: 48px;
  display: flex;
  width: 120px;
  height: 120px;
  align-items: center;
  justify-content: center;
  gap: 9px;
  border-radius: 50%;
  background: var(--gold);
  color: var(--night);
  transform: rotate(6deg);
}

.hero-badge strong {
  font: 600 3.15rem/1 var(--serif);
}

.hero-badge span {
  font-size: 0.55rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1.45;
  text-transform: uppercase;
}

.hero-caption {
  position: absolute;
  z-index: 3;
  right: 48px;
  bottom: 42px;
  left: 48px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.6rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.section {
  width: min(1220px, calc(100% - 56px));
  margin-inline: auto;
  padding: 132px 0;
}

.section-label {
  display: flex;
  align-items: center;
  gap: 16px;
  color: var(--muted);
}

.section-label::before {
  width: 34px;
  height: 1px;
  background: currentColor;
  content: "";
}

.section-label span {
  color: var(--gold);
}

.section-label.light {
  color: rgba(255, 255, 255, 0.6);
}

.vision-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: clamp(60px, 9vw, 140px);
  align-items: end;
  margin-top: 58px;
}

.vision h2,
.services h2,
.portfolio h2,
.experience h2,
.henna h2,
.inquiry h2 {
  margin: 0;
  font: 600 clamp(3.5rem, 6.25vw, 6.55rem)/0.88 var(--serif);
  letter-spacing: -0.055em;
}

.vision h2 em,
.services h2 em,
.portfolio h2 em,
.experience h2 em,
.henna h2 em,
.inquiry h2 em {
  color: #627560;
  font-weight: 500;
}

.vision-copy p {
  margin: 0 0 20px;
  color: var(--muted);
  font-size: 0.96rem;
}

.vision-copy .text-link {
  margin-top: 16px;
}

.vision-note {
  display: grid;
  grid-template-columns: 100px minmax(0, 720px);
  gap: 34px;
  align-items: start;
  margin-top: 88px;
  padding: 28px 0 0 clamp(0px, 7vw, 100px);
  border-top: 1px solid var(--line-light);
}

.film-index {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.vision-note p {
  margin: 0;
  font: 600 clamp(1.7rem, 3vw, 2.7rem)/1.05 var(--serif);
}

.services {
  overflow: hidden;
  background: var(--night);
  color: var(--white);
}

.services-intro {
  padding-bottom: 72px;
}

.services-heading {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.55fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
  margin-top: 54px;
}

.services h2 em,
.experience h2 em,
.inquiry h2 em {
  color: var(--gold-pale);
}

.services-heading > p {
  margin: 0 0 10px;
  color: rgba(255, 255, 255, 0.61);
  font-size: 0.94rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--line-dark);
}

.service-card {
  position: relative;
  display: flex;
  min-height: 430px;
  flex-direction: column;
  overflow: hidden;
  padding: 34px clamp(26px, 3vw, 46px) 38px;
  border-right: 1px solid var(--line-dark);
  background: var(--night);
  transition: background 260ms ease, transform 260ms ease;
}

.service-card:hover {
  background: var(--forest);
}

.service-number {
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.service-symbol {
  display: grid;
  width: 74px;
  height: 74px;
  place-items: center;
  margin-top: 64px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 50%;
  color: var(--gold-pale);
  font: 500 2.1rem/1 var(--serif);
}

.play-symbol {
  padding-left: 4px;
  font: 500 1rem/1 var(--sans);
}

.service-card h3 {
  margin: 38px 0 10px;
  font: 600 2.12rem/1 var(--serif);
}

.service-card p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.82rem;
}

.service-card > a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  margin-top: auto;
  padding-top: 28px;
  border-top: 1px solid rgba(255, 255, 255, 0.14);
  color: var(--white);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-decoration: none;
}

.service-card > a span {
  color: var(--gold);
}

.live-card {
  background: var(--gold);
  color: var(--night);
}

.live-card:hover {
  background: var(--gold-pale);
}

.live-card .service-number,
.live-card p,
.live-card > a {
  color: rgba(10, 15, 12, 0.72);
}

.live-card > a {
  position: relative;
  z-index: 2;
  border-color: rgba(10, 15, 12, 0.22);
}

.live-card > a span {
  color: var(--night);
}

.live-dot {
  width: 18px;
  height: 18px;
  margin-top: 90px;
  border: 5px solid rgba(10, 15, 12, 0.24);
  border-radius: 50%;
  background: #b12322;
  box-shadow: 0 0 0 8px rgba(177, 35, 34, 0.13);
}

.live-word {
  position: absolute;
  right: 12px;
  bottom: 56px;
  color: rgba(10, 15, 12, 0.055);
  font: 700 7rem/0.8 var(--sans);
  letter-spacing: -0.08em;
}

.portfolio-head {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(270px, 0.55fr);
  gap: clamp(50px, 9vw, 140px);
  align-items: end;
}

.portfolio h2 {
  margin-top: 48px;
}

.portfolio-intro {
  padding-bottom: 10px;
}

.portfolio-intro p {
  margin: 0 0 13px;
  color: var(--muted);
  font-size: 0.9rem;
}

.portfolio-disclosure {
  display: block;
  max-width: 430px;
  margin-bottom: 28px;
  color: #566158;
  font-size: 0.67rem;
  font-weight: 600;
  line-height: 1.55;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr 0.85fr;
  grid-template-rows: 310px 310px;
  gap: 14px;
  margin-top: 66px;
}

.portfolio-item {
  position: relative;
  min-width: 0;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  background: #d9d3c9;
}

.portfolio-main {
  grid-row: span 2;
}

.portfolio-item:nth-child(4) {
  grid-column: span 2;
}

.portfolio-item > img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 600ms cubic-bezier(0.2, 0.7, 0.2, 1), filter 400ms ease;
}

.portfolio-main > img {
  object-position: 48% center;
}

.portfolio-item:nth-child(2) > img {
  object-position: 52% 57%;
}

.portfolio-item:nth-child(3) > img {
  object-position: center 34%;
}

.portfolio-item:nth-child(4) > img {
  object-position: center 44%;
}

.portfolio-item:hover > img {
  transform: scale(1.035);
  filter: saturate(0.94) contrast(1.04);
}

.portfolio-item::after {
  position: absolute;
  inset: 45% 0 0;
  background: linear-gradient(transparent, rgba(7, 10, 8, 0.84));
  content: "";
}

.portfolio-item figcaption {
  position: absolute;
  z-index: 2;
  right: 22px;
  bottom: 20px;
  left: 22px;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: 13px;
  align-items: end;
  color: var(--white);
}

.portfolio-item figcaption span,
.portfolio-item figcaption small {
  color: rgba(255, 255, 255, 0.68);
  font-size: 0.57rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.portfolio-item figcaption strong {
  font: 600 1.4rem/1 var(--serif);
}

.experience {
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(0, 1.12fr);
  gap: clamp(60px, 9vw, 140px);
  padding: 132px max(28px, calc((100vw - 1220px) / 2));
  background: var(--forest);
  color: var(--white);
}

.experience h2 {
  max-width: 650px;
  margin-top: 52px;
}

.experience-copy > p {
  max-width: 570px;
  margin: 32px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.93rem;
}

.experience-steps article {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 22px;
  padding: 30px 0;
  border-top: 1px solid var(--line-dark);
}

.experience-steps article:last-child {
  border-bottom: 1px solid var(--line-dark);
}

.experience-steps article > span {
  padding-top: 7px;
  color: var(--gold);
  font-size: 0.67rem;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.experience-steps h3 {
  margin: 0 0 8px;
  font: 600 2.1rem/1 var(--serif);
}

.experience-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.58);
  font-size: 0.83rem;
}

.henna {
  display: grid;
  grid-template-columns: minmax(320px, 0.85fr) minmax(0, 1.15fr);
  min-height: 620px;
  background: var(--gold-pale);
}

.henna-graphic {
  position: relative;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: var(--gold);
}

.henna-graphic::before,
.henna-graphic::after {
  position: absolute;
  width: 320px;
  height: 320px;
  border: 1px solid rgba(10, 15, 12, 0.16);
  border-radius: 50%;
  content: "";
}

.henna-graphic::after {
  width: 450px;
  height: 450px;
}

.henna-graphic span {
  position: relative;
  z-index: 2;
  color: var(--night);
  font: 700 clamp(6rem, 12vw, 12rem)/1 var(--sans);
  letter-spacing: -0.1em;
  transform: rotate(-90deg);
}

.henna-graphic i {
  position: absolute;
  z-index: 3;
  width: 18px;
  height: 18px;
  border: 5px solid rgba(10, 15, 12, 0.22);
  border-radius: 50%;
  background: #b12322;
  box-shadow: 0 0 0 10px rgba(177, 35, 34, 0.12);
}

.henna-copy {
  align-self: center;
  max-width: 800px;
  padding: 90px clamp(40px, 9vw, 150px);
}

.live-label {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.live-label i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #b12322;
}

.henna h2 {
  margin-top: 42px;
}

.henna h2 em {
  color: #37493a;
}

.henna-copy > p {
  max-width: 590px;
  margin: 28px 0;
  color: rgba(21, 26, 22, 0.67);
  font-size: 0.94rem;
}

.inquiry {
  display: grid;
  grid-template-columns: minmax(0, 0.8fr) minmax(430px, 1.2fr);
  gap: clamp(55px, 8vw, 120px);
  width: auto;
  max-width: none;
  padding: 132px max(28px, calc((100vw - 1220px) / 2));
  background: var(--night);
  color: var(--white);
}

.inquiry h2 {
  margin-top: 52px;
}

.inquiry-intro > p {
  max-width: 530px;
  margin: 29px 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 0.91rem;
}

.booking-note {
  margin-top: 18px !important;
  color: rgba(255, 255, 255, 0.54) !important;
  font-size: 0.7rem !important;
}

.booking-card {
  align-self: start;
  min-width: 0;
  padding: clamp(30px, 4.2vw, 58px);
  background: var(--paper);
  color: var(--ink);
  box-shadow: var(--shadow);
}

.booking-kicker {
  color: #5c6a5f;
  font-size: 0.64rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.booking-card h3 {
  max-width: 610px;
  margin: 25px 0 38px;
  font: 600 clamp(2.4rem, 4.8vw, 4.7rem)/0.93 var(--serif);
  letter-spacing: -0.045em;
}

.booking-steps {
  border-top: 1px solid var(--line-light);
}

.booking-steps > div {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 16px;
  align-items: center;
  padding: 18px 0;
  border-bottom: 1px solid var(--line-light);
}

.booking-steps span {
  color: #617166;
  font-size: 0.65rem;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.booking-steps p {
  margin: 0;
  color: #3f4942;
  font-size: 0.8rem;
  font-weight: 600;
}

.booking-button {
  width: 100%;
  margin-top: 32px;
}

.booking-card > small {
  display: block;
  margin-top: 15px;
  color: var(--muted);
  font-size: 0.67rem;
  line-height: 1.55;
  text-align: center;
}

.message-steps {
  display: grid;
  gap: 0;
  margin-top: 55px;
  border-top: 1px solid var(--line-dark);
}

.message-steps > div {
  display: grid;
  grid-template-columns: 40px 1fr;
  gap: 16px;
  align-items: center;
  padding: 15px 0;
  border-bottom: 1px solid var(--line-dark);
}

.message-steps span {
  color: var(--gold);
  font-size: 0.64rem;
  font-weight: 700;
}

.message-steps p {
  margin: 0;
  color: rgba(255, 255, 255, 0.65);
  font-size: 0.76rem;
}

.message-steps strong {
  color: var(--white);
}

.privacy-note {
  margin-top: 15px !important;
  font-size: 0.7rem !important;
}

.brief-form {
  min-width: 0;
  padding: clamp(28px, 4vw, 52px);
  background: var(--paper);
  color: var(--ink);
}

.form-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 20px;
  margin-bottom: 34px;
  padding-bottom: 18px;
  border-bottom: 1px solid var(--line-light);
}

.form-heading span {
  font: 600 1.75rem/1 var(--serif);
}

.form-heading small {
  color: var(--muted);
  font-size: 0.62rem;
}

.brief-form > label,
.form-row > label,
.brief-form fieldset {
  position: relative;
  display: grid;
  gap: 9px;
  margin: 0 0 20px;
  color: #344038;
  font-size: 0.66rem;
  font-weight: 700;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.brief-form input,
.brief-form select,
.brief-form textarea {
  display: block;
  width: 100%;
  max-width: 100%;
  min-width: 0;
  border: 1px solid #cfc8bd;
  border-radius: 0;
  background: var(--white);
  color: var(--ink);
  font-size: 0.94rem;
  font-weight: 500;
  letter-spacing: 0;
  line-height: 1.35;
  text-transform: none;
  transition: border-color 200ms ease, box-shadow 200ms ease;
}

.brief-form input,
.brief-form select {
  height: 56px;
  padding: 0 18px;
}

.brief-form select {
  appearance: none;
  padding-right: 58px;
}

.brief-form label:has(select)::after {
  position: absolute;
  right: 22px;
  bottom: 15px;
  color: var(--forest);
  content: "⌄";
  font-size: 1.15rem;
  font-weight: 700;
  line-height: 1;
  pointer-events: none;
}

.brief-form input[type="date"] {
  min-height: 56px;
  overflow: hidden;
  -webkit-appearance: none;
  appearance: none;
}

.brief-form input[type="date"]::-webkit-date-and-time-value {
  min-width: 0;
  text-align: left;
}

.brief-form input[type="date"]::-webkit-calendar-picker-indicator {
  margin-left: auto;
}

.brief-form textarea {
  min-height: 126px;
  resize: vertical;
  padding: 16px 18px;
}

.brief-form input:focus,
.brief-form select:focus,
.brief-form textarea:focus {
  border-color: var(--gold);
  outline: none;
  box-shadow: 0 0 0 3px rgba(200, 165, 104, 0.18);
}

.brief-form fieldset {
  padding: 0;
  border: 0;
}

.brief-form legend {
  margin-bottom: 11px;
}

.checkbox-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}

.checkbox-grid label {
  position: relative;
  min-width: 0;
}

.checkbox-grid input {
  position: absolute;
  width: 1px;
  height: 1px;
  opacity: 0;
}

.checkbox-grid span {
  display: flex;
  min-height: 52px;
  align-items: center;
  justify-content: space-between;
  padding: 0 16px;
  border: 1px solid #cfc8bd;
  background: var(--white);
  color: #344038;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: none;
}

.checkbox-grid span::after {
  display: grid;
  width: 18px;
  height: 18px;
  flex: 0 0 auto;
  place-items: center;
  margin-left: 10px;
  border: 1px solid #a8a398;
  content: "";
  font-size: 0.7rem;
}

.checkbox-grid input:checked + span {
  border-color: var(--forest);
  background: var(--forest);
  color: var(--white);
}

.checkbox-grid input:checked + span::after {
  border-color: var(--gold);
  background: var(--gold);
  color: var(--night);
  content: "✓";
}

.checkbox-grid input:focus-visible + span {
  outline: 3px solid var(--gold);
  outline-offset: 3px;
}

.field-error {
  min-height: 18px;
  color: #9c302d;
  font-size: 0.67rem;
  letter-spacing: 0;
  text-transform: none;
}

.form-submit {
  width: 100%;
  margin-top: 4px;
}

.form-status {
  margin: 13px 0 0;
  color: var(--muted);
  font-size: 0.68rem;
  text-align: center;
}

.site-footer {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr 0.7fr;
  gap: 60px;
  padding: 72px max(28px, calc((100vw - 1220px) / 2)) 26px;
  background: #070a08;
  color: var(--white);
}

.footer-brand p {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.48);
  font-size: 0.76rem;
}

.site-footer nav,
.footer-social {
  display: grid;
  align-content: start;
  gap: 12px;
}

.site-footer nav a,
.footer-social a {
  color: rgba(255, 255, 255, 0.64);
  font-size: 0.72rem;
  text-decoration: none;
}

.footer-social a {
  display: flex;
  justify-content: space-between;
  gap: 16px;
}

.site-footer a:hover {
  color: var(--gold-pale);
}

.footer-bottom {
  display: flex;
  grid-column: 1 / -1;
  justify-content: space-between;
  gap: 22px;
  margin-top: 34px;
  padding-top: 22px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  color: rgba(255, 255, 255, 0.38);
  font-size: 0.61rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mobile-cta {
  display: none;
}

.message-dialog {
  width: min(680px, calc(100% - 32px));
  max-height: calc(100dvh - 32px);
  padding: 0;
  overflow: auto;
  border: 0;
  background: transparent;
  color: var(--ink);
}

.message-dialog::backdrop {
  background: rgba(4, 7, 5, 0.82);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

.dialog-card {
  position: relative;
  padding: clamp(28px, 6vw, 54px);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.dialog-close {
  position: absolute;
  top: 18px;
  right: 18px;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border: 1px solid var(--line-light);
  background: transparent;
  color: var(--ink);
  font-size: 1.45rem;
}

.dialog-kicker {
  color: #5f6f5e;
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.dialog-card h2 {
  max-width: 520px;
  margin: 26px 0 15px;
  font: 600 clamp(2.2rem, 6vw, 3.7rem)/0.95 var(--serif);
  letter-spacing: -0.04em;
}

.dialog-card > p,
.dialog-card > small {
  color: var(--muted);
  font-size: 0.78rem;
}

.dialog-card pre {
  max-height: 260px;
  margin: 24px 0;
  padding: 18px;
  overflow: auto;
  border: 1px solid var(--line-light);
  background: var(--white);
  color: var(--ink);
  font: 500 0.77rem/1.6 var(--sans);
  white-space: pre-wrap;
}

.dialog-actions {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}

.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 750ms ease var(--delay, 0ms), transform 750ms cubic-bezier(0.2, 0.7, 0.2, 1) var(--delay, 0ms);
}

.reveal.is-visible {
  transform: none;
  opacity: 1;
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 24px;
  }

  .desktop-nav {
    gap: 20px;
  }

  .hero {
    grid-template-columns: minmax(0, 0.95fr) minmax(430px, 1.05fr);
  }

  .hero-copy {
    padding-left: 32px;
    padding-right: 42px;
  }

  .hero h1 {
    font-size: clamp(4.3rem, 7vw, 6rem);
  }

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

  .service-card {
    border-bottom: 1px solid var(--line-dark);
  }

  .portfolio-grid {
    grid-template-columns: 1.1fr 0.9fr;
    grid-template-rows: 320px 320px 320px;
  }

  .portfolio-main {
    grid-row: span 2;
  }

  .portfolio-item:nth-child(4) {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .desktop-nav,
  .header-cta {
    display: none;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    min-height: 66px;
  }

  .site-header.is-scrolled {
    min-height: 62px;
  }

  .menu-toggle {
    display: block;
  }

  .hero {
    grid-template-columns: 1fr;
    padding-top: 66px;
  }

  .hero-copy {
    min-height: 620px;
    padding: 80px max(28px, calc((100vw - 720px) / 2)) 58px;
  }

  .hero-copy::before {
    top: auto;
    right: 28px;
    bottom: 0;
    left: 28px;
    width: auto;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
  }

  .hero h1 {
    font-size: clamp(5rem, 13.5vw, 7.2rem);
  }

  .hero-visual {
    min-height: 620px;
  }

  .vision-grid,
  .services-heading,
  .portfolio-head,
  .experience,
  .inquiry {
    grid-template-columns: 1fr;
  }

  .vision-grid,
  .services-heading,
  .portfolio-head,
  .experience,
  .inquiry {
    gap: 46px;
  }

  .experience,
  .inquiry {
    padding-inline: max(28px, calc((100vw - 720px) / 2));
  }

  .portfolio-intro {
    max-width: 520px;
  }

  .henna {
    grid-template-columns: 0.7fr 1.3fr;
  }

  .henna-copy {
    padding-inline: 48px;
  }

  .site-footer {
    grid-template-columns: 1fr 1fr;
  }

  .footer-brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: calc(66px + env(safe-area-inset-bottom));
  }

  .site-header {
    padding-inline: 16px;
  }

  .brand-logo {
    width: 76px;
  }

  .menu-toggle {
    width: 44px;
    height: 44px;
  }

  .section {
    width: calc(100% - 32px);
    padding: 88px 0;
  }

  .hero-copy {
    min-height: 620px;
    padding: 72px 20px 50px;
  }

  .eyebrow {
    max-width: none;
    font-size: 0.58rem;
    line-height: 1.6;
    text-align: center;
  }

  .hero h1 {
    margin-top: 26px;
    font-size: clamp(3rem, 15vw, 4.2rem);
    line-height: 0.82;
    text-align: center;
  }

  .hero h1 span,
  .hero h1 em {
    width: 100%;
  }

  .hero h1 em {
    margin-top: 0.1em;
    font-size: 0.64em;
    line-height: 1;
  }

  .hero-lead {
    max-width: 440px;
    margin-top: 27px;
    font-size: 0.9rem;
    text-align: center;
  }

  .hero-actions {
    display: grid;
    gap: 19px;
    margin-top: 29px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-actions .text-link {
    justify-content: center;
  }

  .hero-services {
    grid-template-columns: 1fr 1fr;
    margin-top: 42px;
  }

  .hero-services span {
    padding: 13px 12px;
    border-bottom: 1px solid var(--line-dark);
    text-align: center;
  }

  .hero-services span + span {
    padding-left: 12px;
  }

  .hero-services span:nth-child(3) {
    border-left: 0;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-visual > img {
    object-position: 69% center;
  }

  .frame-corners {
    inset: 16px;
  }

  .hero-badge {
    top: 28px;
    right: 28px;
    width: 94px;
    height: 94px;
  }

  .hero-badge strong {
    font-size: 2.5rem;
  }

  .hero-badge span {
    font-size: 0.46rem;
  }

  .hero-caption {
    right: 27px;
    bottom: 27px;
    left: 27px;
    font-size: 0.5rem;
  }

  .vision-grid {
    margin-top: 38px;
  }

  .vision h2,
  .services h2,
  .portfolio h2,
  .experience h2,
  .henna h2,
  .inquiry h2 {
    font-size: clamp(3rem, 14.8vw, 4.35rem);
    line-height: 0.9;
  }

  .vision-copy p,
  .services-heading > p,
  .portfolio-intro p,
  .experience-copy > p,
  .henna-copy > p,
  .inquiry-intro > p {
    font-size: 0.88rem;
  }

  .vision-note {
    grid-template-columns: 1fr;
    gap: 13px;
    margin-top: 55px;
    padding-left: 0;
  }

  .vision-note p {
    font-size: 1.75rem;
  }

  .services-intro {
    padding-bottom: 48px;
  }

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

  .service-card {
    min-height: 360px;
    padding: 28px 24px 30px;
    border-right: 0;
  }

  .service-symbol {
    width: 62px;
    height: 62px;
    margin-top: 42px;
  }

  .live-dot {
    margin-top: 58px;
  }

  .service-card h3 {
    margin-top: 28px;
  }

  .portfolio h2 {
    margin-top: 36px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-template-rows: none;
    gap: 10px;
    margin-top: 44px;
  }

  .portfolio-item,
  .portfolio-main,
  .portfolio-item:nth-child(4) {
    grid-column: auto;
    grid-row: auto;
    min-height: 430px;
  }

  .portfolio-item:nth-child(2) {
    min-height: 360px;
  }

  .portfolio-item figcaption {
    grid-template-columns: auto 1fr;
  }

  .portfolio-item figcaption small {
    display: none;
  }

  .portfolio-item figcaption strong {
    font-size: 1.25rem;
  }

  .experience,
  .inquiry {
    padding: 88px 16px;
  }

  .experience h2,
  .inquiry h2 {
    margin-top: 38px;
  }

  .experience-steps article {
    grid-template-columns: 38px 1fr;
    gap: 10px;
  }

  .experience-steps h3 {
    font-size: 1.75rem;
  }

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

  .henna-graphic {
    min-height: 360px;
  }

  .henna-graphic span {
    transform: none;
  }

  .henna-copy {
    padding: 78px 20px 86px;
  }

  .brief-form {
    padding: 26px 18px;
  }

  .form-heading {
    display: grid;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  .brief-form input,
  .brief-form select,
  .brief-form textarea {
    font-size: 16px;
  }

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

  .site-footer {
    grid-template-columns: 1fr 1fr;
    gap: 38px;
    padding: 58px 16px 28px;
  }

  .footer-bottom {
    display: grid;
  }

  .mobile-cta {
    position: fixed;
    z-index: 90;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    min-height: calc(62px + env(safe-area-inset-bottom));
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 10px 18px env(safe-area-inset-bottom);
    background: var(--gold);
    color: var(--night);
    font-size: 0.77rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-decoration: none;
    box-shadow: 0 -12px 34px rgba(7, 10, 8, 0.22);
  }

  .dialog-actions {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 390px) {
  .hero-copy {
    min-height: 600px;
  }

  .hero h1 {
    font-size: clamp(2.95rem, 15vw, 3.65rem);
  }

  .hero-caption span:last-child {
    display: none;
  }

  .portfolio-item,
  .portfolio-main,
  .portfolio-item:nth-child(4) {
    min-height: 400px;
  }

  .site-footer {
    grid-template-columns: 1fr;
  }

  .footer-brand,
  .footer-bottom {
    grid-column: auto;
  }
}

@media (max-width: 330px) {
  .hero h1 {
    font-size: 2.9rem;
  }

  .hero-lead {
    font-size: 0.84rem;
  }

  .vision h2,
  .services h2,
  .portfolio h2,
  .experience h2,
  .henna h2,
  .inquiry h2 {
    font-size: 2.9rem;
  }
}

@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;
  }

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