:root {
  --ink: #111111;
  --muted: #626262;
  --line: #d8d8d8;
  --paper: #f5f5f2;
  --white: #ffffff;
  --black: #000000;
  --charcoal: #1d1d1d;
  --soft: #ededeb;
  --red: #b31b24;
  --red-dark: #861019;
  --shadow: 0 22px 70px rgba(0, 0, 0, 0.09);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Helvetica, "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

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

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

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

p {
  margin-bottom: 0.75rem;
}

h1,
h2 {
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 700;
  letter-spacing: 0;
}

h1 {
  max-width: 980px;
  margin-bottom: 26px;
  font-size: 4.85rem;
  line-height: 0.94;
}

.hero h1 {
  margin-right: 0;
  margin-left: 0;
}

h2 {
  margin-bottom: 0;
  font-size: 3.45rem;
  line-height: 0.98;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.05rem;
  letter-spacing: 0;
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  gap: clamp(22px, 4vw, 54px);
  align-items: center;
  min-height: 92px;
  padding: 18px clamp(18px, 6vw, 82px);
  color: var(--white);
  background: transparent;
  border-bottom: 1px solid transparent;
  transition: background 180ms ease, border-color 180ms ease, backdrop-filter 180ms ease;
}

.site-header.is-solid {
  background: rgba(17, 17, 17, 0.92);
  border-color: rgba(255, 255, 255, 0.14);
  -webkit-backdrop-filter: saturate(140%) blur(18px);
  backdrop-filter: saturate(140%) blur(18px);
}

.brand img {
  width: 156px;
  height: auto;
  filter: brightness(0) invert(1);
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px clamp(18px, 3vw, 42px);
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.main-nav a,
.button,
.header-action {
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.main-nav a:hover {
  color: var(--white);
}

.main-nav a {
  position: relative;
  padding: 10px 0;
}

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

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

.header-action {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 56px;
  padding: 0 28px;
  border: 2px solid rgba(255, 255, 255, 0.9);
  border-radius: 4px;
  color: var(--white);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.header-action:hover {
  color: var(--ink);
  background: var(--white);
}

.hero {
  position: relative;
  display: grid;
  align-items: center;
  min-height: 100vh;
  overflow: hidden;
  background: var(--charcoal);
}

.hero-media {
  position: absolute;
  inset: 0;
}

.hero-slide {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0;
  transition: opacity 320ms ease;
}

.hero-slide.is-active {
  opacity: 1;
}

.hero-slide-photo {
  transform: translateY(-7%) scale(1.04);
  transform-origin: center center;
}

.hero-media::after {
  position: absolute;
  inset: 0;
  content: "";
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.86), rgba(0, 0, 0, 0.56) 47%, rgba(0, 0, 0, 0.22)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.12), rgba(0, 0, 0, 0.3));
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(1180px, calc(100% - 36px));
  margin: clamp(88px, 12vh, 132px) auto clamp(46px, 8vh, 86px);
  color: var(--white);
  text-align: left;
}

section[id],
.contact-section[id] {
  scroll-margin-top: 120px;
}

.eyebrow,
.section-label {
  margin: 0 0 18px;
  color: var(--red);
  font-size: 0.7rem;
  font-weight: 900;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.hero .eyebrow {
  color: rgba(255, 255, 255, 0.86);
}

.hero-copy {
  max-width: 720px;
  margin-right: 0;
  margin-bottom: 32px;
  margin-left: 0;
  color: rgba(255, 255, 255, 0.86);
  font-size: 1.05rem;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
  gap: 12px;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-size: 0.86rem;
  font-weight: 900;
  cursor: pointer;
}

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

.button-primary {
  color: var(--white);
  background: var(--red);
  border-color: var(--red);
}

.button-primary:hover {
  background: var(--red-dark);
  border-color: var(--red-dark);
}

.button-secondary {
  color: var(--white);
  border-color: rgba(255, 255, 255, 0.74);
  background: rgba(255, 255, 255, 0.04);
}

.button-secondary:hover {
  background: rgba(255, 255, 255, 0.16);
}

.button-link {
  color: var(--white);
  border-color: transparent;
  background: transparent;
  padding-right: 0;
  padding-left: 0;
}

.button-link::after {
  content: ">";
  margin-left: 10px;
  color: var(--red);
}

.button-ghost {
  color: var(--ink);
  border-color: var(--ink);
  background: transparent;
}

.button-ghost:hover {
  color: var(--white);
  background: var(--ink);
}

.section {
  padding: clamp(64px, 8vw, 118px) clamp(18px, 5vw, 76px);
}

.section > .section-label {
  max-width: 1240px;
  margin: 0 auto 18px;
}

.proof-band {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.proof-band article {
  min-height: 142px;
  padding: clamp(22px, 3.4vw, 38px);
  border-right: 1px solid var(--line);
}

.proof-band article:last-child {
  border-right: 0;
}

.proof-band span,
.service-card span,
.method-grid span {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.proof-band p {
  max-width: 240px;
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 1.35rem;
  line-height: 1.1;
}

.intro,
.services,
.quality {
  background: var(--paper);
}

.editorial-statement,
.split-heading,
.method-header,
.quality-panel {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(300px, 0.72fr);
  gap: clamp(28px, 6vw, 88px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}

.editorial-statement p,
.split-heading p,
.method-header p,
.quality-panel p,
.contact-info p {
  color: var(--muted);
  font-size: 1rem;
}

.mission-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: clamp(44px, 6vw, 72px) auto 0;
  background: var(--line);
}

.mission-grid article {
  min-height: 218px;
  padding: clamp(28px, 4vw, 42px);
  background: var(--white);
}

.mission-grid span,
.project-card p {
  display: block;
  margin-bottom: 18px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-grid p {
  max-width: 540px;
  color: var(--muted);
  font-size: 1rem;
}

.values-list {
  display: grid;
  gap: 8px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 1rem;
}

.values-list li::marker {
  color: var(--red);
}

.method {
  background: var(--charcoal);
  color: var(--white);
}

.method .section-label {
  color: rgba(255, 255, 255, 0.72);
}

.method-header p {
  color: rgba(255, 255, 255, 0.74);
}

.method-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: clamp(42px, 6vw, 74px) auto 0;
  background: rgba(255, 255, 255, 0.18);
}

.method-grid article {
  overflow: hidden;
  background: var(--charcoal);
}

.method-grid img {
  width: 100%;
  height: 315px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.method-grid article:hover img,
.service-card:hover img,
.project-card:hover img,
.project-card:hover video {
  transform: scale(1.045);
  filter: saturate(1.08) contrast(1.03);
}

.method-grid div {
  padding: clamp(24px, 4vw, 38px);
}

.method-grid p {
  margin-bottom: 0;
  color: rgba(255, 255, 255, 0.72);
  font-size: 0.94rem;
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1px;
  max-width: 1240px;
  margin: clamp(42px, 6vw, 74px) auto 0;
  background: var(--line);
}

.service-card {
  overflow: hidden;
  min-height: 100%;
  background: var(--white);
}

.service-card img {
  width: 100%;
  height: 205px;
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.service-card div {
  padding: clamp(24px, 3vw, 34px);
}

.service-card ul {
  display: grid;
  gap: 8px;
  margin: 18px 0 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.9rem;
}

.service-card li::marker {
  color: var(--red);
}

.gastronomy-policy {
  display: grid;
  grid-template-columns: minmax(260px, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(24px, 5vw, 72px);
  max-width: 1240px;
  margin: 1px auto 0;
  padding: clamp(28px, 5vw, 48px);
  background: var(--white);
  border-top: 1px solid var(--line);
}

.gastronomy-policy span {
  display: block;
  margin-bottom: 16px;
  color: var(--red);
  font-size: 0.72rem;
  font-weight: 900;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.gastronomy-policy h3 {
  margin-bottom: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.7rem, 3vw, 2.4rem);
  line-height: 1.05;
}

.gastronomy-policy ul {
  display: grid;
  gap: 10px;
  margin: 0;
  padding-left: 18px;
  color: var(--muted);
  font-size: 0.95rem;
}

.gastronomy-policy li::marker {
  color: var(--red);
}

.projects {
  padding-top: clamp(38px, 4.8vw, 60px);
  padding-right: 0;
  padding-bottom: clamp(38px, 4.8vw, 60px);
  padding-left: 0;
  background: var(--white);
  overflow: hidden;
}

.projects > .section-label,
.projects > .split-heading {
  width: min(1240px, calc(100% - 36px));
}

.project-carousel-shell {
  position: relative;
  margin-top: clamp(22px, 3vw, 34px);
}

.project-carousel {
  display: flex;
  gap: clamp(18px, 2vw, 28px);
  overflow-x: auto;
  overscroll-behavior-x: contain;
  scroll-padding-left: max(18px, calc((100vw - 1240px) / 2));
  scroll-snap-type: x mandatory;
  padding: 0 max(18px, calc((100vw - 1240px) / 2)) 18px;
  scrollbar-width: none;
}

.project-carousel::-webkit-scrollbar {
  display: none;
}

.project-card {
  display: grid;
  grid-template-rows: auto 1fr;
  flex: 0 0 clamp(680px, 72vw, 900px);
  overflow: hidden;
  scroll-snap-align: start;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 8px;
}

.project-card-featured {
  flex-basis: clamp(680px, 72vw, 900px);
}

.project-card img,
.project-card video,
.project-card .media-placeholder {
  width: 100%;
  height: clamp(250px, 24vw, 340px);
  object-fit: cover;
  transition: transform 420ms ease, filter 420ms ease;
}

.project-card-featured img,
.project-card-featured video {
  height: clamp(250px, 24vw, 340px);
}

.project-card-copy {
  display: grid;
  align-content: start;
  min-height: 150px;
  padding: clamp(20px, 2.4vw, 30px);
}

.project-card h3 {
  font-family: Georgia, "Times New Roman", serif;
  font-size: clamp(1.42rem, 2.1vw, 2.05rem);
  line-height: 1.1;
}

.project-card span {
  display: block;
  max-width: 660px;
  color: var(--muted);
  font-size: clamp(0.94rem, 1.08vw, 1.04rem);
  line-height: 1.42;
}

.project-controls {
  display: flex;
  justify-content: flex-end;
  gap: 10px;
  max-width: 1240px;
  margin: 12px auto 0;
  padding: 0 clamp(18px, 5vw, 76px);
}

.project-controls button {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line);
  border-radius: 50%;
  color: var(--ink);
  background: var(--paper);
  font: inherit;
  font-size: 1.15rem;
  font-weight: 900;
  cursor: pointer;
  transition: color 180ms ease, background 180ms ease, border-color 180ms ease, transform 180ms ease;
}

.project-controls button:hover {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
  transform: translateY(-1px);
}

.media-placeholder {
  display: grid;
  place-items: center;
  padding: 28px;
  color: rgba(255, 255, 255, 0.78);
  background:
    linear-gradient(135deg, rgba(179, 27, 36, 0.22), rgba(0, 0, 0, 0.08)),
    #2b2b2b;
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.1em;
  text-align: center;
  text-transform: uppercase;
}

.media-placeholder-video {
  background:
    linear-gradient(135deg, rgba(179, 27, 36, 0.18), rgba(255, 255, 255, 0.08)),
    #181818;
}

.quality-panel {
  padding: clamp(28px, 5vw, 54px) 0;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(280px, 0.92fr) minmax(360px, 1fr);
  gap: clamp(34px, 7vw, 96px);
  align-items: start;
  max-width: 1240px;
  margin: 0 auto;
  padding: clamp(66px, 9vw, 122px) clamp(18px, 5vw, 76px);
  background: var(--white);
  box-shadow: 0 0 0 100vmax var(--white);
  clip-path: inset(0 -100vmax);
}

.contact-info {
  position: sticky;
  top: 112px;
}

.contact-info h2 {
  max-width: 620px;
  margin-bottom: 24px;
}

.contact-info p {
  max-width: 560px;
}

.contact-actions {
  margin: 32px 0 28px;
}

.contact-list {
  display: grid;
  gap: 10px;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-list a {
  width: fit-content;
  border-bottom: 1px solid var(--ink);
}

.contact-form {
  display: grid;
  gap: 20px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
}

.intent-group {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  border: 0;
}

.intent-group legend {
  grid-column: 1 / -1;
  margin-bottom: 2px;
  color: var(--muted);
  font-size: 0.76rem;
  font-weight: 900;
}

.intent-group label {
  position: relative;
  min-height: 50px;
}

.intent-group input {
  position: absolute;
  opacity: 0;
}

.intent-group span {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  font-size: 0.78rem;
  font-weight: 900;
  line-height: 1.2;
  text-align: center;
}

.intent-group input:checked + span {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

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

.contact-form label {
  display: grid;
  gap: 8px;
  color: var(--ink);
  font-size: 0.82rem;
  font-weight: 900;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  background: var(--white);
  color: var(--ink);
  font: inherit;
  font-weight: 500;
}

.contact-form input {
  min-height: 48px;
  padding: 0 14px;
}

.contact-form textarea {
  min-height: 150px;
  padding: 13px 14px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(179, 27, 36, 0.24);
  border-color: var(--red);
}

.file-field input {
  padding: 12px;
}

.form-button {
  min-height: 54px;
  width: 100%;
}

.form-note {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 0.86rem;
  text-align: center;
}

.site-footer {
  display: flex;
  flex-wrap: wrap;
  gap: clamp(18px, 4vw, 42px);
  align-items: center;
  padding: 18px clamp(18px, 5vw, 76px);
  border-top: 1px solid var(--line);
  color: #767676;
  background: var(--paper);
  font-size: 0.72rem;
}

.site-footer img {
  flex: 0 0 auto;
  width: 126px;
}

.site-footer p {
  flex: 1 1 520px;
  margin-bottom: 0;
}

@media (max-width: 1080px) {
  h1 {
    font-size: 3.75rem;
  }

  h2 {
    font-size: 2.55rem;
  }

  .site-header {
    grid-template-columns: minmax(130px, 160px) 1fr;
  }

  .header-action {
    grid-column: 2;
    justify-self: end;
  }

  .main-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    justify-content: flex-end;
  }

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

  .project-card {
    flex-basis: min(86vw, 720px);
  }

  .project-card-featured {
    flex-basis: min(86vw, 720px);
  }

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

  .editorial-statement,
  .split-heading,
  .method-header,
  .quality-panel,
  .gastronomy-policy,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .contact-info {
    position: static;
  }
}

@media (max-width: 680px) {
  h1 {
    font-size: 2.75rem;
    line-height: 0.98;
  }

  h2 {
    font-size: 2.05rem;
    line-height: 1.02;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    gap: 12px;
    min-height: auto;
    padding: 12px 18px;
  }

  .brand img {
    width: 132px;
  }

  .main-nav {
    justify-content: flex-end;
    gap: 7px 8px;
    font-size: 0.56rem;
    letter-spacing: 0.06em;
  }

  .header-action {
    min-height: 38px;
    padding: 0 13px;
    font-size: 0.64rem;
  }

  .hero {
    min-height: 760px;
  }

  .hero-media::after {
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.68), rgba(0, 0, 0, 0.88));
  }

  .hero-content {
    width: calc(100% - 36px);
    margin: 112px 18px 42px;
  }

  .hero-actions,
  .contact-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .proof-band,
  .mission-grid,
  .service-grid,
  .gastronomy-policy,
  .form-grid,
  .intent-group {
    grid-template-columns: 1fr;
  }

  .proof-band article {
    min-height: 118px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .proof-band article:last-child {
    border-bottom: 0;
  }

  .project-carousel {
    gap: 14px;
    scroll-padding-left: 18px;
    padding: 0 18px 14px;
  }

  .project-card,
  .project-card-featured {
    flex-basis: calc(100vw - 36px);
  }

  .project-card-copy {
    min-height: auto;
    padding: 24px;
  }

  .project-controls {
    justify-content: center;
    padding: 0 18px;
  }

  .method-grid img,
  .service-card img,
  .project-card img,
  .project-card video,
  .project-card .media-placeholder {
    height: clamp(220px, 54vw, 310px);
  }

  .contact-form {
    padding: 20px;
  }

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