﻿:root {
  --bg: #f6f3ee;
  --card: #ffffff;
  --text: #1a1a1a;
  --muted: #6b6b6b;
  --accent: #7c4dff;
  --accent-dark: #5b2fd6;
  --border: rgba(0, 0, 0, 0.12);
}

@font-face {
  font-family: "Granville";
  src: url("assets/fonts/Granville-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Granville";
  src: url("assets/fonts/Granville-Bold.otf") format("opentype");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Granville";
  src: url("assets/fonts/Granville-Italic.otf") format("opentype");
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

@font-face {
  font-family: "Degular";
  src: url("assets/fonts/Degular-Regular.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Degular";
  src: url("assets/fonts/Degular-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Freight Display Pro";
  src: url("assets/fonts/FreightDispPro-Book.otf") format("opentype");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Freight Display Pro";
  src: url("assets/fonts/FreightDispPro-Semibold.otf") format("opentype");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-height: 100vh;
  background: var(--bg);
  color: var(--text);
  font-family: "Manrope", sans-serif;
}

body.menu-open {
  overflow: hidden;
}

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

.page-shell {
  width: 100%;
  margin: 0;
  padding: 0;
}

.site-header {
  display: grid;
  grid-template-columns: auto 1fr;
  align-items: center;
  padding: 24px 56px 0;
  margin-bottom: 0;
  position: sticky;
  top: 0;
  z-index: 100;
  background: transparent;
}

.brand-spacer {
  width: 1px;
  height: 1px;
}

.site-nav {
  display: grid;
  grid-auto-flow: column;
  justify-content: end;
  gap: 14px;
  font-weight: 600;
  position: relative;
  align-items: end;
}

.menu-backdrop {
  display: none;
}

.menu-toggle {
  display: none;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.72);
  color: var(--text);
  border-radius: 999px;
  padding: 8px 10px;
  font-weight: 600;
  width: 44px;
  height: 38px;
  align-items: center;
  justify-content: center;
  gap: 4px;
  flex-direction: column;
  backdrop-filter: blur(10px);
}

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

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

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

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

.site-nav a {
  color: rgba(255, 255, 255, 0.76);
  font-family: "Granville", "Playfair Display", serif;
  font-weight: 400;
  text-decoration: none;
  padding-bottom: 3px;
  transition: color 180ms ease;
}

.site-nav a.is-active,
.site-nav a:hover {
  color: #ffffff;
}

.nav-indicator {
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 1.5px;
  width: 0;
  background: #ffffff;
  border-radius: 999px;
  opacity: 0;
  transform: translateX(0);
  transition: transform 260ms cubic-bezier(0.22, 1, 0.36, 1), width 260ms cubic-bezier(0.22, 1, 0.36, 1), opacity 180ms ease;
  pointer-events: none;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.16em;
  font-size: 0.78rem;
  color: var(--muted);
  margin: 0 0 12px;
}

h1,
h2 {
  font-family: "Playfair Display", serif;
  margin: 0 0 12px;
  line-height: 1.1;
}

h1 {
  font-size: clamp(2.8rem, 5vw, 4.2rem);
}

h2 {
  font-size: clamp(2.2rem, 4vw, 3.2rem);
}

.lead {
  color: var(--text);
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  line-height: 1.32;
  margin: 0 0 18px;
  font-weight: 600;
  letter-spacing: -0.01em;
  word-spacing: normal;
  font-family: "Granville", "Playfair Display", serif;
  max-width: 1500px;
  margin-left: auto;
  margin-right: auto;
  text-wrap: balance;
}

.lead-headline {
  font-size: clamp(1.8rem, 3vw, 2.45rem);
  font-family: "Freight Display Pro", "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.015em;
}

.lead-line {
  display: block;
  max-width: 1480px;
  margin: 0 auto;
}

.lead-line-compact {
  max-width: 1180px;
  margin: 0.08em auto 0;
}

.magnet-text {
  display: inline-block;
}

.magnet-letter {
  display: inline-block;
  transition: transform 180ms ease;
  will-change: transform;
}

.hero-section {
  padding: 140px 56px 160px;
  text-align: center;
  max-width: none;
  margin: 0;
  width: 100%;
  margin-top: -64px;
}

.hero-video {
  position: relative;
  overflow: hidden;
  border-radius: 0;
  width: 100%;
  min-height: 70vh;
  padding: 220px 48px 92px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  align-items: center;
}

.hero-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
  z-index: 1;
}

.hero-video::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 180px;
  background: linear-gradient(to bottom, rgba(246, 243, 238, 0) 0%, rgba(246, 243, 238, 1) 100%);
  z-index: 1;
  pointer-events: none;
}

.hero-video h1,
.hero-video .hero-subtitle,
.hero-video .lead,
.hero-video .hero-actions {
  position: relative;
  z-index: 2;
  color: #fff;
}

.hero-video h1 {
  font-family: "Freight Display Pro", "Playfair Display", serif;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.hero-subtitle {
  font-size: 1.1rem;
  font-weight: 600;
  margin: 0 0 16px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  justify-content: center;
}

.icon-link {
  width: 28px;
  height: 28px;
  border-radius: 0;
  border: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: transparent;
  transition: transform 180ms ease;
}

.icon-link svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.icon-link:hover {
  transform: translateY(-2px);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  padding: 0 18px;
  border-radius: 999px;
  border: 1px solid var(--text);
  font-weight: 600;
  transition: transform 180ms ease, background-color 180ms ease, color 180ms ease;
}

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

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

.button-dark:hover {
  background: var(--accent-dark);
}

.button-light {
  background: transparent;
  color: var(--text);
}

.section-head {
  margin-bottom: 20px;
}

.portfolio-section,
.about-section,
.contact-section {
  margin-top: 48px;
  position: relative;
  overflow: hidden;
}

.contact-section::before {
  content: none;
}

.contact-section > * {
  position: relative;
  z-index: 1;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.portfolio-card {
  aspect-ratio: 16 / 9;
  min-height: 260px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: var(--card);
  overflow: hidden;
  display: block;
  color: var(--muted);
  font-weight: 600;
  padding: 0;
  position: relative;
  cursor: pointer;
}

.portfolio-card img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform 320ms ease, filter 320ms ease;
}

.portfolio-play {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%) scale(0.9);
  z-index: 1;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, 0.72);
  color: #fff;
  background: rgba(255, 255, 255, 0.14);
  backdrop-filter: blur(8px);
  display: grid;
  place-items: center;
  opacity: 0;
  transition: opacity 260ms ease, transform 260ms ease, background-color 260ms ease;
}

.portfolio-play svg {
  width: 24px;
  height: 24px;
  fill: currentColor;
  margin-left: 2px;
}

.portfolio-video:hover img,
.portfolio-video:focus-visible img {
  transform: scale(1.045);
}

.portfolio-video-custom-thumb img {
  object-position: center 42%;
  transform: scale(1.1);
}

.portfolio-video-custom-thumb:hover img,
.portfolio-video-custom-thumb:focus-visible img {
  transform: scale(1.145);
}

.portfolio-video:hover .portfolio-play,
.portfolio-video:focus-visible .portfolio-play {
  opacity: 1;
  transform: translate(-50%, -50%) scale(1);
}

.portfolio-video:hover .portfolio-play {
  background: rgba(255, 255, 255, 0.18);
}

.video-modal {
  position: fixed;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 40px;
  background: rgba(0, 0, 0, 0.72);
  opacity: 0;
  pointer-events: none;
  transition: opacity 180ms ease;
  z-index: 300;
}

.video-modal.is-open {
  opacity: 1;
  pointer-events: auto;
}

.video-modal-panel {
  width: min(1120px, 100%);
  aspect-ratio: 16 / 9;
  background: #000;
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.video-modal-panel iframe {
  width: 100%;
  height: 100%;
  border: 0;
  display: block;
}

.video-modal-close {
  position: absolute;
  top: 18px;
  right: 24px;
  border: 0;
  background: transparent;
  color: #fff;
  font-family: "Granville", "Playfair Display", serif;
  font-size: 1rem;
  cursor: pointer;
}

.about-section {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(420px, 1.1fr);
  gap: 36px;
  align-items: start;
  padding: 32px 84px 0;
}

.about-image {
  min-height: 430px;
  border-radius: 0;
  border: 1px solid var(--border);
  background: var(--card);
  display: block;
  color: var(--muted);
  font-weight: 600;
  overflow: hidden;
}

.about-portrait {
  align-self: stretch;
}

.about-portrait img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.about-bio {
  padding-top: 4px;
}

.about-bio-title {
  font-family: "Granville", "Playfair Display", serif;
  font-size: clamp(1.2rem, 1.7vw, 1.6rem);
  margin-bottom: 28px;
}

.about-copy {
  max-width: 980px;
}

.about-copy p {
  font-family: "Granville", "Playfair Display", serif;
  font-size: clamp(0.96rem, 1.12vw, 1.28rem);
  line-height: 1.72;
  letter-spacing: -0.005em;
  margin: 0 0 24px;
  color: var(--text);
}

.about-subsection {
  margin-top: 42px;
}

.about-subtitle {
  font-family: "Granville", "Playfair Display", serif;
  font-size: clamp(1.05rem, 1.45vw, 1.35rem);
  margin: 0 0 18px;
}

.about-subcopy {
  font-family: "Granville", "Playfair Display", serif;
  font-size: clamp(0.96rem, 1.08vw, 1.22rem);
  line-height: 1.7;
  margin: 0;
  max-width: 860px;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(300px, 0.74fr) minmax(640px, 1fr);
  gap: 72px;
  padding: 40px 88px 120px;
  align-items: start;
}

.contact-intro h2 {
  font-family: "Granville", "Playfair Display", serif;
  font-size: clamp(2.8rem, 4.8vw, 4.4rem);
  line-height: 1.04;
  margin: 0 0 28px;
}

.contact-meta p {
  margin: 0 0 18px;
  color: var(--text);
  font-family: "Granville", "Playfair Display", serif;
  font-size: clamp(1rem, 1.15vw, 1.22rem);
}

.contact-form {
  display: grid;
  gap: 26px;
  width: 100%;
  max-width: 820px;
  justify-self: start;
  align-content: start;
  margin-top: 2px;
}

.contact-form-title {
  font-family: "Granville", "Playfair Display", serif;
  font-size: 1.16rem;
  margin: 0 0 -2px;
  font-weight: 600;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}

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

.contact-form span {
  font-family: "Granville", "Playfair Display", serif;
  font-size: 1.02rem;
}

.contact-form span small {
  font-size: 0.8em;
  color: var(--muted);
  font-weight: 400;
}

.contact-section-label {
  font-size: 1.08rem;
  font-weight: 600;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid rgba(0, 0, 0, 0.18);
  background: rgba(255, 255, 255, 0.7);
  padding: 14px 16px;
  font: inherit;
  color: var(--text);
  outline: none;
}

.contact-form input {
  min-height: 58px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 170px;
}

.contact-mail-button {
  width: fit-content;
  border-radius: 0;
  background: #111;
  border-color: #111;
  min-height: 60px;
  padding: 0 30px;
  font-size: 1.2rem;
}

.contact-mail-button:hover {
  background: #111;
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
  color: #8a8a8a;
}

@media (max-width: 980px) {
  .page-shell {
    width: 100%;
    padding: 0;
  }

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

  .about-section {
    grid-template-columns: 1fr;
    padding: 24px 28px 0;
  }

  .about-image {
    min-height: 340px;
  }

  .contact-section {
    grid-template-columns: 1fr;
    gap: 32px;
    padding: 36px 28px 80px;
  }

  .contact-form {
    max-width: none;
    gap: 22px;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .video-modal {
    padding: 16px;
  }

  .video-modal-close {
    top: 10px;
    right: 14px;
  }
}

@media (max-width: 640px) {
  .page-shell {
    padding: 0;
  }

  .site-header {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 0;
    margin-bottom: 0;
    padding: 16px 16px 0;
  }

  .menu-backdrop {
    display: block;
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.28);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease;
    z-index: 90;
  }

  .menu-backdrop.is-visible {
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav {
    display: grid;
    position: fixed;
    top: 72px;
    right: 16px;
    left: 16px;
    grid-auto-flow: row;
    justify-content: stretch;
    gap: 10px;
    padding: 16px;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(18px);
    box-shadow: 0 18px 50px rgba(0, 0, 0, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-8px) scale(0.98);
    transition: opacity 180ms ease, transform 180ms ease;
    z-index: 95;
  }

  .site-nav a {
    padding: 10px 12px;
    border-radius: 12px;
    color: var(--text);
    background: rgba(255, 255, 255, 0.72);
    text-align: left;
    font-size: 1.05rem;
  }

  .site-nav a.is-active {
    background: rgba(0, 0, 0, 0.06);
  }

  .site-nav.is-open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
  }

  .brand {
    display: none;
  }

  .menu-toggle {
    display: inline-flex;
    align-self: start;
    justify-self: end;
    position: relative;
    z-index: 101;
  }

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

  .about-section {
    padding: 16px 18px 0;
    gap: 20px;
  }

  .about-image {
    min-height: 270px;
  }

  .about-bio-title {
    font-size: 1.18rem;
    margin-bottom: 18px;
  }

  .about-copy p {
    font-size: 0.94rem;
    line-height: 1.65;
    margin-bottom: 18px;
  }

  .about-subsection {
    margin-top: 28px;
  }

  .about-subtitle {
    font-size: 1rem;
    margin-bottom: 12px;
  }

  .about-subcopy {
    font-size: 0.94rem;
  }

  .contact-section {
    padding: 28px 18px 64px;
    gap: 24px;
  }

  .contact-intro h2 {
    font-size: 2.4rem;
    margin-bottom: 18px;
  }

  .contact-meta p {
    font-size: 0.96rem;
    margin-bottom: 12px;
  }

  .contact-form {
    gap: 18px;
  }

  .contact-form-title {
    font-size: 1.04rem;
    margin-bottom: -2px;
  }

  .lead-headline {
    font-size: clamp(1.35rem, 6vw, 1.85rem);
    line-height: 1.28;
  }

  .lead-line {
    max-width: none;
  }

  .lead-line-compact {
    max-width: none;
    margin-top: 0.14em;
  }

  .hero-video {
    padding: 180px 22px 88px;
    min-height: 72vh;
  }

  .hero-video h1 {
    font-size: clamp(2.35rem, 11vw, 3.5rem);
  }

  .hero-video h1.magnet-text .magnet-letter {
    display: inline;
    transform: none !important;
    transition: none;
    will-change: auto;
  }

  .hero-actions {
    gap: 18px;
  }
}







