:root {
  --paper: #f6f5f0;
  --ink: #272923;
  --muted: #70726a;
  --orange: #ef5734;
  --line: #dedfd5;
  --white: #fffefa;
}

* {
  box-sizing: border-box;
}

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

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

body.dialog-open {
  overflow: hidden;
}

button, input, select, textarea {
  font: inherit;
}

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

button, a, input, select, textarea {
  touch-action: manipulation;
}

button {
  cursor: pointer;
}

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

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

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

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

[hidden] {
  display: none !important;
}

::selection {
  background: #ef573439;
}

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

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

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

.site-header {
  position: relative;
  z-index: 10;
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 108px;
  border-bottom: 1px solid var(--line);
}

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

.brand-symbol {
  display: flex;
  gap: 4px;
  width: 36px;
  height: 38px;
  transform: skewY(-23deg);
  align-items: flex-start;
}

.brand-symbol i {
  display: block;
  width: 8px;
  height: 28px;
  background: var(--orange);
}

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

.brand-symbol i:nth-child(3) {
  height: 22px;
}

.brand-word {
  font-size: 39px;
  font-weight: 700;
  line-height: .92;
  letter-spacing: -2.2px;
}

.brand-dot {
  color: var(--orange);
}

.brand-word small {
  display: block;
  margin-top: 8px;
  font-size: 8px;
  font-weight: 500;
  letter-spacing: 2px;
}

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

.desktop-nav a {
  position: relative;
  padding: 12px 0;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: 5px;
  left: 0;
  height: 1px;
  background: var(--orange);
  content: '';
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .2s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
}

.header-cta {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-width: 128px;
  padding: 13px 18px;
  border: 1px solid #a9aca0;
  border-radius: 3px;
  font-size: 13px;
  transition: background .2s;
}

.header-cta:hover {
  background: #e9e9e1;
}

.header-cta span {
  font-size: 20px;
  line-height: 1;
}

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

.hero {
  display: grid;
  grid-template-columns: 1.08fr 1fr;
  align-items: center;
  gap: 60px;
  padding-top: 62px;
  padding-bottom: 70px;
}

.eyebrow, .section-label {
  display: flex;
  align-items: center;
  gap: 9px;
  font-family: 'Courier New', monospace;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.1px;
  line-height: 1.6;
}

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

.hero h1 {
  margin-top: 29px;
  font-size: clamp(60px, 6.1vw, 88px);
  font-weight: 500;
  letter-spacing: -5.5px;
  line-height: 1.025;
}

.orange-text {
  color: var(--orange);
}

.hero-description {
  margin-top: 27px;
  color: #686b61;
  font-size: 15px;
  line-height: 1.85;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 25px;
  min-height: 50px;
  padding: 14px 19px;
  border: 0;
  border-radius: 3px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.5;
  transition: background .2s, transform .2s;
}

.button span {
  font-size: 21px;
  line-height: 1;
}

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

.button-primary {
  background: var(--orange);
  color: #fff;
}

.button-primary:hover {
  background: #d74120;
}

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

.text-link:hover {
  color: #c74325;
}

.text-link span {
  font-size: 19px;
}

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

.little-cross {
  color: #6b715b;
  font-size: 20px;
}

.hero-visual {
  position: relative;
  align-self: center;
  height: 540px;
  margin-left: 10px;
  padding-bottom: 20px;
}

.hero-photo {
  position: relative;
  height: 100%;
  overflow: hidden;
  border-radius: 4px;
}

.hero-photo::after {
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 67%, #1f211d44);
  content: '';
  pointer-events: none;
}

.hero-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: 50% 43%;
}

.hero-photo figcaption {
  position: absolute;
  z-index: 1;
  top: 22px;
  left: 22px;
  display: flex;
  align-items: center;
  gap: 7px;
  padding: 9px 10px;
  border: 1px solid #ffffff50;
  border-radius: 2px;
  background: #252b2650;
  color: white;
  font-family: 'Courier New', monospace;
  font-size: 8px;
  letter-spacing: 1px;
  backdrop-filter: blur(12px);
}

.photo-dot {
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: #fff;
}

.insight-card {
  position: absolute;
  z-index: 2;
  bottom: 50px;
  left: -41px;
  width: 252px;
  padding: 20px 22px 17px;
  border: 1px solid #eeeee8;
  border-radius: 5px;
  background: var(--white);
  box-shadow: 0 10px 25px #2b2c2510;
  transform: rotate(-3deg);
}

.insight-card-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: #676a5f;
  font-family: 'Courier New', monospace;
  font-size: 8px;
  letter-spacing: .5px;
}

.mini-arrow {
  display: grid;
  width: 24px;
  height: 24px;
  place-items: center;
  border-radius: 50%;
  background: #f2f1e9;
  color: var(--orange);
  font-size: 17px;
}

.insight-card p {
  margin-top: 9px;
  font-size: 16px;
  letter-spacing: -.5px;
}

.chart {
  display: flex;
  align-items: flex-end;
  gap: 9px;
  height: 80px;
  margin-top: 14px;
  padding-inline: 5px;
  border-bottom: 1px solid var(--line);
  background: repeating-linear-gradient(to top, transparent 0, transparent 25px, #eeeeea 25px, #eeeeea 26px);
}

.chart > span {
  position: relative;
  flex: 1;
  height: var(--bar);
  border-radius: 2px 2px 0 0;
  background: #d3d6c6;
}

.chart > span:nth-last-child(2) {
  background: #a2a88d;
}

.chart > span:last-child {
  background: var(--orange);
}

.chart-caption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  margin-top: 11px;
  color: #777a6e;
  font-size: 7px;
}

.chart-caption span:last-child {
  font-family: 'Courier New', monospace;
  font-size: 6px;
}

.visual-index {
  position: absolute;
  right: 0;
  bottom: 0;
  color: #828577;
  font-family: 'Courier New', monospace;
  font-size: 8px;
  letter-spacing: .9px;
}

.principles {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: center;
  gap: 20px;
  min-height: 90px;
  border-block: 1px solid var(--line);
}

.principles > span {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  color: #626659;
  font-size: 12px;
}

.principles > span:first-child {
  justify-content: flex-start;
}

.principles > span:last-child {
  justify-content: flex-end;
}

.principles i {
  color: #828a6b;
  font-size: 26px;
  font-style: normal;
  font-weight: 400;
}

.section-space {
  padding-top: 100px;
  padding-bottom: 100px;
}

h2 {
  font-size: clamp(35px, 3.5vw, 49px);
  font-weight: 400;
  line-height: 1.13;
  letter-spacing: -2.1px;
}

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

.about-section > .section-label {
  align-self: start;
  padding-top: 9px;
}

.about-columns {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 43px;
  margin-top: 30px;
}

.about-columns p, .section-heading > p {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.85;
}

.about-link {
  margin-top: 26px;
  padding-bottom: 7px;
  border-bottom: 1px solid #b7b9aa;
}

.expertise-section {
  background: #eceee5;
}

.section-heading {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 30px;
  margin-top: 23px;
  margin-bottom: 43px;
}

.section-heading > p {
  padding-bottom: 5px;
  padding-right: 12px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  align-items: start;
  gap: 20px;
}

.service-card {
  padding: 30px 30px 0;
  border: 1px solid #e0e2d7;
  border-radius: 4px;
  background: var(--paper);
  transition: border-color .2s, box-shadow .2s;
}

.service-card:hover, .service-card:focus-within {
  border-color: #bfc4b0;
  box-shadow: 0 5px 15px #4b523707;
}

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

.service-top svg {
  width: 40px;
  height: 40px;
  color: #747e60;
}

.service-top > span {
  align-self: flex-start;
  color: #939888;
  font-family: 'Courier New', monospace;
  font-size: 10px;
}

.service-card h3 {
  font-size: 27px;
  font-weight: 400;
  line-height: 1.15;
  letter-spacing: -1px;
}

.service-card > p {
  min-height: 114px;
  margin-top: 19px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.8;
}

.service-toggle {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  min-height: 66px;
  margin-top: 10px;
  padding-block: 15px;
  border: 0;
  border-top: 1px solid var(--line);
  background: transparent;
  text-align: left;
  font-size: 12px;
}

.toggle-symbol {
  color: var(--orange);
  font-size: 22px;
}

.service-toggle:hover {
  color: #c74325;
}

.service-details {
  padding-bottom: 20px;
  color: #616759;
  font-size: 12px;
  line-height: 1.7;
}

.service-details h4 {
  font-weight: 600;
}

.service-details ul {
  margin: 12px 0 18px;
  padding-left: 16px;
  list-style: disc;
}

.service-details li + li {
  margin-top: 6px;
}

.inline-cta {
  padding: 0;
  border: 0;
  background: transparent;
  color: #b63d21;
  text-decoration: underline;
  text-underline-offset: 4px;
}

.process-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 48px;
}

.process-number {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-bottom: 20px;
  border-bottom: 1px solid #cdd1c1;
  color: #7e856d;
  font-family: 'Courier New', monospace;
  font-size: 12px;
}

.process-number > span {
  color: #7e856d;
  font-size: 21px;
}

.process-grid h3 {
  margin-top: 24px;
  font-size: 21px;
  font-weight: 400;
  letter-spacing: -.6px;
}

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

.review-section {
  padding-block: 78px;
  background: #2d332b;
  color: var(--paper);
}

.review-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
}

.review-visual {
  position: relative;
  height: 450px;
}

.review-visual img {
  width: 100%;
  height: 100%;
  border-radius: 3px;
  object-fit: cover;
  object-position: 43% 50%;
}

.review-image-label {
  position: absolute;
  right: 18px;
  bottom: 18px;
  left: 18px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 15px 18px;
  border: 1px solid #f8f8ed40;
  background: #2b30285c;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 1.5px;
  backdrop-filter: blur(14px);
}

.review-copy > .section-label {
  color: #bcc3b1;
  font-size: 9px;
}

.review-copy h2 {
  margin-top: 20px;
  font-size: 52px;
}

.review-description {
  max-width: 420px;
  margin-top: 23px;
  color: #c5cabe;
  font-size: 13px;
  line-height: 1.85;
}

.review-list {
  display: grid;
  gap: 13px;
  margin: 24px 0 30px;
  padding: 0;
  list-style: none;
  font-size: 12px;
}

.review-list span {
  margin-right: 14px;
  color: #aab599;
  font-family: 'Courier New', monospace;
  font-size: 10px;
}

.contact-section {
  display: grid;
  grid-template-columns: 1.4fr 1fr;
  align-items: center;
  gap: 80px;
  padding-top: 110px;
  padding-bottom: 110px;
}

.contact-intro h2 {
  margin-top: 24px;
  font-size: clamp(40px, 4vw, 58px);
}

.contact-intro > p:not(.section-label) {
  margin-top: 23px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.8;
}

.button-dark {
  margin-top: 27px;
  background: var(--ink);
  color: var(--white);
}

.button-dark:hover {
  background: #464d3d;
}

.contact-details {
  min-width: 0;
  padding-top: 28px;
}

.contact-details h3 {
  margin-bottom: 27px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .5px;
}

.contact-item {
  margin-top: 22px;
}

.contact-item > span {
  display: block;
  margin-bottom: 9px;
  color: #808575;
  font-family: 'Courier New', monospace;
  font-size: 9px;
  letter-spacing: 1.2px;
}

.contact-item a {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  max-width: 363px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--line);
  font-size: 15px;
  overflow-wrap: anywhere;
}

.contact-item a:hover {
  color: #c74325;
}

.contact-item i {
  color: var(--orange);
  font-size: 18px;
  font-style: normal;
}

.contact-item address {
  color: #62685b;
  font-size: 12px;
  font-style: normal;
  line-height: 1.85;
}

.site-footer {
  background: #e9ebe2;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 95px;
  gap: 20px;
}

.footer-brand {
  font-size: 31px;
  font-weight: 700;
  letter-spacing: -2px;
}

.footer-brand span {
  color: var(--orange);
}

.footer-inner p {
  color: #787c70;
  font-size: 10px;
}

.back-to-top {
  display: inline-flex;
  gap: 16px;
  font-size: 11px;
}

#consultation-dialog {
  width: min(560px, calc(100% - 32px));
  max-height: calc(100svh - 32px);
  margin: auto;
  padding: 40px;
  overflow-y: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--paper);
  color: var(--ink);
  box-shadow: 0 24px 100px #00000030;
}

#consultation-dialog::backdrop {
  background: #20251d99;
  backdrop-filter: blur(5px);
}

.dialog-close {
  position: absolute;
  top: 10px;
  right: 13px;
  width: 40px;
  height: 40px;
  border: 0;
  background: transparent;
  color: #707569;
  font-size: 27px;
}

#consultation-dialog .section-label {
  margin-top: 10px;
  font-size: 8px;
}

#consultation-dialog h2 {
  margin-top: 20px;
  font-size: 39px;
}

#dialog-description {
  margin-top: 18px;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.7;
}

#consultation-form {
  margin-top: 24px;
}

.form-row {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 16px;
}

#consultation-form label {
  display: block;
  margin-bottom: 17px;
  font-size: 11px;
  font-weight: 600;
}

#consultation-form input, #consultation-form select, #consultation-form textarea {
  display: block;
  width: 100%;
  margin-top: 8px;
  padding: 11px 12px;
  border: 1px solid #d4d7c9;
  border-radius: 3px;
  background: var(--white);
  color: var(--ink);
  font-size: 14px;
  font-weight: 400;
  line-height: 1.5;
}

#consultation-form textarea {
  resize: vertical;
}

#consultation-form input:focus, #consultation-form select:focus, #consultation-form textarea:focus {
  outline: 2px solid #7d886e;
  outline-offset: 1px;
}

.optional {
  color: var(--muted);
  font-weight: 400;
}

.form-note {
  color: #707569;
  font-size: 10px;
  line-height: 1.7;
}

.form-submit {
  width: 100%;
  margin-top: 18px;
}

.form-result {
  margin-top: 20px;
  padding: 16px;
  border: 1px solid #cad3be;
  border-radius: 3px;
  background: #e9eddf;
  font-size: 12px;
  line-height: 1.7;
}

.form-result .text-link {
  margin-top: 10px;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.draft-help {
  margin-top: 12px;
  overflow-wrap: anywhere;
  color: #626b54;
  font-size: 11px;
}

#copy-enquiry {
  padding: 0;
  border: 0;
  background: transparent;
  text-decoration: underline;
  text-underline-offset: 3px;
}

@media (min-width: 1600px) {
  .hero {
    gap: 90px;
  }

  .hero-visual {
    height: 590px;
  }
}

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

  .hero {
    gap: 35px;
    padding-top: 50px;
    padding-bottom: 55px;
  }

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

  .hero-visual {
    height: 530px;
  }

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

  .hero-description {
    font-size: 14px;
  }

  .desktop-break {
    display: none;
  }

  .hero-actions {
    gap: 20px;
  }

  .insight-card {
    left: -25px;
    width: 223px;
  }

  .principles > span {
    gap: 7px;
    font-size: 10px;
  }

  .service-card {
    padding: 25px 22px 0;
  }

  .service-card > p {
    min-height: 136px;
  }

  .review-grid, .contact-section {
    gap: 45px;
  }

  .review-visual {
    height: 430px;
  }

  .process-grid {
    gap: 30px;
  }
}

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

  .header-inner {
    height: 88px;
  }

  .brand-word {
    font-size: 33px;
  }

  .brand-symbol {
    transform: scale(.85) skewY(-23deg);
    transform-origin: left;
    margin-right: -4px;
  }

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

  .menu-toggle {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    border: 1px solid #c8ccbd;
    border-radius: 3px;
    background: transparent;
  }

  .menu-toggle > span {
    width: 18px;
    height: 1px;
    background: var(--ink);
    transition: transform .2s;
  }

  .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:not([hidden]) {
    position: absolute;
    top: 88px;
    right: 0;
    left: 0;
    display: grid;
    padding: 14px 22px 22px;
    border-bottom: 1px solid var(--line);
    background: var(--paper);
    box-shadow: 0 16px 25px #3036290f;
  }

  .mobile-nav a {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-bottom: 1px solid var(--line);
    font-size: 15px;
  }

  .hero {
    grid-template-columns: 1fr;
    gap: 42px;
    padding-top: 42px;
    padding-bottom: 44px;
  }

  .hero h1 {
    font-size: clamp(57px, 9.5vw, 76px);
    letter-spacing: -3.5px;
  }

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

  .hero-description {
    max-width: 460px;
    font-size: 15px;
  }

  .hero-actions {
    gap: 22px;
  }

  .hero-note {
    margin-top: 23px;
    font-size: 10px;
  }

  .hero-visual {
    height: 460px;
    margin-left: 16px;
  }

  .hero-photo img {
    object-position: 50% 38%;
  }

  .insight-card {
    bottom: 42px;
    left: -13px;
    width: 235px;
  }

  .principles {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px 12px;
    padding-block: 25px;
  }

  .principles > span, .principles > span:last-child {
    justify-content: flex-start;
    font-size: 11px;
  }

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

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

  .about-columns {
    gap: 28px;
  }

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

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

  .service-card {
    padding: 26px 28px 0;
  }

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

  .service-card > p {
    min-height: 0;
    max-width: 560px;
    margin-bottom: 24px;
    font-size: 14px;
  }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .process-number {
    padding-bottom: 12px;
  }

  .process-grid h3 {
    margin-top: 20px;
  }

  .process-grid p {
    max-width: 100%;
    font-size: 14px;
  }

  .review-section {
    padding-block: 50px;
  }

  .review-grid, .contact-section {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .review-visual {
    height: 330px;
  }

  .review-copy h2 {
    font-size: 46px;
  }

  .review-description {
    max-width: 100%;
    font-size: 14px;
  }

  .review-list {
    font-size: 13px;
  }

  .contact-details {
    padding-top: 0;
  }

  .contact-item a {
    max-width: 100%;
  }

  .footer-inner {
    flex-wrap: wrap;
    padding-block: 24px;
  }

  .footer-inner p {
    order: 3;
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero h1 {
    font-size: 59px;
    letter-spacing: -3.8px;
  }

  .hero-actions {
    gap: 21px;
  }

  .hero-actions .text-link {
    padding-block: 5px;
  }

  .hero-visual {
    height: 400px;
  }

  .hero-photo figcaption {
    top: 15px;
    left: 13px;
    font-size: 6px;
    letter-spacing: .8px;
  }

  .principles > span {
    gap: 6px;
    font-size: 9px;
  }

  .principles i {
    font-size: 20px;
  }

  h2 {
    font-size: 36px;
    letter-spacing: -1.8px;
  }

  .about-columns {
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .review-visual {
    height: 300px;
  }

  .review-list {
    font-size: 11px;
  }

  .review-list span {
    margin-right: 9px;
  }

  .contact-intro h2 {
    font-size: 43px;
    letter-spacing: -2.3px;
  }

  #consultation-dialog {
    padding: 30px 22px;
  }

  #consultation-dialog h2 {
    font-size: 35px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }

  #consultation-form input, #consultation-form select, #consultation-form textarea {
    font-size: 16px;
  }
}

@media (max-width: 360px) {
  .hero h1 {
    font-size: 51px;
  }

  .hero .eyebrow {
    font-size: 7px;
  }

  .hero-note {
    font-size: 8px;
  }

  .contact-intro h2 {
    font-size: 38px;
  }
}

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

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

  .button:hover {
    transform: none;
  }
}
