:root {
  --ink: #263140;
  --ink-soft: #556273;
  --line: rgba(80, 94, 112, 0.2);
  --line-strong: rgba(80, 94, 112, 0.34);
  --paper: #f8fbff;
  --white: #ffffff;
  --lavender: #d8d1ff;
  --aqua: #c9f6ff;
  --mint: #d7ffe2;
  --rose: #ffd5f1;
  --gold: #fff2bf;
  --shadow: 0 28px 100px rgba(93, 114, 135, 0.18);
  --serif: "Hiragino Mincho ProN", "Yu Mincho", "YuMincho", "Noto Serif JP", serif;
  --sans: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Yu Gothic",
    "YuGothic", "Noto Sans JP", "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at 12% 8%, rgba(216, 209, 255, 0.38), transparent 25rem),
    radial-gradient(circle at 88% 12%, rgba(201, 246, 255, 0.32), transparent 26rem),
    var(--paper);
  font-family: var(--sans);
  letter-spacing: 0;
  line-height: 1.9;
  overflow-x: hidden;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  background:
    linear-gradient(120deg, rgba(255, 255, 255, 0.7), rgba(255, 255, 255, 0.22)),
    repeating-linear-gradient(
      115deg,
      rgba(255, 255, 255, 0.06) 0 1px,
      transparent 1px 24px
    );
}

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

button,
input,
textarea {
  font: inherit;
}

.site-shell {
  position: relative;
  min-height: 100vh;
  overflow: hidden;
}

.site-shell::before,
.site-shell::after {
  position: absolute;
  z-index: -1;
  width: 58vw;
  height: 58vw;
  pointer-events: none;
  content: "";
  border-radius: 50%;
  filter: blur(36px);
  opacity: 0.55;
}

.site-shell::before {
  top: 56rem;
  left: -24vw;
  background: radial-gradient(circle, rgba(255, 213, 241, 0.48), transparent 64%);
}

.site-shell::after {
  right: -26vw;
  bottom: 40rem;
  background: radial-gradient(circle, rgba(201, 246, 255, 0.5), transparent 66%);
}

.site-header {
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  z-index: 50;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: min(100% - 64px, 1320px);
  height: 82px;
  margin: 0 auto;
  transition:
    background 180ms ease,
    border-color 180ms ease,
    box-shadow 180ms ease,
    transform 180ms ease;
}

.site-header.is-scrolled {
  top: 14px;
  height: 68px;
  padding: 0 18px 0 14px;
  background: rgba(255, 255, 255, 0.76);
  border: 1px solid rgba(105, 119, 139, 0.16);
  border-radius: 999px;
  box-shadow: 0 18px 58px rgba(98, 112, 134, 0.12);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  min-width: 0;
  color: var(--ink);
}

.brand-mark {
  display: grid;
  flex: 0 0 auto;
  width: 48px;
  height: 48px;
  place-items: center;
  color: #fff;
  background:
    radial-gradient(circle at 24% 24%, rgba(255, 255, 255, 0.92), transparent 16px),
    conic-gradient(from 130deg, #a7c7ff, #f7b7e8, #d6ffb7, #a7f3ff, #cbb7ff, #a7c7ff);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 50%;
  box-shadow:
    inset 0 0 20px rgba(255, 255, 255, 0.5),
    0 12px 34px rgba(128, 145, 170, 0.22);
  font-weight: 700;
}

.brand-name {
  color: #253042;
  font-size: 24px;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.global-nav {
  display: flex;
  align-items: center;
  gap: 34px;
  color: #263140;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.06em;
}

.global-nav a {
  position: relative;
  white-space: nowrap;
}

.global-nav a:not(.nav-contact)::after {
  position: absolute;
  right: 0;
  bottom: -8px;
  left: 0;
  height: 1px;
  content: "";
  background: currentColor;
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.global-nav a:hover::after,
.global-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-contact {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 138px;
  min-height: 38px;
  padding: 0 20px;
  border: 1px solid rgba(38, 49, 64, 0.5);
  border-radius: 999px;
}

.menu-button {
  display: none;
}

.section {
  position: relative;
  padding: clamp(88px, 8vw, 132px) 0;
}

.hero {
  min-height: 920px;
  padding: 0;
  overflow: hidden;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.66) 0%, rgba(255, 255, 255, 0.24) 48%, rgba(255, 255, 255, 0.02) 100%),
    url("./assets/hero-glass.png") center right / cover no-repeat,
    #f8fbff;
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center right;
  opacity: 0.86;
}

.ambient-canvas {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  opacity: 0.26;
  mix-blend-mode: screen;
}

.hero::before {
  z-index: 1;
  position: absolute;
  inset: 0;
  content: "";
  background:
    radial-gradient(circle at 18% 34%, rgba(255, 255, 255, 0.86), transparent 23rem),
    linear-gradient(90deg, rgba(255, 255, 255, 0.68) 0%, rgba(255, 255, 255, 0.32) 43%, rgba(255, 255, 255, 0.05) 72%);
}

.hero::after {
  z-index: 1;
  position: absolute;
  right: -10vw;
  bottom: -24vw;
  width: 96vw;
  height: 60vw;
  content: "";
  background: url("./assets/section-iridescent.png") center / cover no-repeat;
  border-radius: 42% 58% 48% 52% / 55% 38% 62% 45%;
  filter: blur(10px) saturate(1.08);
  opacity: 0.2;
}

.hero-content {
  position: relative;
  z-index: 3;
  display: flex;
  flex-direction: column;
  justify-content: center;
  width: min(100% - 72px, 1320px);
  min-height: 920px;
  margin: 0 auto;
  padding-top: 82px;
}

.vertical-note {
  position: absolute;
  right: 6px;
  bottom: 180px;
  margin: 0;
  color: #2e3848;
  font-size: 10px;
  font-weight: 800;
  letter-spacing: 0.1em;
  writing-mode: vertical-rl;
}

.eyebrow {
  margin: 0 0 34px;
  color: #526174;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.16em;
}

h1,
h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 400;
  letter-spacing: 0.05em;
}

.hero h1 {
  max-width: 760px;
  margin-top: 54px;
  font-size: clamp(64px, 7.4vw, 108px);
  line-height: 1.3;
  color: #253042;
  text-shadow: 0 18px 60px rgba(80, 96, 120, 0.14);
  overflow-wrap: normal;
  word-break: keep-all;
  line-break: strict;
}

.hero-title span {
  display: block;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

h2,
p,
dd {
  overflow-wrap: anywhere;
}

.hero-lead {
  margin: 30px 0 0;
  color: #344154;
  font-family: var(--serif);
  font-size: 21px;
  line-height: 2;
  letter-spacing: 0.08em;
}

.hero-actions {
  display: flex;
  gap: 22px;
  align-items: center;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 178px;
  min-height: 56px;
  padding: 0 28px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.04em;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    background 180ms ease;
}

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

.button-gradient {
  color: #fff;
  background:
    linear-gradient(100deg, rgba(161, 192, 255, 0.95), rgba(228, 190, 255, 0.9) 42%, rgba(156, 232, 182, 0.95)),
    #a9c7ff;
  border: 1px solid rgba(255, 255, 255, 0.72);
  box-shadow: 0 18px 48px rgba(132, 157, 190, 0.3);
}

.button-outline {
  color: #334052;
  background: rgba(255, 255, 255, 0.4);
  border: 1px solid rgba(50, 64, 82, 0.36);
  backdrop-filter: blur(16px);
}

.button-outline::after {
  margin-left: 18px;
  content: ">";
  font-family: var(--sans);
  font-size: 15px;
}

.hero-art {
  position: absolute;
  inset: 0;
  z-index: 1;
  pointer-events: none;
}

.ribbon,
.glass-orb,
.crystal-cube {
  background:
    linear-gradient(140deg, rgba(255, 255, 255, 0.78), rgba(255, 255, 255, 0.18)),
    conic-gradient(from 120deg, rgba(174, 205, 255, 0.46), rgba(255, 213, 241, 0.5), rgba(210, 255, 224, 0.46), rgba(201, 246, 255, 0.5), rgba(216, 209, 255, 0.46), rgba(174, 205, 255, 0.46));
  border: 1px solid rgba(80, 96, 120, 0.18);
  box-shadow:
    inset 0 0 26px rgba(255, 255, 255, 0.72),
    inset 18px -18px 44px rgba(167, 194, 224, 0.18),
    0 28px 90px rgba(112, 132, 158, 0.17);
  backdrop-filter: blur(14px) saturate(1.2);
}

.ribbon {
  position: absolute;
  right: -10vw;
  width: min(56vw, 860px);
  height: min(32vw, 520px);
  border-width: 2px;
  display: none;
  filter: saturate(1.14);
}

.ribbon::before,
.ribbon::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(62, 76, 98, 0.16);
  border-radius: inherit;
}

.ribbon::before {
  inset: 9%;
}

.ribbon::after {
  inset: 19%;
}

.ribbon-main {
  top: 64px;
  border-radius: 40% 60% 56% 44% / 45% 28% 72% 55%;
  transform: rotate(16deg);
}

.ribbon-sub {
  top: 390px;
  right: 12vw;
  width: min(52vw, 790px);
  height: min(25vw, 390px);
  border-radius: 55% 45% 64% 36% / 42% 62% 38% 58%;
  opacity: 0.75;
  transform: rotate(-17deg);
}

.glass-orb {
  position: absolute;
  border-radius: 50%;
}

.orb-a {
  top: 240px;
  right: 340px;
  width: 230px;
  height: 230px;
  opacity: 0.28;
}

.orb-b {
  right: 110px;
  bottom: 112px;
  width: 150px;
  height: 150px;
  opacity: 0.22;
}

.section-inner {
  width: min(100% - 72px, 1190px);
  margin: 0 auto;
}

.split-layout,
.section-head {
  display: grid;
  grid-template-columns: minmax(260px, 430px) minmax(0, 1fr);
  gap: clamp(48px, 8vw, 130px);
  align-items: start;
}

.split-layout > *,
.section-head > * {
  min-width: 0;
}

.section-head {
  margin-bottom: 56px;
}

.section-intro {
  position: relative;
}

.section-kicker {
  margin: 0 0 24px;
  color: #9d9bd5;
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.42em;
}

.section h2 {
  color: #263140;
  font-size: clamp(42px, 5vw, 66px);
  line-height: 1.32;
}

.section-intro > p:not(.section-kicker),
.section-head > p {
  margin: 32px 0 0;
  color: #465568;
  font-family: var(--serif);
  font-size: 18px;
  line-height: 2.2;
  letter-spacing: 0.06em;
}

.body-copy {
  padding-top: 72px;
  min-width: 0;
}

.body-copy p {
  margin: 0 0 31px;
  color: #566479;
  font-size: 15px;
  font-weight: 500;
  line-height: 2.35;
  max-width: 100%;
  word-break: break-word;
}

.company {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0.58), rgba(255, 255, 255, 0.36) 72%, rgba(255, 255, 255, 0)),
    url("./assets/section-iridescent.png") left bottom / 62rem auto no-repeat,
    radial-gradient(circle at 0% 92%, rgba(201, 246, 255, 0.28), transparent 30rem);
}

.company::after,
.services::after,
.message::after {
  position: absolute;
  inset: auto -12vw -10rem auto;
  z-index: -1;
  width: 58vw;
  height: 30vw;
  content: "";
  background:
    repeating-linear-gradient(115deg, rgba(175, 204, 255, 0.2) 0 2px, transparent 2px 18px),
    linear-gradient(120deg, rgba(216, 209, 255, 0.22), rgba(201, 246, 255, 0.24), rgba(255, 213, 241, 0.18));
  border-radius: 50%;
  filter: blur(6px);
  opacity: 0.8;
  transform: rotate(-10deg);
}

.crystal-cube {
  position: relative;
  width: 170px;
  height: 170px;
  margin-top: 96px;
  border-radius: 12px;
  transform: perspective(500px) rotateX(58deg) rotateZ(45deg);
}

.crystal-cube span {
  position: absolute;
  inset: 15px;
  border: 1px solid rgba(60, 76, 98, 0.14);
  border-radius: 8px;
}

.services {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.52) 24%, rgba(255, 255, 255, 0.54) 76%, rgba(255, 255, 255, 0)),
    url("./assets/section-iridescent.png") right top / 74rem auto no-repeat,
    radial-gradient(circle at 92% 2%, rgba(201, 246, 255, 0.28), transparent 26rem);
}

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

.service-card {
  display: grid;
  grid-template-columns: 86px 64px minmax(220px, 0.32fr) 1fr;
  gap: 26px;
  align-items: center;
  min-height: 126px;
  padding: 24px 30px;
  text-align: left;
  background:
    linear-gradient(115deg, rgba(255, 255, 255, 0.76), rgba(255, 255, 255, 0.34)),
    radial-gradient(circle at 8% 50%, rgba(216, 209, 255, 0.34), transparent 8rem);
  border: 1px solid rgba(50, 64, 82, 0.2);
  border-radius: 20px;
  box-shadow: 0 22px 70px rgba(108, 126, 154, 0.08);
  backdrop-filter: blur(14px);
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease;
}

.service-card:hover {
  border-color: rgba(80, 96, 120, 0.34);
  box-shadow: 0 28px 86px rgba(108, 126, 154, 0.14);
  transform: translateY(-6px);
}

.icon {
  display: grid;
  width: 76px;
  height: 76px;
  margin: 0;
  place-items: center;
  background:
    radial-gradient(circle at 24% 22%, rgba(255, 255, 255, 0.95), transparent 18px),
    conic-gradient(from 140deg, rgba(174, 205, 255, 0.65), rgba(255, 213, 241, 0.62), rgba(215, 255, 226, 0.6), rgba(201, 246, 255, 0.66), rgba(216, 209, 255, 0.6), rgba(174, 205, 255, 0.65));
  border: 1px solid rgba(50, 64, 82, 0.2);
  border-radius: 50%;
  box-shadow: inset 0 0 22px rgba(255, 255, 255, 0.58);
}

.icon svg {
  width: 42px;
  height: 42px;
  fill: none;
  stroke: #334052;
  stroke-linecap: round;
  stroke-linejoin: round;
  stroke-width: 2;
}

.service-card span {
  display: block;
  margin: 0;
  color: #8d98a7;
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0.12em;
}

.service-card h3 {
  min-height: 0;
  margin: 0;
  color: #263140;
  font-size: 19px;
  line-height: 1.55;
}

.service-card p {
  margin: 0;
  color: #5c6878;
  font-size: 14px;
  line-height: 2;
}

.message {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(255, 255, 255, 0.5) 18%, rgba(255, 255, 255, 0.48) 78%, rgba(255, 255, 255, 0)),
    url("./assets/section-iridescent.png") left top / 72rem auto no-repeat,
    radial-gradient(circle at 4% 20%, rgba(216, 209, 255, 0.26), transparent 26rem),
    radial-gradient(circle at 100% 5%, rgba(201, 246, 255, 0.22), transparent 25rem);
}

.name-card {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  min-height: auto;
  margin-top: 56px;
  padding: 0;
  background: transparent;
  border-top: 0;
  border-radius: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.name-role {
  color: #526174;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.08em;
}

.name-card strong {
  margin-top: 18px;
  color: #263140;
  font-family: var(--serif);
  font-size: clamp(36px, 4vw, 52px);
  font-weight: 500;
  letter-spacing: 0.12em;
  line-height: 1.2;
}

.name-roman {
  width: fit-content;
  margin-top: 18px;
  padding-top: 0;
  color: #9d9bd5;
  border-top: 0;
  font-size: 11px;
  font-weight: 800;
  letter-spacing: 0.32em;
}

.profile {
  background:
    linear-gradient(180deg, rgba(255, 255, 255, 0), rgba(246, 250, 255, 0.7) 18%, rgba(246, 250, 255, 0.88)),
    radial-gradient(circle at 18% 18%, rgba(201, 246, 255, 0.24), transparent 28rem),
    url("./assets/section-iridescent.png") right 18% / 68rem auto no-repeat;
}

.profile-table {
  display: block;
  margin: 0;
  border-top: 1px solid var(--line-strong);
}

.profile-table div {
  display: grid;
  grid-template-columns: minmax(160px, 0.22fr) 1fr;
  min-height: 58px;
  margin: 0;
  border-bottom: 1px solid var(--line);
}

.profile-table dt,
.profile-table dd {
  display: flex;
  align-items: center;
  margin: 0;
  color: #526174;
  font-size: 14px;
}

.profile-table dt {
  font-weight: 700;
  padding-right: 24px;
}

.profile-table dd {
  color: #334052;
  font-weight: 600;
  padding-left: 24px;
  border-left: 1px solid rgba(80, 94, 112, 0.12);
}

.contact {
  overflow: hidden;
  background:
    linear-gradient(180deg, rgba(246, 250, 255, 0.88), rgba(255, 255, 255, 0.66) 34%, rgba(255, 255, 255, 0.92)),
    radial-gradient(circle at 80% 12%, rgba(216, 209, 255, 0.24), transparent 28rem),
    radial-gradient(circle at 6% 62%, rgba(201, 246, 255, 0.22), transparent 26rem),
    url("./assets/section-iridescent.png") left bottom / 70rem auto no-repeat;
}

.contact-action {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  min-height: 220px;
}

.contact-action .button {
  min-width: 210px;
}

.submit-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  justify-self: start;
  min-width: 190px;
  min-height: 58px;
  padding: 0 34px;
  color: #fff;
  font: inherit;
  font-size: 14px;
  font-weight: 800;
  letter-spacing: 0.08em;
  cursor: pointer;
  background:
    linear-gradient(100deg, rgba(161, 192, 255, 0.96), rgba(228, 190, 255, 0.92) 45%, rgba(156, 232, 182, 0.96)),
    #a9c7ff;
  border: 1px solid rgba(255, 255, 255, 0.68);
  border-radius: 999px;
  box-shadow: 0 18px 48px rgba(132, 157, 190, 0.28);
  transition:
    opacity 180ms ease,
    transform 180ms ease,
    box-shadow 180ms ease;
}

.submit-button:not(:disabled):hover,
.submit-button:not(:disabled):focus-visible {
  box-shadow: 0 24px 64px rgba(132, 157, 190, 0.36);
  transform: translateY(-2px);
}

.submit-button:disabled {
  cursor: wait;
  opacity: 0.62;
}

.site-footer {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  width: min(100% - 72px, 1190px);
  margin: 0 auto;
  padding: 0 0 44px;
  color: #5a6676;
  font-size: 12px;
  letter-spacing: 0.08em;
}

.site-footer strong,
.site-footer small {
  display: block;
}

.site-footer strong {
  margin-bottom: 8px;
  color: #334052;
}

.site-footer nav {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: flex-end;
  font-weight: 800;
}

@media (max-width: 960px) {
  .site-header {
    width: calc(100% - 32px);
  }

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

  .menu-button {
    position: relative;
    z-index: 70;
    display: grid;
    width: 48px;
    height: 48px;
    padding: 0;
    place-items: center;
    background: rgba(255, 255, 255, 0.55);
    border: 1px solid rgba(50, 64, 82, 0.2);
    border-radius: 50%;
  }

  .menu-button span {
    display: block;
    width: 20px;
    height: 1px;
    background: var(--ink);
    transition: transform 180ms ease;
  }

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

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

  .global-nav {
    position: fixed;
    top: 12px;
    right: 12px;
    left: 12px;
    z-index: 60;
    display: grid;
    gap: 0;
    padding: 86px 28px 28px;
    visibility: hidden;
    background: rgba(255, 255, 255, 0.86);
    border: 1px solid rgba(80, 94, 112, 0.16);
    border-radius: 28px;
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease,
      visibility 180ms ease;
    backdrop-filter: blur(22px);
  }

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

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

  .nav-contact {
    margin-top: 18px;
  }

  .hero,
  .hero-content {
    min-height: 820px;
  }

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

  .hero h1 {
    font-size: clamp(46px, 12vw, 70px);
  }

  .hero-lead {
    font-size: 17px;
  }

  .vertical-note {
    display: none;
  }

  .ribbon-main {
    top: 110px;
    right: -44vw;
    width: 95vw;
    height: 58vw;
  }

  .ribbon-sub {
    top: 510px;
    right: -18vw;
    width: 96vw;
    height: 46vw;
  }

  .orb-a {
    right: 16vw;
    top: 430px;
    width: 130px;
    height: 130px;
  }

  .orb-b {
    display: none;
  }

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

  .split-layout,
  .section-head {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .section-intro > p:not(.section-kicker),
  .section-head > p {
    margin-top: 22px;
    font-size: 16px;
  }

  .body-copy {
    padding-top: 0;
  }

  .crystal-cube {
    width: 118px;
    height: 118px;
    margin-top: 48px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .service-card {
    display: grid;
    grid-template-columns: 76px 1fr;
    gap: 8px 20px;
    min-height: 0;
    text-align: left;
  }

  .service-card .icon {
    grid-row: 1 / 4;
    margin: 0;
  }

  .service-card h3 {
    min-height: 0;
  }

  .profile-table {
    display: block;
  }

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

  .site-footer {
    flex-direction: column;
    gap: 24px;
    width: calc(100% - 40px);
  }

  .site-footer nav {
    display: none;
  }
}

@media (max-width: 560px) {
  .site-header {
    height: 70px;
  }

  .brand-mark {
    width: 40px;
    height: 40px;
  }

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

  .hero,
  .hero-content {
    min-height: 760px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: clamp(34px, 10.5vw, 46px);
    letter-spacing: 0.02em;
  }

  .hero-lead {
    font-size: 16px;
    letter-spacing: 0.04em;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    width: min(100%, 320px);
  }

  .button {
    width: 100%;
  }

  .section {
    padding: 78px 0;
  }

  .section h2 {
    font-size: 40px;
  }

  .profile-table div {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 14px 0;
  }

  .contact-action .button {
    width: 100%;
  }

}
