:root {
  --paper: #f7f6f2;
  --ink: #282923;
  --muted: #6e7068;
  --orange: #b64b2a;
  --line: #dedfd6;
  --soft: #efefe9;
  font-family: Arial, Helvetica, sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}
* {
  box-sizing: border-box;
}
body {
  margin: 0;
  -webkit-font-smoothing: antialiased;
}
a {
  color: inherit;
  text-decoration: none;
}
button, input, select, textarea {
  font: inherit;
}
button, a, summary {
  -webkit-tap-highlight-color: transparent;
}
button, summary {
  cursor: pointer;
}
button {
  color: inherit;
}
button, input, select, textarea {
  border-radius: 0;
}
button:focus-visible, a:focus-visible, summary:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 6px;
}
::selection {
  color: var(--paper);
  background: var(--orange);
}
[hidden] {
  display: none !important;
}
h1, h2, h3, p {
  margin: 0;
}
body .container {
  width: calc(100% - 112px);
  max-width: 1328px;
  margin-inline: auto;
}
.flex {
  display: flex;
}
.grid {
  display: grid;
}
.items-center {
  align-items: center;
}
.justify-between {
  justify-content: space-between;
}
.flex-wrap {
  flex-wrap: wrap;
}
.skip-link {
  position: fixed;
  top: -80px;
  left: 20px;
  z-index: 30;
  padding: 12px 20px;
  color: white;
  background: var(--ink);
}
.skip-link:focus {
  top: 12px;
}
.site-header {
  border-bottom: 1px solid var(--line);
}
.header-inner {
  min-height: 104px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 15px;
}
.brand-mark {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 47px;
  font-weight: bold;
  letter-spacing: -5px;
  line-height: 1;
  padding-right: 5px;
}
.brand-mark > span, .footer-brand > span {
  color: var(--orange);
}
.brand-type {
  padding-left: 16px;
  border-left: 1px solid #cccdc4;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 1.7px;
}
.brand-type small {
  display: block;
  margin-top: 6px;
  font-size: 8px;
  font-weight: 400;
  letter-spacing: 2px;
  color: var(--muted);
}
.desktop-nav {
  gap: 36px;
  font-size: 12px;
}
.desktop-nav a, .back-top {
  transition: color 180ms ease;
}
.desktop-nav a:hover, .back-top:hover {
  color: var(--orange);
}
.header-cta {
  display: flex;
  gap: 39px;
  align-items: center;
  border: 1px solid #7f8177;
  padding: 13px 18px;
  font-size: 12px;
  transition: background 180ms ease, color 180ms ease;
}
.header-cta:hover {
  color: var(--paper);
  background: var(--ink);
}
.header-cta > span {
  font-size: 20px;
  line-height: 1;
}
.menu-toggle, .mobile-nav {
  display: none;
}
.hero {
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: 6%;
  padding-top: 48px;
  padding-bottom: 48px;
}
.hero-copy {
  padding-top: 14px;
}
.eyebrow {
  display: flex;
  align-items: center;
  gap: 9px;
  font-size: 9px;
  line-height: 1.6;
  letter-spacing: 1.7px;
  font-weight: 600;
}
.orange-square {
  width: 6px;
  height: 6px;
  flex-shrink: 0;
  background: var(--orange);
}
.hero h1 {
  margin-top: 30px;
  font-size: clamp(48px, 5.05vw, 76px);
  line-height: 1.07;
  font-weight: 400;
  letter-spacing: -3.6px;
}
h1 em, h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
  color: var(--orange);
}
.hero-description {
  max-width: 415px;
  margin-top: 27px;
  font-size: 14px;
  line-height: 1.85;
  color: var(--muted);
}
.hero-actions {
  margin-top: 31px;
  gap: 25px;
}
.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 34px;
  padding: 17px 21px;
  border: 1px solid transparent;
  font-size: 12px;
  line-height: 1.4;
  transition: background 180ms ease, transform 180ms ease;
}
.button-orange {
  background: var(--orange);
  color: white;
}
.button-orange:hover {
  background: #963c21;
  transform: translateY(-2px);
}
.button > span {
  font-size: 21px;
  line-height: .7;
}
.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 11px;
  padding-block: 6px;
  border-bottom: 1px solid #bbbdb2;
}
.text-link:hover {
  color: var(--orange);
  border-color: var(--orange);
}
.text-link > span {
  font-size: 18px;
}
.hero-note {
  display: flex;
  align-items: center;
  gap: 9px;
  margin-top: 56px;
  color: var(--muted);
  font-size: 10px;
}
.location-icon {
  color: var(--orange);
  font-size: 20px;
}
.hero-visual {
  position: relative;
  height: min(43vw, 606px);
  min-height: 480px;
  background: #d5c9b4;
}
.hero-visual > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 45%;
}
.image-caption {
  position: absolute;
  top: 22px;
  left: 23px;
  display: flex;
  gap: 9px;
  align-items: center;
  color: white;
  font-size: 8px;
  letter-spacing: 1.6px;
  text-shadow: 0 1px 5px #000;
}
.caption-dot {
  height: 5px;
  width: 5px;
  background: #e9bd8b;
  border-radius: 50%;
}
.perspective-card {
  display: flex;
  align-items: center;
  gap: 21px;
  position: absolute;
  bottom: 31px;
  left: -29px;
  width: 304px;
  min-height: 118px;
  padding: 25px 26px;
  background: var(--paper);
  box-shadow: 0 6px 24px #27251d0a;
}
.perspective-icon {
  color: var(--orange);
  font-size: 47px;
  font-weight: 300;
  line-height: 1;
}
.mini-label {
  display: block;
  font-size: 8px;
  letter-spacing: 1.5px;
  color: var(--muted);
}
.perspective-card p {
  margin-top: 9px;
  font-size: 17px;
  line-height: 1.3;
  letter-spacing: -.4px;
}
.card-corner {
  position: absolute;
  right: 12px;
  top: 8px;
  color: #91938a;
  font-size: 14px;
}
.image-index {
  position: absolute;
  right: 15px;
  bottom: 14px;
  font-size: 7px;
  letter-spacing: 1.5px;
  color: white;
  text-shadow: 0 1px 4px #000;
}
.principles {
  grid-template-columns: 1.12fr 1fr 1.16fr 1.1fr;
  align-items: center;
  gap: 25px;
  min-height: 113px;
  border-top: 1px solid var(--line);
}
.principles-intro {
  color: var(--muted);
  font-size: 8px;
  font-weight: 600;
  letter-spacing: 1.25px;
  line-height: 1.8;
}
.principles > div {
  display: flex;
  align-items: center;
  gap: 13px;
  font-size: 11px;
}
.principle-icon {
  color: var(--orange);
  font-size: 25px;
  font-weight: 300;
}
.section-space {
  padding-block: 88px;
}
.expertise {
  background: var(--soft);
  border-block: 1px solid var(--line);
}
.section-heading {
  align-items: flex-end;
  gap: 60px;
  margin-bottom: 45px;
}
main h2, dialog h2 {
  margin-top: 22px;
  font-size: clamp(32px, 3.3vw, 47px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -1.8px;
}
.section-intro {
  max-width: 340px;
  padding-bottom: 4px;
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}
.service-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 19px;
  align-items: start;
}
.service-card {
  background: var(--paper);
  border: 1px solid #ddded4;
  padding: 26px;
  transition: border-color 180ms ease;
}
.service-card:hover {
  border-color: #adad9b;
}
.service-card.featured {
  border-top: 2px solid var(--orange);
  padding-top: 25px;
}
.service-top {
  margin-bottom: 28px;
}
.service-number {
  font-size: 8px;
  letter-spacing: 1.3px;
  color: var(--muted);
}
.service-icon {
  width: 39px;
  height: 39px;
  stroke: var(--orange);
  stroke-width: 1.3;
  stroke-linecap: round;
  stroke-linejoin: round;
}
main h3 {
  font-size: 22px;
  font-weight: 400;
  letter-spacing: -.7px;
}
.service-card > p {
  margin-top: 14px;
  min-height: 100px;
  font-size: 12px;
  line-height: 1.85;
  color: var(--muted);
}
.service-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  min-height: 47px;
  align-content: start;
  margin-top: 17px;
}
.service-tags span {
  padding: 5px 7px;
  color: #616458;
  background: #eceee6;
  font-size: 8px;
  line-height: 1.3;
}
.service-details {
  margin-top: 10px;
  border-top: 1px solid var(--line);
}
.service-details summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 19px;
  font-size: 11px;
  list-style: none;
}
.service-details summary::-webkit-details-marker {
  display: none;
}
.service-details summary > span {
  color: var(--orange);
  font-size: 22px;
  line-height: 1;
  transition: transform 180ms ease;
}
.service-details[open] summary > span {
  transform: rotate(90deg);
}
.details-content {
  padding-top: 22px;
  font-size: 12px;
  line-height: 1.8;
  color: var(--muted);
}
.details-content ul {
  list-style-type: disc;
  padding-left: 17px;
  margin-block: 12px;
}
.details-content a {
  color: var(--orange);
  text-decoration: underline;
  text-underline-offset: 4px;
}
.expertise-note {
  margin-top: 26px;
  color: var(--muted);
  font-size: 10px;
}
.expertise-note > span {
  color: var(--orange);
  margin-right: 10px;
  font-size: 17px;
}
.about {
  grid-template-columns: 1fr 1fr;
  gap: 11%;
  padding-block: 103px;
}
.about h2 {
  line-height: 1.22;
}
.about-signature {
  margin-top: 48px;
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 28px;
  font-style: italic;
  letter-spacing: -1px;
}
.about-signature > span {
  display: block;
  margin-top: 8px;
  font-family: Arial, Helvetica, sans-serif;
  font-size: 9px;
  font-style: normal;
  letter-spacing: .3px;
  color: var(--muted);
}
.about-copy .large-copy {
  margin-top: 0;
  font-size: 23px;
  line-height: 1.5;
  letter-spacing: -.5px;
  color: var(--ink);
}
.about-copy > p {
  margin-top: 20px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.95;
}
.about-copy > a {
  margin-top: 23px;
}
.approach {
  background: #eaece3;
  border-block: 1px solid #dce0d3;
}
.process-grid {
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 53px;
  margin-top: 56px;
}
.process-line {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 19px;
  margin-bottom: 26px;
  border-bottom: 1px solid #c6ccbc;
  color: var(--orange);
  font-size: 12px;
}
.process-line > span:last-child {
  font-size: 24px;
  line-height: 1;
}
.process-grid h3 {
  font-size: 18px;
  letter-spacing: -.5px;
}
.process-grid p {
  margin-top: 15px;
  color: #686e60;
  font-size: 12px;
  line-height: 1.9;
}
.contact {
  color: var(--paper);
  background: #292c25;
  padding-bottom: 51px;
}
.contact .eyebrow {
  color: #c7cbbf;
}
.contact .orange-square {
  background: #d0815e;
}
.contact h2 {
  font-size: clamp(44px, 4.8vw, 68px);
  letter-spacing: -2.5px;
  line-height: 1.1;
}
.contact h2 em {
  color: #d8a183;
}
.contact-top > div > p:last-child {
  margin-top: 24px;
  color: #b8bdb1;
  font-size: 12px;
  line-height: 1.9;
}
.contact-orbit {
  width: 160px;
  height: 160px;
  margin-right: 68px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 13px;
  border: 1px solid #6d7463;
  border-radius: 50%;
  background: none;
  color: var(--paper);
  font-size: 12px;
  line-height: 1.5;
  transition: background 180ms ease, border-color 180ms ease;
}
.contact-orbit > span:first-child {
  font-size: 37px;
  line-height: 1;
  color: #d8a183;
}
.contact-orbit:hover {
  background: #3b4033;
  border-color: #d8a183;
}
.contact-details {
  grid-template-columns: 1.15fr 1fr 1fr;
  gap: 32px;
  border-top: 1px solid #4a4f42;
  margin-top: 66px;
  padding-top: 30px;
}
.contact-details .mini-label {
  margin-bottom: 14px;
  color: #b8bdb1;
}
.contact-details a, .contact-details address {
  font-size: 12px;
  font-style: normal;
  line-height: 1.9;
}
.contact-details a:hover {
  color: #d8a183;
}
.contact-details a > span {
  padding-left: 10px;
  color: #d8a183;
}
.site-footer {
  background: #22251f;
  color: #b8bdb1;
}
.site-footer .footer-inner {
  min-height: 91px;
  gap: 25px;
}
.footer-brand {
  color: var(--paper);
  font-size: 22px;
  letter-spacing: -1px;
}
.footer-inner > p, .back-top {
  font-size: 9px;
}
.back-top > span {
  padding-left: 19px;
  font-size: 17px;
}
dialog {
  width: min(540px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 0;
  border: 1px solid var(--line);
  color: var(--ink);
  background: var(--paper);
  overscroll-behavior: contain;
}
dialog::backdrop {
  background: #171b15b3;
  backdrop-filter: blur(5px);
}
.dialog-inner {
  position: relative;
  padding: 40px;
}
.dialog-close {
  position: absolute;
  top: 12px;
  right: 18px;
  padding: 2px 7px;
  border: 0;
  background: none;
  color: var(--muted);
  font-size: 29px;
}
dialog h2 {
  font-size: 36px;
  margin-top: 18px;
}
.dialog-intro, .form-note, #form-status {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.7;
  color: var(--muted);
}
#inquiry-form {
  margin-top: 23px;
}
#inquiry-form label {
  display: block;
  margin-bottom: 8px;
  font-size: 12px;
}
#inquiry-form label > span {
  color: var(--muted);
  font-size: 10px;
}
#inquiry-form input, #inquiry-form select, #inquiry-form textarea {
  width: 100%;
  margin-bottom: 19px;
  padding: 12px;
  border: 1px solid #b9bdae;
  background: transparent;
  font-size: 13px;
  line-height: 1.5;
}
#inquiry-form textarea {
  resize: vertical;
}
#inquiry-form input:focus, #inquiry-form select:focus, #inquiry-form textarea:focus {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
}
#inquiry-form .button {
  width: 100%;
}
.form-note {
  font-size: 10px;
}
#form-status {
  padding: 12px;
  background: #eaece3;
  color: var(--ink);
}
#form-status a {
  overflow-wrap: anywhere;
  text-decoration: underline;
}
body.dialog-open {
  overflow: hidden;
}
@media (min-width: 1600px) {
  .hero {
    padding-block: 60px;
  }
}
@media (max-width: 1100px) {
  body .container {
    width: calc(100% - 72px);
  }
  .desktop-nav {
    gap: 24px;
  }
  .hero {
    gap: 5%;
  }
  .hero h1 {
    font-size: 5.3vw;
    letter-spacing: -2.7px;
  }
  .hero-actions {
    gap: 16px;
  }
  .button {
    gap: 22px;
    padding-inline: 16px;
  }
  .hero-visual {
    min-height: 490px;
  }
  .hero-note {
    margin-top: 34px;
  }
  .service-card {
    padding: 22px;
  }
  .service-card.featured {
    padding-top: 21px;
  }
  .service-card > p {
    min-height: 130px;
  }
  .service-tags {
    min-height: 56px;
  }
  .principles {
    gap: 18px;
  }
  .principles > div {
    font-size: 10px;
  }
  .process-grid {
    gap: 30px;
  }
  .contact-orbit {
    margin-right: 25px;
  }
}
@media (max-width: 767px) {
  :root {
    scroll-padding-top: 20px;
  }
  body .container {
    width: calc(100% - 40px);
  }
  .header-inner {
    min-height: 84px;
  }
  .brand-mark {
    font-size: 40px;
  }
  .brand-type {
    font-size: 12px;
    letter-spacing: 1.4px;
  }
  .brand-type small {
    font-size: 7px;
    letter-spacing: 1.5px;
  }
  .site-header .desktop-nav, .header-cta {
    display: none;
  }
  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 43px;
    height: 43px;
    padding: 11px;
    border: 1px solid var(--line);
    background: transparent;
  }
  .menu-toggle > span {
    width: 100%;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }
  .menu-toggle[aria-expanded="true"] > span:first-child {
    transform: translateY(3.5px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] > span:last-child {
    transform: translateY(-3.5px) rotate(-45deg);
  }
  .mobile-nav {
    display: flex;
    flex-direction: column;
    padding: 5px 20px 22px;
    border-top: 1px solid var(--line);
  }
  .mobile-nav a {
    padding: 15px 2px;
    border-bottom: 1px solid var(--line);
    font-size: 14px;
  }
  .hero {
    grid-template-columns: 1fr;
    gap: 36px;
    padding-top: 34px;
    padding-bottom: 32px;
  }
  .hero-copy {
    padding-top: 0;
  }
  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.35px;
  }
  .hero h1 {
    margin-top: 25px;
    font-size: clamp(43px, 10.5vw, 70px);
    letter-spacing: -2.4px;
    line-height: 1.08;
  }
  .hero-description {
    max-width: 480px;
    margin-top: 23px;
    font-size: 14px;
  }
  .hero-actions {
    margin-top: 25px;
    gap: 20px;
  }
  .hero-actions .button {
    font-size: 11px;
  }
  .hero-actions .text-link {
    font-size: 10px;
    gap: 8px;
  }
  .hero-note {
    margin-top: 27px;
    font-size: 9px;
  }
  .hero-visual {
    height: 440px;
    min-height: 0;
  }
  .hero-visual > img {
    object-position: 50% 58%;
  }
  .perspective-card {
    left: -1px;
    bottom: 24px;
    width: 275px;
    min-height: 108px;
    padding: 21px;
  }
  .principles {
    grid-template-columns: 1fr 1fr;
    gap: 25px 15px;
    padding-block: 27px;
  }
  .principles-intro {
    font-size: 7px;
  }
  .principles > div {
    font-size: 9px;
    gap: 8px;
  }
  .principle-icon {
    font-size: 22px;
  }
  .section-space {
    padding-block: 59px;
  }
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
    gap: 23px;
    margin-bottom: 28px;
  }
  main h2 {
    margin-top: 18px;
    font-size: 35px;
    letter-spacing: -1.4px;
  }
  .section-intro {
    max-width: 430px;
    font-size: 13px;
  }
  .service-grid, .process-grid, .about, .contact-details {
    grid-template-columns: 1fr;
  }
  .service-card {
    padding: 26px;
  }
  .service-card.featured {
    padding-top: 25px;
  }
  .service-card > p {
    min-height: 0;
    font-size: 13px;
  }
  .service-tags {
    min-height: 35px;
  }
  .service-tags > span {
    font-size: 9px;
  }
  .service-details summary {
    font-size: 12px;
  }
  .expertise-note {
    font-size: 9px;
    line-height: 1.7;
  }
  .about {
    gap: 35px;
  }
  .about-signature {
    margin-top: 28px;
  }
  .about-copy > p {
    font-size: 13px;
  }
  .about-copy .large-copy {
    font-size: 23px;
  }
  .process-grid {
    margin-top: 35px;
    gap: 34px;
  }
  .process-line {
    margin-bottom: 19px;
  }
  .process-grid h3 {
    font-size: 21px;
  }
  .process-grid p {
    font-size: 13px;
  }
  .contact .contact-top {
    align-items: flex-start;
    flex-direction: column;
    gap: 29px;
  }
  .contact h2 {
    font-size: clamp(39px, 10.1vw, 64px);
    letter-spacing: -1.8px;
  }
  .contact-orbit {
    width: 123px;
    height: 123px;
    gap: 8px;
    margin-right: 0;
    font-size: 11px;
  }
  .contact-orbit > span:first-child {
    font-size: 28px;
  }
  .contact-details {
    margin-top: 38px;
    gap: 27px;
  }
  .contact-details .mini-label {
    margin-bottom: 8px;
  }
  .contact-details a, .contact-details address {
    font-size: 13px;
  }
  .site-footer .footer-inner {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 20px;
    padding-block: 26px;
  }
  .footer-inner > p {
    grid-row: 2;
    grid-column: 1 / -1;
    font-size: 9px;
  }
  .dialog-inner {
    padding: 35px 23px 25px;
  }
}
@media (prefers-reduced-motion: reduce) {
  :root {
    scroll-behavior: auto;
  }
  *, *::before, *::after {
    transition: none !important;
    animation: none !important;
  }
}
