:root {
  color-scheme: only light;
  --paper: #ffffff;
  --paper-bright: #ffffff;
  --ink: #171512;
  --muted: #675f56;
  --gold: #ba9456;
  --line: rgba(133, 104, 66, 0.25);
  --red: #a6060b;
  --serif: "Cormorant Garamond", "Bodoni 72", Didot, Georgia, "Times New Roman", serif;
  --sans: Montserrat, "Helvetica Neue", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: #ffffff;
  background-image: url("/assets/white-bg-v1.png");
  color-scheme: only light !important;
  forced-color-adjust: none;
}

body {
  margin: 0;
  color: var(--ink);
  background: #ffffff;
  background-image: url("/assets/white-bg-v1.png");
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
}

body.menu-open {
  overflow: hidden;
}

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

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

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

.site-shell {
  width: 100%;
  max-width: 520px;
  min-height: 100vh;
  margin: 0 auto;
  overflow-x: clip;
  background: var(--paper);
  background-image: url("/assets/white-bg-v1.png");
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  display: flex;
  height: 88px;
  align-items: center;
  justify-content: space-between;
  padding: 0 43px 0 38px;
  background-color: #ffffff !important;
  background-image: url("/assets/white-bg-v1.png") !important;
  border-bottom: 1px solid transparent;
  transition: border-color 180ms ease, box-shadow 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: rgba(126, 100, 65, 0.14);
  box-shadow: 0 8px 24px rgba(30, 23, 17, 0.08);
}

.brand {
  position: relative;
  display: block;
  overflow: hidden;
  background: transparent;
}

.brand img {
  position: static;
  width: 100%;
  height: 100%;
  max-width: 100%;
  object-fit: contain;
  transform: none;
}

.brand--header {
  width: 178px;
  height: 74px;
  margin-left: -13px;
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 28px;
}

.instagram-link {
  display: grid;
  width: 29px;
  height: 29px;
  place-items: center;
  color: var(--gold);
}

.instagram-link svg,
.contact-item svg {
  width: 100%;
  height: 100%;
  fill: none;
  stroke: currentColor;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 1.65;
}

.instagram-link .instagram-dot,
.contact-item .instagram-dot {
  fill: currentColor;
  stroke: none;
}

.menu-toggle {
  display: flex;
  width: 31px;
  height: 28px;
  flex-direction: column;
  justify-content: space-between;
  padding: 3px 0;
  border: 0;
  background: transparent;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 100%;
  height: 1.5px;
  background: var(--ink);
  transition: transform 180ms ease, opacity 180ms ease;
}

.menu-toggle[aria-expanded="true"] span:first-child {
  transform: translateY(9.8px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:last-child {
  transform: translateY(-9.8px) rotate(-45deg);
}

.mobile-menu {
  position: absolute;
  top: 88px;
  right: 0;
  left: 0;
  display: grid;
  gap: 0;
  padding: 14px 38px 24px;
  visibility: hidden;
  background-color: #ffffff !important;
  background-image: url("/assets/white-bg-v1.png") !important;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 180ms ease, transform 180ms ease, visibility 180ms ease;
  border-top: 1px solid var(--line);
}

.mobile-menu.is-open {
  visibility: visible;
  opacity: 1;
  transform: translateY(0);
}

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

.hero {
  position: relative;
  height: auto;
  aspect-ratio: 3 / 4;
  isolation: isolate;
  background: #927b66;
  color: #fff;
}

.hero-media,
.doctor > img {
  position: absolute;
  inset: 0;
  z-index: -2;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-media {
  object-position: center bottom;
}

.hero-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(86, 61, 41, 0.3), transparent 74%),
    linear-gradient(0deg, rgba(48, 33, 23, 0.58) 0%, rgba(77, 56, 40, 0.12) 62%, rgba(89, 65, 45, 0.03) 100%);
}

.hero-content {
  position: absolute;
  right: 0;
  bottom: 32px;
  left: 0;
  padding: 0 57px;
}

.eyebrow,
.section-label {
  margin: 0;
  color: var(--gold);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.eyebrow--light {
  color: #d1ad72;
  font-size: 13px;
  font-weight: 700;
}

.hero h1 {
  margin: 13px 0 17px;
  font-family: var(--serif);
  font-size: clamp(45px, 11.3vw, 58px);
  font-weight: 400;
  letter-spacing: 0.025em;
  line-height: 0.98;
  text-transform: uppercase;
}

.hero-copy {
  margin: 0 0 24px;
  font-size: 13px;
  font-weight: 400;
  line-height: 1.55;
}

.primary-button {
  display: flex;
  min-height: 55px;
  align-items: center;
  justify-content: space-between;
  padding: 0 23px;
  background: var(--red);
  color: #fff;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.055em;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(92, 0, 5, 0);
  transition: background-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.primary-button:hover,
.primary-button:focus-visible {
  background: #8f0005;
  box-shadow: 0 11px 24px rgba(82, 0, 5, 0.28);
  transform: translateY(-4px);
}

.primary-button:active {
  box-shadow: 0 5px 12px rgba(82, 0, 5, 0.2);
  transform: translateY(-1px);
}

.button-arrow {
  font-size: 23px;
  font-weight: 300;
}

.about {
  padding: 53px 57px 47px;
  background-color: #ffffff !important;
  background-image: url("/assets/white-bg-v1.png") !important;
}

.about-intro {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
  gap: 17px;
  align-items: start;
}

.about h2,
.contact h2 {
  margin: 21px 0 0;
  font-family: var(--serif);
  font-size: 28px;
  font-weight: 400;
  letter-spacing: 0.02em;
  line-height: 1.06;
  text-transform: uppercase;
}

.about .eyebrow {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.15em;
}

.gold-rule {
  display: block;
  width: 30px;
  height: 1px;
  margin: 20px 0 19px;
  background: var(--gold);
}

.about-copy > p:last-child {
  margin: 0;
  width: calc(181.82% + 17px);
  font-size: 13.5px;
  line-height: 1.65;
  text-align: center;
}

.about-image {
  width: 100%;
  aspect-ratio: 1 / 1;
  margin: 0;
  overflow: hidden;
  border-radius: 4px;
  justify-self: end;
  transform: translateX(57px);
}

.about-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.values {
  position: relative;
  margin-top: 43px;
  overflow: visible;
}

.values-track {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 25px;
  will-change: transform;
}

.value-card {
  will-change: transform, opacity;
}

.value-number {
  display: block;
  margin-bottom: 7px;
  color: var(--gold);
  font-family: var(--serif);
  font-size: 29px;
  font-weight: 400;
  line-height: 1;
}

.value-card h3 {
  margin: 0;
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.value-rule {
  display: block;
  width: 17px;
  height: 1px;
  margin: 9px 0 10px;
  background: #756a5d;
}

.value-card p {
  margin: 0;
  font-size: 9.1px;
  line-height: 1.48;
}

.doctor {
  position: relative;
  height: 410px;
  isolation: isolate;
  overflow: hidden;
  background: #f2e3d1;
  color: var(--ink);
}

.doctor > img {
  object-position: 69% center;
}

.doctor-shade {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 249, 241, 0.88) 0%, rgba(255, 247, 237, 0.5) 38%, transparent 68%),
    linear-gradient(0deg, rgba(238, 220, 201, 0.3), transparent 42%);
}

.doctor-caption {
  position: absolute;
  right: 37px;
  bottom: 29px;
  left: 37px;
}

.doctor-caption h2 {
  margin: 0 0 8px;
  font-family: var(--serif);
  font-size: 40px;
  font-weight: 400;
  line-height: 0.95;
}

.doctor-caption p {
  margin: 0;
  font-size: 12px;
  line-height: 1.45;
}

.doctor-caption .doctor-role {
  color: #8d6b36;
  font-weight: 700;
}

.doctor-specialty {
  margin-top: 3px !important;
  color: #322b24;
  font-weight: 600;
}

.portfolio {
  padding: 48px 40px 53px;
  background-color: #ffffff !important;
  background-image: url("/assets/white-bg-v1.png") !important;
}

.portfolio-heading {
  margin-bottom: 25px;
}

.portfolio-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 34px;
  font-weight: 400;
  line-height: 1;
}

.portfolio-viewport {
  overflow: hidden;
  border-radius: 5px;
  background: #ffffff;
  touch-action: pan-y;
  transition: height 420ms cubic-bezier(0.22, 0.75, 0.25, 1);
}

.portfolio-track {
  display: flex;
  align-items: flex-start;
  transition: transform 420ms cubic-bezier(0.22, 0.75, 0.25, 1);
  will-change: transform;
}

.portfolio-slide {
  display: block;
  flex: 0 0 100%;
  min-width: 100%;
  margin: 0;
  background: #ffffff;
}

.portfolio-slide img {
  width: 100%;
  height: auto;
}

.portfolio-dots {
  display: flex;
  justify-content: center;
  gap: 9px;
  margin-top: 18px;
}

.portfolio-dots button {
  width: 27px;
  height: 2px;
  padding: 0;
  border: 0;
  background: #d6c6ae;
  cursor: pointer;
  transition: width 180ms ease, background-color 180ms ease;
}

.portfolio-dots button[aria-current="true"] {
  width: 42px;
  background: var(--gold);
}

.services {
  padding: 42px 40px 48px;
  background-color: #ffffff !important;
  background-image: url("/assets/white-bg-v1.png") !important;
}

.section-label {
  font-size: 10px;
}

.direction-list {
  margin: 10px 0 0;
  padding: 0;
  list-style: none;
}

.direction-item {
  border-bottom: 1px solid var(--line);
}

.direction-trigger {
  display: grid;
  width: 100%;
  min-height: 45px;
  grid-template-columns: 1fr 25px;
  align-items: center;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--ink);
  cursor: pointer;
  text-align: left;
}

.direction-name {
  font-family: var(--serif);
  font-size: 19px;
}

.direction-plus {
  position: relative;
  display: block;
  width: 17px;
  height: 17px;
  justify-self: end;
  transition: transform 260ms ease;
}

.direction-plus i {
  position: absolute;
  top: 8px;
  left: 2px;
  display: block;
  width: 13px;
  height: 1px;
  background: currentColor;
}

.direction-plus i:last-child {
  transform: rotate(90deg);
}

.direction-trigger[aria-expanded="true"] .direction-plus {
  transform: rotate(45deg);
}

.direction-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  transition: grid-template-rows 300ms ease, opacity 220ms ease;
}

.direction-panel > div {
  overflow: hidden;
}

.direction-panel p {
  margin: 0;
  padding: 0 34px 18px 0;
  color: var(--muted);
  font-size: 10.5px;
  line-height: 1.58;
}

.direction-panel.is-open {
  grid-template-rows: 1fr;
  opacity: 1;
}

.prices .section-label {
  margin-bottom: 7px;
}

.price-row {
  display: grid;
  min-height: 31px;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 12px;
  align-items: center;
  border-bottom: 1px solid var(--line);
  font-size: 10.5px;
}

.price-row strong {
  font-size: 10.5px;
  font-weight: 500;
  text-align: right;
}

.price-row--crown {
  grid-template-columns: 1.3fr 0.9fr auto;
  padding: 5px 0 0;
  border-bottom: 0;
  align-items: start;
  line-height: 1.55;
}

.price-row--crown strong {
  font-weight: 700;
}

.crown-types {
  font-size: 9.8px;
}

.promotion {
  position: relative;
  display: block;
  overflow: hidden;
  background: #68020c;
}

.promotion img {
  width: 100%;
  height: auto;
}

.promotion-button {
  position: absolute;
  left: 8.25%;
  bottom: 14.2%;
  display: flex;
  width: 38.55%;
  height: clamp(34px, 6.6vw, 43px);
  align-items: center;
  justify-content: space-between;
  padding: 0 4%;
  border: 1px solid #c39b5e;
  background: #6d000b;
  color: #fff;
  font-size: clamp(7.2px, 1.8vw, 10px);
  font-weight: 600;
  letter-spacing: 0.035em;
  text-transform: uppercase;
  box-shadow: 0 0 0 rgba(34, 0, 3, 0);
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.promotion-button span:last-child {
  font-size: 18px;
  font-weight: 300;
}

.promotion-button:hover,
.promotion-button:focus-visible {
  background: #82000d;
  box-shadow: 0 8px 20px rgba(25, 0, 2, 0.38);
  transform: translateY(-3px);
}

.promotion-button:active {
  transform: translateY(-1px);
}

.contact {
  padding: 25px 40px 14px;
  background-color: #ffffff !important;
  background-image: url("/assets/white-bg-v1.png") !important;
}

.contact-lead h2 {
  margin: 0;
  font-size: 34px;
  font-weight: 500;
  text-transform: none;
}

.contact-lead .gold-rule {
  margin: 14px 0 10px;
}

.contact-lead p {
  margin: 0;
  max-width: 390px;
  font-size: 12px;
  font-weight: 500;
  line-height: 1.62;
}

.contact-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: 25px;
  border-top: 1px solid var(--line);
}

.contact-item {
  display: flex;
  min-width: 0;
  flex-direction: column;
  align-items: center;
  padding: 13px 6px 12px;
  border-right: 1px solid var(--line);
  text-align: center;
}

.contact-item:last-child {
  border-right: 0;
}

.contact-item svg {
  width: 18px;
  height: 18px;
  margin-bottom: 9px;
  color: var(--gold);
}

.contact-item strong {
  display: block;
  min-height: 23px;
  font-size: 8.4px;
  font-weight: 700;
  line-height: 1.35;
}

.contact-item:first-child strong {
  font-size: 9.5px;
  font-weight: 800;
}

.contact-item span {
  display: block;
  margin-top: 3px;
  color: #4e4943;
  font-size: 6.8px;
  line-height: 1.45;
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr 126px 1fr;
  align-items: center;
  column-gap: 18px;
  padding-top: 1px;
}

.footer-line {
  height: 1px;
  background: var(--line);
}

.brand--footer {
  width: 126px;
  height: 58px;
}

.brand--footer img {
  width: 100%;
}

.site-footer p {
  grid-column: 1 / -1;
  margin: 0;
  color: #9b948c;
  font-size: 7.7px;
  text-align: center;
}

@media (max-width: 390px) {
  .site-header {
    height: 80px;
    padding: 0 27px;
  }

  .brand--header {
    width: 160px;
    height: 68px;
    margin-left: -14px;
  }

  .brand--header img {
    width: 100%;
  }

  .header-actions {
    gap: 22px;
  }

  .mobile-menu {
    top: 80px;
  }

  .hero-content,
  .about {
    padding-right: 35px;
    padding-left: 35px;
  }

  .hero-content {
    bottom: 29px;
  }

  .about-intro {
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 15px;
  }

  .about h2 {
    font-size: 23px;
  }

  .about .eyebrow {
    font-size: 12px;
  }

  .about-image {
    transform: translateX(35px);
  }

  .values-track {
    gap: 15px;
  }

  .doctor {
    height: 390px;
  }

  .doctor-caption {
    right: 28px;
    left: 28px;
  }

  .portfolio {
    padding-right: 28px;
    padding-left: 28px;
  }

  .services,
  .contact {
    padding-right: 28px;
    padding-left: 28px;
  }

  .contact-item {
    padding-right: 3px;
    padding-left: 3px;
  }
}

@media (min-width: 900px) {
  .site-shell {
    max-width: none;
    margin: 0;
  }

  .site-header {
    height: 104px;
    padding: 0 clamp(48px, 7vw, 112px);
  }

  .brand--header {
    width: 210px;
    height: 88px;
    margin-left: -12px;
  }

  .brand--header img {
    width: 100%;
  }

  .header-actions {
    gap: 38px;
  }

  .instagram-link {
    width: 32px;
    height: 32px;
  }

  .menu-toggle {
    width: 36px;
    height: 31px;
  }

  .mobile-menu {
    top: 104px;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    padding: 12px clamp(48px, 7vw, 112px) 22px;
  }

  .mobile-menu a {
    padding: 20px 16px 14px;
    font-size: 27px;
    text-align: center;
  }

  .hero {
    height: min(780px, calc(100vh - 104px));
    min-height: 650px;
    aspect-ratio: auto;
    overflow: hidden;
    background: #806b59;
  }

  .hero-media {
    right: 0;
    left: 0;
    width: 100%;
    object-position: center center;
  }

  .hero-shade {
    background:
      linear-gradient(90deg, #806b59 0%, #806b59 35%, rgba(128, 107, 89, 0.98) 44%, rgba(128, 107, 89, 0.5) 55%, rgba(128, 107, 89, 0.08) 73%, transparent 84%),
      linear-gradient(0deg, rgba(48, 33, 23, 0.28), transparent 58%);
  }

  .hero-content {
    top: 50%;
    right: auto;
    bottom: auto;
    left: clamp(48px, 7vw, 112px);
    width: min(38vw, 560px);
    padding: 0;
    transform: translateY(-50%);
  }

  .eyebrow,
  .section-label {
    font-size: 13px;
  }

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

  .hero h1 {
    margin: 22px 0 28px;
    font-size: clamp(66px, 6.3vw, 102px);
    line-height: 0.93;
  }

  .hero-copy {
    margin-bottom: 34px;
    font-size: 16px;
    line-height: 1.65;
  }

  .primary-button {
    width: min(100%, 440px);
    min-height: 66px;
    padding: 0 29px;
    font-size: 13px;
  }

  .about {
    padding: 120px clamp(48px, 7vw, 112px) 105px;
  }

  .about-intro,
  .values {
    width: min(100%, 1200px);
    margin-right: auto;
    margin-left: auto;
  }

  .about-intro {
    grid-template-columns: minmax(0, 1fr) minmax(380px, 0.88fr);
    gap: clamp(65px, 8vw, 125px);
    align-items: center;
  }

  .about h2 {
    margin-top: 28px;
    font-size: clamp(52px, 4.7vw, 74px);
    line-height: 0.98;
  }

  .about .eyebrow {
    font-size: 16px;
  }

  .about-copy > p:last-child {
    width: auto;
    max-width: 590px;
    font-size: 16px;
    line-height: 1.75;
    text-align: left;
  }

  .gold-rule {
    width: 44px;
    margin: 28px 0 26px;
  }

  .about-image {
    width: 100%;
    max-width: 500px;
    border-radius: 7px;
    transform: none;
  }

  .values {
    margin-top: 88px;
  }

  .values-track {
    gap: clamp(48px, 6vw, 88px);
  }

  .value-card {
    padding-top: 22px;
    border-top: 1px solid var(--line);
  }

  .value-number {
    margin-bottom: 14px;
    font-size: 52px;
  }

  .value-card h3 {
    font-size: 13px;
  }

  .value-rule {
    width: 27px;
    margin: 15px 0 17px;
  }

  .value-card p {
    max-width: 310px;
    font-size: 14px;
    line-height: 1.65;
  }

  .doctor {
    height: min(50vw, 720px);
    min-height: 570px;
  }

  .doctor > img {
    object-position: center center;
  }

  .doctor-shade {
    background:
      linear-gradient(90deg, rgba(255, 249, 241, 0.9) 0%, rgba(255, 247, 237, 0.52) 35%, transparent 62%),
      linear-gradient(0deg, rgba(238, 220, 201, 0.18), transparent 44%);
  }

  .doctor-caption {
    top: 50%;
    right: auto;
    bottom: auto;
    left: clamp(48px, 7vw, 112px);
    width: min(34vw, 470px);
    transform: translateY(-50%);
  }

  .doctor-caption h2 {
    margin-bottom: 14px;
    font-size: clamp(60px, 5.2vw, 84px);
  }

  .doctor-caption p {
    font-size: 17px;
  }

  .doctor-specialty {
    margin-top: 5px !important;
  }

  .portfolio {
    padding: 105px max(7vw, calc((100vw - 1200px) / 2)) 110px;
  }

  .portfolio-heading,
  .portfolio-viewport,
  .portfolio-dots {
    width: min(100%, 1200px);
    margin-right: auto;
    margin-left: auto;
  }

  .portfolio-heading {
    margin-bottom: 40px;
  }

  .portfolio-heading h2 {
    margin-top: 0;
    font-size: clamp(54px, 4.7vw, 72px);
  }

  .portfolio-viewport {
    max-width: 900px;
  }

  .portfolio-dots {
    margin-top: 24px;
  }

  .services {
    display: block;
    padding: 115px max(7vw, calc((100vw - 1200px) / 2)) 110px;
  }

  .services > .section-label {
    display: block;
    width: min(100%, 900px);
    margin-right: auto;
    margin-left: auto;
  }

  .direction-list {
    width: min(100%, 900px);
    margin: 18px auto 0;
  }

  .direction-trigger {
    min-height: 72px;
  }

  .direction-name {
    font-size: 29px;
  }

  .direction-plus {
    width: 21px;
    height: 21px;
  }

  .direction-plus i {
    top: 10px;
    width: 17px;
  }

  .direction-panel p {
    max-width: 610px;
    padding: 0 52px 25px 0;
    font-size: 14px;
    line-height: 1.7;
  }

  .promotion-button {
    height: 12.9%;
    min-height: 70px;
    max-height: 100px;
    padding: 0 3.2%;
    font-size: clamp(14px, 1.55vw, 24px);
  }

  .promotion-button span:last-child {
    font-size: clamp(28px, 2.5vw, 40px);
  }

  .contact {
    padding: 90px clamp(48px, 7vw, 112px) 30px;
  }

  .contact-lead,
  .contact-grid,
  .site-footer {
    width: min(100%, 1200px);
    margin-right: auto;
    margin-left: auto;
  }

  .contact-lead h2 {
    font-size: 64px;
    font-weight: 500;
    line-height: 1;
  }

  .contact-lead .gold-rule {
    margin: 24px 0 20px;
  }

  .contact-lead p {
    max-width: 600px;
    font-size: 17px;
    font-weight: 500;
    line-height: 1.7;
  }

  .contact-grid {
    margin-top: 58px;
  }

  .contact-item {
    padding: 29px 16px 31px;
  }

  .contact-item svg {
    width: 28px;
    height: 28px;
    margin-bottom: 17px;
  }

  .contact-item strong {
    min-height: 37px;
    font-size: 13px;
  }

  .contact-item:first-child strong {
    font-size: 15px;
  }

  .contact-item span {
    margin-top: 7px;
    font-size: 11px;
  }

  .site-footer {
    grid-template-columns: 1fr 210px 1fr;
    column-gap: 30px;
    margin-top: 15px;
  }

  .brand--footer {
    width: 210px;
    height: 88px;
  }

  .brand--footer img {
    width: 100%;
  }

  .site-footer p {
    font-size: 10px;
  }
}

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

  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition: none !important;
  }
}

@media (prefers-color-scheme: dark) {
  :root {
    color-scheme: only light;
  }

  html,
  body,
  .site-shell,
  .site-header,
  .mobile-menu,
  .about,
  .portfolio,
  .services,
  .contact {
    background-color: #ffffff !important;
    background-image: url("/assets/white-bg-v1.png") !important;
    color: var(--ink);
  }
}
