:root {
  --ink: #183c35;
  --ink-deep: #0d2c27;
  --cream: #f4f0e7;
  --paper: #fbfaf6;
  --lime: #c8e764;
  --red: #dc493d;
  --muted: #68766f;
  --line: rgba(24, 60, 53, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "DM Sans", sans-serif;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  width: 100%;
  image-orientation: from-image;
}

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

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: absolute;
  z-index: 20;
  top: 0;
  left: 0;
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  padding: 28px clamp(24px, 5vw, 72px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: "Manrope", sans-serif;
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.18em;
}

.brand strong {
  font-weight: 700;
}

.brand-mark {
  position: relative;
  display: inline-block;
  width: 24px;
  height: 28px;
}

.brand-mark span {
  position: absolute;
  bottom: 1px;
  width: 11px;
  height: 22px;
  border: 2px solid currentColor;
  border-radius: 10px 10px 2px 2px;
  transform: rotate(-20deg);
}

.brand-mark span:last-child {
  right: 0;
  bottom: 5px;
  height: 18px;
  transform: rotate(24deg);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 32px;
  font-size: 14px;
  font-weight: 500;
}

.site-nav > a:not(.nav-contact) {
  position: relative;
}

.site-nav > a:not(.nav-contact)::after {
  position: absolute;
  bottom: -6px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--ink);
  content: "";
  transition: width 180ms ease;
}

.site-nav > a:hover::after {
  width: 100%;
}

.nav-contact {
  padding: 11px 20px;
  color: var(--paper);
  border-radius: 999px;
  background: var(--ink);
  transition: background 180ms ease, transform 180ms ease;
}

.nav-contact:hover {
  background: var(--ink-deep);
  transform: translateY(-2px);
}

.menu-toggle {
  display: none;
  padding: 8px;
  border: 0;
  background: none;
}

.menu-toggle span {
  display: block;
  width: 24px;
  height: 1px;
  margin: 6px 0;
  background: var(--ink);
  transition: transform 180ms ease;
}

.hero {
  position: relative;
  display: grid;
  min-height: 760px;
  height: 100vh;
  max-height: 940px;
  grid-template-columns: minmax(0, 1fr) minmax(400px, 0.84fr);
  align-items: center;
  gap: clamp(35px, 6vw, 90px);
  overflow: hidden;
  padding: 125px clamp(24px, 7vw, 110px) 90px;
  background:
    linear-gradient(rgba(24, 60, 53, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(24, 60, 53, 0.045) 1px, transparent 1px),
    var(--cream);
  background-size: 64px 64px;
}

.hero-content {
  position: relative;
  z-index: 2;
  max-width: 760px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 25px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 12px;
}

.eyebrow span {
  width: 28px;
  height: 2px;
  background: var(--red);
}

h1,
h2 {
  margin: 0;
  font-family: "Manrope", sans-serif;
  font-weight: 600;
  letter-spacing: -0.055em;
  line-height: 1.04;
}

h1 {
  font-size: clamp(58px, 6.8vw, 102px);
}

h1 em {
  font-family: Georgia, serif;
  font-weight: 400;
}

.hero-copy {
  max-width: 620px;
  margin: 30px 0 36px;
  color: #53635e;
  font-size: clamp(17px, 1.45vw, 20px);
  line-height: 1.65;
}

.hero-actions,
.contact-actions {
  display: flex;
  align-items: center;
  gap: 24px;
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 24px;
  padding: 17px 22px 17px 26px;
  border-radius: 4px;
  font-size: 14px;
  font-weight: 600;
  transition: transform 180ms ease, background 180ms ease;
}

.button svg {
  width: 19px;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.5;
}

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

.button-primary:hover,
.button-light:hover,
.button-outline:hover {
  transform: translateY(-3px);
}

.text-link {
  border-bottom: 1px solid var(--ink);
  font-size: 14px;
  font-weight: 500;
}

.hero-photo {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 570px;
  margin: 0;
  justify-self: center;
  box-shadow: 0 35px 90px rgba(24, 60, 53, 0.18);
}

.hero-photo::before {
  position: absolute;
  z-index: -1;
  top: -22px;
  right: -22px;
  width: 52%;
  height: 45%;
  background: var(--lime);
  content: "";
}

.hero-photo img {
  height: min(62vh, 590px);
  min-height: 430px;
  object-fit: cover;
  object-position: 40% center;
}

.hero-photo figcaption {
  position: absolute;
  right: 0;
  bottom: 0;
  display: flex;
  width: 78%;
  flex-direction: column;
  gap: 5px;
  padding: 20px 24px;
  color: var(--paper);
  background: var(--ink);
}

.hero-photo figcaption span {
  color: var(--lime);
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.hero-photo figcaption strong {
  font-family: "Manrope", sans-serif;
  font-size: 20px;
}

.hero-glow,
.contact-orbit {
  position: absolute;
  border-radius: 50%;
}

.glow-one {
  top: -18%;
  right: 22%;
  width: 430px;
  height: 430px;
  background: rgba(200, 231, 100, 0.17);
  filter: blur(12px);
}

.glow-two {
  bottom: -28%;
  left: 31%;
  width: 500px;
  height: 500px;
  background: rgba(156, 201, 182, 0.17);
  filter: blur(12px);
}

.hero-footer {
  position: absolute;
  z-index: 3;
  bottom: 28px;
  left: clamp(24px, 5vw, 72px);
  display: flex;
  width: calc(100% - clamp(48px, 10vw, 144px));
  justify-content: space-between;
  color: var(--muted);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.hero-footer a {
  display: flex;
  align-items: center;
  gap: 15px;
}

.scroll-line {
  display: inline-block;
  width: 40px;
  height: 1px;
  background: var(--ink);
}

.section {
  position: relative;
  padding: 125px clamp(24px, 7vw, 110px);
}

.section-number {
  position: absolute;
  top: 36px;
  right: clamp(24px, 7vw, 110px);
  color: #a1aaa6;
  font-size: 11px;
}

.statement {
  background: var(--paper);
}

.statement-grid {
  display: grid;
  grid-template-columns: 0.7fr 2.3fr;
  gap: 60px;
}

.statement-content h2 {
  max-width: 940px;
  font-size: clamp(42px, 5.3vw, 76px);
}

.statement-content h2 span {
  color: #9aa39f;
}

.statement-content > p {
  max-width: 620px;
  margin: 42px 0 0 auto;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.75;
}

.values-strip {
  display: grid;
  margin-top: 105px;
  border-top: 1px solid var(--line);
  grid-template-columns: repeat(3, 1fr);
}

.values-strip article {
  min-height: 230px;
  padding: 30px 45px 20px 0;
  border-right: 1px solid var(--line);
}

.values-strip article + article {
  padding-left: 42px;
}

.values-strip article:last-child {
  border-right: 0;
}

.values-strip span {
  color: #a1aaa6;
  font-size: 10px;
}

.values-strip h3 {
  margin: 52px 0 13px;
  font-family: "Manrope", sans-serif;
  font-size: 22px;
}

.values-strip p {
  max-width: 310px;
  margin: 0;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.booth-showcase {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  align-items: center;
  gap: clamp(50px, 8vw, 120px);
  color: var(--paper);
  background: var(--ink);
}

.showcase-copy h2,
.prints-heading h2,
.process-copy h2,
.about-card h2,
.contact h2 {
  font-size: clamp(42px, 5vw, 68px);
}

.showcase-copy .section-kicker,
.contact .section-kicker {
  color: var(--lime);
}

.showcase-copy > p:not(.section-kicker) {
  margin: 32px 0;
  color: rgba(244, 240, 231, 0.7);
  font-size: 17px;
  line-height: 1.75;
}

.feature-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.feature-pills span {
  padding: 10px 14px;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 999px;
  font-size: 12px;
}

.showcase-gallery {
  position: relative;
  min-height: 590px;
}

.showcase-gallery figure {
  position: absolute;
  margin: 0;
  overflow: hidden;
  box-shadow: 0 25px 70px rgba(5, 25, 21, 0.35);
}

.showcase-gallery img {
  height: 100%;
  object-fit: cover;
}

.gallery-primary {
  top: 0;
  right: 0;
  width: 75%;
  height: 78%;
}

.gallery-primary img {
  object-position: 70% center;
}

.gallery-secondary {
  bottom: 0;
  left: 0;
  width: 48%;
  height: 52%;
  border: 10px solid var(--ink);
}

.gallery-note {
  position: absolute;
  right: 0;
  bottom: 7%;
  padding: 12px 16px;
  color: var(--ink);
  background: var(--lime);
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.prints {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  align-items: center;
  gap: clamp(50px, 8vw, 110px);
  background: var(--cream);
}

.prints-heading > p:not(.section-kicker) {
  max-width: 520px;
  margin-top: 32px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.75;
}

.print-samples {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.print-samples figure {
  margin: 0;
  padding: 12px;
  background: white;
  box-shadow: 0 18px 55px rgba(24, 60, 53, 0.1);
}

.print-samples img {
  height: 100%;
  object-fit: contain;
}

.print-samples p {
  grid-column: 1 / -1;
  margin: 4px 0 0;
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.15em;
  text-align: right;
  text-transform: uppercase;
}

.process {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  align-items: center;
  gap: clamp(55px, 9vw, 130px);
  background: var(--paper);
}

.process-image {
  position: relative;
}

.process-image > img {
  height: 630px;
  object-fit: cover;
  object-position: center;
}

.image-badge {
  position: absolute;
  right: -25px;
  bottom: 35px;
  display: flex;
  width: 160px;
  height: 160px;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  color: var(--ink);
  background: var(--lime);
  transform: rotate(-8deg);
}

.image-badge span {
  font-size: 10px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.image-badge strong {
  margin-top: 5px;
  font-family: "Manrope", sans-serif;
  font-size: 19px;
}

.process-intro {
  margin: 30px 0 42px;
  color: var(--muted);
  font-size: 17px;
  line-height: 1.7;
}

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

.steps li {
  display: grid;
  grid-template-columns: 45px 1fr;
  gap: 20px;
  padding: 23px 0;
  border-bottom: 1px solid var(--line);
}

.steps li > span {
  color: var(--red);
  font-size: 11px;
}

.steps strong {
  font-family: "Manrope", sans-serif;
  font-size: 18px;
}

.steps p {
  margin: 6px 0 0;
  color: var(--muted);
  font-size: 14px;
}

.about {
  display: grid;
  grid-template-columns: 1fr 0.8fr;
  gap: 0;
  padding-top: 0;
  padding-bottom: 0;
  color: var(--paper);
  background: var(--ink-deep);
}

.about-card {
  align-self: center;
  padding: 110px clamp(30px, 7vw, 100px) 110px 0;
}

.about-card .section-kicker {
  color: var(--lime);
}

.about-card > p:not(.section-kicker) {
  max-width: 670px;
  margin: 30px 0 0;
  color: rgba(244, 240, 231, 0.72);
  font-size: 17px;
  line-height: 1.75;
}

.about-note {
  padding-left: 20px;
  border-left: 2px solid var(--lime);
}

.about-image {
  min-height: 620px;
  margin: 0;
  overflow: hidden;
}

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

.contact {
  overflow: hidden;
  padding-top: 140px;
  padding-bottom: 140px;
  color: var(--paper);
  background: #214b43;
}

.contact-content {
  position: relative;
  z-index: 2;
  max-width: 960px;
}

.contact h2 {
  max-width: 900px;
}

.contact-content > p:not(.section-kicker) {
  max-width: 620px;
  margin: 30px 0 40px;
  color: rgba(244, 240, 231, 0.73);
  font-size: 17px;
  line-height: 1.7;
}

.button-light {
  color: var(--ink);
  background: var(--paper);
}

.button-light:hover {
  background: var(--lime);
}

.button-outline {
  color: var(--paper);
  border: 1px solid rgba(255, 255, 255, 0.45);
}

.button-outline:hover {
  color: var(--ink);
  background: var(--lime);
}

.email-list {
  display: flex;
  gap: 25px;
  margin-top: 23px;
  color: rgba(244, 240, 231, 0.65);
  font-size: 12px;
}

.contact-orbit {
  top: -190px;
  right: -130px;
  width: 690px;
  height: 690px;
  border: 1px solid rgba(255, 255, 255, 0.11);
  box-shadow:
    0 0 0 90px rgba(255, 255, 255, 0.025),
    0 0 0 180px rgba(255, 255, 255, 0.02);
}

footer {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  align-items: center;
  padding: 33px clamp(24px, 5vw, 72px);
  color: rgba(244, 240, 231, 0.65);
  background: var(--ink-deep);
  font-size: 11px;
}

footer p {
  margin: 0;
}

footer p:nth-child(2) {
  text-align: center;
}

footer p:last-child {
  text-align: right;
}

.brand-footer {
  color: var(--paper);
  font-size: 10px;
}

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

.reveal-delay {
  transition-delay: 180ms;
}

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

@media (max-width: 1000px) {
  .hero {
    grid-template-columns: 1fr 0.75fr;
  }

  .site-nav {
    gap: 20px;
  }

  .booth-showcase,
  .prints,
  .process {
    gap: 50px;
  }
}

@media (max-width: 800px) {
  .hero {
    min-height: 950px;
    height: auto;
    grid-template-columns: 1fr;
    padding-top: 145px;
  }

  .hero-content {
    max-width: 680px;
  }

  .hero-photo {
    width: 88%;
    margin-left: auto;
  }

  .hero-photo img {
    height: 440px;
    min-height: 0;
  }

  .hero-footer {
    display: none;
  }

  .statement-grid,
  .booth-showcase,
  .prints,
  .process,
  .about {
    grid-template-columns: 1fr;
  }

  .statement-grid {
    gap: 25px;
  }

  .statement-content > p {
    margin-left: 0;
  }

  .showcase-gallery {
    min-height: 520px;
  }

  .process-image {
    width: 88%;
  }

  .about-card {
    padding-right: 0;
  }

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

@media (max-width: 700px) {
  .site-header {
    padding-top: 22px;
  }

  .menu-toggle {
    z-index: 22;
    display: block;
  }

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

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

  .site-nav {
    position: fixed;
    inset: 0;
    display: flex;
    visibility: hidden;
    flex-direction: column;
    justify-content: center;
    color: var(--paper);
    background: var(--ink-deep);
    font-size: 22px;
    opacity: 0;
    transition: opacity 180ms ease, visibility 180ms ease;
  }

  .site-nav.is-open {
    visibility: visible;
    opacity: 1;
  }

  .nav-contact {
    color: var(--ink);
    background: var(--lime);
  }

  .menu-toggle.is-open span {
    background: var(--paper);
  }

  .hero {
    min-height: 880px;
    padding: 125px 24px 75px;
  }

  h1 {
    font-size: clamp(49px, 14vw, 68px);
  }

  .hero-copy {
    margin-top: 23px;
  }

  .hero-actions,
  .contact-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
  }

  .hero-photo {
    width: 94%;
    margin-top: 20px;
  }

  .hero-photo img {
    height: 330px;
  }

  .hero-photo figcaption {
    width: 88%;
  }

  .section {
    padding: 90px 24px;
  }

  .statement-content h2,
  .showcase-copy h2,
  .prints-heading h2,
  .process-copy h2,
  .about-card h2,
  .contact h2 {
    font-size: 40px;
  }

  .values-strip {
    margin-top: 65px;
    grid-template-columns: 1fr;
  }

  .values-strip article,
  .values-strip article + article {
    min-height: auto;
    padding: 25px 0 35px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .values-strip h3 {
    margin-top: 28px;
  }

  .showcase-gallery {
    min-height: 440px;
  }

  .gallery-primary {
    width: 86%;
    height: 78%;
  }

  .gallery-secondary {
    width: 55%;
    height: 48%;
  }

  .print-samples {
    grid-template-columns: 1fr;
  }

  .print-samples p {
    grid-column: auto;
  }

  .process-image {
    width: calc(100% - 18px);
  }

  .process-image > img {
    height: 470px;
  }

  .image-badge {
    right: -18px;
    width: 125px;
    height: 125px;
  }

  .image-badge strong {
    font-size: 15px;
  }

  .about {
    padding-top: 0;
    padding-bottom: 0;
  }

  .about-card {
    padding-top: 90px;
    padding-bottom: 90px;
  }

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

  .contact {
    padding-top: 95px;
    padding-bottom: 95px;
  }

  .email-list {
    flex-direction: column;
    gap: 7px;
    overflow-wrap: anywhere;
  }

  footer {
    grid-template-columns: 1fr;
    gap: 20px;
  }

  footer p:nth-child(2),
  footer p:last-child {
    text-align: left;
  }
}

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

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