:root {
  --white: #fffdf8;
  --paper: #f7f4ec;
  --ink: #1f2722;
  --text-deep: #151714;
  --text-mid: rgba(21, 23, 20, 0.88);
  --text-soft: rgba(21, 23, 20, 0.66);
  --muted: #65766f;
  --emerald: #009d8d;
  --green: #70bd75;
  --mint: #dcefe5;
  --gold: #b68a34;
  --gold-soft: #dfc481;
  --line: rgba(31, 39, 34, 0.14);
  --shadow: 0 22px 60px rgba(37, 64, 48, 0.18);
  --serif: "Shippori Mincho", "Noto Serif JP", serif;
  --display: "Cormorant Garamond", "Times New Roman", serif;
  --body: "Noto Serif JP", "Yu Mincho", serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--white);
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--body);
  font-size: 16px;
  line-height: 1.9;
  letter-spacing: 0.04em;
  background: var(--white);
  overflow-x: hidden;
}

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

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

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

button:focus-visible,
a:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 5px;
}

.loader {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  background: var(--white);
  z-index: 50;
  transition: opacity 700ms ease, visibility 700ms ease;
}

.loader__mark {
  font-family: var(--display);
  font-size: 58px;
  font-style: italic;
  color: var(--gold);
  opacity: 0;
  transform: translateY(12px);
  animation: loaderMark 1200ms ease forwards;
}

body.is-loaded .loader {
  opacity: 0;
  visibility: hidden;
}

.gold-canvas {
  display: none;
}

.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  width: 0%;
  height: 3px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
  z-index: 20;
}

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  display: grid;
  grid-template-columns: 190px 1fr 150px;
  align-items: start;
  min-height: 92px;
  z-index: 18;
  pointer-events: none;
}

.site-header::before {
  content: none;
  position: absolute;
  top: 10px;
  left: 28px;
  right: 28px;
  height: 68px;
  border: 1px solid rgba(182, 138, 52, 0.14);
  border-radius: 8px;
  background:
    linear-gradient(90deg, rgba(255, 253, 248, 0.82), rgba(243, 250, 246, 0.86), rgba(255, 249, 234, 0.78));
  box-shadow: 0 18px 46px rgba(37, 64, 48, 0.11);
  opacity: 0;
  transform: translateY(-14px) scaleX(0.96);
  transform-origin: top center;
  backdrop-filter: blur(14px);
  transition: opacity 360ms ease, transform 360ms ease, box-shadow 360ms ease;
}

.site-logo,
.global-nav,
.social-links {
  pointer-events: auto;
}

.site-logo {
  display: block;
  width: 160px;
  padding: 22px 0 0 42px;
  transition: padding 320ms ease;
}

.site-logo img {
  width: 112px;
  height: 112px;
  object-fit: contain;
  mix-blend-mode: multiply;
}

.global-nav {
  justify-self: center;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  height: 76px;
  color: var(--text-deep);
  font-family: var(--display);
  font-size: 17px;
  letter-spacing: 0.1em;
  position: relative;
  z-index: 1;
  transition: color 320ms ease, height 320ms ease;
}

.global-nav a {
  position: relative;
  line-height: 1;
  opacity: 0.82;
  transition: opacity 220ms ease;
}

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

.global-nav a:hover,
.global-nav a.is-active {
  opacity: 1;
}

.global-nav a:hover::after,
.global-nav a.is-active::after {
  transform: scaleX(1);
}

.social-links {
  display: flex;
  gap: 13px;
  justify-content: flex-end;
  padding: 22px 38px 0 0;
  color: var(--text-deep);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.08em;
  position: relative;
  z-index: 1;
  transition: color 320ms ease, padding 320ms ease;
}

.social-links span {
  display: grid;
  place-items: center;
  width: 28px;
  height: 28px;
  border: 1px solid rgba(21, 23, 20, 0.28);
  border-radius: 50%;
  transition: border-color 320ms ease;
}

body.is-scrolled .site-header::before {
  opacity: 1;
  transform: translateY(0);
}

body.is-scrolled .site-logo {
  padding-top: 18px;
}

body.is-scrolled .global-nav,
body.is-scrolled .social-links {
  color: rgba(21, 23, 20, 0.9);
}

body.is-scrolled .social-links span {
  border-color: rgba(21, 23, 20, 0.26);
}

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

.site::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 50%;
  width: min(58vw, 760px);
  transform: translateX(-50%);
  background-image: image-set(
    url("./assets/generated/bine-scroll-bg.webp") type("image/webp"),
    url("./assets/generated/bine-scroll-bg.png") type("image/png")
  );
  background-position: center top;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  opacity: 0.46;
  -webkit-mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, #000 26%, #000 74%, rgba(0, 0, 0, 0.2) 92%, transparent 100%);
  mask-image: linear-gradient(90deg, transparent 0%, rgba(0, 0, 0, 0.2) 8%, #000 26%, #000 74%, rgba(0, 0, 0, 0.2) 92%, transparent 100%);
  z-index: 0;
}

.site::after {
  content: none;
}

.section-panel {
  position: relative;
  z-index: 1;
  min-height: 100vh;
  width: min(1180px, calc(100% - 48px));
  margin: 0 auto;
}

.hero {
  display: grid;
  place-items: center;
  padding-top: 92px;
}

.hero__copy {
  position: relative;
  display: grid;
  grid-template-columns: auto auto;
  align-items: center;
  gap: 44px;
  color: var(--text-deep);
  z-index: 2;
}

.vertical-copy {
  writing-mode: vertical-rl;
  text-orientation: mixed;
  margin: 0;
  font-family: var(--serif);
  font-size: 24px;
  font-weight: 400;
  line-height: 2.2;
  letter-spacing: 0.16em;
}

.hero h1 {
  margin: 0;
  font-family: var(--display);
  font-size: 88px;
  font-weight: 300;
  font-style: italic;
  line-height: 0.9;
  letter-spacing: 0;
  color: rgba(21, 23, 20, 0.12);
  text-shadow: 0 16px 40px rgba(255, 255, 255, 0.3);
}

.hero__caption {
  position: absolute;
  left: calc(50% + 22px);
  bottom: 14%;
  width: 230px;
  margin: 0;
  color: var(--text-mid);
  font-size: 13px;
  line-height: 2.1;
}

.round-pager {
  position: absolute;
  right: 48px;
  bottom: 46px;
  width: 62px;
  height: 62px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(21, 23, 20, 0.16);
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.7);
  box-shadow: var(--shadow);
  transition: transform 240ms ease, border-color 240ms ease;
}

.round-pager span,
.page-top span {
  width: 12px;
  height: 12px;
  border-right: 1px solid currentColor;
  border-bottom: 1px solid currentColor;
  color: var(--gold);
  transform: rotate(45deg);
}

.round-pager:hover {
  transform: translateY(-4px);
  border-color: rgba(182, 138, 52, 0.5);
}

.section-heading {
  color: var(--text-deep);
  text-align: center;
}

.section-kicker {
  margin: 0 0 8px;
  font-family: var(--display);
  font-size: 16px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: var(--gold);
}

.section-heading h2 {
  margin: 0;
  font-family: var(--serif);
  font-size: 32px;
  font-weight: 400;
  letter-spacing: 0.13em;
}

.about {
  display: grid;
  grid-template-rows: 1fr auto auto 1fr;
  align-items: center;
  row-gap: 50px;
  padding: 120px 0;
}

.about .section-heading {
  grid-row: 2;
}

.about__statement {
  grid-row: 3;
  justify-self: center;
  color: var(--text-deep);
  text-align: center;
}

.bracket-copy {
  position: relative;
  margin: 0;
  padding: 22px 48px;
  font-family: var(--serif);
  font-size: 20px;
  line-height: 2.2;
  letter-spacing: 0.12em;
}

.bracket-copy::before,
.bracket-copy::after {
  content: "";
  position: absolute;
  top: 10px;
  bottom: 10px;
  width: 22px;
  border-top: 1px solid rgba(21, 23, 20, 0.2);
  border-bottom: 1px solid rgba(21, 23, 20, 0.2);
}

.bracket-copy::before {
  left: 0;
  border-left: 1px solid rgba(21, 23, 20, 0.2);
}

.bracket-copy::after {
  right: 0;
  border-right: 1px solid rgba(21, 23, 20, 0.2);
}

.about__body {
  width: 360px;
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 13px;
  text-align: center;
  text-shadow: 0 1px 12px rgba(255, 255, 255, 0.42);
}

.about__body p {
  margin: 0 0 24px;
}

.gold-feather {
  display: none;
}

.gold-feather::after {
  content: "";
  position: absolute;
  left: 12px;
  right: 7px;
  top: 50%;
  height: 1px;
  background: rgba(255, 255, 255, 0.54);
  transform: rotate(-8deg);
}

.feather-a {
  top: 16%;
  right: 32%;
  transform: rotate(-34deg);
}

.feather-b {
  top: 24%;
  right: 31%;
  transform: rotate(-22deg);
}

.services {
  position: relative;
}

.service-intro {
  min-height: 48vh;
  display: grid;
  place-items: center;
}

.service-row {
  display: grid;
  grid-template-columns: 1fr minmax(300px, 430px) 1fr;
  align-items: center;
  gap: 38px;
  min-height: 82vh;
}

.service-copy {
  color: var(--text-deep);
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.52);
  z-index: 3;
}

.service-copy h3 {
  margin: 0 0 22px;
  font-family: var(--serif);
  font-size: 31px;
  font-weight: 400;
  letter-spacing: 0.12em;
}

.service-copy p {
  margin: 0 0 28px;
  font-size: 13px;
  line-height: 2.1;
  color: var(--text-mid);
}

.service-label {
  margin-bottom: 10px;
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  letter-spacing: 0.06em;
  color: rgba(182, 138, 52, 0.88);
}

.service-copy a {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  min-height: 32px;
  font-family: var(--display);
  font-size: 15px;
  font-style: italic;
  color: var(--text-deep);
}

.service-copy a::after {
  content: "";
  display: block;
  width: 122px;
  height: 1px;
  background: rgba(21, 23, 20, 0.24);
  transition: width 260ms ease, background 260ms ease;
}

.service-copy a:hover::after {
  width: 154px;
  background: rgba(182, 138, 52, 0.68);
}

.service-number {
  color: rgba(21, 23, 20, 0.12);
  font-family: var(--display);
  line-height: 0.82;
  z-index: 2;
}

.service-number span {
  display: block;
  font-size: 26px;
  font-style: italic;
  line-height: 1;
}

.service-number strong {
  display: block;
  font-size: 145px;
  font-weight: 300;
  font-style: italic;
  letter-spacing: 0;
}

.service-media {
  position: relative;
  width: 300px;
  aspect-ratio: 3 / 2;
  border-radius: 2px;
  background: transparent;
  box-shadow: none;
  overflow: hidden;
  transform: none;
  transition: opacity 250ms ease, filter 250ms ease;
  z-index: 4;
  isolation: isolate;
}

.service-media::before {
  display: none;
}

.service-media:hover {
  filter: none;
}

.service-media:hover::before {
  transform: none;
}

.service-media img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 20px;
  mix-blend-mode: multiply;
}

.service-media picture {
  display: block;
  width: 100%;
  height: 100%;
}

.service-media--visual {
  background: transparent;
}

.service-media--visual img {
  object-fit: cover;
  padding: 0;
  mix-blend-mode: normal;
}

.service-media--provided img {
  object-fit: cover;
}

.service-media--provided::after {
  content: none;
}

.service-media--logo img {
  object-fit: contain;
  padding: 20px;
  mix-blend-mode: multiply;
}

.service-row--right .service-number {
  grid-column: 1;
  justify-self: end;
  text-align: left;
}

.service-row--right .service-copy {
  grid-column: 2;
}

.service-row--right .service-media {
  grid-column: 3;
  justify-self: start;
}

.service-row--left .service-number {
  grid-column: 3;
  justify-self: start;
}

.service-row--left .service-copy {
  grid-column: 2;
  grid-row: 1;
}

.service-row--left .service-media {
  grid-column: 1;
  grid-row: 1;
  justify-self: end;
}

.vertical-side-note {
  position: absolute;
  margin: 0;
  writing-mode: vertical-rl;
  color: rgba(31, 39, 34, 0.36);
  font-size: 13px;
  line-height: 2.3;
  letter-spacing: 0.1em;
}

.service-intro .vertical-side-note {
  right: 10%;
  bottom: 8%;
}

.service-row--right .vertical-side-note {
  right: 5%;
  top: 18%;
}

.service-row--left .vertical-side-note {
  left: 5%;
  top: 18%;
}

.media-scene {
  position: absolute;
  inset: 0;
  overflow: hidden;
}

.media-scene::after {
  content: "";
  position: absolute;
  inset: auto -14% -28% -14%;
  height: 70%;
  background: radial-gradient(ellipse at center, rgba(0, 157, 141, 0.16), transparent 64%);
}

.media-scene--sns .screen {
  position: absolute;
  left: 19%;
  top: 19%;
  width: 56%;
  height: 58%;
  border: 9px solid #2f4b46;
  background:
    linear-gradient(90deg, rgba(0, 157, 141, 0.22) 1px, transparent 1px),
    linear-gradient(0deg, rgba(0, 157, 141, 0.18) 1px, transparent 1px),
    #f8f5ea;
  background-size: 22px 22px;
  box-shadow: 12px 14px 0 rgba(182, 138, 52, 0.22);
}

.media-scene--sns .play {
  position: absolute;
  left: 43%;
  top: 42%;
  border-left: 24px solid var(--gold);
  border-top: 15px solid transparent;
  border-bottom: 15px solid transparent;
  filter: drop-shadow(0 6px 10px rgba(31, 39, 34, 0.16));
}

.bubble {
  position: absolute;
  border-radius: 50%;
  background: rgba(0, 157, 141, 0.16);
  border: 1px solid rgba(0, 157, 141, 0.28);
}

.bubble-a {
  width: 54px;
  height: 54px;
  right: 13%;
  top: 15%;
}

.bubble-b {
  width: 36px;
  height: 36px;
  left: 11%;
  bottom: 16%;
}

.media-scene--car .car-body,
.media-scene--car .car-roof {
  position: absolute;
  background: linear-gradient(135deg, #1d2723, #577068);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.36);
}

.media-scene--car .car-body {
  left: 14%;
  bottom: 30%;
  width: 72%;
  height: 30%;
  border-radius: 36px 48px 20px 22px;
}

.media-scene--car .car-roof {
  left: 31%;
  bottom: 50%;
  width: 35%;
  height: 25%;
  border-radius: 60px 54px 0 0;
  transform: skew(-14deg);
}

.wheel {
  position: absolute;
  bottom: 23%;
  width: 42px;
  height: 42px;
  border: 9px solid #26342f;
  border-radius: 50%;
  background: var(--paper);
}

.wheel-a {
  left: 25%;
}

.wheel-b {
  right: 23%;
}

.shine {
  position: absolute;
  left: 18%;
  top: 20%;
  width: 70%;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(182, 138, 52, 0.76), transparent);
  transform: rotate(-12deg);
}

.media-scene--bath .bath-base {
  position: absolute;
  left: 17%;
  bottom: 21%;
  width: 66%;
  height: 31%;
  border-radius: 100px 100px 34px 34px;
  background:
    repeating-linear-gradient(90deg, rgba(182, 138, 52, 0.24), rgba(182, 138, 52, 0.24) 8px, rgba(255, 255, 255, 0.2) 8px, rgba(255, 255, 255, 0.2) 16px),
    linear-gradient(135deg, #d6b46a, #886326);
}

.steam {
  position: absolute;
  width: 28px;
  height: 96px;
  border-left: 2px solid rgba(0, 157, 141, 0.46);
  border-radius: 50%;
  animation: steam 3400ms ease-in-out infinite;
}

.steam-a {
  left: 32%;
  top: 16%;
}

.steam-b {
  left: 48%;
  top: 10%;
  animation-delay: 420ms;
}

.steam-c {
  right: 27%;
  top: 17%;
  animation-delay: 800ms;
}

.media-scene--ear .ear-line {
  position: absolute;
  left: 34%;
  top: 12%;
  width: 80px;
  height: 134px;
  border: 3px solid rgba(31, 39, 34, 0.58);
  border-left-width: 1px;
  border-radius: 54% 44% 55% 46%;
  transform: rotate(10deg);
}

.jewel {
  position: absolute;
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: radial-gradient(circle at 35% 30%, #fff, var(--gold-soft) 36%, var(--gold));
  box-shadow: 0 0 16px rgba(182, 138, 52, 0.5);
}

.jewel-a {
  left: 55%;
  top: 38%;
}

.jewel-b {
  left: 58%;
  top: 52%;
}

.jewel-c {
  left: 50%;
  top: 61%;
}

.media-scene--ad .ad-card {
  position: absolute;
  width: 45%;
  height: 54%;
  border: 1px solid rgba(0, 157, 141, 0.28);
  background: rgba(255, 253, 248, 0.86);
  box-shadow: 16px 16px 0 rgba(0, 157, 141, 0.1);
}

.card-a {
  left: 19%;
  top: 17%;
  transform: rotate(-5deg);
}

.card-b {
  right: 15%;
  bottom: 14%;
  transform: rotate(7deg);
}

.ad-line {
  position: absolute;
  height: 2px;
  background: linear-gradient(90deg, var(--emerald), var(--gold));
}

.line-a {
  left: 27%;
  top: 38%;
  width: 38%;
}

.line-b {
  right: 22%;
  bottom: 36%;
  width: 34%;
}

.media-scene--ai::before,
.media-scene--ai::after {
  content: "";
  position: absolute;
  left: 22%;
  right: 22%;
  top: 22%;
  bottom: 22%;
  border: 1px solid rgba(0, 157, 141, 0.26);
  transform: rotate(45deg);
}

.media-scene--ai::after {
  transform: rotate(0deg);
}

.node {
  position: absolute;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: radial-gradient(circle at 34% 30%, #fff, var(--mint) 38%, var(--emerald));
  box-shadow: 0 0 24px rgba(0, 157, 141, 0.24);
}

.node-a {
  left: 20%;
  top: 21%;
}

.node-b {
  right: 20%;
  top: 24%;
}

.node-c {
  left: 24%;
  bottom: 20%;
}

.node-d {
  right: 24%;
  bottom: 20%;
}

.company {
  display: grid;
  grid-template-rows: 1fr auto auto 1fr;
  align-items: center;
  gap: 44px;
  padding: 110px 0;
}

.company .section-heading {
  grid-row: 2;
}

.company-list {
  grid-row: 3;
  width: min(520px, 92%);
  margin: 0 auto;
  color: var(--text-deep);
  text-shadow: 0 1px 14px rgba(255, 255, 255, 0.5);
}

.company-list div {
  display: grid;
  grid-template-columns: 124px 1fr;
  gap: 24px;
  padding: 17px 0;
  border-bottom: 1px solid rgba(21, 23, 20, 0.16);
}

.company-list dt,
.company-list dd {
  margin: 0;
  font-size: 13px;
}

.company-list dt {
  color: var(--text-soft);
}

.contact {
  min-height: 76vh;
  display: grid;
  place-items: center;
  align-content: center;
  gap: 22px;
  padding: 120px 0 90px;
  text-align: center;
}

.contact__bubble {
  position: relative;
  display: inline-grid;
  place-items: center;
  width: 188px;
  height: 92px;
  margin-bottom: 18px;
  border-radius: 50%;
  background: rgba(255, 253, 248, 0.96);
  color: var(--gold);
  font-family: var(--display);
  font-size: 28px;
  font-style: italic;
  box-shadow: var(--shadow);
}

.contact__bubble::after {
  content: "";
  position: absolute;
  right: 24px;
  bottom: 2px;
  width: 22px;
  height: 22px;
  background: rgba(255, 253, 248, 0.96);
  transform: rotate(30deg) skew(20deg);
}

.contact__text {
  width: min(460px, 88%);
  margin: 0 auto;
  color: var(--text-mid);
  font-size: 13px;
}

.contact-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 18px;
  min-width: 230px;
  min-height: 54px;
  margin-top: 10px;
  padding: 0 24px;
  border: 1px solid rgba(21, 23, 20, 0.22);
  color: var(--text-deep);
  background: rgba(255, 253, 248, 0.5);
  backdrop-filter: blur(10px);
  font-family: var(--display);
  font-size: 18px;
  letter-spacing: 0.04em;
  transition: transform 240ms ease, background 240ms ease;
}

.contact-button i {
  width: 34px;
  height: 1px;
  background: currentColor;
  position: relative;
}

.contact-button i::after {
  content: "";
  position: absolute;
  right: 0;
  top: -4px;
  width: 9px;
  height: 9px;
  border-top: 1px solid currentColor;
  border-right: 1px solid currentColor;
  transform: rotate(45deg);
}

.contact-button:hover {
  transform: translateY(-3px);
  background: rgba(255, 253, 248, 0.78);
}

.copyright {
  margin: 70px 0 0;
  color: var(--text-soft);
  font-family: var(--display);
  font-size: 13px;
  letter-spacing: 0.04em;
}

.page-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  width: 52px;
  height: 52px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(182, 138, 52, 0.38);
  border-radius: 50%;
  color: var(--gold);
  background: rgba(255, 253, 248, 0.82);
  box-shadow: 0 14px 30px rgba(37, 64, 48, 0.15);
  cursor: pointer;
  opacity: 0;
  visibility: hidden;
  transform: translateY(14px);
  transition: opacity 220ms ease, visibility 220ms ease, transform 220ms ease;
  z-index: 17;
}

.page-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.page-top span {
  transform: rotate(225deg);
}

.reveal-block {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 420ms ease, transform 520ms ease;
}

.reveal-block.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.site-header[data-reveal] {
  opacity: 0;
  transform: translateY(-12px);
  transition: opacity 700ms ease, transform 700ms ease;
}

body.is-loaded .site-header[data-reveal] {
  opacity: 1;
  transform: translateY(0);
}

@keyframes loaderMark {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes steam {
  0%,
  100% {
    opacity: 0.25;
    transform: translateY(10px) scaleY(0.88);
  }
  50% {
    opacity: 0.8;
    transform: translateY(-8px) scaleY(1.08);
  }
}

@media (max-width: 980px) {
  .site-header {
    grid-template-columns: 126px 1fr;
  }

  .site-header::before {
    left: 14px;
    right: 14px;
  }

  .site-logo {
    width: 106px;
    padding: 22px 0 0 18px;
  }

  .site-logo img {
    width: 82px;
    height: 82px;
  }

  .global-nav {
    justify-self: end;
    padding-right: 16px;
    gap: 18px;
    font-size: 13px;
  }

  .social-links {
    display: none;
  }

  .site::before,
  .site::after {
    width: 64vw;
  }

  .section-panel {
    width: min(760px, calc(100% - 34px));
  }

  .hero h1 {
    font-size: 64px;
  }

  .hero__caption {
    left: 44%;
    bottom: 12%;
  }

  .service-row {
    grid-template-columns: 1fr minmax(290px, 390px) 1fr;
    gap: 18px;
  }

  .service-media {
    width: 235px;
  }

  .service-number strong {
    font-size: 98px;
  }
}

@media (max-width: 760px) {
  body {
    font-size: 15px;
  }

  .site::before,
  .site::after {
    width: 100%;
  }

  .gold-canvas {
    display: none;
  }

  .site-header {
    min-height: 72px;
    grid-template-columns: 86px 1fr;
    background: transparent;
  }

  .site-header::before {
    display: block;
    top: 8px;
    left: 8px;
    right: 8px;
    height: 56px;
  }

  .site-logo {
    padding: 10px 0 0 12px;
  }

  .site-logo img {
    width: 54px;
    height: 54px;
  }

  .global-nav {
    height: 72px;
    justify-content: flex-end;
    overflow-x: auto;
    padding: 0 12px;
    gap: 18px;
    color: var(--text-deep);
    font-size: 13px;
  }

  .global-nav a {
    flex: 0 0 auto;
  }

  .section-panel {
    width: min(100% - 28px, 540px);
  }

  .hero {
    min-height: 92vh;
    padding-top: 84px;
  }

  .hero__copy {
    gap: 22px;
  }

  .vertical-copy {
    font-size: 21px;
  }

  .hero h1 {
    display: none;
  }

  .hero__caption {
    left: 50%;
    transform: translateX(-50%);
    bottom: 10%;
    width: min(330px, 84%);
    text-align: center;
  }

  .hero__caption.reveal-block {
    transform: translateX(-50%) translateY(28px);
  }

  .hero__caption.reveal-block.is-visible {
    transform: translateX(-50%) translateY(0);
  }

  .round-pager {
    right: 22px;
    bottom: 22px;
    width: 52px;
    height: 52px;
  }

  .about,
  .company {
    min-height: auto;
    padding: 108px 0;
  }

  .section-heading h2 {
    font-size: 27px;
  }

  .about__body {
    width: min(350px, 86%);
  }

  .bracket-copy {
    padding: 20px 32px;
    font-size: 18px;
  }

  .gold-feather {
    opacity: 0.7;
  }

  .service-intro {
    min-height: 32vh;
  }

  .service-row,
  .service-row--left,
  .service-row--right {
    grid-template-columns: 1fr;
    align-content: center;
    gap: 24px;
    min-height: 88vh;
    padding: 76px 0;
  }

  .service-row--right .service-number,
  .service-row--left .service-number,
  .service-row--right .service-copy,
  .service-row--left .service-copy,
  .service-row--right .service-media,
  .service-row--left .service-media {
    grid-column: 1;
    grid-row: auto;
    justify-self: center;
    text-align: center;
  }

  .service-number {
    color: rgba(21, 23, 20, 0.12);
    order: 1;
  }

  .service-number span {
    font-size: 20px;
  }

  .service-number strong {
    font-size: 82px;
  }

  .service-copy {
    order: 2;
    width: min(360px, 90%);
  }

  .service-copy h3 {
    font-size: 26px;
  }

  .service-copy a::after {
    width: 82px;
  }

  .service-media {
    order: 3;
    width: min(310px, 88%);
  }

  .vertical-side-note {
    display: none;
  }

  .company-list div {
    grid-template-columns: 1fr;
    gap: 2px;
  }

  .contact {
    min-height: auto;
  }

  .contact__bubble {
    width: 154px;
    height: 78px;
    font-size: 23px;
  }

  .page-top {
    right: 16px;
    bottom: 16px;
    width: 46px;
    height: 46px;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }

  .gold-canvas {
    display: none;
  }
}
