:root {
  --pink: #e4007f;
  --pink-dark: #b80066;
  --pink-soft: #fff0f8;
  --cyan: #00a0e9;
  --cyan-dark: #006fa6;
  --cyan-soft: #eaf8ff;
  --yellow: #fff100;
  --yellow-soft: #fffbd8;
  --ink: #111111;
  --navy: #063a57;
  --paper: #ffffff;
  --canvas: #f9f8f4;
  --soft: #f4f4f2;
  --line: #e7e7e4;
  --muted: #626262;
  --shadow-tight: 0 4px 16px rgba(17, 17, 17, 0.1);
  --shadow-soft: 0 12px 34px rgba(17, 17, 17, 0.09);
  --shadow-card: 0 18px 44px rgba(17, 17, 17, 0.12);
  --font-brand: -apple-system, BlinkMacSystemFont, "Hiragino Sans", "Hiragino Kaku Gothic ProN", "Yu Gothic", "Noto Sans JP", "Segoe UI", Roboto, sans-serif;
}

html {
  background: var(--canvas);
  scroll-padding-top: 104px;
}

body {
  overflow-x: hidden;
  background: var(--canvas);
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: 16px;
  line-height: 1.75;
}

a,
button,
input,
textarea {
  font-family: inherit;
}

a:focus-visible,
button:focus-visible,
input:focus-visible,
textarea:focus-visible,
[tabindex]:focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 4px;
  box-shadow: 0 0 0 7px var(--navy);
}

.container {
  width: min(100% - 40px, 1180px);
}

.container-wide {
  width: 100%;
}

.skip-link {
  z-index: 1000;
  border-radius: 999px;
  background: var(--navy);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 200;
  border: 0;
  background: transparent;
  padding: 20px 20px 0;
  backdrop-filter: none;
}

.nav {
  width: min(100%, 1180px);
  min-height: 64px;
  margin-inline: auto;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.96);
  padding: 9px 12px 9px 28px;
  box-shadow: var(--shadow-tight);
  backdrop-filter: blur(16px);
}

.brand__logo {
  width: 92px;
  max-height: 38px;
}

.nav__links {
  gap: clamp(14px, 1.8vw, 28px);
  color: var(--ink);
  font-size: 13px;
  font-weight: 800;
}

.nav__links a {
  position: relative;
  padding: 7px 1px;
}

.nav__links a::after {
  position: absolute;
  right: 0;
  bottom: 1px;
  left: 0;
  height: 3px;
  border-radius: 3px;
  background: var(--pink);
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.2s ease;
}

.nav__links a:hover::after,
.nav__links a:focus-visible::after {
  transform: scaleX(1);
}

.header-cta {
  display: inline-flex;
  min-height: 44px;
  border: 0;
  background: var(--cyan);
  color: var(--ink);
  padding: 0 20px;
  font-size: 12px;
  font-weight: 900;
  box-shadow: 0 7px 18px rgba(0, 112, 166, 0.17);
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.header-cta:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 12px 24px rgba(0, 112, 166, 0.22);
}

.hero {
  position: relative;
  min-height: 900px;
  overflow: hidden;
  background: var(--canvas);
  padding: clamp(58px, 7vw, 92px) 20px 500px;
}

.hero::before,
.hero::after {
  position: absolute;
  z-index: 1;
  border-radius: 7px;
  content: "";
  pointer-events: none;
}

.hero::before {
  top: 88px;
  left: max(24px, calc(50% - 620px));
  width: 18px;
  height: 18px;
  background: var(--pink);
  transform: rotate(12deg);
}

.hero::after {
  top: 138px;
  right: max(28px, calc(50% - 600px));
  width: 13px;
  height: 13px;
  border-radius: 50%;
  background: var(--cyan);
  box-shadow: -30px 38px 0 var(--yellow);
}

.hero__grid {
  position: relative;
  z-index: 2;
  display: block;
  width: min(100%, 1180px);
  text-align: center;
}

.eyebrow {
  gap: 0;
  color: #626262;
  font-family: var(--font-brand);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.14em;
}

.eyebrow::before {
  width: 7px;
  height: 7px;
  margin-right: 34px;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 12px 0 0 var(--cyan), 24px 0 0 var(--yellow);
}

.hero h1 {
  max-width: none;
  margin: 24px 0 0;
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: clamp(48px, 6.4vw, 82px);
  font-weight: 950;
  letter-spacing: -0.035em;
  line-height: 1.18;
}

.hero h1 .c-pink {
  color: var(--pink);
}

.hero h1 .c-cyan {
  color: var(--cyan-dark);
}

.hero h1 .u-yellow {
  color: var(--ink);
  background-image: linear-gradient(180deg, transparent 0 72%, var(--yellow) 72% 100%);
  padding-inline: 0.05em;
}

.hero__lead {
  max-width: 780px;
  margin: 25px auto 0;
  color: #333333;
  font-size: clamp(15px, 1.45vw, 17px);
  font-weight: 650;
  line-height: 2;
}

.hero__note {
  margin: 15px 0 0;
  color: var(--cyan-dark);
  font-size: 12px;
  font-weight: 850;
}

.hero__actions {
  justify-content: center;
  margin-top: 28px;
}

.button {
  min-height: 52px;
  border-radius: 999px;
  padding: 0 26px;
  font-size: 14px;
  font-weight: 900;
}

.button--primary {
  background: var(--pink);
  color: #ffffff;
  box-shadow: 0 10px 24px rgba(184, 0, 102, 0.2);
}

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

.button--secondary {
  border-color: var(--line);
  background: #ffffff;
  color: var(--ink);
  box-shadow: var(--shadow-tight);
}

.hero__visual {
  position: absolute;
  right: 0;
  bottom: 258px;
  left: 0;
  min-height: 0;
  height: 210px;
  pointer-events: none;
}

.photo-stack {
  position: relative;
  width: min(100% - 40px, 1180px);
  min-height: 0;
  height: 100%;
  margin-inline: auto;
}

.photo-card {
  border: 7px solid #ffffff;
  border-radius: 22px;
  box-shadow: var(--shadow-card);
}

.photo-card--main {
  inset: auto auto 20px 0;
  width: 230px;
  height: 148px;
  transform: rotate(-3deg);
}

.photo-card--sub {
  right: 0;
  bottom: 36px;
  left: auto;
  width: 220px;
  height: 142px;
  transform: rotate(3deg);
}

.photo-card--small {
  right: 210px;
  bottom: 4px;
  width: 150px;
  height: 100px;
  transform: rotate(-2deg);
}

.section {
  padding: clamp(76px, 8vw, 112px) 0;
}

.section--soft {
  background: var(--soft);
}

.section--blue {
  background: #ffffff;
}

.section-heading {
  grid-template-columns: minmax(0, 0.46fr) minmax(0, 0.54fr);
  gap: 42px;
  margin-bottom: 42px;
}

.section-heading h2,
.story__text h2,
.message-card h2,
.company-intro h2,
.contact-band h2 {
  color: var(--ink);
  font-family: var(--font-brand);
  font-size: clamp(30px, 4vw, 46px);
  font-weight: 950;
  letter-spacing: -0.025em;
  line-height: 1.34;
}

.section-heading p,
.about-copy p,
.story__text p,
.message-card p,
.company-intro p,
.faq-item p,
.contact-band p {
  color: var(--muted);
  line-height: 1.95;
}

.about-grid {
  max-width: 900px;
}

.about-copy {
  position: relative;
  border: 1px solid var(--line);
  border-left: 0;
  border-radius: 24px;
  background: #ffffff;
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--shadow-soft);
  overflow: hidden;
}

.about-copy::before {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  width: 7px;
  background: linear-gradient(var(--pink) 0 33%, var(--cyan) 33% 66%, var(--yellow) 66%);
  content: "";
}

.service-grid {
  gap: 18px;
}

.service-card {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  padding: 28px;
  box-shadow: var(--shadow-soft);
  transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.service-card__icon {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: var(--pink-soft);
  color: var(--pink-dark);
  font-family: var(--font-brand);
  font-size: 16px;
  font-weight: 950;
}

.service-card:nth-child(2) .service-card__icon {
  background: var(--cyan-soft);
  color: var(--cyan-dark);
}

.service-card:nth-child(3) .service-card__icon {
  background: var(--yellow);
  color: var(--ink);
}

.service-card h3 {
  color: var(--ink);
  font-size: 20px;
  font-weight: 900;
}

.service-card__target,
.text-link {
  color: var(--cyan-dark);
}

.service-card p,
.service-card ul {
  color: var(--muted);
}

.service-card li::before {
  background: var(--pink);
}

.works-grid {
  display: grid;
  width: min(100% - 40px, 1180px);
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 24px;
}

.work-card {
  display: block;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.work-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-card);
}

.work-card__image {
  aspect-ratio: 16 / 10;
  border-radius: 0;
}

.work-card__body {
  padding: 24px 26px 28px;
}

.tag {
  min-height: 28px;
  background: var(--cyan-soft);
  color: var(--cyan-dark);
  font-size: 11px;
  font-weight: 900;
}

.work-card h3 {
  color: var(--ink);
  font-size: clamp(20px, 2vw, 26px);
  font-weight: 900;
}

.work-card__sub {
  color: var(--pink-dark);
}

.work-card p,
.work-card__meta {
  color: var(--muted);
}

.story {
  position: relative;
  border-radius: 28px;
  background: var(--navy);
  padding: clamp(28px, 5vw, 52px);
  overflow: hidden;
}

.story::after {
  position: absolute;
  top: -82px;
  right: -60px;
  width: 230px;
  height: 230px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.06);
  content: "";
}

.story__image {
  border: 0;
  border-radius: 22px;
  box-shadow: none;
}

.story__text {
  position: relative;
  z-index: 1;
}

.story__text .eyebrow,
.story__text h2,
.story__text p {
  color: #ffffff;
}

.story__text p {
  color: rgba(255, 255, 255, 0.78);
}

.media-wall {
  grid-template-columns: repeat(auto-fit, minmax(132px, 1fr));
  gap: 14px;
}

.media-logo {
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  border: 1px solid var(--line);
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 5px 16px rgba(17, 17, 17, 0.06);
}

.media-logo img {
  border-radius: inherit;
}

.media-dialog {
  border-radius: 22px;
}

.media-dialog__close {
  color: var(--ink);
}

.message-card {
  border: 1px solid var(--line);
  border-radius: 28px;
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.message-card__photo {
  overflow: hidden;
  border-radius: 20px;
}

.message-card h3 {
  color: var(--ink);
  font-weight: 900;
}

.company-grid,
.faq-grid {
  gap: clamp(34px, 6vw, 72px);
}

.company-table,
.faq-list {
  border: 1px solid var(--line);
  border-radius: 24px;
  background: #ffffff;
  padding: 8px 28px;
  box-shadow: var(--shadow-soft);
}

.company-table__row {
  border-color: var(--line);
}

.company-table__head {
  color: #747474;
  font-size: 12px;
  font-weight: 900;
}

.company-table__body {
  color: var(--ink);
  font-weight: 700;
}

.company-table__body a {
  color: var(--cyan-dark);
  font-weight: 900;
}

.faq-item {
  border-color: var(--line);
}

.faq-item h3 {
  position: relative;
  color: var(--ink);
  font-weight: 900;
  padding-left: 34px;
}

.faq-item h3::before {
  position: absolute;
  top: 0;
  left: 0;
  color: var(--pink);
  content: "Q";
  font-size: 18px;
  font-weight: 950;
}

.contact-band {
  border: 0;
  border-radius: 30px;
  background: var(--navy);
  color: #ffffff;
  box-shadow: var(--shadow-card);
}

.contact-band .eyebrow,
.contact-band h2,
.contact-band p,
.contact-list {
  color: #ffffff;
}

.contact-band p,
.contact-list {
  color: rgba(255, 255, 255, 0.8);
}

.contact-list li::before {
  background: var(--yellow);
}

.contact-card {
  border: 0;
  border-radius: 22px;
  background: #ffffff;
  color: var(--ink);
  box-shadow: none;
}

.contact-card > span {
  color: var(--pink-dark);
  font-weight: 950;
}

.contact-form label {
  color: var(--ink);
  font-weight: 850;
}

.contact-form input,
.contact-form textarea {
  border-color: #d8d8d8;
  border-radius: 12px;
  background: #ffffff;
  color: var(--ink);
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--pink);
  box-shadow: 0 0 0 3px rgba(228, 0, 127, 0.12);
}

.req {
  color: var(--pink-dark);
}

.site-footer {
  background: #333333;
  color: #eceadf;
}

.footer-grid::after {
  display: inline-block;
  width: 8px;
  height: 8px;
  margin-left: auto;
  border-radius: 50%;
  background: var(--pink);
  box-shadow: 14px 0 0 var(--cyan), 28px 0 0 var(--yellow);
  content: "";
}

.footer-links a:hover {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 1120px) {
  .site-header {
    padding-inline: 14px;
  }

  .nav {
    gap: 14px;
  }

  .nav__links {
    gap: 13px;
    font-size: 12px;
  }

  .hero__visual {
    bottom: 248px;
  }

  .photo-card--main {
    left: 20px;
  }

  .photo-card--sub {
    right: 20px;
  }
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 132px;
  }

  .nav {
    flex-wrap: wrap;
    flex-direction: row;
    border-radius: 28px;
    padding: 12px 14px;
  }

  .brand {
    margin-right: auto;
  }

  .nav__links {
    order: 3;
    width: 100%;
    overflow-x: auto;
    padding: 3px 2px 1px;
    scrollbar-width: thin;
  }

  .nav__links a {
    flex: 0 0 auto;
  }

  .hero {
    min-height: 840px;
    padding-top: 42px;
    padding-bottom: 450px;
    background-size: 1380px auto;
  }

  .hero__visual {
    bottom: 232px;
    height: 168px;
  }

  .photo-card--main {
    width: 190px;
    height: 120px;
  }

  .photo-card--sub {
    width: 180px;
    height: 114px;
  }

  .photo-card--small {
    right: 174px;
    width: 126px;
    height: 82px;
  }

  .section-heading,
  .service-grid,
  .story,
  .message-card,
  .company-grid,
  .faq-grid,
  .contact-band__grid {
    grid-template-columns: 1fr;
  }

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

  .section-heading {
    align-items: start;
    gap: 18px;
  }

  .story__image img {
    height: 360px;
  }

  .message-card__photo img {
    height: 390px;
  }
}

@media (max-width: 620px) {
  html {
    scroll-padding-top: 142px;
  }

  body {
    font-size: 15px;
  }

  .container,
  .works-grid {
    width: min(100% - 28px, 1180px);
  }

  .site-header {
    position: relative;
    padding: 10px 10px 0;
  }

  .nav {
    gap: 9px;
    border-radius: 24px;
    padding: 10px 11px;
  }

  .brand__logo {
    width: 76px;
  }

  .header-cta {
    min-height: 38px;
    padding-inline: 13px;
    font-size: 11px;
  }

  .nav__links {
    gap: 18px;
    font-size: 11.5px;
  }

  .hero {
    min-height: 870px;
    background-image: none;
    background-size: 760px auto;
    padding: 44px 14px 480px;
  }

  .hero::before {
    top: 32px;
    left: 20px;
    width: 12px;
    height: 12px;
  }

  .hero::after {
    top: 48px;
    right: 23px;
    width: 10px;
    height: 10px;
  }

  .hero h1 {
    font-size: clamp(38px, 11.5vw, 54px);
    line-height: 1.2;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .button {
    width: 100%;
  }

  .hero__visual {
    bottom: 274px;
    height: 126px;
  }

  .photo-card {
    border-width: 4px;
    border-radius: 14px;
  }

  .photo-card--main {
    bottom: 12px;
    left: 5px;
    width: 126px;
    height: 82px;
  }

  .photo-card--sub {
    right: 4px;
    bottom: 18px;
    width: 118px;
    height: 78px;
  }

  .photo-card--small {
    right: calc(50% - 43px);
    bottom: 0;
    width: 86px;
    height: 60px;
  }

  .section {
    padding: 72px 0;
  }

  .section-heading h2,
  .story__text h2,
  .message-card h2,
  .company-intro h2,
  .contact-band h2 {
    font-size: clamp(28px, 8vw, 38px);
  }

  .service-card,
  .work-card__body {
    padding: 23px 20px;
  }

  .story,
  .message-card,
  .contact-band {
    border-radius: 22px;
  }

  .story__image img,
  .message-card__photo img {
    height: 270px;
  }

  .media-wall {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 10px;
  }

  .company-table,
  .faq-list {
    padding: 5px 19px;
  }

  .company-table__row {
    grid-template-columns: 1fr;
  }

  .company-table__head {
    padding-bottom: 5px;
  }

  .company-table__body {
    padding-top: 5px;
  }

  .contact-band {
    padding: 24px 18px;
  }

  .contact-card {
    padding: 22px 18px;
  }

  .footer-grid {
    gap: 18px;
  }

  .footer-grid::after {
    margin: 4px 30px 0 0;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }
}

/* 2026-08-19: flat editorial refinement based on user feedback */

.hero {
  min-height: 0;
  background: var(--canvas);
  padding: clamp(58px, 8vw, 108px) 0 clamp(72px, 10vw, 136px);
}

.hero::before {
  position: absolute;
  z-index: 0;
  inset: 22px 0 auto;
  width: auto;
  height: 600px;
  border-radius: 0;
  background-color: transparent;
  background-image:
    linear-gradient(rgba(6, 58, 87, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(6, 58, 87, 0.05) 1px, transparent 1px);
  background-size: 54px 54px;
  box-shadow: none;
  content: "";
  transform: none;
  -webkit-mask-image: linear-gradient(to bottom, #000, transparent 78%);
  mask-image: linear-gradient(to bottom, #000, transparent 78%);
}

.hero::after {
  display: none;
}

.hero__grid {
  position: relative;
  z-index: 1;
  display: grid;
  width: min(100% - 40px, 1180px);
  grid-template-columns: minmax(0, 0.93fr) minmax(360px, 1.07fr);
  align-items: center;
  gap: clamp(36px, 6vw, 78px);
  text-align: left;
}

.hero .eyebrow {
  color: var(--navy);
}

.hero .eyebrow::before {
  width: 34px;
  height: 1px;
  margin-right: 0;
  border-radius: 0;
  background: currentColor;
  box-shadow: none;
}

.hero h1 {
  max-width: 710px;
  margin: 20px 0 0;
  color: var(--navy);
  font-family: var(--font-serif);
  font-size: clamp(42px, 7vw, 82px);
  font-weight: 700;
  letter-spacing: 0;
  line-height: 1.16;
}

.hero h1 .c-pink,
.hero h1 .u-yellow {
  color: var(--navy);
  background: none;
  padding-inline: 0;
}

.hero h1 .c-cyan {
  color: #1d7185;
}

.hero__lead {
  max-width: 650px;
  margin: 26px 0 0;
  color: var(--muted);
  font-size: clamp(16px, 1.8vw, 18px);
  font-weight: 400;
  line-height: 2.05;
}

.hero__note {
  margin: 22px 0 0;
  color: #8f5f22;
  font-size: 13px;
  font-weight: 700;
}

.hero__actions {
  justify-content: flex-start;
  margin-top: 34px;
}

.hero__visual {
  position: relative;
  right: auto;
  bottom: auto;
  left: auto;
  min-height: 596px;
  height: auto;
  pointer-events: auto;
}

.photo-stack {
  width: auto;
  min-height: 596px;
  height: 100%;
  margin: 0;
}

.photo-card {
  margin: 0;
  border: 10px solid rgba(255, 253, 248, 0.9);
  border-radius: 28px;
  box-shadow: 0 18px 44px rgba(17, 17, 17, 0.13);
}

.photo-card--main {
  inset: 16px 0 auto auto;
  width: min(100%, 560px);
  height: 406px;
  transform: none;
}

.photo-card--sub {
  right: auto;
  bottom: 38px;
  left: 0;
  width: min(48%, 260px);
  height: 210px;
  transform: rotate(-2.4deg);
}

.photo-card--small {
  right: 36px;
  bottom: 0;
  width: min(46%, 238px);
  height: 164px;
  transform: rotate(3deg);
}

.about-copy {
  overflow: visible;
  border: 0;
  border-left: 4px solid var(--pink);
  border-radius: 0;
  background: transparent;
  padding: 0 0 0 clamp(20px, 3vw, 34px);
  box-shadow: none;
}

.about-copy::before {
  display: none;
}

.brand-scene {
  margin: 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
  padding: clamp(10px, 2vw, 26px) 0;
}

.brand-scene img {
  display: block;
  width: min(100%, 1500px);
  height: auto;
  margin-inline: auto;
}

.service-grid {
  gap: 0;
  border-top: 1px solid #d8d8d4;
}

.service-card {
  min-height: 100%;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 32px clamp(24px, 3vw, 38px) 0;
  box-shadow: none;
  transition: none;
}

.service-card:first-child {
  padding-left: 0;
}

.service-card + .service-card {
  border-left: 1px solid #d8d8d4;
}

.service-card:hover {
  transform: none;
  box-shadow: none;
}

.service-card__icon {
  display: block;
  width: auto;
  height: auto;
  margin-bottom: 18px;
  border-radius: 0;
  background: none;
  color: var(--pink-dark);
  font-size: 16px;
  line-height: 1;
}

.service-card:nth-child(2) .service-card__icon,
.service-card:nth-child(3) .service-card__icon {
  background: none;
}

.service-card:nth-child(2) .service-card__icon {
  color: var(--cyan-dark);
}

.service-card:nth-child(3) .service-card__icon {
  color: #806600;
}

.works-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: clamp(44px, 6vw, 76px) clamp(28px, 4vw, 54px);
}

.work-card {
  display: block;
  overflow: visible;
  border: 0;
  border-top: 1px solid #d8d8d4;
  border-radius: 0;
  background: transparent;
  padding-top: 22px;
  box-shadow: none;
  transition: none;
}

.work-card:hover {
  transform: none;
  box-shadow: none;
}

.work-card__image {
  aspect-ratio: 3 / 2;
  border-radius: 4px;
}

.work-card__body {
  padding: 22px 0 0;
}

.tag {
  min-height: 0;
  border-radius: 0;
  background: none;
  color: var(--cyan-dark);
  padding: 0;
}

.tag::before {
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--pink);
  content: "";
}

.story {
  overflow: visible;
  border-top: 1px solid #d8d8d4;
  border-radius: 0;
  background: transparent;
  padding: clamp(32px, 5vw, 52px) 0 0;
}

.story::after {
  display: none;
}

.story__image {
  border: 0;
  border-radius: 4px;
  box-shadow: none;
}

.story__text .eyebrow {
  color: var(--navy);
}

.story__text h2 {
  color: var(--ink);
}

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

.media-wall {
  gap: 20px;
}

.media-logo {
  border: 0;
  border-radius: 0;
  background: transparent;
  box-shadow: none;
}

.media-logo img {
  border-radius: 0;
}

.message-card {
  border: 0;
  border-top: 1px solid #d8d8d4;
  border-radius: 0;
  background: transparent;
  padding: clamp(32px, 5vw, 48px) 0 0;
  box-shadow: none;
}

.message-card__photo {
  border-radius: 4px;
}

.company-table,
.faq-list {
  overflow: visible;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 0;
  box-shadow: none;
}

.company-table__row {
  border-top: 1px solid #d8d8d4;
  border-bottom: 0;
}

.company-table__row:last-child {
  border-bottom: 1px solid #d8d8d4;
}

.company-table__head,
.company-table__body {
  background: transparent;
  padding: 21px 18px;
}

.company-table__head {
  padding-left: 0;
  color: #666;
}

.faq-list {
  display: block;
}

.faq-item {
  border: 0;
  border-top: 1px solid #d8d8d4;
  border-radius: 0;
  background: transparent;
  padding: 25px 0 27px;
}

.faq-item:last-child {
  border-bottom: 1px solid #d8d8d4;
}

.contact-band {
  border-radius: 0;
  background: var(--navy);
  padding: clamp(38px, 6vw, 66px);
  box-shadow: none;
}

.contact-card {
  border-radius: 0;
}

.contact-form input,
.contact-form textarea {
  border-radius: 6px;
}

@media (max-width: 900px) {
  .hero__grid {
    grid-template-columns: 1fr;
    text-align: left;
  }

  .hero__visual,
  .photo-stack {
    min-height: 520px;
  }

  .photo-card--main {
    width: 86%;
    height: 340px;
  }

  .photo-card--sub {
    width: 44%;
    height: 184px;
  }

  .photo-card--small {
    width: 40%;
  }

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

  .service-card,
  .service-card:first-child {
    border-top: 1px solid #d8d8d4;
    padding: 28px 0 34px;
  }

  .service-card:first-child {
    border-top: 0;
  }

  .service-card + .service-card {
    border-left: 0;
  }
}

@media (max-width: 640px) {
  .hero {
    min-height: 0;
    padding: 44px 0 78px;
  }

  .hero__grid {
    width: min(100% - 28px, 1180px);
  }

  .hero h1 {
    font-size: clamp(42px, 13vw, 58px);
  }

  .hero__actions {
    display: grid;
    grid-template-columns: 1fr;
  }

  .hero__visual,
  .photo-stack {
    min-height: 450px;
  }

  .photo-card {
    border-width: 7px;
    border-radius: 18px;
  }

  .photo-card--main {
    inset: 16px 0 auto auto;
    width: 100%;
    height: 292px;
  }

  .photo-card--sub {
    bottom: 18px;
    width: 54%;
    height: 154px;
  }

  .photo-card--small {
    right: 0;
    bottom: 0;
    width: 48%;
    height: 132px;
  }

  .brand-scene {
    padding: 0;
  }

  .brand-scene img {
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    object-position: center;
  }

  .company-table__head,
  .company-table__body {
    padding-right: 0;
    padding-left: 0;
  }

  .contact-band {
    padding: 32px 20px;
  }

  .contact-card {
    padding: 22px 0 0;
    background: transparent;
    color: #fff;
  }

  .contact-card > span,
  .contact-form label {
    color: #fff;
  }

  .contact-form input,
  .contact-form textarea {
    background: #fff;
    color: var(--ink);
  }
}

/* 2026-08-19: illustrated hero and full-width contact refinement */

html {
  scroll-padding-top: 24px;
}

body {
  overflow-x: visible;
}

.site-header {
  position: relative;
  top: auto;
  border: 0;
  border-bottom: 1px solid var(--line);
  background: #ffffff;
  padding: 0;
  box-shadow: none;
  backdrop-filter: none;
}

.nav {
  width: min(100% - 40px, 1180px);
  min-height: 82px;
  margin-inline: auto;
  border-radius: 0;
  background: #ffffff;
  padding: 12px 0;
  box-shadow: none;
  backdrop-filter: none;
}

.header-cta {
  border: 1px solid var(--cyan);
  border-radius: 0;
  box-shadow: none;
}

.header-cta:hover {
  box-shadow: none;
}

.hero {
  min-height: 0;
  overflow: visible;
  background: var(--canvas);
  padding: 0;
}

.hero::before,
.hero::after {
  display: none;
}

.hero__copy {
  position: relative;
  z-index: 1;
  display: block;
  width: min(100% - 40px, 920px);
  padding: clamp(52px, 5vw, 72px) 0 clamp(38px, 4vw, 56px);
  text-align: center;
}

.hero .eyebrow {
  justify-content: center;
}

.hero h1 {
  max-width: none;
  margin: 20px 0 0;
  font-size: clamp(46px, 5.6vw, 72px);
}

.hero h1 br {
  display: none;
}

.hero__lead {
  max-width: 780px;
  margin: 26px auto 0;
}

.hero__note {
  margin-top: 18px;
}

.hero__actions {
  justify-content: center;
  margin-top: 28px;
}

.hero__art {
  width: 100%;
  margin: 0;
  overflow: hidden;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: #fffdf8;
  line-height: 0;
}

.hero__art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1774 / 887;
  object-fit: cover;
  object-position: center;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 20px;
  color: var(--cyan-dark);
  font-size: 14px;
  font-weight: 900;
  text-decoration: underline;
  text-decoration-thickness: 1px;
  text-underline-offset: 5px;
}

.service-link:hover {
  color: var(--pink-dark);
}

#contact.section {
  width: 100%;
  background: var(--navy);
}

#contact .contact-band {
  background: transparent;
  padding: 0;
}

#contact .contact-card {
  border: 0;
  border-radius: 0;
  background: transparent;
  color: #ffffff;
  padding-top: 0;
  box-shadow: none;
}

#contact .contact-card > span,
#contact .contact-form label {
  color: #ffffff;
}

#contact .contact-form input,
#contact .contact-form textarea {
  background: #ffffff;
  color: var(--ink);
}

#contact .contact-form .button--primary {
  border: 1px solid #ffffff;
  background: #ffffff;
  color: var(--navy);
  box-shadow: none;
}

#contact .contact-form .button--primary:hover,
#contact .contact-form .button--primary:focus-visible {
  border-color: var(--pink);
  background: var(--pink);
  color: #ffffff;
}

@media (max-width: 900px) {
  html {
    scroll-padding-top: 20px;
  }

  .site-header {
    padding: 0;
  }

  .nav {
    width: min(100% - 28px, 1180px);
    min-height: auto;
    flex-flow: row wrap;
    align-items: center;
    gap: 10px 18px;
    border-radius: 0;
    padding: 13px 0 11px;
  }

  .brand {
    margin-right: auto;
  }

  .header-cta {
    display: inline-flex;
    min-height: 38px;
    padding-inline: 14px;
  }

  .nav__links {
    order: 3;
    width: 100%;
    gap: 18px;
    overflow-x: auto;
    border-top: 1px solid var(--line);
    padding: 9px 0 1px;
  }

  .hero__copy {
    width: min(100% - 40px, 760px);
  }
}

@media (max-width: 640px) {
  .nav {
    width: min(100% - 28px, 1180px);
    border-radius: 0;
    padding: 11px 0 9px;
  }

  .brand__logo {
    width: 78px;
  }

  .header-cta {
    border-radius: 0;
    font-size: 10.5px;
  }

  .hero {
    padding: 0;
  }

  .hero__copy {
    width: min(100% - 28px, 920px);
    padding: 36px 0 38px;
  }

  .hero h1 {
    font-size: clamp(40px, 11vw, 48px);
  }

  .hero h1 br {
    display: inline;
  }

  .hero__lead {
    font-size: 14px;
    line-height: 1.9;
  }

  .hero__actions {
    display: flex;
    flex-wrap: nowrap;
    gap: 10px;
  }

  .hero__actions .button {
    width: auto;
    flex: 1;
    padding-inline: 12px;
  }

  .hero__art img {
    aspect-ratio: 4 / 3;
    object-position: center;
  }

  #contact .contact-band {
    padding: 0;
  }

  #contact .contact-card {
    padding: 8px 0 0;
  }
}

/* 2026-08-19: transparent illustrated hero and compact media wall */

.site-header {
  position: absolute;
  inset: 0 0 auto;
  z-index: 200;
  width: 100%;
  border: 0;
  background: transparent;
  box-shadow: none;
  backdrop-filter: none;
}

.nav {
  background: transparent;
  box-shadow: none;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #fbf8f1;
}

.hero__copy {
  position: absolute;
  top: clamp(140px, 16.5vw, 238px);
  left: 50%;
  z-index: 2;
  width: min(100% - 40px, 1180px);
  margin: 0;
  padding: 0;
  transform: translateX(-50%);
  text-align: center;
  pointer-events: none;
}

.hero h1 {
  max-width: none;
  margin: 0;
  font-size: clamp(42px, 5.6vw, 76px);
  line-height: 1.15;
  white-space: nowrap;
}

.hero__art {
  width: 100%;
  margin: 0;
  overflow: visible;
  border: 0;
  background: #fbf8f1;
}

.hero__art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: auto;
  object-fit: contain;
  object-position: center top;
}

#media .section-heading {
  grid-template-columns: 1fr;
}

@media (max-width: 900px) {
  .nav__links {
    border-top: 0;
  }

  .hero__art {
    padding-top: 28px;
  }

  .hero__copy {
    top: clamp(128px, 21vw, 162px);
  }

  .hero h1 {
    font-size: clamp(34px, 7.4vw, 56px);
  }
}

@media (max-width: 640px) {
  .nav__links {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 7px 4px;
    overflow: visible;
    padding-top: 7px;
    font-size: 11px;
    text-align: center;
  }

  .nav__links a {
    min-width: 0;
    white-space: nowrap;
  }

  .hero__art {
    padding-top: 130px;
  }

  .hero__copy {
    top: 170px;
    width: calc(100% - 28px);
  }

  .hero h1 {
    font-size: clamp(27px, 7.45vw, 36px);
    letter-spacing: -0.035em;
  }

  #media .media-wall {
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 8px;
  }

  #media .media-logo {
    width: 100%;
    min-width: 0;
    aspect-ratio: 1;
  }
}

/* 2026-08-19: About integrated into wide illustrated hero */

.brand__logo {
  width: 138px;
  max-height: 57px;
}

.hero__copy {
  top: clamp(130px, 9.8vw, 168px);
  width: min(100% - 40px, 960px);
}

.hero h1 {
  font-size: clamp(44px, 4.8vw, 68px);
}

.hero__about {
  max-width: 860px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: clamp(14px, 1.1vw, 16px);
  font-weight: 500;
  line-height: 2;
  text-align: left;
  pointer-events: auto;
}

.hero__about p + p {
  margin-top: 16px;
}

.hero__art {
  display: flex;
  min-height: 1000px;
  align-items: flex-end;
  justify-content: center;
  padding-top: 400px;
}

.hero__art img {
  width: min(100%, 1440px);
  max-height: 600px;
  object-position: center bottom;
}

@media (max-width: 900px) {
  .hero__copy {
    position: relative;
    top: auto;
    left: auto;
    width: min(100% - 40px, 760px);
    margin-inline: auto;
    padding: 168px 0 44px;
    transform: none;
  }

  .hero h1 {
    font-size: clamp(36px, 7vw, 52px);
  }

  .hero__about {
    margin-top: 24px;
  }

  .hero__art {
    display: block;
    min-height: 0;
    padding-top: 0;
  }

  .hero__art img {
    width: 100%;
    max-height: none;
  }
}

@media (max-width: 640px) {
  .brand__logo {
    width: 117px;
    max-height: 57px;
  }

  .hero__copy {
    width: calc(100% - 28px);
    padding: 180px 0 36px;
  }

  .hero h1 {
    font-size: clamp(27px, 7.45vw, 36px);
  }

  .hero__about {
    margin-top: 22px;
    font-size: 14px;
    line-height: 1.95;
  }

  .hero__about p + p {
    margin-top: 14px;
  }
}

/* 2026-08-19: accessible mobile hamburger navigation */

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 0;
  border-radius: 0;
  background: transparent;
  padding: 8px 10px;
  color: var(--ink);
  cursor: pointer;
}

.nav-toggle__line {
  display: block;
  width: 24px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

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

.nav-toggle[aria-expanded="true"] .nav-toggle__line:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.nav-toggle:focus-visible {
  outline: 3px solid var(--pink);
  outline-offset: 3px;
}

@media (max-width: 640px) {
  .nav {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 44px;
    align-items: center;
  }

  .js .nav-toggle:not([hidden]) {
    display: grid;
    place-content: center;
    justify-self: end;
  }

  .js .nav__links {
    grid-column: 1 / -1;
    width: 100%;
    overflow: visible;
    background: rgba(251, 248, 241, 0.98);
    padding: 8px 0 0;
    text-align: left;
  }

  .js .nav__links[hidden] {
    display: none;
  }

  .js .nav__links:not([hidden]) {
    display: flex;
    flex-direction: column;
    gap: 0;
  }

  .js .nav__links a {
    display: flex;
    min-height: 44px;
    align-items: center;
    padding: 9px 12px;
    border-top: 1px solid var(--line);
    font-size: 13px;
  }
}

@media (min-width: 641px) {
  .nav-toggle {
    display: none !important;
  }

  .nav__links {
    display: flex !important;
  }
}
