@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/barlow-400.ttf") format("truetype");
}

@font-face {
  font-family: "Barlow";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/barlow-500.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url("../fonts/oswald-400.ttf") format("truetype");
}

@font-face {
  font-family: "Oswald";
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url("../fonts/oswald-500.ttf") format("truetype");
}

:root {
  --fc-bg: #11110f;
  --fc-surface: #191a17;
  --fc-surface-strong: #22231f;
  --fc-sage: #66715f;
  --fc-sage-dark: #1c221b;
  --fc-text: #f3f0e9;
  --fc-text-dark: #181815;
  --fc-muted: #b8b4ad;
  --fc-accent: #d0a46f;
  --fc-accent-strong: #e0b984;
  --fc-line: rgba(243, 240, 233, 0.18);
  --fc-line-strong: rgba(243, 240, 233, 0.34);
  --fc-danger: #df6b62;
  --fc-container: 1240px;
  --fc-header-height: 88px;
  --fc-radius: 2px;
  --fc-ease: 220ms ease;
  --fc-z-base: 0;
  --fc-z-header: 40;
  --fc-z-menu: 60;
  --fc-z-overlay: 80;
}

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

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  background: var(--fc-bg);
  color: var(--fc-text);
  font-family: "Barlow", "Helvetica Neue", Arial, sans-serif;
  font-size: 16px;
  font-weight: 400;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.fc-menu-open {
  overflow: hidden;
}

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

img {
  height: auto;
}

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

button,
a {
  touch-action: manipulation;
}

a {
  color: inherit;
  text-decoration: none;
  transition: color var(--fc-ease), opacity var(--fc-ease), background-color var(--fc-ease), border-color var(--fc-ease), transform var(--fc-ease);
}

a:hover {
  color: var(--fc-accent-strong);
}

button {
  color: inherit;
}

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

::selection {
  background: var(--fc-accent);
  color: var(--fc-text-dark);
}

h1,
h2,
h3,
h4,
h5,
h6,
p,
ul,
ol,
figure,
blockquote {
  margin-top: 0;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  margin-bottom: 24px;
  font-family: "Oswald", "Arial Narrow", Arial, sans-serif;
  font-weight: 400;
  line-height: 1.12;
  letter-spacing: 0;
  overflow-wrap: normal;
}

h1 {
  font-size: 72px;
}

h2 {
  font-size: 48px;
}

h3 {
  font-size: 28px;
}

p {
  margin-bottom: 24px;
  color: var(--fc-muted);
}

ul,
ol {
  padding-left: 22px;
}

.fc-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  min-height: 44px;
  padding: 10px 18px;
  transform: translateY(-160%);
  background: var(--fc-accent);
  color: var(--fc-text-dark);
}

.fc-skip-link:focus {
  transform: translateY(0);
}

.fc-container {
  width: calc(100% - 64px);
  max-width: var(--fc-container);
  margin-inline: auto;
}

.fc-section {
  position: relative;
  padding: 112px 0;
}

.fc-section--compact {
  padding: 80px 0;
}

.fc-section--surface {
  background: var(--fc-surface);
}

.fc-section--sage {
  background: var(--fc-sage-dark);
}

.fc-section--light {
  background: #ece8df;
  color: var(--fc-text-dark);
}

.fc-section--light p,
.fc-section--light .fc-muted {
  color: #55544f;
}

.fc-eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 20px;
  color: var(--fc-accent-strong);
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  text-transform: uppercase;
}

.fc-eyebrow::before {
  width: 36px;
  height: 1px;
  background: currentColor;
  content: "";
}

.fc-section-heading {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(280px, 3fr);
  gap: 64px;
  align-items: end;
  margin-bottom: 64px;
}

.fc-section-heading h2,
.fc-section-heading p {
  margin-bottom: 0;
}

.fc-section-heading p {
  max-width: 520px;
  justify-self: end;
}

.fc-button,
.fc-button-outline,
.fc-text-link {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: var(--fc-radius);
  cursor: pointer;
  font-size: 14px;
  font-weight: 500;
  line-height: 1.2;
}

.fc-button,
.fc-button-outline {
  padding: 14px 24px;
}

.fc-button {
  background: var(--fc-accent);
  color: var(--fc-text-dark);
}

.fc-button:hover {
  background: var(--fc-accent-strong);
  color: var(--fc-text-dark);
}

.fc-button-outline {
  border-color: var(--fc-line-strong);
  background: transparent;
  color: var(--fc-text);
}

.fc-button-outline:hover {
  border-color: var(--fc-accent);
  color: var(--fc-accent-strong);
}

.fc-text-link {
  padding: 8px 0;
  color: var(--fc-text);
}

.fc-text-link::after,
.fc-button::after,
.fc-button-outline::after {
  font-size: 18px;
  line-height: 1;
  content: "\2192";
}

.fc-muted {
  color: var(--fc-muted);
}

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

/* Header */
.fc-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: var(--fc-z-header);
  height: var(--fc-header-height);
  border-bottom: 1px solid transparent;
  transition: background-color var(--fc-ease), border-color var(--fc-ease), height var(--fc-ease);
}

.fc-header.is-scrolled,
.fc-inner-page .fc-header {
  border-color: var(--fc-line);
  background: rgba(17, 17, 15, 0.96);
}

.fc-header.is-scrolled {
  height: 76px;
}

.fc-header__inner {
  display: grid;
  height: 100%;
  grid-template-columns: 230px minmax(0, 1fr) 170px;
  gap: 28px;
  align-items: center;
}

.fc-brand {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  gap: 12px;
  color: var(--fc-text);
}

.fc-brand:hover {
  color: var(--fc-text);
}

.fc-brand__monogram {
  display: inline-flex;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fc-accent);
  color: var(--fc-accent-strong);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
  font-weight: 500;
}

.fc-brand__name {
  display: flex;
  flex-direction: column;
  font-family: "Oswald", sans-serif;
  font-size: 22px;
  line-height: 1.05;
}

.fc-brand__name small {
  margin-top: 4px;
  color: var(--fc-muted);
  font-family: "Barlow", sans-serif;
  font-size: 10px;
  font-weight: 500;
  text-transform: uppercase;
}

.fc-nav {
  justify-self: center;
}

.fc-nav > ul {
  display: flex;
  align-items: center;
  gap: 30px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.fc-nav li {
  position: relative;
}

.fc-nav > ul > li > a {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  border-bottom: 1px solid transparent;
  color: var(--fc-text);
  font-size: 14px;
}

.fc-nav > ul > li.active > a,
.fc-nav > ul > li > a:hover,
.fc-nav > ul > li > a:focus-visible {
  border-color: var(--fc-accent);
  color: var(--fc-accent-strong);
}

.fc-nav__chevron {
  width: 7px;
  height: 7px;
  margin-left: 8px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
}

.fc-subnav {
  position: absolute;
  top: calc(100% + 8px);
  left: -22px;
  width: 250px;
  padding: 12px 0;
  margin: 0;
  visibility: hidden;
  opacity: 0;
  border: 1px solid var(--fc-line);
  background: var(--fc-surface);
  list-style: none;
  transform: translateY(8px);
  transition: opacity var(--fc-ease), visibility var(--fc-ease), transform var(--fc-ease);
}

.fc-nav li:hover > .fc-subnav,
.fc-nav li:focus-within > .fc-subnav {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

.fc-subnav a {
  display: flex;
  min-height: 44px;
  align-items: center;
  padding: 10px 22px;
  color: var(--fc-muted);
  font-size: 14px;
}

.fc-subnav a:hover,
.fc-subnav a:focus-visible,
.fc-subnav .active > a {
  background: var(--fc-surface-strong);
  color: var(--fc-accent-strong);
}

.fc-header__cta {
  min-height: 46px;
  justify-self: end;
  padding-inline: 20px;
}

.fc-menu-toggle {
  position: relative;
  z-index: calc(var(--fc-z-menu) + 1);
  display: none;
  width: 48px;
  height: 48px;
  padding: 0;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fc-line-strong);
  background: transparent;
  cursor: pointer;
}

.fc-menu-toggle__lines,
.fc-menu-toggle__lines::before,
.fc-menu-toggle__lines::after {
  display: block;
  width: 20px;
  height: 1px;
  background: currentColor;
  content: "";
  transition: transform var(--fc-ease), opacity var(--fc-ease);
}

.fc-menu-toggle__lines {
  position: relative;
}

.fc-menu-toggle__lines::before {
  position: absolute;
  top: -6px;
}

.fc-menu-toggle__lines::after {
  position: absolute;
  top: 6px;
}

.fc-menu-toggle[aria-expanded="true"] .fc-menu-toggle__lines {
  background: transparent;
}

.fc-menu-toggle[aria-expanded="true"] .fc-menu-toggle__lines::before {
  top: 0;
  transform: rotate(45deg);
}

.fc-menu-toggle[aria-expanded="true"] .fc-menu-toggle__lines::after {
  top: 0;
  transform: rotate(-45deg);
}

/* Hero */
.fc-hero {
  position: relative;
  height: 88dvh;
  min-height: 680px;
  max-height: 880px;
  overflow: hidden;
  background: var(--fc-surface);
}

.fc-hero__slides,
.fc-hero__slide {
  position: absolute;
  inset: 0;
}

.fc-hero__slide {
  visibility: hidden;
  opacity: 0;
  transition: opacity 360ms ease, visibility 360ms ease;
}

.fc-hero__slide.is-active {
  visibility: visible;
  opacity: 1;
}

.fc-hero__slide::after {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 8, 0.48);
  content: "";
}

.fc-hero__image {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.fc-hero__content {
  position: absolute;
  inset: 0;
  z-index: 2;
  display: flex;
  height: 100%;
  align-items: flex-end;
  padding-bottom: 96px;
}

.fc-hero__copy {
  width: min(760px, 78%);
}

.fc-hero__copy h1 {
  max-width: 700px;
  margin-bottom: 24px;
  color: #fff;
  font-size: 78px;
  text-shadow: 0 2px 24px rgba(0, 0, 0, 0.26);
}

.fc-hero__copy p {
  max-width: 600px;
  margin-bottom: 32px;
  color: #e8e3db;
  font-size: 18px;
}

.fc-hero__meta {
  position: absolute;
  z-index: 3;
  right: max(32px, calc((100vw - var(--fc-container)) / 2));
  bottom: 44px;
  display: flex;
  align-items: center;
  gap: 12px;
}

.fc-hero__control,
.fc-back-to-top {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fc-line-strong);
  background: rgba(17, 17, 15, 0.74);
  color: #fff;
  cursor: pointer;
  font-size: 22px;
}

.fc-hero__control:hover {
  border-color: var(--fc-accent);
  color: var(--fc-accent-strong);
}

.fc-hero__count {
  min-width: 58px;
  color: #fff;
  font-size: 13px;
  text-align: center;
}

.fc-hero__dots {
  position: absolute;
  z-index: 3;
  left: max(32px, calc((100vw - var(--fc-container)) / 2));
  bottom: 34px;
  display: flex;
  gap: 10px;
}

.fc-hero__dot {
  width: 44px;
  height: 44px;
  padding: 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.fc-hero__dot::after {
  display: block;
  width: 100%;
  height: 2px;
  background: rgba(255, 255, 255, 0.4);
  content: "";
  transition: background-color var(--fc-ease);
}

.fc-hero__dot.is-active::after,
.fc-hero__dot:hover::after {
  background: var(--fc-accent-strong);
}

/* About and services */
.fc-about-grid {
  display: grid;
  grid-template-columns: minmax(0, 5fr) minmax(0, 7fr);
  gap: 80px;
  align-items: center;
}

.fc-about-media {
  position: relative;
}

.fc-about-media img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.fc-about-media__note {
  position: absolute;
  right: -24px;
  bottom: 28px;
  width: 190px;
  padding: 22px;
  border-left: 3px solid var(--fc-accent);
  background: var(--fc-surface-strong);
  color: var(--fc-text);
  font-size: 13px;
}

.fc-about-copy h2 {
  max-width: 680px;
}

.fc-about-copy p {
  max-width: 650px;
}

.fc-service-list {
  border-top: 1px solid var(--fc-line);
  counter-reset: fc-service;
}

.fc-service-row {
  display: grid;
  min-height: 118px;
  grid-template-columns: 80px minmax(220px, 1fr) minmax(260px, 1.1fr) 52px;
  gap: 28px;
  align-items: center;
  border-bottom: 1px solid var(--fc-line);
  counter-increment: fc-service;
}

.fc-service-row__number {
  color: var(--fc-accent-strong);
  font-family: "Oswald", sans-serif;
  font-size: 18px;
}

.fc-service-row__number::before {
  content: "0" counter(fc-service);
}

.fc-service-row h3,
.fc-service-row p {
  margin-bottom: 0;
}

.fc-service-row h3 {
  font-size: 26px;
}

.fc-service-row p {
  font-size: 15px;
}

.fc-service-row__link {
  display: inline-flex;
  width: 48px;
  height: 48px;
  align-items: center;
  justify-content: center;
  justify-self: end;
  border: 1px solid var(--fc-line-strong);
  font-size: 20px;
}

.fc-service-row:hover .fc-service-row__link {
  border-color: var(--fc-accent);
  background: var(--fc-accent);
  color: var(--fc-text-dark);
}

/* Project grid */
.fc-filter-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin: 0 0 48px;
  list-style: none;
}

.fc-filter-list a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 9px 16px;
  border: 1px solid var(--fc-line);
  color: var(--fc-muted);
  font-size: 14px;
}

.fc-filter-list a:hover,
.fc-filter-list .active a {
  border-color: var(--fc-accent);
  color: var(--fc-accent-strong);
}

.fc-project-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 48px 28px;
  counter-reset: fc-project;
}

.fc-project-card {
  position: relative;
  min-width: 0;
  counter-increment: fc-project;
}

.fc-project-card__media {
  position: relative;
  overflow: hidden;
  background: var(--fc-surface-strong);
}

.fc-project-card:nth-child(4n + 1) .fc-project-card__media,
.fc-project-card:nth-child(4n + 4) .fc-project-card__media {
  aspect-ratio: 4 / 5;
}

.fc-project-card:nth-child(4n + 2) .fc-project-card__media,
.fc-project-card:nth-child(4n + 3) .fc-project-card__media {
  aspect-ratio: 5 / 4;
}

.fc-project-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.fc-project-card:hover .fc-project-card__media img {
  transform: scale(1.035);
}

.fc-project-card__meta {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: start;
  padding-top: 20px;
}

.fc-project-card h3,
.fc-project-card p {
  margin-bottom: 0;
}

.fc-project-card h3 {
  font-size: 28px;
}

.fc-project-card p {
  margin-top: 8px;
  font-size: 14px;
}

.fc-project-card__index {
  color: var(--fc-accent-strong);
  font-family: "Oswald", sans-serif;
  font-size: 16px;
}

.fc-project-card__index::before {
  content: "P.0" counter(fc-project);
}

.fc-concept-label {
  position: absolute;
  top: 16px;
  left: 16px;
  z-index: 2;
  padding: 7px 10px;
  background: rgba(17, 17, 15, 0.82);
  color: #fff;
  font-size: 11px;
  font-weight: 500;
  text-transform: uppercase;
}

/* Process */
.fc-process-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-top: 1px solid var(--fc-line);
  border-left: 1px solid var(--fc-line);
}

.fc-process-step {
  min-height: 290px;
  padding: 36px 28px;
  border-right: 1px solid var(--fc-line);
  border-bottom: 1px solid var(--fc-line);
}

.fc-process-step__number {
  display: block;
  margin-bottom: 56px;
  color: var(--fc-accent-strong);
  font-family: "Oswald", sans-serif;
  font-size: 20px;
}

.fc-process-step h3 {
  margin-bottom: 16px;
  font-size: 24px;
}

.fc-process-step p {
  margin-bottom: 0;
  font-size: 15px;
}

/* Journal and CTA */
.fc-journal-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 28px;
}

.fc-journal-card {
  min-width: 0;
}

.fc-journal-card__media {
  display: block;
  overflow: hidden;
  aspect-ratio: 4 / 5;
  background: var(--fc-surface-strong);
}

.fc-journal-card__media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 360ms ease;
}

.fc-journal-card:hover img {
  transform: scale(1.035);
}

.fc-journal-card__body {
  padding-top: 22px;
}

.fc-journal-card h3 {
  margin-bottom: 12px;
  font-size: 25px;
}

.fc-journal-card p {
  margin-bottom: 0;
  font-size: 14px;
}

.fc-cta {
  position: relative;
  min-height: 500px;
  display: flex;
  align-items: center;
  background-position: center;
  background-size: cover;
}

.fc-cta::before {
  position: absolute;
  inset: 0;
  background: rgba(11, 11, 10, 0.66);
  content: "";
}

.fc-cta__content {
  position: relative;
  z-index: 1;
  max-width: 780px;
}

.fc-cta h2 {
  color: #fff;
  font-size: 54px;
}

.fc-cta p {
  max-width: 600px;
  color: #e4dfd6;
}

/* Inner page */
.fc-page-hero {
  position: relative;
  display: flex;
  height: 56dvh;
  min-height: 480px;
  max-height: 640px;
  align-items: flex-end;
  overflow: hidden;
  background-position: center;
  background-size: cover;
}

.fc-page-hero::before {
  position: absolute;
  inset: 0;
  background: rgba(9, 9, 8, 0.58);
  content: "";
}

.fc-page-hero__content {
  position: relative;
  z-index: 1;
  padding-bottom: 72px;
}

.fc-page-hero h1 {
  max-width: 900px;
  margin-bottom: 16px;
  color: #fff;
  font-size: 64px;
}

.fc-breadcrumbs {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  align-items: center;
  color: #ddd8cf;
  font-size: 14px;
}

.fc-breadcrumbs span[aria-hidden="true"] {
  color: var(--fc-accent-strong);
}

.fc-content-grid {
  display: grid;
  grid-template-columns: minmax(0, 8fr) minmax(260px, 3fr);
  gap: 72px;
}

.fc-sidebar {
  align-self: start;
  padding-left: 28px;
  border-left: 1px solid var(--fc-line);
}

.fc-sidebar h2 {
  font-size: 24px;
}

.fc-sidebar ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fc-sidebar li + li {
  border-top: 1px solid var(--fc-line);
}

.fc-sidebar a {
  display: flex;
  min-height: 48px;
  align-items: center;
  color: var(--fc-muted);
}

.fc-sidebar .active a,
.fc-sidebar a:hover {
  color: var(--fc-accent-strong);
}

.fc-richtext {
  min-width: 0;
}

.fc-richtext > :first-child {
  margin-top: 0;
}

.fc-richtext h2 {
  margin-top: 52px;
  font-size: 38px;
}

.fc-richtext h3 {
  margin-top: 40px;
}

.fc-richtext p,
.fc-richtext li {
  color: var(--fc-muted);
}

.fc-richtext img {
  width: auto;
  max-width: 100%;
  margin: 32px 0;
}

.fc-richtext table {
  width: 100%;
  margin: 32px 0;
  border-collapse: collapse;
}

.fc-richtext th,
.fc-richtext td {
  padding: 14px;
  border: 1px solid var(--fc-line);
  text-align: left;
}

/* Project detail */
.fc-project-detail {
  display: grid;
  grid-template-columns: minmax(0, 7fr) minmax(300px, 4fr);
  gap: 64px;
  align-items: start;
}

.fc-project-main-image {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
  background: var(--fc-surface-strong);
}

.fc-project-thumbs {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
  margin-top: 12px;
}

.fc-project-thumb {
  min-width: 0;
  padding: 0;
  border: 1px solid transparent;
  background: transparent;
  cursor: pointer;
}

.fc-project-thumb.is-active {
  border-color: var(--fc-accent);
}

.fc-project-thumb img {
  width: 100%;
  aspect-ratio: 1;
  object-fit: cover;
}

.fc-project-summary {
  position: sticky;
  top: 112px;
}

.fc-project-summary h1 {
  font-size: 52px;
}

.fc-project-facts {
  padding: 0;
  margin: 34px 0;
  border-top: 1px solid var(--fc-line);
  list-style: none;
}

.fc-project-facts li {
  display: grid;
  min-height: 52px;
  grid-template-columns: 110px 1fr;
  gap: 16px;
  align-items: center;
  border-bottom: 1px solid var(--fc-line);
  color: var(--fc-muted);
  font-size: 14px;
}

.fc-project-facts strong {
  color: var(--fc-text);
  font-weight: 500;
}

/* Forms */
.fc-form {
  display: grid;
  gap: 20px;
}

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

.fc-field {
  min-width: 0;
}

.fc-field--full {
  grid-column: 1 / -1;
}

.fc-field label {
  display: block;
  margin-bottom: 8px;
  color: var(--fc-text);
  font-size: 14px;
  font-weight: 500;
}

.fc-field input,
.fc-field textarea,
.fc-field select {
  width: 100%;
  min-height: 52px;
  padding: 13px 15px;
  border: 1px solid var(--fc-line-strong);
  border-radius: var(--fc-radius);
  outline: 0;
  background: var(--fc-surface);
  color: var(--fc-text);
  transition: border-color var(--fc-ease), background-color var(--fc-ease);
}

.fc-field textarea {
  min-height: 150px;
  resize: vertical;
}

.fc-field input::placeholder,
.fc-field textarea::placeholder {
  color: #8f8c86;
}

.fc-field input:focus,
.fc-field textarea:focus,
.fc-field select:focus {
  border-color: var(--fc-accent);
  background: var(--fc-surface-strong);
}

.fc-form-note {
  font-size: 13px;
}

.fc-form .fc-button {
  justify-self: start;
}

.fc-contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 4fr) minmax(0, 7fr);
  gap: 80px;
}

.fc-contact-intro h2 {
  font-size: 44px;
}

.fc-contact-list {
  padding: 0;
  margin: 40px 0 0;
  border-top: 1px solid var(--fc-line);
  list-style: none;
}

.fc-contact-list li {
  padding: 18px 0;
  border-bottom: 1px solid var(--fc-line);
  color: var(--fc-muted);
}

/* FAQ */
.fc-faq-list {
  border-top: 1px solid var(--fc-line);
}

.fc-faq-item {
  border-bottom: 1px solid var(--fc-line);
}

.fc-faq-item summary {
  position: relative;
  min-height: 76px;
  display: flex;
  align-items: center;
  padding: 18px 56px 18px 0;
  color: var(--fc-text);
  cursor: pointer;
  font-family: "Oswald", sans-serif;
  font-size: 23px;
  list-style: none;
}

.fc-faq-item summary::-webkit-details-marker {
  display: none;
}

.fc-faq-item summary::after {
  position: absolute;
  right: 12px;
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--fc-line);
  font-family: "Barlow", sans-serif;
  font-size: 22px;
  content: "+";
}

.fc-faq-item[open] summary::after {
  content: "\2212";
}

.fc-faq-item__content {
  max-width: 820px;
  padding: 0 56px 22px 0;
}

/* Pagination and empty state */
.fc-pagination {
  margin-top: 64px;
}

.fc-pagination ul,
.fc-pagination {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding-left: 0;
  list-style: none;
}

.fc-pagination a,
.fc-pagination span {
  display: inline-flex;
  min-width: 44px;
  min-height: 44px;
  align-items: center;
  justify-content: center;
  padding: 8px 13px;
  border: 1px solid var(--fc-line);
}

.fc-pagination .active span,
.fc-pagination a:hover {
  border-color: var(--fc-accent);
  background: var(--fc-accent);
  color: var(--fc-text-dark);
}

.fc-empty {
  padding: 48px 0;
  border-top: 1px solid var(--fc-line);
  border-bottom: 1px solid var(--fc-line);
}

/* Footer */
.fc-footer {
  padding: 88px 0 28px;
  border-top: 1px solid var(--fc-line);
  background: #0c0c0b;
}

.fc-footer__top {
  display: grid;
  grid-template-columns: minmax(280px, 1.5fr) repeat(2, minmax(180px, 1fr));
  gap: 64px;
  padding-bottom: 64px;
}

.fc-footer__brand p {
  max-width: 430px;
  margin-top: 24px;
}

.fc-footer h2 {
  margin-bottom: 22px;
  font-size: 21px;
}

.fc-footer ul {
  padding: 0;
  margin: 0;
  list-style: none;
}

.fc-footer li + li {
  margin-top: 10px;
}

.fc-footer li a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  color: var(--fc-muted);
}

.fc-footer__bottom {
  display: flex;
  min-height: 60px;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--fc-line);
}

.fc-footer__bottom p {
  margin: 0;
  font-size: 13px;
}

.fc-back-to-top {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 30;
  visibility: hidden;
  opacity: 0;
  transform: translateY(10px);
}

.fc-back-to-top.is-visible {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

/* Reveal motion */
.fc-reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 360ms ease, transform 360ms ease;
}

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

@media (max-width: 1180px) {
  .fc-header__inner {
    grid-template-columns: 210px minmax(0, 1fr) 150px;
    gap: 18px;
  }

  .fc-nav > ul {
    gap: 20px;
  }

  .fc-nav > ul > li > a {
    font-size: 13px;
  }

  .fc-hero__copy h1 {
    font-size: 64px;
  }

  .fc-about-grid,
  .fc-contact-layout {
    gap: 56px;
  }
}

@media (max-width: 1024px) {
  h1 {
    font-size: 56px;
  }

  h2 {
    font-size: 42px;
  }

  .fc-container {
    width: calc(100% - 48px);
  }

  .fc-section {
    padding: 88px 0;
  }

  .fc-header__inner {
    grid-template-columns: minmax(0, 1fr) 48px;
  }

  .fc-nav,
  .fc-header__cta {
    display: none;
  }

  .fc-menu-toggle {
    display: inline-flex;
    justify-self: end;
  }

  .fc-nav.is-open {
    position: fixed;
    inset: 0;
    z-index: var(--fc-z-menu);
    display: block;
    width: 100vw;
    justify-self: stretch;
    overflow-y: auto;
    padding: 116px 24px 40px;
    background: rgba(12, 12, 11, 0.99);
  }

  .fc-nav.is-open > ul {
    display: block;
    max-width: 680px;
    margin: 0 auto;
  }

  .fc-nav.is-open > ul > li {
    border-bottom: 1px solid var(--fc-line);
  }

  .fc-nav.is-open > ul > li > a {
    width: 100%;
    min-height: 58px;
    justify-content: space-between;
    font-family: "Oswald", sans-serif;
    font-size: 25px;
  }

  .fc-nav.is-open .fc-subnav {
    position: static;
    width: 100%;
    padding: 0 0 14px 16px;
    visibility: visible;
    opacity: 1;
    border: 0;
    background: transparent;
    transform: none;
  }

  .fc-hero {
    min-height: 640px;
  }

  .fc-hero__copy h1 {
    font-size: 56px;
  }

  .fc-section-heading {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 48px;
  }

  .fc-section-heading p {
    justify-self: start;
  }

  .fc-about-grid {
    grid-template-columns: minmax(0, 5fr) minmax(0, 6fr);
    gap: 40px;
  }

  .fc-service-row {
    grid-template-columns: 54px minmax(200px, 1fr) minmax(240px, 1.2fr) 48px;
    gap: 18px;
  }

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

  .fc-content-grid,
  .fc-project-detail {
    grid-template-columns: 1fr;
  }

  .fc-sidebar {
    padding: 28px 0 0;
    border-top: 1px solid var(--fc-line);
    border-left: 0;
  }

  .fc-project-summary {
    position: static;
  }

  .fc-contact-layout {
    grid-template-columns: minmax(0, 4fr) minmax(0, 6fr);
    gap: 44px;
  }
}

@media (max-width: 768px) {
  body {
    font-size: 16px;
  }

  h1 {
    font-size: 44px;
  }

  h2 {
    font-size: 36px;
  }

  h3 {
    font-size: 25px;
  }

  .fc-container {
    width: calc(100% - 32px);
  }

  .fc-section,
  .fc-section--compact {
    padding: 72px 0;
  }

  .fc-brand__name {
    font-size: 20px;
  }

  .fc-hero {
    height: 82dvh;
    min-height: 600px;
    max-height: 740px;
  }

  .fc-hero__content {
    padding-bottom: 112px;
  }

  .fc-hero__copy {
    width: 100%;
  }

  .fc-hero__copy h1 {
    font-size: 44px;
  }

  .fc-hero__copy p {
    max-width: 520px;
    font-size: 16px;
  }

  .fc-hero__meta {
    right: 16px;
    bottom: 24px;
  }

  .fc-hero__dots {
    left: 16px;
    bottom: 20px;
  }

  .fc-hero__dot {
    width: 34px;
  }

  .fc-about-grid,
  .fc-contact-layout {
    grid-template-columns: 1fr;
  }

  .fc-about-media {
    max-width: 560px;
  }

  .fc-about-media__note {
    right: 12px;
  }

  .fc-service-row {
    min-height: 0;
    grid-template-columns: 46px minmax(0, 1fr) 48px;
    gap: 14px;
    padding: 24px 0;
  }

  .fc-service-row p {
    grid-column: 2 / -1;
    grid-row: 2;
  }

  .fc-service-row__link {
    grid-column: 3;
    grid-row: 1;
  }

  .fc-project-grid,
  .fc-journal-grid {
    grid-template-columns: 1fr;
  }

  .fc-project-card:nth-child(n) .fc-project-card__media {
    aspect-ratio: 4 / 3;
  }

  .fc-journal-card__media {
    aspect-ratio: 4 / 3;
  }

  .fc-page-hero {
    height: 48dvh;
    min-height: 420px;
  }

  .fc-page-hero__content {
    padding-bottom: 48px;
  }

  .fc-page-hero h1,
  .fc-project-summary h1,
  .fc-cta h2 {
    font-size: 42px;
  }

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

  .fc-footer__top {
    grid-template-columns: 1fr 1fr;
  }

  .fc-footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 480px) {
  .fc-header,
  .fc-header.is-scrolled {
    height: 72px;
  }

  .fc-brand__monogram {
    width: 40px;
    height: 40px;
  }

  .fc-brand__name small {
    display: none;
  }

  .fc-hero__copy h1 {
    font-size: 40px;
  }

  .fc-hero__copy p {
    margin-bottom: 24px;
  }

  .fc-hero__count {
    display: none;
  }

  .fc-process-grid,
  .fc-footer__top {
    grid-template-columns: 1fr;
  }

  .fc-process-step {
    min-height: 0;
  }

  .fc-process-step__number {
    margin-bottom: 32px;
  }

  .fc-project-card__meta {
    grid-template-columns: 1fr;
  }

  .fc-project-card__index {
    grid-row: 1;
  }

  .fc-page-hero h1,
  .fc-project-summary h1,
  .fc-cta h2 {
    font-size: 36px;
  }

  .fc-project-thumbs {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }

  .fc-footer__brand {
    grid-column: auto;
  }

  .fc-footer__bottom {
    align-items: flex-start;
    flex-direction: column;
    padding-top: 24px;
  }

  .fc-back-to-top {
    right: 16px;
    bottom: 92px;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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