:root {
  --ink: #171717;
  --muted: #6f6f6a;
  --paper: #f5f4f1;
  --white: #ffffff;
  --line: rgba(20, 20, 20, 0.14);
  --red: #4f563e;
  --accent-on-dark: #aeb59a;
  --soft: #e8e6e1;
  --charcoal: #202020;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.18);
  --sans: "Inter", Arial, sans-serif;
  --display: "Instrument Sans", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--sans);
  line-height: 1.55;
}

img {
  display: block;
  max-width: 100%;
  -webkit-user-drag: none;
  user-select: none;
}

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px clamp(18px, 4vw, 56px);
  color: var(--white);
  transition: background 180ms ease, color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  background: rgba(247, 244, 238, 0.94);
  color: var(--ink);
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.08);
  backdrop-filter: blur(14px);
}

.brand {
  display: inline-grid;
  font-family: var(--display);
  line-height: 1.02;
  font-weight: 700;
  text-transform: uppercase;
}

.brand small {
  font-family: var(--sans);
  font-size: 0.68rem;
  font-weight: 600;
  letter-spacing: 0;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 34px);
  font-family: var(--display);
  font-size: 0.84rem;
  font-weight: 600;
  text-transform: uppercase;
}

.site-nav a {
  position: relative;
  padding: 8px 0;
}

.site-nav a::after {
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 0;
  height: 2px;
  background: currentColor;
  content: "";
  transition: right 160ms ease;
}

.site-nav a:hover::after {
  right: 0;
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  border: 1px solid currentColor;
  border-radius: 50%;
  background: transparent;
  color: inherit;
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.hero {
  position: relative;
  min-height: 92svh;
  display: flex;
  align-items: flex-end;
  padding: 130px clamp(20px, 5vw, 72px) 84px;
  overflow: hidden;
  color: var(--white);
}

.hero > img,
.hero-overlay {
  position: absolute;
  inset: 0;
}

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

.hero-overlay {
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.76), rgba(0, 0, 0, 0.24) 58%, rgba(0, 0, 0, 0.5)),
    linear-gradient(0deg, rgba(0, 0, 0, 0.72), transparent 42%);
}

.hero-content {
  position: relative;
  max-width: 820px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.76rem;
  font-weight: 600;
  text-transform: uppercase;
}

.hero .eyebrow,
.services-section .eyebrow {
  color: var(--accent-on-dark);
}

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

h1,
h2 {
  font-family: var(--display);
  font-weight: 700;
  line-height: 1.08;
}

h1 {
  max-width: 760px;
  margin-bottom: 24px;
  font-size: clamp(2.65rem, 7vw, 6.8rem);
}

h2 {
  margin-bottom: 20px;
  font-size: clamp(1.85rem, 4vw, 3.95rem);
}

h3 {
  font-family: var(--display);
  font-weight: 600;
  margin-bottom: 12px;
  font-size: 1.28rem;
  line-height: 1.2;
}

.hero-content > p:not(.eyebrow),
.section-heading > p,
.about-copy p,
.contact-copy p {
  max-width: 660px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(1rem, 1.7vw, 1.18rem);
}

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

.button {
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.62);
  padding: 12px 20px;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
}

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

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

.intro-strip {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  padding: 22px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--white);
}

.intro-strip p {
  max-width: 920px;
  margin: 0;
  color: var(--muted);
  font-size: 0.96rem;
}

.intro-strip a,
.text-link {
  color: var(--red);
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
}

.intro-strip a {
  flex: 0 0 auto;
}

.copyright-strip {
  padding: 14px clamp(20px, 5vw, 72px);
  border-bottom: 1px solid var(--line);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
}

.copyright-strip p {
  margin: 0;
  font-size: 0.82rem;
}

.trust-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.trust-strip div {
  min-height: 112px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 22px clamp(18px, 3vw, 38px);
  border-right: 1px solid var(--line);
}

.trust-strip div:last-child {
  border-right: 0;
}

.trust-strip span {
  margin-bottom: 6px;
  color: var(--red);
  font-family: var(--display);
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
}

.trust-strip strong {
  color: var(--ink);
  font-family: var(--display);
  font-size: clamp(1rem, 1.8vw, 1.32rem);
  line-height: 1.15;
}

.section {
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
}

.portfolio-section {
  padding-top: clamp(44px, 6vw, 82px);
}

.section-heading {
  max-width: 980px;
  margin-bottom: 38px;
}

.section-heading > p,
.about-copy p,
.contact-copy p {
  color: var(--muted);
}

.contact-copy .contact-note {
  margin-top: 18px;
  font-size: 0.98rem;
}

.section-heading.split {
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.85fr);
  gap: clamp(28px, 6vw, 84px);
  align-items: end;
  max-width: none;
}

.portfolio-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  grid-auto-rows: minmax(230px, 26vw);
  gap: 12px;
}

.photo-card {
  position: relative;
  min-height: 230px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  width: 100%;
  border: 0;
  padding: 0;
  background: #151515;
  color: var(--white);
  cursor: zoom-in;
  font: inherit;
  text-align: left;
}

.photo-card:focus-visible {
  outline: 3px solid var(--red);
  outline-offset: 4px;
}

.photo-card.large {
  grid-column: span 2;
  grid-row: span 2;
}

.photo-card img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform 400ms ease;
}

.photo-card::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(0deg, rgba(0, 0, 0, 0.74), transparent 55%);
  content: "";
}

.photo-card div {
  position: relative;
  z-index: 3;
  padding: 22px;
}

.photo-card span,
.service-item span {
  display: block;
  margin-bottom: 6px;
  color: var(--red);
  font-size: 0.76rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
}

.photo-card strong {
  display: block;
  font-family: var(--display);
  font-weight: 600;
  font-size: clamp(1.06rem, 2.1vw, 1.62rem);
  line-height: 1.1;
}

.photo-card:hover img {
  transform: scale(1.01);
}

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

.services-section .section-heading > p {
  color: rgba(255, 255, 255, 0.7);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.service-item {
  min-height: 300px;
  padding: clamp(26px, 4vw, 46px);
  border-right: 1px solid rgba(255, 255, 255, 0.18);
}

.service-item:last-child {
  border-right: 0;
}

.service-item p {
  color: rgba(255, 255, 255, 0.72);
}

.service-item .text-link {
  display: inline-flex;
  margin-top: 4px;
  color: var(--white);
  border-bottom: 2px solid var(--red);
  font-size: 0.82rem;
}

.service-photos {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px;
  margin-top: 24px;
}

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

.service-photos img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
  border: 1px solid rgba(255, 255, 255, 0.16);
}

.story-feature {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(360px, 0.82fr);
  align-items: stretch;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: var(--soft);
}

.story-feature-image {
  display: flex;
  order: 2;
  min-height: 560px;
  align-items: center;
  justify-content: center;
  padding: clamp(18px, 3vw, 34px);
  background: #151515;
}

.story-feature-image img {
  width: 100%;
  max-height: 680px;
  height: auto;
  object-fit: contain;
}

.story-feature-copy {
  display: flex;
  order: 1;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 7vw, 104px) clamp(28px, 6vw, 92px);
  background: var(--white);
}

.story-feature-copy h2 {
  max-width: 660px;
  font-size: clamp(1.95rem, 3.8vw, 3.85rem);
}

.story-feature-copy p:not(.eyebrow) {
  max-width: 620px;
  color: var(--muted);
  font-size: clamp(1rem, 1.55vw, 1.16rem);
}

.text-link.dark {
  align-self: flex-start;
  margin-top: 10px;
  border-bottom: 2px solid var(--red);
  color: var(--ink);
}

.about-section {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  min-height: 720px;
  background: var(--soft);
}

.about-image {
  min-height: 420px;
  overflow: hidden;
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1);
}

.about-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: clamp(58px, 8vw, 116px) clamp(24px, 7vw, 96px);
}

.faq-section {
  background: var(--white);
}

.faq-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  background: var(--line);
  border: 1px solid var(--line);
}

.faq-grid article {
  min-height: 260px;
  padding: clamp(22px, 3vw, 34px);
  background: var(--white);
}

.faq-grid h3 {
  margin-bottom: 16px;
}

.faq-grid p {
  margin-bottom: 0;
  color: var(--muted);
}

.contact-section {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(300px, 0.8fr);
  gap: clamp(30px, 7vw, 96px);
  align-items: center;
  padding: clamp(72px, 9vw, 132px) clamp(20px, 5vw, 72px);
  background: var(--paper);
  color: var(--ink);
}

.contact-copy p {
  color: var(--muted);
}

.contact-panel {
  display: grid;
  gap: 14px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid var(--line);
  background: var(--white);
}

.contact-panel > a {
  overflow-wrap: anywhere;
  font-size: clamp(1.12rem, 2vw, 1.46rem);
  font-family: var(--display);
  font-weight: 600;
}

.contact-form {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
  margin-top: 18px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

.hidden-field {
  display: none;
}

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

.contact-form label.full,
.contact-form button {
  grid-column: 1 / -1;
}

.contact-form span {
  color: var(--muted);
  font-size: 0.72rem;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  background: var(--paper);
  color: var(--ink);
  font: inherit;
  font-size: 0.92rem;
  min-height: 46px;
  padding: 11px 12px;
  border-radius: 0;
  appearance: none;
}

.contact-form select {
  background-image: linear-gradient(45deg, transparent 50%, var(--muted) 50%), linear-gradient(135deg, var(--muted) 50%, transparent 50%);
  background-position: calc(100% - 18px) 19px, calc(100% - 13px) 19px;
  background-repeat: no-repeat;
  background-size: 5px 5px;
  padding-right: 34px;
}

.contact-form textarea {
  min-height: 138px;
  resize: vertical;
}

.contact-form input:focus,
.contact-form select:focus,
.contact-form textarea:focus {
  outline: 2px solid var(--red);
  outline-offset: 2px;
}

.contact-form button {
  min-height: 48px;
  border: 0;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font: inherit;
  font-family: var(--display);
  font-weight: 600;
  text-transform: uppercase;
  transition: background 160ms ease, color 160ms ease;
}

.contact-form button:hover {
  background: var(--red);
  color: var(--white);
}

.privacy-note {
  margin: 2px 0 0;
  color: var(--muted);
  font-size: 0.82rem;
}

.social-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.social-links a {
  border-bottom: 1px solid currentColor;
  color: var(--muted);
  font-family: var(--display);
  font-weight: 600;
}

.site-footer {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  padding: 24px clamp(20px, 5vw, 72px);
  background: var(--charcoal);
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.92rem;
}

.site-footer p {
  margin: 0;
}

.print-warning {
  display: none;
}

.lightbox {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: none;
  align-items: center;
  justify-content: center;
  padding: clamp(16px, 4vw, 48px);
  background: rgba(10, 10, 10, 0.92);
}

.lightbox.is-open {
  display: flex;
}

.lightbox figure {
  position: relative;
  width: min(100%, 1180px);
  margin: 0;
}

.lightbox img {
  width: 100%;
  max-height: 82vh;
  object-fit: contain;
}

.lightbox figcaption {
  margin-top: 12px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 0.88rem;
  text-align: center;
}

.lightbox-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(255, 255, 255, 0.5);
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.08);
  color: var(--white);
  font: inherit;
  font-size: 1.6rem;
  line-height: 1;
  cursor: pointer;
}

@media (max-width: 900px) {
  .nav-toggle {
    display: block;
  }

  .site-nav {
    position: absolute;
    top: 76px;
    left: 16px;
    right: 16px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 8px;
    padding: 18px;
    background: rgba(247, 244, 238, 0.97);
    color: var(--ink);
    box-shadow: var(--shadow);
  }

  .site-nav.is-open {
    display: flex;
  }

  .section-heading.split,
  .about-section,
  .story-feature,
  .contact-section {
    grid-template-columns: 1fr;
  }

  .story-feature-image {
    min-height: auto;
  }

  .portfolio-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    grid-auto-rows: minmax(210px, 42vw);
  }

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

  .trust-strip div:nth-child(2) {
    border-right: 0;
  }

  .trust-strip div:nth-child(-n + 2) {
    border-bottom: 1px solid var(--line);
  }

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

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

  .service-item {
    min-height: 0;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.18);
  }

  .service-item:last-child {
    border-bottom: 0;
  }

  .service-photos {
    max-width: 640px;
  }
}

@media (max-width: 620px) {
  .site-header {
    padding: 14px 18px;
  }

  .brand span {
    font-size: 0.95rem;
  }

  .brand small {
    font-size: 0.58rem;
  }

  .hero {
    min-height: 86svh;
    padding: 112px 18px 48px;
  }

  h1 {
    font-size: clamp(2.35rem, 14vw, 4rem);
  }

  h2 {
    font-size: clamp(1.7rem, 10vw, 2.8rem);
  }

  .section,
  .contact-section {
    padding: 58px 18px;
  }

  .portfolio-grid {
    grid-template-columns: 1fr;
    grid-auto-rows: minmax(280px, 92vw);
  }

  .photo-card.large {
    grid-column: auto;
    grid-row: auto;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .intro-strip {
    align-items: flex-start;
    flex-direction: column;
  }

  .trust-strip {
    grid-template-columns: 1fr;
  }

  .trust-strip div {
    min-height: 92px;
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-strip div:last-child {
    border-bottom: 0;
  }

  .story-feature-image {
    padding: 14px;
  }

  .story-feature-copy {
    padding: 46px 18px 54px;
  }

  .button {
    width: 100%;
  }

  .site-footer {
    flex-direction: column;
  }

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

  .contact-panel > a {
    font-size: 1rem;
  }

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

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

  .lightbox {
    padding: 54px 10px 18px;
  }

  .lightbox img {
    max-height: 76vh;
  }

}

@media print {
  * {
    background: #fff !important;
    color: #000 !important;
    box-shadow: none !important;
  }

  body > *:not(.print-warning),
  .hero,
  .portfolio-section,
  .services-section,
  .story-feature,
  .about-section,
  .faq-section,
  .contact-section,
  .site-footer,
  .lightbox {
    display: none !important;
  }

  .print-warning {
    display: grid;
    min-height: 90vh;
    place-content: center;
    gap: 14px;
    padding: 48px;
    text-align: center;
    font-family: var(--sans);
  }

  .print-warning strong {
    font-family: var(--display);
    font-size: 24pt;
  }

  .print-warning span {
    max-width: 680px;
    font-size: 13pt;
    line-height: 1.5;
  }
}
