@font-face {
  font-family: "Vendya";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url(/assets/vendya.woff2) format("woff2");
}
@font-face {
  font-family: "Aeonik Pro";
  font-style: normal;
  font-weight: 300;
  font-display: swap;
  src: url(/assets/aeonik-pro-light.woff2) format("woff2");
}
:root {
  --bg: #171715;
  --surface: #20201d;
  --text: #ece8df;
  --muted: #b4b0a6;
  --line: #41413b;
  --serif: "Vendya", Georgia, serif;
  --sans: "Aeonik Pro", Arial, sans-serif;
}
* {
  box-sizing: border-box;
}
html {
  scroll-behavior: smooth;
}
body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 300 16px/1.7 var(--sans);
  font-synthesis: none;
}
a {
  color: inherit;
  text-decoration: none;
}
button,
input,
textarea,
select {
  font: inherit;
}
button,
a,
input,
select,
textarea {
  -webkit-tap-highlight-color: transparent;
}
button {
  cursor: pointer;
}
a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible {
  outline: 2px solid #e2c8a2;
  outline-offset: 6px;
}
img {
  display: block;
  width: 100%;
  height: auto;
}
h1,
h2,
h3,
p {
  margin-top: 0;
}
h1,
h2,
h3 {
  font-family: var(--serif);
  font-weight: 400;
  line-height: 1.14;
}
h2 {
  font-size: clamp(40px, 5vw, 76px);
  letter-spacing: -0.035em;
}
h3 {
  font-size: 30px;
}
p {
  color: var(--muted);
}
header {
  position: absolute;
  z-index: 10;
  left: 0;
  top: 0;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 29px 4.5%;
  border-bottom: 1px solid #ffffff25;
  background: linear-gradient(#15151370, transparent);
}
.brand {
  font-family: var(--serif);
  font-size: 24px;
  line-height: 1.2;
}
.brand span {
  display: block;
  font: 10px/2 var(--sans);
  letter-spacing: 0.32em;
  margin-top: 6px;
}
nav {
  display: flex;
  gap: 30px;
  font-size: 14px;
}
nav a {
  position: relative;
}
nav a[aria-current="page"]:after,
nav a:hover:after {
  content: "";
  position: absolute;
  height: 1px;
  background: currentColor;
  bottom: -5px;
  left: 0;
  right: 0;
}
.header-cta {
  font-size: 13px;
  border-bottom: 1px solid #bdb8ad;
  padding: 8px 0;
}
.header-cta span {
  margin-left: 28px;
}
.menu-toggle {
  display: none;
}
.eyebrow {
  font-size: 12px;
  font-family: var(--sans);
  letter-spacing: 0.19em;
  font-weight: 400;
}
.hero {
  height: 100svh;
  min-height: 660px;
  position: relative;
  background: linear-gradient(110deg, #342e2a, #706253 70%, #211e1b);
  overflow: hidden;
}
.hero-image {
  position: absolute;
  inset: 0;
  height: 100%;
  object-fit: cover;
  object-position: center 40%;
}
.hero-shade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(0deg, #10100fee, transparent 65%),
    linear-gradient(90deg, #11111155, transparent);
}
.hero-top {
  position: absolute;
  top: 160px;
  left: 4.5%;
}
.hero-title {
  position: absolute;
  bottom: 105px;
  left: 4.5%;
  right: 4.5%;
}
.hero-title h1 {
  font-size: clamp(62px, 10.2vw, 170px);
  letter-spacing: -0.06em;
  margin: 5px 0 24px;
  white-space: nowrap;
}
.hero-title .eyebrow {
  color: #eee6db;
}
.hero-bottom {
  display: flex;
  justify-content: space-between;
  align-items: end;
}
.hero-bottom p {
  color: #dedad2;
  margin: 0;
  line-height: 1.8;
}
.line-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 45px;
  border-bottom: 1px solid #aaa69a;
  padding: 12px 0;
  font-size: 14px;
}
.line-link span {
  font-size: 22px;
}
.hero-index {
  position: absolute;
  bottom: 30px;
  right: 4.5%;
  color: #c3bbae;
}
.section {
  padding: 110px 6%;
}
.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: end;
  margin-bottom: 48px;
}
.section-heading h2 {
  margin: 12px 0 0;
}
.section-heading > p {
  max-width: 350px;
  margin: 0;
}
.muted {
  color: var(--muted);
}
.work-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 42px 24px;
}
.card-image {
  overflow: hidden;
  background: #282823;
  aspect-ratio: 3/4;
}
.card-image img {
  height: 100%;
  object-fit: cover;
  transition:
    transform 0.7s ease,
    filter 0.7s;
  filter: saturate(0.7);
}
.project-card:hover img {
  transform: scale(1.035);
  filter: saturate(1);
}
.card-meta {
  display: flex;
  align-items: baseline;
  justify-content: space-between;
  margin-top: 19px;
  gap: 12px;
}
.card-meta h3 {
  font-size: 26px;
  margin: 0;
}
.card-meta span {
  font-size: 12px;
  color: var(--muted);
}
.card-category {
  font-size: 12px;
  letter-spacing: 0.12em;
  margin-top: 7px;
}
.section-end {
  text-align: center;
  margin-top: 50px;
}
.rule {
  border-top: 1px solid var(--line);
}
.service-row {
  display: grid;
  grid-template-columns: 60px 1fr 1fr 30px;
  gap: 25px;
  align-items: center;
  padding: 32px 0;
  border-top: 1px solid var(--line);
}
.service-row h3 {
  font-size: clamp(32px, 4vw, 58px);
  margin: 0;
}
.service-row p {
  font-size: 14px;
  margin: 0;
}
.service-row:last-child {
  border-bottom: 1px solid var(--line);
}
.about-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10%;
  align-items: center;
}
.portrait {
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: grayscale(1);
}
.caption {
  font-size: 12px;
  margin-top: 10px;
  color: var(--muted);
}
.about-copy h2 {
  margin: 22px 0 30px;
}
.about-copy p {
  max-width: 490px;
}
.clients {
  text-align: center;
  padding: 55px 6% 85px;
}
.clients .client-list {
  display: flex;
  justify-content: center;
  gap: 60px;
  flex-wrap: wrap;
  font-family: var(--serif);
  font-size: 25px;
  margin: 28px 0;
}
.education {
  background: var(--surface);
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8%;
  align-items: center;
}
.education-image {
  aspect-ratio: 5/4;
  object-fit: cover;
  filter: grayscale(1);
}
.cta-section {
  padding: 110px 6%;
  text-align: center;
}
.cta-section h2 {
  font-size: clamp(46px, 7vw, 105px);
  margin: 20px 0 30px;
}
.cta-section h2 em {
  color: #b7ae9d;
}
.button {
  display: inline-flex;
  align-items: center;
  gap: 36px;
  background: var(--text);
  color: #20201c;
  border: 1px solid var(--text);
  padding: 17px 25px;
  font-size: 14px;
}
.button:hover {
  background: #d1c9b9;
}
.call-link {
  display: inline-block;
  margin-left: 30px;
  padding: 16px 4px;
  border: 0;
  background: none;
  color: var(--text);
  border-bottom: 1px solid var(--line);
}
footer {
  padding: 40px 6% 25px;
  border-top: 1px solid var(--line);
}
.footer-top,
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 30px;
}
.footer-top {
  padding-bottom: 40px;
}
.footer-links {
  display: flex;
  gap: 30px;
  font-size: 14px;
}
.footer-bottom {
  font-size: 12px;
  color: var(--muted);
}
.page-intro {
  padding: 190px 6% 65px;
}
.page-intro h1 {
  font-size: clamp(55px, 8vw, 112px);
  margin: 20px 0 30px;
  letter-spacing: -0.04em;
}
.page-intro p {
  max-width: 650px;
}
.compact {
  padding-top: 30px;
}
.filters {
  display: flex;
  gap: 12px;
  margin-bottom: 40px;
  flex-wrap: wrap;
}
.filter {
  background: none;
  color: var(--muted);
  border: 1px solid var(--line);
  padding: 10px 22px;
}
.filter[aria-pressed="true"] {
  background: var(--text);
  color: var(--bg);
}
.project-hero {
  width: 100%;
  max-height: 85vh;
  object-fit: contain;
  background: #20201d;
}
.gallery {
  max-width: 1250px;
  margin: 0 auto;
  padding: 60px 6%;
}
.gallery img {
  margin: 25px 0;
}
.detail-meta {
  display: flex;
  gap: 55px;
  font-size: 14px;
}
.detail-meta dt {
  color: var(--muted);
  font-size: 12px;
  letter-spacing: 0.1em;
  margin-bottom: 8px;
}
.detail-meta dd {
  margin: 0;
}
.text-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 9%;
}
.course {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 60px 1fr auto;
  gap: 25px;
}
.course h3 {
  margin-bottom: 12px;
}
.course p {
  max-width: 640px;
}
.contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.65fr;
  gap: 10%;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 25px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}
.field.full {
  grid-column: 1/-1;
}
input,
select,
textarea {
  width: 100%;
  background: transparent;
  border: 0;
  border-bottom: 1px solid #6d6b63;
  border-radius: 0;
  padding: 13px 0;
  color: var(--text);
  min-height: 48px;
}
select option {
  background: var(--bg);
}
textarea {
  min-height: 125px;
  resize: vertical;
}
.form-note {
  font-size: 13px;
  margin: 24px 0;
}
.status {
  margin-top: 20px;
  color: var(--text);
}
.notice {
  padding: 16px;
  border-left: 2px solid #9c8c74;
  font-size: 14px;
}
.skip {
  position: fixed;
  top: -100px;
  left: 20px;
  z-index: 100;
  background: var(--text);
  color: var(--bg);
  padding: 12px;
}
.skip:focus {
  top: 15px;
}
.reveal {
  animation: reveal 0.65s ease both;
}
@keyframes reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }
  to {
    opacity: 1;
    transform: none;
  }
}
[hidden] {
  display: none !important;
}
@media (min-width: 1600px) {
  .section {
    padding-left: max(6%, calc((100% - 1500px) / 2));
    padding-right: max(6%, calc((100% - 1500px) / 2));
  }
}
@media (max-width: 1000px) {
  nav {
    gap: 19px;
  }
  .header-cta {
    display: none;
  }
  .work-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .section {
    padding: 80px 5%;
  }
  .about-split {
    gap: 6%;
  }
  .hero {
    min-height: 650px;
  }
  .service-row {
    grid-template-columns: 35px 1fr 1fr 20px;
  }
  .contact-layout {
    gap: 5%;
  }
  .footer-links {
    gap: 16px;
  }
}
@media (max-width: 650px) {
  header {
    padding: 22px 6%;
  }
  .brand {
    font-size: 21px;
  }
  .menu-toggle {
    display: flex;
    gap: 20px;
    align-items: center;
    border: 0;
    background: none;
    color: var(--text);
    font-size: 14px;
    min-height: 44px;
  }
  .menu-toggle span {
    font-size: 23px;
  }
  nav {
    display: none;
    position: absolute;
    top: 99px;
    left: 0;
    right: 0;
    background: var(--bg);
    padding: 28px 6%;
    border-bottom: 1px solid var(--line);
  }
  nav.open {
    display: flex;
    flex-direction: column;
    gap: 22px;
  }
  .hero {
    min-height: 650px;
    max-height: 1000px;
  }
  .hero-top {
    top: 140px;
    left: 6%;
    font-size: 10px;
  }
  .hero-title {
    left: 6%;
    right: 6%;
    bottom: 90px;
  }
  .hero-title h1 {
    font-size: clamp(39px, 10.3vw, 67px);
    letter-spacing: -0.055em;
    white-space: normal;
    margin: 18px 0 25px;
  }
  .hero-bottom {
    align-items: start;
    flex-direction: column;
    gap: 25px;
  }
  .hero-title .eyebrow {
    font-size: 10px;
  }
  .hero-index {
    font-size: 10px;
    right: 6%;
  }
  .hero-image {
    object-position: 60% center;
  }
  .section {
    padding: 65px 6%;
  }
  .section-heading {
    align-items: start;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 30px;
  }
  .section-heading h2 {
    font-size: 44px;
  }
  .work-grid {
    grid-template-columns: 1fr;
    gap: 35px;
  }
  .service-row {
    grid-template-columns: 28px 1fr 20px;
    gap: 12px;
  }
  .service-row p {
    grid-column: 2;
    grid-row: 2;
  }
  .service-row > span:last-child {
    grid-column: 3;
    grid-row: 1;
  }
  .about-split,
  .education,
  .text-columns,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .about-copy h2 {
    font-size: 43px;
  }
  .clients {
    padding: 35px 6% 60px;
  }
  .clients .client-list {
    gap: 15px 30px;
    font-size: 21px;
  }
  .cta-section {
    padding: 70px 6%;
  }
  .cta-section h2 {
    font-size: 49px;
  }
  .footer-top,
  .footer-bottom {
    flex-direction: column;
    gap: 24px;
  }
  .footer-links {
    flex-wrap: wrap;
  }
  .page-intro {
    padding: 155px 6% 40px;
  }
  .page-intro h1 {
    font-size: 58px;
  }
  .detail-meta {
    gap: 25px;
    flex-wrap: wrap;
  }
  .course {
    grid-template-columns: 30px 1fr;
    gap: 15px;
  }
  .course > a {
    grid-column: 2;
    justify-self: start;
  }
  .form-grid {
    grid-template-columns: 1fr;
  }
  .field.full {
    grid-column: auto;
  }
  .compact {
    padding-top: 15px;
  }
  .call-link {
    margin-left: 15px;
  }
}
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *:before,
  *:after {
    animation: none !important;
    transition: none !important;
  }
}
/* Reference: compact fashion editorial composition. */
:root {
  --bg: #0c0e0d;
  --surface: #151715;
  --line: #353733;
  --serif: "Vendya", Georgia, serif;
}
header {
  padding: 27px 5.6%;
  border: 0;
  background: transparent;
}
.brand {
  font-size: 22px;
}
.brand span {
  font-size: 9px;
}
nav {
  gap: 32px;
  font-size: 12px;
  letter-spacing: 0.12em;
}
.header-cta {
  font-size: 11px;
  letter-spacing: 0.08em;
}
.hero {
  background: #0c0e0d;
  min-height: 620px;
}
.hero-image {
  width: 76%;
  left: 24%;
  object-position: center 32%;
  filter: saturate(0.65) brightness(0.78);
}
.hero-shade {
  background:
    linear-gradient(90deg, #0c0e0d 0%, #0c0e0de8 23%, #0c0e0d25 61%, #0c0e0d10),
    linear-gradient(0deg, #0c0e0d88, transparent 35%);
}
.hero-top {
  display: none;
}
.hero-title {
  left: 5.6%;
  bottom: auto;
  top: 39%;
  right: 4%;
}
.hero-title h1 {
  font-size: clamp(48px, 6vw, 100px);
  letter-spacing: -0.035em;
  margin: 16px 0 24px;
}
.hero-title .eyebrow {
  letter-spacing: 0.26em;
}
.hero-title .eyebrow:before {
  content: "";
  display: inline-block;
  width: 28px;
  height: 1px;
  background: #9e9b92;
  vertical-align: middle;
  margin-right: 17px;
}
.hero-bottom {
  align-items: start;
  flex-direction: column;
  gap: 26px;
}
.hero-bottom p {
  font-size: 13px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  max-width: 450px;
}
.hero-bottom .line-link {
  border: 1px solid #9a978d;
  padding: 11px 24px;
  font-size: 12px;
  letter-spacing: 0.13em;
  gap: 40px;
}
.hero-index {
  bottom: 50px;
  right: 5.6%;
}
.section {
  padding: 65px 5.6%;
}
.section-heading {
  margin-bottom: 24px;
}
.section-heading h2 {
  font-size: 48px;
}
.home-work .section-heading h2,
.home-work .section-heading > p {
  display: none;
}
.home-work .section-heading {
  align-items: center;
  flex-direction: row;
}
.home-work .work-grid {
  gap: 12px;
}
.home-work .project-card {
  position: relative;
}
.home-work .card-image {
  aspect-ratio: 1.48;
}
.home-work .card-image:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, #090b09bb, transparent 65%);
  pointer-events: none;
}
.home-work .card-meta {
  position: absolute;
  bottom: 40px;
  left: 24px;
  right: 24px;
}
.home-work .card-meta h3 {
  font-size: 28px;
  text-transform: uppercase;
}
.home-work .card-category {
  position: absolute;
  bottom: 11px;
  left: 24px;
  font-size: 10px;
  letter-spacing: 0.17em;
  color: #eee;
}
.home-work .section-end {
  display: none;
}
.home-work .caption {
  margin-bottom: 0;
}
.home-work {
  padding-bottom: 24px;
  padding-top: 30px;
}
.home-about {
  padding-top: 16px;
  padding-bottom: 35px;
}
.home-about .about-split {
  grid-template-columns: 44% 1fr;
  gap: 4%;
}
.home-about .portrait {
  aspect-ratio: 1.75;
  object-position: 50% 38%;
}
.home-about .about-copy h2 {
  font-size: 36px;
  text-transform: uppercase;
  line-height: 1.18;
  max-width: 550px;
  margin: 14px 0 20px;
}
.home-about .about-copy p {
  font-size: 14px;
  margin-bottom: 14px;
}
.home-about .about-copy .line-link {
  font-size: 12px;
  padding: 9px 20px;
  border: 1px solid #807e75;
}
.clients {
  padding: 30px 5.6% 42px;
  text-align: left;
  border-top: 0;
}
.clients .client-list {
  justify-content: space-between;
  gap: 20px;
  font-size: 27px;
  color: #b5b3aa;
}
.education {
  padding-top: 48px;
  padding-bottom: 48px;
  position: relative;
  overflow: hidden;
  min-height: 340px;
  background: #24221f;
}
.education > div {
  position: relative;
  z-index: 1;
}
.education h2 {
  font-size: 42px;
  text-transform: uppercase;
}
.education-image {
  position: absolute;
  right: 0;
  top: 0;
  width: 58%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.education:after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, #1b1a18 15%, transparent 85%);
  pointer-events: none;
}
.education > div {
  z-index: 2;
}
.education p {
  max-width: 500px;
}
.cta-section {
  padding: 70px 5.6%;
  background: linear-gradient(130deg, #151916, #090b0a 60%, #222722);
}
.cta-section h2 {
  font-size: 55px;
  text-transform: uppercase;
  margin: 16px 0 24px;
}
.button {
  color: var(--text);
  background: transparent;
  border-color: #898b83;
  font-size: 12px;
  letter-spacing: 0.1em;
}
.button:hover {
  background: var(--text);
  color: var(--bg);
}
.line-link {
  font-size: 13px;
}
.footer-top {
  padding-bottom: 27px;
}
footer {
  padding: 30px 5.6% 20px;
}
.footer-links {
  font-size: 12px;
}
.footer-bottom {
  padding-top: 20px;
  border-top: 1px solid var(--line);
}
.home-about h2 em {
  font-style: normal;
}
.page-intro h1 {
  font-size: clamp(52px, 6vw, 88px);
}
.gallery img {
  width: 100%;
  height: auto;
}
.project-hero {
  height: auto;
  max-height: none;
  object-fit: contain;
}
.course {
  min-height: 160px;
}
@media (max-width: 1000px) {
  .home-work .work-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .home-work .card-meta {
    left: 15px;
    right: 15px;
  }
  .home-work .card-meta h3 {
    font-size: 22px;
  }
  .home-work .card-category {
    left: 15px;
  }
  .home-about .about-copy h2 {
    font-size: 29px;
  }
  .hero-title h1 {
    font-size: 7vw;
  }
  .hero-image {
    width: 85%;
    left: 15%;
  }
}
@media (max-width: 650px) {
  header {
    padding: 22px 6%;
  }
  .hero {
    min-height: 700px;
  }
  .hero-image {
    left: 0;
    width: 100%;
    object-position: 58% center;
    filter: saturate(0.65) brightness(0.74);
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #0b0d0cef 0%,
      #0b0d0c66 47%,
      transparent 78%
    );
  }
  .hero-title {
    top: auto;
    bottom: 95px;
    left: 6%;
    right: 6%;
  }
  .hero-title h1 {
    font-size: 11vw;
    margin: 12px 0 18px;
    white-space: nowrap;
  }
  .hero-title .eyebrow {
    font-size: 10px;
  }
  .hero-bottom p {
    font-size: 11px;
    max-width: 310px;
    letter-spacing: 0.1em;
  }
  .hero-bottom {
    gap: 20px;
  }
  .hero-index {
    bottom: 30px;
    font-size: 9px;
  }
  .home-work .work-grid {
    grid-template-columns: 1fr;
  }
  .home-work .card-image {
    aspect-ratio: 1.5;
  }
  .home-work .card-meta h3 {
    font-size: 30px;
  }
  .home-work .card-meta {
    left: 24px;
  }
  .home-work .card-category {
    left: 24px;
  }
  .home-work {
    padding-top: 26px;
  }
  .home-work .section-heading .line-link {
    font-size: 11px;
    gap: 15px;
  }
  .home-about .about-split {
    grid-template-columns: 1fr;
    gap: 25px;
  }
  .home-about .portrait {
    aspect-ratio: 1.4;
  }
  .home-about .about-copy h2 {
    font-size: 33px;
  }
  .section {
    padding-left: 6%;
    padding-right: 6%;
  }
  .home-about {
    padding-top: 30px;
  }
  .clients .client-list {
    font-size: 22px;
    justify-content: start;
    gap: 18px 30px;
  }
  .education {
    min-height: 400px;
  }
  .education h2 {
    font-size: 34px;
  }
  .education-image {
    width: 100%;
    opacity: 0.24;
  }
  .education:after {
    background: linear-gradient(90deg, #1b1a1890, transparent);
  }
  .cta-section h2 {
    font-size: 38px;
  }
  .cta-section {
    padding: 60px 6%;
  }
  .eyebrow {
    font-size: 11px;
  }
  .footer-bottom {
    font-size: 11px;
  }
  .page-intro h1 {
    font-size: 48px;
  }
  .home-work .card-category {
    font-size: 11px;
  }
}
.hero-image {
  left: 0;
  width: 100%;
  filter: saturate(0.8) brightness(0.95);
  object-position: center center;
}
.hero-shade {
  background:
    linear-gradient(90deg, #0b0d0c35, transparent 70%),
    linear-gradient(0deg, #0b0d0c66, transparent 35%);
}
@media (max-width: 650px) {
  .hero-image {
    object-position: 66% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #0b0d0cef,
      #0b0d0c66 45%,
      transparent 80%
    );
  }
}

:root {
  --serif: "Vendya", Georgia, serif;
}
h1,
h2,
h3,
.brand {
  font-weight: 400;
}
.hero-title h1 {
  letter-spacing: -0.025em;
}
.home-about .about-copy h2 {
  font-size: 39px;
}
@media (max-width: 650px) {
  .home-about .about-copy h2 {
    font-size: 34px;
  }
}
.service-thumbs {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  margin-bottom: 55px;
}
.service-thumbs img {
  aspect-ratio: 4/5;
  object-fit: cover;
  filter: saturate(0.65);
}
.service-thumbs h2 {
  font-size: 32px;
  margin: 15px 0;
}
.course-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px 25px;
}
.course {
  display: flex;
  flex-direction: column;
  border: 0;
  padding: 0;
  gap: 16px;
}
.course > img {
  aspect-ratio: 1.45;
  object-fit: cover;
  filter: saturate(0.5);
}
.course h3 {
  font-size: 34px;
}
.course p {
  font-size: 16px;
}
.course > a {
  align-self: start;
  margin-top: auto;
}
.menu-toggle[aria-expanded="true"] span {
  transform: rotate(45deg);
}
.menu-toggle span {
  transition: transform 0.2s;
}
.in-view-ready {
  opacity: 0;
  transform: translateY(16px);
  transition:
    opacity 0.65s,
    transform 0.65s;
}
.in-view-ready.visible {
  opacity: 1;
  transform: none;
}
.gallery img {
  height: auto;
}
.hero .eyebrow,
.hero .line-link {
  font-size: 12px;
}
.hero-bottom p {
  font-size: 14px;
}
.header-cta,
nav,
.footer-links {
  font-size: 14px;
}
.home-work .card-category,
.caption,
.footer-bottom,
.brand span {
  font-size: 12px;
}
.brand span {
  letter-spacing: 0.2em;
}
.footer-links {
  gap: 20px;
}
.service-thumbs a:focus-visible {
  outline-offset: 8px;
}
@media (max-width: 650px) {
  .service-thumbs,
  .course-grid {
    grid-template-columns: 1fr;
  }
  .hero-bottom p {
    font-size: 12px;
  }
  .hero .eyebrow {
    font-size: 12px;
  }
  .hero-title h1 {
    font-size: 12vw;
  }
  .course-grid {
    gap: 45px;
  }
  .hero-index {
    max-width: 85%;
    text-align: right;
  }
  .footer-top {
    gap: 30px;
  }
}
/* Authentic portfolio: preserve the photographer's color and aspect ratios. */
.hero-image {
  left: 30%;
  width: 70%;
  object-position: 30% center;
  filter: none;
}
.hero-shade {
  background:
    linear-gradient(
      90deg,
      #0c0e0d 0%,
      #0c0e0d 20%,
      #0c0e0d70 42%,
      transparent 65%
    ),
    linear-gradient(0deg, #0c0e0d77, transparent 30%);
}
.card-image img,
.project-card:hover img,
.service-thumbs img,
.course > img,
.portrait {
  filter: none;
}
.real-gallery {
  padding-top: 0;
}
.real-gallery figure {
  margin: 0 0 36px;
}
.real-gallery img {
  display: block;
  width: 100%;
  height: auto;
  margin: 0;
  object-fit: contain;
}
.project-navigation {
  display: flex;
  justify-content: space-between;
  gap: 25px;
  flex-wrap: wrap;
}
.home-about .portrait {
  object-position: 50% 30%;
}
.card-image img {
  object-position: 50% 35%;
}
@media (max-width: 650px) {
  .hero-image {
    left: 0;
    width: 100%;
    object-position: 28% center;
  }
  .hero-shade {
    background: linear-gradient(
      0deg,
      #0c0e0def,
      #0c0e0d88 30%,
      transparent 75%
    );
  }
  .hero-title {
    bottom: 75px;
  }
  .real-gallery {
    padding-left: 0;
    padding-right: 0;
  }
  .real-gallery figure {
    margin-bottom: 16px;
  }
}
.hero-image {
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 24%);
  mask-image: linear-gradient(90deg, transparent, #000 24%);
}
@media (max-width: 650px) {
  .hero-image {
    -webkit-mask-image: none;
    mask-image: none;
  }
}

/* Light is the supplied Aeonik cut; preserve its natural strokes. */
nav, .header-cta, .footer-links, label, input, select, textarea, button {
  font-weight: 300;
}
input, select, textarea {
  font-size: 16px;
}
input::placeholder, textarea::placeholder {
  color: var(--muted);
  opacity: 1;
}
.hero-title h1, .page-heading h1 {
  overflow-wrap: anywhere;
}

/* Image-first portfolio grid, with full compositions in the viewer. */
.project-page .page-intro {
  padding: 155px 24px 35px;
  text-align: center;
  max-width: none;
}
.gallery-back { display: inline-block; color: var(--muted); font-size: 14px; margin-bottom: 22px; }
.project-page .page-intro .eyebrow { display: none; }
.project-page .page-intro h1 { font-size: clamp(32px, 4vw, 58px); margin-bottom: 14px; }
.project-page .page-intro p { margin: 0 auto; max-width: 650px; }
.project-page .detail-meta { display: none; }
.real-gallery {
  display: grid; grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px; max-width: none; padding: 0 14px 40px;
}
.real-gallery figure { margin: 0; min-width: 0; }
.gallery-open { display: block; cursor: zoom-in; overflow: hidden; }
.real-gallery img { width: 100%; height: 100%; aspect-ratio: 2/3; object-fit: cover; }
.photo-viewer {
  position: fixed; inset: 0; width: 100%; height: 100%; height: 100dvh;
  max-width: none; max-height: none; padding: 0; border: 0; margin: 0;
  background: #090a09; color: #f5f2ec;
}
.photo-viewer::backdrop { background: #090a09; }
.photo-viewer[open] { display: grid; grid-template-rows: 64px minmax(0, 1fr) 48px; }
.viewer-bar { display: flex; align-items: center; justify-content: space-between; padding: 8px 20px; gap: 12px; }
.viewer-bar p { margin: 0; color: inherit; font-size: 14px; }
.viewer-actions { display: flex; gap: 12px; }
.photo-viewer button { background: transparent; color: inherit; border: 1px solid #ffffff55; min-width: 44px; min-height: 44px; padding: 8px 14px; cursor: pointer; }
.viewer-stage { overflow: auto; display: flex; align-items: center; justify-content: center; margin: 0 70px; touch-action: pan-y pinch-zoom; }
.viewer-stage img { display: block; width: 100%; height: 100%; object-fit: contain; cursor: zoom-in; }
.viewer-stage.is-zoomed { display: block; }
.viewer-stage.is-zoomed img { width: 200%; height: 200%; max-width: none; object-fit: contain; cursor: zoom-out; }
.viewer-prev, .viewer-next { position: absolute; top: 50%; transform: translateY(-50%); }
.viewer-prev { left: 12px; } .viewer-next { right: 12px; }
.viewer-caption { margin: 0; padding: 10px 16px; font-size: 13px; text-align: center; color: #d0ccc5; }
body.viewer-open { overflow: hidden; }
@media (max-width: 1000px) { .real-gallery { grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 10px; padding-inline: 10px; } }
@media (max-width: 600px) {
 .real-gallery { grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 6px; padding-inline: 6px; }
 .project-page .page-intro { padding: 120px 22px 28px; }
 .viewer-stage { margin: 0; }
 .viewer-bar { padding-inline: 12px; }
 .viewer-prev, .viewer-next { top: auto; bottom: 2px; transform: none; border: 0; }
 .viewer-caption { padding-inline: 65px; }
}
