:root {
  --paper: #f7f6f2;
  --ink: #252723;
  --muted: #70716b;
  --accent: #b95232;
  --line: #dddfd7;
  --panel: #eeeee8;
  --dark: #272e29;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 32px;
}

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

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

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

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

button {
  font: inherit;
  cursor: pointer;
}

button, a, dialog {
  outline-offset: 5px;
}

:focus-visible {
  outline: 2px solid var(--accent);
}

button svg, a svg {
  pointer-events: none;
}

::selection {
  background: #e8bba6;
  color: var(--ink);
}

.container {
  width: calc(100% - 112px);
  max-width: 1280px;
  margin-inline: auto;
}

.svg-definitions {
  position: absolute;
  width: 0;
  height: 0;
  overflow: hidden;
}

.icon {
  width: 20px;
  height: 20px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.5;
  flex-shrink: 0;
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 20px;
  padding: 14px 20px;
  z-index: 100;
  background: var(--ink);
  color: white;
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  border-bottom: 1px solid var(--line);
}

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

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

.brand-symbol {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  width: 38px;
  height: 37px;
  transform: skewY(-12deg);
}

.brand-symbol i {
  width: 9px;
  height: 34px;
  background: var(--accent);
}

.brand-symbol i:nth-child(2) {
  height: 25px;
}

.brand-name {
  font-size: 23px;
  font-weight: 700;
  line-height: 1;
  letter-spacing: 2.2px;
}

.brand-name > span {
  display: block;
  margin-top: 6px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 4.5px;
}

.desktop-nav {
  display: flex;
  gap: 36px;
  margin-left: 44px;
  font-size: 13px;
}

.desktop-nav a, .back-top {
  transition: color 180ms ease;
}

.desktop-nav a:hover, .back-top:hover {
  color: var(--accent);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 26px;
  min-height: 51px;
  padding: 14px 23px;
  border: 1px solid transparent;
  border-radius: 3px;
  font-size: 13px;
  font-weight: 500;
  line-height: 1.4;
  transition: background 180ms ease, transform 180ms ease;
}

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

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

.button-primary:hover {
  background: #9d4125;
}

.button-outline {
  border-color: #b8bbb1;
  min-height: 43px;
  padding: 10px 19px;
  gap: 31px;
}

.button-outline:hover {
  background: #eeeee6;
}

.menu-toggle, .mobile-menu {
  display: none;
}

.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 70px;
  padding-block: 53px 57px;
}

.eyebrow {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.55px;
  line-height: 1.6;
}

.status-dot, .small-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

.hero h1 {
  margin-top: 27px;
  font-size: clamp(62px, 6.4vw, 89px);
  font-weight: 500;
  letter-spacing: -4.7px;
  line-height: 1.045;
}

h1 em, h2 em {
  font-family: Georgia, 'Times New Roman', serif;
  font-weight: 400;
}

.hero h1 em {
  color: var(--accent);
}

.hero-description {
  max-width: 398px;
  margin-top: 25px;
  color: #686b63;
  font-size: 15px;
  line-height: 1.85;
}

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

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  font-size: 12px;
  font-weight: 500;
}

.text-link:hover {
  color: var(--accent);
}

.hero-note {
  display: flex;
  align-items: center;
  gap: 11px;
  margin-top: 34px;
  font-size: 10px;
  letter-spacing: .35px;
  color: var(--muted);
}

.note-line {
  width: 25px;
  height: 1px;
  background: var(--accent);
}

.hero-visual {
  position: relative;
  min-width: 0;
  align-self: stretch;
  min-height: 554px;
}

.hero-image {
  display: block;
  width: 100%;
  height: 100%;
  position: absolute;
  object-fit: cover;
  border-radius: 4px;
}

.image-label {
  position: absolute;
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 9px 11px;
  color: #f9f6ec;
  background: #25272385;
  border: 1px solid #ffffff40;
  backdrop-filter: blur(8px);
  border-radius: 2px;
  font-size: 8px;
  letter-spacing: 1.1px;
}

.image-label .small-dot {
  width: 4px;
  height: 4px;
  background: #e6c5a0;
}

.insight-card {
  position: absolute;
  left: -35px;
  bottom: 35px;
  width: 290px;
  padding: 23px 24px;
  border-radius: 3px;
  background: var(--paper);
  box-shadow: 0 8px 28px #2223180b;
}

.insight-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 15px;
  font-size: 8px;
  letter-spacing: 1.15px;
  color: #6c6f64;
}

.insight-top .icon {
  width: 15px;
  height: 15px;
  color: var(--accent);
}

.insight-bottom {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-top: 15px;
}

.insight-bottom p {
  font-size: 19px;
  line-height: 1.35;
  letter-spacing: -.5px;
}

.mini-chart {
  display: flex;
  align-items: flex-end;
  gap: 5px;
  height: 45px;
}

.mini-chart i {
  width: 10px;
  height: 17px;
  background: #d5c9b5;
  border-radius: 1px 1px 0 0;
}

.mini-chart i:nth-child(2) {
  height: 25px;
}

.mini-chart i:nth-child(3) {
  height: 35px;
}

.mini-chart i:nth-child(4) {
  height: 45px;
  background: var(--accent);
}

.photo-caption {
  position: absolute;
  right: 15px;
  bottom: 13px;
  font-size: 8px;
  color: #f7f3e8;
  letter-spacing: .3px;
  text-shadow: 0 1px 4px #000;
}

.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-block: 24px;
}

.principles > div {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  padding: 7px 0;
  font-size: 12px;
  letter-spacing: .15px;
}

.principles > div + div {
  border-left: 1px solid var(--line);
}

.principles span {
  color: var(--accent);
  font-size: 10px;
}

.section-space {
  padding-block: 100px;
}

.section-label {
  margin-bottom: 25px;
  color: #73766b;
}

.section-label > span {
  width: 19px;
  height: 1px;
  background: var(--accent);
}

h2 {
  font-size: clamp(32px, 3.2vw, 45px);
  line-height: 1.15;
  letter-spacing: -1.7px;
  font-weight: 500;
}

h2 em {
  color: #727768;
}

.about-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.about-copy {
  padding-top: 5px;
  color: #72746d;
  font-size: 14px;
  line-height: 1.9;
}

.about-copy .lead {
  color: var(--ink);
  font-size: 18px;
  line-height: 1.55;
  margin-bottom: 16px;
}

.about-copy p + p {
  margin-top: 13px;
}

.about-copy .text-link {
  color: var(--ink);
  margin-top: 22px;
}

.expertise-section {
  background: var(--panel);
}

.section-heading {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  gap: 40px;
  margin-bottom: 44px;
}

.section-heading > p {
  color: #72746d;
  font-size: 13px;
  line-height: 1.8;
  padding-bottom: 3px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 15px;
}

.service-card {
  display: flex;
  flex-direction: column;
  padding: 26px 23px 22px;
  border: 1px solid #dcded5;
  border-radius: 3px;
  transition: border-color 180ms ease, background 180ms ease;
}

.service-card:hover {
  border-color: #b9bdb0;
  background: #f7f6f2;
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 31px;
}

.service-top > span {
  color: #8b8e82;
  font-size: 10px;
}

.service-icon {
  width: 36px;
  height: 36px;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.2;
}

.service-card h3 {
  font-size: 22px;
  line-height: 1.25;
  font-weight: 500;
  letter-spacing: -.65px;
}

.service-card > p {
  margin-top: 16px;
  font-size: 12px;
  line-height: 1.9;
  color: #70746a;
}

.service-link {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
  margin-top: auto;
  padding: 30px 0 0;
  border: 0;
  background: none;
  font-size: 11px;
  text-align: left;
}

.service-link:hover {
  color: var(--accent);
}

.service-link .icon {
  width: 16px;
  height: 16px;
}

.approach-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
}

.approach-intro > p:not(.eyebrow) {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
  margin-top: 24px;
}

.approach-intro > a {
  margin-top: 27px;
}

.process-list article {
  display: flex;
  gap: 24px;
  padding: 27px 0;
  border-bottom: 1px solid var(--line);
}

.process-list article:first-child {
  padding-top: 0;
}

.process-number {
  padding-top: 4px;
  color: var(--accent);
  font-size: 11px;
}

.process-list h3 {
  font-size: 18px;
  font-weight: 500;
  letter-spacing: -.25px;
}

.process-list p {
  max-width: 390px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.85;
}

.review-banner {
  display: flex;
  align-items: center;
  gap: 29px;
  padding: 40px;
  margin-bottom: 90px;
  border-radius: 4px;
  background: #e7e9df;
}

.review-symbol {
  display: grid;
  place-items: center;
  flex-shrink: 0;
  width: 63px;
  height: 63px;
  border: 1px solid #c6ccbb;
  border-radius: 50%;
}

.review-symbol svg {
  width: 31px;
  height: 31px;
  fill: none;
  stroke: #6a725c;
  stroke-width: 1.2;
}

.review-banner .eyebrow {
  font-size: 8px;
  color: #6e765f;
}

.review-banner h2 {
  margin-top: 9px;
  font-size: 26px;
  letter-spacing: -.8px;
}

.review-banner h2 + p {
  margin-top: 10px;
  font-size: 12px;
  color: #6c7262;
}

.button-light {
  background: var(--paper);
  color: var(--ink);
  margin-left: auto;
  white-space: nowrap;
  font-size: 11px;
  gap: 20px;
}

.button-light:hover {
  background: white;
}

.contact-footer {
  padding-top: 75px;
  background: var(--dark);
  color: #f1f0e8;
}

.contact-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  padding-bottom: 54px;
}

.contact-top .eyebrow {
  font-size: 9px;
  color: #c4c8bb;
}

.contact-top .status-dot {
  background: #d77e5e;
}

.contact-top h2 {
  margin-top: 22px;
  font-size: clamp(40px, 4.2vw, 57px);
  line-height: 1.15;
  letter-spacing: -1.6px;
}

.contact-top h2 em {
  color: #bec6ae;
}

.contact-arrow {
  display: grid;
  place-items: center;
  width: 90px;
  height: 90px;
  border: 1px solid #78826b;
  border-radius: 50%;
  transition: color 180ms ease, background 180ms ease;
}

.contact-arrow:hover {
  background: #bec6ae;
  color: var(--dark);
}

.contact-arrow svg {
  width: 35px;
  height: 35px;
  stroke: currentColor;
  stroke-width: 1;
  fill: none;
}

.contact-grid {
  display: grid;
  grid-template-columns: 1.2fr 1fr 1fr;
  gap: 50px;
  padding-block: 36px 54px;
  border-top: 1px solid #485044;
}

.contact-label {
  color: #a5af99;
  font-size: 8px;
  letter-spacing: 1.35px;
  margin-bottom: 15px;
}

.contact-email {
  font-size: 17px;
  letter-spacing: -.2px;
}

.contact-phone {
  display: block;
  width: fit-content;
  font-size: 13px;
  margin-top: 10px;
  color: #c4cabb;
}

.contact-email:hover, .contact-phone:hover {
  text-decoration: underline;
  text-underline-offset: 4px;
}

address {
  font-size: 12px;
  line-height: 1.85;
  font-style: normal;
  color: #c4cabb;
}

.contact-note {
  justify-self: end;
}

.contact-note p {
  font-family: Georgia, 'Times New Roman', serif;
  font-size: 22px;
  font-style: italic;
  line-height: 1.35;
  color: #d2d8c8;
}

.contact-note span {
  display: block;
  margin-top: 10px;
  font-size: 8px;
  color: #a5af99;
}

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 100px;
  border-top: 1px solid #485044;
}

.footer-brand {
  transform: scale(.8);
  transform-origin: left center;
}

.footer-brand .brand-symbol i {
  background: #c5cdba;
}

.footer-bottom > p, .back-top {
  font-size: 9px;
  color: #b0b9a7;
}

.back-top {
  display: inline-flex;
  align-items: center;
  gap: 20px;
}

.back-top:hover {
  color: white;
}

.back-top .icon {
  width: 15px;
  height: 15px;
}

#service-dialog {
  width: min(580px, calc(100% - 32px));
  max-height: calc(100dvh - 40px);
  margin: auto;
  padding: 45px;
  border: 1px solid var(--line);
  border-radius: 5px;
  background: var(--paper);
  color: var(--ink);
  overflow-y: auto;
}

#service-dialog::backdrop {
  background: #1c241dc2;
  backdrop-filter: blur(4px);
}

body.dialog-open {
  overflow: hidden;
}

.dialog-close {
  position: absolute;
  right: 16px;
  top: 10px;
  border: 0;
  padding: 4px 9px;
  color: var(--muted);
  background: none;
  font-size: 30px;
}

#dialog-title {
  font-size: 36px;
  letter-spacing: -1px;
  margin-bottom: 21px;
}

#dialog-description {
  font-size: 14px;
  line-height: 1.8;
  color: var(--muted);
}

#service-dialog h3 {
  font-size: 14px;
  font-weight: 600;
  margin-top: 27px;
}

#dialog-deliverables {
  padding: 0;
  list-style: none;
  margin: 15px 0 26px;
}

#dialog-deliverables li {
  padding: 12px 0 12px 20px;
  position: relative;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  line-height: 1.6;
}

#dialog-deliverables li::before {
  content: '↗';
  position: absolute;
  left: 0;
  color: var(--accent);
}

.dialog-note {
  margin-top: 14px;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.7;
}

@media (min-width: 1500px) {
  .hero {
    padding-block: 65px;
  }

  .hero-visual {
    min-height: 595px;
  }
}

@media (max-width: 1100px) {
  .container {
    width: calc(100% - 72px);
  }

  .hero {
    gap: 42px;
  }

  .hero h1 {
    font-size: 67px;
    letter-spacing: -3.5px;
  }

  .hero-actions {
    flex-wrap: wrap;
    gap: 22px;
  }

  .hero-visual {
    min-height: 540px;
  }

  .desktop-nav {
    gap: 23px;
    margin-left: 0;
  }

  .about-section, .approach-section {
    gap: 50px;
  }

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

  .service-card {
    padding: 28px;
  }

  .service-card > p {
    max-width: 340px;
  }

  .review-banner {
    flex-wrap: wrap;
    padding: 32px;
  }

  .review-banner .button {
    margin-left: 92px;
  }

  .contact-grid {
    gap: 25px;
    grid-template-columns: 1.1fr 1fr;
  }

  .contact-note {
    display: none;
  }
}

@media (max-width: 768px) {
  html {
    scroll-padding-top: 24px;
  }

  .container {
    width: calc(100% - 40px);
  }

  .header-inner {
    min-height: 78px;
  }

  .brand {
    gap: 9px;
  }

  .brand-symbol {
    width: 31px;
    height: 31px;
    gap: 3px;
  }

  .brand-symbol i {
    height: 28px;
    width: 8px;
  }

  .brand-symbol i:nth-child(2) {
    height: 21px;
  }

  .brand-name {
    font-size: 20px;
  }

  .brand-name > span {
    font-size: 7px;
    letter-spacing: 4px;
  }

  .desktop-nav, .header-cta {
    display: none;
  }

  .menu-toggle {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 10px;
    border: 1px solid var(--line);
    border-radius: 3px;
    background: transparent;
  }

  .menu-toggle span {
    display: block;
    height: 1px;
    width: 22px;
    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-menu:not([hidden]) {
    display: grid;
    padding: 8px 20px 18px;
    border-top: 1px solid var(--line);
    background: var(--paper);
  }

  .mobile-menu a {
    padding: 14px 0;
    font-size: 14px;
    border-bottom: 1px solid var(--line);
  }

  .hero {
    grid-template-columns: 1fr;
    padding-block: 40px 31px;
    gap: 36px;
  }

  .eyebrow {
    font-size: 8px;
    letter-spacing: 1.3px;
  }

  .hero h1 {
    margin-top: 23px;
    font-size: clamp(55px, 11vw, 78px);
    line-height: 1.025;
    letter-spacing: -3px;
  }

  .hero-description {
    margin-top: 22px;
    max-width: 440px;
    font-size: 14px;
    line-height: 1.8;
  }

  .hero-actions {
    gap: 19px;
    margin-top: 25px;
  }

  .hero-actions .button {
    padding-inline: 17px;
    gap: 13px;
    font-size: 12px;
  }

  .hero-actions .text-link {
    gap: 9px;
    font-size: 11px;
  }

  .hero-note {
    margin-top: 24px;
    font-size: 9px;
  }

  .hero-visual {
    min-height: 0;
    height: 420px;
  }

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

  .insight-card {
    left: 16px;
    bottom: 25px;
    width: 266px;
    padding: 20px;
  }

  .image-label {
    left: 16px;
    top: 16px;
  }

  .photo-caption {
    font-size: 7px;
    bottom: 9px;
  }

  .principles {
    padding-block: 16px;
  }

  .principles > div {
    flex-direction: column;
    align-items: flex-start;
    padding: 4px 12px;
    gap: 9px;
    font-size: 10px;
    line-height: 1.6;
  }

  .principles > div:first-child {
    padding-left: 0;
  }

  .principles > div:last-child {
    padding-right: 0;
  }

  .section-space {
    padding-block: 65px;
  }

  .section-label {
    margin-bottom: 20px;
  }

  h2 {
    font-size: 34px;
    letter-spacing: -1.3px;
    line-height: 1.2;
  }

  .about-section, .approach-section {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .about-copy {
    font-size: 13px;
    padding: 0;
  }

  .about-copy .lead {
    font-size: 17px;
  }

  .section-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 22px;
    margin-bottom: 30px;
  }

  .section-heading > p br {
    display: none;
  }

  .services-grid {
    gap: 12px;
  }

  .service-card {
    padding: 22px 17px;
  }

  .service-top {
    margin-bottom: 23px;
  }

  .service-card h3 {
    font-size: 20px;
  }

  .service-card > p {
    font-size: 12px;
    line-height: 1.75;
  }

  .service-link {
    gap: 5px;
    font-size: 10px;
    line-height: 1.6;
    padding-top: 24px;
  }

  .process-list {
    margin-top: 15px;
  }

  .review-banner {
    gap: 20px;
    padding: 27px;
    margin-bottom: 60px;
  }

  .review-symbol {
    width: 48px;
    height: 48px;
  }

  .review-banner > div:nth-child(2) {
    flex-basis: 100%;
  }

  .review-banner h2 {
    font-size: 27px;
    line-height: 1.25;
  }

  .review-banner h2 + p {
    line-height: 1.7;
  }

  .review-banner .button {
    margin-left: 0;
    font-size: 12px;
  }

  .contact-footer {
    padding-top: 54px;
  }

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

  .contact-top h2 {
    font-size: 38px;
    letter-spacing: -1.4px;
  }

  .contact-top .eyebrow {
    font-size: 8px;
    letter-spacing: 1px;
  }

  .contact-arrow {
    display: none;
  }

  .contact-grid {
    grid-template-columns: 1fr;
    gap: 30px;
    padding-block: 31px 38px;
  }

  .contact-label {
    font-size: 9px;
  }

  .contact-email {
    font-size: 19px;
  }

  .contact-phone, address {
    font-size: 14px;
  }

  .footer-bottom {
    flex-wrap: wrap;
    gap: 22px;
    padding-block: 26px;
  }

  .footer-bottom > p {
    flex-basis: 100%;
    order: 3;
  }

  .footer-brand {
    transform: none;
  }

  #service-dialog {
    padding: 38px 24px 28px;
  }

  #dialog-title {
    font-size: 30px;
  }
}

@media (max-width: 370px) {
  .services-grid {
    grid-template-columns: 1fr;
  }

  .hero-visual {
    height: 375px;
  }

  .service-card {
    padding: 25px;
  }

  .contact-top h2 {
    font-size: 33px;
  }
}

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

  *, *::before, *::after {
    transition: none !important;
  }
}
