/* ============================================
   KUROSUKE STUDIO — Design System & Styles
   ============================================ */

/* --- Design Tokens --- */
:root {
  --ink: #171818;
  --cream: #f2f0ea;
  --red: #e5492d;
  --blue: #203c62;
  --line: rgba(23, 24, 24, .18);
  --line-light: rgba(255, 255, 255, .25);
  --ease-out-expo: cubic-bezier(.16, 1, .3, 1);
  --ease-out-quart: cubic-bezier(.25, 1, .5, 1);
  --duration: .7s;
}

/* --- Reset & Base --- */
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--cream);
  color: var(--ink);
  font-family: 'Noto Sans JP', sans-serif;
  font-size: 14px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- Film Grain Overlay --- */
.grain {
  position: fixed;
  inset: 0;
  opacity: .035;
  pointer-events: none;
  z-index: 20;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 180 180' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='.9' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='.7'/%3E%3C/svg%3E");
}


/* ============================================
   KEYFRAME ANIMATIONS
   ============================================ */

@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeInRight {
  from {
    opacity: 0;
    transform: translateX(-30px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes scrollPulse {
  0%, 100% { transform: scaleX(1); opacity: 1; }
  50% { transform: scaleX(1.4); opacity: .4; }
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-12px); }
}

@keyframes ringPulse {
  0%, 100% { transform: scale(1); opacity: .75; }
  50% { transform: scale(1.03); opacity: .5; }
}

@keyframes heroArtReveal {
  from {
    clip-path: inset(0 0 100% 0);
    opacity: 0;
  }
  to {
    clip-path: inset(0 0 0 0);
    opacity: 1;
  }
}

@keyframes shimmer {
  0% { background-position: -200% 0; }
  100% { background-position: 200% 0; }
}

@keyframes underlineGrow {
  from { transform: scaleX(0); }
  to { transform: scaleX(1); }
}


/* ============================================
   HEADER
   ============================================ */

.site-header {
  height: 76px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 4.5vw;
  border-bottom: 1px solid var(--line);
  position: fixed;
  top: 0;
  z-index: 10;
  width: 100%;
  background: transparent;
  transition: background .4s var(--ease-out-expo),
              backdrop-filter .4s var(--ease-out-expo),
              -webkit-backdrop-filter .4s var(--ease-out-expo),
              border-color .4s var(--ease-out-expo),
              box-shadow .4s var(--ease-out-expo);
}

/* Glassmorphism header on scroll */
.site-header.scrolled {
  background: rgba(242, 240, 234, .72);
  -webkit-backdrop-filter: blur(18px) saturate(1.6);
  backdrop-filter: blur(18px) saturate(1.6);
  border-bottom-color: rgba(23, 24, 24, .08);
  box-shadow: 0 1px 24px rgba(0, 0, 0, .06);
}

.logo {
  font: 800 11px/1.1 Manrope, sans-serif;
  letter-spacing: .08em;
  color: inherit;
  text-decoration: none;
  display: flex;
  align-items: center;
  gap: 9px;
  transition: opacity .3s;
}

.logo:hover {
  opacity: .7;
}

.logo-mark {
  border: 1.5px solid currentColor;
  width: 27px;
  height: 27px;
  border-radius: 50%;
  display: grid;
  place-items: center;
  font: 700 15px 'Shippori Mincho';
  transition: transform .3s var(--ease-out-expo),
              background .3s,
              color .3s;
}

.logo:hover .logo-mark {
  transform: scale(1.08);
  background: var(--ink);
  color: var(--cream);
}

.nav {
  display: flex;
  gap: 27px;
  font: 500 11px Manrope, sans-serif;
  letter-spacing: .08em;
  text-transform: uppercase;
}

.nav a {
  color: inherit;
  text-decoration: none;
  position: relative;
  padding-bottom: 3px;
  transition: color .3s;
}

.nav a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  height: 1px;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform .35s var(--ease-out-expo);
}

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

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

.header-contact {
  color: inherit;
  text-decoration: none;
  font: 600 11px Manrope, sans-serif;
  letter-spacing: .06em;
  position: relative;
  transition: color .3s;
}

.header-contact:hover {
  color: var(--red);
}

.header-contact span {
  font-size: 18px;
  margin-left: 7px;
  display: inline-block;
  transition: transform .3s var(--ease-out-expo);
}

.header-contact:hover span {
  transform: translate(3px, -3px);
}


/* ============================================
   COMMON SECTION STYLES
   ============================================ */

.section-pad {
  padding: 125px 9vw;
}

.section-label {
  font: 500 10px 'DM Mono', monospace;
  letter-spacing: .08em;
}

.section-label.light,
.light {
  color: #eeeae1;
}

.kicker {
  font: 600 11px Manrope, sans-serif;
  letter-spacing: .12em;
  margin: 0 0 18px;
}


/* ============================================
   SCROLL REVEAL ANIMATIONS
   ============================================ */

/* Base hidden state for animated elements */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity var(--duration) var(--ease-out-expo),
              transform var(--duration) var(--ease-out-expo);
}

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

/* Staggered children animation */
.stagger-children .reveal {
  transition-delay: calc(var(--i, 0) * .08s);
}

/* Service / Strength / Workflow card reveals */
.service-list article,
.strength-list article,
.project-card,
.workflow li {
  opacity: 0;
  transform: translateY(32px);
  transition: opacity .6s var(--ease-out-expo),
              transform .6s var(--ease-out-expo);
}

.service-list article.is-visible,
.strength-list article.is-visible,
.project-card.is-visible,
.workflow li.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Problem grid item reveals */
.problem-grid p {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity .5s var(--ease-out-expo),
              transform .5s var(--ease-out-expo);
}

.problem-grid p.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Price list item reveals */
.price-list div {
  opacity: 0;
  transform: translateX(-20px);
  transition: opacity .5s var(--ease-out-expo),
              transform .5s var(--ease-out-expo);
}

.price-list div.is-visible {
  opacity: 1;
  transform: translateX(0);
}

/* Section heading reveals */
.problem-heading,
.service-intro,
.strength-heading,
.project-heading,
.field-inner,
.workflow-heading,
.price-heading,
.about-copy,
.contact-top,
.contact h2 {
  opacity: 0;
  transform: translateY(36px);
  transition: opacity .7s var(--ease-out-expo),
              transform .7s var(--ease-out-expo);
}

.problem-heading.is-visible,
.service-intro.is-visible,
.strength-heading.is-visible,
.project-heading.is-visible,
.field-inner.is-visible,
.workflow-heading.is-visible,
.price-heading.is-visible,
.about-copy.is-visible,
.contact-top.is-visible,
.contact h2.is-visible {
  opacity: 1;
  transform: translateY(0);
}


/* ============================================
   HERO SECTION
   ============================================ */

.hero {
  min-height: 810px;
  position: relative;
  display: grid;
  grid-template-columns: 53% 47%;
  overflow: hidden;
  padding: 76px 4.5vw 55px;
}

.hero-copy {
  z-index: 2;
  align-self: center;
  padding: 45px 0 15px 4.5vw;
}

/* Hero entrance animations */
.hero-copy .eyebrow {
  animation: fadeInUp .8s .2s var(--ease-out-expo) both;
}

.hero-copy h1 {
  animation: fadeInUp .8s .35s var(--ease-out-expo) both;
}

.hero-lead {
  animation: fadeInUp .8s .5s var(--ease-out-expo) both;
}

.hero-copy .intro {
  animation: fadeInUp .8s .6s var(--ease-out-expo) both;
}

.hero-copy .button {
  animation: fadeInUp .8s .7s var(--ease-out-expo) both;
}

.eyebrow {
  font: 500 10px 'DM Mono';
  letter-spacing: .09em;
  margin: 0 0 24px;
}

.eyebrow span {
  width: 22px;
  height: 1px;
  background: currentColor;
  display: inline-block;
  vertical-align: middle;
  margin-right: 9px;
}

.hero h1,
.hero h2,
.problem-heading h2,
.service-intro h2,
.strength-heading h2,
.project-heading h2,
.field h2,
.workflow h2,
.price h2,
.about h2,
.contact h2 {
  font: 800 clamp(43px, 5.3vw, 82px)/1.14 'Shippori Mincho', serif;
  letter-spacing: -.06em;
  margin: 0;
}

.hero h1 em,
h2 em {
  font-style: normal;
  color: var(--red);
}

.hero-lead {
  font: 600 clamp(19px, 2vw, 29px)/1.55 'Noto Sans JP';
  margin: 24px 0;
}

.intro {
  font-size: 13px;
  line-height: 2.1;
  margin: 28px 0 33px;
}

/* Buttons */
.button {
  display: inline-flex;
  align-items: center;
  gap: 28px;
  text-decoration: none;
  padding: 16px 20px;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  overflow: hidden;
  transition: transform .3s var(--ease-out-expo),
              box-shadow .3s var(--ease-out-expo);
}

.button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: var(--red);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out-expo);
}

.button:hover::before {
  transform: scaleX(1);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 24px rgba(0, 0, 0, .15);
}

.button-dark {
  background: var(--ink);
  color: #fff;
}

.button span {
  font-size: 20px;
  position: relative;
  z-index: 1;
  transition: transform .3s var(--ease-out-expo);
}

.button:hover span {
  transform: translateX(5px);
}

/* Keep text above the ::before pseudo-element */
.button-dark {
  isolation: isolate;
}

/* Hero Art */
.hero-art {
  background: #bcc7d0;
  position: absolute;
  right: 0;
  top: 0;
  width: 49%;
  height: 100%;
  overflow: hidden;
  animation: heroArtReveal .9s .15s var(--ease-out-expo) both;
}

.hero-art img {
  position: absolute;
  width: 118%;
  height: 91%;
  object-fit: cover;
  object-position: 55% 54%;
  bottom: -4%;
  right: -10%;
  mix-blend-mode: multiply;
  filter: contrast(.95) saturate(.8);
  animation: fadeIn 1.2s .5s ease both;
}

.sun {
  position: absolute;
  width: 270px;
  height: 270px;
  border-radius: 50%;
  background: #eeeee8;
  right: 20%;
  top: 14%;
  opacity: .9;
  animation: float 6s ease-in-out infinite;
}

.hero-ring {
  position: absolute;
  border: 1px solid rgba(255, 255, 255, .75);
  border-radius: 50%;
  z-index: 1;
  animation: ringPulse 4s ease-in-out infinite;
}

.ring-one {
  width: 480px;
  height: 480px;
  right: -150px;
  top: 84px;
  animation-delay: 0s;
}

.ring-two {
  width: 680px;
  height: 680px;
  right: -250px;
  top: -16px;
  animation-delay: 1.5s;
}

.vertical-type {
  position: absolute;
  z-index: 2;
  right: 22px;
  top: 146px;
  writing-mode: vertical-rl;
  color: #eff0ed;
  font: 500 10px 'DM Mono';
  letter-spacing: .14em;
}

.art-caption {
  position: absolute;
  z-index: 3;
  left: 9%;
  bottom: 8%;
  font: 800 57px/.8 Manrope;
  color: #f0ede5;
  letter-spacing: -.1em;
}

.art-caption i {
  font: 500 15px 'DM Mono';
  letter-spacing: .2em;
  margin-left: 4px;
}

/* Hero Bottom / Scroll Indicator */
.hero-bottom {
  position: absolute;
  bottom: 23px;
  left: 4.5vw;
  right: 4.5vw;
  display: flex;
  align-items: center;
  gap: 15px;
  font: 500 9px 'DM Mono';
  letter-spacing: .08em;
  animation: fadeIn 1.2s 1s ease both;
}

.hero-bottom span:last-child {
  margin-left: auto;
}

.scroll-line {
  width: 42px;
  height: 1px;
  background: var(--ink);
  animation: scrollPulse 2s ease-in-out infinite;
}


/* ============================================
   PROBLEMS SECTION
   ============================================ */

.problems {
  position: relative;
}

.problem-heading {
  margin: 50px 0 70px;
}

.problem-heading h2 {
  font-size: clamp(36px, 4vw, 62px);
}

.problem-grid {
  border-top: 1px solid var(--line);
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.problem-grid p {
  margin: 0;
  padding: 18px 17px 18px 0;
  border-bottom: 1px solid var(--line);
  font-size: 13px;
  position: relative;
  transition: background .3s, padding-left .3s var(--ease-out-expo);
}

.problem-grid p::before {
  content: '✦';
  position: absolute;
  left: -2px;
  top: 19px;
  font-size: 8px;
  color: var(--red);
  opacity: 0;
  transform: scale(0);
  transition: opacity .3s, transform .3s var(--ease-out-expo);
}

.problem-grid p:hover::before {
  opacity: 1;
  transform: scale(1);
}

.problem-grid p:hover {
  background: rgba(229, 73, 45, .04);
  padding-left: 14px;
}

.problem-grid p:nth-child(even) {
  padding-left: 25px;
  border-left: 1px solid var(--line);
}

.problem-grid p:nth-child(even)::before {
  left: 23px;
}

.problem-grid p:nth-child(even):hover {
  padding-left: 38px;
}

.problem-answer {
  display: flex;
  justify-content: space-between;
  align-items: end;
  padding: 72px 0 0 48%;
  font-size: 14px;
  line-height: 2;
}

.problem-answer strong {
  font-size: 18px;
}

.problem-answer span {
  font-size: 32px;
  animation: float 2s ease-in-out infinite;
}


/* ============================================
   SERVICES SECTION
   ============================================ */

.services,
.projects,
.workflow,
.about {
  background: var(--ink);
  color: var(--cream);
}

.service-intro {
  margin: 50px 0 58px;
  display: grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 35px;
  align-items: end;
}

.service-intro h2 {
  grid-row: span 2;
}

.service-intro > p:last-child {
  font-size: 13px;
  line-height: 2;
}

.service-list {
  border-top: 1px solid var(--line-light);
}

.service-list article {
  min-height: 170px;
  display: grid;
  grid-template-columns: 9% 28% 33% 24% 6%;
  align-items: center;
  border-bottom: 1px solid var(--line-light);
  position: relative;
  transition: background .4s var(--ease-out-expo),
              padding-left .4s var(--ease-out-expo);
}

.service-list article::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(90deg, rgba(229, 73, 45, .08), transparent 70%);
  opacity: 0;
  transition: opacity .4s var(--ease-out-expo);
}

.service-list article:hover::before {
  opacity: 1;
}

.service-list article:hover {
  padding-left: 12px;
}

.service-num {
  font: 500 11px 'DM Mono';
  color: #aaa;
  transition: color .3s;
}

.service-list article:hover .service-num {
  color: var(--red);
}

.service-title p,
.project-category {
  font: 500 10px 'DM Mono';
  letter-spacing: .1em;
  color: #aaa;
  margin: 0 0 4px;
}

.service-title h3 {
  font: 600 21px/1.35 'Shippori Mincho';
  margin: 0;
}

.service-body {
  font-size: 12px;
  line-height: 1.9;
  padding-right: 28px;
}

.tags {
  display: flex;
  gap: 5px;
  flex-wrap: wrap;
}

.tags span,
.field-tags span,
.project-features span {
  border: 1px solid rgba(255, 255, 255, .4);
  font-size: 9px;
  padding: 3px 7px;
  line-height: 1.5;
  transition: border-color .3s, background .3s, color .3s;
}

.service-list article:hover .tags span {
  border-color: var(--red);
  background: rgba(229, 73, 45, .12);
}

.service-list a {
  justify-self: end;
  color: #eee;
  text-decoration: none;
  border: 1px solid rgba(255, 255, 255, .5);
  border-radius: 50%;
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  font-size: 17px;
  transition: transform .35s var(--ease-out-expo),
              background .3s,
              border-color .3s,
              color .3s;
}

.service-list a:hover,
.service-list article:hover a {
  background: var(--red);
  border-color: var(--red);
  color: #fff;
  transform: scale(1.1) rotate(-45deg);
}


/* ============================================
   STRENGTH SECTION
   ============================================ */

.strength {
  min-height: 760px;
}

.strength-heading {
  margin: 50px 0 70px;
}

.strength-heading h2 {
  font-size: clamp(37px, 4vw, 62px);
}

.strength-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.strength-list article {
  padding: 26px 7% 50px 0;
  border-bottom: 1px solid var(--line);
  transition: background .4s var(--ease-out-expo);
}

.strength-list article:hover {
  background: rgba(229, 73, 45, .03);
}

.strength-list article:nth-child(even) {
  padding-left: 8%;
  border-left: 1px solid var(--line);
}

.strength-list span {
  font: 500 10px 'DM Mono';
  color: var(--red);
}

.strength-list h3 {
  font: 600 22px/1.5 'Shippori Mincho';
  margin: 24px 0 17px;
}

.strength-list p {
  font-size: 12px;
  line-height: 2;
}


/* ============================================
   PROJECTS SECTION
   ============================================ */

.project-heading {
  margin: 50px 0 65px;
}

.project-heading h2 {
  font-size: clamp(37px, 4vw, 60px);
}

.project-card {
  display: grid;
  grid-template-columns: 48% 52%;
  min-height: 445px;
  transition: box-shadow .5s var(--ease-out-expo);
}

.project-card:hover {
  box-shadow: 0 16px 48px rgba(0, 0, 0, .2);
}

.project-image {
  overflow: hidden;
  background: #324e73;
}

.project-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: screen;
  opacity: .9;
  transition: transform .8s var(--ease-out-expo);
}

.project-card:hover .project-image img {
  transform: scale(1.05);
}

.project-content {
  padding: 48px 10%;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}

.project-content h3 {
  font: 700 47px/1.15 'Shippori Mincho';
  letter-spacing: -.06em;
  margin: 18px 0;
}

.project-content > p:not(.project-category) {
  font-size: 12px;
  line-height: 2;
  margin: 0 0 23px;
}

.metrics {
  display: flex;
  gap: 30px;
  margin: auto 0 22px;
}

.metrics div {
  display: flex;
  flex-direction: column;
}

.metrics b {
  font: 600 30px Manrope;
}

.metrics span {
  font-size: 9px;
  color: #aaa;
}

.text-link {
  font: 600 11px Manrope;
  color: inherit;
  text-decoration: none;
  border-bottom: 1px solid currentColor;
  padding-bottom: 5px;
  transition: color .3s, border-color .3s;
}

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

.text-link span {
  font-size: 16px;
  margin-left: 8px;
  display: inline-block;
  transition: transform .3s var(--ease-out-expo);
}

.text-link:hover span {
  transform: translate(4px, -4px);
}

/* Edo Card */
.edo {
  background: #e2d9c7;
  color: var(--ink);
  grid-template-columns: 52% 48%;
}

.project-features {
  display: flex;
  gap: 6px;
  flex-wrap: wrap;
  margin: auto 0 24px;
}

.project-features span {
  border-color: rgba(23, 24, 24, .35);
}

/* Map Graphic */
.map-graphic {
  position: relative;
  overflow: hidden;
  background: #d0c4aa;
  min-height: 350px;
  background-image:
    linear-gradient(35deg, transparent 49%, rgba(72, 64, 45, .25) 50%, transparent 51%),
    linear-gradient(-30deg, transparent 48%, rgba(72, 64, 45, .2) 49%, transparent 50%);
  background-size: 120px 120px;
}

.map-circle {
  width: 290px;
  height: 290px;
  border: 1px solid #6b624e;
  border-radius: 50%;
  position: absolute;
  left: 20%;
  top: 15%;
}

.map-line {
  height: 1px;
  background: #756950;
  position: absolute;
  transform: rotate(-18deg);
}

.l1 {
  width: 150%;
  top: 45%;
  left: -20%;
}

.l2 {
  width: 130%;
  top: 65%;
  left: -10%;
  transform: rotate(45deg);
}

.map-label {
  position: absolute;
  font: 600 11px 'Shippori Mincho';
  padding: 3px 7px;
  background: var(--red);
  color: #fff;
  transition: transform .3s var(--ease-out-expo);
}

.map-label:hover {
  transform: scale(1.12);
}

.one { top: 32%; left: 45%; }
.two { top: 60%; left: 28%; }
.three { top: 21%; right: 12%; }

.map-graphic p {
  position: absolute;
  bottom: 24px;
  right: 26px;
  font: 700 18px/.9 'DM Mono';
  letter-spacing: .05em;
  color: #645c4c;
}


/* ============================================
   SPECIAL FIELD SECTION
   ============================================ */

.field-inner {
  margin-top: 50px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: 7vw;
}

.field h2 {
  font-size: clamp(34px, 3.6vw, 55px);
}

.field-text {
  padding-top: 44px;
  font-size: 13px;
  line-height: 2.1;
}

.field-text p {
  margin: 0 0 24px;
}

.field-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-top: 32px;
}

.field-tags span {
  border-color: var(--ink);
  transition: background .3s, color .3s;
}

.field-tags span:hover {
  background: var(--ink);
  color: var(--cream);
}


/* ============================================
   WORKFLOW SECTION
   ============================================ */

.workflow-heading {
  margin: 50px 0;
}

.workflow h2 {
  font-size: clamp(37px, 4vw, 58px);
}

.workflow ol {
  margin: 0;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border-top: 1px solid rgba(255, 255, 255, .3);
}

.workflow li {
  padding: 26px 30px 36px 0;
  border-bottom: 1px solid rgba(255, 255, 255, .3);
  transition: background .4s var(--ease-out-expo);
}

.workflow li:hover {
  background: rgba(255, 255, 255, .04);
}

.workflow li:nth-child(3n+2) {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.workflow li:nth-child(3n) {
  padding-left: 30px;
  border-left: 1px solid rgba(255, 255, 255, .3);
}

.workflow li span {
  font: 500 10px 'DM Mono';
  color: var(--red);
}

.workflow h3 {
  font: 600 18px 'Shippori Mincho';
  margin: 23px 0 10px;
}

.workflow li p {
  font-size: 11px;
  line-height: 1.8;
  color: #c7c6c1;
  margin: 0;
}


/* ============================================
   PRICE SECTION
   ============================================ */

.price-heading {
  margin: 50px 0 55px;
}

.price h2 {
  font-size: clamp(35px, 4vw, 55px);
  margin-bottom: 20px;
}

.price-heading > p:last-child {
  font-size: 12px;
}

.price-list {
  border-top: 1px solid var(--line);
}

.price-list div {
  min-height: 72px;
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  transition: background .3s var(--ease-out-expo),
              padding-left .3s var(--ease-out-expo);
}

.price-list div:hover {
  background: rgba(229, 73, 45, .04);
  padding-left: 12px;
}

.price-list span {
  font-size: 13px;
}

.price-list b {
  font: 600 23px Manrope;
  letter-spacing: -.04em;
  transition: color .3s;
}

.price-list div:hover b {
  color: var(--red);
}

.price-list small {
  font: 400 12px 'Noto Sans JP';
}

.note {
  font-size: 10px;
  color: #777;
  margin: 18px 0;
}


/* ============================================
   ABOUT SECTION
   ============================================ */

.about {
  min-height: 610px;
  position: relative;
  overflow: hidden;
}

.about-copy {
  margin-top: 48px;
  width: 60%;
  position: relative;
  z-index: 1;
}

.about h2 {
  font-size: clamp(39px, 4.5vw, 65px);
  margin-bottom: 30px;
}

.about-copy > p:not(.kicker) {
  font-size: 13px;
  line-height: 2.1;
  max-width: 520px;
  margin: 0 0 16px;
}

.about-mark {
  position: absolute;
  right: 5%;
  bottom: -16%;
  font: 800 410px/.7 'Shippori Mincho';
  letter-spacing: -.25em;
  color: #242525;
  user-select: none;
  transition: opacity .6s;
}

.about-mark i {
  font-style: normal;
  color: #333;
}


/* ============================================
   CONTACT SECTION
   ============================================ */

.contact {
  background: var(--red);
  color: #fff;
  padding: 105px 9vw 34px;
  min-height: 610px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
}

/* Decorative circles in contact section */
.contact::before {
  content: '';
  position: absolute;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .12);
  right: -200px;
  top: -200px;
  pointer-events: none;
}

.contact::after {
  content: '';
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  border: 1px solid rgba(255, 255, 255, .08);
  right: -100px;
  top: -100px;
  pointer-events: none;
}

.contact-top {
  display: flex;
  justify-content: space-between;
  align-items: start;
  position: relative;
  z-index: 1;
}

.contact-top > p:last-child {
  font-size: 12px;
  line-height: 2;
  margin: 0;
}

.contact h2 {
  font-size: clamp(51px, 6vw, 92px);
  margin: 65px 0 36px;
  position: relative;
  z-index: 1;
}

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

.contact-button {
  background: var(--ink);
  color: #fff;
  text-decoration: none;
  align-self: start;
  padding: 16px 21px;
  font-size: 12px;
  font-weight: 600;
  position: relative;
  z-index: 1;
  overflow: hidden;
  transition: transform .3s var(--ease-out-expo),
              box-shadow .4s var(--ease-out-expo);
}

.contact-button::before {
  content: '';
  position: absolute;
  inset: 0;
  background: #fff;
  transform: scaleX(0);
  transform-origin: left;
  transition: transform .45s var(--ease-out-expo);
}

.contact-button:hover::before {
  transform: scaleX(1);
}

.contact-button:hover {
  color: var(--ink);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, .25);
}

.contact-button span {
  margin-left: 32px;
  font-size: 18px;
  position: relative;
  z-index: 1;
  display: inline-block;
  transition: transform .3s var(--ease-out-expo);
}

.contact-button:hover span {
  transform: translateX(6px);
}

.contact-bottom {
  display: flex;
  align-items: end;
  gap: 8%;
  margin-top: auto;
  padding-top: 70px;
  font-size: 10px;
  line-height: 1.8;
  position: relative;
  z-index: 1;
}

.contact-bottom .logo {
  color: var(--ink);
}

.contact-bottom p {
  margin: 0;
}

.contact-bottom p:last-child {
  margin-left: auto;
}

.contact-bottom a {
  color: inherit;
  transition: opacity .3s;
}

.contact-bottom a:hover {
  opacity: .7;
}
