:root {
  color-scheme: light;
  --ink: #111111;
  --muted: #707070;
  --line: #dedede;
  --paper: #f4f4f4;
  --white: #ffffff;
  --black: #050505;
  --red: #e60012;
  --red-dark: #a7000d;
  --charcoal: #171717;
  --shadow: 0 24px 70px rgba(0, 0, 0, 0.24);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: "Yu Gothic", "Hiragino Kaku Gothic ProN", Meiryo, sans-serif;
  line-height: 1.7;
}

.contact,
.contact *,
.contact-form,
.contact-form *,
.request-buttons,
.request-buttons *,
.privacy-consent,
.privacy-consent * {
  cursor: auto !important;
}

input,
textarea {
  cursor: text !important;
}

select,
button,
a,
label,
input[type="checkbox"],
input[type="radio"],
.button {
  cursor: pointer !important;
}

html body .contact-form input:not([type="checkbox"]):not([type="radio"]),
html body .contact-form textarea {
  cursor: text !important;
}

html body .contact-form select,
html body .contact-form button,
html body .contact-form a,
html body .contact-form input[type="checkbox"],
html body .request-buttons a,
html body .privacy-consent input {
  cursor: pointer !important;
}

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

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

.mobile-only {
  display: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 68px;
  padding: 8px clamp(20px, 4vw, 48px);
  background: rgba(0, 0, 0, 0.86);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(16px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 13px;
  min-width: 0;
  color: var(--white);
  font-weight: 900;
  letter-spacing: 0.12em;
  white-space: nowrap;
}

.brand img {
  width: clamp(92px, 8vw, 124px);
  flex: 0 0 auto;
  image-rendering: auto;
}

.brand span,
.footer-logo span {
  position: relative;
  display: inline-block;
  padding: 0 0 7px;
  font-family: "Yu Mincho", "Hiragino Mincho ProN", "Hiragino Mincho Pro", "MS PMincho", serif;
  font-size: clamp(19px, 1.8vw, 27px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: 0.16em;
  text-shadow: 0 0 14px rgba(255, 255, 255, 0.36), 0 1px 8px rgba(0, 0, 0, 0.6);
}

.brand span::before,
.footer-logo span::before {
  content: "";
  position: absolute;
  right: 1.1em;
  bottom: 0;
  left: 0.15em;
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0));
  box-shadow: 0 0 12px rgba(255, 255, 255, 0.7);
}

.brand span::after,
.footer-logo span::after {
  content: "ADVANCE INC.";
  display: block;
  margin-top: 8px;
  color: rgba(255, 255, 255, 0.76);
  font-family: Arial, Helvetica, sans-serif;
  font-size: 11px;
  letter-spacing: 0.22em;
  text-shadow: none;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 40px);
  color: rgba(255, 255, 255, 0.84);
  font-size: 14px;
  font-weight: 800;
}

.site-nav a:hover {
  color: var(--red);
}

.hero {
  position: relative;
  min-height: calc(100vh - 68px);
  display: grid;
  align-items: end;
  padding: clamp(80px, 11vw, 150px) clamp(20px, 4vw, 56px) clamp(56px, 8vw, 96px);
  overflow: hidden;
  background: var(--black);
}

.hero-slideshow,
.hero-slide {
  position: absolute;
  inset: 0;
}

.hero-slideshow::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.78), rgba(0, 0, 0, 0.34) 42%, rgba(0, 0, 0, 0.08)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.04), rgba(0, 0, 0, 0.46));
}

.hero-slide {
  opacity: 0;
  background-position: center;
  background-size: cover;
  animation: heroFade 24s infinite;
  transform: scale(1.06);
}

.slide-living {
  background-image: url("hero-tower-living.png");
  animation-delay: 0s;
}

.slide-kitchen {
  background-image: url("hero-kitchen.png");
  animation-delay: 6s;
}

.slide-bath {
  background-image: url("hero-bath.png");
  animation-delay: 12s;
}

.slide-bedroom {
  background-image: url("hero-bedroom.png");
  animation-delay: 18s;
}

@keyframes heroFade {
  0% {
    opacity: 0;
    transform: scale(1.06) translate3d(0, 0, 0);
  }

  7%,
  25% {
    opacity: 1;
  }

  33%,
  100% {
    opacity: 0;
    transform: scale(1.14) translate3d(-2%, -1%, 0);
  }
}

.hero-content {
  position: relative;
  z-index: 3;
  max-width: 900px;
  color: var(--white);
  text-shadow: 0 3px 18px rgba(0, 0, 0, 0.88), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.vertical-title {
  position: relative;
  padding-left: 26px;
}

.vertical-title::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  width: 7px;
  height: clamp(86px, 11vw, 144px);
  background: var(--red);
  transform: translateY(-50%);
}

.hero-content.vertical-title::before {
  top: -10px;
  bottom: 10px;
  height: auto;
  transform: none;
}

.section-heading.vertical-title,
.map-heading.vertical-title {
  padding-left: 24px;
}

.section-heading.vertical-title::before,
.map-heading.vertical-title::before {
  height: calc(100% + 10px);
  min-height: 78px;
}

.company-content.vertical-title::before,
.contact-copy.vertical-title::before,
.service-band > .vertical-title::before {
  top: 45px;
  height: clamp(76px, 8vw, 112px);
  transform: translateY(-50%);
}

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

h1 {
  max-width: 920px;
  margin-bottom: 24px;
  font-size: clamp(42px, 6.4vw, 86px);
  line-height: 1.08;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(30px, 4.6vw, 58px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 10px;
  font-size: 21px;
  line-height: 1.35;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 940px;
  color: rgba(255, 255, 255, 0.86);
  font-size: clamp(15px, 1.72vw, 19px);
}

.keep-line {
  white-space: nowrap;
}

.section {
  padding: clamp(62px, 9vw, 112px) clamp(20px, 4vw, 56px);
}

.eyebrow {
  margin: 0 0 12px;
  color: var(--red);
  font-size: 14px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: none;
}

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

.section-heading.compact {
  display: block;
  margin-bottom: 18px;
}

.news > .section-heading,
.service-band > .vertical-title {
  align-self: start;
}

.section-heading h2 {
  margin-bottom: 0;
}

.text-link {
  color: var(--red);
  font-weight: 800;
  border-bottom: 1px solid currentColor;
}

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

.news {
  display: grid;
  grid-template-columns: minmax(240px, 0.55fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background: var(--white);
  border-bottom: 1px solid var(--line);
}

.news-list {
  max-height: 190px;
  overflow-y: auto;
  border-top: 1px solid var(--line);
}

.news-list article {
  display: grid;
  grid-template-columns: 140px minmax(0, 1fr);
  gap: 24px;
  padding: 20px 0;
  border-bottom: 1px solid var(--line);
}

.news-list time {
  color: var(--red);
  font-weight: 900;
}

.news-list p {
  margin-bottom: 0;
  color: var(--ink);
  font-weight: 700;
}

.properties {
  background: #f7f7f7;
}

.property-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 20px;
}

.property-card {
  display: flex;
  flex-direction: column;
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.1);
  border-radius: 8px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.1);
  transition: transform 180ms ease, box-shadow 180ms ease;
}

.property-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 46px rgba(0, 0, 0, 0.16);
}

.image-frame {
  position: relative;
  display: block;
  overflow: hidden;
  background: transparent;
}

.image-frame img {
  position: relative;
  z-index: 1;
  display: block;
}

.property-card .image-frame {
  display: grid;
  min-height: 0;
  max-height: 210px;
  place-items: center;
}

.property-card img {
  width: auto;
  max-width: 100%;
  height: auto;
  max-height: 210px;
  object-fit: contain;
  background: transparent;
}

.property-body {
  flex: 1;
  padding: 22px;
}

.tag {
  display: inline-flex;
  margin-bottom: 12px;
  padding: 4px 9px;
  background: var(--black);
  color: var(--white);
  border-radius: 3px;
  font-size: 12px;
  font-weight: 800;
}

.property-body p {
  color: var(--muted);
}

.property-body dl {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  margin: 22px 0 0;
  padding-top: 18px;
  border-top: 1px solid var(--line);
}

.property-body dt {
  color: var(--muted);
  font-size: 11px;
  font-weight: 800;
}

.property-body dd {
  margin: 2px 0 0;
  font-size: 14px;
  font-weight: 800;
}

.service-band {
  display: grid;
  grid-template-columns: minmax(260px, 0.72fr) minmax(0, 1fr);
  gap: clamp(28px, 5vw, 68px);
  background:
    linear-gradient(90deg, rgba(0, 0, 0, 0.92), rgba(0, 0, 0, 0.68) 48%, rgba(0, 0, 0, 0.38)),
    linear-gradient(180deg, rgba(0, 0, 0, 0.16), rgba(0, 0, 0, 0.42)),
    url("concept-living.png") center / cover;
  color: var(--white);
}

.service-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 18px;
}

.service-list article {
  padding: 24px 0;
}

.service-list p {
  color: rgba(255, 255, 255, 0.72);
}

.concept-statement {
  max-width: 760px;
  padding: clamp(10px, 2vw, 18px) 0;
  background: transparent;
  text-shadow: 0 2px 16px rgba(0, 0, 0, 0.9), 0 1px 3px rgba(0, 0, 0, 0.9);
}

.concept-statement h3 {
  font-size: clamp(26px, 3vw, 40px);
}

.concept-statement p {
  margin-bottom: 12px;
  color: rgba(255, 255, 255, 0.96);
  font-size: clamp(16px, 1.7vw, 19px);
  font-weight: 700;
}

.company {
  display: grid;
  grid-template-columns: minmax(280px, 0.9fr) minmax(0, 1fr);
  gap: clamp(30px, 6vw, 78px);
  align-items: center;
  background: var(--white);
}

.company-image {
  min-height: 520px;
  background:
    linear-gradient(180deg, rgba(0, 0, 0, 0), rgba(0, 0, 0, 0.2)),
    url("company-current.jpg") center / contain no-repeat;
  background-color: #f3f3f3;
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.company-content p:not(.eyebrow),
.contact-copy p:not(.eyebrow) {
  color: var(--muted);
  font-size: 17px;
}

.company .company-content > .eyebrow,
.contact .contact-copy > .eyebrow {
  color: var(--red);
}

.company-table {
  margin: 28px 0 0;
  border-top: 1px solid var(--line);
}

.company-table div {
  display: grid;
  grid-template-columns: 130px minmax(0, 1fr);
  gap: 20px;
  padding: 16px 0;
  border-bottom: 1px solid var(--line);
}

.company-table dt {
  color: var(--muted);
  font-weight: 800;
}

.company-table dd {
  margin: 0;
}

.company-map {
  padding: 0 clamp(20px, 4vw, 56px) clamp(62px, 9vw, 112px);
  background: var(--white);
}

.map-heading {
  margin-bottom: 22px;
}

.company-map iframe {
  display: block;
  width: 100%;
  height: clamp(320px, 42vw, 520px);
  border: 0;
  border-radius: 8px;
  filter: grayscale(0.2) contrast(1.05);
  box-shadow: var(--shadow);
}

.contact {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 80px);
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.82) 45%, rgba(255, 255, 255, 0.55)),
    url("contact-bright-interior.png") center / cover;
  border-top: 1px solid var(--line);
}

.contact-info {
  display: flex;
  align-items: center;
  gap: 16px;
  margin: 24px 0 0;
}

.contact-copy small {
  display: block;
  margin-top: 10px;
  color: rgba(0, 0, 0, 0.62);
  font-size: 13px;
  line-height: 1.9;
}

.contact-icon {
  display: grid;
  width: 68px;
  height: 68px;
  flex: 0 0 auto;
  place-items: center;
  background: var(--black);
  border-radius: 50%;
}

.contact-icon svg {
  width: 31px;
  height: 31px;
  fill: var(--white);
}

.contact-lines {
  display: grid;
  gap: 2px;
}

.contact-lines p {
  margin: 0;
  color: var(--ink);
  font-size: clamp(20px, 3.1vw, 27px);
  font-weight: 900;
  line-height: 1.25;
}

.contact-lines p,
.contact-lines span,
.contact-lines a {
  color: var(--ink) !important;
}

.contact-lines span {
  display: inline-block;
  min-width: 62px;
}

.request-buttons {
  display: grid;
  gap: 10px;
  max-width: 380px;
  margin-top: 24px;
}

.contact-form {
  display: grid;
  gap: 16px;
  padding: clamp(22px, 4vw, 38px);
  background: var(--white);
  border: 1px solid rgba(0, 0, 0, 0.08);
  border-radius: 8px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
  cursor: auto !important;
}

.contact-form label {
  display: grid;
  gap: 7px;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
  cursor: auto !important;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 4px;
  padding: 13px 14px;
  background: #f4f4f4;
  color: var(--ink);
  font: inherit;
  pointer-events: auto !important;
  cursor: text !important;
}

.contact-form select {
  cursor: pointer !important;
}

.contact-form input,
.contact-form textarea {
  cursor: text !important;
}

.contact-form button,
.contact-form .button,
.contact-form input[type="checkbox"],
.privacy-consent input,
.request-buttons a {
  cursor: pointer !important;
}

.contact-form textarea {
  resize: vertical;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 12px 22px;
  border: 1px solid transparent;
  border-radius: 4px;
  font-weight: 800;
  transition: transform 160ms ease, background 160ms ease, color 160ms ease;
}

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

.button.primary {
  width: fit-content;
  border: 0;
  background: var(--red);
  color: var(--white);
  cursor: pointer;
}

.button.primary:hover {
  background: var(--red-dark);
}

.button.dark {
  background: var(--black);
  color: var(--white);
}

.confirm-modal {
  position: fixed;
  inset: 0;
  z-index: 10000;
  display: grid;
  place-items: center;
  padding: 20px;
  background: rgba(0, 0, 0, 0.58);
}

.confirm-dialog {
  width: min(720px, 100%);
  max-height: min(760px, 86vh);
  overflow: auto;
  padding: clamp(22px, 4vw, 36px);
  background: var(--white);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.confirm-dialog h2 {
  margin-bottom: 18px;
}

.confirm-dialog dl {
  display: grid;
  gap: 10px;
  max-height: min(52vh, 520px);
  overflow: auto;
}

.confirm-dialog dl > div {
  display: grid;
  grid-template-columns: 180px 1fr;
  gap: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--line);
}

.confirm-dialog dt {
  color: var(--muted);
  font-weight: 800;
}

.confirm-dialog dd {
  margin: 0;
  font-weight: 800;
}

.confirm-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: flex-end;
  margin-top: 24px;
}

.button.dark:hover {
  background: var(--red);
}

.contact-form .contact-message,
.contact-form .booking-message.success {
  display: block;
  padding: 18px 20px;
  background: #e9f6ee;
  border-radius: 6px;
  color: #006322;
  font-size: 16px;
  font-weight: 900;
  line-height: 1.7;
}

.privacy-consent {
  display: grid;
  gap: 8px;
  padding: 2px 0 0;
  background: transparent;
  border: 0;
  border-radius: 0;
}

.privacy-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 13px;
  font-weight: 800;
}

.privacy-consent a {
  color: var(--red);
  border-bottom: 1px solid currentColor;
}

.privacy-consent label {
  display: flex;
  grid-template-columns: none;
  align-items: center;
  gap: 8px;
}

.privacy-consent input {
  width: auto;
}

.site-footer {
  display: grid;
  grid-template-columns: minmax(220px, auto) max-content max-content minmax(240px, 1fr);
  align-items: center;
  column-gap: 1em;
  row-gap: 18px;
  padding: 20px clamp(20px, 4vw, 48px);
  background: var(--black);
  color: var(--white);
}

.footer-logo {
  display: inline-flex;
  align-items: center;
  align-self: center;
  gap: 13px;
  color: var(--white);
  white-space: nowrap;
}

.footer-logo img {
  width: 86px;
  image-rendering: auto;
}

.footer-company {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  color: rgba(255, 255, 255, 0.74);
  font-size: 12px;
}

.footer-company p {
  margin: 0;
}

.footer-address,
.footer-contact {
  display: grid;
  gap: 2px;
  color: rgba(255, 255, 255, 0.72);
  font-size: 12px;
  line-height: 1.55;
}

.footer-address p,
.footer-contact p {
  margin: 0;
}

.footer-legal {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: flex-end;
  justify-self: end;
  gap: 4px;
  color: rgba(255, 255, 255, 0.78);
  font-size: 12px;
  text-align: left;
}

.footer-legal p {
  margin: 0;
}

.site-footer a:hover {
  color: var(--red);
}

@media (max-width: 900px) {
  .news,
  .service-band,
  .company,
  .contact {
    grid-template-columns: 1fr;
  }

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

  .company-image {
    min-height: 340px;
  }
  .site-footer {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .footer-legal {
    align-items: flex-start;
    text-align: left;
  }
}

@media (max-width: 640px) {
  body {
    font-size: 13px;
  }

  .hero {
    height: calc(100svh - 86px);
    min-height: 430px;
    max-height: 620px;
    align-items: end;
    padding: 54px 16px 30px;
  }

  .brand {
    gap: 8px;
  }

  .brand img {
    width: 58px;
  }

  .brand span {
    font-size: 13px;
  }

  .brand span::after,
  .footer-logo span::after {
    margin-top: 5px;
    font-size: 6px;
  }

  .site-header {
    align-items: center;
    flex-wrap: wrap;
    min-height: 0;
    padding: 5px 14px 7px;
    gap: 4px 10px;
  }

  .site-header .brand {
    width: 100%;
    justify-content: flex-start;
  }

  .site-nav {
    width: 100%;
    flex: 0 0 100%;
    justify-content: space-between;
    gap: 6px;
    font-size: 10px;
    overflow-x: auto;
    scrollbar-width: none;
    white-space: nowrap;
  }

  .site-nav::-webkit-scrollbar {
    display: none;
  }

  h1 {
    margin-bottom: 14px;
    font-size: 30px;
    line-height: 1.16;
  }

  h2 {
    margin-bottom: 10px;
    font-size: 26px;
    line-height: 1.16;
  }

  h3 {
    font-size: 17px;
  }

  .hero-copy {
    font-size: 13px;
    line-height: 1.75;
  }

  .vertical-title {
    padding-left: 18px;
  }

  .vertical-title::before {
    width: 5px;
    height: 74px;
    top: 50%;
    transform: translateY(-50%);
  }

  .hero-content.vertical-title::before {
    top: 0;
    bottom: 0;
    height: auto;
    transform: none;
  }

  .section {
    padding: 40px 16px;
  }

  .eyebrow {
    margin-bottom: 8px;
    font-size: 12px;
  }

  .keep-line {
    white-space: normal;
  }

  .mobile-only {
    display: block;
  }

  .news-list article,
  .property-body dl,
  .property-grid,
  .service-list {
    grid-template-columns: 1fr;
  }

  .section-heading {
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 22px;
    padding-top: 12px;
    padding-bottom: 12px;
  }

  .section-heading.vertical-title,
  .map-heading.vertical-title {
    padding-left: 18px;
  }

  .section-heading.vertical-title::before,
  .map-heading.vertical-title::before {
    width: 5px;
    min-height: 52px;
    top: 50%;
    transform: translateY(-50%);
  }

  .service-band > .vertical-title::before {
    top: 50%;
    height: 74px;
    transform: translateY(-50%);
  }

  .company-content.vertical-title::before,
  .contact-copy.vertical-title::before {
    top: 36px;
    height: 64px;
    transform: translateY(-50%);
  }

  .news {
    gap: 16px;
  }

  .news-list article {
    gap: 4px;
    padding: 13px 0;
  }

  .news-list {
    max-height: 150px;
  }

  .property-grid {
    gap: 14px;
  }

  .properties .section-heading {
    display: block;
  }

  .properties .text-link {
    display: block;
    margin-top: 8px;
    font-size: 10px;
    line-height: 1.4;
    white-space: nowrap;
  }

  .property-card .image-frame,
  .property-card img {
    max-height: 142px;
  }

  .property-body {
    padding: 14px;
  }

  .property-body h3 {
    margin-bottom: 7px;
    font-size: 16px;
    line-height: 1.32;
  }

  .property-body p,
  .property-body dd {
    font-size: 12px;
  }

  .property-body dl {
    margin-top: 14px;
    padding-top: 12px;
  }

  .property-body dt {
    font-size: 10px;
  }

  .tag {
    margin-bottom: 8px;
    font-size: 10px;
  }

  .text-link {
    font-size: 12px;
  }

  .service-band {
    min-height: calc(100svh - 86px);
    align-items: center;
    gap: 18px;
  }

  .concept-statement h3 {
    font-size: 24px;
    line-height: 1.25;
  }

  .concept-statement h3 span {
    display: block;
  }

  .concept-statement p {
    font-size: 13px;
    line-height: 1.8;
  }

  .company-image {
    min-height: 250px;
  }

  .company-content p:not(.eyebrow) {
    font-size: 12px;
    line-height: 1.75;
  }

  .company-table div {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .company-map {
    padding: 0 16px 46px;
  }

  .company-map iframe {
    height: 280px;
  }

  .contact {
    padding: 40px 16px;
  }

  .contact-copy p:not(.eyebrow) {
    font-size: 11px;
    line-height: 1.75;
    overflow-wrap: anywhere;
  }

  .mobile-keep-line {
    white-space: nowrap;
    font-size: 10px;
  }

  .privacy-consent p {
    font-size: 10px;
    white-space: nowrap;
  }

  .contact-lines p {
    font-size: 17px;
  }

  .request-buttons {
    display: grid;
    gap: 8px;
  }

  .button {
    min-height: 42px;
    padding: 11px 14px;
    font-size: 12px;
  }

  .contact-form {
    padding: 15px;
  }

  .contact-form label,
  .privacy-consent label {
    font-size: 12px;
  }

  .contact-form input,
  .contact-form select,
  .contact-form textarea {
    min-height: 44px;
    font-size: 16px;
  }

  .site-footer {
    align-items: start;
    gap: 14px;
    padding: 18px 16px;
  }

  .footer-legal {
    justify-content: flex-start;
    gap: 6px;
    font-size: 11px;
  }

  .footer-logo img {
    width: 66px;
  }

  .footer-company {
    gap: 10px;
  }

  .footer-address,
  .footer-contact {
    font-size: 11px;
  }

  .footer-contact {
    margin-left: 0;
  }

  .contact-info {
    align-items: flex-start;
  }

  .contact-icon {
    width: 58px;
    height: 58px;
  }

  .contact-icon svg {
    width: 27px;
    height: 27px;
  }
}
