:root {
  --ink: #16201c;
  --ink-deep: #0d1713;
  --forest: #23392f;
  --sage: #8c9d8f;
  --paper: #f3f0e8;
  --paper-light: #faf9f5;
  --sand: #d8d0c0;
  --line: rgba(22, 32, 28, 0.18);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper-light);
  color: var(--ink);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 16px;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

button,
input,
textarea {
  font: inherit;
}

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

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

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

.skip-link {
  position: fixed;
  z-index: 100;
  top: 12px;
  left: 12px;
  transform: translateY(-180%);
  background: white;
  color: var(--ink);
  padding: 10px 15px;
  border-radius: 2px;
}

.skip-link:focus {
  transform: none;
}

.section-shell {
  width: min(100% - 64px, 1320px);
  margin-inline: auto;
}

.hero {
  position: relative;
  min-height: 92vh;
  height: 880px;
  max-height: 980px;
  display: flex;
  align-items: flex-end;
  overflow: hidden;
  background: var(--ink-deep);
  color: white;
}

.hero-image,
.hero-shade {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
}

.hero-image {
  object-fit: cover;
  object-position: center center;
  animation: hero-in 1.25s ease-out both;
}

.hero-shade {
  background:
    linear-gradient(90deg, rgba(7, 15, 12, 0.91) 0%, rgba(7, 15, 12, 0.68) 40%, rgba(7, 15, 12, 0.12) 76%),
    linear-gradient(0deg, rgba(7, 15, 12, 0.68) 0%, transparent 42%);
}

@keyframes hero-in {
  from { transform: scale(1.025); opacity: 0.6; }
  to { transform: scale(1); opacity: 1; }
}

.site-header {
  position: absolute;
  z-index: 5;
  top: 0;
  left: 0;
  right: 0;
  height: 104px;
  padding: 0 4vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid rgba(255, 255, 255, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  letter-spacing: 0.22em;
  font-size: 13px;
  font-weight: 700;
}

.brand-mark {
  width: 44px;
  height: 44px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.66);
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 19px;
  font-weight: 400;
  letter-spacing: -0.05em;
}

.brand-name {
  transform: translateY(1px);
}

.navigation {
  display: flex;
  align-items: center;
  gap: 38px;
  font-size: 13px;
  letter-spacing: 0.04em;
}

.navigation a {
  transition: opacity 180ms ease;
}

.navigation a:hover,
.navigation a:focus-visible {
  opacity: 0.68;
}

.nav-contact {
  display: flex;
  gap: 20px;
  padding: 14px 18px;
  border: 1px solid rgba(255, 255, 255, 0.58);
}

.menu-button {
  display: none;
}

.hero-content {
  position: relative;
  z-index: 2;
  width: min(92%, 1320px);
  margin: 0 auto;
  padding: 0 0 108px;
}

.eyebrow {
  margin: 0 0 22px;
  color: #68756e;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.eyebrow.light {
  color: rgba(255, 255, 255, 0.7);
}

.hero h1 {
  max-width: 800px;
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(56px, 7vw, 106px);
  font-weight: 400;
  line-height: 0.97;
  letter-spacing: -0.055em;
  text-wrap: balance;
}

.hero-intro {
  max-width: 600px;
  margin: 34px 0 0;
  color: rgba(255, 255, 255, 0.78);
  font-size: clamp(17px, 1.4vw, 21px);
  line-height: 1.55;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 34px;
  margin-top: 42px;
}

.button {
  min-height: 53px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 0 24px;
  border: 1px solid transparent;
  border-radius: 0;
  cursor: pointer;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition: background 180ms ease, color 180ms ease, transform 180ms ease;
}

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

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

.text-link {
  display: inline-flex;
  gap: 18px;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid currentColor;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.06em;
}

.light-link {
  color: rgba(255, 255, 255, 0.85);
}

.image-note {
  position: absolute;
  z-index: 2;
  right: 4vw;
  bottom: 30px;
  margin: 0;
  color: rgba(255, 255, 255, 0.52);
  font-size: 10px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.intro-strip {
  min-height: 100px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(18px, 4vw, 60px);
  background: var(--paper);
  border-bottom: 1px solid var(--line);
  color: #57615c;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.intro-strip p {
  margin: 0;
}

.intro-strip span {
  color: #a9a397;
}

.about {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 7vw;
  padding-block: 155px;
}

.section-label {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  color: #6d7872;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-label p {
  margin: 0;
}

.section-label span {
  color: #a7afa9;
}

.about-copy {
  max-width: 980px;
}

.about h2,
.principles h2,
.contact h2 {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(43px, 5vw, 75px);
  font-weight: 400;
  line-height: 1.06;
  letter-spacing: -0.045em;
  text-wrap: balance;
}

.about-columns {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8vw;
  margin-top: 68px;
  padding-top: 30px;
  border-top: 1px solid var(--line);
  color: #52605a;
  font-size: 17px;
}

.about-columns p {
  margin: 0;
}

.image-statement {
  display: grid;
  grid-template-columns: minmax(340px, 0.92fr) minmax(0, 1.08fr);
  gap: 9vw;
  align-items: center;
  padding-bottom: 155px;
}

.detail-figure {
  margin: 0;
}

.detail-figure img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.detail-figure figcaption {
  margin-top: 16px;
  color: #758078;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.statement-copy blockquote {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(37px, 4vw, 61px);
  line-height: 1.08;
  letter-spacing: -0.04em;
}

.statement-copy > p:last-child {
  max-width: 560px;
  margin: 46px 0 0;
  color: #59655f;
  font-size: 17px;
}

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

.principles-inner {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr);
  gap: 7vw;
  padding-block: 145px;
}

.light-label,
.light-label span {
  color: rgba(255, 255, 255, 0.5);
}

.principles-heading .eyebrow {
  color: rgba(255, 255, 255, 0.5);
}

.principles-grid {
  grid-column: 2;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin-top: 82px;
  border-top: 1px solid rgba(255, 255, 255, 0.2);
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-card {
  min-height: 305px;
  padding: 34px 32px 38px 0;
}

.principle-card + .principle-card {
  padding-left: 32px;
  border-left: 1px solid rgba(255, 255, 255, 0.2);
}

.principle-card > span {
  color: rgba(255, 255, 255, 0.38);
  font-size: 11px;
}

.principle-card h3 {
  margin: 80px 0 18px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 32px;
  font-weight: 400;
}

.principle-card p {
  max-width: 300px;
  margin: 0;
  color: rgba(255, 255, 255, 0.62);
  font-size: 15px;
}

.contact {
  display: grid;
  grid-template-columns: 220px minmax(280px, 0.88fr) minmax(380px, 1.12fr);
  gap: 6vw;
  padding-block: 150px;
}

.contact-intro h2 {
  font-size: clamp(42px, 4.6vw, 69px);
}

.contact-intro > p:not(.eyebrow) {
  max-width: 510px;
  margin: 35px 0 0;
  color: #5e6964;
}

.direct-contact {
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid var(--line);
}

.direct-contact p {
  margin: 0 0 8px;
  color: #78817d;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.direct-contact a,
.direct-contact button,
.footer-meta button {
  border: 0;
  padding: 0;
  background: none;
  color: inherit;
  cursor: pointer;
  font-weight: 700;
  text-decoration: underline;
  text-underline-offset: 5px;
}

.contact-form {
  padding: 42px;
  background: var(--paper);
}

.contact-form label {
  display: block;
  margin-bottom: 29px;
}

.contact-form label > span {
  display: block;
  margin-bottom: 8px;
  color: #63706a;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.contact-form small {
  color: #8d9691;
  font-size: inherit;
  font-weight: 400;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 0;
  border-bottom: 1px solid #a9aca5;
  border-radius: 0;
  background: transparent;
  color: var(--ink);
  outline: none;
}

.contact-form input {
  height: 44px;
}

.contact-form textarea {
  resize: vertical;
  min-height: 126px;
  padding: 9px 0;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--ink);
  box-shadow: 0 1px 0 var(--ink);
}

.honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  margin-top: 10px;
}

.form-footer > p {
  max-width: 270px;
  margin: 0;
  color: #7a837e;
  font-size: 11px;
}

.button-dark {
  flex: 0 0 auto;
  background: var(--ink);
  color: white;
}

.form-message {
  min-height: 1.4em;
  margin: 18px 0 0;
  color: #52605a;
  font-size: 12px;
}

footer {
  background: var(--ink-deep);
  color: white;
}

.footer-main {
  min-height: 355px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand p {
  margin: 0;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.footer-mark {
  border-color: rgba(255, 255, 255, 0.38);
}

.footer-line {
  margin: 0;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: clamp(29px, 3vw, 43px);
  line-height: 1.12;
  letter-spacing: -0.035em;
}

.footer-meta {
  justify-self: end;
  color: rgba(255, 255, 255, 0.68);
  font-size: 12px;
  text-align: right;
}

.footer-meta p {
  margin: 0 0 8px;
}

.footer-meta button {
  color: white;
}

.footer-bottom {
  min-height: 72px;
  display: grid;
  grid-template-columns: 1fr 1.3fr 1fr;
  align-items: center;
  gap: 50px;
  border-top: 1px solid rgba(255, 255, 255, 0.15);
  color: rgba(255, 255, 255, 0.45);
  font-size: 9px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.footer-bottom p {
  margin: 0;
}

.footer-bottom a {
  justify-self: end;
}

@media (max-width: 1080px) {
  .contact {
    grid-template-columns: 170px minmax(0, 1fr);
  }

  .contact-form {
    grid-column: 2;
  }
}

@media (max-width: 820px) {
  .section-shell {
    width: min(100% - 40px, 1320px);
  }

  .hero {
    min-height: 780px;
    height: 100svh;
  }

  .site-header {
    height: 82px;
    padding-inline: 20px;
  }

  .brand-mark {
    width: 38px;
    height: 38px;
    font-size: 16px;
  }

  .menu-button {
    position: relative;
    z-index: 10;
    display: flex;
    align-items: center;
    gap: 12px;
    border: 0;
    background: transparent;
    color: white;
    cursor: pointer;
    font-size: 11px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
  }

  .menu-lines,
  .menu-lines::after {
    display: block;
    width: 20px;
    height: 1px;
    background: white;
    content: '';
  }

  .menu-lines::after {
    transform: translateY(5px);
  }

  .navigation {
    position: fixed;
    inset: 0;
    z-index: 8;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: center;
    gap: 25px;
    padding: 90px 30px;
    background: var(--ink-deep);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 34px;
  }

  .navigation.is-open {
    opacity: 1;
    visibility: visible;
    transform: none;
  }

  .nav-contact {
    margin-top: 16px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 13px;
  }

  .hero-content {
    width: calc(100% - 40px);
    padding-bottom: 78px;
  }

  .hero h1 {
    font-size: clamp(52px, 15vw, 80px);
  }

  .hero-shade {
    background:
      linear-gradient(90deg, rgba(7, 15, 12, 0.83) 0%, rgba(7, 15, 12, 0.25) 100%),
      linear-gradient(0deg, rgba(7, 15, 12, 0.86) 0%, transparent 60%);
  }

  .image-note {
    display: none;
  }

  .about,
  .principles-inner,
  .contact {
    grid-template-columns: 1fr;
    gap: 58px;
    padding-block: 95px;
  }

  .about-columns {
    gap: 34px;
  }

  .image-statement {
    grid-template-columns: 1fr;
    gap: 65px;
    padding-bottom: 95px;
  }

  .detail-figure {
    width: 82%;
  }

  .principles-grid,
  .contact-form {
    grid-column: 1;
  }

  .principles-grid {
    margin-top: 5px;
  }

  .principle-card h3 {
    margin-top: 55px;
  }

  .footer-main,
  .footer-bottom {
    grid-template-columns: 1fr 1fr;
  }

  .footer-line {
    grid-column: 1 / -1;
    grid-row: 1;
  }

  .footer-brand,
  .footer-meta {
    align-self: start;
  }

  .footer-bottom p:nth-child(2) {
    display: none;
  }
}

@media (max-width: 560px) {
  .hero {
    min-height: 720px;
  }

  .brand-name {
    display: none;
  }

  .hero-image {
    object-position: 57% center;
  }

  .hero-intro {
    font-size: 16px;
  }

  .hero-actions {
    align-items: flex-start;
    flex-direction: column;
    gap: 20px;
    margin-top: 32px;
  }

  .intro-strip {
    min-height: 76px;
    gap: 9px;
    font-size: 8px;
  }

  .about-columns,
  .principles-grid,
  .form-row {
    grid-template-columns: 1fr;
  }

  .about-columns {
    margin-top: 46px;
  }

  .detail-figure {
    width: 100%;
  }

  .principles-grid {
    border-bottom: 0;
  }

  .principle-card,
  .principle-card + .principle-card {
    min-height: 250px;
    padding: 30px 0;
    border-left: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
  }

  .principle-card h3 {
    margin-top: 45px;
  }

  .contact-form {
    padding: 28px 22px;
  }

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

  .footer-main {
    min-height: 390px;
    grid-template-columns: 1fr;
    gap: 32px;
    padding-block: 65px;
  }

  .footer-line {
    grid-column: 1;
  }

  .footer-meta {
    justify-self: start;
    text-align: left;
  }

  .footer-bottom {
    min-height: 90px;
    grid-template-columns: 1fr auto;
  }
}

@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;
  }
}
