:root {
  --ink: #10110f;
  --paper: #f5f0e8;
  --paper-soft: #ede7dc;
  --white: #fffaf2;
  --sage: #596b56;
  --clay: #ad5949;
  --sky: #5b8aa8;
  --gold: #d5a247;
  --stone: #d4d0c7;
  --shadow: rgba(16, 17, 15, 0.28);
  --header-h: 76px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body.no-scroll {
  overflow: hidden;
}

.admin-bar .site-header {
  top: 32px;
}

@media (max-width: 782px) {
  .admin-bar .site-header {
    top: 46px;
  }
}

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

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

button,
input,
textarea {
  font: inherit;
}

.grain {
  position: fixed;
  inset: 0;
  z-index: 50;
  pointer-events: none;
  opacity: 0.1;
  background-image:
    linear-gradient(90deg, rgba(255, 255, 255, 0.08), rgba(0, 0, 0, 0.08)),
    radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px),
    radial-gradient(circle at 70% 60%, rgba(0, 0, 0, 0.12) 0 1px, transparent 1px);
  background-size: 100% 100%, 18px 18px, 23px 23px;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 40;
  height: var(--header-h);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  padding: 0 34px;
  color: var(--white);
  transition: background 220ms ease, color 220ms ease, box-shadow 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(245, 240, 232, 0.88);
  box-shadow: 0 14px 40px rgba(20, 20, 18, 0.08);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  align-items: baseline;
  gap: 10px;
  min-width: max-content;
}

.brand span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
}

.brand small {
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  font-size: 14px;
}

.site-nav a,
.header-cta {
  position: relative;
}

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

.site-nav a:hover::after,
.header-cta:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

.header-cta {
  min-width: 92px;
  text-align: right;
  font-size: 14px;
}

.header-actions {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 14px;
  min-width: max-content;
}

.language-switch {
  display: inline-grid;
  grid-template-columns: repeat(2, 34px);
  align-items: center;
  height: 32px;
  padding: 2px;
  border: 1px solid currentColor;
  border-radius: 999px;
}

.language-switch button {
  width: 30px;
  height: 26px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  color: inherit;
  background: transparent;
  cursor: pointer;
  font-size: 12px;
  line-height: 1;
}

.language-switch button.is-active {
  color: var(--ink);
  background: var(--white);
}

.site-header.is-scrolled .language-switch button.is-active {
  color: var(--white);
  background: var(--ink);
}

.hero {
  position: relative;
  min-height: 88svh;
  display: grid;
  grid-template-columns: minmax(0, 1fr);
  align-items: end;
  overflow: hidden;
  color: var(--white);
  padding: calc(var(--header-h) + 50px) 34px 42px;
}

.hero-bg,
.hero-bg img,
.hero-shade {
  position: absolute;
  inset: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-shade {
  z-index: 1;
  background:
    linear-gradient(90deg, rgba(14, 14, 12, 0.88) 0%, rgba(14, 14, 12, 0.47) 38%, rgba(14, 14, 12, 0.1) 100%),
    linear-gradient(0deg, rgba(14, 14, 12, 0.7) 0%, rgba(14, 14, 12, 0) 42%);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(720px, 100%);
}

.eyebrow,
.section-kicker {
  margin: 0 0 16px;
  font-size: 13px;
  line-height: 1.4;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 128px;
  line-height: 0.86;
}

.hero-copy {
  width: min(620px, 100%);
  margin: 28px 0 0;
  font-size: 22px;
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 0 22px;
  border: 1px solid currentColor;
  border-radius: 999px;
  cursor: pointer;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

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

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

.button-ghost:hover {
  background: rgba(255, 250, 242, 0.16);
}

.hero-panel {
  position: absolute;
  z-index: 3;
  right: 34px;
  bottom: 42px;
  width: 320px;
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 16px;
  align-items: center;
  padding: 12px;
  color: var(--white);
  background: rgba(16, 17, 15, 0.42);
  border: 1px solid rgba(255, 250, 242, 0.2);
  border-radius: 8px;
  backdrop-filter: blur(16px);
}

.hero-panel img {
  width: 96px;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 6px;
}

.hero-panel strong,
.hero-panel span {
  display: block;
}

.hero-panel strong {
  font-size: 15px;
  margin-bottom: 8px;
}

.hero-panel span {
  color: rgba(255, 250, 242, 0.78);
  font-size: 13px;
  line-height: 1.45;
}

.ticker {
  overflow: hidden;
  background: var(--ink);
  color: var(--white);
  border-top: 1px solid rgba(255, 250, 242, 0.18);
  border-bottom: 1px solid rgba(255, 250, 242, 0.18);
}

.ticker-track {
  width: max-content;
  display: flex;
  gap: 42px;
  padding: 18px 0;
  animation: ticker 34s linear infinite;
}

.ticker span {
  font-family: Georgia, "Times New Roman", serif;
  font-size: 28px;
  white-space: nowrap;
}

@keyframes ticker {
  from {
    transform: translateX(0);
  }
  to {
    transform: translateX(-50%);
  }
}

.section-pad {
  padding: 110px 34px;
}

.intro,
.portfolio,
.editorial,
.experiences {
  max-width: 1240px;
  margin: 0 auto;
}

.intro {
  display: grid;
  grid-template-columns: minmax(320px, 0.9fr) minmax(320px, 1fr);
  gap: 86px;
  align-items: start;
}

.section-copy h2,
.section-heading h2,
.feature-text h2,
.editorial-copy h2,
.contact-content h2 {
  margin: 0;
  font-family: Georgia, "Times New Roman", serif;
  font-weight: 400;
  font-size: 64px;
  line-height: 1.02;
}

.intro-text {
  display: grid;
  gap: 22px;
  font-size: 20px;
  line-height: 1.65;
}

.intro-text p {
  margin: 0;
}

.feature-band {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, 0.8fr);
  min-height: 640px;
  background: var(--ink);
  color: var(--white);
}

.feature-image {
  min-height: 640px;
}

.feature-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.feature-text {
  align-self: center;
  padding: 70px;
}

.feature-text h2 {
  font-size: 60px;
}

.feature-text p:last-child,
.section-heading p,
.editorial-copy p:last-child,
.contact-content > p {
  font-size: 18px;
  line-height: 1.7;
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(320px, 0.6fr);
  gap: 60px;
  align-items: end;
  margin-bottom: 46px;
}

.section-heading p:last-child {
  margin: 0;
}

.gallery {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: 250px;
  gap: 14px;
}

.photo-tile {
  position: relative;
  display: block;
  overflow: hidden;
  padding: 0;
  border: 0;
  border-radius: 8px;
  background: var(--stone);
  color: var(--white);
  cursor: zoom-in;
}

.photo-tile img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 520ms ease, filter 520ms ease;
}

.photo-tile::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(16, 17, 15, 0.62), rgba(16, 17, 15, 0) 48%);
  opacity: 0.92;
}

.photo-tile span {
  position: absolute;
  z-index: 1;
  left: 18px;
  right: 18px;
  bottom: 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 25px;
  line-height: 1.12;
  text-align: left;
}

.photo-tile:hover img {
  transform: scale(1.06);
  filter: saturate(1.08) contrast(1.04);
}

.photo-tile.tall {
  grid-row: span 2;
}

.photo-tile.wide {
  grid-column: span 2;
}

.editorial {
  display: grid;
  grid-template-columns: minmax(300px, 0.7fr) minmax(0, 1fr);
  gap: 64px;
  align-items: center;
}

.editorial-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.1fr;
  grid-auto-rows: 260px;
  gap: 14px;
}

.editorial-grid figure {
  position: relative;
  min-height: 0;
  margin: 0;
  overflow: hidden;
  border-radius: 8px;
  background: var(--stone);
}

.editorial-grid figure:first-child {
  grid-row: span 2;
}

.editorial-grid img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.editorial-grid figcaption {
  position: absolute;
  left: 14px;
  bottom: 14px;
  padding: 7px 10px;
  color: var(--white);
  background: rgba(16, 17, 15, 0.52);
  border-radius: 999px;
  font-size: 13px;
  backdrop-filter: blur(14px);
}

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

.service-card {
  min-height: 310px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  background: var(--white);
  border: 1px solid rgba(16, 17, 15, 0.11);
  border-radius: 8px;
  box-shadow: 0 22px 70px rgba(16, 17, 15, 0.07);
}

.service-card span {
  color: var(--clay);
}

.service-card h3 {
  margin: auto 0 18px;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 35px;
  line-height: 1.06;
  font-weight: 400;
}

.service-card p {
  margin: 0;
  line-height: 1.6;
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 0.78fr);
  min-height: 760px;
  background: var(--sage);
  color: var(--white);
}

.contact-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.contact-content {
  align-self: center;
  padding: 70px;
}

.contact-form {
  display: grid;
  gap: 14px;
  margin-top: 32px;
}

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

.contact-form input,
.contact-form textarea {
  width: 100%;
  color: var(--white);
  background: rgba(255, 250, 242, 0.08);
  border: 1px solid rgba(255, 250, 242, 0.26);
  border-radius: 8px;
  padding: 14px 15px;
  outline: 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--white);
  box-shadow: 0 0 0 3px rgba(255, 250, 242, 0.14);
}

.contact-form .button {
  width: fit-content;
  margin-top: 8px;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  padding: 32px 34px;
  color: rgba(245, 240, 232, 0.78);
  background: var(--ink);
  font-size: 13px;
}

.site-footer p {
  margin: 0;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 80;
  display: grid;
  place-items: center;
  padding: 36px;
  background: rgba(16, 17, 15, 0.92);
  opacity: 0;
  pointer-events: none;
  transition: opacity 200ms ease;
}

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

.lightbox figure {
  width: min(1040px, 100%);
  max-height: 86svh;
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 78svh;
  object-fit: contain;
  border-radius: 8px;
  box-shadow: 0 30px 100px rgba(0, 0, 0, 0.45);
}

.lightbox figcaption {
  margin-top: 14px;
  color: var(--white);
  text-align: center;
  font-family: Georgia, "Times New Roman", serif;
  font-size: 24px;
}

.lightbox-close {
  position: absolute;
  top: 20px;
  right: 20px;
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 250, 242, 0.35);
  border-radius: 999px;
  color: var(--white);
  background: rgba(255, 250, 242, 0.08);
  cursor: pointer;
  font-size: 30px;
  line-height: 1;
}

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

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

@media (max-width: 1020px) {
  .site-header {
    grid-template-columns: auto auto;
    justify-content: space-between;
  }

  .site-nav {
    display: none;
  }

  .hero {
    min-height: 86svh;
  }

  .hero h1 {
    font-size: 94px;
  }

  .hero-copy {
    font-size: 20px;
  }

  .hero-panel {
    position: relative;
    right: auto;
    bottom: auto;
    width: min(420px, 100%);
    margin-top: 44px;
  }

  .intro,
  .feature-band,
  .editorial,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .section-copy h2,
  .section-heading h2,
  .feature-text h2,
  .editorial-copy h2,
  .contact-content h2 {
    font-size: 52px;
  }

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

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

  .service-list {
    grid-template-columns: 1fr;
  }

  .contact-image {
    min-height: 420px;
  }
}

@media (max-width: 680px) {
  :root {
    --header-h: 64px;
  }

  .site-header {
    padding: 0 18px;
  }

  .brand span {
    font-size: 24px;
  }

  .header-cta {
    min-width: 62px;
  }

  .header-actions {
    gap: 10px;
  }

  .language-switch {
    grid-template-columns: repeat(2, 30px);
    height: 30px;
  }

  .language-switch button {
    width: 26px;
    height: 24px;
    font-size: 11px;
  }

  .hero {
    min-height: 84svh;
    padding: calc(var(--header-h) + 34px) 18px 30px;
  }

  .hero h1 {
    font-size: 70px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .hero-actions {
    display: grid;
  }

  .button {
    width: 100%;
  }

  .hero-panel {
    grid-template-columns: 74px 1fr;
    gap: 12px;
    padding: 10px;
  }

  .hero-panel img {
    width: 74px;
  }

  .ticker span {
    font-size: 22px;
  }

  .section-pad {
    padding: 74px 18px;
  }

  .intro {
    gap: 30px;
  }

  .intro-text {
    font-size: 18px;
  }

  .section-copy h2,
  .section-heading h2,
  .feature-text h2,
  .editorial-copy h2,
  .contact-content h2 {
    font-size: 40px;
  }

  .feature-image {
    min-height: 420px;
  }

  .feature-text,
  .contact-content {
    padding: 52px 18px;
  }

  .gallery {
    grid-template-columns: 1fr;
    grid-auto-rows: 310px;
  }

  .photo-tile.tall,
  .photo-tile.wide {
    grid-column: auto;
    grid-row: auto;
  }

  .editorial-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: 290px;
  }

  .editorial-grid figure:first-child {
    grid-row: auto;
  }

  .service-card {
    min-height: 260px;
    padding: 24px;
  }

  .service-card h3 {
    font-size: 30px;
  }

  .site-footer {
    display: grid;
    padding: 28px 18px;
  }

  .lightbox {
    padding: 18px;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}
