:root {
  --offwhite: #f4efe7;
  --paper: #fffaf2;
  --ink: #161616;
  --muted: #5d5852;
  --blue: #1d4ed8;
  --blue-dark: #1439a3;
  --orange: #f97316;
  --orange-soft: #ffd7bd;
  --line: #1c1c1c;
  --soft-line: #d7d0c5;
  --white: #ffffff;
  --shell: 1160px;
  --shadow: 0 20px 60px rgba(22, 22, 22, 0.12);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--offwhite);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  text-rendering: optimizeLegibility;
}

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

a {
  color: var(--blue-dark);
  text-underline-offset: 0.22em;
  text-decoration-thickness: 1px;
}

a:hover {
  color: var(--ink);
}

a:focus-visible,
button:focus-visible,
input:focus-visible {
  outline: 3px solid var(--orange);
  outline-offset: 3px;
}

button,
input {
  font: inherit;
}

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

h1,
h2,
h3,
.wordmark span {
  font-family: Arial, Helvetica, sans-serif;
  font-weight: 900;
  letter-spacing: -0.045em;
}

h1 {
  max-width: 10ch;
  margin-bottom: 1rem;
  font-size: clamp(3rem, 7vw, 6.3rem);
  line-height: 0.9;
}

h2 {
  margin-bottom: 0.8rem;
  font-size: clamp(2rem, 4vw, 3.5rem);
  line-height: 0.95;
}

h3 {
  margin-bottom: 0.55rem;
  font-size: 1.45rem;
  line-height: 1.05;
}

p:last-child {
  margin-bottom: 0;
}

.shell {
  width: min(calc(100% - 2rem), var(--shell));
  margin-inline: auto;
}

.narrow {
  max-width: 830px;
}

.skip-link {
  position: fixed;
  z-index: 1000;
  top: 1rem;
  left: 1rem;
  padding: 0.75rem 1rem;
  background: var(--ink);
  color: var(--white);
  transform: translateY(-180%);
}

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

.site-header {
  border-bottom: 2px solid var(--line);
  background: rgba(244, 239, 231, 0.97);
}

.header-inner {
  display: flex;
  min-height: 84px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.wordmark {
  display: inline-flex;
  flex-direction: column;
  min-width: max-content;
  color: var(--ink);
  line-height: 1;
  text-decoration: none;
}

.wordmark span {
  font-size: 1.65rem;
}

.wordmark small {
  margin-top: 0.14rem;
  color: var(--blue);
  font-size: 0.68rem;
  font-weight: 800;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.primary-nav,
.footer-nav,
.button-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 1rem;
}

.primary-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
  padding: 0.55rem 0;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 800;
  text-decoration: none;
}

.primary-nav .nav-cta {
  padding-inline: 1rem;
  border: 2px solid var(--line);
  background: var(--paper);
}

.primary-nav .nav-cta:hover {
  background: var(--blue);
  color: var(--white);
}

.hero {
  border-bottom: 2px solid var(--line);
  background:
    linear-gradient(90deg, transparent 0 58%, rgba(29, 78, 216, 0.055) 58% 100%),
    var(--offwhite);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(420px, 1.14fr);
  gap: clamp(2rem, 5vw, 4rem);
  align-items: center;
  padding-block: clamp(2.4rem, 5vw, 4.4rem);
}

.hero-copy {
  padding-block: 1rem;
}

.hero-intro {
  max-width: 550px;
  margin-bottom: 1.55rem;
  color: var(--muted);
  font-size: 1.08rem;
}

.hero-art {
  position: relative;
  margin: 0;
  padding: 0.7rem 0.7rem 0 0;
}

.hero-art::before {
  position: absolute;
  inset: 2rem 0 0 2rem;
  z-index: 0;
  border: 2px solid var(--line);
  background: var(--orange);
  content: "";
}

.hero-art img {
  position: relative;
  z-index: 1;
  aspect-ratio: 4 / 3;
  border: 2px solid var(--line);
  background: var(--paper);
  box-shadow: var(--shadow);
  object-fit: cover;
}

.hero-art figcaption,
.about-art figcaption {
  position: relative;
  z-index: 1;
  margin-top: 0.65rem;
  color: var(--muted);
  font-size: 0.76rem;
}

.eyebrow {
  margin-bottom: 0.8rem;
  color: var(--blue-dark);
  font-size: 0.74rem;
  font-weight: 900;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.05rem;
  border: 2px solid var(--line);
  font-weight: 900;
  line-height: 1.15;
  text-decoration: none;
  transition: transform 150ms ease, background-color 150ms ease, color 150ms ease;
}

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

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

.button-primary:hover {
  background: var(--blue-dark);
  color: var(--white);
}

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

.button-secondary:hover {
  background: var(--orange-soft);
}

.section {
  padding-block: clamp(3.2rem, 6vw, 5.3rem);
}

.services {
  background: var(--paper);
  border-bottom: 2px solid var(--line);
}

.section-heading,
.showcase-heading {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(280px, 0.5fr);
  gap: 2rem;
  align-items: end;
  margin-bottom: 2rem;
}

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

.service-grid {
  display: grid;
  gap: 1rem;
}

.service-block {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.65fr);
  min-height: 235px;
  border: 2px solid var(--line);
  background: var(--offwhite);
  overflow: hidden;
}

.service-copy {
  padding: 1.35rem;
}

.service-index {
  display: inline-block;
  margin-bottom: 2rem;
  color: var(--orange);
  font-weight: 900;
  letter-spacing: 0.14em;
}

.service-copy p {
  max-width: 620px;
  color: var(--muted);
}

.service-block img {
  height: 100%;
  min-height: 235px;
  border-left: 2px solid var(--line);
  object-fit: cover;
  transition: transform 180ms ease;
}

.service-block:hover img {
  transform: scale(1.02);
}

.showcase {
  padding-block: clamp(3.2rem, 6vw, 5.2rem);
  border-bottom: 2px solid var(--line);
  background: var(--blue);
  color: var(--white);
}

.showcase h2,
.showcase .eyebrow {
  color: var(--white);
}

.showcase .eyebrow {
  opacity: 0.8;
}

.showcase-heading > p {
  color: #dfe8ff;
}

.showcase-grid {
  display: grid;
  grid-template-columns: 1.25fr 0.75fr 0.75fr;
  gap: 1rem;
}

.showcase-tile {
  margin: 0;
  border: 2px solid var(--line);
  background: var(--paper);
  overflow: hidden;
}

.showcase-tile img {
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.showcase-wide img {
  aspect-ratio: 5 / 4;
}

.showcase-tile figcaption {
  padding: 0.8rem 0.9rem;
  border-top: 2px solid var(--line);
  color: var(--ink);
  font-weight: 900;
}

.about {
  background: var(--offwhite);
  border-bottom: 2px solid var(--line);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(350px, 0.85fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.about-copy p:not(.eyebrow) {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.04rem;
}

.about-art {
  margin: 0;
}

.about-art img {
  aspect-ratio: 6 / 5;
  border: 2px solid var(--line);
  background: var(--paper);
  box-shadow: 18px 18px 0 var(--orange);
  object-fit: cover;
}

.visit {
  padding-block: clamp(3.1rem, 5vw, 4.4rem);
  background: var(--ink);
  color: var(--white);
}

.visit-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.72fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: center;
}

.visit h2,
.visit .eyebrow {
  color: var(--white);
}

.visit .eyebrow {
  opacity: 0.75;
}

.visit p:not(.eyebrow) {
  color: #d6d3cf;
}

.visit-card {
  display: grid;
  gap: 0.2rem;
  padding: 1.35rem;
  border: 2px solid var(--white);
  background: rgba(255, 255, 255, 0.04);
  font-style: normal;
}

.visit-card strong {
  margin-bottom: 0.35rem;
  font-size: 1.25rem;
}

.visit-card .button {
  justify-self: start;
  margin-top: 1rem;
}

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

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

.newsletter {
  padding-block: clamp(3rem, 5vw, 4.4rem);
  border-bottom: 2px solid var(--line);
  background: var(--paper);
}

.newsletter-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(340px, 1.15fr);
  gap: clamp(2rem, 6vw, 5rem);
  align-items: start;
}

.newsletter-form {
  display: grid;
  gap: 0.9rem;
}

.field {
  display: grid;
  gap: 0.35rem;
}

.field label {
  font-weight: 900;
}

.field input[type="email"] {
  width: 100%;
  min-height: 48px;
  padding: 0.72rem 0.8rem;
  border: 2px solid var(--line);
  background: var(--white);
  color: var(--ink);
}

.field input[type="email"]:disabled {
  background: #ece7de;
  color: #6e6963;
  cursor: not-allowed;
}

.consent-row {
  display: grid;
  grid-template-columns: 1.15rem minmax(0, 1fr);
  gap: 0.7rem;
  align-items: start;
  color: var(--muted);
  font-size: 0.88rem;
}

.consent-row input {
  width: 1.15rem;
  height: 1.15rem;
  margin: 0.18rem 0 0;
}

.button-disabled,
.button-disabled:disabled {
  background: #dfd9d0;
  color: #66605a;
  cursor: not-allowed;
  transform: none;
}

.form-note {
  color: var(--muted);
  font-size: 0.82rem;
}

.site-footer {
  padding-block: 2rem;
  background: var(--offwhite);
}

.footer-grid {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-brand {
  margin-bottom: 0.2rem;
  font-weight: 900;
}

.site-footer p {
  margin-bottom: 0.2rem;
  font-size: 0.9rem;
}

.footer-nav {
  justify-content: flex-end;
  align-content: start;
}

.footer-nav a {
  display: inline-flex;
  min-height: 44px;
  align-items: center;
}

.legal-main {
  background: var(--paper);
}

.legal-hero {
  padding-block: clamp(3rem, 6vw, 5rem);
  border-bottom: 2px solid var(--line);
  background:
    linear-gradient(90deg, var(--offwhite) 0 72%, var(--orange-soft) 72% 100%);
}

.legal-hero h1 {
  max-width: 12ch;
  font-size: clamp(2.8rem, 6vw, 5.2rem);
}

.legal-hero p:last-child {
  max-width: 68ch;
  color: var(--muted);
}

.legal-section {
  padding-block: clamp(3.2rem, 6vw, 5.2rem);
  scroll-margin-top: 1rem;
}

.legal-alt {
  border-block: 2px solid var(--line);
  background: var(--offwhite);
}

.legal-copy h2 {
  margin-bottom: 2rem;
}

.legal-copy h3 {
  margin-top: 1.7rem;
}

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

.legal-note {
  margin-top: 2rem;
  padding: 1rem 1.1rem;
  border-left: 6px solid var(--blue);
  background: #eef3ff;
  color: var(--ink) !important;
}

.legal-return {
  padding-block: 2.4rem;
}

@media (max-width: 880px) {
  .header-inner {
    align-items: flex-start;
    flex-direction: column;
    padding-block: 1rem;
  }

  .primary-nav {
    width: 100%;
  }

  .hero-grid,
  .section-heading,
  .showcase-heading,
  .about-grid,
  .visit-grid,
  .newsletter-grid {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    padding-block: 2.6rem;
  }

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

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

  .showcase-wide {
    grid-column: 1 / -1;
  }

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

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 620px) {
  .shell {
    width: min(calc(100% - 1.3rem), var(--shell));
  }

  .primary-nav {
    gap: 0.3rem 0.75rem;
  }

  .primary-nav a {
    min-height: 46px;
    font-size: 0.9rem;
  }

  h1 {
    font-size: clamp(3rem, 16vw, 4.5rem);
  }

  .button-row {
    align-items: stretch;
    flex-direction: column;
  }

  .button-row .button {
    width: 100%;
  }

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

  .service-block img {
    min-height: 220px;
    border-top: 2px solid var(--line);
    border-left: 0;
  }

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

  .showcase-wide {
    grid-column: auto;
  }

  .about-art img {
    box-shadow: 10px 10px 0 var(--orange);
  }

  .footer-nav {
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
  }
}
