:root {
  --color-accent: #ff1f8e;
  --color-accent-soft: #ff69b4;
  --color-accent-gradient: linear-gradient(to right, #ff1f8e, #ff69b4);
  --color-text: #1a1a1a;
  --color-text-muted: #666;
  --color-bg: #fff;
  --color-bg-light: #f7f7f7;
  --color-border: #dedede;
  --font-display: "Dancing Script", cursive;
  --font-body: ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto,
    "Helvetica Neue", Arial, "Hiragino Kaku Gothic ProN", "Hiragino Sans",
    Meiryo, sans-serif;
  --container: 1080px;
  --header-height: 56px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--color-bg);
  color: var(--color-text);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.8;
}

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

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

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 20;
  height: var(--header-height);
  background: rgb(255 255 255 / 82%);
  backdrop-filter: blur(14px);
}

.site-nav {
  width: min(100% - 48px, 1320px);
  height: 100%;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.logo img {
  width: 109px;
  height: auto;
}

.logo .mobile-logo {
  display: none;
}

.nav-toggle,
.nav-toggle-label {
  display: none;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  margin: 0;
  padding: 0;
  list-style: none;
  font-size: 13px;
  font-weight: 600;
}

.nav-links a:not(.btn-primary):hover,
.footer-link:hover,
.text-link:hover {
  color: var(--color-accent);
}

.btn-primary,
.btn-dark {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 44px;
  border: 0;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  transition: transform 160ms ease, opacity 160ms ease;
}

.btn-primary {
  min-width: 128px;
  padding: 13px 30px;
  border-radius: 999px;
  background: var(--color-accent-gradient);
  color: #fff;
  letter-spacing: .04em;
}

.btn-dark {
  min-width: 230px;
  padding: 11px 28px;
  border-radius: 4px;
  background: #050505;
  color: #fff;
  font-size: 13px;
}

.nav-contact {
  min-width: 86px;
  min-height: 38px;
  padding: 11px 22px;
  border-radius: 4px;
}

.btn-primary:hover,
.btn-dark:hover {
  opacity: .9;
  transform: translateY(-1px);
}

.container {
  width: min(100% - 48px, var(--container));
  margin: 0 auto;
}

.section {
  padding: 106px 0;
}

.section-light {
  background: var(--color-bg-light);
}

.section-label {
  display: inline-flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 8px;
  width: max-content;
  max-width: 100%;
  margin-bottom: 36px;
}

.section-label.center {
  align-items: center;
  display: flex;
  width: max-content;
  margin-right: auto;
  margin-left: auto;
}

.section-label-text {
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}

.section-label-line {
  width: 100%;
  height: 2px;
  background: var(--color-accent);
}

.eyebrow {
  color: var(--color-accent);
  font-weight: 700;
}

.lead {
  color: var(--color-text-muted);
}

.hero {
  min-height: 500px;
  padding-top: var(--header-height);
  background:
    linear-gradient(90deg, rgb(255 248 230 / 58%), rgb(255 255 255 / 5%)),
    url("https://storage.stock.studio.design/optimized/7lf95__HzSFnHTFsmk4q2.webp") center / cover no-repeat;
  display: flex;
  align-items: center;
}

.hero-title {
  margin: 0;
  padding-left: 11vw;
  color: #202020;
  font-family: var(--font-display);
  font-size: clamp(2rem, 3.1vw, 3.2rem);
  font-weight: 600;
  line-height: 1.2;
}

.page-hero {
  min-height: 460px;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background-position: center;
  background-size: cover;
  color: #fff;
  text-align: center;
}

.page-hero.monochrome {
  background-image:
    linear-gradient(rgb(0 0 0 / 28%), rgb(0 0 0 / 28%)),
    url("https://images.unsplash.com/photo-1481675392566-c9ab54082ba6");
  filter: grayscale(1);
}

.page-hero-title {
  width: min(100% - 40px, 780px);
  margin: 0;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.5;
  text-align: center;
  text-shadow: 0 2px 14px rgb(0 0 0 / 36%);
}

.message-section {
  position: relative;
  overflow: hidden;
  padding: 78px 0 98px;
  background: #eee;
}

.message-bg-word {
  position: absolute;
  top: 14px;
  left: 50%;
  transform: translateX(-50%);
  color: #fff;
  font-family: var(--font-display);
  font-size: clamp(7rem, 18vw, 18rem);
  font-weight: 600;
  line-height: 1;
  pointer-events: none;
  user-select: none;
}

.message-body {
  position: relative;
  z-index: 1;
  width: min(100% - 48px, 660px);
  margin: 0 auto;
}

.message-title {
  margin: 0 0 42px;
  font-size: clamp(2.6rem, 6vw, 4.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -.02em;
  text-align: center;
}

.message-body p {
  margin: 0 0 30px;
  font-size: 1rem;
  font-weight: 700;
  line-height: 2.05;
}

.signature {
  width: 210px;
  margin: 70px 0 0 auto;
  text-align: center;
}

.signature-title {
  margin: 0 0 16px;
  color: var(--color-text-muted);
  font-size: .86rem;
}

.company-section {
  padding: 112px 0 122px;
}

.company-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 1fr);
  gap: 86px;
  align-items: center;
}

.company-table {
  display: grid;
  gap: 14px;
}

.company-row {
  display: grid;
  grid-template-columns: 96px 1fr;
  gap: 24px;
  align-items: stretch;
}

.company-key {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  background: #efefef;
  color: #666;
  font-size: .78rem;
  font-weight: 700;
  text-align: center;
}

.company-value {
  display: flex;
  align-items: center;
  min-height: 52px;
  color: #555;
  font-size: .9rem;
  font-weight: 600;
  line-height: 1.55;
}

.map-embed {
  width: 100%;
  aspect-ratio: 1.36;
  border: 0;
}

.project-page-hero {
  min-height: 520px;
  padding-top: var(--header-height);
  display: flex;
  align-items: center;
  justify-content: center;
  background:
    linear-gradient(rgb(0 0 0 / 18%), rgb(0 0 0 / 18%)),
    url("https://images.unsplash.com/photo-1536735737303-fb8f6107e9ec?ixlib=rb-1.2.1&q=80&fm=jpg&crop=entropy&cs=tinysrgb&w=1600&fit=max") center 38% / 115% auto no-repeat;
  color: #fff;
  text-align: center;
}

.project-page-title {
  margin: 0;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 700;
  letter-spacing: .18em;
  line-height: 1.3;
}

.project-story {
  position: relative;
  overflow: hidden;
  padding: 106px 0;
}

.project-story.alt {
  padding-top: 82px;
}

.project-story::before,
.project-story::after {
  position: absolute;
  z-index: 0;
  content: "";
  pointer-events: none;
}

.project-story.story-pink::after {
  top: 0;
  right: -88px;
  width: 460px;
  height: 460px;
  background: #ffd3e4;
  clip-path: polygon(28% 0, 82% 0, 100% 22%, 100% 78%, 82% 100%, 28% 100%, 0 72%, 0 28%);
}

.project-story.story-cream::before {
  top: 0;
  left: -154px;
  width: 420px;
  height: 420px;
  background: #fff5ce;
  clip-path: polygon(0 0, 72% 0, 100% 28%, 100% 72%, 72% 100%, 0 100%);
}

.project-story-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 86px;
  align-items: center;
}

.project-story-title {
  margin: 0 0 46px;
  font-size: clamp(2rem, 3.6vw, 3rem);
  font-weight: 800;
  letter-spacing: .12em;
  line-height: 1.35;
}

.project-story-media {
  position: relative;
}

.project-story-media img {
  position: relative;
  z-index: 1;
  width: 100%;
  aspect-ratio: 1.55;
  object-fit: cover;
}

.project-story-media.shadow::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 100%;
  height: 100%;
  background: #bfa99c;
  content: "";
}

.project-story-media.yellow::after {
  position: absolute;
  right: -16px;
  bottom: -16px;
  width: 100%;
  height: 100%;
  background: #ffd900;
  content: "";
}

.project-photo-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  width: 100%;
}

.project-photo-grid img {
  width: 100%;
  aspect-ratio: .76;
  object-fit: cover;
}

.project-cta {
  padding: 112px 0 122px;
  text-align: center;
}

.project-cta h2 {
  margin: 0 0 44px;
  font-size: clamp(2.35rem, 5vw, 4.3rem);
  font-weight: 700;
  letter-spacing: .13em;
  line-height: 1.2;
}

.project-cta p {
  margin: 0 0 42px;
  color: var(--color-text-muted);
  font-weight: 700;
  letter-spacing: .08em;
}

.product-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 20;
  height: 64px;
  display: flex;
  align-items: center;
  width: min(100% - 48px, 1320px);
  margin: 0 auto;
}

.product-logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: #2b2b2b;
  font-size: 2rem;
  font-weight: 800;
  letter-spacing: -.02em;
}

.product-logo img {
  width: auto;
  height: 28px;
  object-fit: contain;
}

.product-logo-boarderx img {
  height: 24px;
}

.pal-hero {
  position: relative;
  min-height: 700px;
  padding-top: 64px;
  background:
    url("../assets/images/1_fv_3.png") right 48% center / 67% auto no-repeat,
    #f8f8f4;
  display: flex;
  align-items: center;
  overflow: hidden;
}

.pal-hero-grid {
  display: block;
}

.pal-kicker {
  margin: 0 0 12px;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
  line-height: 1;
}

.pal-hero h1 {
  margin: 0 0 28px;
  max-width: 470px;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 1.1;
}

.pal-hero-copy,
.pal-copy {
  color: #5f5f5f;
  font-weight: 500;
  line-height: 1.95;
}

.pal-hero-copy {
  max-width: 450px;
}

.pal-hero-sp-image {
  display: none;
}

.pal-section {
  padding: 72px 0;
}

.pal-section.narrow {
  padding-top: 34px;
}

.pal-section-title {
  width: max-content;
  max-width: 100%;
  margin: 0 0 48px;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.3;
}

.pal-section-title::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 12px;
  background: var(--color-accent);
  content: "";
}

.pal-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.pal-two-col.compact {
  align-items: start;
}

.pal-illustration {
  width: 100%;
}

.pal-content-title {
  margin: 0 0 26px;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.35;
}

.pal-operation {
  padding: 78px 0 92px;
  text-align: center;
}

.pal-operation h2 {
  margin: 0 0 28px;
  font-size: 1.55rem;
  line-height: 1.5;
}

.pal-operation p {
  margin: 0 0 28px;
  color: var(--color-text-muted);
  font-weight: 600;
}

.pal-operation img {
  width: min(100%, 760px);
  margin: 0 auto;
}

.pal-operation-mobile {
  display: none;
}

.pal-cta {
  padding: 74px 0 134px;
  text-align: center;
}

.pal-cta-kicker {
  margin: 0 0 34px;
  color: #4a4a4a;
  font-size: 1.65rem;
  line-height: 1.4;
}

.pal-cta-kicker span {
  margin: 0 28px;
  color: var(--color-accent);
}

.pal-cta h2 {
  margin: 0 0 42px;
  font-size: clamp(2.7rem, 5vw, 4.2rem);
  line-height: 1.15;
}

.bx-hero {
  min-height: 500px;
  padding-top: 64px;
  background: #f8f8f8;
  display: flex;
  align-items: center;
}

.bx-hero-grid {
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 44px;
  align-items: center;
  max-width: 1040px;
  margin: 0 auto;
}

.bx-kicker {
  margin: 0 0 28px;
  color: var(--color-accent);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  line-height: 1;
}

.bx-hero .bx-kicker {
  color: var(--color-accent);
}

.bx-hero h1 {
  margin: 0 0 30px;
  max-width: 700px;
  font-size: clamp(2.65rem, 4.5vw, 4rem);
  line-height: 1.22;
  letter-spacing: -.03em;
}

.bx-hero p,
.bx-copy {
  color: #555;
  font-size: 1rem;
  font-weight: 500;
  line-height: 1.75;
}

.bx-icon-card {
  width: min(100%, 310px);
  margin: 0 auto;
}

.bx-section {
  padding: 92px 0;
}

.bx-section-title {
  width: max-content;
  margin: 0 auto 86px;
  font-size: 1.65rem;
  font-weight: 800;
  line-height: 1.3;
}

.bx-section-title::after {
  display: block;
  width: 100%;
  height: 2px;
  margin-top: 12px;
  background: var(--color-accent);
  content: "";
}

.bx-two-col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}

.bx-screen {
  width: 100%;
}

.bx-content-title {
  margin: 0 0 28px;
  font-size: 1.55rem;
  font-weight: 800;
  line-height: 1.4;
}

.bx-features {
  padding: 76px 0 104px;
}

.bx-feature-list {
  margin: 0;
  padding: 0;
  list-style: none;
  color: #444;
  font-size: 1.2rem;
  line-height: 1.65;
}

.bx-feature-list li + li {
  margin-top: 54px;
}

.bx-feature-list strong {
  display: block;
  font-weight: 500;
}

.bx-screens-stack {
  display: grid;
  gap: 42px;
}

.bx-cta {
  padding: 104px 0 136px;
  background: #fff;
  text-align: center;
}

.bx-cta-kicker {
  margin: 0 0 44px;
  color: #4a4a4a;
  font-size: 1.9rem;
  line-height: 1.4;
}

.bx-cta-kicker span {
  margin: 0 28px;
  color: var(--color-accent);
}

.bx-cta h2 {
  margin: 0 0 48px;
  font-size: clamp(3rem, 5vw, 4.4rem);
  line-height: 1.15;
}

.legal-page {
  padding: 128px 0 190px;
  background: #fff;
}

.legal-box {
  width: min(100%, 850px);
  margin: 0 auto;
  padding: 30px 22px 52px;
  border: 1px solid #e4e4e4;
  color: #5a5a5a;
  font-size: .98rem;
  font-weight: 500;
  line-height: 1.85;
}

.legal-box p {
  margin: 0 0 30px;
}

.legal-box section {
  margin: 0 0 30px;
}

.legal-box h2 {
  margin: 0 0 4px;
  color: #555;
  font-size: .98rem;
  font-weight: 500;
}

.legal-list {
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-page {
  padding: 128px 0 116px;
  background: #fff;
}

.contact-form-wrap {
  width: min(100%, 860px);
  margin: 0 auto;
}

.contact-form-wrap iframe {
  display: block;
  border: 0;
}

.about-grid,
.project-grid,
.service-card {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 96px;
}

.about-image,
.project-image,
.service-image {
  width: 100%;
  object-fit: cover;
}

.about-image {
  aspect-ratio: 1.58;
  filter: grayscale(1);
}

.quote {
  margin: 0 0 28px;
  font-size: 1.45rem;
  font-weight: 700;
  line-height: 1.45;
}

.copy {
  margin: 0 0 26px;
  color: var(--color-text-muted);
  font-size: .98rem;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--color-text-muted);
  font-size: .9rem;
  font-weight: 600;
}

.text-link::before {
  content: ">";
  color: var(--color-text);
}

.project-section {
  padding-top: 52px;
}

.project-grid {
  align-items: start;
}

.project-content {
  padding-top: 38px;
}

.project-content h2,
.service-content h2 {
  margin: 0 0 22px;
  font-size: 1.45rem;
  line-height: 1.35;
}

.project-image {
  aspect-ratio: 1.28;
}

.project-actions {
  margin-top: 42px;
  text-align: center;
}

.service-section {
  padding: 94px 0 112px;
}

.service-list {
  display: grid;
  gap: 72px;
}

.service-card {
  gap: 44px;
}

.service-image-wrap {
  background: #fff;
  box-shadow: 0 12px 28px rgb(0 0 0 / 14%);
}

.service-image {
  aspect-ratio: 1.43;
}

.service-logo-panel {
  min-height: 278px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 42px;
}

.service-visual-panel {
  height: 278px;
  overflow: hidden;
}

.service-image-top {
  height: 100%;
  transform: scale(1.12);
  object-position: center center;
}

.service-logo-panel img {
  width: min(100%, 360px);
  height: auto;
}

.service-content h2 {
  font-size: 2rem;
}

.service-content .text-link {
  color: #1680bd;
}

.cta {
  min-height: 280px;
  background:
    linear-gradient(rgb(22 40 45 / 26%), rgb(22 40 45 / 26%)),
    url("https://images.unsplash.com/photo-1522878129833-838a904a0e9e") center 58% / cover no-repeat;
  color: #fff;
  display: flex;
  align-items: center;
  text-align: center;
}

.cta-title {
  margin: 0 0 26px;
  font-family: var(--font-display);
  font-size: clamp(1.75rem, 3vw, 2.4rem);
  font-weight: 600;
  letter-spacing: .02em;
}

.site-footer {
  padding: 90px 0 58px;
  background: #fff;
}

.footer-main {
  display: grid;
  grid-template-columns: 150px repeat(4, 1fr);
  gap: 64px;
  padding-top: 78px;
  padding-bottom: 78px;
  border-top: 1px solid var(--color-border);
  border-bottom: 1px solid var(--color-border);
}

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

.footer-column h2 {
  margin: 0 0 24px;
  font-size: .88rem;
  line-height: 1.2;
}

.footer-list {
  display: grid;
  gap: 16px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.footer-link {
  color: var(--color-text-muted);
  font-size: .86rem;
}

.copyright {
  margin: 54px 0 0;
  color: var(--color-text-muted);
  font-size: .78rem;
  text-align: center;
}

@media (max-width: 760px) {
  :root {
    --header-height: 44px;
  }

  body {
    font-size: 14px;
    line-height: 1.75;
  }

  .site-header {
    background: rgb(255 255 255 / 68%);
  }

  .site-nav {
    width: calc(100% - 24px);
  }

  .logo img {
    display: none;
  }

  .logo .mobile-logo {
    display: block;
    width: 20px;
  }

  .nav-toggle-label {
    display: inline-flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    cursor: pointer;
  }

  .nav-toggle-label span,
  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    display: block;
    width: 18px;
    height: 2px;
    background: #1a1a1a;
    content: "";
  }

  .nav-toggle-label span {
    position: relative;
  }

  .nav-toggle-label span::before,
  .nav-toggle-label span::after {
    position: absolute;
    left: 0;
  }

  .nav-toggle-label span::before {
    top: -6px;
  }

  .nav-toggle-label span::after {
    top: 6px;
  }

  .nav-links {
    position: fixed;
    top: var(--header-height);
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: 18px 24px 24px;
    background: rgb(255 255 255 / 96%);
    box-shadow: 0 14px 24px rgb(0 0 0 / 10%);
  }

  .nav-links li + li {
    border-top: 1px solid var(--color-border);
  }

  .nav-links a {
    display: block;
    padding: 12px 0;
  }

  .nav-links .btn-primary {
    margin-top: 14px;
    color: #fff;
    text-align: center;
  }

  .nav-toggle:checked ~ .nav-links {
    display: flex;
  }

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

  .section {
    padding: 56px 0;
  }

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

  .section-label-text {
    font-size: 1.45rem;
  }

  .section-label-line {
    height: 2px;
  }

  .hero {
    min-height: 460px;
    align-items: flex-start;
    background-position: 58% center;
  }

  .hero-title {
    padding: 222px 0 0 16px;
    font-size: 1.65rem;
  }

  .page-hero {
    min-height: 246px;
    background-position: center top;
  }

  .page-hero-title {
    width: calc(100% - 36px);
    font-size: .98rem;
    text-align: center;
  }

  .message-section {
    padding: 46px 0 64px;
  }

  .message-bg-word {
    top: 32px;
    font-size: 6.2rem;
  }

  .message-body {
    width: calc(100% - 34px);
  }

  .message-title {
    margin-bottom: 30px;
    font-size: 2.35rem;
  }

  .message-body p {
    margin-bottom: 24px;
    font-size: .86rem;
    line-height: 1.9;
  }

  .sp-hide {
    display: none;
  }

  .signature {
    width: 150px;
    margin-top: 44px;
  }

  .signature-title {
    font-size: .72rem;
  }

  .about-grid,
  .project-grid,
  .service-card {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .about-grid {
    display: flex;
    flex-direction: column;
  }

  .about-content {
    display: contents;
  }

  .about-content .section-label {
    order: -2;
  }

  .about-image {
    order: -1;
  }

  .quote {
    font-size: 1.14rem;
  }

  .copy {
    font-size: .92rem;
  }

  .about-content .text-link {
    align-self: flex-end;
    min-width: 132px;
    justify-content: center;
    padding: 13px 18px;
    border-radius: 3px;
    background: #050505;
    color: #fff;
    box-shadow: 0 8px 14px rgb(0 0 0 / 22%);
  }

  .about-content .text-link::before {
    content: "";
  }

  .project-section {
    padding-top: 52px;
  }

  .project-grid {
    display: flex;
    flex-direction: column;
  }

  .project-image {
    order: -1;
  }

  .project-content {
    padding-top: 0;
  }

  .project-content h2,
  .service-content h2 {
    font-size: 1.2rem;
  }

  .project-actions {
    margin-top: 24px;
    text-align: right;
  }

  .btn-dark {
    min-width: 170px;
    min-height: 46px;
    box-shadow: 0 8px 14px rgb(0 0 0 / 22%);
  }

  .service-section {
    padding: 66px 0 72px;
  }

  .service-list {
    gap: 54px;
  }

  .service-card {
    gap: 18px;
  }

  .service-logo-panel {
    min-height: 180px;
    padding: 34px;
  }

  .service-visual-panel {
    height: 180px;
  }

  .service-content h2 {
    margin-bottom: 8px;
  }

  .service-content .text-link {
    display: none;
  }

  .service-actions-mobile {
    margin-top: 28px;
    text-align: right;
  }

  .cta {
    min-height: 184px;
  }

  .cta-title {
    margin-bottom: 16px;
    font-size: 1.36rem;
  }

  .cta .btn-primary {
    min-width: 210px;
  }

  .company-section {
    padding: 64px 0 72px;
  }

  .company-section .section-label {
    margin-left: 0;
  }

  .company-layout {
    grid-template-columns: 1fr;
    gap: 34px;
  }

  .company-table {
    gap: 12px;
  }

  .company-row {
    grid-template-columns: 74px 1fr;
    gap: 14px;
  }

  .company-key,
  .company-value {
    min-height: 54px;
    font-size: .72rem;
  }

  .company-value {
    font-size: .76rem;
  }

  .map-embed {
    aspect-ratio: 1.1;
  }

  .project-page-hero {
    min-height: 190px;
    background-position: center 32%;
    background-size: 145% auto;
  }

  .project-page-title {
    font-size: 1rem;
    letter-spacing: .16em;
  }

  .project-story,
  .project-story.alt {
    padding: 56px 0 64px;
  }

  .project-story.story-pink::after {
    top: 28px;
    right: -96px;
    width: 300px;
    height: 300px;
  }

  .project-story.story-cream::before {
    top: 42px;
    left: -118px;
    width: 260px;
    height: 260px;
  }

  .project-story-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }

  .project-story-grid.media-first .project-story-media {
    order: -1;
  }

  .project-story-title {
    margin-bottom: 28px;
    font-size: 1.55rem;
    letter-spacing: .08em;
  }

  .project-story-media.shadow::after,
  .project-story-media.yellow::after {
    right: -10px;
    bottom: -10px;
  }

  .project-photo-grid {
    grid-template-columns: repeat(2, 1fr);
    overflow: hidden;
    max-height: 202px;
  }

  .project-photo-grid img {
    aspect-ratio: 1;
  }

  .project-cta {
    padding: 58px 0 72px;
  }

  .project-cta h2 {
    margin-bottom: 34px;
    font-size: 1.6rem;
    letter-spacing: .04em;
  }

  .project-cta p {
    margin-bottom: 28px;
    font-size: .82rem;
    letter-spacing: .06em;
  }

  .product-header {
    height: 44px;
    width: calc(100% - 24px);
  }

  .product-logo {
    font-size: 0;
  }

  .product-logo img {
    width: auto;
    height: 16px;
  }

  .product-logo-boarderx img {
    height: 14px;
  }

  .pal-hero {
    min-height: auto;
    padding: 78px 0 34px;
    background: #f8f8f4;
    align-items: center;
  }

  .pal-hero-grid {
    width: calc(100% - 34px);
    margin: 0 auto;
    padding-top: 0;
    display: grid;
    gap: 24px;
  }

  .pal-kicker {
    margin-bottom: 10px;
    font-size: .86rem;
  }

  .pal-hero h1 {
    margin-bottom: 18px;
    font-size: 1.8rem;
  }

  .pal-hero-copy {
    font-size: .9rem;
    line-height: 1.65;
  }

  .pal-hero-sp-image {
    display: block;
    width: min(100%, 320px);
    margin: 0 auto;
  }

  .pal-section {
    padding: 36px 0;
  }

  .pal-section.narrow {
    padding-top: 20px;
  }

  .pal-section-title {
    margin-bottom: 30px;
    font-size: 1.12rem;
  }

  .pal-section-title::after {
    height: 2px;
    margin-top: 8px;
  }

  .pal-two-col,
  .pal-two-col.compact {
    grid-template-columns: 1fr;
    gap: 24px;
  }

  .pal-two-col.mobile-text-first .pal-illustration {
    order: 2;
  }

  .pal-content-title {
    margin-bottom: 20px;
    font-size: 1.12rem;
  }

  .pal-copy {
    font-size: .92rem;
    line-height: 1.65;
  }

  .pal-illustration {
    width: min(100%, 330px);
    margin: 0 auto;
  }

  .pal-operation {
    padding: 38px 0 46px;
    text-align: left;
  }

  .pal-operation h2 {
    margin-bottom: 12px;
    font-size: 1.04rem;
  }

  .pal-operation p {
    margin-bottom: 22px;
    font-size: .86rem;
    line-height: 1.55;
  }

  .pal-operation-desktop {
    display: none;
  }

  .pal-operation-mobile {
    display: block;
  }

  .pal-cta {
    padding: 40px 0 70px;
  }

  .pal-cta-kicker {
    margin-bottom: 28px;
    font-size: .92rem;
  }

  .pal-cta-kicker span {
    margin: 0 16px;
  }

  .pal-cta h2 {
    margin-bottom: 28px;
    font-size: 1.65rem;
  }

  .pal-cta .btn-primary {
    width: 100%;
  }

  .bx-hero {
    min-height: auto;
    padding: 96px 0 54px;
  }

  .bx-hero-grid {
    grid-template-columns: 1fr;
    gap: 26px;
    max-width: 100%;
  }

  .bx-kicker {
    margin-bottom: 16px;
    font-size: 1.1rem;
  }

  .bx-hero h1 {
    margin-bottom: 18px;
    font-size: 1.95rem;
    line-height: 1.18;
  }

  .bx-hero p,
  .bx-copy {
    font-size: .92rem;
    line-height: 1.6;
  }

  .bx-icon-card {
    width: 180px;
  }

  .bx-section {
    padding: 52px 0;
  }

  .bx-section-title {
    margin: 0 0 44px;
    font-size: 1.2rem;
  }

  .bx-section-title::after {
    height: 2px;
  }

  .bx-two-col {
    grid-template-columns: 1fr;
    gap: 30px;
  }

  .bx-two-col.mobile-text-first > :first-child {
    order: 2;
  }

  .bx-content-title {
    margin-bottom: 22px;
    font-size: 1.18rem;
  }

  .bx-features {
    padding: 40px 0 62px;
  }

  .bx-feature-list {
    font-size: .95rem;
  }

  .bx-feature-list li + li {
    margin-top: 30px;
  }

  .bx-screens-stack {
    gap: 20px;
  }

  .bx-cta {
    padding: 58px 0 76px;
  }

  .bx-cta-kicker {
    margin-bottom: 28px;
    font-size: 1rem;
  }

  .bx-cta-kicker span {
    margin: 0 12px;
  }

  .bx-cta h2 {
    margin-bottom: 30px;
    font-size: 1.65rem;
  }

  .bx-cta .btn-primary {
    width: 100%;
  }

  .legal-page {
    padding: 82px 0 78px;
  }

  .legal-page .section-label {
    margin-bottom: 30px;
  }

  .legal-box {
    width: 100%;
    padding: 20px 18px 28px;
    font-size: .92rem;
    line-height: 1.85;
  }

  .legal-box p,
  .legal-box section {
    margin-bottom: 24px;
  }

  .contact-page {
    padding: 82px 0 70px;
  }

  .site-footer {
    padding: 62px 0 38px;
  }

  .footer-main {
    grid-template-columns: 1fr;
    gap: 26px;
    padding-top: 42px;
    padding-bottom: 42px;
  }

  .footer-column h2 {
    margin-bottom: 10px;
  }

  .footer-list {
    gap: 12px;
  }

  .footer-link {
    display: block;
    padding: 9px 14px;
    border: 1px solid #606060;
    font-size: .8rem;
  }

  .footer-link::before {
    content: "> ";
    margin-right: 10px;
    color: #888;
  }

  .copyright {
    margin-top: 38px;
    font-size: .72rem;
  }
}

@media (min-width: 761px) {
  .service-actions-mobile {
    display: none;
  }
}
