:root {
  --black: #030303;
  --near-black: #090909;
  --charcoal: #141414;
  --dark-gray: #222222;
  --mid-gray: #7b7b7b;
  --gold: #d7ae4f;
  --soft-gold: #f2d98a;
  --silver: #c9c9c9;
  --soft-silver: #e4e4e4;
  --white: #f8f8f6;
  --line: rgba(255, 255, 255, 0.12);
  --shadow: rgba(0, 0, 0, 0.45);
  --serif: "Bodoni 72", Didot, "Times New Roman", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--black);
  color: var(--white);
  font-family: var(--sans);
  line-height: 1.6;
}

body.menu-open {
  overflow: hidden;
}

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

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

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  z-index: 50;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px clamp(20px, 4vw, 64px);
  background: rgba(3, 3, 3, 0.72);
  border-bottom: 1px solid transparent;
  backdrop-filter: blur(18px);
  transition: padding 220ms ease, border-color 220ms ease, background 220ms ease;
}

.site-header.scrolled {
  padding-top: 12px;
  padding-bottom: 12px;
  background: rgba(3, 3, 3, 0.9);
  border-color: var(--line);
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 54px;
  color: var(--white);
  font-family: var(--serif);
  font-size: 1.18rem;
  font-weight: 600;
  letter-spacing: 0;
}

.brand img {
  width: 54px;
  height: 54px;
  border-radius: 50%;
  object-fit: cover;
  border: 1px solid rgba(215, 174, 79, 0.34);
  box-shadow:
    0 0 0 1px rgba(255, 255, 255, 0.08),
    0 0 26px rgba(215, 174, 79, 0.18);
  filter: drop-shadow(0 0 10px rgba(215, 174, 79, 0.22));
}

.header-socials {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}

.header-socials a {
  display: inline-flex;
  width: 36px;
  height: 36px;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  place-items: center;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.02);
  box-shadow: 0 0 18px rgba(215, 174, 79, 0.08);
  transition: transform 180ms ease, background 180ms ease, box-shadow 180ms ease;
}

.social-icon-img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.header-socials a:hover {
  transform: translateY(-2px);
  background: rgba(255, 255, 255, 0.07);
  box-shadow:
    0 0 0 1px rgba(215, 174, 79, 0.22),
    0 0 22px rgba(215, 174, 79, 0.2);
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: clamp(16px, 3vw, 38px);
  color: var(--soft-silver);
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

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

.site-nav a:hover::after,
.site-nav a.active::after {
  transform: scaleX(1);
}

.hero {
  position: relative;
  min-height: 100vh;
  display: grid;
  place-items: center;
  isolation: isolate;
  overflow: hidden;
  padding: 140px 24px 80px;
  background: var(--near-black);
}

.hero::after {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(3, 3, 3, 0.72), rgba(3, 3, 3, 0.38) 45%, rgba(3, 3, 3, 0.86)),
    linear-gradient(180deg, rgba(3, 3, 3, 0.15), rgba(3, 3, 3, 0.96));
  content: "";
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
  display: grid;
  place-items: center;
  background:
    linear-gradient(135deg, #050505 0%, #101010 48%, #030303 100%);
}

.hero-media img {
  width: min(78vw, 860px);
  opacity: 0.13;
  filter: grayscale(0.22) contrast(1.12) blur(0.2px);
  mix-blend-mode: screen;
}

.hero-content {
  width: min(100%, 980px);
  text-align: center;
}

.hero-logo-lockup {
  position: relative;
  display: grid;
  width: min(52vw, 430px);
  margin: 0 auto 22px;
  place-items: center;
}

.hero-logo-lockup::before {
  position: absolute;
  inset: 16%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(255, 255, 255, 0.16), rgba(215, 174, 79, 0.1) 42%, transparent 70%);
  content: "";
  filter: blur(22px);
}

.hero-logo-main {
  position: relative;
  width: 100%;
  opacity: 0.94;
  filter:
    saturate(1.08)
    contrast(1.08)
    brightness(1.06)
    drop-shadow(0 0 1px rgba(255, 255, 255, 0.85))
    drop-shadow(0 0 16px rgba(255, 255, 255, 0.18))
    drop-shadow(0 0 30px rgba(215, 174, 79, 0.24));
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: var(--soft-gold);
  font-size: 0.76rem;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
}

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

h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 500;
  line-height: 1;
}

h1 {
  margin-bottom: 22px;
  font-size: clamp(4.7rem, 14vw, 12rem);
}

h2 {
  margin-bottom: 0;
  font-size: clamp(3rem, 7vw, 6.8rem);
}

h3 {
  margin-bottom: 12px;
  color: var(--white);
  font-size: 2rem;
}

.hero-subtitle {
  margin-bottom: 12px;
  color: var(--white);
  font-size: clamp(1.2rem, 2.5vw, 2rem);
  font-weight: 600;
  letter-spacing: 0.04em;
  text-shadow:
    0 0 1px var(--gold),
    0 0 18px rgba(215, 174, 79, 0.22);
  -webkit-text-stroke: 0.35px rgba(215, 174, 79, 0.62);
}

.hero-service {
  max-width: 620px;
  margin: 0 auto 36px;
  color: var(--soft-silver);
  font-size: clamp(0.96rem, 2vw, 1.18rem);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 0 30px;
  border: 1px solid rgba(242, 217, 138, 0.8);
  background: linear-gradient(135deg, var(--white), #e7d7a0);
  color: var(--black);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
  background: transparent;
  color: var(--white);
  border-color: var(--soft-gold);
}

.button.secondary {
  background: transparent;
  color: var(--white);
}

.button.secondary:hover {
  background: var(--white);
  color: var(--black);
}

.section {
  padding: clamp(88px, 12vw, 160px) clamp(20px, 4vw, 64px);
}

.about {
  border-top: 1px solid var(--line);
  background: var(--black);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(320px, 0.78fr);
  gap: clamp(42px, 7vw, 108px);
  align-items: start;
}

.about-intro {
  min-width: 0;
}

.origin-photos {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: clamp(28px, 4vw, 46px);
}

.origin-photos figure {
  position: relative;
  min-width: 0;
  margin: 0;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #080808;
}

.origin-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  filter: grayscale(0.18) contrast(1.04) brightness(0.82);
  transition: filter 220ms ease, transform 220ms ease;
}

.origin-photos figure:hover img {
  transform: scale(1.025);
  filter: grayscale(0.05) contrast(1.06) brightness(0.92);
}

.origin-photos figcaption {
  position: absolute;
  right: 12px;
  bottom: 12px;
  left: 12px;
  color: var(--soft-gold);
  font-size: 0.64rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  text-shadow: 0 1px 14px rgba(0, 0, 0, 0.85);
}

.story {
  max-width: 620px;
  color: var(--soft-silver);
  font-size: clamp(1rem, 1.6vw, 1.2rem);
}

.story p {
  margin-bottom: 24px;
}

.refined-story {
  max-width: 680px;
  padding-top: 8px;
  font-size: clamp(1rem, 1.25vw, 1.13rem);
  line-height: 1.78;
}

.refined-story p {
  margin-bottom: 22px;
}

.refined-story strong {
  color: var(--white);
  font-weight: 600;
  text-shadow: 0 0 14px rgba(215, 174, 79, 0.14);
}

.projects,
.designs {
  background: var(--near-black);
}

.designs {
  border-top: 1px solid var(--line);
  background: var(--black);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  gap: 48px;
  align-items: end;
  margin-bottom: clamp(36px, 7vw, 82px);
}

.section-heading p:last-child {
  max-width: 520px;
  margin-bottom: 8px;
  color: var(--mid-gray);
}

.masonry {
  columns: 3 300px;
  column-gap: 18px;
}

.project-card {
  position: relative;
  display: block;
  aspect-ratio: 1 / 1;
  break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: #090909;
}

.project-card img,
.project-card video {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transform: scale(1.001);
  filter: contrast(1.02) saturate(0.98);
}

.project-card::after {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), transparent 35%, rgba(0, 0, 0, 0.16)),
    inset 0 0 0 1px rgba(255, 255, 255, 0.035);
  content: "";
}

.project-card img,
.project-card video {
  transition: transform 320ms ease, filter 320ms ease;
}

.project-card:hover img,
.project-card:hover video {
  transform: scale(1.035);
  filter: contrast(1.05) saturate(1.02);
}

.placeholder {
  position: relative;
  min-height: 360px;
  display: grid;
  place-items: center;
  break-inside: avoid;
  margin: 0 0 18px;
  overflow: hidden;
  border: 1px solid var(--line);
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--charcoal);
  color: var(--silver);
}

.placeholder::before,
.design-placeholder::before {
  position: absolute;
  inset: 18px;
  border: 1px solid rgba(255, 255, 255, 0.09);
  content: "";
}

.placeholder::after,
.design-placeholder::after {
  position: absolute;
  inset: auto 24px 24px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  content: "";
}

.placeholder span,
.design-placeholder span {
  position: relative;
  z-index: 1;
  max-width: 70%;
  text-align: center;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.placeholder.tall {
  min-height: 510px;
}

.placeholder.wide {
  min-height: 300px;
}

.placeholder.video,
.design-placeholder.video {
  background:
    linear-gradient(135deg, rgba(201, 201, 201, 0.13), rgba(255, 255, 255, 0.02)),
    #101010;
}

.placeholder.video span,
.design-placeholder.video span {
  color: var(--white);
}

.design-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.design-card {
  min-width: 0;
  border: 1px solid var(--line);
  background: #0d0d0d;
}

.design-placeholder {
  position: relative;
  min-height: 280px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(255, 255, 255, 0.06), rgba(255, 255, 255, 0.01)),
    var(--charcoal);
}

.design-media {
  aspect-ratio: 1 / 1;
  min-height: 0;
}

.design-media::before,
.design-media::after {
  content: none;
}

.design-media .design-poster,
.design-media video {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.design-media .design-poster {
  z-index: 1;
}

.design-media video {
  z-index: 2;
  background: transparent;
}

.design-card h3,
.design-card p {
  padding-right: 22px;
  padding-left: 22px;
}

.design-card h3 {
  margin-top: 24px;
  font-size: clamp(1.55rem, 2vw, 2rem);
}

.design-card p {
  min-height: 78px;
  margin-bottom: 24px;
  color: var(--mid-gray);
}

.contact-band {
  padding: clamp(88px, 14vw, 180px) 24px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--near-black);
  text-align: center;
}

.contact-inner {
  max-width: 780px;
  margin: 0 auto;
}

.contact-inner h2 {
  margin-bottom: 24px;
}

.contact-inner p:not(.section-kicker) {
  margin: 0 auto 34px;
  max-width: 620px;
  color: var(--soft-silver);
}

.contact-page {
  min-height: 100vh;
  padding: clamp(138px, 16vw, 210px) clamp(20px, 4vw, 64px) clamp(80px, 10vw, 130px);
  background: var(--black);
}

.contact-layout {
  width: min(100%, 1100px);
  margin: 0 auto;
}

.contact-page-heading {
  max-width: 760px;
  margin-bottom: clamp(34px, 6vw, 64px);
}

.contact-page-heading h1 {
  max-width: 860px;
  margin-bottom: 24px;
  font-size: clamp(3.6rem, 8vw, 7.8rem);
}

.contact-page-heading p:not(.eyebrow) {
  max-width: 660px;
  color: var(--soft-silver);
  font-size: clamp(1rem, 1.5vw, 1.18rem);
}

.inquiry-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
  width: min(100%, 980px);
  padding: clamp(24px, 4vw, 48px);
  border: 1px solid var(--line);
  background: rgba(9, 9, 9, 0.94);
  box-shadow: 0 24px 80px var(--shadow);
}

.form-intro {
  grid-column: 1 / -1;
  display: grid;
  gap: 8px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
}

.form-intro span {
  color: var(--white);
  font-family: var(--serif);
  font-size: clamp(1.8rem, 3vw, 2.8rem);
  line-height: 1;
}

.form-intro p {
  max-width: 620px;
  margin: 0;
  color: var(--mid-gray);
}

.google-form-card {
  display: block;
  width: 100%;
  max-width: 1100px;
}

.google-form-frame {
  width: 100%;
  height: min(78vh, 860px);
  min-height: 640px;
  margin-top: 28px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.12);
  background: #050505;
}

.google-form-frame iframe {
  display: block;
  width: 100%;
  height: 100%;
  border: 0;
  background: #050505;
}

.form-row {
  display: flex;
  min-width: 0;
  flex-direction: column;
  gap: 9px;
}

.form-row.full {
  grid-column: 1 / -1;
}

.form-row label {
  color: var(--silver);
  font-size: 0.76rem;
  font-weight: 700;
  line-height: 1.25;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.form-row input,
.form-row select,
.form-row textarea {
  display: block;
  width: 100%;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 0;
  appearance: none;
  background: #080808;
  color: var(--white);
  font-family: var(--sans);
  font-size: 1rem;
  line-height: 1.4;
  outline: none;
  transition: border-color 180ms ease, background 180ms ease;
}

.form-row input,
.form-row select {
  min-height: 58px;
  padding: 0 18px;
}

.form-row select {
  background-image:
    linear-gradient(45deg, transparent 50%, var(--silver) 50%),
    linear-gradient(135deg, var(--silver) 50%, transparent 50%);
  background-position:
    calc(100% - 20px) 26px,
    calc(100% - 14px) 26px;
  background-size: 6px 6px, 6px 6px;
  background-repeat: no-repeat;
}

.form-row textarea {
  resize: vertical;
  min-height: 190px;
  padding: 18px;
}

.form-row input:focus,
.form-row select:focus,
.form-row textarea:focus {
  border-color: var(--silver);
  background: #0b0b0b;
}

.form-row ::placeholder {
  color: rgba(248, 248, 246, 0.38);
}

.form-button {
  justify-self: start;
  border: 0;
  cursor: pointer;
}

.form-actions {
  grid-column: 1 / -1;
  display: flex;
  align-items: center;
  gap: 22px;
  flex-wrap: wrap;
  padding-top: 4px;
}

.form-status {
  align-self: center;
  margin: 0;
  color: var(--soft-silver);
  font-size: 0.95rem;
}

.socials {
  background: var(--black);
}

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

.social-links a {
  display: grid;
  min-height: 112px;
  place-items: center;
  border: 1px solid var(--line);
  background: #0d0d0d;
  color: var(--soft-silver);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  transition: border-color 180ms ease, color 180ms ease, transform 180ms ease;
}

.social-links a:hover {
  transform: translateY(-2px);
  border-color: var(--silver);
  color: var(--white);
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  padding: 28px clamp(20px, 4vw, 64px);
  color: var(--mid-gray);
  font-size: 0.76rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

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

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

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

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

  .header-socials {
    position: absolute;
    top: 26px;
    left: 88px;
    margin-right: 0;
  }

  .site-nav {
    width: 100%;
    justify-content: space-between;
    gap: 10px;
    overflow-x: auto;
    padding-bottom: 2px;
    scrollbar-width: none;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  .hero {
    padding-top: 170px;
  }

  .hero-logo-lockup {
    width: min(78vw, 520px);
  }

  .about-grid,
  .section-heading {
    grid-template-columns: 1fr;
    display: block;
  }

  .section-heading p:last-child {
    margin-top: 22px;
  }

  .design-grid,
  .social-links {
    grid-template-columns: 1fr;
  }

  .origin-photos {
    max-width: 720px;
  }

  .inquiry-form {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 560px) {
  .site-header {
    padding-right: 16px;
    padding-left: 16px;
  }

  .brand {
    min-width: 0;
  }

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

  .header-socials {
    top: 22px;
    left: 72px;
  }

  .header-socials a {
    width: 31px;
    height: 31px;
  }

  .site-nav {
    font-size: 0.68rem;
    letter-spacing: 0.1em;
  }

  .hero {
    min-height: 92vh;
    padding-top: 150px;
    padding-right: 18px;
    padding-left: 18px;
  }

  .hero-media img {
    width: min(96vw, 560px);
    opacity: 0.09;
  }

  .hero-logo-lockup {
    width: min(88vw, 390px);
    margin-bottom: 18px;
  }

  .hero-logo-main {
    opacity: 0.96;
  }

  .hero-subtitle {
    font-size: 1.18rem;
  }

  .hero-service {
    font-size: 0.95rem;
  }

  h1 {
    font-size: 4.3rem;
  }

  h2 {
    font-size: 3rem;
  }

  .section {
    padding-right: 18px;
    padding-left: 18px;
  }

  .origin-photos {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .origin-photos img {
    aspect-ratio: 16 / 10;
  }

  .refined-story {
    line-height: 1.7;
  }

  .contact-page {
    padding: 150px 16px 72px;
    background: var(--black);
  }

  .contact-page-heading {
    margin-bottom: 28px;
  }

  .contact-page-heading h1 {
    font-size: 3.35rem;
  }

  .inquiry-form {
    gap: 18px;
    padding: 22px 16px;
    border-right: 0;
    border-left: 0;
    background: rgba(9, 9, 9, 0.96);
  }

  .form-row label {
    font-size: 0.68rem;
  }

  .form-row input,
  .form-row select {
    min-height: 52px;
  }

  .form-row textarea {
    min-height: 180px;
  }

  .form-button {
    width: 100%;
  }

  .placeholder,
  .placeholder.tall,
  .placeholder.wide {
    min-height: 330px;
  }

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